OSDN Git Service

Mon Jul 9 06:41:07 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
[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 "insn-attr.h"
90 #include "recog.h"
91 #include "real.h"
92 #include "toplev.h"
93
94 /* It is not safe to use ordinary gen_lowpart in combine.
95    Use gen_lowpart_for_combine instead.  See comments there.  */
96 #define gen_lowpart dont_use_gen_lowpart_you_dummy
97
98 /* Number of attempts to combine instructions in this function.  */
99
100 static int combine_attempts;
101
102 /* Number of attempts that got as far as substitution in this function.  */
103
104 static int combine_merges;
105
106 /* Number of instructions combined with added SETs in this function.  */
107
108 static int combine_extras;
109
110 /* Number of instructions combined in this function.  */
111
112 static int combine_successes;
113
114 /* Totals over entire compilation.  */
115
116 static int total_attempts, total_merges, total_extras, total_successes;
117
118 \f
119 /* Vector mapping INSN_UIDs to cuids.
120    The cuids are like uids but increase monotonically always.
121    Combine always uses cuids so that it can compare them.
122    But actually renumbering the uids, which we used to do,
123    proves to be a bad idea because it makes it hard to compare
124    the dumps produced by earlier passes with those from later passes.  */
125
126 static int *uid_cuid;
127 static int max_uid_cuid;
128
129 /* Get the cuid of an insn.  */
130
131 #define INSN_CUID(INSN) \
132 (INSN_UID (INSN) > max_uid_cuid ? insn_cuid (INSN) : uid_cuid[INSN_UID (INSN)])
133
134 /* In case BITS_PER_WORD == HOST_BITS_PER_WIDE_INT, shifting by
135    BITS_PER_WORD would invoke undefined behavior.  Work around it.  */
136
137 #define UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD(val) \
138   (((unsigned HOST_WIDE_INT)(val) << (BITS_PER_WORD - 1)) << 1)
139
140 /* Maximum register number, which is the size of the tables below.  */
141
142 static unsigned int combine_max_regno;
143
144 /* Record last point of death of (hard or pseudo) register n.  */
145
146 static rtx *reg_last_death;
147
148 /* Record last point of modification of (hard or pseudo) register n.  */
149
150 static rtx *reg_last_set;
151
152 /* Record the cuid of the last insn that invalidated memory
153    (anything that writes memory, and subroutine calls, but not pushes).  */
154
155 static int mem_last_set;
156
157 /* Record the cuid of the last CALL_INSN
158    so we can tell whether a potential combination crosses any calls.  */
159
160 static int last_call_cuid;
161
162 /* When `subst' is called, this is the insn that is being modified
163    (by combining in a previous insn).  The PATTERN of this insn
164    is still the old pattern partially modified and it should not be
165    looked at, but this may be used to examine the successors of the insn
166    to judge whether a simplification is valid.  */
167
168 static rtx subst_insn;
169
170 /* This is an insn that belongs before subst_insn, but is not currently
171    on the insn chain.  */
172
173 static rtx subst_prev_insn;
174
175 /* This is the lowest CUID that `subst' is currently dealing with.
176    get_last_value will not return a value if the register was set at or
177    after this CUID.  If not for this mechanism, we could get confused if
178    I2 or I1 in try_combine were an insn that used the old value of a register
179    to obtain a new value.  In that case, we might erroneously get the
180    new value of the register when we wanted the old one.  */
181
182 static int subst_low_cuid;
183
184 /* This contains any hard registers that are used in newpat; reg_dead_at_p
185    must consider all these registers to be always live.  */
186
187 static HARD_REG_SET newpat_used_regs;
188
189 /* This is an insn to which a LOG_LINKS entry has been added.  If this
190    insn is the earlier than I2 or I3, combine should rescan starting at
191    that location.  */
192
193 static rtx added_links_insn;
194
195 /* Basic block number of the block in which we are performing combines.  */
196 static int this_basic_block;
197
198 /* A bitmap indicating which blocks had registers go dead at entry.
199    After combine, we'll need to re-do global life analysis with
200    those blocks as starting points.  */
201 static sbitmap refresh_blocks;
202 static int need_refresh;
203 \f
204 /* The next group of arrays allows the recording of the last value assigned
205    to (hard or pseudo) register n.  We use this information to see if a
206    operation being processed is redundant given a prior operation performed
207    on the register.  For example, an `and' with a constant is redundant if
208    all the zero bits are already known to be turned off.
209
210    We use an approach similar to that used by cse, but change it in the
211    following ways:
212
213    (1) We do not want to reinitialize at each label.
214    (2) It is useful, but not critical, to know the actual value assigned
215        to a register.  Often just its form is helpful.
216
217    Therefore, we maintain the following arrays:
218
219    reg_last_set_value           the last value assigned
220    reg_last_set_label           records the value of label_tick when the
221                                 register was assigned
222    reg_last_set_table_tick      records the value of label_tick when a
223                                 value using the register is assigned
224    reg_last_set_invalid         set to non-zero when it is not valid
225                                 to use the value of this register in some
226                                 register's value
227
228    To understand the usage of these tables, it is important to understand
229    the distinction between the value in reg_last_set_value being valid
230    and the register being validly contained in some other expression in the
231    table.
232
233    Entry I in reg_last_set_value is valid if it is non-zero, and either
234    reg_n_sets[i] is 1 or reg_last_set_label[i] == label_tick.
235
236    Register I may validly appear in any expression returned for the value
237    of another register if reg_n_sets[i] is 1.  It may also appear in the
238    value for register J if reg_last_set_label[i] < reg_last_set_label[j] or
239    reg_last_set_invalid[j] is zero.
240
241    If an expression is found in the table containing a register which may
242    not validly appear in an expression, the register is replaced by
243    something that won't match, (clobber (const_int 0)).
244
245    reg_last_set_invalid[i] is set non-zero when register I is being assigned
246    to and reg_last_set_table_tick[i] == label_tick.  */
247
248 /* Record last value assigned to (hard or pseudo) register n.  */
249
250 static rtx *reg_last_set_value;
251
252 /* Record the value of label_tick when the value for register n is placed in
253    reg_last_set_value[n].  */
254
255 static int *reg_last_set_label;
256
257 /* Record the value of label_tick when an expression involving register n
258    is placed in reg_last_set_value.  */
259
260 static int *reg_last_set_table_tick;
261
262 /* Set non-zero if references to register n in expressions should not be
263    used.  */
264
265 static char *reg_last_set_invalid;
266
267 /* Incremented for each label.  */
268
269 static int label_tick;
270
271 /* Some registers that are set more than once and used in more than one
272    basic block are nevertheless always set in similar ways.  For example,
273    a QImode register may be loaded from memory in two places on a machine
274    where byte loads zero extend.
275
276    We record in the following array what we know about the nonzero
277    bits of a register, specifically which bits are known to be zero.
278
279    If an entry is zero, it means that we don't know anything special.  */
280
281 static unsigned HOST_WIDE_INT *reg_nonzero_bits;
282
283 /* Mode used to compute significance in reg_nonzero_bits.  It is the largest
284    integer mode that can fit in HOST_BITS_PER_WIDE_INT.  */
285
286 static enum machine_mode nonzero_bits_mode;
287
288 /* Nonzero if we know that a register has some leading bits that are always
289    equal to the sign bit.  */
290
291 static unsigned char *reg_sign_bit_copies;
292
293 /* Nonzero when reg_nonzero_bits and reg_sign_bit_copies can be safely used.
294    It is zero while computing them and after combine has completed.  This
295    former test prevents propagating values based on previously set values,
296    which can be incorrect if a variable is modified in a loop.  */
297
298 static int nonzero_sign_valid;
299
300 /* These arrays are maintained in parallel with reg_last_set_value
301    and are used to store the mode in which the register was last set,
302    the bits that were known to be zero when it was last set, and the
303    number of sign bits copies it was known to have when it was last set.  */
304
305 static enum machine_mode *reg_last_set_mode;
306 static unsigned HOST_WIDE_INT *reg_last_set_nonzero_bits;
307 static char *reg_last_set_sign_bit_copies;
308 \f
309 /* Record one modification to rtl structure
310    to be undone by storing old_contents into *where.
311    is_int is 1 if the contents are an int.  */
312
313 struct undo
314 {
315   struct undo *next;
316   int is_int;
317   union {rtx r; unsigned int i;} old_contents;
318   union {rtx *r; unsigned int *i;} where;
319 };
320
321 /* Record a bunch of changes to be undone, up to MAX_UNDO of them.
322    num_undo says how many are currently recorded.
323
324    other_insn is nonzero if we have modified some other insn in the process
325    of working on subst_insn.  It must be verified too.  */
326
327 struct undobuf
328 {
329   struct undo *undos;
330   struct undo *frees;
331   rtx other_insn;
332 };
333
334 static struct undobuf undobuf;
335
336 /* Number of times the pseudo being substituted for
337    was found and replaced.  */
338
339 static int n_occurrences;
340
341 static void do_SUBST                    PARAMS ((rtx *, rtx));
342 static void do_SUBST_INT                PARAMS ((unsigned int *,
343                                                  unsigned int));
344 static void init_reg_last_arrays        PARAMS ((void));
345 static void setup_incoming_promotions   PARAMS ((void));
346 static void set_nonzero_bits_and_sign_copies  PARAMS ((rtx, rtx, void *));
347 static int cant_combine_insn_p  PARAMS ((rtx));
348 static int can_combine_p        PARAMS ((rtx, rtx, rtx, rtx, rtx *, rtx *));
349 static int sets_function_arg_p  PARAMS ((rtx));
350 static int combinable_i3pat     PARAMS ((rtx, rtx *, rtx, rtx, int, rtx *));
351 static int contains_muldiv      PARAMS ((rtx));
352 static rtx try_combine          PARAMS ((rtx, rtx, rtx, int *));
353 static void undo_all            PARAMS ((void));
354 static void undo_commit         PARAMS ((void));
355 static rtx *find_split_point    PARAMS ((rtx *, rtx));
356 static rtx subst                PARAMS ((rtx, rtx, rtx, int, int));
357 static rtx combine_simplify_rtx PARAMS ((rtx, enum machine_mode, int, int));
358 static rtx simplify_if_then_else  PARAMS ((rtx));
359 static rtx simplify_set         PARAMS ((rtx));
360 static rtx simplify_logical     PARAMS ((rtx, int));
361 static rtx expand_compound_operation  PARAMS ((rtx));
362 static rtx expand_field_assignment  PARAMS ((rtx));
363 static rtx make_extraction      PARAMS ((enum machine_mode, rtx, HOST_WIDE_INT,
364                                          rtx, unsigned HOST_WIDE_INT, int,
365                                          int, int));
366 static rtx extract_left_shift   PARAMS ((rtx, int));
367 static rtx make_compound_operation  PARAMS ((rtx, enum rtx_code));
368 static int get_pos_from_mask    PARAMS ((unsigned HOST_WIDE_INT,
369                                          unsigned HOST_WIDE_INT *));
370 static rtx force_to_mode        PARAMS ((rtx, enum machine_mode,
371                                          unsigned HOST_WIDE_INT, rtx, int));
372 static rtx if_then_else_cond    PARAMS ((rtx, rtx *, rtx *));
373 static rtx known_cond           PARAMS ((rtx, enum rtx_code, rtx, rtx));
374 static int rtx_equal_for_field_assignment_p PARAMS ((rtx, rtx));
375 static rtx make_field_assignment  PARAMS ((rtx));
376 static rtx apply_distributive_law  PARAMS ((rtx));
377 static rtx simplify_and_const_int  PARAMS ((rtx, enum machine_mode, rtx,
378                                             unsigned HOST_WIDE_INT));
379 static unsigned HOST_WIDE_INT nonzero_bits  PARAMS ((rtx, enum machine_mode));
380 static unsigned int num_sign_bit_copies  PARAMS ((rtx, enum machine_mode));
381 static int merge_outer_ops      PARAMS ((enum rtx_code *, HOST_WIDE_INT *,
382                                          enum rtx_code, HOST_WIDE_INT,
383                                          enum machine_mode, int *));
384 static rtx simplify_shift_const PARAMS ((rtx, enum rtx_code, enum machine_mode,
385                                          rtx, int));
386 static int recog_for_combine    PARAMS ((rtx *, rtx, rtx *));
387 static rtx gen_lowpart_for_combine  PARAMS ((enum machine_mode, rtx));
388 static rtx gen_binary           PARAMS ((enum rtx_code, enum machine_mode,
389                                          rtx, rtx));
390 static enum rtx_code simplify_comparison  PARAMS ((enum rtx_code, rtx *, rtx *));
391 static void update_table_tick   PARAMS ((rtx));
392 static void record_value_for_reg  PARAMS ((rtx, rtx, rtx));
393 static void check_promoted_subreg PARAMS ((rtx, rtx));
394 static void record_dead_and_set_regs_1  PARAMS ((rtx, rtx, void *));
395 static void record_dead_and_set_regs  PARAMS ((rtx));
396 static int get_last_value_validate  PARAMS ((rtx *, rtx, int, int));
397 static rtx get_last_value       PARAMS ((rtx));
398 static int use_crosses_set_p    PARAMS ((rtx, int));
399 static void reg_dead_at_p_1     PARAMS ((rtx, rtx, void *));
400 static int reg_dead_at_p        PARAMS ((rtx, rtx));
401 static void move_deaths         PARAMS ((rtx, rtx, int, rtx, rtx *));
402 static int reg_bitfield_target_p  PARAMS ((rtx, rtx));
403 static void distribute_notes    PARAMS ((rtx, rtx, rtx, rtx, rtx, rtx));
404 static void distribute_links    PARAMS ((rtx));
405 static void mark_used_regs_combine PARAMS ((rtx));
406 static int insn_cuid            PARAMS ((rtx));
407 static void record_promoted_value PARAMS ((rtx, rtx));
408 static rtx reversed_comparison  PARAMS ((rtx, enum machine_mode, rtx, rtx));
409 static enum rtx_code combine_reversed_comparison_code PARAMS ((rtx));
410 \f
411 /* Substitute NEWVAL, an rtx expression, into INTO, a place in some
412    insn.  The substitution can be undone by undo_all.  If INTO is already
413    set to NEWVAL, do not record this change.  Because computing NEWVAL might
414    also call SUBST, we have to compute it before we put anything into
415    the undo table.  */
416
417 static void
418 do_SUBST (into, newval)
419      rtx *into, newval;
420 {
421   struct undo *buf;
422   rtx oldval = *into;
423
424   if (oldval == newval)
425     return;
426
427   if (undobuf.frees)
428     buf = undobuf.frees, undobuf.frees = buf->next;
429   else
430     buf = (struct undo *) xmalloc (sizeof (struct undo));
431
432   buf->is_int = 0;
433   buf->where.r = into;
434   buf->old_contents.r = oldval;
435   *into = newval;
436
437   buf->next = undobuf.undos, undobuf.undos = buf;
438 }
439
440 #define SUBST(INTO, NEWVAL)     do_SUBST(&(INTO), (NEWVAL))
441
442 /* Similar to SUBST, but NEWVAL is an int expression.  Note that substitution
443    for the value of a HOST_WIDE_INT value (including CONST_INT) is
444    not safe.  */
445
446 static void
447 do_SUBST_INT (into, newval)
448      unsigned int *into, newval;
449 {
450   struct undo *buf;
451   unsigned int oldval = *into;
452
453   if (oldval == newval)
454     return;
455
456   if (undobuf.frees)
457     buf = undobuf.frees, undobuf.frees = buf->next;
458   else
459     buf = (struct undo *) xmalloc (sizeof (struct undo));
460
461   buf->is_int = 1;
462   buf->where.i = into;
463   buf->old_contents.i = oldval;
464   *into = newval;
465
466   buf->next = undobuf.undos, undobuf.undos = buf;
467 }
468
469 #define SUBST_INT(INTO, NEWVAL)  do_SUBST_INT(&(INTO), (NEWVAL))
470 \f
471 /* Main entry point for combiner.  F is the first insn of the function.
472    NREGS is the first unused pseudo-reg number.
473
474    Return non-zero if the combiner has turned an indirect jump
475    instruction into a direct jump.  */
476 int
477 combine_instructions (f, nregs)
478      rtx f;
479      unsigned int nregs;
480 {
481   register rtx insn, next;
482 #ifdef HAVE_cc0
483   register rtx prev;
484 #endif
485   register int i;
486   register rtx links, nextlinks;
487
488   int new_direct_jump_p = 0;
489
490   combine_attempts = 0;
491   combine_merges = 0;
492   combine_extras = 0;
493   combine_successes = 0;
494
495   combine_max_regno = nregs;
496
497   reg_nonzero_bits = ((unsigned HOST_WIDE_INT *)
498                       xcalloc (nregs, sizeof (unsigned HOST_WIDE_INT)));
499   reg_sign_bit_copies
500     = (unsigned char *) xcalloc (nregs, sizeof (unsigned char));
501
502   reg_last_death = (rtx *) xmalloc (nregs * sizeof (rtx));
503   reg_last_set = (rtx *) xmalloc (nregs * sizeof (rtx));
504   reg_last_set_value = (rtx *) xmalloc (nregs * sizeof (rtx));
505   reg_last_set_table_tick = (int *) xmalloc (nregs * sizeof (int));
506   reg_last_set_label = (int *) xmalloc (nregs * sizeof (int));
507   reg_last_set_invalid = (char *) xmalloc (nregs * sizeof (char));
508   reg_last_set_mode
509     = (enum machine_mode *) xmalloc (nregs * sizeof (enum machine_mode));
510   reg_last_set_nonzero_bits
511     = (unsigned HOST_WIDE_INT *) xmalloc (nregs * sizeof (HOST_WIDE_INT));
512   reg_last_set_sign_bit_copies
513     = (char *) xmalloc (nregs * sizeof (char));
514
515   init_reg_last_arrays ();
516
517   init_recog_no_volatile ();
518
519   /* Compute maximum uid value so uid_cuid can be allocated.  */
520
521   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
522     if (INSN_UID (insn) > i)
523       i = INSN_UID (insn);
524
525   uid_cuid = (int *) xmalloc ((i + 1) * sizeof (int));
526   max_uid_cuid = i;
527
528   nonzero_bits_mode = mode_for_size (HOST_BITS_PER_WIDE_INT, MODE_INT, 0);
529
530   /* Don't use reg_nonzero_bits when computing it.  This can cause problems
531      when, for example, we have j <<= 1 in a loop.  */
532
533   nonzero_sign_valid = 0;
534
535   /* Compute the mapping from uids to cuids.
536      Cuids are numbers assigned to insns, like uids,
537      except that cuids increase monotonically through the code.
538
539      Scan all SETs and see if we can deduce anything about what
540      bits are known to be zero for some registers and how many copies
541      of the sign bit are known to exist for those registers.
542
543      Also set any known values so that we can use it while searching
544      for what bits are known to be set.  */
545
546   label_tick = 1;
547
548   /* We need to initialize it here, because record_dead_and_set_regs may call
549      get_last_value.  */
550   subst_prev_insn = NULL_RTX;
551
552   setup_incoming_promotions ();
553
554   refresh_blocks = sbitmap_alloc (n_basic_blocks);
555   sbitmap_zero (refresh_blocks);
556   need_refresh = 0;
557
558   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
559     {
560       uid_cuid[INSN_UID (insn)] = ++i;
561       subst_low_cuid = i;
562       subst_insn = insn;
563
564       if (INSN_P (insn))
565         {
566           note_stores (PATTERN (insn), set_nonzero_bits_and_sign_copies,
567                        NULL);
568           record_dead_and_set_regs (insn);
569
570 #ifdef AUTO_INC_DEC
571           for (links = REG_NOTES (insn); links; links = XEXP (links, 1))
572             if (REG_NOTE_KIND (links) == REG_INC)
573               set_nonzero_bits_and_sign_copies (XEXP (links, 0), NULL_RTX,
574                                                 NULL);
575 #endif
576         }
577
578       if (GET_CODE (insn) == CODE_LABEL)
579         label_tick++;
580     }
581
582   nonzero_sign_valid = 1;
583
584   /* Now scan all the insns in forward order.  */
585
586   this_basic_block = -1;
587   label_tick = 1;
588   last_call_cuid = 0;
589   mem_last_set = 0;
590   init_reg_last_arrays ();
591   setup_incoming_promotions ();
592
593   for (insn = f; insn; insn = next ? next : NEXT_INSN (insn))
594     {
595       next = 0;
596
597       /* If INSN starts a new basic block, update our basic block number.  */
598       if (this_basic_block + 1 < n_basic_blocks
599           && BLOCK_HEAD (this_basic_block + 1) == insn)
600         this_basic_block++;
601
602       if (GET_CODE (insn) == CODE_LABEL)
603         label_tick++;
604
605       else if (INSN_P (insn))
606         {
607           /* See if we know about function return values before this
608              insn based upon SUBREG flags.  */
609           check_promoted_subreg (insn, PATTERN (insn));
610
611           /* Try this insn with each insn it links back to.  */
612
613           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
614             if ((next = try_combine (insn, XEXP (links, 0),
615                                      NULL_RTX, &new_direct_jump_p)) != 0)
616               goto retry;
617
618           /* Try each sequence of three linked insns ending with this one.  */
619
620           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
621             {
622               rtx link = XEXP (links, 0);
623
624               /* If the linked insn has been replaced by a note, then there
625                  is no point in persuing this chain any further.  */
626               if (GET_CODE (link) == NOTE)
627                 break;
628
629               for (nextlinks = LOG_LINKS (link);
630                    nextlinks;
631                    nextlinks = XEXP (nextlinks, 1))
632                 if ((next = try_combine (insn, XEXP (links, 0),
633                                          XEXP (nextlinks, 0),
634                                          &new_direct_jump_p)) != 0)
635                   goto retry;
636             }
637
638 #ifdef HAVE_cc0
639           /* Try to combine a jump insn that uses CC0
640              with a preceding insn that sets CC0, and maybe with its
641              logical predecessor as well.
642              This is how we make decrement-and-branch insns.
643              We need this special code because data flow connections
644              via CC0 do not get entered in LOG_LINKS.  */
645
646           if (GET_CODE (insn) == JUMP_INSN
647               && (prev = prev_nonnote_insn (insn)) != 0
648               && GET_CODE (prev) == INSN
649               && sets_cc0_p (PATTERN (prev)))
650             {
651               if ((next = try_combine (insn, prev,
652                                        NULL_RTX, &new_direct_jump_p)) != 0)
653                 goto retry;
654
655               for (nextlinks = LOG_LINKS (prev); nextlinks;
656                    nextlinks = XEXP (nextlinks, 1))
657                 if ((next = try_combine (insn, prev,
658                                          XEXP (nextlinks, 0),
659                                          &new_direct_jump_p)) != 0)
660                   goto retry;
661             }
662
663           /* Do the same for an insn that explicitly references CC0.  */
664           if (GET_CODE (insn) == INSN
665               && (prev = prev_nonnote_insn (insn)) != 0
666               && GET_CODE (prev) == INSN
667               && sets_cc0_p (PATTERN (prev))
668               && GET_CODE (PATTERN (insn)) == SET
669               && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (insn))))
670             {
671               if ((next = try_combine (insn, prev,
672                                        NULL_RTX, &new_direct_jump_p)) != 0)
673                 goto retry;
674
675               for (nextlinks = LOG_LINKS (prev); nextlinks;
676                    nextlinks = XEXP (nextlinks, 1))
677                 if ((next = try_combine (insn, prev,
678                                          XEXP (nextlinks, 0),
679                                          &new_direct_jump_p)) != 0)
680                   goto retry;
681             }
682
683           /* Finally, see if any of the insns that this insn links to
684              explicitly references CC0.  If so, try this insn, that insn,
685              and its predecessor if it sets CC0.  */
686           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
687             if (GET_CODE (XEXP (links, 0)) == INSN
688                 && GET_CODE (PATTERN (XEXP (links, 0))) == SET
689                 && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (XEXP (links, 0))))
690                 && (prev = prev_nonnote_insn (XEXP (links, 0))) != 0
691                 && GET_CODE (prev) == INSN
692                 && sets_cc0_p (PATTERN (prev))
693                 && (next = try_combine (insn, XEXP (links, 0),
694                                         prev, &new_direct_jump_p)) != 0)
695               goto retry;
696 #endif
697
698           /* Try combining an insn with two different insns whose results it
699              uses.  */
700           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
701             for (nextlinks = XEXP (links, 1); nextlinks;
702                  nextlinks = XEXP (nextlinks, 1))
703               if ((next = try_combine (insn, XEXP (links, 0),
704                                        XEXP (nextlinks, 0),
705                                        &new_direct_jump_p)) != 0)
706                 goto retry;
707
708           if (GET_CODE (insn) != NOTE)
709             record_dead_and_set_regs (insn);
710
711         retry:
712           ;
713         }
714     }
715
716   if (need_refresh)
717     {
718       compute_bb_for_insn (get_max_uid ());
719       update_life_info (refresh_blocks, UPDATE_LIFE_GLOBAL_RM_NOTES,
720                         PROP_DEATH_NOTES);
721     }
722
723   /* Clean up.  */
724   sbitmap_free (refresh_blocks);
725   free (reg_nonzero_bits);
726   free (reg_sign_bit_copies);
727   free (reg_last_death);
728   free (reg_last_set);
729   free (reg_last_set_value);
730   free (reg_last_set_table_tick);
731   free (reg_last_set_label);
732   free (reg_last_set_invalid);
733   free (reg_last_set_mode);
734   free (reg_last_set_nonzero_bits);
735   free (reg_last_set_sign_bit_copies);
736   free (uid_cuid);
737
738   {
739     struct undo *undo, *next;
740     for (undo = undobuf.frees; undo; undo = next)
741       {
742         next = undo->next;
743         free (undo);
744       }
745     undobuf.frees = 0;
746   }
747
748   total_attempts += combine_attempts;
749   total_merges += combine_merges;
750   total_extras += combine_extras;
751   total_successes += combine_successes;
752
753   nonzero_sign_valid = 0;
754
755   /* Make recognizer allow volatile MEMs again.  */
756   init_recog ();
757
758   return new_direct_jump_p;
759 }
760
761 /* Wipe the reg_last_xxx arrays in preparation for another pass.  */
762
763 static void
764 init_reg_last_arrays ()
765 {
766   unsigned int nregs = combine_max_regno;
767
768   memset ((char *) reg_last_death, 0, nregs * sizeof (rtx));
769   memset ((char *) reg_last_set, 0, nregs * sizeof (rtx));
770   memset ((char *) reg_last_set_value, 0, nregs * sizeof (rtx));
771   memset ((char *) reg_last_set_table_tick, 0, nregs * sizeof (int));
772   memset ((char *) reg_last_set_label, 0, nregs * sizeof (int));
773   memset (reg_last_set_invalid, 0, nregs * sizeof (char));
774   memset ((char *) reg_last_set_mode, 0, nregs * sizeof (enum machine_mode));
775   memset ((char *) reg_last_set_nonzero_bits, 0, nregs * sizeof (HOST_WIDE_INT));
776   memset (reg_last_set_sign_bit_copies, 0, nregs * sizeof (char));
777 }
778 \f
779 /* Set up any promoted values for incoming argument registers.  */
780
781 static void
782 setup_incoming_promotions ()
783 {
784 #ifdef PROMOTE_FUNCTION_ARGS
785   unsigned int regno;
786   rtx reg;
787   enum machine_mode mode;
788   int unsignedp;
789   rtx first = get_insns ();
790
791 #ifndef OUTGOING_REGNO
792 #define OUTGOING_REGNO(N) N
793 #endif
794   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
795     /* Check whether this register can hold an incoming pointer
796        argument.  FUNCTION_ARG_REGNO_P tests outgoing register
797        numbers, so translate if necessary due to register windows.  */
798     if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (regno))
799         && (reg = promoted_input_arg (regno, &mode, &unsignedp)) != 0)
800       {
801         record_value_for_reg
802           (reg, first, gen_rtx_fmt_e ((unsignedp ? ZERO_EXTEND
803                                        : SIGN_EXTEND),
804                                       GET_MODE (reg),
805                                       gen_rtx_CLOBBER (mode, const0_rtx)));
806       }
807 #endif
808 }
809 \f
810 /* Called via note_stores.  If X is a pseudo that is narrower than
811    HOST_BITS_PER_WIDE_INT and is being set, record what bits are known zero.
812
813    If we are setting only a portion of X and we can't figure out what
814    portion, assume all bits will be used since we don't know what will
815    be happening.
816
817    Similarly, set how many bits of X are known to be copies of the sign bit
818    at all locations in the function.  This is the smallest number implied
819    by any set of X.  */
820
821 static void
822 set_nonzero_bits_and_sign_copies (x, set, data)
823      rtx x;
824      rtx set;
825      void *data ATTRIBUTE_UNUSED;
826 {
827   unsigned int num;
828
829   if (GET_CODE (x) == REG
830       && REGNO (x) >= FIRST_PSEUDO_REGISTER
831       /* If this register is undefined at the start of the file, we can't
832          say what its contents were.  */
833       && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, REGNO (x))
834       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
835     {
836       if (set == 0 || GET_CODE (set) == CLOBBER)
837         {
838           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
839           reg_sign_bit_copies[REGNO (x)] = 1;
840           return;
841         }
842
843       /* If this is a complex assignment, see if we can convert it into a
844          simple assignment.  */
845       set = expand_field_assignment (set);
846
847       /* If this is a simple assignment, or we have a paradoxical SUBREG,
848          set what we know about X.  */
849
850       if (SET_DEST (set) == x
851           || (GET_CODE (SET_DEST (set)) == SUBREG
852               && (GET_MODE_SIZE (GET_MODE (SET_DEST (set)))
853                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (set)))))
854               && SUBREG_REG (SET_DEST (set)) == x))
855         {
856           rtx src = SET_SRC (set);
857
858 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
859           /* If X is narrower than a word and SRC is a non-negative
860              constant that would appear negative in the mode of X,
861              sign-extend it for use in reg_nonzero_bits because some
862              machines (maybe most) will actually do the sign-extension
863              and this is the conservative approach.
864
865              ??? For 2.5, try to tighten up the MD files in this regard
866              instead of this kludge.  */
867
868           if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
869               && GET_CODE (src) == CONST_INT
870               && INTVAL (src) > 0
871               && 0 != (INTVAL (src)
872                        & ((HOST_WIDE_INT) 1
873                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
874             src = GEN_INT (INTVAL (src)
875                            | ((HOST_WIDE_INT) (-1)
876                               << GET_MODE_BITSIZE (GET_MODE (x))));
877 #endif
878
879           reg_nonzero_bits[REGNO (x)]
880             |= nonzero_bits (src, nonzero_bits_mode);
881           num = num_sign_bit_copies (SET_SRC (set), GET_MODE (x));
882           if (reg_sign_bit_copies[REGNO (x)] == 0
883               || reg_sign_bit_copies[REGNO (x)] > num)
884             reg_sign_bit_copies[REGNO (x)] = num;
885         }
886       else
887         {
888           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
889           reg_sign_bit_copies[REGNO (x)] = 1;
890         }
891     }
892 }
893 \f
894 /* See if INSN can be combined into I3.  PRED and SUCC are optionally
895    insns that were previously combined into I3 or that will be combined
896    into the merger of INSN and I3.
897
898    Return 0 if the combination is not allowed for any reason.
899
900    If the combination is allowed, *PDEST will be set to the single
901    destination of INSN and *PSRC to the single source, and this function
902    will return 1.  */
903
904 static int
905 can_combine_p (insn, i3, pred, succ, pdest, psrc)
906      rtx insn;
907      rtx i3;
908      rtx pred ATTRIBUTE_UNUSED;
909      rtx succ;
910      rtx *pdest, *psrc;
911 {
912   int i;
913   rtx set = 0, src, dest;
914   rtx p;
915 #ifdef AUTO_INC_DEC
916   rtx link;
917 #endif
918   int all_adjacent = (succ ? (next_active_insn (insn) == succ
919                               && next_active_insn (succ) == i3)
920                       : next_active_insn (insn) == i3);
921
922   /* Can combine only if previous insn is a SET of a REG, a SUBREG or CC0.
923      or a PARALLEL consisting of such a SET and CLOBBERs.
924
925      If INSN has CLOBBER parallel parts, ignore them for our processing.
926      By definition, these happen during the execution of the insn.  When it
927      is merged with another insn, all bets are off.  If they are, in fact,
928      needed and aren't also supplied in I3, they may be added by
929      recog_for_combine.  Otherwise, it won't match.
930
931      We can also ignore a SET whose SET_DEST is mentioned in a REG_UNUSED
932      note.
933
934      Get the source and destination of INSN.  If more than one, can't
935      combine.  */
936
937   if (GET_CODE (PATTERN (insn)) == SET)
938     set = PATTERN (insn);
939   else if (GET_CODE (PATTERN (insn)) == PARALLEL
940            && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
941     {
942       for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
943         {
944           rtx elt = XVECEXP (PATTERN (insn), 0, i);
945
946           switch (GET_CODE (elt))
947             {
948             /* This is important to combine floating point insns
949                for the SH4 port.  */
950             case USE:
951               /* Combining an isolated USE doesn't make sense.
952                  We depend here on combinable_i3_pat to reject them.  */
953               /* The code below this loop only verifies that the inputs of
954                  the SET in INSN do not change.  We call reg_set_between_p
955                  to verify that the REG in the USE does not change betweeen
956                  I3 and INSN.
957                  If the USE in INSN was for a pseudo register, the matching
958                  insn pattern will likely match any register; combining this
959                  with any other USE would only be safe if we knew that the
960                  used registers have identical values, or if there was
961                  something to tell them apart, e.g. different modes.  For
962                  now, we forgo such compilcated tests and simply disallow
963                  combining of USES of pseudo registers with any other USE.  */
964               if (GET_CODE (XEXP (elt, 0)) == REG
965                   && GET_CODE (PATTERN (i3)) == PARALLEL)
966                 {
967                   rtx i3pat = PATTERN (i3);
968                   int i = XVECLEN (i3pat, 0) - 1;
969                   unsigned int regno = REGNO (XEXP (elt, 0));
970
971                   do
972                     {
973                       rtx i3elt = XVECEXP (i3pat, 0, i);
974
975                       if (GET_CODE (i3elt) == USE
976                           && GET_CODE (XEXP (i3elt, 0)) == REG
977                           && (REGNO (XEXP (i3elt, 0)) == regno
978                               ? reg_set_between_p (XEXP (elt, 0),
979                                                    PREV_INSN (insn), i3)
980                               : regno >= FIRST_PSEUDO_REGISTER))
981                         return 0;
982                     }
983                   while (--i >= 0);
984                 }
985               break;
986
987               /* We can ignore CLOBBERs.  */
988             case CLOBBER:
989               break;
990
991             case SET:
992               /* Ignore SETs whose result isn't used but not those that
993                  have side-effects.  */
994               if (find_reg_note (insn, REG_UNUSED, SET_DEST (elt))
995                   && ! side_effects_p (elt))
996                 break;
997
998               /* If we have already found a SET, this is a second one and
999                  so we cannot combine with this insn.  */
1000               if (set)
1001                 return 0;
1002
1003               set = elt;
1004               break;
1005
1006             default:
1007               /* Anything else means we can't combine.  */
1008               return 0;
1009             }
1010         }
1011
1012       if (set == 0
1013           /* If SET_SRC is an ASM_OPERANDS we can't throw away these CLOBBERs,
1014              so don't do anything with it.  */
1015           || GET_CODE (SET_SRC (set)) == ASM_OPERANDS)
1016         return 0;
1017     }
1018   else
1019     return 0;
1020
1021   if (set == 0)
1022     return 0;
1023
1024   set = expand_field_assignment (set);
1025   src = SET_SRC (set), dest = SET_DEST (set);
1026
1027   /* Don't eliminate a store in the stack pointer.  */
1028   if (dest == stack_pointer_rtx
1029       /* If we couldn't eliminate a field assignment, we can't combine.  */
1030       || GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == STRICT_LOW_PART
1031       /* Don't combine with an insn that sets a register to itself if it has
1032          a REG_EQUAL note.  This may be part of a REG_NO_CONFLICT sequence.  */
1033       || (rtx_equal_p (src, dest) && find_reg_note (insn, REG_EQUAL, NULL_RTX))
1034       /* Can't merge an ASM_OPERANDS.  */
1035       || GET_CODE (src) == ASM_OPERANDS
1036       /* Can't merge a function call.  */
1037       || GET_CODE (src) == CALL
1038       /* Don't eliminate a function call argument.  */
1039       || (GET_CODE (i3) == CALL_INSN
1040           && (find_reg_fusage (i3, USE, dest)
1041               || (GET_CODE (dest) == REG
1042                   && REGNO (dest) < FIRST_PSEUDO_REGISTER
1043                   && global_regs[REGNO (dest)])))
1044       /* Don't substitute into an incremented register.  */
1045       || FIND_REG_INC_NOTE (i3, dest)
1046       || (succ && FIND_REG_INC_NOTE (succ, dest))
1047 #if 0
1048       /* Don't combine the end of a libcall into anything.  */
1049       /* ??? This gives worse code, and appears to be unnecessary, since no
1050          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  Local-alloc does
1051          use REG_RETVAL notes for noconflict blocks, but other code here
1052          makes sure that those insns don't disappear.  */
1053       || find_reg_note (insn, REG_RETVAL, NULL_RTX)
1054 #endif
1055       /* Make sure that DEST is not used after SUCC but before I3.  */
1056       || (succ && ! all_adjacent
1057           && reg_used_between_p (dest, succ, i3))
1058       /* Make sure that the value that is to be substituted for the register
1059          does not use any registers whose values alter in between.  However,
1060          If the insns are adjacent, a use can't cross a set even though we
1061          think it might (this can happen for a sequence of insns each setting
1062          the same destination; reg_last_set of that register might point to
1063          a NOTE).  If INSN has a REG_EQUIV note, the register is always
1064          equivalent to the memory so the substitution is valid even if there
1065          are intervening stores.  Also, don't move a volatile asm or
1066          UNSPEC_VOLATILE across any other insns.  */
1067       || (! all_adjacent
1068           && (((GET_CODE (src) != MEM
1069                 || ! find_reg_note (insn, REG_EQUIV, src))
1070                && use_crosses_set_p (src, INSN_CUID (insn)))
1071               || (GET_CODE (src) == ASM_OPERANDS && MEM_VOLATILE_P (src))
1072               || GET_CODE (src) == UNSPEC_VOLATILE))
1073       /* If there is a REG_NO_CONFLICT note for DEST in I3 or SUCC, we get
1074          better register allocation by not doing the combine.  */
1075       || find_reg_note (i3, REG_NO_CONFLICT, dest)
1076       || (succ && find_reg_note (succ, REG_NO_CONFLICT, dest))
1077       /* Don't combine across a CALL_INSN, because that would possibly
1078          change whether the life span of some REGs crosses calls or not,
1079          and it is a pain to update that information.
1080          Exception: if source is a constant, moving it later can't hurt.
1081          Accept that special case, because it helps -fforce-addr a lot.  */
1082       || (INSN_CUID (insn) < last_call_cuid && ! CONSTANT_P (src)))
1083     return 0;
1084
1085   /* DEST must either be a REG or CC0.  */
1086   if (GET_CODE (dest) == REG)
1087     {
1088       /* If register alignment is being enforced for multi-word items in all
1089          cases except for parameters, it is possible to have a register copy
1090          insn referencing a hard register that is not allowed to contain the
1091          mode being copied and which would not be valid as an operand of most
1092          insns.  Eliminate this problem by not combining with such an insn.
1093
1094          Also, on some machines we don't want to extend the life of a hard
1095          register.  */
1096
1097       if (GET_CODE (src) == REG
1098           && ((REGNO (dest) < FIRST_PSEUDO_REGISTER
1099                && ! HARD_REGNO_MODE_OK (REGNO (dest), GET_MODE (dest)))
1100               /* Don't extend the life of a hard register unless it is
1101                  user variable (if we have few registers) or it can't
1102                  fit into the desired register (meaning something special
1103                  is going on).
1104                  Also avoid substituting a return register into I3, because
1105                  reload can't handle a conflict with constraints of other
1106                  inputs.  */
1107               || (REGNO (src) < FIRST_PSEUDO_REGISTER
1108                   && ! HARD_REGNO_MODE_OK (REGNO (src), GET_MODE (src)))))
1109         return 0;
1110     }
1111   else if (GET_CODE (dest) != CC0)
1112     return 0;
1113
1114   /* Don't substitute for a register intended as a clobberable operand.
1115      Similarly, don't substitute an expression containing a register that
1116      will be clobbered in I3.  */
1117   if (GET_CODE (PATTERN (i3)) == PARALLEL)
1118     for (i = XVECLEN (PATTERN (i3), 0) - 1; i >= 0; i--)
1119       if (GET_CODE (XVECEXP (PATTERN (i3), 0, i)) == CLOBBER
1120           && (reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0),
1121                                        src)
1122               || rtx_equal_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0), dest)))
1123         return 0;
1124
1125   /* If INSN contains anything volatile, or is an `asm' (whether volatile
1126      or not), reject, unless nothing volatile comes between it and I3 */
1127
1128   if (GET_CODE (src) == ASM_OPERANDS || volatile_refs_p (src))
1129     {
1130       /* Make sure succ doesn't contain a volatile reference.  */
1131       if (succ != 0 && volatile_refs_p (PATTERN (succ)))
1132         return 0;
1133
1134       for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1135         if (INSN_P (p) && p != succ && volatile_refs_p (PATTERN (p)))
1136         return 0;
1137     }
1138
1139   /* If INSN is an asm, and DEST is a hard register, reject, since it has
1140      to be an explicit register variable, and was chosen for a reason.  */
1141
1142   if (GET_CODE (src) == ASM_OPERANDS
1143       && GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER)
1144     return 0;
1145
1146   /* If there are any volatile insns between INSN and I3, reject, because
1147      they might affect machine state.  */
1148
1149   for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1150     if (INSN_P (p) && p != succ && volatile_insn_p (PATTERN (p)))
1151       return 0;
1152
1153   /* If INSN or I2 contains an autoincrement or autodecrement,
1154      make sure that register is not used between there and I3,
1155      and not already used in I3 either.
1156      Also insist that I3 not be a jump; if it were one
1157      and the incremented register were spilled, we would lose.  */
1158
1159 #ifdef AUTO_INC_DEC
1160   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1161     if (REG_NOTE_KIND (link) == REG_INC
1162         && (GET_CODE (i3) == JUMP_INSN
1163             || reg_used_between_p (XEXP (link, 0), insn, i3)
1164             || reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i3))))
1165       return 0;
1166 #endif
1167
1168 #ifdef HAVE_cc0
1169   /* Don't combine an insn that follows a CC0-setting insn.
1170      An insn that uses CC0 must not be separated from the one that sets it.
1171      We do, however, allow I2 to follow a CC0-setting insn if that insn
1172      is passed as I1; in that case it will be deleted also.
1173      We also allow combining in this case if all the insns are adjacent
1174      because that would leave the two CC0 insns adjacent as well.
1175      It would be more logical to test whether CC0 occurs inside I1 or I2,
1176      but that would be much slower, and this ought to be equivalent.  */
1177
1178   p = prev_nonnote_insn (insn);
1179   if (p && p != pred && GET_CODE (p) == INSN && sets_cc0_p (PATTERN (p))
1180       && ! all_adjacent)
1181     return 0;
1182 #endif
1183
1184   /* If we get here, we have passed all the tests and the combination is
1185      to be allowed.  */
1186
1187   *pdest = dest;
1188   *psrc = src;
1189
1190   return 1;
1191 }
1192 \f
1193 /* Check if PAT is an insn - or a part of it - used to set up an
1194    argument for a function in a hard register.  */
1195
1196 static int
1197 sets_function_arg_p (pat)
1198      rtx pat;
1199 {
1200   int i;
1201   rtx inner_dest;
1202
1203   switch (GET_CODE (pat))
1204     {
1205     case INSN:
1206       return sets_function_arg_p (PATTERN (pat));
1207
1208     case PARALLEL:
1209       for (i = XVECLEN (pat, 0); --i >= 0;)
1210         if (sets_function_arg_p (XVECEXP (pat, 0, i)))
1211           return 1;
1212
1213       break;
1214
1215     case SET:
1216       inner_dest = SET_DEST (pat);
1217       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1218              || GET_CODE (inner_dest) == SUBREG
1219              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1220         inner_dest = XEXP (inner_dest, 0);
1221
1222       return (GET_CODE (inner_dest) == REG
1223               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1224               && FUNCTION_ARG_REGNO_P (REGNO (inner_dest)));
1225
1226     default:
1227       break;
1228     }
1229
1230   return 0;
1231 }
1232
1233 /* LOC is the location within I3 that contains its pattern or the component
1234    of a PARALLEL of the pattern.  We validate that it is valid for combining.
1235
1236    One problem is if I3 modifies its output, as opposed to replacing it
1237    entirely, we can't allow the output to contain I2DEST or I1DEST as doing
1238    so would produce an insn that is not equivalent to the original insns.
1239
1240    Consider:
1241
1242          (set (reg:DI 101) (reg:DI 100))
1243          (set (subreg:SI (reg:DI 101) 0) <foo>)
1244
1245    This is NOT equivalent to:
1246
1247          (parallel [(set (subreg:SI (reg:DI 100) 0) <foo>)
1248                     (set (reg:DI 101) (reg:DI 100))])
1249
1250    Not only does this modify 100 (in which case it might still be valid
1251    if 100 were dead in I2), it sets 101 to the ORIGINAL value of 100.
1252
1253    We can also run into a problem if I2 sets a register that I1
1254    uses and I1 gets directly substituted into I3 (not via I2).  In that
1255    case, we would be getting the wrong value of I2DEST into I3, so we
1256    must reject the combination.  This case occurs when I2 and I1 both
1257    feed into I3, rather than when I1 feeds into I2, which feeds into I3.
1258    If I1_NOT_IN_SRC is non-zero, it means that finding I1 in the source
1259    of a SET must prevent combination from occurring.
1260
1261    Before doing the above check, we first try to expand a field assignment
1262    into a set of logical operations.
1263
1264    If PI3_DEST_KILLED is non-zero, it is a pointer to a location in which
1265    we place a register that is both set and used within I3.  If more than one
1266    such register is detected, we fail.
1267
1268    Return 1 if the combination is valid, zero otherwise.  */
1269
1270 static int
1271 combinable_i3pat (i3, loc, i2dest, i1dest, i1_not_in_src, pi3dest_killed)
1272      rtx i3;
1273      rtx *loc;
1274      rtx i2dest;
1275      rtx i1dest;
1276      int i1_not_in_src;
1277      rtx *pi3dest_killed;
1278 {
1279   rtx x = *loc;
1280
1281   if (GET_CODE (x) == SET)
1282     {
1283       rtx set = expand_field_assignment (x);
1284       rtx dest = SET_DEST (set);
1285       rtx src = SET_SRC (set);
1286       rtx inner_dest = dest;
1287
1288 #if 0
1289       rtx inner_src = src;
1290 #endif
1291
1292       SUBST (*loc, set);
1293
1294       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1295              || GET_CODE (inner_dest) == SUBREG
1296              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1297         inner_dest = XEXP (inner_dest, 0);
1298
1299   /* We probably don't need this any more now that LIMIT_RELOAD_CLASS
1300      was added.  */
1301 #if 0
1302       while (GET_CODE (inner_src) == STRICT_LOW_PART
1303              || GET_CODE (inner_src) == SUBREG
1304              || GET_CODE (inner_src) == ZERO_EXTRACT)
1305         inner_src = XEXP (inner_src, 0);
1306
1307       /* If it is better that two different modes keep two different pseudos,
1308          avoid combining them.  This avoids producing the following pattern
1309          on a 386:
1310           (set (subreg:SI (reg/v:QI 21) 0)
1311                (lshiftrt:SI (reg/v:SI 20)
1312                    (const_int 24)))
1313          If that were made, reload could not handle the pair of
1314          reg 20/21, since it would try to get any GENERAL_REGS
1315          but some of them don't handle QImode.  */
1316
1317       if (rtx_equal_p (inner_src, i2dest)
1318           && GET_CODE (inner_dest) == REG
1319           && ! MODES_TIEABLE_P (GET_MODE (i2dest), GET_MODE (inner_dest)))
1320         return 0;
1321 #endif
1322
1323       /* Check for the case where I3 modifies its output, as
1324          discussed above.  */
1325       if ((inner_dest != dest
1326            && (reg_overlap_mentioned_p (i2dest, inner_dest)
1327                || (i1dest && reg_overlap_mentioned_p (i1dest, inner_dest))))
1328
1329           /* This is the same test done in can_combine_p except we can't test
1330              all_adjacent; we don't have to, since this instruction will stay
1331              in place, thus we are not considering increasing the lifetime of
1332              INNER_DEST.
1333
1334              Also, if this insn sets a function argument, combining it with
1335              something that might need a spill could clobber a previous
1336              function argument; the all_adjacent test in can_combine_p also
1337              checks this; here, we do a more specific test for this case.  */
1338
1339           || (GET_CODE (inner_dest) == REG
1340               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1341               && (! HARD_REGNO_MODE_OK (REGNO (inner_dest),
1342                                         GET_MODE (inner_dest))))
1343           || (i1_not_in_src && reg_overlap_mentioned_p (i1dest, src)))
1344         return 0;
1345
1346       /* If DEST is used in I3, it is being killed in this insn,
1347          so record that for later.
1348          Never add REG_DEAD notes for the FRAME_POINTER_REGNUM or the
1349          STACK_POINTER_REGNUM, since these are always considered to be
1350          live.  Similarly for ARG_POINTER_REGNUM if it is fixed.  */
1351       if (pi3dest_killed && GET_CODE (dest) == REG
1352           && reg_referenced_p (dest, PATTERN (i3))
1353           && REGNO (dest) != FRAME_POINTER_REGNUM
1354 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
1355           && REGNO (dest) != HARD_FRAME_POINTER_REGNUM
1356 #endif
1357 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
1358           && (REGNO (dest) != ARG_POINTER_REGNUM
1359               || ! fixed_regs [REGNO (dest)])
1360 #endif
1361           && REGNO (dest) != STACK_POINTER_REGNUM)
1362         {
1363           if (*pi3dest_killed)
1364             return 0;
1365
1366           *pi3dest_killed = dest;
1367         }
1368     }
1369
1370   else if (GET_CODE (x) == PARALLEL)
1371     {
1372       int i;
1373
1374       for (i = 0; i < XVECLEN (x, 0); i++)
1375         if (! combinable_i3pat (i3, &XVECEXP (x, 0, i), i2dest, i1dest,
1376                                 i1_not_in_src, pi3dest_killed))
1377           return 0;
1378     }
1379
1380   return 1;
1381 }
1382 \f
1383 /* Return 1 if X is an arithmetic expression that contains a multiplication
1384    and division.  We don't count multiplications by powers of two here.  */
1385
1386 static int
1387 contains_muldiv (x)
1388      rtx x;
1389 {
1390   switch (GET_CODE (x))
1391     {
1392     case MOD:  case DIV:  case UMOD:  case UDIV:
1393       return 1;
1394
1395     case MULT:
1396       return ! (GET_CODE (XEXP (x, 1)) == CONST_INT
1397                 && exact_log2 (INTVAL (XEXP (x, 1))) >= 0);
1398     default:
1399       switch (GET_RTX_CLASS (GET_CODE (x)))
1400         {
1401         case 'c':  case '<':  case '2':
1402           return contains_muldiv (XEXP (x, 0))
1403             || contains_muldiv (XEXP (x, 1));
1404
1405         case '1':
1406           return contains_muldiv (XEXP (x, 0));
1407
1408         default:
1409           return 0;
1410         }
1411     }
1412 }
1413 \f
1414 /* Determine whether INSN can be used in a combination.  Return nonzero if
1415    not.  This is used in try_combine to detect early some cases where we
1416    can't perform combinations.  */
1417
1418 static int
1419 cant_combine_insn_p (insn)
1420      rtx insn;
1421 {
1422   rtx set;
1423   rtx src, dest;
1424   
1425   /* If this isn't really an insn, we can't do anything.
1426      This can occur when flow deletes an insn that it has merged into an
1427      auto-increment address.  */
1428   if (! INSN_P (insn))
1429     return 1;
1430
1431   /* Never combine loads and stores involving hard regs.  The register
1432      allocator can usually handle such reg-reg moves by tying.  If we allow
1433      the combiner to make substitutions of hard regs, we risk aborting in
1434      reload on machines that have SMALL_REGISTER_CLASSES.
1435      As an exception, we allow combinations involving fixed regs; these are
1436      not available to the register allocator so there's no risk involved.  */
1437
1438   set = single_set (insn);
1439   if (! set)
1440     return 0;
1441   src = SET_SRC (set);
1442   dest = SET_DEST (set);
1443   if (GET_CODE (src) == SUBREG)
1444     src = SUBREG_REG (src);
1445   if (GET_CODE (dest) == SUBREG)
1446     dest = SUBREG_REG (dest);
1447   if (REG_P (src) && REG_P (dest)
1448       && ((REGNO (src) < FIRST_PSEUDO_REGISTER
1449            && ! fixed_regs[REGNO (src)])
1450           || (REGNO (dest) < FIRST_PSEUDO_REGISTER
1451               && ! fixed_regs[REGNO (dest)])))
1452     return 1;
1453
1454   return 0;
1455 }
1456
1457 /* Try to combine the insns I1 and I2 into I3.
1458    Here I1 and I2 appear earlier than I3.
1459    I1 can be zero; then we combine just I2 into I3.
1460
1461    If we are combining three insns and the resulting insn is not recognized,
1462    try splitting it into two insns.  If that happens, I2 and I3 are retained
1463    and I1 is pseudo-deleted by turning it into a NOTE.  Otherwise, I1 and I2
1464    are pseudo-deleted.
1465
1466    Return 0 if the combination does not work.  Then nothing is changed.
1467    If we did the combination, return the insn at which combine should
1468    resume scanning.
1469
1470    Set NEW_DIRECT_JUMP_P to a non-zero value if try_combine creates a
1471    new direct jump instruction.  */
1472
1473 static rtx
1474 try_combine (i3, i2, i1, new_direct_jump_p)
1475      register rtx i3, i2, i1;
1476      register int *new_direct_jump_p;
1477 {
1478   /* New patterns for I3 and I2, respectively.  */
1479   rtx newpat, newi2pat = 0;
1480   /* Indicates need to preserve SET in I1 or I2 in I3 if it is not dead.  */
1481   int added_sets_1, added_sets_2;
1482   /* Total number of SETs to put into I3.  */
1483   int total_sets;
1484   /* Nonzero is I2's body now appears in I3.  */
1485   int i2_is_used;
1486   /* INSN_CODEs for new I3, new I2, and user of condition code.  */
1487   int insn_code_number, i2_code_number = 0, other_code_number = 0;
1488   /* Contains I3 if the destination of I3 is used in its source, which means
1489      that the old life of I3 is being killed.  If that usage is placed into
1490      I2 and not in I3, a REG_DEAD note must be made.  */
1491   rtx i3dest_killed = 0;
1492   /* SET_DEST and SET_SRC of I2 and I1.  */
1493   rtx i2dest, i2src, i1dest = 0, i1src = 0;
1494   /* PATTERN (I2), or a copy of it in certain cases.  */
1495   rtx i2pat;
1496   /* Indicates if I2DEST or I1DEST is in I2SRC or I1_SRC.  */
1497   int i2dest_in_i2src = 0, i1dest_in_i1src = 0, i2dest_in_i1src = 0;
1498   int i1_feeds_i3 = 0;
1499   /* Notes that must be added to REG_NOTES in I3 and I2.  */
1500   rtx new_i3_notes, new_i2_notes;
1501   /* Notes that we substituted I3 into I2 instead of the normal case.  */
1502   int i3_subst_into_i2 = 0;
1503   /* Notes that I1, I2 or I3 is a MULT operation.  */
1504   int have_mult = 0;
1505
1506   int maxreg;
1507   rtx temp;
1508   register rtx link;
1509   int i;
1510
1511   /* Exit early if one of the insns involved can't be used for
1512      combinations.  */
1513   if (cant_combine_insn_p (i3)
1514       || cant_combine_insn_p (i2)
1515       || (i1 && cant_combine_insn_p (i1))
1516       /* We also can't do anything if I3 has a
1517          REG_LIBCALL note since we don't want to disrupt the contiguity of a
1518          libcall.  */
1519 #if 0
1520       /* ??? This gives worse code, and appears to be unnecessary, since no
1521          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  */
1522       || find_reg_note (i3, REG_LIBCALL, NULL_RTX)
1523 #endif
1524       )
1525     return 0;
1526
1527   combine_attempts++;
1528   undobuf.other_insn = 0;
1529
1530   /* Reset the hard register usage information.  */
1531   CLEAR_HARD_REG_SET (newpat_used_regs);
1532
1533   /* If I1 and I2 both feed I3, they can be in any order.  To simplify the
1534      code below, set I1 to be the earlier of the two insns.  */
1535   if (i1 && INSN_CUID (i1) > INSN_CUID (i2))
1536     temp = i1, i1 = i2, i2 = temp;
1537
1538   added_links_insn = 0;
1539
1540   /* First check for one important special-case that the code below will
1541      not handle.  Namely, the case where I1 is zero, I2 is a PARALLEL
1542      and I3 is a SET whose SET_SRC is a SET_DEST in I2.  In that case,
1543      we may be able to replace that destination with the destination of I3.
1544      This occurs in the common code where we compute both a quotient and
1545      remainder into a structure, in which case we want to do the computation
1546      directly into the structure to avoid register-register copies.
1547
1548      Note that this case handles both multiple sets in I2 and also
1549      cases where I2 has a number of CLOBBER or PARALLELs.
1550
1551      We make very conservative checks below and only try to handle the
1552      most common cases of this.  For example, we only handle the case
1553      where I2 and I3 are adjacent to avoid making difficult register
1554      usage tests.  */
1555
1556   if (i1 == 0 && GET_CODE (i3) == INSN && GET_CODE (PATTERN (i3)) == SET
1557       && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1558       && REGNO (SET_SRC (PATTERN (i3))) >= FIRST_PSEUDO_REGISTER
1559       && find_reg_note (i3, REG_DEAD, SET_SRC (PATTERN (i3)))
1560       && GET_CODE (PATTERN (i2)) == PARALLEL
1561       && ! side_effects_p (SET_DEST (PATTERN (i3)))
1562       /* If the dest of I3 is a ZERO_EXTRACT or STRICT_LOW_PART, the code
1563          below would need to check what is inside (and reg_overlap_mentioned_p
1564          doesn't support those codes anyway).  Don't allow those destinations;
1565          the resulting insn isn't likely to be recognized anyway.  */
1566       && GET_CODE (SET_DEST (PATTERN (i3))) != ZERO_EXTRACT
1567       && GET_CODE (SET_DEST (PATTERN (i3))) != STRICT_LOW_PART
1568       && ! reg_overlap_mentioned_p (SET_SRC (PATTERN (i3)),
1569                                     SET_DEST (PATTERN (i3)))
1570       && next_real_insn (i2) == i3)
1571     {
1572       rtx p2 = PATTERN (i2);
1573
1574       /* Make sure that the destination of I3,
1575          which we are going to substitute into one output of I2,
1576          is not used within another output of I2.  We must avoid making this:
1577          (parallel [(set (mem (reg 69)) ...)
1578                     (set (reg 69) ...)])
1579          which is not well-defined as to order of actions.
1580          (Besides, reload can't handle output reloads for this.)
1581
1582          The problem can also happen if the dest of I3 is a memory ref,
1583          if another dest in I2 is an indirect memory ref.  */
1584       for (i = 0; i < XVECLEN (p2, 0); i++)
1585         if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1586              || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1587             && reg_overlap_mentioned_p (SET_DEST (PATTERN (i3)),
1588                                         SET_DEST (XVECEXP (p2, 0, i))))
1589           break;
1590
1591       if (i == XVECLEN (p2, 0))
1592         for (i = 0; i < XVECLEN (p2, 0); i++)
1593           if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1594                || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1595               && SET_DEST (XVECEXP (p2, 0, i)) == SET_SRC (PATTERN (i3)))
1596             {
1597               combine_merges++;
1598
1599               subst_insn = i3;
1600               subst_low_cuid = INSN_CUID (i2);
1601
1602               added_sets_2 = added_sets_1 = 0;
1603               i2dest = SET_SRC (PATTERN (i3));
1604
1605               /* Replace the dest in I2 with our dest and make the resulting
1606                  insn the new pattern for I3.  Then skip to where we
1607                  validate the pattern.  Everything was set up above.  */
1608               SUBST (SET_DEST (XVECEXP (p2, 0, i)),
1609                      SET_DEST (PATTERN (i3)));
1610
1611               newpat = p2;
1612               i3_subst_into_i2 = 1;
1613               goto validate_replacement;
1614             }
1615     }
1616
1617   /* If I2 is setting a double-word pseudo to a constant and I3 is setting
1618      one of those words to another constant, merge them by making a new
1619      constant.  */
1620   if (i1 == 0
1621       && (temp = single_set (i2)) != 0
1622       && (GET_CODE (SET_SRC (temp)) == CONST_INT
1623           || GET_CODE (SET_SRC (temp)) == CONST_DOUBLE)
1624       && GET_CODE (SET_DEST (temp)) == REG
1625       && GET_MODE_CLASS (GET_MODE (SET_DEST (temp))) == MODE_INT
1626       && GET_MODE_SIZE (GET_MODE (SET_DEST (temp))) == 2 * UNITS_PER_WORD
1627       && GET_CODE (PATTERN (i3)) == SET
1628       && GET_CODE (SET_DEST (PATTERN (i3))) == SUBREG
1629       && SUBREG_REG (SET_DEST (PATTERN (i3))) == SET_DEST (temp)
1630       && GET_MODE_CLASS (GET_MODE (SET_DEST (PATTERN (i3)))) == MODE_INT
1631       && GET_MODE_SIZE (GET_MODE (SET_DEST (PATTERN (i3)))) == UNITS_PER_WORD
1632       && GET_CODE (SET_SRC (PATTERN (i3))) == CONST_INT)
1633     {
1634       HOST_WIDE_INT lo, hi;
1635
1636       if (GET_CODE (SET_SRC (temp)) == CONST_INT)
1637         lo = INTVAL (SET_SRC (temp)), hi = lo < 0 ? -1 : 0;
1638       else
1639         {
1640           lo = CONST_DOUBLE_LOW (SET_SRC (temp));
1641           hi = CONST_DOUBLE_HIGH (SET_SRC (temp));
1642         }
1643
1644       if (subreg_lowpart_p (SET_DEST (PATTERN (i3))))
1645         {
1646           /* We don't handle the case of the target word being wider
1647              than a host wide int.  */
1648           if (HOST_BITS_PER_WIDE_INT < BITS_PER_WORD)
1649             abort ();
1650
1651           lo &= ~(UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD (1) - 1);
1652           lo |= INTVAL (SET_SRC (PATTERN (i3)));
1653         }
1654       else if (HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1655         hi = INTVAL (SET_SRC (PATTERN (i3)));
1656       else if (HOST_BITS_PER_WIDE_INT >= 2 * BITS_PER_WORD)
1657         {
1658           int sign = -(int) ((unsigned HOST_WIDE_INT) lo
1659                              >> (HOST_BITS_PER_WIDE_INT - 1));
1660
1661           lo &= ~ (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD
1662                    (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD (1) - 1));
1663           lo |= (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD
1664                  (INTVAL (SET_SRC (PATTERN (i3)))));
1665           if (hi == sign)
1666             hi = lo < 0 ? -1 : 0;
1667         }
1668       else
1669         /* We don't handle the case of the higher word not fitting
1670            entirely in either hi or lo.  */
1671         abort ();
1672
1673       combine_merges++;
1674       subst_insn = i3;
1675       subst_low_cuid = INSN_CUID (i2);
1676       added_sets_2 = added_sets_1 = 0;
1677       i2dest = SET_DEST (temp);
1678
1679       SUBST (SET_SRC (temp),
1680              immed_double_const (lo, hi, GET_MODE (SET_DEST (temp))));
1681
1682       newpat = PATTERN (i2);
1683       goto validate_replacement;
1684     }
1685
1686 #ifndef HAVE_cc0
1687   /* If we have no I1 and I2 looks like:
1688         (parallel [(set (reg:CC X) (compare:CC OP (const_int 0)))
1689                    (set Y OP)])
1690      make up a dummy I1 that is
1691         (set Y OP)
1692      and change I2 to be
1693         (set (reg:CC X) (compare:CC Y (const_int 0)))
1694
1695      (We can ignore any trailing CLOBBERs.)
1696
1697      This undoes a previous combination and allows us to match a branch-and-
1698      decrement insn.  */
1699
1700   if (i1 == 0 && GET_CODE (PATTERN (i2)) == PARALLEL
1701       && XVECLEN (PATTERN (i2), 0) >= 2
1702       && GET_CODE (XVECEXP (PATTERN (i2), 0, 0)) == SET
1703       && (GET_MODE_CLASS (GET_MODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 0))))
1704           == MODE_CC)
1705       && GET_CODE (SET_SRC (XVECEXP (PATTERN (i2), 0, 0))) == COMPARE
1706       && XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 1) == const0_rtx
1707       && GET_CODE (XVECEXP (PATTERN (i2), 0, 1)) == SET
1708       && GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 1))) == REG
1709       && rtx_equal_p (XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 0),
1710                       SET_SRC (XVECEXP (PATTERN (i2), 0, 1))))
1711     {
1712       for (i = XVECLEN (PATTERN (i2), 0) - 1; i >= 2; i--)
1713         if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != CLOBBER)
1714           break;
1715
1716       if (i == 1)
1717         {
1718           /* We make I1 with the same INSN_UID as I2.  This gives it
1719              the same INSN_CUID for value tracking.  Our fake I1 will
1720              never appear in the insn stream so giving it the same INSN_UID
1721              as I2 will not cause a problem.  */
1722
1723           subst_prev_insn = i1
1724             = gen_rtx_INSN (VOIDmode, INSN_UID (i2), NULL_RTX, i2,
1725                             XVECEXP (PATTERN (i2), 0, 1), -1, NULL_RTX,
1726                             NULL_RTX);
1727
1728           SUBST (PATTERN (i2), XVECEXP (PATTERN (i2), 0, 0));
1729           SUBST (XEXP (SET_SRC (PATTERN (i2)), 0),
1730                  SET_DEST (PATTERN (i1)));
1731         }
1732     }
1733 #endif
1734
1735   /* Verify that I2 and I1 are valid for combining.  */
1736   if (! can_combine_p (i2, i3, i1, NULL_RTX, &i2dest, &i2src)
1737       || (i1 && ! can_combine_p (i1, i3, NULL_RTX, i2, &i1dest, &i1src)))
1738     {
1739       undo_all ();
1740       return 0;
1741     }
1742
1743   /* Record whether I2DEST is used in I2SRC and similarly for the other
1744      cases.  Knowing this will help in register status updating below.  */
1745   i2dest_in_i2src = reg_overlap_mentioned_p (i2dest, i2src);
1746   i1dest_in_i1src = i1 && reg_overlap_mentioned_p (i1dest, i1src);
1747   i2dest_in_i1src = i1 && reg_overlap_mentioned_p (i2dest, i1src);
1748
1749   /* See if I1 directly feeds into I3.  It does if I1DEST is not used
1750      in I2SRC.  */
1751   i1_feeds_i3 = i1 && ! reg_overlap_mentioned_p (i1dest, i2src);
1752
1753   /* Ensure that I3's pattern can be the destination of combines.  */
1754   if (! combinable_i3pat (i3, &PATTERN (i3), i2dest, i1dest,
1755                           i1 && i2dest_in_i1src && i1_feeds_i3,
1756                           &i3dest_killed))
1757     {
1758       undo_all ();
1759       return 0;
1760     }
1761
1762   /* See if any of the insns is a MULT operation.  Unless one is, we will
1763      reject a combination that is, since it must be slower.  Be conservative
1764      here.  */
1765   if (GET_CODE (i2src) == MULT
1766       || (i1 != 0 && GET_CODE (i1src) == MULT)
1767       || (GET_CODE (PATTERN (i3)) == SET
1768           && GET_CODE (SET_SRC (PATTERN (i3))) == MULT))
1769     have_mult = 1;
1770
1771   /* If I3 has an inc, then give up if I1 or I2 uses the reg that is inc'd.
1772      We used to do this EXCEPT in one case: I3 has a post-inc in an
1773      output operand.  However, that exception can give rise to insns like
1774         mov r3,(r3)+
1775      which is a famous insn on the PDP-11 where the value of r3 used as the
1776      source was model-dependent.  Avoid this sort of thing.  */
1777
1778 #if 0
1779   if (!(GET_CODE (PATTERN (i3)) == SET
1780         && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1781         && GET_CODE (SET_DEST (PATTERN (i3))) == MEM
1782         && (GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_INC
1783             || GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_DEC)))
1784     /* It's not the exception.  */
1785 #endif
1786 #ifdef AUTO_INC_DEC
1787     for (link = REG_NOTES (i3); link; link = XEXP (link, 1))
1788       if (REG_NOTE_KIND (link) == REG_INC
1789           && (reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i2))
1790               || (i1 != 0
1791                   && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i1)))))
1792         {
1793           undo_all ();
1794           return 0;
1795         }
1796 #endif
1797
1798   /* See if the SETs in I1 or I2 need to be kept around in the merged
1799      instruction: whenever the value set there is still needed past I3.
1800      For the SETs in I2, this is easy: we see if I2DEST dies or is set in I3.
1801
1802      For the SET in I1, we have two cases:  If I1 and I2 independently
1803      feed into I3, the set in I1 needs to be kept around if I1DEST dies
1804      or is set in I3.  Otherwise (if I1 feeds I2 which feeds I3), the set
1805      in I1 needs to be kept around unless I1DEST dies or is set in either
1806      I2 or I3.  We can distinguish these cases by seeing if I2SRC mentions
1807      I1DEST.  If so, we know I1 feeds into I2.  */
1808
1809   added_sets_2 = ! dead_or_set_p (i3, i2dest);
1810
1811   added_sets_1
1812     = i1 && ! (i1_feeds_i3 ? dead_or_set_p (i3, i1dest)
1813                : (dead_or_set_p (i3, i1dest) || dead_or_set_p (i2, i1dest)));
1814
1815   /* If the set in I2 needs to be kept around, we must make a copy of
1816      PATTERN (I2), so that when we substitute I1SRC for I1DEST in
1817      PATTERN (I2), we are only substituting for the original I1DEST, not into
1818      an already-substituted copy.  This also prevents making self-referential
1819      rtx.  If I2 is a PARALLEL, we just need the piece that assigns I2SRC to
1820      I2DEST.  */
1821
1822   i2pat = (GET_CODE (PATTERN (i2)) == PARALLEL
1823            ? gen_rtx_SET (VOIDmode, i2dest, i2src)
1824            : PATTERN (i2));
1825
1826   if (added_sets_2)
1827     i2pat = copy_rtx (i2pat);
1828
1829   combine_merges++;
1830
1831   /* Substitute in the latest insn for the regs set by the earlier ones.  */
1832
1833   maxreg = max_reg_num ();
1834
1835   subst_insn = i3;
1836
1837   /* It is possible that the source of I2 or I1 may be performing an
1838      unneeded operation, such as a ZERO_EXTEND of something that is known
1839      to have the high part zero.  Handle that case by letting subst look at
1840      the innermost one of them.
1841
1842      Another way to do this would be to have a function that tries to
1843      simplify a single insn instead of merging two or more insns.  We don't
1844      do this because of the potential of infinite loops and because
1845      of the potential extra memory required.  However, doing it the way
1846      we are is a bit of a kludge and doesn't catch all cases.
1847
1848      But only do this if -fexpensive-optimizations since it slows things down
1849      and doesn't usually win.  */
1850
1851   if (flag_expensive_optimizations)
1852     {
1853       /* Pass pc_rtx so no substitutions are done, just simplifications.
1854          The cases that we are interested in here do not involve the few
1855          cases were is_replaced is checked.  */
1856       if (i1)
1857         {
1858           subst_low_cuid = INSN_CUID (i1);
1859           i1src = subst (i1src, pc_rtx, pc_rtx, 0, 0);
1860         }
1861       else
1862         {
1863           subst_low_cuid = INSN_CUID (i2);
1864           i2src = subst (i2src, pc_rtx, pc_rtx, 0, 0);
1865         }
1866     }
1867
1868 #ifndef HAVE_cc0
1869   /* Many machines that don't use CC0 have insns that can both perform an
1870      arithmetic operation and set the condition code.  These operations will
1871      be represented as a PARALLEL with the first element of the vector
1872      being a COMPARE of an arithmetic operation with the constant zero.
1873      The second element of the vector will set some pseudo to the result
1874      of the same arithmetic operation.  If we simplify the COMPARE, we won't
1875      match such a pattern and so will generate an extra insn.   Here we test
1876      for this case, where both the comparison and the operation result are
1877      needed, and make the PARALLEL by just replacing I2DEST in I3SRC with
1878      I2SRC.  Later we will make the PARALLEL that contains I2.  */
1879
1880   if (i1 == 0 && added_sets_2 && GET_CODE (PATTERN (i3)) == SET
1881       && GET_CODE (SET_SRC (PATTERN (i3))) == COMPARE
1882       && XEXP (SET_SRC (PATTERN (i3)), 1) == const0_rtx
1883       && rtx_equal_p (XEXP (SET_SRC (PATTERN (i3)), 0), i2dest))
1884     {
1885 #ifdef EXTRA_CC_MODES
1886       rtx *cc_use;
1887       enum machine_mode compare_mode;
1888 #endif
1889
1890       newpat = PATTERN (i3);
1891       SUBST (XEXP (SET_SRC (newpat), 0), i2src);
1892
1893       i2_is_used = 1;
1894
1895 #ifdef EXTRA_CC_MODES
1896       /* See if a COMPARE with the operand we substituted in should be done
1897          with the mode that is currently being used.  If not, do the same
1898          processing we do in `subst' for a SET; namely, if the destination
1899          is used only once, try to replace it with a register of the proper
1900          mode and also replace the COMPARE.  */
1901       if (undobuf.other_insn == 0
1902           && (cc_use = find_single_use (SET_DEST (newpat), i3,
1903                                         &undobuf.other_insn))
1904           && ((compare_mode = SELECT_CC_MODE (GET_CODE (*cc_use),
1905                                               i2src, const0_rtx))
1906               != GET_MODE (SET_DEST (newpat))))
1907         {
1908           unsigned int regno = REGNO (SET_DEST (newpat));
1909           rtx new_dest = gen_rtx_REG (compare_mode, regno);
1910
1911           if (regno < FIRST_PSEUDO_REGISTER
1912               || (REG_N_SETS (regno) == 1 && ! added_sets_2
1913                   && ! REG_USERVAR_P (SET_DEST (newpat))))
1914             {
1915               if (regno >= FIRST_PSEUDO_REGISTER)
1916                 SUBST (regno_reg_rtx[regno], new_dest);
1917
1918               SUBST (SET_DEST (newpat), new_dest);
1919               SUBST (XEXP (*cc_use, 0), new_dest);
1920               SUBST (SET_SRC (newpat),
1921                      gen_rtx_COMPARE (compare_mode, i2src, const0_rtx));
1922             }
1923           else
1924             undobuf.other_insn = 0;
1925         }
1926 #endif
1927     }
1928   else
1929 #endif
1930     {
1931       n_occurrences = 0;                /* `subst' counts here */
1932
1933       /* If I1 feeds into I2 (not into I3) and I1DEST is in I1SRC, we
1934          need to make a unique copy of I2SRC each time we substitute it
1935          to avoid self-referential rtl.  */
1936
1937       subst_low_cuid = INSN_CUID (i2);
1938       newpat = subst (PATTERN (i3), i2dest, i2src, 0,
1939                       ! i1_feeds_i3 && i1dest_in_i1src);
1940
1941       /* Record whether i2's body now appears within i3's body.  */
1942       i2_is_used = n_occurrences;
1943     }
1944
1945   /* If we already got a failure, don't try to do more.  Otherwise,
1946      try to substitute in I1 if we have it.  */
1947
1948   if (i1 && GET_CODE (newpat) != CLOBBER)
1949     {
1950       /* Before we can do this substitution, we must redo the test done
1951          above (see detailed comments there) that ensures  that I1DEST
1952          isn't mentioned in any SETs in NEWPAT that are field assignments.  */
1953
1954       if (! combinable_i3pat (NULL_RTX, &newpat, i1dest, NULL_RTX,
1955                               0, (rtx*)0))
1956         {
1957           undo_all ();
1958           return 0;
1959         }
1960
1961       n_occurrences = 0;
1962       subst_low_cuid = INSN_CUID (i1);
1963       newpat = subst (newpat, i1dest, i1src, 0, 0);
1964     }
1965
1966   /* Fail if an autoincrement side-effect has been duplicated.  Be careful
1967      to count all the ways that I2SRC and I1SRC can be used.  */
1968   if ((FIND_REG_INC_NOTE (i2, NULL_RTX) != 0
1969        && i2_is_used + added_sets_2 > 1)
1970       || (i1 != 0 && FIND_REG_INC_NOTE (i1, NULL_RTX) != 0
1971           && (n_occurrences + added_sets_1 + (added_sets_2 && ! i1_feeds_i3)
1972               > 1))
1973       /* Fail if we tried to make a new register (we used to abort, but there's
1974          really no reason to).  */
1975       || max_reg_num () != maxreg
1976       /* Fail if we couldn't do something and have a CLOBBER.  */
1977       || GET_CODE (newpat) == CLOBBER
1978       /* Fail if this new pattern is a MULT and we didn't have one before
1979          at the outer level.  */
1980       || (GET_CODE (newpat) == SET && GET_CODE (SET_SRC (newpat)) == MULT
1981           && ! have_mult))
1982     {
1983       undo_all ();
1984       return 0;
1985     }
1986
1987   /* If the actions of the earlier insns must be kept
1988      in addition to substituting them into the latest one,
1989      we must make a new PARALLEL for the latest insn
1990      to hold additional the SETs.  */
1991
1992   if (added_sets_1 || added_sets_2)
1993     {
1994       combine_extras++;
1995
1996       if (GET_CODE (newpat) == PARALLEL)
1997         {
1998           rtvec old = XVEC (newpat, 0);
1999           total_sets = XVECLEN (newpat, 0) + added_sets_1 + added_sets_2;
2000           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
2001           memcpy (XVEC (newpat, 0)->elem, &old->elem[0],
2002                   sizeof (old->elem[0]) * old->num_elem);
2003         }
2004       else
2005         {
2006           rtx old = newpat;
2007           total_sets = 1 + added_sets_1 + added_sets_2;
2008           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
2009           XVECEXP (newpat, 0, 0) = old;
2010         }
2011
2012      if (added_sets_1)
2013        XVECEXP (newpat, 0, --total_sets)
2014          = (GET_CODE (PATTERN (i1)) == PARALLEL
2015             ? gen_rtx_SET (VOIDmode, i1dest, i1src) : PATTERN (i1));
2016
2017      if (added_sets_2)
2018        {
2019          /* If there is no I1, use I2's body as is.  We used to also not do
2020             the subst call below if I2 was substituted into I3,
2021             but that could lose a simplification.  */
2022          if (i1 == 0)
2023            XVECEXP (newpat, 0, --total_sets) = i2pat;
2024          else
2025            /* See comment where i2pat is assigned.  */
2026            XVECEXP (newpat, 0, --total_sets)
2027              = subst (i2pat, i1dest, i1src, 0, 0);
2028        }
2029     }
2030
2031   /* We come here when we are replacing a destination in I2 with the
2032      destination of I3.  */
2033  validate_replacement:
2034
2035   /* Note which hard regs this insn has as inputs.  */
2036   mark_used_regs_combine (newpat);
2037
2038   /* Is the result of combination a valid instruction?  */
2039   insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2040
2041   /* If the result isn't valid, see if it is a PARALLEL of two SETs where
2042      the second SET's destination is a register that is unused.  In that case,
2043      we just need the first SET.   This can occur when simplifying a divmod
2044      insn.  We *must* test for this case here because the code below that
2045      splits two independent SETs doesn't handle this case correctly when it
2046      updates the register status.  Also check the case where the first
2047      SET's destination is unused.  That would not cause incorrect code, but
2048      does cause an unneeded insn to remain.  */
2049
2050   if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2051       && XVECLEN (newpat, 0) == 2
2052       && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2053       && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2054       && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == REG
2055       && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 1)))
2056       && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 1)))
2057       && asm_noperands (newpat) < 0)
2058     {
2059       newpat = XVECEXP (newpat, 0, 0);
2060       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2061     }
2062
2063   else if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2064            && XVECLEN (newpat, 0) == 2
2065            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2066            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2067            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) == REG
2068            && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 0)))
2069            && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 0)))
2070            && asm_noperands (newpat) < 0)
2071     {
2072       newpat = XVECEXP (newpat, 0, 1);
2073       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2074     }
2075
2076   /* If we were combining three insns and the result is a simple SET
2077      with no ASM_OPERANDS that wasn't recognized, try to split it into two
2078      insns.  There are two ways to do this.  It can be split using a
2079      machine-specific method (like when you have an addition of a large
2080      constant) or by combine in the function find_split_point.  */
2081
2082   if (i1 && insn_code_number < 0 && GET_CODE (newpat) == SET
2083       && asm_noperands (newpat) < 0)
2084     {
2085       rtx m_split, *split;
2086       rtx ni2dest = i2dest;
2087
2088       /* See if the MD file can split NEWPAT.  If it can't, see if letting it
2089          use I2DEST as a scratch register will help.  In the latter case,
2090          convert I2DEST to the mode of the source of NEWPAT if we can.  */
2091
2092       m_split = split_insns (newpat, i3);
2093
2094       /* We can only use I2DEST as a scratch reg if it doesn't overlap any
2095          inputs of NEWPAT.  */
2096
2097       /* ??? If I2DEST is not safe, and I1DEST exists, then it would be
2098          possible to try that as a scratch reg.  This would require adding
2099          more code to make it work though.  */
2100
2101       if (m_split == 0 && ! reg_overlap_mentioned_p (ni2dest, newpat))
2102         {
2103           /* If I2DEST is a hard register or the only use of a pseudo,
2104              we can change its mode.  */
2105           if (GET_MODE (SET_DEST (newpat)) != GET_MODE (i2dest)
2106               && GET_MODE (SET_DEST (newpat)) != VOIDmode
2107               && GET_CODE (i2dest) == REG
2108               && (REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2109                   || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2110                       && ! REG_USERVAR_P (i2dest))))
2111             ni2dest = gen_rtx_REG (GET_MODE (SET_DEST (newpat)),
2112                                    REGNO (i2dest));
2113
2114           m_split = split_insns (gen_rtx_PARALLEL
2115                                  (VOIDmode,
2116                                   gen_rtvec (2, newpat,
2117                                              gen_rtx_CLOBBER (VOIDmode,
2118                                                               ni2dest))),
2119                                  i3);
2120           /* If the split with the mode-changed register didn't work, try
2121              the original register.  */
2122           if (! m_split && ni2dest != i2dest)
2123             {
2124               ni2dest = i2dest;
2125               m_split = split_insns (gen_rtx_PARALLEL
2126                                      (VOIDmode,
2127                                       gen_rtvec (2, newpat,
2128                                                  gen_rtx_CLOBBER (VOIDmode,
2129                                                                   i2dest))),
2130                                      i3);
2131             }
2132         }
2133
2134       if (m_split && GET_CODE (m_split) != SEQUENCE)
2135         {
2136           insn_code_number = recog_for_combine (&m_split, i3, &new_i3_notes);
2137           if (insn_code_number >= 0)
2138             newpat = m_split;
2139         } 
2140       else if (m_split && GET_CODE (m_split) == SEQUENCE
2141                && XVECLEN (m_split, 0) == 2
2142                && (next_real_insn (i2) == i3
2143                    || ! use_crosses_set_p (PATTERN (XVECEXP (m_split, 0, 0)),
2144                                            INSN_CUID (i2))))
2145         {
2146           rtx i2set, i3set;
2147           rtx newi3pat = PATTERN (XVECEXP (m_split, 0, 1));
2148           newi2pat = PATTERN (XVECEXP (m_split, 0, 0));
2149
2150           i3set = single_set (XVECEXP (m_split, 0, 1));
2151           i2set = single_set (XVECEXP (m_split, 0, 0));
2152
2153           /* In case we changed the mode of I2DEST, replace it in the
2154              pseudo-register table here.  We can't do it above in case this
2155              code doesn't get executed and we do a split the other way.  */
2156
2157           if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2158             SUBST (regno_reg_rtx[REGNO (i2dest)], ni2dest);
2159
2160           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2161
2162           /* If I2 or I3 has multiple SETs, we won't know how to track
2163              register status, so don't use these insns.  If I2's destination
2164              is used between I2 and I3, we also can't use these insns.  */
2165
2166           if (i2_code_number >= 0 && i2set && i3set
2167               && (next_real_insn (i2) == i3
2168                   || ! reg_used_between_p (SET_DEST (i2set), i2, i3)))
2169             insn_code_number = recog_for_combine (&newi3pat, i3,
2170                                                   &new_i3_notes);
2171           if (insn_code_number >= 0)
2172             newpat = newi3pat;
2173
2174           /* It is possible that both insns now set the destination of I3.
2175              If so, we must show an extra use of it.  */
2176
2177           if (insn_code_number >= 0)
2178             {
2179               rtx new_i3_dest = SET_DEST (i3set);
2180               rtx new_i2_dest = SET_DEST (i2set);
2181
2182               while (GET_CODE (new_i3_dest) == ZERO_EXTRACT
2183                      || GET_CODE (new_i3_dest) == STRICT_LOW_PART
2184                      || GET_CODE (new_i3_dest) == SUBREG)
2185                 new_i3_dest = XEXP (new_i3_dest, 0);
2186
2187               while (GET_CODE (new_i2_dest) == ZERO_EXTRACT
2188                      || GET_CODE (new_i2_dest) == STRICT_LOW_PART
2189                      || GET_CODE (new_i2_dest) == SUBREG)
2190                 new_i2_dest = XEXP (new_i2_dest, 0);
2191
2192               if (GET_CODE (new_i3_dest) == REG
2193                   && GET_CODE (new_i2_dest) == REG
2194                   && REGNO (new_i3_dest) == REGNO (new_i2_dest))
2195                 REG_N_SETS (REGNO (new_i2_dest))++;
2196             }
2197         }
2198
2199       /* If we can split it and use I2DEST, go ahead and see if that
2200          helps things be recognized.  Verify that none of the registers
2201          are set between I2 and I3.  */
2202       if (insn_code_number < 0 && (split = find_split_point (&newpat, i3)) != 0
2203 #ifdef HAVE_cc0
2204           && GET_CODE (i2dest) == REG
2205 #endif
2206           /* We need I2DEST in the proper mode.  If it is a hard register
2207              or the only use of a pseudo, we can change its mode.  */
2208           && (GET_MODE (*split) == GET_MODE (i2dest)
2209               || GET_MODE (*split) == VOIDmode
2210               || REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2211               || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2212                   && ! REG_USERVAR_P (i2dest)))
2213           && (next_real_insn (i2) == i3
2214               || ! use_crosses_set_p (*split, INSN_CUID (i2)))
2215           /* We can't overwrite I2DEST if its value is still used by
2216              NEWPAT.  */
2217           && ! reg_referenced_p (i2dest, newpat))
2218         {
2219           rtx newdest = i2dest;
2220           enum rtx_code split_code = GET_CODE (*split);
2221           enum machine_mode split_mode = GET_MODE (*split);
2222
2223           /* Get NEWDEST as a register in the proper mode.  We have already
2224              validated that we can do this.  */
2225           if (GET_MODE (i2dest) != split_mode && split_mode != VOIDmode)
2226             {
2227               newdest = gen_rtx_REG (split_mode, REGNO (i2dest));
2228
2229               if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2230                 SUBST (regno_reg_rtx[REGNO (i2dest)], newdest);
2231             }
2232
2233           /* If *SPLIT is a (mult FOO (const_int pow2)), convert it to
2234              an ASHIFT.  This can occur if it was inside a PLUS and hence
2235              appeared to be a memory address.  This is a kludge.  */
2236           if (split_code == MULT
2237               && GET_CODE (XEXP (*split, 1)) == CONST_INT
2238               && (i = exact_log2 (INTVAL (XEXP (*split, 1)))) >= 0)
2239             {
2240               SUBST (*split, gen_rtx_ASHIFT (split_mode,
2241                                              XEXP (*split, 0), GEN_INT (i)));
2242               /* Update split_code because we may not have a multiply
2243                  anymore.  */
2244               split_code = GET_CODE (*split);
2245             }
2246
2247 #ifdef INSN_SCHEDULING
2248           /* If *SPLIT is a paradoxical SUBREG, when we split it, it should
2249              be written as a ZERO_EXTEND.  */
2250           if (split_code == SUBREG && GET_CODE (SUBREG_REG (*split)) == MEM)
2251             SUBST (*split, gen_rtx_ZERO_EXTEND  (split_mode,
2252                                                  SUBREG_REG (*split)));
2253 #endif
2254
2255           newi2pat = gen_rtx_SET (VOIDmode, newdest, *split);
2256           SUBST (*split, newdest);
2257           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2258
2259           /* If the split point was a MULT and we didn't have one before,
2260              don't use one now.  */
2261           if (i2_code_number >= 0 && ! (split_code == MULT && ! have_mult))
2262             insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2263         }
2264     }
2265
2266   /* Check for a case where we loaded from memory in a narrow mode and
2267      then sign extended it, but we need both registers.  In that case,
2268      we have a PARALLEL with both loads from the same memory location.
2269      We can split this into a load from memory followed by a register-register
2270      copy.  This saves at least one insn, more if register allocation can
2271      eliminate the copy.
2272
2273      We cannot do this if the destination of the second assignment is
2274      a register that we have already assumed is zero-extended.  Similarly
2275      for a SUBREG of such a register.  */
2276
2277   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2278            && GET_CODE (newpat) == PARALLEL
2279            && XVECLEN (newpat, 0) == 2
2280            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2281            && GET_CODE (SET_SRC (XVECEXP (newpat, 0, 0))) == SIGN_EXTEND
2282            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2283            && rtx_equal_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2284                            XEXP (SET_SRC (XVECEXP (newpat, 0, 0)), 0))
2285            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2286                                    INSN_CUID (i2))
2287            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2288            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2289            && ! (temp = SET_DEST (XVECEXP (newpat, 0, 1)),
2290                  (GET_CODE (temp) == REG
2291                   && reg_nonzero_bits[REGNO (temp)] != 0
2292                   && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2293                   && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2294                   && (reg_nonzero_bits[REGNO (temp)]
2295                       != GET_MODE_MASK (word_mode))))
2296            && ! (GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == SUBREG
2297                  && (temp = SUBREG_REG (SET_DEST (XVECEXP (newpat, 0, 1))),
2298                      (GET_CODE (temp) == REG
2299                       && reg_nonzero_bits[REGNO (temp)] != 0
2300                       && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2301                       && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2302                       && (reg_nonzero_bits[REGNO (temp)]
2303                           != GET_MODE_MASK (word_mode)))))
2304            && ! reg_overlap_mentioned_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2305                                          SET_SRC (XVECEXP (newpat, 0, 1)))
2306            && ! find_reg_note (i3, REG_UNUSED,
2307                                SET_DEST (XVECEXP (newpat, 0, 0))))
2308     {
2309       rtx ni2dest;
2310
2311       newi2pat = XVECEXP (newpat, 0, 0);
2312       ni2dest = SET_DEST (XVECEXP (newpat, 0, 0));
2313       newpat = XVECEXP (newpat, 0, 1);
2314       SUBST (SET_SRC (newpat),
2315              gen_lowpart_for_combine (GET_MODE (SET_SRC (newpat)), ni2dest));
2316       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2317
2318       if (i2_code_number >= 0)
2319         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2320
2321       if (insn_code_number >= 0)
2322         {
2323           rtx insn;
2324           rtx link;
2325
2326           /* If we will be able to accept this, we have made a change to the
2327              destination of I3.  This can invalidate a LOG_LINKS pointing
2328              to I3.  No other part of combine.c makes such a transformation.
2329
2330              The new I3 will have a destination that was previously the
2331              destination of I1 or I2 and which was used in i2 or I3.  Call
2332              distribute_links to make a LOG_LINK from the next use of
2333              that destination.  */
2334
2335           PATTERN (i3) = newpat;
2336           distribute_links (gen_rtx_INSN_LIST (VOIDmode, i3, NULL_RTX));
2337
2338           /* I3 now uses what used to be its destination and which is
2339              now I2's destination.  That means we need a LOG_LINK from
2340              I3 to I2.  But we used to have one, so we still will.
2341
2342              However, some later insn might be using I2's dest and have
2343              a LOG_LINK pointing at I3.  We must remove this link.
2344              The simplest way to remove the link is to point it at I1,
2345              which we know will be a NOTE.  */
2346
2347           for (insn = NEXT_INSN (i3);
2348                insn && (this_basic_block == n_basic_blocks - 1
2349                         || insn != BLOCK_HEAD (this_basic_block + 1));
2350                insn = NEXT_INSN (insn))
2351             {
2352               if (INSN_P (insn) && reg_referenced_p (ni2dest, PATTERN (insn)))
2353                 {
2354                   for (link = LOG_LINKS (insn); link;
2355                        link = XEXP (link, 1))
2356                     if (XEXP (link, 0) == i3)
2357                       XEXP (link, 0) = i1;
2358
2359                   break;
2360                 }
2361             }
2362         }
2363     }
2364
2365   /* Similarly, check for a case where we have a PARALLEL of two independent
2366      SETs but we started with three insns.  In this case, we can do the sets
2367      as two separate insns.  This case occurs when some SET allows two
2368      other insns to combine, but the destination of that SET is still live.  */
2369
2370   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2371            && GET_CODE (newpat) == PARALLEL
2372            && XVECLEN (newpat, 0) == 2
2373            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2374            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != ZERO_EXTRACT
2375            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != STRICT_LOW_PART
2376            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2377            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2378            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2379            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2380                                    INSN_CUID (i2))
2381            /* Don't pass sets with (USE (MEM ...)) dests to the following.  */
2382            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != USE
2383            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != USE
2384            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2385                                   XVECEXP (newpat, 0, 0))
2386            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 0)),
2387                                   XVECEXP (newpat, 0, 1))
2388            && ! (contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 0)))
2389                  && contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 1)))))
2390     {
2391       /* Normally, it doesn't matter which of the two is done first,
2392          but it does if one references cc0.  In that case, it has to
2393          be first.  */
2394 #ifdef HAVE_cc0
2395       if (reg_referenced_p (cc0_rtx, XVECEXP (newpat, 0, 0)))
2396         {
2397           newi2pat = XVECEXP (newpat, 0, 0);
2398           newpat = XVECEXP (newpat, 0, 1);
2399         }
2400       else
2401 #endif
2402         {
2403           newi2pat = XVECEXP (newpat, 0, 1);
2404           newpat = XVECEXP (newpat, 0, 0);
2405         }
2406
2407       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2408
2409       if (i2_code_number >= 0)
2410         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2411     }
2412
2413   /* If it still isn't recognized, fail and change things back the way they
2414      were.  */
2415   if ((insn_code_number < 0
2416        /* Is the result a reasonable ASM_OPERANDS?  */
2417        && (! check_asm_operands (newpat) || added_sets_1 || added_sets_2)))
2418     {
2419       undo_all ();
2420       return 0;
2421     }
2422
2423   /* If we had to change another insn, make sure it is valid also.  */
2424   if (undobuf.other_insn)
2425     {
2426       rtx other_pat = PATTERN (undobuf.other_insn);
2427       rtx new_other_notes;
2428       rtx note, next;
2429
2430       CLEAR_HARD_REG_SET (newpat_used_regs);
2431
2432       other_code_number = recog_for_combine (&other_pat, undobuf.other_insn,
2433                                              &new_other_notes);
2434
2435       if (other_code_number < 0 && ! check_asm_operands (other_pat))
2436         {
2437           undo_all ();
2438           return 0;
2439         }
2440
2441       PATTERN (undobuf.other_insn) = other_pat;
2442
2443       /* If any of the notes in OTHER_INSN were REG_UNUSED, ensure that they
2444          are still valid.  Then add any non-duplicate notes added by
2445          recog_for_combine.  */
2446       for (note = REG_NOTES (undobuf.other_insn); note; note = next)
2447         {
2448           next = XEXP (note, 1);
2449
2450           if (REG_NOTE_KIND (note) == REG_UNUSED
2451               && ! reg_set_p (XEXP (note, 0), PATTERN (undobuf.other_insn)))
2452             {
2453               if (GET_CODE (XEXP (note, 0)) == REG)
2454                 REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
2455
2456               remove_note (undobuf.other_insn, note);
2457             }
2458         }
2459
2460       for (note = new_other_notes; note; note = XEXP (note, 1))
2461         if (GET_CODE (XEXP (note, 0)) == REG)
2462           REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
2463
2464       distribute_notes (new_other_notes, undobuf.other_insn,
2465                         undobuf.other_insn, NULL_RTX, NULL_RTX, NULL_RTX);
2466     }
2467 #ifdef HAVE_cc0
2468   /* If I2 is the setter CC0 and I3 is the user CC0 then check whether
2469      they are adjacent to each other or not. */
2470   {
2471     rtx p = prev_nonnote_insn (i3);
2472     if (p && p != i2 && GET_CODE (p) == INSN && newi2pat
2473         && sets_cc0_p (newi2pat))
2474       {
2475         undo_all ();
2476         return 0;
2477       }
2478   }
2479 #endif
2480
2481   /* We now know that we can do this combination.  Merge the insns and
2482      update the status of registers and LOG_LINKS.  */
2483
2484   {
2485     rtx i3notes, i2notes, i1notes = 0;
2486     rtx i3links, i2links, i1links = 0;
2487     rtx midnotes = 0;
2488     unsigned int regno;
2489     /* Compute which registers we expect to eliminate.  newi2pat may be setting
2490        either i3dest or i2dest, so we must check it.  Also, i1dest may be the
2491        same as i3dest, in which case newi2pat may be setting i1dest.  */
2492     rtx elim_i2 = ((newi2pat && reg_set_p (i2dest, newi2pat))
2493                    || i2dest_in_i2src || i2dest_in_i1src
2494                    ? 0 : i2dest);
2495     rtx elim_i1 = (i1 == 0 || i1dest_in_i1src
2496                    || (newi2pat && reg_set_p (i1dest, newi2pat))
2497                    ? 0 : i1dest);
2498
2499     /* Get the old REG_NOTES and LOG_LINKS from all our insns and
2500        clear them.  */
2501     i3notes = REG_NOTES (i3), i3links = LOG_LINKS (i3);
2502     i2notes = REG_NOTES (i2), i2links = LOG_LINKS (i2);
2503     if (i1)
2504       i1notes = REG_NOTES (i1), i1links = LOG_LINKS (i1);
2505
2506     /* Ensure that we do not have something that should not be shared but
2507        occurs multiple times in the new insns.  Check this by first
2508        resetting all the `used' flags and then copying anything is shared.  */
2509
2510     reset_used_flags (i3notes);
2511     reset_used_flags (i2notes);
2512     reset_used_flags (i1notes);
2513     reset_used_flags (newpat);
2514     reset_used_flags (newi2pat);
2515     if (undobuf.other_insn)
2516       reset_used_flags (PATTERN (undobuf.other_insn));
2517
2518     i3notes = copy_rtx_if_shared (i3notes);
2519     i2notes = copy_rtx_if_shared (i2notes);
2520     i1notes = copy_rtx_if_shared (i1notes);
2521     newpat = copy_rtx_if_shared (newpat);
2522     newi2pat = copy_rtx_if_shared (newi2pat);
2523     if (undobuf.other_insn)
2524       reset_used_flags (PATTERN (undobuf.other_insn));
2525
2526     INSN_CODE (i3) = insn_code_number;
2527     PATTERN (i3) = newpat;
2528     if (undobuf.other_insn)
2529       INSN_CODE (undobuf.other_insn) = other_code_number;
2530
2531     /* We had one special case above where I2 had more than one set and
2532        we replaced a destination of one of those sets with the destination
2533        of I3.  In that case, we have to update LOG_LINKS of insns later
2534        in this basic block.  Note that this (expensive) case is rare.
2535
2536        Also, in this case, we must pretend that all REG_NOTEs for I2
2537        actually came from I3, so that REG_UNUSED notes from I2 will be
2538        properly handled.  */
2539
2540     if (i3_subst_into_i2)
2541       {
2542         for (i = 0; i < XVECLEN (PATTERN (i2), 0); i++)
2543           if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != USE
2544               && GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, i))) == REG
2545               && SET_DEST (XVECEXP (PATTERN (i2), 0, i)) != i2dest
2546               && ! find_reg_note (i2, REG_UNUSED,
2547                                   SET_DEST (XVECEXP (PATTERN (i2), 0, i))))
2548             for (temp = NEXT_INSN (i2);
2549                  temp && (this_basic_block == n_basic_blocks - 1
2550                           || BLOCK_HEAD (this_basic_block) != temp);
2551                  temp = NEXT_INSN (temp))
2552               if (temp != i3 && INSN_P (temp))
2553                 for (link = LOG_LINKS (temp); link; link = XEXP (link, 1))
2554                   if (XEXP (link, 0) == i2)
2555                     XEXP (link, 0) = i3;
2556
2557         if (i3notes)
2558           {
2559             rtx link = i3notes;
2560             while (XEXP (link, 1))
2561               link = XEXP (link, 1);
2562             XEXP (link, 1) = i2notes;
2563           }
2564         else
2565           i3notes = i2notes;
2566         i2notes = 0;
2567       }
2568
2569     LOG_LINKS (i3) = 0;
2570     REG_NOTES (i3) = 0;
2571     LOG_LINKS (i2) = 0;
2572     REG_NOTES (i2) = 0;
2573
2574     if (newi2pat)
2575       {
2576         INSN_CODE (i2) = i2_code_number;
2577         PATTERN (i2) = newi2pat;
2578       }
2579     else
2580       {
2581         PUT_CODE (i2, NOTE);
2582         NOTE_LINE_NUMBER (i2) = NOTE_INSN_DELETED;
2583         NOTE_SOURCE_FILE (i2) = 0;
2584       }
2585
2586     if (i1)
2587       {
2588         LOG_LINKS (i1) = 0;
2589         REG_NOTES (i1) = 0;
2590         PUT_CODE (i1, NOTE);
2591         NOTE_LINE_NUMBER (i1) = NOTE_INSN_DELETED;
2592         NOTE_SOURCE_FILE (i1) = 0;
2593       }
2594
2595     /* Get death notes for everything that is now used in either I3 or
2596        I2 and used to die in a previous insn.  If we built two new
2597        patterns, move from I1 to I2 then I2 to I3 so that we get the
2598        proper movement on registers that I2 modifies.  */
2599
2600     if (newi2pat)
2601       {
2602         move_deaths (newi2pat, NULL_RTX, INSN_CUID (i1), i2, &midnotes);
2603         move_deaths (newpat, newi2pat, INSN_CUID (i1), i3, &midnotes);
2604       }
2605     else
2606       move_deaths (newpat, NULL_RTX, i1 ? INSN_CUID (i1) : INSN_CUID (i2),
2607                    i3, &midnotes);
2608
2609     /* Distribute all the LOG_LINKS and REG_NOTES from I1, I2, and I3.  */
2610     if (i3notes)
2611       distribute_notes (i3notes, i3, i3, newi2pat ? i2 : NULL_RTX,
2612                         elim_i2, elim_i1);
2613     if (i2notes)
2614       distribute_notes (i2notes, i2, i3, newi2pat ? i2 : NULL_RTX,
2615                         elim_i2, elim_i1);
2616     if (i1notes)
2617       distribute_notes (i1notes, i1, i3, newi2pat ? i2 : NULL_RTX,
2618                         elim_i2, elim_i1);
2619     if (midnotes)
2620       distribute_notes (midnotes, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2621                         elim_i2, elim_i1);
2622
2623     /* Distribute any notes added to I2 or I3 by recog_for_combine.  We
2624        know these are REG_UNUSED and want them to go to the desired insn,
2625        so we always pass it as i3.  We have not counted the notes in
2626        reg_n_deaths yet, so we need to do so now.  */
2627
2628     if (newi2pat && new_i2_notes)
2629       {
2630         for (temp = new_i2_notes; temp; temp = XEXP (temp, 1))
2631           if (GET_CODE (XEXP (temp, 0)) == REG)
2632             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2633
2634         distribute_notes (new_i2_notes, i2, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2635       }
2636
2637     if (new_i3_notes)
2638       {
2639         for (temp = new_i3_notes; temp; temp = XEXP (temp, 1))
2640           if (GET_CODE (XEXP (temp, 0)) == REG)
2641             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2642
2643         distribute_notes (new_i3_notes, i3, i3, NULL_RTX, NULL_RTX, NULL_RTX);
2644       }
2645
2646     /* If I3DEST was used in I3SRC, it really died in I3.  We may need to
2647        put a REG_DEAD note for it somewhere.  If NEWI2PAT exists and sets
2648        I3DEST, the death must be somewhere before I2, not I3.  If we passed I3
2649        in that case, it might delete I2.  Similarly for I2 and I1.
2650        Show an additional death due to the REG_DEAD note we make here.  If
2651        we discard it in distribute_notes, we will decrement it again.  */
2652
2653     if (i3dest_killed)
2654       {
2655         if (GET_CODE (i3dest_killed) == REG)
2656           REG_N_DEATHS (REGNO (i3dest_killed))++;
2657
2658         if (newi2pat && reg_set_p (i3dest_killed, newi2pat))
2659           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2660                                                NULL_RTX),
2661                             NULL_RTX, i2, NULL_RTX, elim_i2, elim_i1);
2662         else
2663           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2664                                                NULL_RTX),
2665                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2666                             elim_i2, elim_i1);
2667       }
2668
2669     if (i2dest_in_i2src)
2670       {
2671         if (GET_CODE (i2dest) == REG)
2672           REG_N_DEATHS (REGNO (i2dest))++;
2673
2674         if (newi2pat && reg_set_p (i2dest, newi2pat))
2675           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2676                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2677         else
2678           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2679                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2680                             NULL_RTX, NULL_RTX);
2681       }
2682
2683     if (i1dest_in_i1src)
2684       {
2685         if (GET_CODE (i1dest) == REG)
2686           REG_N_DEATHS (REGNO (i1dest))++;
2687
2688         if (newi2pat && reg_set_p (i1dest, newi2pat))
2689           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2690                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2691         else
2692           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2693                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2694                             NULL_RTX, NULL_RTX);
2695       }
2696
2697     distribute_links (i3links);
2698     distribute_links (i2links);
2699     distribute_links (i1links);
2700
2701     if (GET_CODE (i2dest) == REG)
2702       {
2703         rtx link;
2704         rtx i2_insn = 0, i2_val = 0, set;
2705
2706         /* The insn that used to set this register doesn't exist, and
2707            this life of the register may not exist either.  See if one of
2708            I3's links points to an insn that sets I2DEST.  If it does,
2709            that is now the last known value for I2DEST. If we don't update
2710            this and I2 set the register to a value that depended on its old
2711            contents, we will get confused.  If this insn is used, thing
2712            will be set correctly in combine_instructions.  */
2713
2714         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2715           if ((set = single_set (XEXP (link, 0))) != 0
2716               && rtx_equal_p (i2dest, SET_DEST (set)))
2717             i2_insn = XEXP (link, 0), i2_val = SET_SRC (set);
2718
2719         record_value_for_reg (i2dest, i2_insn, i2_val);
2720
2721         /* If the reg formerly set in I2 died only once and that was in I3,
2722            zero its use count so it won't make `reload' do any work.  */
2723         if (! added_sets_2
2724             && (newi2pat == 0 || ! reg_mentioned_p (i2dest, newi2pat))
2725             && ! i2dest_in_i2src)
2726           {
2727             regno = REGNO (i2dest);
2728             REG_N_SETS (regno)--;
2729           }
2730       }
2731
2732     if (i1 && GET_CODE (i1dest) == REG)
2733       {
2734         rtx link;
2735         rtx i1_insn = 0, i1_val = 0, set;
2736
2737         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2738           if ((set = single_set (XEXP (link, 0))) != 0
2739               && rtx_equal_p (i1dest, SET_DEST (set)))
2740             i1_insn = XEXP (link, 0), i1_val = SET_SRC (set);
2741
2742         record_value_for_reg (i1dest, i1_insn, i1_val);
2743
2744         regno = REGNO (i1dest);
2745         if (! added_sets_1 && ! i1dest_in_i1src)
2746           REG_N_SETS (regno)--;
2747       }
2748
2749     /* Update reg_nonzero_bits et al for any changes that may have been made
2750        to this insn.  The order of set_nonzero_bits_and_sign_copies() is
2751        important.  Because newi2pat can affect nonzero_bits of newpat */
2752     if (newi2pat)
2753       note_stores (newi2pat, set_nonzero_bits_and_sign_copies, NULL);
2754     note_stores (newpat, set_nonzero_bits_and_sign_copies, NULL);
2755
2756     /* Set new_direct_jump_p if a new return or simple jump instruction
2757        has been created.
2758
2759        If I3 is now an unconditional jump, ensure that it has a
2760        BARRIER following it since it may have initially been a
2761        conditional jump.  It may also be the last nonnote insn.  */
2762
2763     if (GET_CODE (newpat) == RETURN || any_uncondjump_p (i3))
2764       {
2765         *new_direct_jump_p = 1;
2766
2767         if ((temp = next_nonnote_insn (i3)) == NULL_RTX
2768             || GET_CODE (temp) != BARRIER)
2769           emit_barrier_after (i3);
2770       }
2771   }
2772
2773   combine_successes++;
2774   undo_commit ();
2775
2776   /* Clear this here, so that subsequent get_last_value calls are not
2777      affected.  */
2778   subst_prev_insn = NULL_RTX;
2779
2780   if (added_links_insn
2781       && (newi2pat == 0 || INSN_CUID (added_links_insn) < INSN_CUID (i2))
2782       && INSN_CUID (added_links_insn) < INSN_CUID (i3))
2783     return added_links_insn;
2784   else
2785     return newi2pat ? i2 : i3;
2786 }
2787 \f
2788 /* Undo all the modifications recorded in undobuf.  */
2789
2790 static void
2791 undo_all ()
2792 {
2793   struct undo *undo, *next;
2794
2795   for (undo = undobuf.undos; undo; undo = next)
2796     {
2797       next = undo->next;
2798       if (undo->is_int)
2799         *undo->where.i = undo->old_contents.i;
2800       else
2801         *undo->where.r = undo->old_contents.r;
2802
2803       undo->next = undobuf.frees;
2804       undobuf.frees = undo;
2805     }
2806
2807   undobuf.undos = 0;
2808
2809   /* Clear this here, so that subsequent get_last_value calls are not
2810      affected.  */
2811   subst_prev_insn = NULL_RTX;
2812 }
2813
2814 /* We've committed to accepting the changes we made.  Move all
2815    of the undos to the free list.  */
2816
2817 static void
2818 undo_commit ()
2819 {
2820   struct undo *undo, *next;
2821
2822   for (undo = undobuf.undos; undo; undo = next)
2823     {
2824       next = undo->next;
2825       undo->next = undobuf.frees;
2826       undobuf.frees = undo;
2827     }
2828   undobuf.undos = 0;
2829 }
2830
2831 \f
2832 /* Find the innermost point within the rtx at LOC, possibly LOC itself,
2833    where we have an arithmetic expression and return that point.  LOC will
2834    be inside INSN.
2835
2836    try_combine will call this function to see if an insn can be split into
2837    two insns.  */
2838
2839 static rtx *
2840 find_split_point (loc, insn)
2841      rtx *loc;
2842      rtx insn;
2843 {
2844   rtx x = *loc;
2845   enum rtx_code code = GET_CODE (x);
2846   rtx *split;
2847   unsigned HOST_WIDE_INT len = 0;
2848   HOST_WIDE_INT pos = 0;
2849   int unsignedp = 0;
2850   rtx inner = NULL_RTX;
2851
2852   /* First special-case some codes.  */
2853   switch (code)
2854     {
2855     case SUBREG:
2856 #ifdef INSN_SCHEDULING
2857       /* If we are making a paradoxical SUBREG invalid, it becomes a split
2858          point.  */
2859       if (GET_CODE (SUBREG_REG (x)) == MEM)
2860         return loc;
2861 #endif
2862       return find_split_point (&SUBREG_REG (x), insn);
2863
2864     case MEM:
2865 #ifdef HAVE_lo_sum
2866       /* If we have (mem (const ..)) or (mem (symbol_ref ...)), split it
2867          using LO_SUM and HIGH.  */
2868       if (GET_CODE (XEXP (x, 0)) == CONST
2869           || GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
2870         {
2871           SUBST (XEXP (x, 0),
2872                  gen_rtx_LO_SUM (Pmode,
2873                                  gen_rtx_HIGH (Pmode, XEXP (x, 0)),
2874                                  XEXP (x, 0)));
2875           return &XEXP (XEXP (x, 0), 0);
2876         }
2877 #endif
2878
2879       /* If we have a PLUS whose second operand is a constant and the
2880          address is not valid, perhaps will can split it up using
2881          the machine-specific way to split large constants.  We use
2882          the first pseudo-reg (one of the virtual regs) as a placeholder;
2883          it will not remain in the result.  */
2884       if (GET_CODE (XEXP (x, 0)) == PLUS
2885           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2886           && ! memory_address_p (GET_MODE (x), XEXP (x, 0)))
2887         {
2888           rtx reg = regno_reg_rtx[FIRST_PSEUDO_REGISTER];
2889           rtx seq = split_insns (gen_rtx_SET (VOIDmode, reg, XEXP (x, 0)),
2890                                  subst_insn);
2891
2892           /* This should have produced two insns, each of which sets our
2893              placeholder.  If the source of the second is a valid address,
2894              we can make put both sources together and make a split point
2895              in the middle.  */
2896
2897           if (seq && XVECLEN (seq, 0) == 2
2898               && GET_CODE (XVECEXP (seq, 0, 0)) == INSN
2899               && GET_CODE (PATTERN (XVECEXP (seq, 0, 0))) == SET
2900               && SET_DEST (PATTERN (XVECEXP (seq, 0, 0))) == reg
2901               && ! reg_mentioned_p (reg,
2902                                     SET_SRC (PATTERN (XVECEXP (seq, 0, 0))))
2903               && GET_CODE (XVECEXP (seq, 0, 1)) == INSN
2904               && GET_CODE (PATTERN (XVECEXP (seq, 0, 1))) == SET
2905               && SET_DEST (PATTERN (XVECEXP (seq, 0, 1))) == reg
2906               && memory_address_p (GET_MODE (x),
2907                                    SET_SRC (PATTERN (XVECEXP (seq, 0, 1)))))
2908             {
2909               rtx src1 = SET_SRC (PATTERN (XVECEXP (seq, 0, 0)));
2910               rtx src2 = SET_SRC (PATTERN (XVECEXP (seq, 0, 1)));
2911
2912               /* Replace the placeholder in SRC2 with SRC1.  If we can
2913                  find where in SRC2 it was placed, that can become our
2914                  split point and we can replace this address with SRC2.
2915                  Just try two obvious places.  */
2916
2917               src2 = replace_rtx (src2, reg, src1);
2918               split = 0;
2919               if (XEXP (src2, 0) == src1)
2920                 split = &XEXP (src2, 0);
2921               else if (GET_RTX_FORMAT (GET_CODE (XEXP (src2, 0)))[0] == 'e'
2922                        && XEXP (XEXP (src2, 0), 0) == src1)
2923                 split = &XEXP (XEXP (src2, 0), 0);
2924
2925               if (split)
2926                 {
2927                   SUBST (XEXP (x, 0), src2);
2928                   return split;
2929                 }
2930             }
2931
2932           /* If that didn't work, perhaps the first operand is complex and
2933              needs to be computed separately, so make a split point there.
2934              This will occur on machines that just support REG + CONST
2935              and have a constant moved through some previous computation.  */
2936
2937           else if (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) != 'o'
2938                    && ! (GET_CODE (XEXP (XEXP (x, 0), 0)) == SUBREG
2939                          && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (XEXP (x, 0), 0))))
2940                              == 'o')))
2941             return &XEXP (XEXP (x, 0), 0);
2942         }
2943       break;
2944
2945     case SET:
2946 #ifdef HAVE_cc0
2947       /* If SET_DEST is CC0 and SET_SRC is not an operand, a COMPARE, or a
2948          ZERO_EXTRACT, the most likely reason why this doesn't match is that
2949          we need to put the operand into a register.  So split at that
2950          point.  */
2951
2952       if (SET_DEST (x) == cc0_rtx
2953           && GET_CODE (SET_SRC (x)) != COMPARE
2954           && GET_CODE (SET_SRC (x)) != ZERO_EXTRACT
2955           && GET_RTX_CLASS (GET_CODE (SET_SRC (x))) != 'o'
2956           && ! (GET_CODE (SET_SRC (x)) == SUBREG
2957                 && GET_RTX_CLASS (GET_CODE (SUBREG_REG (SET_SRC (x)))) == 'o'))
2958         return &SET_SRC (x);
2959 #endif
2960
2961       /* See if we can split SET_SRC as it stands.  */
2962       split = find_split_point (&SET_SRC (x), insn);
2963       if (split && split != &SET_SRC (x))
2964         return split;
2965
2966       /* See if we can split SET_DEST as it stands.  */
2967       split = find_split_point (&SET_DEST (x), insn);
2968       if (split && split != &SET_DEST (x))
2969         return split;
2970
2971       /* See if this is a bitfield assignment with everything constant.  If
2972          so, this is an IOR of an AND, so split it into that.  */
2973       if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
2974           && (GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)))
2975               <= HOST_BITS_PER_WIDE_INT)
2976           && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT
2977           && GET_CODE (XEXP (SET_DEST (x), 2)) == CONST_INT
2978           && GET_CODE (SET_SRC (x)) == CONST_INT
2979           && ((INTVAL (XEXP (SET_DEST (x), 1))
2980               + INTVAL (XEXP (SET_DEST (x), 2)))
2981               <= GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0))))
2982           && ! side_effects_p (XEXP (SET_DEST (x), 0)))
2983         {
2984           HOST_WIDE_INT pos = INTVAL (XEXP (SET_DEST (x), 2));
2985           unsigned HOST_WIDE_INT len = INTVAL (XEXP (SET_DEST (x), 1));
2986           unsigned HOST_WIDE_INT src = INTVAL (SET_SRC (x));
2987           rtx dest = XEXP (SET_DEST (x), 0);
2988           enum machine_mode mode = GET_MODE (dest);
2989           unsigned HOST_WIDE_INT mask = ((HOST_WIDE_INT) 1 << len) - 1;
2990
2991           if (BITS_BIG_ENDIAN)
2992             pos = GET_MODE_BITSIZE (mode) - len - pos;
2993
2994           if (src == mask)
2995             SUBST (SET_SRC (x),
2996                    gen_binary (IOR, mode, dest, GEN_INT (src << pos)));
2997           else
2998             SUBST (SET_SRC (x),
2999                    gen_binary (IOR, mode,
3000                                gen_binary (AND, mode, dest,
3001                                            GEN_INT (~(mask << pos)
3002                                                     & GET_MODE_MASK (mode))),
3003                                GEN_INT (src << pos)));
3004
3005           SUBST (SET_DEST (x), dest);
3006
3007           split = find_split_point (&SET_SRC (x), insn);
3008           if (split && split != &SET_SRC (x))
3009             return split;
3010         }
3011
3012       /* Otherwise, see if this is an operation that we can split into two.
3013          If so, try to split that.  */
3014       code = GET_CODE (SET_SRC (x));
3015
3016       switch (code)
3017         {
3018         case AND:
3019           /* If we are AND'ing with a large constant that is only a single
3020              bit and the result is only being used in a context where we
3021              need to know if it is zero or non-zero, replace it with a bit
3022              extraction.  This will avoid the large constant, which might
3023              have taken more than one insn to make.  If the constant were
3024              not a valid argument to the AND but took only one insn to make,
3025              this is no worse, but if it took more than one insn, it will
3026              be better.  */
3027
3028           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3029               && GET_CODE (XEXP (SET_SRC (x), 0)) == REG
3030               && (pos = exact_log2 (INTVAL (XEXP (SET_SRC (x), 1)))) >= 7
3031               && GET_CODE (SET_DEST (x)) == REG
3032               && (split = find_single_use (SET_DEST (x), insn, (rtx*)0)) != 0
3033               && (GET_CODE (*split) == EQ || GET_CODE (*split) == NE)
3034               && XEXP (*split, 0) == SET_DEST (x)
3035               && XEXP (*split, 1) == const0_rtx)
3036             {
3037               rtx extraction = make_extraction (GET_MODE (SET_DEST (x)),
3038                                                 XEXP (SET_SRC (x), 0),
3039                                                 pos, NULL_RTX, 1, 1, 0, 0);
3040               if (extraction != 0)
3041                 {
3042                   SUBST (SET_SRC (x), extraction);
3043                   return find_split_point (loc, insn);
3044                 }
3045             }
3046           break;
3047
3048         case NE:
3049           /* if STORE_FLAG_VALUE is -1, this is (NE X 0) and only one bit of X
3050              is known to be on, this can be converted into a NEG of a shift. */
3051           if (STORE_FLAG_VALUE == -1 && XEXP (SET_SRC (x), 1) == const0_rtx
3052               && GET_MODE (SET_SRC (x)) == GET_MODE (XEXP (SET_SRC (x), 0))
3053               && 1 <= (pos = exact_log2
3054                        (nonzero_bits (XEXP (SET_SRC (x), 0),
3055                                       GET_MODE (XEXP (SET_SRC (x), 0))))))
3056             {
3057               enum machine_mode mode = GET_MODE (XEXP (SET_SRC (x), 0));
3058
3059               SUBST (SET_SRC (x),
3060                      gen_rtx_NEG (mode,
3061                                   gen_rtx_LSHIFTRT (mode,
3062                                                     XEXP (SET_SRC (x), 0),
3063                                                     GEN_INT (pos))));
3064
3065               split = find_split_point (&SET_SRC (x), insn);
3066               if (split && split != &SET_SRC (x))
3067                 return split;
3068             }
3069           break;
3070
3071         case SIGN_EXTEND:
3072           inner = XEXP (SET_SRC (x), 0);
3073
3074           /* We can't optimize if either mode is a partial integer
3075              mode as we don't know how many bits are significant
3076              in those modes.  */
3077           if (GET_MODE_CLASS (GET_MODE (inner)) == MODE_PARTIAL_INT
3078               || GET_MODE_CLASS (GET_MODE (SET_SRC (x))) == MODE_PARTIAL_INT)
3079             break;
3080
3081           pos = 0;
3082           len = GET_MODE_BITSIZE (GET_MODE (inner));
3083           unsignedp = 0;
3084           break;
3085
3086         case SIGN_EXTRACT:
3087         case ZERO_EXTRACT:
3088           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3089               && GET_CODE (XEXP (SET_SRC (x), 2)) == CONST_INT)
3090             {
3091               inner = XEXP (SET_SRC (x), 0);
3092               len = INTVAL (XEXP (SET_SRC (x), 1));
3093               pos = INTVAL (XEXP (SET_SRC (x), 2));
3094
3095               if (BITS_BIG_ENDIAN)
3096                 pos = GET_MODE_BITSIZE (GET_MODE (inner)) - len - pos;
3097               unsignedp = (code == ZERO_EXTRACT);
3098             }
3099           break;
3100
3101         default:
3102           break;
3103         }
3104
3105       if (len && pos >= 0 && pos + len <= GET_MODE_BITSIZE (GET_MODE (inner)))
3106         {
3107           enum machine_mode mode = GET_MODE (SET_SRC (x));
3108
3109           /* For unsigned, we have a choice of a shift followed by an
3110              AND or two shifts.  Use two shifts for field sizes where the
3111              constant might be too large.  We assume here that we can
3112              always at least get 8-bit constants in an AND insn, which is
3113              true for every current RISC.  */
3114
3115           if (unsignedp && len <= 8)
3116             {
3117               SUBST (SET_SRC (x),
3118                      gen_rtx_AND (mode,
3119                                   gen_rtx_LSHIFTRT
3120                                   (mode, gen_lowpart_for_combine (mode, inner),
3121                                    GEN_INT (pos)),
3122                                   GEN_INT (((HOST_WIDE_INT) 1 << len) - 1)));
3123
3124               split = find_split_point (&SET_SRC (x), insn);
3125               if (split && split != &SET_SRC (x))
3126                 return split;
3127             }
3128           else
3129             {
3130               SUBST (SET_SRC (x),
3131                      gen_rtx_fmt_ee
3132                      (unsignedp ? LSHIFTRT : ASHIFTRT, mode,
3133                       gen_rtx_ASHIFT (mode,
3134                                       gen_lowpart_for_combine (mode, inner),
3135                                       GEN_INT (GET_MODE_BITSIZE (mode)
3136                                                - len - pos)),
3137                       GEN_INT (GET_MODE_BITSIZE (mode) - len)));
3138
3139               split = find_split_point (&SET_SRC (x), insn);
3140               if (split && split != &SET_SRC (x))
3141                 return split;
3142             }
3143         }
3144
3145       /* See if this is a simple operation with a constant as the second
3146          operand.  It might be that this constant is out of range and hence
3147          could be used as a split point.  */
3148       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3149            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3150            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<')
3151           && CONSTANT_P (XEXP (SET_SRC (x), 1))
3152           && (GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (x), 0))) == 'o'
3153               || (GET_CODE (XEXP (SET_SRC (x), 0)) == SUBREG
3154                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (SET_SRC (x), 0))))
3155                       == 'o'))))
3156         return &XEXP (SET_SRC (x), 1);
3157
3158       /* Finally, see if this is a simple operation with its first operand
3159          not in a register.  The operation might require this operand in a
3160          register, so return it as a split point.  We can always do this
3161          because if the first operand were another operation, we would have
3162          already found it as a split point.  */
3163       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3164            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3165            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<'
3166            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '1')
3167           && ! register_operand (XEXP (SET_SRC (x), 0), VOIDmode))
3168         return &XEXP (SET_SRC (x), 0);
3169
3170       return 0;
3171
3172     case AND:
3173     case IOR:
3174       /* We write NOR as (and (not A) (not B)), but if we don't have a NOR,
3175          it is better to write this as (not (ior A B)) so we can split it.
3176          Similarly for IOR.  */
3177       if (GET_CODE (XEXP (x, 0)) == NOT && GET_CODE (XEXP (x, 1)) == NOT)
3178         {
3179           SUBST (*loc,
3180                  gen_rtx_NOT (GET_MODE (x),
3181                               gen_rtx_fmt_ee (code == IOR ? AND : IOR,
3182                                               GET_MODE (x),
3183                                               XEXP (XEXP (x, 0), 0),
3184                                               XEXP (XEXP (x, 1), 0))));
3185           return find_split_point (loc, insn);
3186         }
3187
3188       /* Many RISC machines have a large set of logical insns.  If the
3189          second operand is a NOT, put it first so we will try to split the
3190          other operand first.  */
3191       if (GET_CODE (XEXP (x, 1)) == NOT)
3192         {
3193           rtx tem = XEXP (x, 0);
3194           SUBST (XEXP (x, 0), XEXP (x, 1));
3195           SUBST (XEXP (x, 1), tem);
3196         }
3197       break;
3198
3199     default:
3200       break;
3201     }
3202
3203   /* Otherwise, select our actions depending on our rtx class.  */
3204   switch (GET_RTX_CLASS (code))
3205     {
3206     case 'b':                   /* This is ZERO_EXTRACT and SIGN_EXTRACT.  */
3207     case '3':
3208       split = find_split_point (&XEXP (x, 2), insn);
3209       if (split)
3210         return split;
3211       /* ... fall through ...  */
3212     case '2':
3213     case 'c':
3214     case '<':
3215       split = find_split_point (&XEXP (x, 1), insn);
3216       if (split)
3217         return split;
3218       /* ... fall through ...  */
3219     case '1':
3220       /* Some machines have (and (shift ...) ...) insns.  If X is not
3221          an AND, but XEXP (X, 0) is, use it as our split point.  */
3222       if (GET_CODE (x) != AND && GET_CODE (XEXP (x, 0)) == AND)
3223         return &XEXP (x, 0);
3224
3225       split = find_split_point (&XEXP (x, 0), insn);
3226       if (split)
3227         return split;
3228       return loc;
3229     }
3230
3231   /* Otherwise, we don't have a split point.  */
3232   return 0;
3233 }
3234 \f
3235 /* Throughout X, replace FROM with TO, and return the result.
3236    The result is TO if X is FROM;
3237    otherwise the result is X, but its contents may have been modified.
3238    If they were modified, a record was made in undobuf so that
3239    undo_all will (among other things) return X to its original state.
3240
3241    If the number of changes necessary is too much to record to undo,
3242    the excess changes are not made, so the result is invalid.
3243    The changes already made can still be undone.
3244    undobuf.num_undo is incremented for such changes, so by testing that
3245    the caller can tell whether the result is valid.
3246
3247    `n_occurrences' is incremented each time FROM is replaced.
3248
3249    IN_DEST is non-zero if we are processing the SET_DEST of a SET.
3250
3251    UNIQUE_COPY is non-zero if each substitution must be unique.  We do this
3252    by copying if `n_occurrences' is non-zero.  */
3253
3254 static rtx
3255 subst (x, from, to, in_dest, unique_copy)
3256      register rtx x, from, to;
3257      int in_dest;
3258      int unique_copy;
3259 {
3260   register enum rtx_code code = GET_CODE (x);
3261   enum machine_mode op0_mode = VOIDmode;
3262   register const char *fmt;
3263   register int len, i;
3264   rtx new;
3265
3266 /* Two expressions are equal if they are identical copies of a shared
3267    RTX or if they are both registers with the same register number
3268    and mode.  */
3269
3270 #define COMBINE_RTX_EQUAL_P(X,Y)                        \
3271   ((X) == (Y)                                           \
3272    || (GET_CODE (X) == REG && GET_CODE (Y) == REG       \
3273        && REGNO (X) == REGNO (Y) && GET_MODE (X) == GET_MODE (Y)))
3274
3275   if (! in_dest && COMBINE_RTX_EQUAL_P (x, from))
3276     {
3277       n_occurrences++;
3278       return (unique_copy && n_occurrences > 1 ? copy_rtx (to) : to);
3279     }
3280
3281   /* If X and FROM are the same register but different modes, they will
3282      not have been seen as equal above.  However, flow.c will make a
3283      LOG_LINKS entry for that case.  If we do nothing, we will try to
3284      rerecognize our original insn and, when it succeeds, we will
3285      delete the feeding insn, which is incorrect.
3286
3287      So force this insn not to match in this (rare) case.  */
3288   if (! in_dest && code == REG && GET_CODE (from) == REG
3289       && REGNO (x) == REGNO (from))
3290     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
3291
3292   /* If this is an object, we are done unless it is a MEM or LO_SUM, both
3293      of which may contain things that can be combined.  */
3294   if (code != MEM && code != LO_SUM && GET_RTX_CLASS (code) == 'o')
3295     return x;
3296
3297   /* It is possible to have a subexpression appear twice in the insn.
3298      Suppose that FROM is a register that appears within TO.
3299      Then, after that subexpression has been scanned once by `subst',
3300      the second time it is scanned, TO may be found.  If we were
3301      to scan TO here, we would find FROM within it and create a
3302      self-referent rtl structure which is completely wrong.  */
3303   if (COMBINE_RTX_EQUAL_P (x, to))
3304     return to;
3305
3306   /* Parallel asm_operands need special attention because all of the
3307      inputs are shared across the arms.  Furthermore, unsharing the
3308      rtl results in recognition failures.  Failure to handle this case
3309      specially can result in circular rtl.
3310
3311      Solve this by doing a normal pass across the first entry of the
3312      parallel, and only processing the SET_DESTs of the subsequent
3313      entries.  Ug.  */
3314
3315   if (code == PARALLEL
3316       && GET_CODE (XVECEXP (x, 0, 0)) == SET
3317       && GET_CODE (SET_SRC (XVECEXP (x, 0, 0))) == ASM_OPERANDS)
3318     {
3319       new = subst (XVECEXP (x, 0, 0), from, to, 0, unique_copy);
3320
3321       /* If this substitution failed, this whole thing fails.  */
3322       if (GET_CODE (new) == CLOBBER
3323           && XEXP (new, 0) == const0_rtx)
3324         return new;
3325
3326       SUBST (XVECEXP (x, 0, 0), new);
3327
3328       for (i = XVECLEN (x, 0) - 1; i >= 1; i--)
3329         {
3330           rtx dest = SET_DEST (XVECEXP (x, 0, i));
3331
3332           if (GET_CODE (dest) != REG
3333               && GET_CODE (dest) != CC0
3334               && GET_CODE (dest) != PC)
3335             {
3336               new = subst (dest, from, to, 0, unique_copy);
3337
3338               /* If this substitution failed, this whole thing fails.  */
3339               if (GET_CODE (new) == CLOBBER
3340                   && XEXP (new, 0) == const0_rtx)
3341                 return new;
3342
3343               SUBST (SET_DEST (XVECEXP (x, 0, i)), new);
3344             }
3345         }
3346     }
3347   else
3348     {
3349       len = GET_RTX_LENGTH (code);
3350       fmt = GET_RTX_FORMAT (code);
3351
3352       /* We don't need to process a SET_DEST that is a register, CC0,
3353          or PC, so set up to skip this common case.  All other cases
3354          where we want to suppress replacing something inside a
3355          SET_SRC are handled via the IN_DEST operand.  */
3356       if (code == SET
3357           && (GET_CODE (SET_DEST (x)) == REG
3358               || GET_CODE (SET_DEST (x)) == CC0
3359               || GET_CODE (SET_DEST (x)) == PC))
3360         fmt = "ie";
3361
3362       /* Get the mode of operand 0 in case X is now a SIGN_EXTEND of a
3363          constant.  */
3364       if (fmt[0] == 'e')
3365         op0_mode = GET_MODE (XEXP (x, 0));
3366
3367       for (i = 0; i < len; i++)
3368         {
3369           if (fmt[i] == 'E')
3370             {
3371               register int j;
3372               for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3373                 {
3374                   if (COMBINE_RTX_EQUAL_P (XVECEXP (x, i, j), from))
3375                     {
3376                       new = (unique_copy && n_occurrences
3377                              ? copy_rtx (to) : to);
3378                       n_occurrences++;
3379                     }
3380                   else
3381                     {
3382                       new = subst (XVECEXP (x, i, j), from, to, 0,
3383                                    unique_copy);
3384
3385                       /* If this substitution failed, this whole thing
3386                          fails.  */
3387                       if (GET_CODE (new) == CLOBBER
3388                           && XEXP (new, 0) == const0_rtx)
3389                         return new;
3390                     }
3391
3392                   SUBST (XVECEXP (x, i, j), new);
3393                 }
3394             }
3395           else if (fmt[i] == 'e')
3396             {
3397               /* If this is a register being set, ignore it.  */
3398               new = XEXP (x, i);
3399               if (in_dest
3400                   && (code == SUBREG || code == STRICT_LOW_PART
3401                       || code == ZERO_EXTRACT)
3402                   && i == 0
3403                   && GET_CODE (new) == REG)
3404                 ;
3405
3406               else if (COMBINE_RTX_EQUAL_P (XEXP (x, i), from))
3407                 {
3408                   /* In general, don't install a subreg involving two
3409                      modes not tieable.  It can worsen register
3410                      allocation, and can even make invalid reload
3411                      insns, since the reg inside may need to be copied
3412                      from in the outside mode, and that may be invalid
3413                      if it is an fp reg copied in integer mode.
3414
3415                      We allow two exceptions to this: It is valid if
3416                      it is inside another SUBREG and the mode of that
3417                      SUBREG and the mode of the inside of TO is
3418                      tieable and it is valid if X is a SET that copies
3419                      FROM to CC0.  */
3420
3421                   if (GET_CODE (to) == SUBREG
3422                       && ! MODES_TIEABLE_P (GET_MODE (to),
3423                                             GET_MODE (SUBREG_REG (to)))
3424                       && ! (code == SUBREG
3425                             && MODES_TIEABLE_P (GET_MODE (x),
3426                                                 GET_MODE (SUBREG_REG (to))))
3427 #ifdef HAVE_cc0
3428                       && ! (code == SET && i == 1 && XEXP (x, 0) == cc0_rtx)
3429 #endif
3430                       )
3431                     return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
3432
3433 #ifdef CLASS_CANNOT_CHANGE_MODE
3434                   if (code == SUBREG
3435                       && GET_CODE (to) == REG
3436                       && REGNO (to) < FIRST_PSEUDO_REGISTER
3437                       && (TEST_HARD_REG_BIT
3438                           (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
3439                            REGNO (to)))
3440                       && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (to),
3441                                                      GET_MODE (x)))
3442                     return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
3443 #endif
3444
3445                   new = (unique_copy && n_occurrences ? copy_rtx (to) : to);
3446                   n_occurrences++;
3447                 }
3448               else
3449                 /* If we are in a SET_DEST, suppress most cases unless we
3450                    have gone inside a MEM, in which case we want to
3451                    simplify the address.  We assume here that things that
3452                    are actually part of the destination have their inner
3453                    parts in the first expression.  This is true for SUBREG,
3454                    STRICT_LOW_PART, and ZERO_EXTRACT, which are the only
3455                    things aside from REG and MEM that should appear in a
3456                    SET_DEST.  */
3457                 new = subst (XEXP (x, i), from, to,
3458                              (((in_dest
3459                                 && (code == SUBREG || code == STRICT_LOW_PART
3460                                     || code == ZERO_EXTRACT))
3461                                || code == SET)
3462                               && i == 0), unique_copy);
3463
3464               /* If we found that we will have to reject this combination,
3465                  indicate that by returning the CLOBBER ourselves, rather than
3466                  an expression containing it.  This will speed things up as
3467                  well as prevent accidents where two CLOBBERs are considered
3468                  to be equal, thus producing an incorrect simplification.  */
3469
3470               if (GET_CODE (new) == CLOBBER && XEXP (new, 0) == const0_rtx)
3471                 return new;
3472
3473               SUBST (XEXP (x, i), new);
3474             }
3475         }
3476     }
3477
3478   /* Try to simplify X.  If the simplification changed the code, it is likely
3479      that further simplification will help, so loop, but limit the number
3480      of repetitions that will be performed.  */
3481
3482   for (i = 0; i < 4; i++)
3483     {
3484       /* If X is sufficiently simple, don't bother trying to do anything
3485          with it.  */
3486       if (code != CONST_INT && code != REG && code != CLOBBER)
3487         x = combine_simplify_rtx (x, op0_mode, i == 3, in_dest);
3488
3489       if (GET_CODE (x) == code)
3490         break;
3491
3492       code = GET_CODE (x);
3493
3494       /* We no longer know the original mode of operand 0 since we
3495          have changed the form of X)  */
3496       op0_mode = VOIDmode;
3497     }
3498
3499   return x;
3500 }
3501 \f
3502 /* Simplify X, a piece of RTL.  We just operate on the expression at the
3503    outer level; call `subst' to simplify recursively.  Return the new
3504    expression.
3505
3506    OP0_MODE is the original mode of XEXP (x, 0); LAST is nonzero if this
3507    will be the iteration even if an expression with a code different from
3508    X is returned; IN_DEST is nonzero if we are inside a SET_DEST.  */
3509
3510 static rtx
3511 combine_simplify_rtx (x, op0_mode, last, in_dest)
3512      rtx x;
3513      enum machine_mode op0_mode;
3514      int last;
3515      int in_dest;
3516 {
3517   enum rtx_code code = GET_CODE (x);
3518   enum machine_mode mode = GET_MODE (x);
3519   rtx temp;
3520   rtx reversed;
3521   int i;
3522
3523   /* If this is a commutative operation, put a constant last and a complex
3524      expression first.  We don't need to do this for comparisons here.  */
3525   if (GET_RTX_CLASS (code) == 'c'
3526       && swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
3527     {
3528       temp = XEXP (x, 0);
3529       SUBST (XEXP (x, 0), XEXP (x, 1));
3530       SUBST (XEXP (x, 1), temp);
3531     }
3532
3533   /* If this is a PLUS, MINUS, or MULT, and the first operand is the
3534      sign extension of a PLUS with a constant, reverse the order of the sign
3535      extension and the addition. Note that this not the same as the original
3536      code, but overflow is undefined for signed values.  Also note that the
3537      PLUS will have been partially moved "inside" the sign-extension, so that
3538      the first operand of X will really look like:
3539          (ashiftrt (plus (ashift A C4) C5) C4).
3540      We convert this to
3541          (plus (ashiftrt (ashift A C4) C2) C4)
3542      and replace the first operand of X with that expression.  Later parts
3543      of this function may simplify the expression further.
3544
3545      For example, if we start with (mult (sign_extend (plus A C1)) C2),
3546      we swap the SIGN_EXTEND and PLUS.  Later code will apply the
3547      distributive law to produce (plus (mult (sign_extend X) C1) C3).
3548
3549      We do this to simplify address expressions.  */
3550
3551   if ((code == PLUS || code == MINUS || code == MULT)
3552       && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3553       && GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS
3554       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == ASHIFT
3555       && GET_CODE (XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1)) == CONST_INT
3556       && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3557       && XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1) == XEXP (XEXP (x, 0), 1)
3558       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
3559       && (temp = simplify_binary_operation (ASHIFTRT, mode,
3560                                             XEXP (XEXP (XEXP (x, 0), 0), 1),
3561                                             XEXP (XEXP (x, 0), 1))) != 0)
3562     {
3563       rtx new
3564         = simplify_shift_const (NULL_RTX, ASHIFT, mode,
3565                                 XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 0),
3566                                 INTVAL (XEXP (XEXP (x, 0), 1)));
3567
3568       new = simplify_shift_const (NULL_RTX, ASHIFTRT, mode, new,
3569                                   INTVAL (XEXP (XEXP (x, 0), 1)));
3570
3571       SUBST (XEXP (x, 0), gen_binary (PLUS, mode, new, temp));
3572     }
3573
3574   /* If this is a simple operation applied to an IF_THEN_ELSE, try
3575      applying it to the arms of the IF_THEN_ELSE.  This often simplifies
3576      things.  Check for cases where both arms are testing the same
3577      condition.
3578
3579      Don't do anything if all operands are very simple.  */
3580
3581   if (((GET_RTX_CLASS (code) == '2' || GET_RTX_CLASS (code) == 'c'
3582         || GET_RTX_CLASS (code) == '<')
3583        && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3584             && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3585                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3586                       == 'o')))
3587            || (GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) != 'o'
3588                && ! (GET_CODE (XEXP (x, 1)) == SUBREG
3589                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 1))))
3590                          == 'o')))))
3591       || (GET_RTX_CLASS (code) == '1'
3592           && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3593                && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3594                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3595                          == 'o'))))))
3596     {
3597       rtx cond, true_rtx, false_rtx;
3598
3599       cond = if_then_else_cond (x, &true_rtx, &false_rtx);
3600       if (cond != 0
3601           /* If everything is a comparison, what we have is highly unlikely
3602              to be simpler, so don't use it.  */
3603           && ! (GET_RTX_CLASS (code) == '<'
3604                 && (GET_RTX_CLASS (GET_CODE (true_rtx)) == '<'
3605                     || GET_RTX_CLASS (GET_CODE (false_rtx)) == '<')))
3606         {
3607           rtx cop1 = const0_rtx;
3608           enum rtx_code cond_code = simplify_comparison (NE, &cond, &cop1);
3609
3610           if (cond_code == NE && GET_RTX_CLASS (GET_CODE (cond)) == '<')
3611             return x;
3612
3613           /* Simplify the alternative arms; this may collapse the true and
3614              false arms to store-flag values.  */
3615           true_rtx = subst (true_rtx, pc_rtx, pc_rtx, 0, 0);
3616           false_rtx = subst (false_rtx, pc_rtx, pc_rtx, 0, 0);
3617
3618           /* If true_rtx and false_rtx are not general_operands, an if_then_else
3619              is unlikely to be simpler.  */
3620           if (general_operand (true_rtx, VOIDmode)
3621               && general_operand (false_rtx, VOIDmode))
3622             {
3623               /* Restarting if we generate a store-flag expression will cause
3624                  us to loop.  Just drop through in this case.  */
3625
3626               /* If the result values are STORE_FLAG_VALUE and zero, we can
3627                  just make the comparison operation.  */
3628               if (true_rtx == const_true_rtx && false_rtx == const0_rtx)
3629                 x = gen_binary (cond_code, mode, cond, cop1);
3630               else if (true_rtx == const0_rtx && false_rtx == const_true_rtx)
3631                 x = gen_binary (reverse_condition (cond_code),
3632                                 mode, cond, cop1);
3633
3634               /* Likewise, we can make the negate of a comparison operation
3635                  if the result values are - STORE_FLAG_VALUE and zero.  */
3636               else if (GET_CODE (true_rtx) == CONST_INT
3637                        && INTVAL (true_rtx) == - STORE_FLAG_VALUE
3638                        && false_rtx == const0_rtx)
3639                 x = simplify_gen_unary (NEG, mode,
3640                                         gen_binary (cond_code, mode, cond,
3641                                                     cop1),
3642                                         mode);
3643               else if (GET_CODE (false_rtx) == CONST_INT
3644                        && INTVAL (false_rtx) == - STORE_FLAG_VALUE
3645                        && true_rtx == const0_rtx)
3646                 x = simplify_gen_unary (NEG, mode,
3647                                         gen_binary (reverse_condition
3648                                                     (cond_code),
3649                                                     mode, cond, cop1),
3650                                         mode);
3651               else
3652                 return gen_rtx_IF_THEN_ELSE (mode,
3653                                              gen_binary (cond_code, VOIDmode,
3654                                                          cond, cop1),
3655                                              true_rtx, false_rtx);
3656
3657               code = GET_CODE (x);
3658               op0_mode = VOIDmode;
3659             }
3660         }
3661     }
3662
3663   /* Try to fold this expression in case we have constants that weren't
3664      present before.  */
3665   temp = 0;
3666   switch (GET_RTX_CLASS (code))
3667     {
3668     case '1':
3669       temp = simplify_unary_operation (code, mode, XEXP (x, 0), op0_mode);
3670       break;
3671     case '<':
3672       {
3673         enum machine_mode cmp_mode = GET_MODE (XEXP (x, 0));
3674         if (cmp_mode == VOIDmode)
3675           {
3676             cmp_mode = GET_MODE (XEXP (x, 1));
3677             if (cmp_mode == VOIDmode)
3678               cmp_mode = op0_mode;
3679           }
3680         temp = simplify_relational_operation (code, cmp_mode,
3681                                               XEXP (x, 0), XEXP (x, 1));
3682       }
3683 #ifdef FLOAT_STORE_FLAG_VALUE
3684       if (temp != 0 && GET_MODE_CLASS (mode) == MODE_FLOAT)
3685         {
3686           if (temp == const0_rtx)
3687             temp = CONST0_RTX (mode);
3688           else
3689             temp = immed_real_const_1 (FLOAT_STORE_FLAG_VALUE (mode), mode);
3690         }
3691 #endif
3692       break;
3693     case 'c':
3694     case '2':
3695       temp = simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1));
3696       break;
3697     case 'b':
3698     case '3':
3699       temp = simplify_ternary_operation (code, mode, op0_mode, XEXP (x, 0),
3700                                          XEXP (x, 1), XEXP (x, 2));
3701       break;
3702     }
3703
3704   if (temp)
3705     {
3706       x = temp;
3707       code = GET_CODE (temp);
3708       op0_mode = VOIDmode;
3709       mode = GET_MODE (temp);
3710     }
3711
3712   /* First see if we can apply the inverse distributive law.  */
3713   if (code == PLUS || code == MINUS
3714       || code == AND || code == IOR || code == XOR)
3715     {
3716       x = apply_distributive_law (x);
3717       code = GET_CODE (x);
3718       op0_mode = VOIDmode;
3719     }
3720
3721   /* If CODE is an associative operation not otherwise handled, see if we
3722      can associate some operands.  This can win if they are constants or
3723      if they are logically related (i.e. (a & b) & a).  */
3724   if ((code == PLUS || code == MINUS
3725        || code == MULT || code == AND || code == IOR || code == XOR
3726        || code == DIV || code == UDIV
3727        || code == SMAX || code == SMIN || code == UMAX || code == UMIN)
3728       && INTEGRAL_MODE_P (mode))
3729     {
3730       if (GET_CODE (XEXP (x, 0)) == code)
3731         {
3732           rtx other = XEXP (XEXP (x, 0), 0);
3733           rtx inner_op0 = XEXP (XEXP (x, 0), 1);
3734           rtx inner_op1 = XEXP (x, 1);
3735           rtx inner;
3736
3737           /* Make sure we pass the constant operand if any as the second
3738              one if this is a commutative operation.  */
3739           if (CONSTANT_P (inner_op0) && GET_RTX_CLASS (code) == 'c')
3740             {
3741               rtx tem = inner_op0;
3742               inner_op0 = inner_op1;
3743               inner_op1 = tem;
3744             }
3745           inner = simplify_binary_operation (code == MINUS ? PLUS
3746                                              : code == DIV ? MULT
3747                                              : code == UDIV ? MULT
3748                                              : code,
3749                                              mode, inner_op0, inner_op1);
3750
3751           /* For commutative operations, try the other pair if that one
3752              didn't simplify.  */
3753           if (inner == 0 && GET_RTX_CLASS (code) == 'c')
3754             {
3755               other = XEXP (XEXP (x, 0), 1);
3756               inner = simplify_binary_operation (code, mode,
3757                                                  XEXP (XEXP (x, 0), 0),
3758                                                  XEXP (x, 1));
3759             }
3760
3761           if (inner)
3762             return gen_binary (code, mode, other, inner);
3763         }
3764     }
3765
3766   /* A little bit of algebraic simplification here.  */
3767   switch (code)
3768     {
3769     case MEM:
3770       /* Ensure that our address has any ASHIFTs converted to MULT in case
3771          address-recognizing predicates are called later.  */
3772       temp = make_compound_operation (XEXP (x, 0), MEM);
3773       SUBST (XEXP (x, 0), temp);
3774       break;
3775
3776     case SUBREG:
3777       if (op0_mode == VOIDmode)
3778         op0_mode = GET_MODE (SUBREG_REG (x));
3779
3780       /* simplify_subreg can't use gen_lowpart_for_combine.  */
3781       if (CONSTANT_P (SUBREG_REG (x))
3782           && subreg_lowpart_offset (mode, op0_mode) == SUBREG_BYTE (x))
3783         return gen_lowpart_for_combine (mode, SUBREG_REG (x));
3784
3785       {
3786         rtx temp;
3787         temp = simplify_subreg (mode, SUBREG_REG (x), op0_mode,
3788                                 SUBREG_BYTE (x));
3789         if (temp)
3790           return temp;
3791       }
3792
3793       /* Note that we cannot do any narrowing for non-constants since
3794          we might have been counting on using the fact that some bits were
3795          zero.  We now do this in the SET.  */
3796
3797       break;
3798
3799     case NOT:
3800       /* (not (plus X -1)) can become (neg X).  */
3801       if (GET_CODE (XEXP (x, 0)) == PLUS
3802           && XEXP (XEXP (x, 0), 1) == constm1_rtx)
3803         return gen_rtx_NEG (mode, XEXP (XEXP (x, 0), 0));
3804
3805       /* Similarly, (not (neg X)) is (plus X -1).  */
3806       if (GET_CODE (XEXP (x, 0)) == NEG)
3807         return gen_rtx_PLUS (mode, XEXP (XEXP (x, 0), 0), constm1_rtx);
3808
3809       /* (not (xor X C)) for C constant is (xor X D) with D = ~C.  */
3810       if (GET_CODE (XEXP (x, 0)) == XOR
3811           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3812           && (temp = simplify_unary_operation (NOT, mode,
3813                                                XEXP (XEXP (x, 0), 1),
3814                                                mode)) != 0)
3815         return gen_binary (XOR, mode, XEXP (XEXP (x, 0), 0), temp);
3816
3817       /* (not (ashift 1 X)) is (rotate ~1 X).  We used to do this for operands
3818          other than 1, but that is not valid.  We could do a similar
3819          simplification for (not (lshiftrt C X)) where C is just the sign bit,
3820          but this doesn't seem common enough to bother with.  */
3821       if (GET_CODE (XEXP (x, 0)) == ASHIFT
3822           && XEXP (XEXP (x, 0), 0) == const1_rtx)
3823         return gen_rtx_ROTATE (mode, simplify_gen_unary (NOT, mode,
3824                                                          const1_rtx, mode),
3825                                XEXP (XEXP (x, 0), 1));
3826
3827       if (GET_CODE (XEXP (x, 0)) == SUBREG
3828           && subreg_lowpart_p (XEXP (x, 0))
3829           && (GET_MODE_SIZE (GET_MODE (XEXP (x, 0)))
3830               < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (x, 0)))))
3831           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == ASHIFT
3832           && XEXP (SUBREG_REG (XEXP (x, 0)), 0) == const1_rtx)
3833         {
3834           enum machine_mode inner_mode = GET_MODE (SUBREG_REG (XEXP (x, 0)));
3835
3836           x = gen_rtx_ROTATE (inner_mode,
3837                               simplify_gen_unary (NOT, inner_mode, const1_rtx,
3838                                                   inner_mode),
3839                               XEXP (SUBREG_REG (XEXP (x, 0)), 1));
3840           return gen_lowpart_for_combine (mode, x);
3841         }
3842
3843       /* If STORE_FLAG_VALUE is -1, (not (comparison foo bar)) can be done by
3844          reversing the comparison code if valid.  */
3845       if (STORE_FLAG_VALUE == -1
3846           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
3847           && (reversed = reversed_comparison (x, mode, XEXP (XEXP (x, 0), 0),
3848                                               XEXP (XEXP (x, 0), 1))))
3849         return reversed;
3850
3851       /* (ashiftrt foo C) where C is the number of bits in FOO minus 1
3852          is (lt foo (const_int 0)) if STORE_FLAG_VALUE is -1, so we can
3853          perform the above simplification.  */
3854
3855       if (STORE_FLAG_VALUE == -1
3856           && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3857           && XEXP (x, 1) == const1_rtx
3858           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3859           && INTVAL (XEXP (XEXP (x, 0), 1)) == GET_MODE_BITSIZE (mode) - 1)
3860         return gen_rtx_GE (mode, XEXP (XEXP (x, 0), 0), const0_rtx);
3861
3862       /* Apply De Morgan's laws to reduce number of patterns for machines
3863          with negating logical insns (and-not, nand, etc.).  If result has
3864          only one NOT, put it first, since that is how the patterns are
3865          coded.  */
3866
3867       if (GET_CODE (XEXP (x, 0)) == IOR || GET_CODE (XEXP (x, 0)) == AND)
3868         {
3869           rtx in1 = XEXP (XEXP (x, 0), 0), in2 = XEXP (XEXP (x, 0), 1);
3870           enum machine_mode op_mode;
3871
3872           op_mode = GET_MODE (in1);
3873           in1 = simplify_gen_unary (NOT, op_mode, in1, op_mode);
3874
3875           op_mode = GET_MODE (in2);
3876           if (op_mode == VOIDmode)
3877             op_mode = mode;
3878           in2 = simplify_gen_unary (NOT, op_mode, in2, op_mode);
3879
3880           if (GET_CODE (in2) == NOT && GET_CODE (in1) != NOT)
3881             {
3882               rtx tem = in2;
3883               in2 = in1; in1 = tem;
3884             }
3885
3886           return gen_rtx_fmt_ee (GET_CODE (XEXP (x, 0)) == IOR ? AND : IOR,
3887                                  mode, in1, in2);
3888         }
3889       break;
3890
3891     case NEG:
3892       /* (neg (plus X 1)) can become (not X).  */
3893       if (GET_CODE (XEXP (x, 0)) == PLUS
3894           && XEXP (XEXP (x, 0), 1) == const1_rtx)
3895         return gen_rtx_NOT (mode, XEXP (XEXP (x, 0), 0));
3896
3897       /* Similarly, (neg (not X)) is (plus X 1).  */
3898       if (GET_CODE (XEXP (x, 0)) == NOT)
3899         return plus_constant (XEXP (XEXP (x, 0), 0), 1);
3900
3901       /* (neg (minus X Y)) can become (minus Y X).  */
3902       if (GET_CODE (XEXP (x, 0)) == MINUS
3903           && (! FLOAT_MODE_P (mode)
3904               /* x-y != -(y-x) with IEEE floating point.  */
3905               || TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
3906               || flag_unsafe_math_optimizations))
3907         return gen_binary (MINUS, mode, XEXP (XEXP (x, 0), 1),
3908                            XEXP (XEXP (x, 0), 0));
3909
3910       /* (neg (xor A 1)) is (plus A -1) if A is known to be either 0 or 1.  */
3911       if (GET_CODE (XEXP (x, 0)) == XOR && XEXP (XEXP (x, 0), 1) == const1_rtx
3912           && nonzero_bits (XEXP (XEXP (x, 0), 0), mode) == 1)
3913         return gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0), constm1_rtx);
3914
3915       /* NEG commutes with ASHIFT since it is multiplication.  Only do this
3916          if we can then eliminate the NEG (e.g.,
3917          if the operand is a constant).  */
3918
3919       if (GET_CODE (XEXP (x, 0)) == ASHIFT)
3920         {
3921           temp = simplify_unary_operation (NEG, mode,
3922                                            XEXP (XEXP (x, 0), 0), mode);
3923           if (temp)
3924             {
3925               SUBST (XEXP (XEXP (x, 0), 0), temp);
3926               return XEXP (x, 0);
3927             }
3928         }
3929
3930       temp = expand_compound_operation (XEXP (x, 0));
3931
3932       /* For C equal to the width of MODE minus 1, (neg (ashiftrt X C)) can be
3933          replaced by (lshiftrt X C).  This will convert
3934          (neg (sign_extract X 1 Y)) to (zero_extract X 1 Y).  */
3935
3936       if (GET_CODE (temp) == ASHIFTRT
3937           && GET_CODE (XEXP (temp, 1)) == CONST_INT
3938           && INTVAL (XEXP (temp, 1)) == GET_MODE_BITSIZE (mode) - 1)
3939         return simplify_shift_const (temp, LSHIFTRT, mode, XEXP (temp, 0),
3940                                      INTVAL (XEXP (temp, 1)));
3941
3942       /* If X has only a single bit that might be nonzero, say, bit I, convert
3943          (neg X) to (ashiftrt (ashift X C-I) C-I) where C is the bitsize of
3944          MODE minus 1.  This will convert (neg (zero_extract X 1 Y)) to
3945          (sign_extract X 1 Y).  But only do this if TEMP isn't a register
3946          or a SUBREG of one since we'd be making the expression more
3947          complex if it was just a register.  */
3948
3949       if (GET_CODE (temp) != REG
3950           && ! (GET_CODE (temp) == SUBREG
3951                 && GET_CODE (SUBREG_REG (temp)) == REG)
3952           && (i = exact_log2 (nonzero_bits (temp, mode))) >= 0)
3953         {
3954           rtx temp1 = simplify_shift_const
3955             (NULL_RTX, ASHIFTRT, mode,
3956              simplify_shift_const (NULL_RTX, ASHIFT, mode, temp,
3957                                    GET_MODE_BITSIZE (mode) - 1 - i),
3958              GET_MODE_BITSIZE (mode) - 1 - i);
3959
3960           /* If all we did was surround TEMP with the two shifts, we
3961              haven't improved anything, so don't use it.  Otherwise,
3962              we are better off with TEMP1.  */
3963           if (GET_CODE (temp1) != ASHIFTRT
3964               || GET_CODE (XEXP (temp1, 0)) != ASHIFT
3965               || XEXP (XEXP (temp1, 0), 0) != temp)
3966             return temp1;
3967         }
3968       break;
3969
3970     case TRUNCATE:
3971       /* We can't handle truncation to a partial integer mode here
3972          because we don't know the real bitsize of the partial
3973          integer mode.  */
3974       if (GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
3975         break;
3976
3977       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
3978           && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
3979                                     GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))))
3980         SUBST (XEXP (x, 0),
3981                force_to_mode (XEXP (x, 0), GET_MODE (XEXP (x, 0)),
3982                               GET_MODE_MASK (mode), NULL_RTX, 0));
3983
3984       /* (truncate:SI ({sign,zero}_extend:DI foo:SI)) == foo:SI.  */
3985       if ((GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
3986            || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
3987           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
3988         return XEXP (XEXP (x, 0), 0);
3989
3990       /* (truncate:SI (OP:DI ({sign,zero}_extend:DI foo:SI))) is
3991          (OP:SI foo:SI) if OP is NEG or ABS.  */
3992       if ((GET_CODE (XEXP (x, 0)) == ABS
3993            || GET_CODE (XEXP (x, 0)) == NEG)
3994           && (GET_CODE (XEXP (XEXP (x, 0), 0)) == SIGN_EXTEND
3995               || GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND)
3996           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
3997         return simplify_gen_unary (GET_CODE (XEXP (x, 0)), mode,
3998                                    XEXP (XEXP (XEXP (x, 0), 0), 0), mode);
3999
4000       /* (truncate:SI (subreg:DI (truncate:SI X) 0)) is
4001          (truncate:SI x).  */
4002       if (GET_CODE (XEXP (x, 0)) == SUBREG
4003           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == TRUNCATE
4004           && subreg_lowpart_p (XEXP (x, 0)))
4005         return SUBREG_REG (XEXP (x, 0));
4006
4007       /* If we know that the value is already truncated, we can
4008          replace the TRUNCATE with a SUBREG if TRULY_NOOP_TRUNCATION
4009          is nonzero for the corresponding modes.  But don't do this
4010          for an (LSHIFTRT (MULT ...)) since this will cause problems
4011          with the umulXi3_highpart patterns.  */
4012       if (TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
4013                                  GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
4014           && num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4015              >= GET_MODE_BITSIZE (mode) + 1
4016           && ! (GET_CODE (XEXP (x, 0)) == LSHIFTRT
4017                 && GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT))
4018         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4019
4020       /* A truncate of a comparison can be replaced with a subreg if
4021          STORE_FLAG_VALUE permits.  This is like the previous test,
4022          but it works even if the comparison is done in a mode larger
4023          than HOST_BITS_PER_WIDE_INT.  */
4024       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4025           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4026           && ((HOST_WIDE_INT) STORE_FLAG_VALUE & ~GET_MODE_MASK (mode)) == 0)
4027         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4028
4029       /* Similarly, a truncate of a register whose value is a
4030          comparison can be replaced with a subreg if STORE_FLAG_VALUE
4031          permits.  */
4032       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4033           && ((HOST_WIDE_INT) STORE_FLAG_VALUE & ~GET_MODE_MASK (mode)) == 0
4034           && (temp = get_last_value (XEXP (x, 0)))
4035           && GET_RTX_CLASS (GET_CODE (temp)) == '<')
4036         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4037
4038       break;
4039
4040     case FLOAT_TRUNCATE:
4041       /* (float_truncate:SF (float_extend:DF foo:SF)) = foo:SF.  */
4042       if (GET_CODE (XEXP (x, 0)) == FLOAT_EXTEND
4043           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
4044         return XEXP (XEXP (x, 0), 0);
4045
4046       /* (float_truncate:SF (OP:DF (float_extend:DF foo:sf))) is
4047          (OP:SF foo:SF) if OP is NEG or ABS.  */
4048       if ((GET_CODE (XEXP (x, 0)) == ABS
4049            || GET_CODE (XEXP (x, 0)) == NEG)
4050           && GET_CODE (XEXP (XEXP (x, 0), 0)) == FLOAT_EXTEND
4051           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
4052         return simplify_gen_unary (GET_CODE (XEXP (x, 0)), mode,
4053                                    XEXP (XEXP (XEXP (x, 0), 0), 0), mode);
4054
4055       /* (float_truncate:SF (subreg:DF (float_truncate:SF X) 0))
4056          is (float_truncate:SF x).  */
4057       if (GET_CODE (XEXP (x, 0)) == SUBREG
4058           && subreg_lowpart_p (XEXP (x, 0))
4059           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == FLOAT_TRUNCATE)
4060         return SUBREG_REG (XEXP (x, 0));
4061       break;
4062
4063 #ifdef HAVE_cc0
4064     case COMPARE:
4065       /* Convert (compare FOO (const_int 0)) to FOO unless we aren't
4066          using cc0, in which case we want to leave it as a COMPARE
4067          so we can distinguish it from a register-register-copy.  */
4068       if (XEXP (x, 1) == const0_rtx)
4069         return XEXP (x, 0);
4070
4071       /* In IEEE floating point, x-0 is not the same as x.  */
4072       if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
4073            || ! FLOAT_MODE_P (GET_MODE (XEXP (x, 0)))
4074            || flag_unsafe_math_optimizations)
4075           && XEXP (x, 1) == CONST0_RTX (GET_MODE (XEXP (x, 0))))
4076         return XEXP (x, 0);
4077       break;
4078 #endif
4079
4080     case CONST:
4081       /* (const (const X)) can become (const X).  Do it this way rather than
4082          returning the inner CONST since CONST can be shared with a
4083          REG_EQUAL note.  */
4084       if (GET_CODE (XEXP (x, 0)) == CONST)
4085         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4086       break;
4087
4088 #ifdef HAVE_lo_sum
4089     case LO_SUM:
4090       /* Convert (lo_sum (high FOO) FOO) to FOO.  This is necessary so we
4091          can add in an offset.  find_split_point will split this address up
4092          again if it doesn't match.  */
4093       if (GET_CODE (XEXP (x, 0)) == HIGH
4094           && rtx_equal_p (XEXP (XEXP (x, 0), 0), XEXP (x, 1)))
4095         return XEXP (x, 1);
4096       break;
4097 #endif
4098
4099     case PLUS:
4100       /* If we have (plus (plus (A const) B)), associate it so that CONST is
4101          outermost.  That's because that's the way indexed addresses are
4102          supposed to appear.  This code used to check many more cases, but
4103          they are now checked elsewhere.  */
4104       if (GET_CODE (XEXP (x, 0)) == PLUS
4105           && CONSTANT_ADDRESS_P (XEXP (XEXP (x, 0), 1)))
4106         return gen_binary (PLUS, mode,
4107                            gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0),
4108                                        XEXP (x, 1)),
4109                            XEXP (XEXP (x, 0), 1));
4110
4111       /* (plus (xor (and <foo> (const_int pow2 - 1)) <c>) <-c>)
4112          when c is (const_int (pow2 + 1) / 2) is a sign extension of a
4113          bit-field and can be replaced by either a sign_extend or a
4114          sign_extract.  The `and' may be a zero_extend and the two
4115          <c>, -<c> constants may be reversed.  */
4116       if (GET_CODE (XEXP (x, 0)) == XOR
4117           && GET_CODE (XEXP (x, 1)) == CONST_INT
4118           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4119           && INTVAL (XEXP (x, 1)) == -INTVAL (XEXP (XEXP (x, 0), 1))
4120           && ((i = exact_log2 (INTVAL (XEXP (XEXP (x, 0), 1)))) >= 0
4121               || (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
4122           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4123           && ((GET_CODE (XEXP (XEXP (x, 0), 0)) == AND
4124                && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
4125                && (INTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1))
4126                    == ((HOST_WIDE_INT) 1 << (i + 1)) - 1))
4127               || (GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND
4128                   && (GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)))
4129                       == (unsigned int) i + 1))))
4130         return simplify_shift_const
4131           (NULL_RTX, ASHIFTRT, mode,
4132            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4133                                  XEXP (XEXP (XEXP (x, 0), 0), 0),
4134                                  GET_MODE_BITSIZE (mode) - (i + 1)),
4135            GET_MODE_BITSIZE (mode) - (i + 1));
4136
4137       /* (plus (comparison A B) C) can become (neg (rev-comp A B)) if
4138          C is 1 and STORE_FLAG_VALUE is -1 or if C is -1 and STORE_FLAG_VALUE
4139          is 1.  This produces better code than the alternative immediately
4140          below.  */
4141       if (GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4142           && ((STORE_FLAG_VALUE == -1 && XEXP (x, 1) == const1_rtx)
4143               || (STORE_FLAG_VALUE == 1 && XEXP (x, 1) == constm1_rtx))
4144           && (reversed = reversed_comparison (XEXP (x, 0), mode,
4145                                               XEXP (XEXP (x, 0), 0),
4146                                               XEXP (XEXP (x, 0), 1))))
4147         return
4148           simplify_gen_unary (NEG, mode, reversed, mode);
4149
4150       /* If only the low-order bit of X is possibly nonzero, (plus x -1)
4151          can become (ashiftrt (ashift (xor x 1) C) C) where C is
4152          the bitsize of the mode - 1.  This allows simplification of
4153          "a = (b & 8) == 0;"  */
4154       if (XEXP (x, 1) == constm1_rtx
4155           && GET_CODE (XEXP (x, 0)) != REG
4156           && ! (GET_CODE (XEXP (x,0)) == SUBREG
4157                 && GET_CODE (SUBREG_REG (XEXP (x, 0))) == REG)
4158           && nonzero_bits (XEXP (x, 0), mode) == 1)
4159         return simplify_shift_const (NULL_RTX, ASHIFTRT, mode,
4160            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4161                                  gen_rtx_XOR (mode, XEXP (x, 0), const1_rtx),
4162                                  GET_MODE_BITSIZE (mode) - 1),
4163            GET_MODE_BITSIZE (mode) - 1);
4164
4165       /* If we are adding two things that have no bits in common, convert
4166          the addition into an IOR.  This will often be further simplified,
4167          for example in cases like ((a & 1) + (a & 2)), which can
4168          become a & 3.  */
4169
4170       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4171           && (nonzero_bits (XEXP (x, 0), mode)
4172               & nonzero_bits (XEXP (x, 1), mode)) == 0)
4173         {
4174           /* Try to simplify the expression further.  */
4175           rtx tor = gen_binary (IOR, mode, XEXP (x, 0), XEXP (x, 1));
4176           temp = combine_simplify_rtx (tor, mode, last, in_dest);
4177
4178           /* If we could, great.  If not, do not go ahead with the IOR
4179              replacement, since PLUS appears in many special purpose
4180              address arithmetic instructions.  */
4181           if (GET_CODE (temp) != CLOBBER && temp != tor)
4182             return temp;
4183         }
4184       break;
4185
4186     case MINUS:
4187       /* If STORE_FLAG_VALUE is 1, (minus 1 (comparison foo bar)) can be done
4188          by reversing the comparison code if valid.  */
4189       if (STORE_FLAG_VALUE == 1
4190           && XEXP (x, 0) == const1_rtx
4191           && GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) == '<'
4192           && (reversed = reversed_comparison (XEXP (x, 1), mode,
4193                                               XEXP (XEXP (x, 1), 0),
4194                                               XEXP (XEXP (x, 1), 1))))
4195         return reversed;
4196
4197       /* (minus <foo> (and <foo> (const_int -pow2))) becomes
4198          (and <foo> (const_int pow2-1))  */
4199       if (GET_CODE (XEXP (x, 1)) == AND
4200           && GET_CODE (XEXP (XEXP (x, 1), 1)) == CONST_INT
4201           && exact_log2 (-INTVAL (XEXP (XEXP (x, 1), 1))) >= 0
4202           && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
4203         return simplify_and_const_int (NULL_RTX, mode, XEXP (x, 0),
4204                                        -INTVAL (XEXP (XEXP (x, 1), 1)) - 1);
4205
4206       /* Canonicalize (minus A (plus B C)) to (minus (minus A B) C) for
4207          integers.  */
4208       if (GET_CODE (XEXP (x, 1)) == PLUS && INTEGRAL_MODE_P (mode))
4209         return gen_binary (MINUS, mode,
4210                            gen_binary (MINUS, mode, XEXP (x, 0),
4211                                        XEXP (XEXP (x, 1), 0)),
4212                            XEXP (XEXP (x, 1), 1));
4213       break;
4214
4215     case MULT:
4216       /* If we have (mult (plus A B) C), apply the distributive law and then
4217          the inverse distributive law to see if things simplify.  This
4218          occurs mostly in addresses, often when unrolling loops.  */
4219
4220       if (GET_CODE (XEXP (x, 0)) == PLUS)
4221         {
4222           x = apply_distributive_law
4223             (gen_binary (PLUS, mode,
4224                          gen_binary (MULT, mode,
4225                                      XEXP (XEXP (x, 0), 0), XEXP (x, 1)),
4226                          gen_binary (MULT, mode,
4227                                      XEXP (XEXP (x, 0), 1),
4228                                      copy_rtx (XEXP (x, 1)))));
4229
4230           if (GET_CODE (x) != MULT)
4231             return x;
4232         }
4233       break;
4234
4235     case UDIV:
4236       /* If this is a divide by a power of two, treat it as a shift if
4237          its first operand is a shift.  */
4238       if (GET_CODE (XEXP (x, 1)) == CONST_INT
4239           && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0
4240           && (GET_CODE (XEXP (x, 0)) == ASHIFT
4241               || GET_CODE (XEXP (x, 0)) == LSHIFTRT
4242               || GET_CODE (XEXP (x, 0)) == ASHIFTRT
4243               || GET_CODE (XEXP (x, 0)) == ROTATE
4244               || GET_CODE (XEXP (x, 0)) == ROTATERT))
4245         return simplify_shift_const (NULL_RTX, LSHIFTRT, mode, XEXP (x, 0), i);
4246       break;
4247
4248     case EQ:  case NE:
4249     case GT:  case GTU:  case GE:  case GEU:
4250     case LT:  case LTU:  case LE:  case LEU:
4251     case UNEQ:  case LTGT:
4252     case UNGT:  case UNGE:  
4253     case UNLT:  case UNLE:  
4254     case UNORDERED: case ORDERED:
4255       /* If the first operand is a condition code, we can't do anything
4256          with it.  */
4257       if (GET_CODE (XEXP (x, 0)) == COMPARE
4258           || (GET_MODE_CLASS (GET_MODE (XEXP (x, 0))) != MODE_CC
4259 #ifdef HAVE_cc0
4260               && XEXP (x, 0) != cc0_rtx
4261 #endif
4262               ))
4263         {
4264           rtx op0 = XEXP (x, 0);
4265           rtx op1 = XEXP (x, 1);
4266           enum rtx_code new_code;
4267
4268           if (GET_CODE (op0) == COMPARE)
4269             op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
4270
4271           /* Simplify our comparison, if possible.  */
4272           new_code = simplify_comparison (code, &op0, &op1);
4273
4274           /* If STORE_FLAG_VALUE is 1, we can convert (ne x 0) to simply X
4275              if only the low-order bit is possibly nonzero in X (such as when
4276              X is a ZERO_EXTRACT of one bit).  Similarly, we can convert EQ to
4277              (xor X 1) or (minus 1 X); we use the former.  Finally, if X is
4278              known to be either 0 or -1, NE becomes a NEG and EQ becomes
4279              (plus X 1).
4280
4281              Remove any ZERO_EXTRACT we made when thinking this was a
4282              comparison.  It may now be simpler to use, e.g., an AND.  If a
4283              ZERO_EXTRACT is indeed appropriate, it will be placed back by
4284              the call to make_compound_operation in the SET case.  */
4285
4286           if (STORE_FLAG_VALUE == 1
4287               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4288               && op1 == const0_rtx
4289               && mode == GET_MODE (op0)
4290               && nonzero_bits (op0, mode) == 1)
4291             return gen_lowpart_for_combine (mode,
4292                                             expand_compound_operation (op0));
4293
4294           else if (STORE_FLAG_VALUE == 1
4295                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4296                    && op1 == const0_rtx
4297                    && mode == GET_MODE (op0)
4298                    && (num_sign_bit_copies (op0, mode)
4299                        == GET_MODE_BITSIZE (mode)))
4300             {
4301               op0 = expand_compound_operation (op0);
4302               return simplify_gen_unary (NEG, mode,
4303                                          gen_lowpart_for_combine (mode, op0),
4304                                          mode);
4305             }
4306
4307           else if (STORE_FLAG_VALUE == 1
4308                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4309                    && op1 == const0_rtx
4310                    && mode == GET_MODE (op0)
4311                    && nonzero_bits (op0, mode) == 1)
4312             {
4313               op0 = expand_compound_operation (op0);
4314               return gen_binary (XOR, mode,
4315                                  gen_lowpart_for_combine (mode, op0),
4316                                  const1_rtx);
4317             }
4318
4319           else if (STORE_FLAG_VALUE == 1
4320                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4321                    && op1 == const0_rtx
4322                    && mode == GET_MODE (op0)
4323                    && (num_sign_bit_copies (op0, mode)
4324                        == GET_MODE_BITSIZE (mode)))
4325             {
4326               op0 = expand_compound_operation (op0);
4327               return plus_constant (gen_lowpart_for_combine (mode, op0), 1);
4328             }
4329
4330           /* If STORE_FLAG_VALUE is -1, we have cases similar to
4331              those above.  */
4332           if (STORE_FLAG_VALUE == -1
4333               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4334               && op1 == const0_rtx
4335               && (num_sign_bit_copies (op0, mode)
4336                   == GET_MODE_BITSIZE (mode)))
4337             return gen_lowpart_for_combine (mode,
4338                                             expand_compound_operation (op0));
4339
4340           else if (STORE_FLAG_VALUE == -1
4341                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4342                    && op1 == const0_rtx
4343                    && mode == GET_MODE (op0)
4344                    && nonzero_bits (op0, mode) == 1)
4345             {
4346               op0 = expand_compound_operation (op0);
4347               return simplify_gen_unary (NEG, mode,
4348                                          gen_lowpart_for_combine (mode, op0),
4349                                          mode);
4350             }
4351
4352           else if (STORE_FLAG_VALUE == -1
4353                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4354                    && op1 == const0_rtx
4355                    && mode == GET_MODE (op0)
4356                    && (num_sign_bit_copies (op0, mode)
4357                        == GET_MODE_BITSIZE (mode)))
4358             {
4359               op0 = expand_compound_operation (op0);
4360               return simplify_gen_unary (NOT, mode,
4361                                          gen_lowpart_for_combine (mode, op0),
4362                                          mode);
4363             }
4364
4365           /* If X is 0/1, (eq X 0) is X-1.  */
4366           else if (STORE_FLAG_VALUE == -1
4367                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4368                    && op1 == const0_rtx
4369                    && mode == GET_MODE (op0)
4370                    && nonzero_bits (op0, mode) == 1)
4371             {
4372               op0 = expand_compound_operation (op0);
4373               return plus_constant (gen_lowpart_for_combine (mode, op0), -1);
4374             }
4375
4376           /* If STORE_FLAG_VALUE says to just test the sign bit and X has just
4377              one bit that might be nonzero, we can convert (ne x 0) to
4378              (ashift x c) where C puts the bit in the sign bit.  Remove any
4379              AND with STORE_FLAG_VALUE when we are done, since we are only
4380              going to test the sign bit.  */
4381           if (new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4382               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4383               && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
4384                   == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE(mode)-1))
4385               && op1 == const0_rtx
4386               && mode == GET_MODE (op0)
4387               && (i = exact_log2 (nonzero_bits (op0, mode))) >= 0)
4388             {
4389               x = simplify_shift_const (NULL_RTX, ASHIFT, mode,
4390                                         expand_compound_operation (op0),
4391                                         GET_MODE_BITSIZE (mode) - 1 - i);
4392               if (GET_CODE (x) == AND && XEXP (x, 1) == const_true_rtx)
4393                 return XEXP (x, 0);
4394               else
4395                 return x;
4396             }
4397
4398           /* If the code changed, return a whole new comparison.  */
4399           if (new_code != code)
4400             return gen_rtx_fmt_ee (new_code, mode, op0, op1);
4401
4402           /* Otherwise, keep this operation, but maybe change its operands.
4403              This also converts (ne (compare FOO BAR) 0) to (ne FOO BAR).  */
4404           SUBST (XEXP (x, 0), op0);
4405           SUBST (XEXP (x, 1), op1);
4406         }
4407       break;
4408
4409     case IF_THEN_ELSE:
4410       return simplify_if_then_else (x);
4411
4412     case ZERO_EXTRACT:
4413     case SIGN_EXTRACT:
4414     case ZERO_EXTEND:
4415     case SIGN_EXTEND:
4416       /* If we are processing SET_DEST, we are done.  */
4417       if (in_dest)
4418         return x;
4419
4420       return expand_compound_operation (x);
4421
4422     case SET:
4423       return simplify_set (x);
4424
4425     case AND:
4426     case IOR:
4427     case XOR:
4428       return simplify_logical (x, last);
4429
4430     case ABS:
4431       /* (abs (neg <foo>)) -> (abs <foo>) */
4432       if (GET_CODE (XEXP (x, 0)) == NEG)
4433         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4434
4435       /* If the mode of the operand is VOIDmode (i.e. if it is ASM_OPERANDS),
4436          do nothing.  */
4437       if (GET_MODE (XEXP (x, 0)) == VOIDmode)
4438         break;
4439
4440       /* If operand is something known to be positive, ignore the ABS.  */
4441       if (GET_CODE (XEXP (x, 0)) == FFS || GET_CODE (XEXP (x, 0)) == ABS
4442           || ((GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
4443                <= HOST_BITS_PER_WIDE_INT)
4444               && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4445                    & ((HOST_WIDE_INT) 1
4446                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1)))
4447                   == 0)))
4448         return XEXP (x, 0);
4449
4450       /* If operand is known to be only -1 or 0, convert ABS to NEG.  */
4451       if (num_sign_bit_copies (XEXP (x, 0), mode) == GET_MODE_BITSIZE (mode))
4452         return gen_rtx_NEG (mode, XEXP (x, 0));
4453
4454       break;
4455
4456     case FFS:
4457       /* (ffs (*_extend <X>)) = (ffs <X>) */
4458       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
4459           || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
4460         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4461       break;
4462
4463     case FLOAT:
4464       /* (float (sign_extend <X>)) = (float <X>).  */
4465       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND)
4466         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4467       break;
4468
4469     case ASHIFT:
4470     case LSHIFTRT:
4471     case ASHIFTRT:
4472     case ROTATE:
4473     case ROTATERT:
4474       /* If this is a shift by a constant amount, simplify it.  */
4475       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
4476         return simplify_shift_const (x, code, mode, XEXP (x, 0),
4477                                      INTVAL (XEXP (x, 1)));
4478
4479 #ifdef SHIFT_COUNT_TRUNCATED
4480       else if (SHIFT_COUNT_TRUNCATED && GET_CODE (XEXP (x, 1)) != REG)
4481         SUBST (XEXP (x, 1),
4482                force_to_mode (XEXP (x, 1), GET_MODE (x),
4483                               ((HOST_WIDE_INT) 1
4484                                << exact_log2 (GET_MODE_BITSIZE (GET_MODE (x))))
4485                               - 1,
4486                               NULL_RTX, 0));
4487 #endif
4488
4489       break;
4490
4491     case VEC_SELECT:
4492       {
4493         rtx op0 = XEXP (x, 0);
4494         rtx op1 = XEXP (x, 1);
4495         int len;
4496
4497         if (GET_CODE (op1) != PARALLEL)
4498           abort ();
4499         len = XVECLEN (op1, 0);
4500         if (len == 1
4501             && GET_CODE (XVECEXP (op1, 0, 0)) == CONST_INT
4502             && GET_CODE (op0) == VEC_CONCAT)
4503           {
4504             int offset = INTVAL (XVECEXP (op1, 0, 0)) * GET_MODE_SIZE (GET_MODE (x));
4505
4506             /* Try to find the element in the VEC_CONCAT.  */
4507             for (;;)
4508               {
4509                 if (GET_MODE (op0) == GET_MODE (x))
4510                   return op0;
4511                 if (GET_CODE (op0) == VEC_CONCAT)
4512                   {
4513                     HOST_WIDE_INT op0_size = GET_MODE_SIZE (GET_MODE (XEXP (op0, 0)));
4514                     if (op0_size < offset)
4515                       op0 = XEXP (op0, 0);
4516                     else
4517                       {
4518                         offset -= op0_size;
4519                         op0 = XEXP (op0, 1);
4520                       }
4521                   }
4522                 else
4523                   break;
4524               }
4525           }
4526       }
4527
4528       break;
4529       
4530     default:
4531       break;
4532     }
4533
4534   return x;
4535 }
4536 \f
4537 /* Simplify X, an IF_THEN_ELSE expression.  Return the new expression.  */
4538
4539 static rtx
4540 simplify_if_then_else (x)
4541      rtx x;
4542 {
4543   enum machine_mode mode = GET_MODE (x);
4544   rtx cond = XEXP (x, 0);
4545   rtx true_rtx = XEXP (x, 1);
4546   rtx false_rtx = XEXP (x, 2);
4547   enum rtx_code true_code = GET_CODE (cond);
4548   int comparison_p = GET_RTX_CLASS (true_code) == '<';
4549   rtx temp;
4550   int i;
4551   enum rtx_code false_code;
4552   rtx reversed;
4553
4554   /* Simplify storing of the truth value.  */
4555   if (comparison_p && true_rtx == const_true_rtx && false_rtx == const0_rtx)
4556     return gen_binary (true_code, mode, XEXP (cond, 0), XEXP (cond, 1));
4557
4558   /* Also when the truth value has to be reversed.  */
4559   if (comparison_p
4560       && true_rtx == const0_rtx && false_rtx == const_true_rtx
4561       && (reversed = reversed_comparison (cond, mode, XEXP (cond, 0),
4562                                           XEXP (cond, 1))))
4563     return reversed;
4564
4565   /* Sometimes we can simplify the arm of an IF_THEN_ELSE if a register used
4566      in it is being compared against certain values.  Get the true and false
4567      comparisons and see if that says anything about the value of each arm.  */
4568
4569   if (comparison_p
4570       && ((false_code = combine_reversed_comparison_code (cond))
4571           != UNKNOWN)
4572       && GET_CODE (XEXP (cond, 0)) == REG)
4573     {
4574       HOST_WIDE_INT nzb;
4575       rtx from = XEXP (cond, 0);
4576       rtx true_val = XEXP (cond, 1);
4577       rtx false_val = true_val;
4578       int swapped = 0;
4579
4580       /* If FALSE_CODE is EQ, swap the codes and arms.  */
4581
4582       if (false_code == EQ)
4583         {
4584           swapped = 1, true_code = EQ, false_code = NE;
4585           temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4586         }
4587
4588       /* If we are comparing against zero and the expression being tested has
4589          only a single bit that might be nonzero, that is its value when it is
4590          not equal to zero.  Similarly if it is known to be -1 or 0.  */
4591
4592       if (true_code == EQ && true_val == const0_rtx
4593           && exact_log2 (nzb = nonzero_bits (from, GET_MODE (from))) >= 0)
4594         false_code = EQ, false_val = GEN_INT (nzb);
4595       else if (true_code == EQ && true_val == const0_rtx
4596                && (num_sign_bit_copies (from, GET_MODE (from))
4597                    == GET_MODE_BITSIZE (GET_MODE (from))))
4598         false_code = EQ, false_val = constm1_rtx;
4599
4600       /* Now simplify an arm if we know the value of the register in the
4601          branch and it is used in the arm.  Be careful due to the potential
4602          of locally-shared RTL.  */
4603
4604       if (reg_mentioned_p (from, true_rtx))
4605         true_rtx = subst (known_cond (copy_rtx (true_rtx), true_code,
4606                                       from, true_val),
4607                       pc_rtx, pc_rtx, 0, 0);
4608       if (reg_mentioned_p (from, false_rtx))
4609         false_rtx = subst (known_cond (copy_rtx (false_rtx), false_code,
4610                                    from, false_val),
4611                        pc_rtx, pc_rtx, 0, 0);
4612
4613       SUBST (XEXP (x, 1), swapped ? false_rtx : true_rtx);
4614       SUBST (XEXP (x, 2), swapped ? true_rtx : false_rtx);
4615
4616       true_rtx = XEXP (x, 1);
4617       false_rtx = XEXP (x, 2);
4618       true_code = GET_CODE (cond);
4619     }
4620
4621   /* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
4622      reversed, do so to avoid needing two sets of patterns for
4623      subtract-and-branch insns.  Similarly if we have a constant in the true
4624      arm, the false arm is the same as the first operand of the comparison, or
4625      the false arm is more complicated than the true arm.  */
4626
4627   if (comparison_p
4628       && combine_reversed_comparison_code (cond) != UNKNOWN
4629       && (true_rtx == pc_rtx
4630           || (CONSTANT_P (true_rtx)
4631               && GET_CODE (false_rtx) != CONST_INT && false_rtx != pc_rtx)
4632           || true_rtx == const0_rtx
4633           || (GET_RTX_CLASS (GET_CODE (true_rtx)) == 'o'
4634               && GET_RTX_CLASS (GET_CODE (false_rtx)) != 'o')
4635           || (GET_CODE (true_rtx) == SUBREG
4636               && GET_RTX_CLASS (GET_CODE (SUBREG_REG (true_rtx))) == 'o'
4637               && GET_RTX_CLASS (GET_CODE (false_rtx)) != 'o')
4638           || reg_mentioned_p (true_rtx, false_rtx)
4639           || rtx_equal_p (false_rtx, XEXP (cond, 0))))
4640     {
4641       true_code = reversed_comparison_code (cond, NULL);
4642       SUBST (XEXP (x, 0),
4643              reversed_comparison (cond, GET_MODE (cond), XEXP (cond, 0),
4644                                   XEXP (cond, 1)));
4645
4646       SUBST (XEXP (x, 1), false_rtx);
4647       SUBST (XEXP (x, 2), true_rtx);
4648
4649       temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4650       cond = XEXP (x, 0);
4651
4652       /* It is possible that the conditional has been simplified out.  */
4653       true_code = GET_CODE (cond);
4654       comparison_p = GET_RTX_CLASS (true_code) == '<';
4655     }
4656
4657   /* If the two arms are identical, we don't need the comparison.  */
4658
4659   if (rtx_equal_p (true_rtx, false_rtx) && ! side_effects_p (cond))
4660     return true_rtx;
4661
4662   /* Convert a == b ? b : a to "a".  */
4663   if (true_code == EQ && ! side_effects_p (cond)
4664       && (! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4665       && rtx_equal_p (XEXP (cond, 0), false_rtx)
4666       && rtx_equal_p (XEXP (cond, 1), true_rtx))
4667     return false_rtx;
4668   else if (true_code == NE && ! side_effects_p (cond)
4669            && (! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4670            && rtx_equal_p (XEXP (cond, 0), true_rtx)
4671            && rtx_equal_p (XEXP (cond, 1), false_rtx))
4672     return true_rtx;
4673
4674   /* Look for cases where we have (abs x) or (neg (abs X)).  */
4675
4676   if (GET_MODE_CLASS (mode) == MODE_INT
4677       && GET_CODE (false_rtx) == NEG
4678       && rtx_equal_p (true_rtx, XEXP (false_rtx, 0))
4679       && comparison_p
4680       && rtx_equal_p (true_rtx, XEXP (cond, 0))
4681       && ! side_effects_p (true_rtx))
4682     switch (true_code)
4683       {
4684       case GT:
4685       case GE:
4686         return simplify_gen_unary (ABS, mode, true_rtx, mode);
4687       case LT:
4688       case LE:
4689         return
4690           simplify_gen_unary (NEG, mode,
4691                               simplify_gen_unary (ABS, mode, true_rtx, mode),
4692                               mode);
4693     default:
4694       break;
4695       }
4696
4697   /* Look for MIN or MAX.  */
4698
4699   if ((! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4700       && comparison_p
4701       && rtx_equal_p (XEXP (cond, 0), true_rtx)
4702       && rtx_equal_p (XEXP (cond, 1), false_rtx)
4703       && ! side_effects_p (cond))
4704     switch (true_code)
4705       {
4706       case GE:
4707       case GT:
4708         return gen_binary (SMAX, mode, true_rtx, false_rtx);
4709       case LE:
4710       case LT:
4711         return gen_binary (SMIN, mode, true_rtx, false_rtx);
4712       case GEU:
4713       case GTU:
4714         return gen_binary (UMAX, mode, true_rtx, false_rtx);
4715       case LEU:
4716       case LTU:
4717         return gen_binary (UMIN, mode, true_rtx, false_rtx);
4718       default:
4719         break;
4720       }
4721
4722   /* If we have (if_then_else COND (OP Z C1) Z) and OP is an identity when its
4723      second operand is zero, this can be done as (OP Z (mult COND C2)) where
4724      C2 = C1 * STORE_FLAG_VALUE. Similarly if OP has an outer ZERO_EXTEND or
4725      SIGN_EXTEND as long as Z is already extended (so we don't destroy it).
4726      We can do this kind of thing in some cases when STORE_FLAG_VALUE is
4727      neither 1 or -1, but it isn't worth checking for.  */
4728
4729   if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
4730       && comparison_p && mode != VOIDmode && ! side_effects_p (x))
4731     {
4732       rtx t = make_compound_operation (true_rtx, SET);
4733       rtx f = make_compound_operation (false_rtx, SET);
4734       rtx cond_op0 = XEXP (cond, 0);
4735       rtx cond_op1 = XEXP (cond, 1);
4736       enum rtx_code op = NIL, extend_op = NIL;
4737       enum machine_mode m = mode;
4738       rtx z = 0, c1 = NULL_RTX;
4739
4740       if ((GET_CODE (t) == PLUS || GET_CODE (t) == MINUS
4741            || GET_CODE (t) == IOR || GET_CODE (t) == XOR
4742            || GET_CODE (t) == ASHIFT
4743            || GET_CODE (t) == LSHIFTRT || GET_CODE (t) == ASHIFTRT)
4744           && rtx_equal_p (XEXP (t, 0), f))
4745         c1 = XEXP (t, 1), op = GET_CODE (t), z = f;
4746
4747       /* If an identity-zero op is commutative, check whether there
4748          would be a match if we swapped the operands.  */
4749       else if ((GET_CODE (t) == PLUS || GET_CODE (t) == IOR
4750                 || GET_CODE (t) == XOR)
4751                && rtx_equal_p (XEXP (t, 1), f))
4752         c1 = XEXP (t, 0), op = GET_CODE (t), z = f;
4753       else if (GET_CODE (t) == SIGN_EXTEND
4754                && (GET_CODE (XEXP (t, 0)) == PLUS
4755                    || GET_CODE (XEXP (t, 0)) == MINUS
4756                    || GET_CODE (XEXP (t, 0)) == IOR
4757                    || GET_CODE (XEXP (t, 0)) == XOR
4758                    || GET_CODE (XEXP (t, 0)) == ASHIFT
4759                    || GET_CODE (XEXP (t, 0)) == LSHIFTRT
4760                    || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
4761                && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
4762                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4763                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4764                && (num_sign_bit_copies (f, GET_MODE (f))
4765                    > (GET_MODE_BITSIZE (mode)
4766                       - GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (t, 0), 0))))))
4767         {
4768           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4769           extend_op = SIGN_EXTEND;
4770           m = GET_MODE (XEXP (t, 0));
4771         }
4772       else if (GET_CODE (t) == SIGN_EXTEND
4773                && (GET_CODE (XEXP (t, 0)) == PLUS
4774                    || GET_CODE (XEXP (t, 0)) == IOR
4775                    || GET_CODE (XEXP (t, 0)) == XOR)
4776                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4777                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4778                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), 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), 1))))))
4782         {
4783           c1 = XEXP (XEXP (t, 0), 0); 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) == ZERO_EXTEND
4788                && (GET_CODE (XEXP (t, 0)) == PLUS
4789                    || GET_CODE (XEXP (t, 0)) == MINUS
4790                    || GET_CODE (XEXP (t, 0)) == IOR
4791                    || GET_CODE (XEXP (t, 0)) == XOR
4792                    || GET_CODE (XEXP (t, 0)) == ASHIFT
4793                    || GET_CODE (XEXP (t, 0)) == LSHIFTRT
4794                    || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
4795                && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
4796                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4797                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4798                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4799                && ((nonzero_bits (f, GET_MODE (f))
4800                     & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 0))))
4801                    == 0))
4802         {
4803           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4804           extend_op = ZERO_EXTEND;
4805           m = GET_MODE (XEXP (t, 0));
4806         }
4807       else if (GET_CODE (t) == ZERO_EXTEND
4808                && (GET_CODE (XEXP (t, 0)) == PLUS
4809                    || GET_CODE (XEXP (t, 0)) == IOR
4810                    || GET_CODE (XEXP (t, 0)) == XOR)
4811                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4812                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4813                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4814                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
4815                && ((nonzero_bits (f, GET_MODE (f))
4816                     & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 1))))
4817                    == 0))
4818         {
4819           c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
4820           extend_op = ZERO_EXTEND;
4821           m = GET_MODE (XEXP (t, 0));
4822         }
4823
4824       if (z)
4825         {
4826           temp = subst (gen_binary (true_code, m, cond_op0, cond_op1),
4827                         pc_rtx, pc_rtx, 0, 0);
4828           temp = gen_binary (MULT, m, temp,
4829                              gen_binary (MULT, m, c1, const_true_rtx));
4830           temp = subst (temp, pc_rtx, pc_rtx, 0, 0);
4831           temp = gen_binary (op, m, gen_lowpart_for_combine (m, z), temp);
4832
4833           if (extend_op != NIL)
4834             temp = simplify_gen_unary (extend_op, mode, temp, m);
4835
4836           return temp;
4837         }
4838     }
4839
4840   /* If we have (if_then_else (ne A 0) C1 0) and either A is known to be 0 or
4841      1 and C1 is a single bit or A is known to be 0 or -1 and C1 is the
4842      negation of a single bit, we can convert this operation to a shift.  We
4843      can actually do this more generally, but it doesn't seem worth it.  */
4844
4845   if (true_code == NE && XEXP (cond, 1) == const0_rtx
4846       && false_rtx == const0_rtx && GET_CODE (true_rtx) == CONST_INT
4847       && ((1 == nonzero_bits (XEXP (cond, 0), mode)
4848            && (i = exact_log2 (INTVAL (true_rtx))) >= 0)
4849           || ((num_sign_bit_copies (XEXP (cond, 0), mode)
4850                == GET_MODE_BITSIZE (mode))
4851               && (i = exact_log2 (-INTVAL (true_rtx))) >= 0)))
4852     return
4853       simplify_shift_const (NULL_RTX, ASHIFT, mode,
4854                             gen_lowpart_for_combine (mode, XEXP (cond, 0)), i);
4855
4856   return x;
4857 }
4858 \f
4859 /* Simplify X, a SET expression.  Return the new expression.  */
4860
4861 static rtx
4862 simplify_set (x)
4863      rtx x;
4864 {
4865   rtx src = SET_SRC (x);
4866   rtx dest = SET_DEST (x);
4867   enum machine_mode mode
4868     = GET_MODE (src) != VOIDmode ? GET_MODE (src) : GET_MODE (dest);
4869   rtx other_insn;
4870   rtx *cc_use;
4871
4872   /* (set (pc) (return)) gets written as (return).  */
4873   if (GET_CODE (dest) == PC && GET_CODE (src) == RETURN)
4874     return src;
4875
4876   /* Now that we know for sure which bits of SRC we are using, see if we can
4877      simplify the expression for the object knowing that we only need the
4878      low-order bits.  */
4879
4880   if (GET_MODE_CLASS (mode) == MODE_INT)
4881     {
4882       src = force_to_mode (src, mode, ~(HOST_WIDE_INT) 0, NULL_RTX, 0);
4883       SUBST (SET_SRC (x), src);
4884     }
4885
4886   /* If we are setting CC0 or if the source is a COMPARE, look for the use of
4887      the comparison result and try to simplify it unless we already have used
4888      undobuf.other_insn.  */
4889   if ((GET_CODE (src) == COMPARE
4890 #ifdef HAVE_cc0
4891        || dest == cc0_rtx
4892 #endif
4893        )
4894       && (cc_use = find_single_use (dest, subst_insn, &other_insn)) != 0
4895       && (undobuf.other_insn == 0 || other_insn == undobuf.other_insn)
4896       && GET_RTX_CLASS (GET_CODE (*cc_use)) == '<'
4897       && rtx_equal_p (XEXP (*cc_use, 0), dest))
4898     {
4899       enum rtx_code old_code = GET_CODE (*cc_use);
4900       enum rtx_code new_code;
4901       rtx op0, op1;
4902       int other_changed = 0;
4903       enum machine_mode compare_mode = GET_MODE (dest);
4904
4905       if (GET_CODE (src) == COMPARE)
4906         op0 = XEXP (src, 0), op1 = XEXP (src, 1);
4907       else
4908         op0 = src, op1 = const0_rtx;
4909
4910       /* Simplify our comparison, if possible.  */
4911       new_code = simplify_comparison (old_code, &op0, &op1);
4912
4913 #ifdef EXTRA_CC_MODES
4914       /* If this machine has CC modes other than CCmode, check to see if we
4915          need to use a different CC mode here.  */
4916       compare_mode = SELECT_CC_MODE (new_code, op0, op1);
4917 #endif /* EXTRA_CC_MODES */
4918
4919 #if !defined (HAVE_cc0) && defined (EXTRA_CC_MODES)
4920       /* If the mode changed, we have to change SET_DEST, the mode in the
4921          compare, and the mode in the place SET_DEST is used.  If SET_DEST is
4922          a hard register, just build new versions with the proper mode.  If it
4923          is a pseudo, we lose unless it is only time we set the pseudo, in
4924          which case we can safely change its mode.  */
4925       if (compare_mode != GET_MODE (dest))
4926         {
4927           unsigned int regno = REGNO (dest);
4928           rtx new_dest = gen_rtx_REG (compare_mode, regno);
4929
4930           if (regno < FIRST_PSEUDO_REGISTER
4931               || (REG_N_SETS (regno) == 1 && ! REG_USERVAR_P (dest)))
4932             {
4933               if (regno >= FIRST_PSEUDO_REGISTER)
4934                 SUBST (regno_reg_rtx[regno], new_dest);
4935
4936               SUBST (SET_DEST (x), new_dest);
4937               SUBST (XEXP (*cc_use, 0), new_dest);
4938               other_changed = 1;
4939
4940               dest = new_dest;
4941             }
4942         }
4943 #endif
4944
4945       /* If the code changed, we have to build a new comparison in
4946          undobuf.other_insn.  */
4947       if (new_code != old_code)
4948         {
4949           unsigned HOST_WIDE_INT mask;
4950
4951           SUBST (*cc_use, gen_rtx_fmt_ee (new_code, GET_MODE (*cc_use),
4952                                           dest, const0_rtx));
4953
4954           /* If the only change we made was to change an EQ into an NE or
4955              vice versa, OP0 has only one bit that might be nonzero, and OP1
4956              is zero, check if changing the user of the condition code will
4957              produce a valid insn.  If it won't, we can keep the original code
4958              in that insn by surrounding our operation with an XOR.  */
4959
4960           if (((old_code == NE && new_code == EQ)
4961                || (old_code == EQ && new_code == NE))
4962               && ! other_changed && op1 == const0_rtx
4963               && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
4964               && exact_log2 (mask = nonzero_bits (op0, GET_MODE (op0))) >= 0)
4965             {
4966               rtx pat = PATTERN (other_insn), note = 0;
4967
4968               if ((recog_for_combine (&pat, other_insn, &note) < 0
4969                    && ! check_asm_operands (pat)))
4970                 {
4971                   PUT_CODE (*cc_use, old_code);
4972                   other_insn = 0;
4973
4974                   op0 = gen_binary (XOR, GET_MODE (op0), op0, GEN_INT (mask));
4975                 }
4976             }
4977
4978           other_changed = 1;
4979         }
4980
4981       if (other_changed)
4982         undobuf.other_insn = other_insn;
4983
4984 #ifdef HAVE_cc0
4985       /* If we are now comparing against zero, change our source if
4986          needed.  If we do not use cc0, we always have a COMPARE.  */
4987       if (op1 == const0_rtx && dest == cc0_rtx)
4988         {
4989           SUBST (SET_SRC (x), op0);
4990           src = op0;
4991         }
4992       else
4993 #endif
4994
4995       /* Otherwise, if we didn't previously have a COMPARE in the
4996          correct mode, we need one.  */
4997       if (GET_CODE (src) != COMPARE || GET_MODE (src) != compare_mode)
4998         {
4999           SUBST (SET_SRC (x), gen_rtx_COMPARE (compare_mode, op0, op1));
5000           src = SET_SRC (x);
5001         }
5002       else
5003         {
5004           /* Otherwise, update the COMPARE if needed.  */
5005           SUBST (XEXP (src, 0), op0);
5006           SUBST (XEXP (src, 1), op1);
5007         }
5008     }
5009   else
5010     {
5011       /* Get SET_SRC in a form where we have placed back any
5012          compound expressions.  Then do the checks below.  */
5013       src = make_compound_operation (src, SET);
5014       SUBST (SET_SRC (x), src);
5015     }
5016
5017   /* If we have (set x (subreg:m1 (op:m2 ...) 0)) with OP being some operation,
5018      and X being a REG or (subreg (reg)), we may be able to convert this to
5019      (set (subreg:m2 x) (op)).
5020
5021      We can always do this if M1 is narrower than M2 because that means that
5022      we only care about the low bits of the result.
5023
5024      However, on machines without WORD_REGISTER_OPERATIONS defined, we cannot
5025      perform a narrower operation than requested since the high-order bits will
5026      be undefined.  On machine where it is defined, this transformation is safe
5027      as long as M1 and M2 have the same number of words.  */
5028
5029   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
5030       && GET_RTX_CLASS (GET_CODE (SUBREG_REG (src))) != 'o'
5031       && (((GET_MODE_SIZE (GET_MODE (src)) + (UNITS_PER_WORD - 1))
5032            / UNITS_PER_WORD)
5033           == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))
5034                + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))
5035 #ifndef WORD_REGISTER_OPERATIONS
5036       && (GET_MODE_SIZE (GET_MODE (src))
5037           < GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5038 #endif
5039 #ifdef CLASS_CANNOT_CHANGE_MODE
5040       && ! (GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER
5041             && (TEST_HARD_REG_BIT
5042                 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
5043                  REGNO (dest)))
5044             && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (src),
5045                                            GET_MODE (SUBREG_REG (src))))
5046 #endif
5047       && (GET_CODE (dest) == REG
5048           || (GET_CODE (dest) == SUBREG
5049               && GET_CODE (SUBREG_REG (dest)) == REG)))
5050     {
5051       SUBST (SET_DEST (x),
5052              gen_lowpart_for_combine (GET_MODE (SUBREG_REG (src)),
5053                                       dest));
5054       SUBST (SET_SRC (x), SUBREG_REG (src));
5055
5056       src = SET_SRC (x), dest = SET_DEST (x);
5057     }
5058
5059 #ifdef LOAD_EXTEND_OP
5060   /* If we have (set FOO (subreg:M (mem:N BAR) 0)) with M wider than N, this
5061      would require a paradoxical subreg.  Replace the subreg with a
5062      zero_extend to avoid the reload that would otherwise be required.  */
5063
5064   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
5065       && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))) != NIL
5066       && SUBREG_BYTE (src) == 0
5067       && (GET_MODE_SIZE (GET_MODE (src))
5068           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5069       && GET_CODE (SUBREG_REG (src)) == MEM)
5070     {
5071       SUBST (SET_SRC (x),
5072              gen_rtx (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))),
5073                       GET_MODE (src), SUBREG_REG (src)));
5074
5075       src = SET_SRC (x);
5076     }
5077 #endif
5078
5079   /* If we don't have a conditional move, SET_SRC is an IF_THEN_ELSE, and we
5080      are comparing an item known to be 0 or -1 against 0, use a logical
5081      operation instead. Check for one of the arms being an IOR of the other
5082      arm with some value.  We compute three terms to be IOR'ed together.  In
5083      practice, at most two will be nonzero.  Then we do the IOR's.  */
5084
5085   if (GET_CODE (dest) != PC
5086       && GET_CODE (src) == IF_THEN_ELSE
5087       && GET_MODE_CLASS (GET_MODE (src)) == MODE_INT
5088       && (GET_CODE (XEXP (src, 0)) == EQ || GET_CODE (XEXP (src, 0)) == NE)
5089       && XEXP (XEXP (src, 0), 1) == const0_rtx
5090       && GET_MODE (src) == GET_MODE (XEXP (XEXP (src, 0), 0))
5091 #ifdef HAVE_conditional_move
5092       && ! can_conditionally_move_p (GET_MODE (src))
5093 #endif
5094       && (num_sign_bit_copies (XEXP (XEXP (src, 0), 0),
5095                                GET_MODE (XEXP (XEXP (src, 0), 0)))
5096           == GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (src, 0), 0))))
5097       && ! side_effects_p (src))
5098     {
5099       rtx true_rtx = (GET_CODE (XEXP (src, 0)) == NE
5100                       ? XEXP (src, 1) : XEXP (src, 2));
5101       rtx false_rtx = (GET_CODE (XEXP (src, 0)) == NE
5102                    ? XEXP (src, 2) : XEXP (src, 1));
5103       rtx term1 = const0_rtx, term2, term3;
5104
5105       if (GET_CODE (true_rtx) == IOR
5106           && rtx_equal_p (XEXP (true_rtx, 0), false_rtx))
5107         term1 = false_rtx, true_rtx = XEXP(true_rtx, 1), false_rtx = const0_rtx;
5108       else if (GET_CODE (true_rtx) == IOR
5109                && rtx_equal_p (XEXP (true_rtx, 1), false_rtx))
5110         term1 = false_rtx, true_rtx = XEXP(true_rtx, 0), false_rtx = const0_rtx;
5111       else if (GET_CODE (false_rtx) == IOR
5112                && rtx_equal_p (XEXP (false_rtx, 0), true_rtx))
5113         term1 = true_rtx, false_rtx = XEXP(false_rtx, 1), true_rtx = const0_rtx;
5114       else if (GET_CODE (false_rtx) == IOR
5115                && rtx_equal_p (XEXP (false_rtx, 1), true_rtx))
5116         term1 = true_rtx, false_rtx = XEXP(false_rtx, 0), true_rtx = const0_rtx;
5117
5118       term2 = gen_binary (AND, GET_MODE (src),
5119                           XEXP (XEXP (src, 0), 0), true_rtx);
5120       term3 = gen_binary (AND, GET_MODE (src),
5121                           simplify_gen_unary (NOT, GET_MODE (src),
5122                                               XEXP (XEXP (src, 0), 0),
5123                                               GET_MODE (src)),
5124                           false_rtx);
5125
5126       SUBST (SET_SRC (x),
5127              gen_binary (IOR, GET_MODE (src),
5128                          gen_binary (IOR, GET_MODE (src), term1, term2),
5129                          term3));
5130
5131       src = SET_SRC (x);
5132     }
5133
5134   /* If either SRC or DEST is a CLOBBER of (const_int 0), make this
5135      whole thing fail.  */
5136   if (GET_CODE (src) == CLOBBER && XEXP (src, 0) == const0_rtx)
5137     return src;
5138   else if (GET_CODE (dest) == CLOBBER && XEXP (dest, 0) == const0_rtx)
5139     return dest;
5140   else
5141     /* Convert this into a field assignment operation, if possible.  */
5142     return make_field_assignment (x);
5143 }
5144 \f
5145 /* Simplify, X, and AND, IOR, or XOR operation, and return the simplified
5146    result.  LAST is nonzero if this is the last retry.  */
5147
5148 static rtx
5149 simplify_logical (x, last)
5150      rtx x;
5151      int last;
5152 {
5153   enum machine_mode mode = GET_MODE (x);
5154   rtx op0 = XEXP (x, 0);
5155   rtx op1 = XEXP (x, 1);
5156   rtx reversed;
5157
5158   switch (GET_CODE (x))
5159     {
5160     case AND:
5161       /* Convert (A ^ B) & A to A & (~B) since the latter is often a single
5162          insn (and may simplify more).  */
5163       if (GET_CODE (op0) == XOR
5164           && rtx_equal_p (XEXP (op0, 0), op1)
5165           && ! side_effects_p (op1))
5166         x = gen_binary (AND, mode,
5167                         simplify_gen_unary (NOT, mode, XEXP (op0, 1), mode),
5168                         op1);
5169
5170       if (GET_CODE (op0) == XOR
5171           && rtx_equal_p (XEXP (op0, 1), op1)
5172           && ! side_effects_p (op1))
5173         x = gen_binary (AND, mode,
5174                         simplify_gen_unary (NOT, mode, XEXP (op0, 0), mode),
5175                         op1);
5176
5177       /* Similarly for (~(A ^ B)) & A.  */
5178       if (GET_CODE (op0) == NOT
5179           && GET_CODE (XEXP (op0, 0)) == XOR
5180           && rtx_equal_p (XEXP (XEXP (op0, 0), 0), op1)
5181           && ! side_effects_p (op1))
5182         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 1), op1);
5183
5184       if (GET_CODE (op0) == NOT
5185           && GET_CODE (XEXP (op0, 0)) == XOR
5186           && rtx_equal_p (XEXP (XEXP (op0, 0), 1), op1)
5187           && ! side_effects_p (op1))
5188         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 0), op1);
5189
5190       /* We can call simplify_and_const_int only if we don't lose
5191          any (sign) bits when converting INTVAL (op1) to
5192          "unsigned HOST_WIDE_INT".  */
5193       if (GET_CODE (op1) == CONST_INT
5194           && (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5195               || INTVAL (op1) > 0))
5196         {
5197           x = simplify_and_const_int (x, mode, op0, INTVAL (op1));
5198
5199           /* If we have (ior (and (X C1) C2)) and the next restart would be
5200              the last, simplify this by making C1 as small as possible
5201              and then exit.  */
5202           if (last
5203               && GET_CODE (x) == IOR && GET_CODE (op0) == AND
5204               && GET_CODE (XEXP (op0, 1)) == CONST_INT
5205               && GET_CODE (op1) == CONST_INT)
5206             return gen_binary (IOR, mode,
5207                                gen_binary (AND, mode, XEXP (op0, 0),
5208                                            GEN_INT (INTVAL (XEXP (op0, 1))
5209                                                     & ~INTVAL (op1))), op1);
5210
5211           if (GET_CODE (x) != AND)
5212             return x;
5213
5214           if (GET_RTX_CLASS (GET_CODE (x)) == 'c'
5215               || GET_RTX_CLASS (GET_CODE (x)) == '2')
5216             op0 = XEXP (x, 0), op1 = XEXP (x, 1);
5217         }
5218
5219       /* Convert (A | B) & A to A.  */
5220       if (GET_CODE (op0) == IOR
5221           && (rtx_equal_p (XEXP (op0, 0), op1)
5222               || rtx_equal_p (XEXP (op0, 1), op1))
5223           && ! side_effects_p (XEXP (op0, 0))
5224           && ! side_effects_p (XEXP (op0, 1)))
5225         return op1;
5226
5227       /* In the following group of tests (and those in case IOR below),
5228          we start with some combination of logical operations and apply
5229          the distributive law followed by the inverse distributive law.
5230          Most of the time, this results in no change.  However, if some of
5231          the operands are the same or inverses of each other, simplifications
5232          will result.
5233
5234          For example, (and (ior A B) (not B)) can occur as the result of
5235          expanding a bit field assignment.  When we apply the distributive
5236          law to this, we get (ior (and (A (not B))) (and (B (not B)))),
5237          which then simplifies to (and (A (not B))).
5238
5239          If we have (and (ior A B) C), apply the distributive law and then
5240          the inverse distributive law to see if things simplify.  */
5241
5242       if (GET_CODE (op0) == IOR || GET_CODE (op0) == XOR)
5243         {
5244           x = apply_distributive_law
5245             (gen_binary (GET_CODE (op0), mode,
5246                          gen_binary (AND, mode, XEXP (op0, 0), op1),
5247                          gen_binary (AND, mode, XEXP (op0, 1),
5248                                      copy_rtx (op1))));
5249           if (GET_CODE (x) != AND)
5250             return x;
5251         }
5252
5253       if (GET_CODE (op1) == IOR || GET_CODE (op1) == XOR)
5254         return apply_distributive_law
5255           (gen_binary (GET_CODE (op1), mode,
5256                        gen_binary (AND, mode, XEXP (op1, 0), op0),
5257                        gen_binary (AND, mode, XEXP (op1, 1),
5258                                    copy_rtx (op0))));
5259
5260       /* Similarly, taking advantage of the fact that
5261          (and (not A) (xor B C)) == (xor (ior A B) (ior A C))  */
5262
5263       if (GET_CODE (op0) == NOT && GET_CODE (op1) == XOR)
5264         return apply_distributive_law
5265           (gen_binary (XOR, mode,
5266                        gen_binary (IOR, mode, XEXP (op0, 0), XEXP (op1, 0)),
5267                        gen_binary (IOR, mode, copy_rtx (XEXP (op0, 0)),
5268                                    XEXP (op1, 1))));
5269
5270       else if (GET_CODE (op1) == NOT && GET_CODE (op0) == XOR)
5271         return apply_distributive_law
5272           (gen_binary (XOR, mode,
5273                        gen_binary (IOR, mode, XEXP (op1, 0), XEXP (op0, 0)),
5274                        gen_binary (IOR, mode, copy_rtx (XEXP (op1, 0)), XEXP (op0, 1))));
5275       break;
5276
5277     case IOR:
5278       /* (ior A C) is C if all bits of A that might be nonzero are on in C.  */
5279       if (GET_CODE (op1) == CONST_INT
5280           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5281           && (nonzero_bits (op0, mode) & ~INTVAL (op1)) == 0)
5282         return op1;
5283
5284       /* Convert (A & B) | A to A.  */
5285       if (GET_CODE (op0) == AND
5286           && (rtx_equal_p (XEXP (op0, 0), op1)
5287               || rtx_equal_p (XEXP (op0, 1), op1))
5288           && ! side_effects_p (XEXP (op0, 0))
5289           && ! side_effects_p (XEXP (op0, 1)))
5290         return op1;
5291
5292       /* If we have (ior (and A B) C), apply the distributive law and then
5293          the inverse distributive law to see if things simplify.  */
5294
5295       if (GET_CODE (op0) == AND)
5296         {
5297           x = apply_distributive_law
5298             (gen_binary (AND, mode,
5299                          gen_binary (IOR, mode, XEXP (op0, 0), op1),
5300                          gen_binary (IOR, mode, XEXP (op0, 1),
5301                                      copy_rtx (op1))));
5302
5303           if (GET_CODE (x) != IOR)
5304             return x;
5305         }
5306
5307       if (GET_CODE (op1) == AND)
5308         {
5309           x = apply_distributive_law
5310             (gen_binary (AND, mode,
5311                          gen_binary (IOR, mode, XEXP (op1, 0), op0),
5312                          gen_binary (IOR, mode, XEXP (op1, 1),
5313                                      copy_rtx (op0))));
5314
5315           if (GET_CODE (x) != IOR)
5316             return x;
5317         }
5318
5319       /* Convert (ior (ashift A CX) (lshiftrt A CY)) where CX+CY equals the
5320          mode size to (rotate A CX).  */
5321
5322       if (((GET_CODE (op0) == ASHIFT && GET_CODE (op1) == LSHIFTRT)
5323            || (GET_CODE (op1) == ASHIFT && GET_CODE (op0) == LSHIFTRT))
5324           && rtx_equal_p (XEXP (op0, 0), XEXP (op1, 0))
5325           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5326           && GET_CODE (XEXP (op1, 1)) == CONST_INT
5327           && (INTVAL (XEXP (op0, 1)) + INTVAL (XEXP (op1, 1))
5328               == GET_MODE_BITSIZE (mode)))
5329         return gen_rtx_ROTATE (mode, XEXP (op0, 0),
5330                                (GET_CODE (op0) == ASHIFT
5331                                 ? XEXP (op0, 1) : XEXP (op1, 1)));
5332
5333       /* If OP0 is (ashiftrt (plus ...) C), it might actually be
5334          a (sign_extend (plus ...)).  If so, OP1 is a CONST_INT, and the PLUS
5335          does not affect any of the bits in OP1, it can really be done
5336          as a PLUS and we can associate.  We do this by seeing if OP1
5337          can be safely shifted left C bits.  */
5338       if (GET_CODE (op1) == CONST_INT && GET_CODE (op0) == ASHIFTRT
5339           && GET_CODE (XEXP (op0, 0)) == PLUS
5340           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
5341           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5342           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT)
5343         {
5344           int count = INTVAL (XEXP (op0, 1));
5345           HOST_WIDE_INT mask = INTVAL (op1) << count;
5346
5347           if (mask >> count == INTVAL (op1)
5348               && (mask & nonzero_bits (XEXP (op0, 0), mode)) == 0)
5349             {
5350               SUBST (XEXP (XEXP (op0, 0), 1),
5351                      GEN_INT (INTVAL (XEXP (XEXP (op0, 0), 1)) | mask));
5352               return op0;
5353             }
5354         }
5355       break;
5356
5357     case XOR:
5358       /* If we are XORing two things that have no bits in common,
5359          convert them into an IOR.  This helps to detect rotation encoded
5360          using those methods and possibly other simplifications.  */
5361
5362       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5363           && (nonzero_bits (op0, mode)
5364               & nonzero_bits (op1, mode)) == 0)
5365         return (gen_binary (IOR, mode, op0, op1));
5366
5367       /* Convert (XOR (NOT x) (NOT y)) to (XOR x y).
5368          Also convert (XOR (NOT x) y) to (NOT (XOR x y)), similarly for
5369          (NOT y).  */
5370       {
5371         int num_negated = 0;
5372
5373         if (GET_CODE (op0) == NOT)
5374           num_negated++, op0 = XEXP (op0, 0);
5375         if (GET_CODE (op1) == NOT)
5376           num_negated++, op1 = XEXP (op1, 0);
5377
5378         if (num_negated == 2)
5379           {
5380             SUBST (XEXP (x, 0), op0);
5381             SUBST (XEXP (x, 1), op1);
5382           }
5383         else if (num_negated == 1)
5384           return
5385             simplify_gen_unary (NOT, mode, gen_binary (XOR, mode, op0, op1),
5386                                 mode);
5387       }
5388
5389       /* Convert (xor (and A B) B) to (and (not A) B).  The latter may
5390          correspond to a machine insn or result in further simplifications
5391          if B is a constant.  */
5392
5393       if (GET_CODE (op0) == AND
5394           && rtx_equal_p (XEXP (op0, 1), op1)
5395           && ! side_effects_p (op1))
5396         return gen_binary (AND, mode,
5397                            simplify_gen_unary (NOT, mode, XEXP (op0, 0), mode),
5398                            op1);
5399
5400       else if (GET_CODE (op0) == AND
5401                && rtx_equal_p (XEXP (op0, 0), op1)
5402                && ! side_effects_p (op1))
5403         return gen_binary (AND, mode,
5404                            simplify_gen_unary (NOT, mode, XEXP (op0, 1), mode),
5405                            op1);
5406
5407       /* (xor (comparison foo bar) (const_int 1)) can become the reversed
5408          comparison if STORE_FLAG_VALUE is 1.  */
5409       if (STORE_FLAG_VALUE == 1
5410           && op1 == const1_rtx
5411           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5412           && (reversed = reversed_comparison (op0, mode, XEXP (op0, 0),
5413                                               XEXP (op0, 1))))
5414         return reversed;
5415
5416       /* (lshiftrt foo C) where C is the number of bits in FOO minus 1
5417          is (lt foo (const_int 0)), so we can perform the above
5418          simplification if STORE_FLAG_VALUE is 1.  */
5419
5420       if (STORE_FLAG_VALUE == 1
5421           && op1 == const1_rtx
5422           && GET_CODE (op0) == LSHIFTRT
5423           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5424           && INTVAL (XEXP (op0, 1)) == GET_MODE_BITSIZE (mode) - 1)
5425         return gen_rtx_GE (mode, XEXP (op0, 0), const0_rtx);
5426
5427       /* (xor (comparison foo bar) (const_int sign-bit))
5428          when STORE_FLAG_VALUE is the sign bit.  */
5429       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5430           && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
5431               == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (mode) - 1))
5432           && op1 == const_true_rtx
5433           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5434           && (reversed = reversed_comparison (op0, mode, XEXP (op0, 0),
5435                                               XEXP (op0, 1))))
5436         return reversed;
5437
5438       break;
5439
5440     default:
5441       abort ();
5442     }
5443
5444   return x;
5445 }
5446 \f
5447 /* We consider ZERO_EXTRACT, SIGN_EXTRACT, and SIGN_EXTEND as "compound
5448    operations" because they can be replaced with two more basic operations.
5449    ZERO_EXTEND is also considered "compound" because it can be replaced with
5450    an AND operation, which is simpler, though only one operation.
5451
5452    The function expand_compound_operation is called with an rtx expression
5453    and will convert it to the appropriate shifts and AND operations,
5454    simplifying at each stage.
5455
5456    The function make_compound_operation is called to convert an expression
5457    consisting of shifts and ANDs into the equivalent compound expression.
5458    It is the inverse of this function, loosely speaking.  */
5459
5460 static rtx
5461 expand_compound_operation (x)
5462      rtx x;
5463 {
5464   unsigned HOST_WIDE_INT pos = 0, len;
5465   int unsignedp = 0;
5466   unsigned int modewidth;
5467   rtx tem;
5468
5469   switch (GET_CODE (x))
5470     {
5471     case ZERO_EXTEND:
5472       unsignedp = 1;
5473     case SIGN_EXTEND:
5474       /* We can't necessarily use a const_int for a multiword mode;
5475          it depends on implicitly extending the value.
5476          Since we don't know the right way to extend it,
5477          we can't tell whether the implicit way is right.
5478
5479          Even for a mode that is no wider than a const_int,
5480          we can't win, because we need to sign extend one of its bits through
5481          the rest of it, and we don't know which bit.  */
5482       if (GET_CODE (XEXP (x, 0)) == CONST_INT)
5483         return x;
5484
5485       /* Return if (subreg:MODE FROM 0) is not a safe replacement for
5486          (zero_extend:MODE FROM) or (sign_extend:MODE FROM).  It is for any MEM
5487          because (SUBREG (MEM...)) is guaranteed to cause the MEM to be
5488          reloaded. If not for that, MEM's would very rarely be safe.
5489
5490          Reject MODEs bigger than a word, because we might not be able
5491          to reference a two-register group starting with an arbitrary register
5492          (and currently gen_lowpart might crash for a SUBREG).  */
5493
5494       if (GET_MODE_SIZE (GET_MODE (XEXP (x, 0))) > UNITS_PER_WORD)
5495         return x;
5496
5497       len = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)));
5498       /* If the inner object has VOIDmode (the only way this can happen
5499          is if it is a ASM_OPERANDS), we can't do anything since we don't
5500          know how much masking to do.  */
5501       if (len == 0)
5502         return x;
5503
5504       break;
5505
5506     case ZERO_EXTRACT:
5507       unsignedp = 1;
5508     case SIGN_EXTRACT:
5509       /* If the operand is a CLOBBER, just return it.  */
5510       if (GET_CODE (XEXP (x, 0)) == CLOBBER)
5511         return XEXP (x, 0);
5512
5513       if (GET_CODE (XEXP (x, 1)) != CONST_INT
5514           || GET_CODE (XEXP (x, 2)) != CONST_INT
5515           || GET_MODE (XEXP (x, 0)) == VOIDmode)
5516         return x;
5517
5518       len = INTVAL (XEXP (x, 1));
5519       pos = INTVAL (XEXP (x, 2));
5520
5521       /* If this goes outside the object being extracted, replace the object
5522          with a (use (mem ...)) construct that only combine understands
5523          and is used only for this purpose.  */
5524       if (len + pos > GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
5525         SUBST (XEXP (x, 0), gen_rtx_USE (GET_MODE (x), XEXP (x, 0)));
5526
5527       if (BITS_BIG_ENDIAN)
5528         pos = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - len - pos;
5529
5530       break;
5531
5532     default:
5533       return x;
5534     }
5535   /* Convert sign extension to zero extension, if we know that the high
5536      bit is not set, as this is easier to optimize.  It will be converted
5537      back to cheaper alternative in make_extraction.  */
5538   if (GET_CODE (x) == SIGN_EXTEND
5539       && (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5540           && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
5541                 & ~(((unsigned HOST_WIDE_INT)
5542                       GET_MODE_MASK (GET_MODE (XEXP (x, 0))))
5543                      >> 1))
5544                == 0)))
5545     {
5546       rtx temp = gen_rtx_ZERO_EXTEND (GET_MODE (x), XEXP (x, 0));
5547       return expand_compound_operation (temp);
5548     }
5549
5550   /* We can optimize some special cases of ZERO_EXTEND.  */
5551   if (GET_CODE (x) == ZERO_EXTEND)
5552     {
5553       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI if we
5554          know that the last value didn't have any inappropriate bits
5555          set.  */
5556       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5557           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5558           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5559           && (nonzero_bits (XEXP (XEXP (x, 0), 0), GET_MODE (x))
5560               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5561         return XEXP (XEXP (x, 0), 0);
5562
5563       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5564       if (GET_CODE (XEXP (x, 0)) == SUBREG
5565           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5566           && subreg_lowpart_p (XEXP (x, 0))
5567           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5568           && (nonzero_bits (SUBREG_REG (XEXP (x, 0)), GET_MODE (x))
5569               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5570         return SUBREG_REG (XEXP (x, 0));
5571
5572       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI when foo
5573          is a comparison and STORE_FLAG_VALUE permits.  This is like
5574          the first case, but it works even when GET_MODE (x) is larger
5575          than HOST_WIDE_INT.  */
5576       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5577           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5578           && GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) == '<'
5579           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5580               <= HOST_BITS_PER_WIDE_INT)
5581           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5582               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5583         return XEXP (XEXP (x, 0), 0);
5584
5585       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5586       if (GET_CODE (XEXP (x, 0)) == SUBREG
5587           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5588           && subreg_lowpart_p (XEXP (x, 0))
5589           && GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0)))) == '<'
5590           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5591               <= HOST_BITS_PER_WIDE_INT)
5592           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5593               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5594         return SUBREG_REG (XEXP (x, 0));
5595
5596     }
5597
5598   /* If we reach here, we want to return a pair of shifts.  The inner
5599      shift is a left shift of BITSIZE - POS - LEN bits.  The outer
5600      shift is a right shift of BITSIZE - LEN bits.  It is arithmetic or
5601      logical depending on the value of UNSIGNEDP.
5602
5603      If this was a ZERO_EXTEND or ZERO_EXTRACT, this pair of shifts will be
5604      converted into an AND of a shift.
5605
5606      We must check for the case where the left shift would have a negative
5607      count.  This can happen in a case like (x >> 31) & 255 on machines
5608      that can't shift by a constant.  On those machines, we would first
5609      combine the shift with the AND to produce a variable-position
5610      extraction.  Then the constant of 31 would be substituted in to produce
5611      a such a position.  */
5612
5613   modewidth = GET_MODE_BITSIZE (GET_MODE (x));
5614   if (modewidth + len >= pos)
5615     tem = simplify_shift_const (NULL_RTX, unsignedp ? LSHIFTRT : ASHIFTRT,
5616                                 GET_MODE (x),
5617                                 simplify_shift_const (NULL_RTX, ASHIFT,
5618                                                       GET_MODE (x),
5619                                                       XEXP (x, 0),
5620                                                       modewidth - pos - len),
5621                                 modewidth - len);
5622
5623   else if (unsignedp && len < HOST_BITS_PER_WIDE_INT)
5624     tem = simplify_and_const_int (NULL_RTX, GET_MODE (x),
5625                                   simplify_shift_const (NULL_RTX, LSHIFTRT,
5626                                                         GET_MODE (x),
5627                                                         XEXP (x, 0), pos),
5628                                   ((HOST_WIDE_INT) 1 << len) - 1);
5629   else
5630     /* Any other cases we can't handle.  */
5631     return x;
5632
5633   /* If we couldn't do this for some reason, return the original
5634      expression.  */
5635   if (GET_CODE (tem) == CLOBBER)
5636     return x;
5637
5638   return tem;
5639 }
5640 \f
5641 /* X is a SET which contains an assignment of one object into
5642    a part of another (such as a bit-field assignment, STRICT_LOW_PART,
5643    or certain SUBREGS). If possible, convert it into a series of
5644    logical operations.
5645
5646    We half-heartedly support variable positions, but do not at all
5647    support variable lengths.  */
5648
5649 static rtx
5650 expand_field_assignment (x)
5651      rtx x;
5652 {
5653   rtx inner;
5654   rtx pos;                      /* Always counts from low bit.  */
5655   int len;
5656   rtx mask;
5657   enum machine_mode compute_mode;
5658
5659   /* Loop until we find something we can't simplify.  */
5660   while (1)
5661     {
5662       if (GET_CODE (SET_DEST (x)) == STRICT_LOW_PART
5663           && GET_CODE (XEXP (SET_DEST (x), 0)) == SUBREG)
5664         {
5665           int byte_offset = SUBREG_BYTE (XEXP (SET_DEST (x), 0));
5666
5667           inner = SUBREG_REG (XEXP (SET_DEST (x), 0));
5668           len = GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)));
5669           pos = GEN_INT (BITS_PER_WORD * (byte_offset / UNITS_PER_WORD));
5670         }
5671       else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
5672                && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT)
5673         {
5674           inner = XEXP (SET_DEST (x), 0);
5675           len = INTVAL (XEXP (SET_DEST (x), 1));
5676           pos = XEXP (SET_DEST (x), 2);
5677
5678           /* If the position is constant and spans the width of INNER,
5679              surround INNER  with a USE to indicate this.  */
5680           if (GET_CODE (pos) == CONST_INT
5681               && INTVAL (pos) + len > GET_MODE_BITSIZE (GET_MODE (inner)))
5682             inner = gen_rtx_USE (GET_MODE (SET_DEST (x)), inner);
5683
5684           if (BITS_BIG_ENDIAN)
5685             {
5686               if (GET_CODE (pos) == CONST_INT)
5687                 pos = GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner)) - len
5688                                - INTVAL (pos));
5689               else if (GET_CODE (pos) == MINUS
5690                        && GET_CODE (XEXP (pos, 1)) == CONST_INT
5691                        && (INTVAL (XEXP (pos, 1))
5692                            == GET_MODE_BITSIZE (GET_MODE (inner)) - len))
5693                 /* If position is ADJUST - X, new position is X.  */
5694                 pos = XEXP (pos, 0);
5695               else
5696                 pos = gen_binary (MINUS, GET_MODE (pos),
5697                                   GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner))
5698                                            - len),
5699                                   pos);
5700             }
5701         }
5702
5703       /* A SUBREG between two modes that occupy the same numbers of words
5704          can be done by moving the SUBREG to the source.  */
5705       else if (GET_CODE (SET_DEST (x)) == SUBREG
5706                /* We need SUBREGs to compute nonzero_bits properly.  */
5707                && nonzero_sign_valid
5708                && (((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
5709                      + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
5710                    == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
5711                         + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
5712         {
5713           x = gen_rtx_SET (VOIDmode, SUBREG_REG (SET_DEST (x)),
5714                            gen_lowpart_for_combine
5715                            (GET_MODE (SUBREG_REG (SET_DEST (x))),
5716                             SET_SRC (x)));
5717           continue;
5718         }
5719       else
5720         break;
5721
5722       while (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5723         inner = SUBREG_REG (inner);
5724
5725       compute_mode = GET_MODE (inner);
5726
5727       /* Don't attempt bitwise arithmetic on non-integral modes.  */
5728       if (! INTEGRAL_MODE_P (compute_mode))
5729         {
5730           enum machine_mode imode;
5731
5732           /* Something is probably seriously wrong if this matches.  */
5733           if (! FLOAT_MODE_P (compute_mode))
5734             break;
5735
5736           /* Try to find an integral mode to pun with.  */
5737           imode = mode_for_size (GET_MODE_BITSIZE (compute_mode), MODE_INT, 0);
5738           if (imode == BLKmode)
5739             break;
5740
5741           compute_mode = imode;
5742           inner = gen_lowpart_for_combine (imode, inner);
5743         }
5744
5745       /* Compute a mask of LEN bits, if we can do this on the host machine.  */
5746       if (len < HOST_BITS_PER_WIDE_INT)
5747         mask = GEN_INT (((HOST_WIDE_INT) 1 << len) - 1);
5748       else
5749         break;
5750
5751       /* Now compute the equivalent expression.  Make a copy of INNER
5752          for the SET_DEST in case it is a MEM into which we will substitute;
5753          we don't want shared RTL in that case.  */
5754       x = gen_rtx_SET
5755         (VOIDmode, copy_rtx (inner),
5756          gen_binary (IOR, compute_mode,
5757                      gen_binary (AND, compute_mode,
5758                                  simplify_gen_unary (NOT, compute_mode,
5759                                                      gen_binary (ASHIFT,
5760                                                                  compute_mode,
5761                                                                  mask, pos),
5762                                                      compute_mode),
5763                                  inner),
5764                      gen_binary (ASHIFT, compute_mode,
5765                                  gen_binary (AND, compute_mode,
5766                                              gen_lowpart_for_combine
5767                                              (compute_mode, SET_SRC (x)),
5768                                              mask),
5769                                  pos)));
5770     }
5771
5772   return x;
5773 }
5774 \f
5775 /* Return an RTX for a reference to LEN bits of INNER.  If POS_RTX is nonzero,
5776    it is an RTX that represents a variable starting position; otherwise,
5777    POS is the (constant) starting bit position (counted from the LSB).
5778
5779    INNER may be a USE.  This will occur when we started with a bitfield
5780    that went outside the boundary of the object in memory, which is
5781    allowed on most machines.  To isolate this case, we produce a USE
5782    whose mode is wide enough and surround the MEM with it.  The only
5783    code that understands the USE is this routine.  If it is not removed,
5784    it will cause the resulting insn not to match.
5785
5786    UNSIGNEDP is non-zero for an unsigned reference and zero for a
5787    signed reference.
5788
5789    IN_DEST is non-zero if this is a reference in the destination of a
5790    SET.  This is used when a ZERO_ or SIGN_EXTRACT isn't needed.  If non-zero,
5791    a STRICT_LOW_PART will be used, if zero, ZERO_EXTEND or SIGN_EXTEND will
5792    be used.
5793
5794    IN_COMPARE is non-zero if we are in a COMPARE.  This means that a
5795    ZERO_EXTRACT should be built even for bits starting at bit 0.
5796
5797    MODE is the desired mode of the result (if IN_DEST == 0).
5798
5799    The result is an RTX for the extraction or NULL_RTX if the target
5800    can't handle it.  */
5801
5802 static rtx
5803 make_extraction (mode, inner, pos, pos_rtx, len,
5804                  unsignedp, in_dest, in_compare)
5805      enum machine_mode mode;
5806      rtx inner;
5807      HOST_WIDE_INT pos;
5808      rtx pos_rtx;
5809      unsigned HOST_WIDE_INT len;
5810      int unsignedp;
5811      int in_dest, in_compare;
5812 {
5813   /* This mode describes the size of the storage area
5814      to fetch the overall value from.  Within that, we
5815      ignore the POS lowest bits, etc.  */
5816   enum machine_mode is_mode = GET_MODE (inner);
5817   enum machine_mode inner_mode;
5818   enum machine_mode wanted_inner_mode = byte_mode;
5819   enum machine_mode wanted_inner_reg_mode = word_mode;
5820   enum machine_mode pos_mode = word_mode;
5821   enum machine_mode extraction_mode = word_mode;
5822   enum machine_mode tmode = mode_for_size (len, MODE_INT, 1);
5823   int spans_byte = 0;
5824   rtx new = 0;
5825   rtx orig_pos_rtx = pos_rtx;
5826   HOST_WIDE_INT orig_pos;
5827
5828   /* Get some information about INNER and get the innermost object.  */
5829   if (GET_CODE (inner) == USE)
5830     /* (use:SI (mem:QI foo)) stands for (mem:SI foo).  */
5831     /* We don't need to adjust the position because we set up the USE
5832        to pretend that it was a full-word object.  */
5833     spans_byte = 1, inner = XEXP (inner, 0);
5834   else if (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5835     {
5836       /* If going from (subreg:SI (mem:QI ...)) to (mem:QI ...),
5837          consider just the QI as the memory to extract from.
5838          The subreg adds or removes high bits; its mode is
5839          irrelevant to the meaning of this extraction,
5840          since POS and LEN count from the lsb.  */
5841       if (GET_CODE (SUBREG_REG (inner)) == MEM)
5842         is_mode = GET_MODE (SUBREG_REG (inner));
5843       inner = SUBREG_REG (inner);
5844     }
5845
5846   inner_mode = GET_MODE (inner);
5847
5848   if (pos_rtx && GET_CODE (pos_rtx) == CONST_INT)
5849     pos = INTVAL (pos_rtx), pos_rtx = 0;
5850
5851   /* See if this can be done without an extraction.  We never can if the
5852      width of the field is not the same as that of some integer mode. For
5853      registers, we can only avoid the extraction if the position is at the
5854      low-order bit and this is either not in the destination or we have the
5855      appropriate STRICT_LOW_PART operation available.
5856
5857      For MEM, we can avoid an extract if the field starts on an appropriate
5858      boundary and we can change the mode of the memory reference.  However,
5859      we cannot directly access the MEM if we have a USE and the underlying
5860      MEM is not TMODE.  This combination means that MEM was being used in a
5861      context where bits outside its mode were being referenced; that is only
5862      valid in bit-field insns.  */
5863
5864   if (tmode != BLKmode
5865       && ! (spans_byte && inner_mode != tmode)
5866       && ((pos_rtx == 0 && (pos % BITS_PER_WORD) == 0
5867            && GET_CODE (inner) != MEM
5868            && (! in_dest
5869                || (GET_CODE (inner) == REG
5870                    && (movstrict_optab->handlers[(int) tmode].insn_code
5871                        != CODE_FOR_nothing))))
5872           || (GET_CODE (inner) == MEM && pos_rtx == 0
5873               && (pos
5874                   % (STRICT_ALIGNMENT ? GET_MODE_ALIGNMENT (tmode)
5875                      : BITS_PER_UNIT)) == 0
5876               /* We can't do this if we are widening INNER_MODE (it
5877                  may not be aligned, for one thing).  */
5878               && GET_MODE_BITSIZE (inner_mode) >= GET_MODE_BITSIZE (tmode)
5879               && (inner_mode == tmode
5880                   || (! mode_dependent_address_p (XEXP (inner, 0))
5881                       && ! MEM_VOLATILE_P (inner))))))
5882     {
5883       /* If INNER is a MEM, make a new MEM that encompasses just the desired
5884          field.  If the original and current mode are the same, we need not
5885          adjust the offset.  Otherwise, we do if bytes big endian.
5886
5887          If INNER is not a MEM, get a piece consisting of just the field
5888          of interest (in this case POS % BITS_PER_WORD must be 0).  */
5889
5890       if (GET_CODE (inner) == MEM)
5891         {
5892           HOST_WIDE_INT offset;
5893
5894           /* POS counts from lsb, but make OFFSET count in memory order.  */
5895           if (BYTES_BIG_ENDIAN)
5896             offset = (GET_MODE_BITSIZE (is_mode) - len - pos) / BITS_PER_UNIT;
5897           else
5898             offset = pos / BITS_PER_UNIT;
5899
5900           new = adjust_address_nv (inner, tmode, offset);
5901         }
5902       else if (GET_CODE (inner) == REG)
5903         {
5904           /* We can't call gen_lowpart_for_combine here since we always want
5905              a SUBREG and it would sometimes return a new hard register.  */
5906           if (tmode != inner_mode)
5907             {
5908               HOST_WIDE_INT final_word = pos / BITS_PER_WORD;
5909
5910               if (WORDS_BIG_ENDIAN
5911                   && GET_MODE_SIZE (inner_mode) > UNITS_PER_WORD)
5912                 final_word = ((GET_MODE_SIZE (inner_mode)
5913                                - GET_MODE_SIZE (tmode))
5914                               / UNITS_PER_WORD) - final_word;
5915
5916               final_word *= UNITS_PER_WORD;
5917               if (BYTES_BIG_ENDIAN &&
5918                   GET_MODE_SIZE (inner_mode) > GET_MODE_SIZE (tmode))
5919                 final_word += (GET_MODE_SIZE (inner_mode)
5920                                - GET_MODE_SIZE (tmode)) % UNITS_PER_WORD;
5921
5922               new = gen_rtx_SUBREG (tmode, inner, final_word);
5923             }
5924           else
5925             new = inner;
5926         }
5927       else
5928         new = force_to_mode (inner, tmode,
5929                              len >= HOST_BITS_PER_WIDE_INT
5930                              ? ~(unsigned HOST_WIDE_INT) 0
5931                              : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
5932                              NULL_RTX, 0);
5933
5934       /* If this extraction is going into the destination of a SET,
5935          make a STRICT_LOW_PART unless we made a MEM.  */
5936
5937       if (in_dest)
5938         return (GET_CODE (new) == MEM ? new
5939                 : (GET_CODE (new) != SUBREG
5940                    ? gen_rtx_CLOBBER (tmode, const0_rtx)
5941                    : gen_rtx_STRICT_LOW_PART (VOIDmode, new)));
5942
5943       if (mode == tmode)
5944         return new;
5945
5946       /* If we know that no extraneous bits are set, and that the high
5947          bit is not set, convert the extraction to the cheaper of
5948          sign and zero extension, that are equivalent in these cases.  */
5949       if (flag_expensive_optimizations
5950           && (GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT
5951               && ((nonzero_bits (new, tmode)
5952                    & ~(((unsigned HOST_WIDE_INT)
5953                         GET_MODE_MASK (tmode))
5954                        >> 1))
5955                   == 0)))
5956         {
5957           rtx temp = gen_rtx_ZERO_EXTEND (mode, new);
5958           rtx temp1 = gen_rtx_SIGN_EXTEND (mode, new);
5959
5960           /* Prefer ZERO_EXTENSION, since it gives more information to
5961              backends.  */
5962           if (rtx_cost (temp, SET) <= rtx_cost (temp1, SET))
5963             return temp;
5964           return temp1;
5965         }
5966
5967       /* Otherwise, sign- or zero-extend unless we already are in the
5968          proper mode.  */
5969
5970       return (gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND,
5971                              mode, new));
5972     }
5973
5974   /* Unless this is a COMPARE or we have a funny memory reference,
5975      don't do anything with zero-extending field extracts starting at
5976      the low-order bit since they are simple AND operations.  */
5977   if (pos_rtx == 0 && pos == 0 && ! in_dest
5978       && ! in_compare && ! spans_byte && unsignedp)
5979     return 0;
5980
5981   /* Unless we are allowed to span bytes or INNER is not MEM, reject this if
5982      we would be spanning bytes or if the position is not a constant and the
5983      length is not 1.  In all other cases, we would only be going outside
5984      our object in cases when an original shift would have been
5985      undefined.  */
5986   if (! spans_byte && GET_CODE (inner) == MEM
5987       && ((pos_rtx == 0 && pos + len > GET_MODE_BITSIZE (is_mode))
5988           || (pos_rtx != 0 && len != 1)))
5989     return 0;
5990
5991   /* Get the mode to use should INNER not be a MEM, the mode for the position,
5992      and the mode for the result.  */
5993 #ifdef HAVE_insv
5994   if (in_dest)
5995     {
5996       wanted_inner_reg_mode
5997         = insn_data[(int) CODE_FOR_insv].operand[0].mode;
5998       if (wanted_inner_reg_mode == VOIDmode)
5999         wanted_inner_reg_mode = word_mode;
6000
6001       pos_mode = insn_data[(int) CODE_FOR_insv].operand[2].mode;
6002       if (pos_mode == VOIDmode)
6003         pos_mode = word_mode;
6004
6005       extraction_mode = insn_data[(int) CODE_FOR_insv].operand[3].mode;
6006       if (extraction_mode == VOIDmode)
6007         extraction_mode = word_mode;
6008     }
6009 #endif
6010
6011 #ifdef HAVE_extzv
6012   if (! in_dest && unsignedp)
6013     {
6014       wanted_inner_reg_mode
6015         = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
6016       if (wanted_inner_reg_mode == VOIDmode)
6017         wanted_inner_reg_mode = word_mode;
6018
6019       pos_mode = insn_data[(int) CODE_FOR_extzv].operand[3].mode;
6020       if (pos_mode == VOIDmode)
6021         pos_mode = word_mode;
6022
6023       extraction_mode = insn_data[(int) CODE_FOR_extzv].operand[0].mode;
6024       if (extraction_mode == VOIDmode)
6025         extraction_mode = word_mode;
6026     }
6027 #endif
6028
6029 #ifdef HAVE_extv
6030   if (! in_dest && ! unsignedp)
6031     {
6032       wanted_inner_reg_mode
6033         = insn_data[(int) CODE_FOR_extv].operand[1].mode;
6034       if (wanted_inner_reg_mode == VOIDmode)
6035         wanted_inner_reg_mode = word_mode;
6036
6037       pos_mode = insn_data[(int) CODE_FOR_extv].operand[3].mode;
6038       if (pos_mode == VOIDmode)
6039         pos_mode = word_mode;
6040
6041       extraction_mode = insn_data[(int) CODE_FOR_extv].operand[0].mode;
6042       if (extraction_mode == VOIDmode)
6043         extraction_mode = word_mode;
6044     }
6045 #endif
6046
6047   /* Never narrow an object, since that might not be safe.  */
6048
6049   if (mode != VOIDmode
6050       && GET_MODE_SIZE (extraction_mode) < GET_MODE_SIZE (mode))
6051     extraction_mode = mode;
6052
6053   if (pos_rtx && GET_MODE (pos_rtx) != VOIDmode
6054       && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6055     pos_mode = GET_MODE (pos_rtx);
6056
6057   /* If this is not from memory, the desired mode is wanted_inner_reg_mode;
6058      if we have to change the mode of memory and cannot, the desired mode is
6059      EXTRACTION_MODE.  */
6060   if (GET_CODE (inner) != MEM)
6061     wanted_inner_mode = wanted_inner_reg_mode;
6062   else if (inner_mode != wanted_inner_mode
6063            && (mode_dependent_address_p (XEXP (inner, 0))
6064                || MEM_VOLATILE_P (inner)))
6065     wanted_inner_mode = extraction_mode;
6066
6067   orig_pos = pos;
6068
6069   if (BITS_BIG_ENDIAN)
6070     {
6071       /* POS is passed as if BITS_BIG_ENDIAN == 0, so we need to convert it to
6072          BITS_BIG_ENDIAN style.  If position is constant, compute new
6073          position.  Otherwise, build subtraction.
6074          Note that POS is relative to the mode of the original argument.
6075          If it's a MEM we need to recompute POS relative to that.
6076          However, if we're extracting from (or inserting into) a register,
6077          we want to recompute POS relative to wanted_inner_mode.  */
6078       int width = (GET_CODE (inner) == MEM
6079                    ? GET_MODE_BITSIZE (is_mode)
6080                    : GET_MODE_BITSIZE (wanted_inner_mode));
6081
6082       if (pos_rtx == 0)
6083         pos = width - len - pos;
6084       else
6085         pos_rtx
6086           = gen_rtx_MINUS (GET_MODE (pos_rtx), GEN_INT (width - len), pos_rtx);
6087       /* POS may be less than 0 now, but we check for that below.
6088          Note that it can only be less than 0 if GET_CODE (inner) != MEM.  */
6089     }
6090
6091   /* If INNER has a wider mode, make it smaller.  If this is a constant
6092      extract, try to adjust the byte to point to the byte containing
6093      the value.  */
6094   if (wanted_inner_mode != VOIDmode
6095       && GET_MODE_SIZE (wanted_inner_mode) < GET_MODE_SIZE (is_mode)
6096       && ((GET_CODE (inner) == MEM
6097            && (inner_mode == wanted_inner_mode
6098                || (! mode_dependent_address_p (XEXP (inner, 0))
6099                    && ! MEM_VOLATILE_P (inner))))))
6100     {
6101       int offset = 0;
6102
6103       /* The computations below will be correct if the machine is big
6104          endian in both bits and bytes or little endian in bits and bytes.
6105          If it is mixed, we must adjust.  */
6106
6107       /* If bytes are big endian and we had a paradoxical SUBREG, we must
6108          adjust OFFSET to compensate.  */
6109       if (BYTES_BIG_ENDIAN
6110           && ! spans_byte
6111           && GET_MODE_SIZE (inner_mode) < GET_MODE_SIZE (is_mode))
6112         offset -= GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (inner_mode);
6113
6114       /* If this is a constant position, we can move to the desired byte.  */
6115       if (pos_rtx == 0)
6116         {
6117           offset += pos / BITS_PER_UNIT;
6118           pos %= GET_MODE_BITSIZE (wanted_inner_mode);
6119         }
6120
6121       if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN
6122           && ! spans_byte
6123           && is_mode != wanted_inner_mode)
6124         offset = (GET_MODE_SIZE (is_mode)
6125                   - GET_MODE_SIZE (wanted_inner_mode) - offset);
6126
6127       if (offset != 0 || inner_mode != wanted_inner_mode)
6128         inner = adjust_address_nv (inner, wanted_inner_mode, offset);
6129     }
6130
6131   /* If INNER is not memory, we can always get it into the proper mode.  If we
6132      are changing its mode, POS must be a constant and smaller than the size
6133      of the new mode.  */
6134   else if (GET_CODE (inner) != MEM)
6135     {
6136       if (GET_MODE (inner) != wanted_inner_mode
6137           && (pos_rtx != 0
6138               || orig_pos + len > GET_MODE_BITSIZE (wanted_inner_mode)))
6139         return 0;
6140
6141       inner = force_to_mode (inner, wanted_inner_mode,
6142                              pos_rtx
6143                              || len + orig_pos >= HOST_BITS_PER_WIDE_INT
6144                              ? ~(unsigned HOST_WIDE_INT) 0
6145                              : ((((unsigned HOST_WIDE_INT) 1 << len) - 1)
6146                                 << orig_pos),
6147                              NULL_RTX, 0);
6148     }
6149
6150   /* Adjust mode of POS_RTX, if needed.  If we want a wider mode, we
6151      have to zero extend.  Otherwise, we can just use a SUBREG.  */
6152   if (pos_rtx != 0
6153       && GET_MODE_SIZE (pos_mode) > GET_MODE_SIZE (GET_MODE (pos_rtx)))
6154     {
6155       rtx temp = gen_rtx_ZERO_EXTEND (pos_mode, pos_rtx);
6156
6157       /* If we know that no extraneous bits are set, and that the high
6158          bit is not set, convert extraction to cheaper one - eighter
6159          SIGN_EXTENSION or ZERO_EXTENSION, that are equivalent in these
6160          cases.  */
6161       if (flag_expensive_optimizations
6162           && (GET_MODE_BITSIZE (GET_MODE (pos_rtx)) <= HOST_BITS_PER_WIDE_INT
6163               && ((nonzero_bits (pos_rtx, GET_MODE (pos_rtx))
6164                    & ~(((unsigned HOST_WIDE_INT)
6165                         GET_MODE_MASK (GET_MODE (pos_rtx)))
6166                        >> 1))
6167                   == 0)))
6168         {
6169           rtx temp1 = gen_rtx_SIGN_EXTEND (pos_mode, pos_rtx);
6170
6171           /* Prefer ZERO_EXTENSION, since it gives more information to
6172              backends.  */
6173           if (rtx_cost (temp1, SET) < rtx_cost (temp, SET))
6174             temp = temp1;
6175         }
6176       pos_rtx = temp;
6177     }
6178   else if (pos_rtx != 0
6179            && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6180     pos_rtx = gen_lowpart_for_combine (pos_mode, pos_rtx);
6181
6182   /* Make POS_RTX unless we already have it and it is correct.  If we don't
6183      have a POS_RTX but we do have an ORIG_POS_RTX, the latter must
6184      be a CONST_INT.  */
6185   if (pos_rtx == 0 && orig_pos_rtx != 0 && INTVAL (orig_pos_rtx) == pos)
6186     pos_rtx = orig_pos_rtx;
6187
6188   else if (pos_rtx == 0)
6189     pos_rtx = GEN_INT (pos);
6190
6191   /* Make the required operation.  See if we can use existing rtx.  */
6192   new = gen_rtx_fmt_eee (unsignedp ? ZERO_EXTRACT : SIGN_EXTRACT,
6193                          extraction_mode, inner, GEN_INT (len), pos_rtx);
6194   if (! in_dest)
6195     new = gen_lowpart_for_combine (mode, new);
6196
6197   return new;
6198 }
6199 \f
6200 /* See if X contains an ASHIFT of COUNT or more bits that can be commuted
6201    with any other operations in X.  Return X without that shift if so.  */
6202
6203 static rtx
6204 extract_left_shift (x, count)
6205      rtx x;
6206      int count;
6207 {
6208   enum rtx_code code = GET_CODE (x);
6209   enum machine_mode mode = GET_MODE (x);
6210   rtx tem;
6211
6212   switch (code)
6213     {
6214     case ASHIFT:
6215       /* This is the shift itself.  If it is wide enough, we will return
6216          either the value being shifted if the shift count is equal to
6217          COUNT or a shift for the difference.  */
6218       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6219           && INTVAL (XEXP (x, 1)) >= count)
6220         return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (x, 0),
6221                                      INTVAL (XEXP (x, 1)) - count);
6222       break;
6223
6224     case NEG:  case NOT:
6225       if ((tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6226         return simplify_gen_unary (code, mode, tem, mode);
6227
6228       break;
6229
6230     case PLUS:  case IOR:  case XOR:  case AND:
6231       /* If we can safely shift this constant and we find the inner shift,
6232          make a new operation.  */
6233       if (GET_CODE (XEXP (x,1)) == CONST_INT
6234           && (INTVAL (XEXP (x, 1)) & ((((HOST_WIDE_INT) 1 << count)) - 1)) == 0
6235           && (tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6236         return gen_binary (code, mode, tem,
6237                            GEN_INT (INTVAL (XEXP (x, 1)) >> count));
6238
6239       break;
6240
6241     default:
6242       break;
6243     }
6244
6245   return 0;
6246 }
6247 \f
6248 /* Look at the expression rooted at X.  Look for expressions
6249    equivalent to ZERO_EXTRACT, SIGN_EXTRACT, ZERO_EXTEND, SIGN_EXTEND.
6250    Form these expressions.
6251
6252    Return the new rtx, usually just X.
6253
6254    Also, for machines like the Vax that don't have logical shift insns,
6255    try to convert logical to arithmetic shift operations in cases where
6256    they are equivalent.  This undoes the canonicalizations to logical
6257    shifts done elsewhere.
6258
6259    We try, as much as possible, to re-use rtl expressions to save memory.
6260
6261    IN_CODE says what kind of expression we are processing.  Normally, it is
6262    SET.  In a memory address (inside a MEM, PLUS or minus, the latter two
6263    being kludges), it is MEM.  When processing the arguments of a comparison
6264    or a COMPARE against zero, it is COMPARE.  */
6265
6266 static rtx
6267 make_compound_operation (x, in_code)
6268      rtx x;
6269      enum rtx_code in_code;
6270 {
6271   enum rtx_code code = GET_CODE (x);
6272   enum machine_mode mode = GET_MODE (x);
6273   int mode_width = GET_MODE_BITSIZE (mode);
6274   rtx rhs, lhs;
6275   enum rtx_code next_code;
6276   int i;
6277   rtx new = 0;
6278   rtx tem;
6279   const char *fmt;
6280
6281   /* Select the code to be used in recursive calls.  Once we are inside an
6282      address, we stay there.  If we have a comparison, set to COMPARE,
6283      but once inside, go back to our default of SET.  */
6284
6285   next_code = (code == MEM || code == PLUS || code == MINUS ? MEM
6286                : ((code == COMPARE || GET_RTX_CLASS (code) == '<')
6287                   && XEXP (x, 1) == const0_rtx) ? COMPARE
6288                : in_code == COMPARE ? SET : in_code);
6289
6290   /* Process depending on the code of this operation.  If NEW is set
6291      non-zero, it will be returned.  */
6292
6293   switch (code)
6294     {
6295     case ASHIFT:
6296       /* Convert shifts by constants into multiplications if inside
6297          an address.  */
6298       if (in_code == MEM && GET_CODE (XEXP (x, 1)) == CONST_INT
6299           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6300           && INTVAL (XEXP (x, 1)) >= 0)
6301         {
6302           new = make_compound_operation (XEXP (x, 0), next_code);
6303           new = gen_rtx_MULT (mode, new,
6304                               GEN_INT ((HOST_WIDE_INT) 1
6305                                        << INTVAL (XEXP (x, 1))));
6306         }
6307       break;
6308
6309     case AND:
6310       /* If the second operand is not a constant, we can't do anything
6311          with it.  */
6312       if (GET_CODE (XEXP (x, 1)) != CONST_INT)
6313         break;
6314
6315       /* If the constant is a power of two minus one and the first operand
6316          is a logical right shift, make an extraction.  */
6317       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6318           && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6319         {
6320           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6321           new = make_extraction (mode, new, 0, XEXP (XEXP (x, 0), 1), i, 1,
6322                                  0, in_code == COMPARE);
6323         }
6324
6325       /* Same as previous, but for (subreg (lshiftrt ...)) in first op.  */
6326       else if (GET_CODE (XEXP (x, 0)) == SUBREG
6327                && subreg_lowpart_p (XEXP (x, 0))
6328                && GET_CODE (SUBREG_REG (XEXP (x, 0))) == LSHIFTRT
6329                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6330         {
6331           new = make_compound_operation (XEXP (SUBREG_REG (XEXP (x, 0)), 0),
6332                                          next_code);
6333           new = make_extraction (GET_MODE (SUBREG_REG (XEXP (x, 0))), new, 0,
6334                                  XEXP (SUBREG_REG (XEXP (x, 0)), 1), i, 1,
6335                                  0, in_code == COMPARE);
6336         }
6337       /* Same as previous, but for (xor/ior (lshiftrt...) (lshiftrt...)).  */
6338       else if ((GET_CODE (XEXP (x, 0)) == XOR
6339                 || GET_CODE (XEXP (x, 0)) == IOR)
6340                && GET_CODE (XEXP (XEXP (x, 0), 0)) == LSHIFTRT
6341                && GET_CODE (XEXP (XEXP (x, 0), 1)) == LSHIFTRT
6342                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6343         {
6344           /* Apply the distributive law, and then try to make extractions.  */
6345           new = gen_rtx_fmt_ee (GET_CODE (XEXP (x, 0)), mode,
6346                                 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 0),
6347                                              XEXP (x, 1)),
6348                                 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 1),
6349                                              XEXP (x, 1)));
6350           new = make_compound_operation (new, in_code);
6351         }
6352
6353       /* If we are have (and (rotate X C) M) and C is larger than the number
6354          of bits in M, this is an extraction.  */
6355
6356       else if (GET_CODE (XEXP (x, 0)) == ROTATE
6357                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6358                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0
6359                && i <= INTVAL (XEXP (XEXP (x, 0), 1)))
6360         {
6361           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6362           new = make_extraction (mode, new,
6363                                  (GET_MODE_BITSIZE (mode)
6364                                   - INTVAL (XEXP (XEXP (x, 0), 1))),
6365                                  NULL_RTX, i, 1, 0, in_code == COMPARE);
6366         }
6367
6368       /* On machines without logical shifts, if the operand of the AND is
6369          a logical shift and our mask turns off all the propagated sign
6370          bits, we can replace the logical shift with an arithmetic shift.  */
6371       else if (ashr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6372                && (lshr_optab->handlers[(int) mode].insn_code
6373                    == CODE_FOR_nothing)
6374                && GET_CODE (XEXP (x, 0)) == LSHIFTRT
6375                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6376                && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6377                && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6378                && mode_width <= HOST_BITS_PER_WIDE_INT)
6379         {
6380           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
6381
6382           mask >>= INTVAL (XEXP (XEXP (x, 0), 1));
6383           if ((INTVAL (XEXP (x, 1)) & ~mask) == 0)
6384             SUBST (XEXP (x, 0),
6385                    gen_rtx_ASHIFTRT (mode,
6386                                      make_compound_operation
6387                                      (XEXP (XEXP (x, 0), 0), next_code),
6388                                      XEXP (XEXP (x, 0), 1)));
6389         }
6390
6391       /* If the constant is one less than a power of two, this might be
6392          representable by an extraction even if no shift is present.
6393          If it doesn't end up being a ZERO_EXTEND, we will ignore it unless
6394          we are in a COMPARE.  */
6395       else if ((i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6396         new = make_extraction (mode,
6397                                make_compound_operation (XEXP (x, 0),
6398                                                         next_code),
6399                                0, NULL_RTX, i, 1, 0, in_code == COMPARE);
6400
6401       /* If we are in a comparison and this is an AND with a power of two,
6402          convert this into the appropriate bit extract.  */
6403       else if (in_code == COMPARE
6404                && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
6405         new = make_extraction (mode,
6406                                make_compound_operation (XEXP (x, 0),
6407                                                         next_code),
6408                                i, NULL_RTX, 1, 1, 0, 1);
6409
6410       break;
6411
6412     case LSHIFTRT:
6413       /* If the sign bit is known to be zero, replace this with an
6414          arithmetic shift.  */
6415       if (ashr_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing
6416           && lshr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6417           && mode_width <= HOST_BITS_PER_WIDE_INT
6418           && (nonzero_bits (XEXP (x, 0), mode) & (1 << (mode_width - 1))) == 0)
6419         {
6420           new = gen_rtx_ASHIFTRT (mode,
6421                                   make_compound_operation (XEXP (x, 0),
6422                                                            next_code),
6423                                   XEXP (x, 1));
6424           break;
6425         }
6426
6427       /* ... fall through ...  */
6428
6429     case ASHIFTRT:
6430       lhs = XEXP (x, 0);
6431       rhs = XEXP (x, 1);
6432
6433       /* If we have (ashiftrt (ashift foo C1) C2) with C2 >= C1,
6434          this is a SIGN_EXTRACT.  */
6435       if (GET_CODE (rhs) == CONST_INT
6436           && GET_CODE (lhs) == ASHIFT
6437           && GET_CODE (XEXP (lhs, 1)) == CONST_INT
6438           && INTVAL (rhs) >= INTVAL (XEXP (lhs, 1)))
6439         {
6440           new = make_compound_operation (XEXP (lhs, 0), next_code);
6441           new = make_extraction (mode, new,
6442                                  INTVAL (rhs) - INTVAL (XEXP (lhs, 1)),
6443                                  NULL_RTX, mode_width - INTVAL (rhs),
6444                                  code == LSHIFTRT, 0, in_code == COMPARE);
6445           break;
6446         }
6447
6448       /* See if we have operations between an ASHIFTRT and an ASHIFT.
6449          If so, try to merge the shifts into a SIGN_EXTEND.  We could
6450          also do this for some cases of SIGN_EXTRACT, but it doesn't
6451          seem worth the effort; the case checked for occurs on Alpha.  */
6452
6453       if (GET_RTX_CLASS (GET_CODE (lhs)) != 'o'
6454           && ! (GET_CODE (lhs) == SUBREG
6455                 && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (lhs))) == 'o'))
6456           && GET_CODE (rhs) == CONST_INT
6457           && INTVAL (rhs) < HOST_BITS_PER_WIDE_INT
6458           && (new = extract_left_shift (lhs, INTVAL (rhs))) != 0)
6459         new = make_extraction (mode, make_compound_operation (new, next_code),
6460                                0, NULL_RTX, mode_width - INTVAL (rhs),
6461                                code == LSHIFTRT, 0, in_code == COMPARE);
6462
6463       break;
6464
6465     case SUBREG:
6466       /* Call ourselves recursively on the inner expression.  If we are
6467          narrowing the object and it has a different RTL code from
6468          what it originally did, do this SUBREG as a force_to_mode.  */
6469
6470       tem = make_compound_operation (SUBREG_REG (x), in_code);
6471       if (GET_CODE (tem) != GET_CODE (SUBREG_REG (x))
6472           && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (tem))
6473           && subreg_lowpart_p (x))
6474         {
6475           rtx newer = force_to_mode (tem, mode, ~(HOST_WIDE_INT) 0,
6476                                      NULL_RTX, 0);
6477
6478           /* If we have something other than a SUBREG, we might have
6479              done an expansion, so rerun outselves.  */
6480           if (GET_CODE (newer) != SUBREG)
6481             newer = make_compound_operation (newer, in_code);
6482
6483           return newer;
6484         }
6485
6486       /* If this is a paradoxical subreg, and the new code is a sign or
6487          zero extension, omit the subreg and widen the extension.  If it
6488          is a regular subreg, we can still get rid of the subreg by not
6489          widening so much, or in fact removing the extension entirely.  */
6490       if ((GET_CODE (tem) == SIGN_EXTEND
6491            || GET_CODE (tem) == ZERO_EXTEND)
6492           && subreg_lowpart_p (x))
6493         {
6494           if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (tem))
6495               || (GET_MODE_SIZE (mode) >
6496                   GET_MODE_SIZE (GET_MODE (XEXP (tem, 0)))))
6497             tem = gen_rtx_fmt_e (GET_CODE (tem), mode, XEXP (tem, 0));
6498           else
6499             tem = gen_lowpart_for_combine (mode, XEXP (tem, 0));
6500           return tem;
6501         }
6502       break;
6503
6504     default:
6505       break;
6506     }
6507
6508   if (new)
6509     {
6510       x = gen_lowpart_for_combine (mode, new);
6511       code = GET_CODE (x);
6512     }
6513
6514   /* Now recursively process each operand of this operation.  */
6515   fmt = GET_RTX_FORMAT (code);
6516   for (i = 0; i < GET_RTX_LENGTH (code); i++)
6517     if (fmt[i] == 'e')
6518       {
6519         new = make_compound_operation (XEXP (x, i), next_code);
6520         SUBST (XEXP (x, i), new);
6521       }
6522
6523   return x;
6524 }
6525 \f
6526 /* Given M see if it is a value that would select a field of bits
6527    within an item, but not the entire word.  Return -1 if not.
6528    Otherwise, return the starting position of the field, where 0 is the
6529    low-order bit.
6530
6531    *PLEN is set to the length of the field.  */
6532
6533 static int
6534 get_pos_from_mask (m, plen)
6535      unsigned HOST_WIDE_INT m;
6536      unsigned HOST_WIDE_INT *plen;
6537 {
6538   /* Get the bit number of the first 1 bit from the right, -1 if none.  */
6539   int pos = exact_log2 (m & -m);
6540   int len;
6541
6542   if (pos < 0)
6543     return -1;
6544
6545   /* Now shift off the low-order zero bits and see if we have a power of
6546      two minus 1.  */
6547   len = exact_log2 ((m >> pos) + 1);
6548
6549   if (len <= 0)
6550     return -1;
6551
6552   *plen = len;
6553   return pos;
6554 }
6555 \f
6556 /* See if X can be simplified knowing that we will only refer to it in
6557    MODE and will only refer to those bits that are nonzero in MASK.
6558    If other bits are being computed or if masking operations are done
6559    that select a superset of the bits in MASK, they can sometimes be
6560    ignored.
6561
6562    Return a possibly simplified expression, but always convert X to
6563    MODE.  If X is a CONST_INT, AND the CONST_INT with MASK.
6564
6565    Also, if REG is non-zero and X is a register equal in value to REG,
6566    replace X with REG.
6567
6568    If JUST_SELECT is nonzero, don't optimize by noticing that bits in MASK
6569    are all off in X.  This is used when X will be complemented, by either
6570    NOT, NEG, or XOR.  */
6571
6572 static rtx
6573 force_to_mode (x, mode, mask, reg, just_select)
6574      rtx x;
6575      enum machine_mode mode;
6576      unsigned HOST_WIDE_INT mask;
6577      rtx reg;
6578      int just_select;
6579 {
6580   enum rtx_code code = GET_CODE (x);
6581   int next_select = just_select || code == XOR || code == NOT || code == NEG;
6582   enum machine_mode op_mode;
6583   unsigned HOST_WIDE_INT fuller_mask, nonzero;
6584   rtx op0, op1, temp;
6585
6586   /* If this is a CALL or ASM_OPERANDS, don't do anything.  Some of the
6587      code below will do the wrong thing since the mode of such an
6588      expression is VOIDmode.
6589
6590      Also do nothing if X is a CLOBBER; this can happen if X was
6591      the return value from a call to gen_lowpart_for_combine.  */
6592   if (code == CALL || code == ASM_OPERANDS || code == CLOBBER)
6593     return x;
6594
6595   /* We want to perform the operation is its present mode unless we know
6596      that the operation is valid in MODE, in which case we do the operation
6597      in MODE.  */
6598   op_mode = ((GET_MODE_CLASS (mode) == GET_MODE_CLASS (GET_MODE (x))
6599               && code_to_optab[(int) code] != 0
6600               && (code_to_optab[(int) code]->handlers[(int) mode].insn_code
6601                   != CODE_FOR_nothing))
6602              ? mode : GET_MODE (x));
6603
6604   /* It is not valid to do a right-shift in a narrower mode
6605      than the one it came in with.  */
6606   if ((code == LSHIFTRT || code == ASHIFTRT)
6607       && GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (GET_MODE (x)))
6608     op_mode = GET_MODE (x);
6609
6610   /* Truncate MASK to fit OP_MODE.  */
6611   if (op_mode)
6612     mask &= GET_MODE_MASK (op_mode);
6613
6614   /* When we have an arithmetic operation, or a shift whose count we
6615      do not know, we need to assume that all bit the up to the highest-order
6616      bit in MASK will be needed.  This is how we form such a mask.  */
6617   if (op_mode)
6618     fuller_mask = (GET_MODE_BITSIZE (op_mode) >= HOST_BITS_PER_WIDE_INT
6619                    ? GET_MODE_MASK (op_mode)
6620                    : (((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mask) + 1))
6621                       - 1));
6622   else
6623     fuller_mask = ~(HOST_WIDE_INT) 0;
6624
6625   /* Determine what bits of X are guaranteed to be (non)zero.  */
6626   nonzero = nonzero_bits (x, mode);
6627
6628   /* If none of the bits in X are needed, return a zero.  */
6629   if (! just_select && (nonzero & mask) == 0)
6630     return const0_rtx;
6631
6632   /* If X is a CONST_INT, return a new one.  Do this here since the
6633      test below will fail.  */
6634   if (GET_CODE (x) == CONST_INT)
6635     {
6636       HOST_WIDE_INT cval = INTVAL (x) & mask;
6637       int width = GET_MODE_BITSIZE (mode);
6638
6639       /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6640          number, sign extend it.  */
6641       if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6642           && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6643         cval |= (HOST_WIDE_INT) -1 << width;
6644
6645       return GEN_INT (cval);
6646     }
6647
6648   /* If X is narrower than MODE and we want all the bits in X's mode, just
6649      get X in the proper mode.  */
6650   if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode)
6651       && (GET_MODE_MASK (GET_MODE (x)) & ~mask) == 0)
6652     return gen_lowpart_for_combine (mode, x);
6653
6654   /* If we aren't changing the mode, X is not a SUBREG, and all zero bits in
6655      MASK are already known to be zero in X, we need not do anything.  */
6656   if (GET_MODE (x) == mode && code != SUBREG && (~mask & nonzero) == 0)
6657     return x;
6658
6659   switch (code)
6660     {
6661     case CLOBBER:
6662       /* If X is a (clobber (const_int)), return it since we know we are
6663          generating something that won't match.  */
6664       return x;
6665
6666     case USE:
6667       /* X is a (use (mem ..)) that was made from a bit-field extraction that
6668          spanned the boundary of the MEM.  If we are now masking so it is
6669          within that boundary, we don't need the USE any more.  */
6670       if (! BITS_BIG_ENDIAN
6671           && (mask & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6672         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6673       break;
6674
6675     case SIGN_EXTEND:
6676     case ZERO_EXTEND:
6677     case ZERO_EXTRACT:
6678     case SIGN_EXTRACT:
6679       x = expand_compound_operation (x);
6680       if (GET_CODE (x) != code)
6681         return force_to_mode (x, mode, mask, reg, next_select);
6682       break;
6683
6684     case REG:
6685       if (reg != 0 && (rtx_equal_p (get_last_value (reg), x)
6686                        || rtx_equal_p (reg, get_last_value (x))))
6687         x = reg;
6688       break;
6689
6690     case SUBREG:
6691       if (subreg_lowpart_p (x)
6692           /* We can ignore the effect of this SUBREG if it narrows the mode or
6693              if the constant masks to zero all the bits the mode doesn't
6694              have.  */
6695           && ((GET_MODE_SIZE (GET_MODE (x))
6696                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
6697               || (0 == (mask
6698                         & GET_MODE_MASK (GET_MODE (x))
6699                         & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x)))))))
6700         return force_to_mode (SUBREG_REG (x), mode, mask, reg, next_select);
6701       break;
6702
6703     case AND:
6704       /* If this is an AND with a constant, convert it into an AND
6705          whose constant is the AND of that constant with MASK.  If it
6706          remains an AND of MASK, delete it since it is redundant.  */
6707
6708       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
6709         {
6710           x = simplify_and_const_int (x, op_mode, XEXP (x, 0),
6711                                       mask & INTVAL (XEXP (x, 1)));
6712
6713           /* If X is still an AND, see if it is an AND with a mask that
6714              is just some low-order bits.  If so, and it is MASK, we don't
6715              need it.  */
6716
6717           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6718               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) == mask)
6719             x = XEXP (x, 0);
6720
6721           /* If it remains an AND, try making another AND with the bits
6722              in the mode mask that aren't in MASK turned on.  If the
6723              constant in the AND is wide enough, this might make a
6724              cheaper constant.  */
6725
6726           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6727               && GET_MODE_MASK (GET_MODE (x)) != mask
6728               && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
6729             {
6730               HOST_WIDE_INT cval = (INTVAL (XEXP (x, 1))
6731                                     | (GET_MODE_MASK (GET_MODE (x)) & ~mask));
6732               int width = GET_MODE_BITSIZE (GET_MODE (x));
6733               rtx y;
6734
6735               /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6736                  number, sign extend it.  */
6737               if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6738                   && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6739                 cval |= (HOST_WIDE_INT) -1 << width;
6740
6741               y = gen_binary (AND, GET_MODE (x), XEXP (x, 0), GEN_INT (cval));
6742               if (rtx_cost (y, SET) < rtx_cost (x, SET))
6743                 x = y;
6744             }
6745
6746           break;
6747         }
6748
6749       goto binop;
6750
6751     case PLUS:
6752       /* In (and (plus FOO C1) M), if M is a mask that just turns off
6753          low-order bits (as in an alignment operation) and FOO is already
6754          aligned to that boundary, mask C1 to that boundary as well.
6755          This may eliminate that PLUS and, later, the AND.  */
6756
6757       {
6758         unsigned int width = GET_MODE_BITSIZE (mode);
6759         unsigned HOST_WIDE_INT smask = mask;
6760
6761         /* If MODE is narrower than HOST_WIDE_INT and mask is a negative
6762            number, sign extend it.  */
6763
6764         if (width < HOST_BITS_PER_WIDE_INT
6765             && (smask & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6766           smask |= (HOST_WIDE_INT) -1 << width;
6767
6768         if (GET_CODE (XEXP (x, 1)) == CONST_INT
6769             && exact_log2 (- smask) >= 0)
6770           {
6771 #ifdef STACK_BIAS
6772             if (STACK_BIAS
6773                 && (XEXP (x, 0) == stack_pointer_rtx
6774                     || XEXP (x, 0) == frame_pointer_rtx))
6775               {
6776                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
6777                 unsigned HOST_WIDE_INT sp_mask = GET_MODE_MASK (mode);
6778
6779                 sp_mask &= ~(sp_alignment - 1);
6780                 if ((sp_mask & ~smask) == 0
6781                     && ((INTVAL (XEXP (x, 1)) - STACK_BIAS) & ~smask) != 0)
6782                   return force_to_mode (plus_constant (XEXP (x, 0),
6783                                                        ((INTVAL (XEXP (x, 1)) -
6784                                                          STACK_BIAS) & smask)
6785                                                        + STACK_BIAS),
6786                                         mode, smask, reg, next_select);
6787               }
6788 #endif
6789             if ((nonzero_bits (XEXP (x, 0), mode) & ~smask) == 0
6790                 && (INTVAL (XEXP (x, 1)) & ~smask) != 0)
6791               return force_to_mode (plus_constant (XEXP (x, 0),
6792                                                    (INTVAL (XEXP (x, 1))
6793                                                     & smask)),
6794                                     mode, smask, reg, next_select);
6795           }
6796       }
6797
6798       /* ... fall through ...  */
6799
6800     case MULT:
6801       /* For PLUS, MINUS and MULT, we need any bits less significant than the
6802          most significant bit in MASK since carries from those bits will
6803          affect the bits we are interested in.  */
6804       mask = fuller_mask;
6805       goto binop;
6806
6807     case MINUS:
6808       /* If X is (minus C Y) where C's least set bit is larger than any bit
6809          in the mask, then we may replace with (neg Y).  */
6810       if (GET_CODE (XEXP (x, 0)) == CONST_INT
6811           && (((unsigned HOST_WIDE_INT) (INTVAL (XEXP (x, 0))
6812                                         & -INTVAL (XEXP (x, 0))))
6813               > mask))
6814         {
6815           x = simplify_gen_unary (NEG, GET_MODE (x), XEXP (x, 1),
6816                                   GET_MODE (x));
6817           return force_to_mode (x, mode, mask, reg, next_select);
6818         }
6819
6820       /* Similarly, if C contains every bit in the mask, then we may
6821          replace with (not Y).  */
6822       if (GET_CODE (XEXP (x, 0)) == CONST_INT
6823           && ((INTVAL (XEXP (x, 0)) | (HOST_WIDE_INT) mask)
6824               == INTVAL (XEXP (x, 0))))
6825         {
6826           x = simplify_gen_unary (NOT, GET_MODE (x),
6827                                   XEXP (x, 1), GET_MODE (x));
6828           return force_to_mode (x, mode, mask, reg, next_select);
6829         }
6830
6831       mask = fuller_mask;
6832       goto binop;
6833
6834     case IOR:
6835     case XOR:
6836       /* If X is (ior (lshiftrt FOO C1) C2), try to commute the IOR and
6837          LSHIFTRT so we end up with an (and (lshiftrt (ior ...) ...) ...)
6838          operation which may be a bitfield extraction.  Ensure that the
6839          constant we form is not wider than the mode of X.  */
6840
6841       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6842           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6843           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6844           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6845           && GET_CODE (XEXP (x, 1)) == CONST_INT
6846           && ((INTVAL (XEXP (XEXP (x, 0), 1))
6847                + floor_log2 (INTVAL (XEXP (x, 1))))
6848               < GET_MODE_BITSIZE (GET_MODE (x)))
6849           && (INTVAL (XEXP (x, 1))
6850               & ~nonzero_bits (XEXP (x, 0), GET_MODE (x))) == 0)
6851         {
6852           temp = GEN_INT ((INTVAL (XEXP (x, 1)) & mask)
6853                           << INTVAL (XEXP (XEXP (x, 0), 1)));
6854           temp = gen_binary (GET_CODE (x), GET_MODE (x),
6855                              XEXP (XEXP (x, 0), 0), temp);
6856           x = gen_binary (LSHIFTRT, GET_MODE (x), temp,
6857                           XEXP (XEXP (x, 0), 1));
6858           return force_to_mode (x, mode, mask, reg, next_select);
6859         }
6860
6861     binop:
6862       /* For most binary operations, just propagate into the operation and
6863          change the mode if we have an operation of that mode.   */
6864
6865       op0 = gen_lowpart_for_combine (op_mode,
6866                                      force_to_mode (XEXP (x, 0), mode, mask,
6867                                                     reg, next_select));
6868       op1 = gen_lowpart_for_combine (op_mode,
6869                                      force_to_mode (XEXP (x, 1), mode, mask,
6870                                                     reg, next_select));
6871
6872       /* If OP1 is a CONST_INT and X is an IOR or XOR, clear bits outside
6873          MASK since OP1 might have been sign-extended but we never want
6874          to turn on extra bits, since combine might have previously relied
6875          on them being off.  */
6876       if (GET_CODE (op1) == CONST_INT && (code == IOR || code == XOR)
6877           && (INTVAL (op1) & mask) != 0)
6878         op1 = GEN_INT (INTVAL (op1) & mask);
6879
6880       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
6881         x = gen_binary (code, op_mode, op0, op1);
6882       break;
6883
6884     case ASHIFT:
6885       /* For left shifts, do the same, but just for the first operand.
6886          However, we cannot do anything with shifts where we cannot
6887          guarantee that the counts are smaller than the size of the mode
6888          because such a count will have a different meaning in a
6889          wider mode.  */
6890
6891       if (! (GET_CODE (XEXP (x, 1)) == CONST_INT
6892              && INTVAL (XEXP (x, 1)) >= 0
6893              && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (mode))
6894           && ! (GET_MODE (XEXP (x, 1)) != VOIDmode
6895                 && (nonzero_bits (XEXP (x, 1), GET_MODE (XEXP (x, 1)))
6896                     < (unsigned HOST_WIDE_INT) GET_MODE_BITSIZE (mode))))
6897         break;
6898
6899       /* If the shift count is a constant and we can do arithmetic in
6900          the mode of the shift, refine which bits we need.  Otherwise, use the
6901          conservative form of the mask.  */
6902       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6903           && INTVAL (XEXP (x, 1)) >= 0
6904           && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (op_mode)
6905           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6906         mask >>= INTVAL (XEXP (x, 1));
6907       else
6908         mask = fuller_mask;
6909
6910       op0 = gen_lowpart_for_combine (op_mode,
6911                                      force_to_mode (XEXP (x, 0), op_mode,
6912                                                     mask, reg, next_select));
6913
6914       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
6915         x = gen_binary (code, op_mode, op0, XEXP (x, 1));
6916       break;
6917
6918     case LSHIFTRT:
6919       /* Here we can only do something if the shift count is a constant,
6920          this shift constant is valid for the host, and we can do arithmetic
6921          in OP_MODE.  */
6922
6923       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6924           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6925           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6926         {
6927           rtx inner = XEXP (x, 0);
6928           unsigned HOST_WIDE_INT inner_mask;
6929
6930           /* Select the mask of the bits we need for the shift operand.  */
6931           inner_mask = mask << INTVAL (XEXP (x, 1));
6932
6933           /* We can only change the mode of the shift if we can do arithmetic
6934              in the mode of the shift and INNER_MASK is no wider than the
6935              width of OP_MODE.  */
6936           if (GET_MODE_BITSIZE (op_mode) > HOST_BITS_PER_WIDE_INT
6937               || (inner_mask & ~GET_MODE_MASK (op_mode)) != 0)
6938             op_mode = GET_MODE (x);
6939
6940           inner = force_to_mode (inner, op_mode, inner_mask, reg, next_select);
6941
6942           if (GET_MODE (x) != op_mode || inner != XEXP (x, 0))
6943             x = gen_binary (LSHIFTRT, op_mode, inner, XEXP (x, 1));
6944         }
6945
6946       /* If we have (and (lshiftrt FOO C1) C2) where the combination of the
6947          shift and AND produces only copies of the sign bit (C2 is one less
6948          than a power of two), we can do this with just a shift.  */
6949
6950       if (GET_CODE (x) == LSHIFTRT
6951           && GET_CODE (XEXP (x, 1)) == CONST_INT
6952           /* The shift puts one of the sign bit copies in the least significant
6953              bit.  */
6954           && ((INTVAL (XEXP (x, 1))
6955                + num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0))))
6956               >= GET_MODE_BITSIZE (GET_MODE (x)))
6957           && exact_log2 (mask + 1) >= 0
6958           /* Number of bits left after the shift must be more than the mask
6959              needs.  */
6960           && ((INTVAL (XEXP (x, 1)) + exact_log2 (mask + 1))
6961               <= GET_MODE_BITSIZE (GET_MODE (x)))
6962           /* Must be more sign bit copies than the mask needs.  */
6963           && ((int) num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
6964               >= exact_log2 (mask + 1)))
6965         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0),
6966                         GEN_INT (GET_MODE_BITSIZE (GET_MODE (x))
6967                                  - exact_log2 (mask + 1)));
6968
6969       goto shiftrt;
6970
6971     case ASHIFTRT:
6972       /* If we are just looking for the sign bit, we don't need this shift at
6973          all, even if it has a variable count.  */
6974       if (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
6975           && (mask == ((unsigned HOST_WIDE_INT) 1
6976                        << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
6977         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6978
6979       /* If this is a shift by a constant, get a mask that contains those bits
6980          that are not copies of the sign bit.  We then have two cases:  If
6981          MASK only includes those bits, this can be a logical shift, which may
6982          allow simplifications.  If MASK is a single-bit field not within
6983          those bits, we are requesting a copy of the sign bit and hence can
6984          shift the sign bit to the appropriate location.  */
6985
6986       if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) >= 0
6987           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
6988         {
6989           int i = -1;
6990
6991           /* If the considered data is wider then HOST_WIDE_INT, we can't
6992              represent a mask for all its bits in a single scalar.
6993              But we only care about the lower bits, so calculate these.  */
6994
6995           if (GET_MODE_BITSIZE (GET_MODE (x)) > HOST_BITS_PER_WIDE_INT)
6996             {
6997               nonzero = ~(HOST_WIDE_INT) 0;
6998
6999               /* GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
7000                  is the number of bits a full-width mask would have set.
7001                  We need only shift if these are fewer than nonzero can
7002                  hold.  If not, we must keep all bits set in nonzero.  */
7003
7004               if (GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
7005                   < HOST_BITS_PER_WIDE_INT)
7006                 nonzero >>= INTVAL (XEXP (x, 1))
7007                             + HOST_BITS_PER_WIDE_INT
7008                             - GET_MODE_BITSIZE (GET_MODE (x)) ;
7009             }
7010           else
7011             {
7012               nonzero = GET_MODE_MASK (GET_MODE (x));
7013               nonzero >>= INTVAL (XEXP (x, 1));
7014             }
7015
7016           if ((mask & ~nonzero) == 0
7017               || (i = exact_log2 (mask)) >= 0)
7018             {
7019               x = simplify_shift_const
7020                 (x, LSHIFTRT, GET_MODE (x), XEXP (x, 0),
7021                  i < 0 ? INTVAL (XEXP (x, 1))
7022                  : GET_MODE_BITSIZE (GET_MODE (x)) - 1 - i);
7023
7024               if (GET_CODE (x) != ASHIFTRT)
7025                 return force_to_mode (x, mode, mask, reg, next_select);
7026             }
7027         }
7028
7029       /* If MASK is 1, convert this to a LSHIFTRT.  This can be done
7030          even if the shift count isn't a constant.  */
7031       if (mask == 1)
7032         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0), XEXP (x, 1));
7033
7034     shiftrt:
7035
7036       /* If this is a zero- or sign-extension operation that just affects bits
7037          we don't care about, remove it.  Be sure the call above returned
7038          something that is still a shift.  */
7039
7040       if ((GET_CODE (x) == LSHIFTRT || GET_CODE (x) == ASHIFTRT)
7041           && GET_CODE (XEXP (x, 1)) == CONST_INT
7042           && INTVAL (XEXP (x, 1)) >= 0
7043           && (INTVAL (XEXP (x, 1))
7044               <= GET_MODE_BITSIZE (GET_MODE (x)) - (floor_log2 (mask) + 1))
7045           && GET_CODE (XEXP (x, 0)) == ASHIFT
7046           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7047           && INTVAL (XEXP (XEXP (x, 0), 1)) == INTVAL (XEXP (x, 1)))
7048         return force_to_mode (XEXP (XEXP (x, 0), 0), mode, mask,
7049                               reg, next_select);
7050
7051       break;
7052
7053     case ROTATE:
7054     case ROTATERT:
7055       /* If the shift count is constant and we can do computations
7056          in the mode of X, compute where the bits we care about are.
7057          Otherwise, we can't do anything.  Don't change the mode of
7058          the shift or propagate MODE into the shift, though.  */
7059       if (GET_CODE (XEXP (x, 1)) == CONST_INT
7060           && INTVAL (XEXP (x, 1)) >= 0)
7061         {
7062           temp = simplify_binary_operation (code == ROTATE ? ROTATERT : ROTATE,
7063                                             GET_MODE (x), GEN_INT (mask),
7064                                             XEXP (x, 1));
7065           if (temp && GET_CODE(temp) == CONST_INT)
7066             SUBST (XEXP (x, 0),
7067                    force_to_mode (XEXP (x, 0), GET_MODE (x),
7068                                   INTVAL (temp), reg, next_select));
7069         }
7070       break;
7071
7072     case NEG:
7073       /* If we just want the low-order bit, the NEG isn't needed since it
7074          won't change the low-order bit.    */
7075       if (mask == 1)
7076         return force_to_mode (XEXP (x, 0), mode, mask, reg, just_select);
7077
7078       /* We need any bits less significant than the most significant bit in
7079          MASK since carries from those bits will affect the bits we are
7080          interested in.  */
7081       mask = fuller_mask;
7082       goto unop;
7083
7084     case NOT:
7085       /* (not FOO) is (xor FOO CONST), so if FOO is an LSHIFTRT, we can do the
7086          same as the XOR case above.  Ensure that the constant we form is not
7087          wider than the mode of X.  */
7088
7089       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
7090           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7091           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
7092           && (INTVAL (XEXP (XEXP (x, 0), 1)) + floor_log2 (mask)
7093               < GET_MODE_BITSIZE (GET_MODE (x)))
7094           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT)
7095         {
7096           temp = GEN_INT (mask << INTVAL (XEXP (XEXP (x, 0), 1)));
7097           temp = gen_binary (XOR, GET_MODE (x), XEXP (XEXP (x, 0), 0), temp);
7098           x = gen_binary (LSHIFTRT, GET_MODE (x), temp, XEXP (XEXP (x, 0), 1));
7099
7100           return force_to_mode (x, mode, mask, reg, next_select);
7101         }
7102
7103       /* (and (not FOO) CONST) is (not (or FOO (not CONST))), so we must
7104          use the full mask inside the NOT.  */
7105       mask = fuller_mask;
7106
7107     unop:
7108       op0 = gen_lowpart_for_combine (op_mode,
7109                                      force_to_mode (XEXP (x, 0), mode, mask,
7110                                                     reg, next_select));
7111       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
7112         x = simplify_gen_unary (code, op_mode, op0, op_mode);
7113       break;
7114
7115     case NE:
7116       /* (and (ne FOO 0) CONST) can be (and FOO CONST) if CONST is included
7117          in STORE_FLAG_VALUE and FOO has a single bit that might be nonzero,
7118          which is equal to STORE_FLAG_VALUE.  */
7119       if ((mask & ~STORE_FLAG_VALUE) == 0 && XEXP (x, 1) == const0_rtx
7120           && exact_log2 (nonzero_bits (XEXP (x, 0), mode)) >= 0
7121           && nonzero_bits (XEXP (x, 0), mode) == STORE_FLAG_VALUE)
7122         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
7123
7124       break;
7125
7126     case IF_THEN_ELSE:
7127       /* We have no way of knowing if the IF_THEN_ELSE can itself be
7128          written in a narrower mode.  We play it safe and do not do so.  */
7129
7130       SUBST (XEXP (x, 1),
7131              gen_lowpart_for_combine (GET_MODE (x),
7132                                       force_to_mode (XEXP (x, 1), mode,
7133                                                      mask, reg, next_select)));
7134       SUBST (XEXP (x, 2),
7135              gen_lowpart_for_combine (GET_MODE (x),
7136                                       force_to_mode (XEXP (x, 2), mode,
7137                                                      mask, reg,next_select)));
7138       break;
7139
7140     default:
7141       break;
7142     }
7143
7144   /* Ensure we return a value of the proper mode.  */
7145   return gen_lowpart_for_combine (mode, x);
7146 }
7147 \f
7148 /* Return nonzero if X is an expression that has one of two values depending on
7149    whether some other value is zero or nonzero.  In that case, we return the
7150    value that is being tested, *PTRUE is set to the value if the rtx being
7151    returned has a nonzero value, and *PFALSE is set to the other alternative.
7152
7153    If we return zero, we set *PTRUE and *PFALSE to X.  */
7154
7155 static rtx
7156 if_then_else_cond (x, ptrue, pfalse)
7157      rtx x;
7158      rtx *ptrue, *pfalse;
7159 {
7160   enum machine_mode mode = GET_MODE (x);
7161   enum rtx_code code = GET_CODE (x);
7162   rtx cond0, cond1, true0, true1, false0, false1;
7163   unsigned HOST_WIDE_INT nz;
7164
7165   /* If we are comparing a value against zero, we are done.  */
7166   if ((code == NE || code == EQ)
7167       && GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
7168     {
7169       *ptrue = (code == NE) ? const_true_rtx : const0_rtx;
7170       *pfalse = (code == NE) ? const0_rtx : const_true_rtx;
7171       return XEXP (x, 0);
7172     }
7173
7174   /* If this is a unary operation whose operand has one of two values, apply
7175      our opcode to compute those values.  */
7176   else if (GET_RTX_CLASS (code) == '1'
7177            && (cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0)) != 0)
7178     {
7179       *ptrue = simplify_gen_unary (code, mode, true0, GET_MODE (XEXP (x, 0)));
7180       *pfalse = simplify_gen_unary (code, mode, false0,
7181                                     GET_MODE (XEXP (x, 0)));
7182       return cond0;
7183     }
7184
7185   /* If this is a COMPARE, do nothing, since the IF_THEN_ELSE we would
7186      make can't possibly match and would suppress other optimizations.  */
7187   else if (code == COMPARE)
7188     ;
7189
7190   /* If this is a binary operation, see if either side has only one of two
7191      values.  If either one does or if both do and they are conditional on
7192      the same value, compute the new true and false values.  */
7193   else if (GET_RTX_CLASS (code) == 'c' || GET_RTX_CLASS (code) == '2'
7194            || GET_RTX_CLASS (code) == '<')
7195     {
7196       cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0);
7197       cond1 = if_then_else_cond (XEXP (x, 1), &true1, &false1);
7198
7199       if ((cond0 != 0 || cond1 != 0)
7200           && ! (cond0 != 0 && cond1 != 0 && ! rtx_equal_p (cond0, cond1)))
7201         {
7202           /* If if_then_else_cond returned zero, then true/false are the
7203              same rtl.  We must copy one of them to prevent invalid rtl
7204              sharing.  */
7205           if (cond0 == 0)
7206             true0 = copy_rtx (true0);
7207           else if (cond1 == 0)
7208             true1 = copy_rtx (true1);
7209
7210           *ptrue = gen_binary (code, mode, true0, true1);
7211           *pfalse = gen_binary (code, mode, false0, false1);
7212           return cond0 ? cond0 : cond1;
7213         }
7214
7215       /* See if we have PLUS, IOR, XOR, MINUS or UMAX, where one of the
7216          operands is zero when the other is non-zero, and vice-versa,
7217          and STORE_FLAG_VALUE is 1 or -1.  */
7218
7219       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7220           && (code == PLUS || code == IOR || code == XOR || code == MINUS
7221               || code == UMAX)
7222           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7223         {
7224           rtx op0 = XEXP (XEXP (x, 0), 1);
7225           rtx op1 = XEXP (XEXP (x, 1), 1);
7226
7227           cond0 = XEXP (XEXP (x, 0), 0);
7228           cond1 = XEXP (XEXP (x, 1), 0);
7229
7230           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7231               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7232               && ((GET_CODE (cond0) == combine_reversed_comparison_code (cond1)
7233                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7234                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7235                   || ((swap_condition (GET_CODE (cond0))
7236                        == combine_reversed_comparison_code (cond1))
7237                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7238                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7239               && ! side_effects_p (x))
7240             {
7241               *ptrue = gen_binary (MULT, mode, op0, const_true_rtx);
7242               *pfalse = gen_binary (MULT, mode,
7243                                     (code == MINUS
7244                                      ? simplify_gen_unary (NEG, mode, op1,
7245                                                            mode)
7246                                      : op1),
7247                                     const_true_rtx);
7248               return cond0;
7249             }
7250         }
7251
7252       /* Similarly for MULT, AND and UMIN, execpt that for these the result
7253          is always zero.  */
7254       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7255           && (code == MULT || code == AND || code == UMIN)
7256           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7257         {
7258           cond0 = XEXP (XEXP (x, 0), 0);
7259           cond1 = XEXP (XEXP (x, 1), 0);
7260
7261           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7262               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7263               && ((GET_CODE (cond0) == combine_reversed_comparison_code (cond1)
7264                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7265                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7266                   || ((swap_condition (GET_CODE (cond0))
7267                        == combine_reversed_comparison_code (cond1))
7268                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7269                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7270               && ! side_effects_p (x))
7271             {
7272               *ptrue = *pfalse = const0_rtx;
7273               return cond0;
7274             }
7275         }
7276     }
7277
7278   else if (code == IF_THEN_ELSE)
7279     {
7280       /* If we have IF_THEN_ELSE already, extract the condition and
7281          canonicalize it if it is NE or EQ.  */
7282       cond0 = XEXP (x, 0);
7283       *ptrue = XEXP (x, 1), *pfalse = XEXP (x, 2);
7284       if (GET_CODE (cond0) == NE && XEXP (cond0, 1) == const0_rtx)
7285         return XEXP (cond0, 0);
7286       else if (GET_CODE (cond0) == EQ && XEXP (cond0, 1) == const0_rtx)
7287         {
7288           *ptrue = XEXP (x, 2), *pfalse = XEXP (x, 1);
7289           return XEXP (cond0, 0);
7290         }
7291       else
7292         return cond0;
7293     }
7294
7295   /* If X is a SUBREG, we can narrow both the true and false values
7296      if the inner expression, if there is a condition.  */
7297   else if (code == SUBREG
7298            && 0 != (cond0 = if_then_else_cond (SUBREG_REG (x),
7299                                                &true0, &false0)))
7300     {
7301       *ptrue = simplify_gen_subreg (mode, true0,
7302                                     GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
7303       *pfalse = simplify_gen_subreg (mode, false0,
7304                                      GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
7305
7306       return cond0;
7307     }
7308
7309   /* If X is a constant, this isn't special and will cause confusions
7310      if we treat it as such.  Likewise if it is equivalent to a constant.  */
7311   else if (CONSTANT_P (x)
7312            || ((cond0 = get_last_value (x)) != 0 && CONSTANT_P (cond0)))
7313     ;
7314
7315   /* If we're in BImode, canonicalize on 0 and STORE_FLAG_VALUE, as that
7316      will be least confusing to the rest of the compiler.  */
7317   else if (mode == BImode)
7318     {
7319       *ptrue = GEN_INT (STORE_FLAG_VALUE), *pfalse = const0_rtx;
7320       return x;
7321     }
7322
7323   /* If X is known to be either 0 or -1, those are the true and
7324      false values when testing X.  */
7325   else if (x == constm1_rtx || x == const0_rtx
7326            || (mode != VOIDmode
7327                && num_sign_bit_copies (x, mode) == GET_MODE_BITSIZE (mode)))
7328     {
7329       *ptrue = constm1_rtx, *pfalse = const0_rtx;
7330       return x;
7331     }
7332
7333   /* Likewise for 0 or a single bit.  */
7334   else if (mode != VOIDmode
7335            && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
7336            && exact_log2 (nz = nonzero_bits (x, mode)) >= 0)
7337     {
7338       *ptrue = GEN_INT (nz), *pfalse = const0_rtx;
7339       return x;
7340     }
7341
7342   /* Otherwise fail; show no condition with true and false values the same.  */
7343   *ptrue = *pfalse = x;
7344   return 0;
7345 }
7346 \f
7347 /* Return the value of expression X given the fact that condition COND
7348    is known to be true when applied to REG as its first operand and VAL
7349    as its second.  X is known to not be shared and so can be modified in
7350    place.
7351
7352    We only handle the simplest cases, and specifically those cases that
7353    arise with IF_THEN_ELSE expressions.  */
7354
7355 static rtx
7356 known_cond (x, cond, reg, val)
7357      rtx x;
7358      enum rtx_code cond;
7359      rtx reg, val;
7360 {
7361   enum rtx_code code = GET_CODE (x);
7362   rtx temp;
7363   const char *fmt;
7364   int i, j;
7365
7366   if (side_effects_p (x))
7367     return x;
7368
7369   if (cond == EQ && rtx_equal_p (x, reg) && !FLOAT_MODE_P (cond))
7370     return val;
7371   if (cond == UNEQ && rtx_equal_p (x, reg))
7372     return val;
7373
7374   /* If X is (abs REG) and we know something about REG's relationship
7375      with zero, we may be able to simplify this.  */
7376
7377   if (code == ABS && rtx_equal_p (XEXP (x, 0), reg) && val == const0_rtx)
7378     switch (cond)
7379       {
7380       case GE:  case GT:  case EQ:
7381         return XEXP (x, 0);
7382       case LT:  case LE:
7383         return simplify_gen_unary (NEG, GET_MODE (XEXP (x, 0)),
7384                                    XEXP (x, 0),
7385                                    GET_MODE (XEXP (x, 0)));
7386       default:
7387         break;
7388       }
7389
7390   /* The only other cases we handle are MIN, MAX, and comparisons if the
7391      operands are the same as REG and VAL.  */
7392
7393   else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == 'c')
7394     {
7395       if (rtx_equal_p (XEXP (x, 0), val))
7396         cond = swap_condition (cond), temp = val, val = reg, reg = temp;
7397
7398       if (rtx_equal_p (XEXP (x, 0), reg) && rtx_equal_p (XEXP (x, 1), val))
7399         {
7400           if (GET_RTX_CLASS (code) == '<')
7401             {
7402               if (comparison_dominates_p (cond, code))
7403                 return const_true_rtx;
7404
7405               code = combine_reversed_comparison_code (x);
7406               if (code != UNKNOWN
7407                   && comparison_dominates_p (cond, code))
7408                 return const0_rtx;
7409               else
7410                 return x;
7411             }
7412           else if (code == SMAX || code == SMIN
7413                    || code == UMIN || code == UMAX)
7414             {
7415               int unsignedp = (code == UMIN || code == UMAX);
7416
7417               /* Do not reverse the condition when it is NE or EQ.
7418                  This is because we cannot conclude anything about
7419                  the value of 'SMAX (x, y)' when x is not equal to y,
7420                  but we can when x equals y.  */ 
7421               if ((code == SMAX || code == UMAX)
7422                   && ! (cond == EQ || cond == NE))
7423                 cond = reverse_condition (cond);
7424
7425               switch (cond)
7426                 {
7427                 case GE:   case GT:
7428                   return unsignedp ? x : XEXP (x, 1);
7429                 case LE:   case LT:
7430                   return unsignedp ? x : XEXP (x, 0);
7431                 case GEU:  case GTU:
7432                   return unsignedp ? XEXP (x, 1) : x;
7433                 case LEU:  case LTU:
7434                   return unsignedp ? XEXP (x, 0) : x;
7435                 default:
7436                   break;
7437                 }
7438             }
7439         }
7440     }
7441
7442   fmt = GET_RTX_FORMAT (code);
7443   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7444     {
7445       if (fmt[i] == 'e')
7446         SUBST (XEXP (x, i), known_cond (XEXP (x, i), cond, reg, val));
7447       else if (fmt[i] == 'E')
7448         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
7449           SUBST (XVECEXP (x, i, j), known_cond (XVECEXP (x, i, j),
7450                                                 cond, reg, val));
7451     }
7452
7453   return x;
7454 }
7455 \f
7456 /* See if X and Y are equal for the purposes of seeing if we can rewrite an
7457    assignment as a field assignment.  */
7458
7459 static int
7460 rtx_equal_for_field_assignment_p (x, y)
7461      rtx x;
7462      rtx y;
7463 {
7464   if (x == y || rtx_equal_p (x, y))
7465     return 1;
7466
7467   if (x == 0 || y == 0 || GET_MODE (x) != GET_MODE (y))
7468     return 0;
7469
7470   /* Check for a paradoxical SUBREG of a MEM compared with the MEM.
7471      Note that all SUBREGs of MEM are paradoxical; otherwise they
7472      would have been rewritten.  */
7473   if (GET_CODE (x) == MEM && GET_CODE (y) == SUBREG
7474       && GET_CODE (SUBREG_REG (y)) == MEM
7475       && rtx_equal_p (SUBREG_REG (y),
7476                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (y)), x)))
7477     return 1;
7478
7479   if (GET_CODE (y) == MEM && GET_CODE (x) == SUBREG
7480       && GET_CODE (SUBREG_REG (x)) == MEM
7481       && rtx_equal_p (SUBREG_REG (x),
7482                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (x)), y)))
7483     return 1;
7484
7485   /* We used to see if get_last_value of X and Y were the same but that's
7486      not correct.  In one direction, we'll cause the assignment to have
7487      the wrong destination and in the case, we'll import a register into this
7488      insn that might have already have been dead.   So fail if none of the
7489      above cases are true.  */
7490   return 0;
7491 }
7492 \f
7493 /* See if X, a SET operation, can be rewritten as a bit-field assignment.
7494    Return that assignment if so.
7495
7496    We only handle the most common cases.  */
7497
7498 static rtx
7499 make_field_assignment (x)
7500      rtx x;
7501 {
7502   rtx dest = SET_DEST (x);
7503   rtx src = SET_SRC (x);
7504   rtx assign;
7505   rtx rhs, lhs;
7506   HOST_WIDE_INT c1;
7507   HOST_WIDE_INT pos;
7508   unsigned HOST_WIDE_INT len;
7509   rtx other;
7510   enum machine_mode mode;
7511
7512   /* If SRC was (and (not (ashift (const_int 1) POS)) DEST), this is
7513      a clear of a one-bit field.  We will have changed it to
7514      (and (rotate (const_int -2) POS) DEST), so check for that.  Also check
7515      for a SUBREG.  */
7516
7517   if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == ROTATE
7518       && GET_CODE (XEXP (XEXP (src, 0), 0)) == CONST_INT
7519       && INTVAL (XEXP (XEXP (src, 0), 0)) == -2
7520       && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7521     {
7522       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7523                                 1, 1, 1, 0);
7524       if (assign != 0)
7525         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7526       return x;
7527     }
7528
7529   else if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == SUBREG
7530            && subreg_lowpart_p (XEXP (src, 0))
7531            && (GET_MODE_SIZE (GET_MODE (XEXP (src, 0)))
7532                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (src, 0)))))
7533            && GET_CODE (SUBREG_REG (XEXP (src, 0))) == ROTATE
7534            && INTVAL (XEXP (SUBREG_REG (XEXP (src, 0)), 0)) == -2
7535            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7536     {
7537       assign = make_extraction (VOIDmode, dest, 0,
7538                                 XEXP (SUBREG_REG (XEXP (src, 0)), 1),
7539                                 1, 1, 1, 0);
7540       if (assign != 0)
7541         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7542       return x;
7543     }
7544
7545   /* If SRC is (ior (ashift (const_int 1) POS) DEST), this is a set of a
7546      one-bit field.  */
7547   else if (GET_CODE (src) == IOR && GET_CODE (XEXP (src, 0)) == ASHIFT
7548            && XEXP (XEXP (src, 0), 0) == const1_rtx
7549            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7550     {
7551       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7552                                 1, 1, 1, 0);
7553       if (assign != 0)
7554         return gen_rtx_SET (VOIDmode, assign, const1_rtx);
7555       return x;
7556     }
7557
7558   /* The other case we handle is assignments into a constant-position
7559      field.  They look like (ior/xor (and DEST C1) OTHER).  If C1 represents
7560      a mask that has all one bits except for a group of zero bits and
7561      OTHER is known to have zeros where C1 has ones, this is such an
7562      assignment.  Compute the position and length from C1.  Shift OTHER
7563      to the appropriate position, force it to the required mode, and
7564      make the extraction.  Check for the AND in both operands.  */
7565
7566   if (GET_CODE (src) != IOR && GET_CODE (src) != XOR)
7567     return x;
7568
7569   rhs = expand_compound_operation (XEXP (src, 0));
7570   lhs = expand_compound_operation (XEXP (src, 1));
7571
7572   if (GET_CODE (rhs) == AND
7573       && GET_CODE (XEXP (rhs, 1)) == CONST_INT
7574       && rtx_equal_for_field_assignment_p (XEXP (rhs, 0), dest))
7575     c1 = INTVAL (XEXP (rhs, 1)), other = lhs;
7576   else if (GET_CODE (lhs) == AND
7577            && GET_CODE (XEXP (lhs, 1)) == CONST_INT
7578            && rtx_equal_for_field_assignment_p (XEXP (lhs, 0), dest))
7579     c1 = INTVAL (XEXP (lhs, 1)), other = rhs;
7580   else
7581     return x;
7582
7583   pos = get_pos_from_mask ((~c1) & GET_MODE_MASK (GET_MODE (dest)), &len);
7584   if (pos < 0 || pos + len > GET_MODE_BITSIZE (GET_MODE (dest))
7585       || GET_MODE_BITSIZE (GET_MODE (dest)) > HOST_BITS_PER_WIDE_INT
7586       || (c1 & nonzero_bits (other, GET_MODE (dest))) != 0)
7587     return x;
7588
7589   assign = make_extraction (VOIDmode, dest, pos, NULL_RTX, len, 1, 1, 0);
7590   if (assign == 0)
7591     return x;
7592
7593   /* The mode to use for the source is the mode of the assignment, or of
7594      what is inside a possible STRICT_LOW_PART.  */
7595   mode = (GET_CODE (assign) == STRICT_LOW_PART
7596           ? GET_MODE (XEXP (assign, 0)) : GET_MODE (assign));
7597
7598   /* Shift OTHER right POS places and make it the source, restricting it
7599      to the proper length and mode.  */
7600
7601   src = force_to_mode (simplify_shift_const (NULL_RTX, LSHIFTRT,
7602                                              GET_MODE (src), other, pos),
7603                        mode,
7604                        GET_MODE_BITSIZE (mode) >= HOST_BITS_PER_WIDE_INT
7605                        ? ~(unsigned HOST_WIDE_INT) 0
7606                        : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
7607                        dest, 0);
7608
7609   return gen_rtx_SET (VOIDmode, assign, src);
7610 }
7611 \f
7612 /* See if X is of the form (+ (* a c) (* b c)) and convert to (* (+ a b) c)
7613    if so.  */
7614
7615 static rtx
7616 apply_distributive_law (x)
7617      rtx x;
7618 {
7619   enum rtx_code code = GET_CODE (x);
7620   rtx lhs, rhs, other;
7621   rtx tem;
7622   enum rtx_code inner_code;
7623
7624   /* Distributivity is not true for floating point.
7625      It can change the value.  So don't do it.
7626      -- rms and moshier@world.std.com.  */
7627   if (FLOAT_MODE_P (GET_MODE (x)))
7628     return x;
7629
7630   /* The outer operation can only be one of the following:  */
7631   if (code != IOR && code != AND && code != XOR
7632       && code != PLUS && code != MINUS)
7633     return x;
7634
7635   lhs = XEXP (x, 0), rhs = XEXP (x, 1);
7636
7637   /* If either operand is a primitive we can't do anything, so get out
7638      fast.  */
7639   if (GET_RTX_CLASS (GET_CODE (lhs)) == 'o'
7640       || GET_RTX_CLASS (GET_CODE (rhs)) == 'o')
7641     return x;
7642
7643   lhs = expand_compound_operation (lhs);
7644   rhs = expand_compound_operation (rhs);
7645   inner_code = GET_CODE (lhs);
7646   if (inner_code != GET_CODE (rhs))
7647     return x;
7648
7649   /* See if the inner and outer operations distribute.  */
7650   switch (inner_code)
7651     {
7652     case LSHIFTRT:
7653     case ASHIFTRT:
7654     case AND:
7655     case IOR:
7656       /* These all distribute except over PLUS.  */
7657       if (code == PLUS || code == MINUS)
7658         return x;
7659       break;
7660
7661     case MULT:
7662       if (code != PLUS && code != MINUS)
7663         return x;
7664       break;
7665
7666     case ASHIFT:
7667       /* This is also a multiply, so it distributes over everything.  */
7668       break;
7669
7670     case SUBREG:
7671       /* Non-paradoxical SUBREGs distributes over all operations, provided
7672          the inner modes and byte offsets are the same, this is an extraction
7673          of a low-order part, we don't convert an fp operation to int or
7674          vice versa, and we would not be converting a single-word
7675          operation into a multi-word operation.  The latter test is not
7676          required, but it prevents generating unneeded multi-word operations.
7677          Some of the previous tests are redundant given the latter test, but
7678          are retained because they are required for correctness.
7679
7680          We produce the result slightly differently in this case.  */
7681
7682       if (GET_MODE (SUBREG_REG (lhs)) != GET_MODE (SUBREG_REG (rhs))
7683           || SUBREG_BYTE (lhs) != SUBREG_BYTE (rhs)
7684           || ! subreg_lowpart_p (lhs)
7685           || (GET_MODE_CLASS (GET_MODE (lhs))
7686               != GET_MODE_CLASS (GET_MODE (SUBREG_REG (lhs))))
7687           || (GET_MODE_SIZE (GET_MODE (lhs))
7688               > GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))))
7689           || GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))) > UNITS_PER_WORD)
7690         return x;
7691
7692       tem = gen_binary (code, GET_MODE (SUBREG_REG (lhs)),
7693                         SUBREG_REG (lhs), SUBREG_REG (rhs));
7694       return gen_lowpart_for_combine (GET_MODE (x), tem);
7695
7696     default:
7697       return x;
7698     }
7699
7700   /* Set LHS and RHS to the inner operands (A and B in the example
7701      above) and set OTHER to the common operand (C in the example).
7702      These is only one way to do this unless the inner operation is
7703      commutative.  */
7704   if (GET_RTX_CLASS (inner_code) == 'c'
7705       && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 0)))
7706     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 1);
7707   else if (GET_RTX_CLASS (inner_code) == 'c'
7708            && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 1)))
7709     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 0);
7710   else if (GET_RTX_CLASS (inner_code) == 'c'
7711            && rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 0)))
7712     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 1);
7713   else if (rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 1)))
7714     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 0);
7715   else
7716     return x;
7717
7718   /* Form the new inner operation, seeing if it simplifies first.  */
7719   tem = gen_binary (code, GET_MODE (x), lhs, rhs);
7720
7721   /* There is one exception to the general way of distributing:
7722      (a ^ b) | (a ^ c) -> (~a) & (b ^ c)  */
7723   if (code == XOR && inner_code == IOR)
7724     {
7725       inner_code = AND;
7726       other = simplify_gen_unary (NOT, GET_MODE (x), other, GET_MODE (x));
7727     }
7728
7729   /* We may be able to continuing distributing the result, so call
7730      ourselves recursively on the inner operation before forming the
7731      outer operation, which we return.  */
7732   return gen_binary (inner_code, GET_MODE (x),
7733                      apply_distributive_law (tem), other);
7734 }
7735 \f
7736 /* We have X, a logical `and' of VAROP with the constant CONSTOP, to be done
7737    in MODE.
7738
7739    Return an equivalent form, if different from X.  Otherwise, return X.  If
7740    X is zero, we are to always construct the equivalent form.  */
7741
7742 static rtx
7743 simplify_and_const_int (x, mode, varop, constop)
7744      rtx x;
7745      enum machine_mode mode;
7746      rtx varop;
7747      unsigned HOST_WIDE_INT constop;
7748 {
7749   unsigned HOST_WIDE_INT nonzero;
7750   int i;
7751
7752   /* Simplify VAROP knowing that we will be only looking at some of the
7753      bits in it.  */
7754   varop = force_to_mode (varop, mode, constop, NULL_RTX, 0);
7755
7756   /* If VAROP is a CLOBBER, we will fail so return it; if it is a
7757      CONST_INT, we are done.  */
7758   if (GET_CODE (varop) == CLOBBER || GET_CODE (varop) == CONST_INT)
7759     return varop;
7760
7761   /* See what bits may be nonzero in VAROP.  Unlike the general case of
7762      a call to nonzero_bits, here we don't care about bits outside
7763      MODE.  */
7764
7765   nonzero = nonzero_bits (varop, mode) & GET_MODE_MASK (mode);
7766   nonzero = trunc_int_for_mode (nonzero, mode);
7767
7768   /* Turn off all bits in the constant that are known to already be zero.
7769      Thus, if the AND isn't needed at all, we will have CONSTOP == NONZERO_BITS
7770      which is tested below.  */
7771
7772   constop &= nonzero;
7773
7774   /* If we don't have any bits left, return zero.  */
7775   if (constop == 0)
7776     return const0_rtx;
7777
7778   /* If VAROP is a NEG of something known to be zero or 1 and CONSTOP is
7779      a power of two, we can replace this with a ASHIFT.  */
7780   if (GET_CODE (varop) == NEG && nonzero_bits (XEXP (varop, 0), mode) == 1
7781       && (i = exact_log2 (constop)) >= 0)
7782     return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (varop, 0), i);
7783
7784   /* If VAROP is an IOR or XOR, apply the AND to both branches of the IOR
7785      or XOR, then try to apply the distributive law.  This may eliminate
7786      operations if either branch can be simplified because of the AND.
7787      It may also make some cases more complex, but those cases probably
7788      won't match a pattern either with or without this.  */
7789
7790   if (GET_CODE (varop) == IOR || GET_CODE (varop) == XOR)
7791     return
7792       gen_lowpart_for_combine
7793         (mode,
7794          apply_distributive_law
7795          (gen_binary (GET_CODE (varop), GET_MODE (varop),
7796                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7797                                               XEXP (varop, 0), constop),
7798                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7799                                               XEXP (varop, 1), constop))));
7800
7801   /* Get VAROP in MODE.  Try to get a SUBREG if not.  Don't make a new SUBREG
7802      if we already had one (just check for the simplest cases).  */
7803   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
7804       && GET_MODE (XEXP (x, 0)) == mode
7805       && SUBREG_REG (XEXP (x, 0)) == varop)
7806     varop = XEXP (x, 0);
7807   else
7808     varop = gen_lowpart_for_combine (mode, varop);
7809
7810   /* If we can't make the SUBREG, try to return what we were given.  */
7811   if (GET_CODE (varop) == CLOBBER)
7812     return x ? x : varop;
7813
7814   /* If we are only masking insignificant bits, return VAROP.  */
7815   if (constop == nonzero)
7816     x = varop;
7817
7818   /* Otherwise, return an AND.  See how much, if any, of X we can use.  */
7819   else if (x == 0 || GET_CODE (x) != AND || GET_MODE (x) != mode)
7820     x = gen_binary (AND, mode, varop, GEN_INT (constop));
7821
7822   else
7823     {
7824       if (GET_CODE (XEXP (x, 1)) != CONST_INT
7825           || (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) != constop)
7826         SUBST (XEXP (x, 1), GEN_INT (constop));
7827
7828       SUBST (XEXP (x, 0), varop);
7829     }
7830
7831   return x;
7832 }
7833 \f
7834 /* We let num_sign_bit_copies recur into nonzero_bits as that is useful.
7835    We don't let nonzero_bits recur into num_sign_bit_copies, because that
7836    is less useful.  We can't allow both, because that results in exponential
7837    run time recursion.  There is a nullstone testcase that triggered
7838    this.  This macro avoids accidental uses of num_sign_bit_copies.  */
7839 #define num_sign_bit_copies()
7840
7841 /* Given an expression, X, compute which bits in X can be non-zero.
7842    We don't care about bits outside of those defined in MODE.
7843
7844    For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
7845    a shift, AND, or zero_extract, we can do better.  */
7846
7847 static unsigned HOST_WIDE_INT
7848 nonzero_bits (x, mode)
7849      rtx x;
7850      enum machine_mode mode;
7851 {
7852   unsigned HOST_WIDE_INT nonzero = GET_MODE_MASK (mode);
7853   unsigned HOST_WIDE_INT inner_nz;
7854   enum rtx_code code;
7855   unsigned int mode_width = GET_MODE_BITSIZE (mode);
7856   rtx tem;
7857
7858   /* For floating-point values, assume all bits are needed.  */
7859   if (FLOAT_MODE_P (GET_MODE (x)) || FLOAT_MODE_P (mode))
7860     return nonzero;
7861
7862   /* If X is wider than MODE, use its mode instead.  */
7863   if (GET_MODE_BITSIZE (GET_MODE (x)) > mode_width)
7864     {
7865       mode = GET_MODE (x);
7866       nonzero = GET_MODE_MASK (mode);
7867       mode_width = GET_MODE_BITSIZE (mode);
7868     }
7869
7870   if (mode_width > HOST_BITS_PER_WIDE_INT)
7871     /* Our only callers in this case look for single bit values.  So
7872        just return the mode mask.  Those tests will then be false.  */
7873     return nonzero;
7874
7875 #ifndef WORD_REGISTER_OPERATIONS
7876   /* If MODE is wider than X, but both are a single word for both the host
7877      and target machines, we can compute this from which bits of the
7878      object might be nonzero in its own mode, taking into account the fact
7879      that on many CISC machines, accessing an object in a wider mode
7880      causes the high-order bits to become undefined.  So they are
7881      not known to be zero.  */
7882
7883   if (GET_MODE (x) != VOIDmode && GET_MODE (x) != mode
7884       && GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD
7885       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
7886       && GET_MODE_BITSIZE (mode) > GET_MODE_BITSIZE (GET_MODE (x)))
7887     {
7888       nonzero &= nonzero_bits (x, GET_MODE (x));
7889       nonzero |= GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x));
7890       return nonzero;
7891     }
7892 #endif
7893
7894   code = GET_CODE (x);
7895   switch (code)
7896     {
7897     case REG:
7898 #ifdef POINTERS_EXTEND_UNSIGNED
7899       /* If pointers extend unsigned and this is a pointer in Pmode, say that
7900          all the bits above ptr_mode are known to be zero.  */
7901       if (POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
7902           && REG_POINTER (x))
7903         nonzero &= GET_MODE_MASK (ptr_mode);
7904 #endif
7905
7906 #ifdef STACK_BOUNDARY
7907       /* If this is the stack pointer, we may know something about its
7908          alignment.  If PUSH_ROUNDING is defined, it is possible for the
7909          stack to be momentarily aligned only to that amount, so we pick
7910          the least alignment.  */
7911
7912       /* We can't check for arg_pointer_rtx here, because it is not
7913          guaranteed to have as much alignment as the stack pointer.
7914          In particular, in the Irix6 n64 ABI, the stack has 128 bit
7915          alignment but the argument pointer has only 64 bit alignment.  */
7916
7917       if ((x == frame_pointer_rtx
7918            || x == stack_pointer_rtx
7919            || x == hard_frame_pointer_rtx
7920            || (REGNO (x) >= FIRST_VIRTUAL_REGISTER
7921                && REGNO (x) <= LAST_VIRTUAL_REGISTER))
7922 #ifdef STACK_BIAS
7923           && !STACK_BIAS
7924 #endif
7925               )
7926         {
7927           int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
7928
7929 #ifdef PUSH_ROUNDING
7930           if (REGNO (x) == STACK_POINTER_REGNUM && PUSH_ARGS)
7931             sp_alignment = MIN (PUSH_ROUNDING (1), sp_alignment);
7932 #endif
7933
7934           /* We must return here, otherwise we may get a worse result from
7935              one of the choices below.  There is nothing useful below as
7936              far as the stack pointer is concerned.  */
7937           return nonzero &= ~(sp_alignment - 1);
7938         }
7939 #endif
7940
7941       /* If X is a register whose nonzero bits value is current, use it.
7942          Otherwise, if X is a register whose value we can find, use that
7943          value.  Otherwise, use the previously-computed global nonzero bits
7944          for this register.  */
7945
7946       if (reg_last_set_value[REGNO (x)] != 0
7947           && reg_last_set_mode[REGNO (x)] == mode
7948           && (reg_last_set_label[REGNO (x)] == label_tick
7949               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
7950                   && REG_N_SETS (REGNO (x)) == 1
7951                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start,
7952                                         REGNO (x))))
7953           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
7954         return reg_last_set_nonzero_bits[REGNO (x)];
7955
7956       tem = get_last_value (x);
7957
7958       if (tem)
7959         {
7960 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
7961           /* If X is narrower than MODE and TEM is a non-negative
7962              constant that would appear negative in the mode of X,
7963              sign-extend it for use in reg_nonzero_bits because some
7964              machines (maybe most) will actually do the sign-extension
7965              and this is the conservative approach.
7966
7967              ??? For 2.5, try to tighten up the MD files in this regard
7968              instead of this kludge.  */
7969
7970           if (GET_MODE_BITSIZE (GET_MODE (x)) < mode_width
7971               && GET_CODE (tem) == CONST_INT
7972               && INTVAL (tem) > 0
7973               && 0 != (INTVAL (tem)
7974                        & ((HOST_WIDE_INT) 1
7975                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
7976             tem = GEN_INT (INTVAL (tem)
7977                            | ((HOST_WIDE_INT) (-1)
7978                               << GET_MODE_BITSIZE (GET_MODE (x))));
7979 #endif
7980           return nonzero_bits (tem, mode);
7981         }
7982       else if (nonzero_sign_valid && reg_nonzero_bits[REGNO (x)])
7983         return reg_nonzero_bits[REGNO (x)] & nonzero;
7984       else
7985         return nonzero;
7986
7987     case CONST_INT:
7988 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
7989       /* If X is negative in MODE, sign-extend the value.  */
7990       if (INTVAL (x) > 0 && mode_width < BITS_PER_WORD
7991           && 0 != (INTVAL (x) & ((HOST_WIDE_INT) 1 << (mode_width - 1))))
7992         return (INTVAL (x) | ((HOST_WIDE_INT) (-1) << mode_width));
7993 #endif
7994
7995       return INTVAL (x);
7996
7997     case MEM:
7998 #ifdef LOAD_EXTEND_OP
7999       /* In many, if not most, RISC machines, reading a byte from memory
8000          zeros the rest of the register.  Noticing that fact saves a lot
8001          of extra zero-extends.  */
8002       if (LOAD_EXTEND_OP (GET_MODE (x)) == ZERO_EXTEND)
8003         nonzero &= GET_MODE_MASK (GET_MODE (x));
8004 #endif
8005       break;
8006
8007     case EQ:  case NE:
8008     case UNEQ:  case LTGT:
8009     case GT:  case GTU:  case UNGT:
8010     case LT:  case LTU:  case UNLT:
8011     case GE:  case GEU:  case UNGE:
8012     case LE:  case LEU:  case UNLE:
8013     case UNORDERED: case ORDERED:
8014
8015       /* If this produces an integer result, we know which bits are set.
8016          Code here used to clear bits outside the mode of X, but that is
8017          now done above.  */
8018
8019       if (GET_MODE_CLASS (mode) == MODE_INT
8020           && mode_width <= HOST_BITS_PER_WIDE_INT)
8021         nonzero = STORE_FLAG_VALUE;
8022       break;
8023
8024     case NEG:
8025 #if 0
8026       /* Disabled to avoid exponential mutual recursion between nonzero_bits
8027          and num_sign_bit_copies.  */
8028       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
8029           == GET_MODE_BITSIZE (GET_MODE (x)))
8030         nonzero = 1;
8031 #endif
8032
8033       if (GET_MODE_SIZE (GET_MODE (x)) < mode_width)
8034         nonzero |= (GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x)));
8035       break;
8036
8037     case ABS:
8038 #if 0
8039       /* Disabled to avoid exponential mutual recursion between nonzero_bits
8040          and num_sign_bit_copies.  */
8041       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
8042           == GET_MODE_BITSIZE (GET_MODE (x)))
8043         nonzero = 1;
8044 #endif
8045       break;
8046
8047     case TRUNCATE:
8048       nonzero &= (nonzero_bits (XEXP (x, 0), mode) & GET_MODE_MASK (mode));
8049       break;
8050
8051     case ZERO_EXTEND:
8052       nonzero &= nonzero_bits (XEXP (x, 0), mode);
8053       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8054         nonzero &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8055       break;
8056
8057     case SIGN_EXTEND:
8058       /* If the sign bit is known clear, this is the same as ZERO_EXTEND.
8059          Otherwise, show all the bits in the outer mode but not the inner
8060          may be non-zero.  */
8061       inner_nz = nonzero_bits (XEXP (x, 0), mode);
8062       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8063         {
8064           inner_nz &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8065           if (inner_nz
8066               & (((HOST_WIDE_INT) 1
8067                   << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1))))
8068             inner_nz |= (GET_MODE_MASK (mode)
8069                          & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0))));
8070         }
8071
8072       nonzero &= inner_nz;
8073       break;
8074
8075     case AND:
8076       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8077                   & nonzero_bits (XEXP (x, 1), mode));
8078       break;
8079
8080     case XOR:   case IOR:
8081     case UMIN:  case UMAX:  case SMIN:  case SMAX:
8082       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8083                   | nonzero_bits (XEXP (x, 1), mode));
8084       break;
8085
8086     case PLUS:  case MINUS:
8087     case MULT:
8088     case DIV:   case UDIV:
8089     case MOD:   case UMOD:
8090       /* We can apply the rules of arithmetic to compute the number of
8091          high- and low-order zero bits of these operations.  We start by
8092          computing the width (position of the highest-order non-zero bit)
8093          and the number of low-order zero bits for each value.  */
8094       {
8095         unsigned HOST_WIDE_INT nz0 = nonzero_bits (XEXP (x, 0), mode);
8096         unsigned HOST_WIDE_INT nz1 = nonzero_bits (XEXP (x, 1), mode);
8097         int width0 = floor_log2 (nz0) + 1;
8098         int width1 = floor_log2 (nz1) + 1;
8099         int low0 = floor_log2 (nz0 & -nz0);
8100         int low1 = floor_log2 (nz1 & -nz1);
8101         HOST_WIDE_INT op0_maybe_minusp
8102           = (nz0 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8103         HOST_WIDE_INT op1_maybe_minusp
8104           = (nz1 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8105         unsigned int result_width = mode_width;
8106         int result_low = 0;
8107
8108         switch (code)
8109           {
8110           case PLUS:
8111 #ifdef STACK_BIAS
8112             if (STACK_BIAS
8113                 && (XEXP (x, 0) == stack_pointer_rtx
8114                     || XEXP (x, 0) == frame_pointer_rtx)
8115                 && GET_CODE (XEXP (x, 1)) == CONST_INT)
8116               {
8117                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
8118
8119                 nz0 = (GET_MODE_MASK (mode) & ~(sp_alignment - 1));
8120                 nz1 = INTVAL (XEXP (x, 1)) - STACK_BIAS;
8121                 width0 = floor_log2 (nz0) + 1;
8122                 width1 = floor_log2 (nz1) + 1;
8123                 low0 = floor_log2 (nz0 & -nz0);
8124                 low1 = floor_log2 (nz1 & -nz1);
8125               }
8126 #endif
8127             result_width = MAX (width0, width1) + 1;
8128             result_low = MIN (low0, low1);
8129             break;
8130           case MINUS:
8131             result_low = MIN (low0, low1);
8132             break;
8133           case MULT:
8134             result_width = width0 + width1;
8135             result_low = low0 + low1;
8136             break;
8137           case DIV:
8138             if (width1 == 0)
8139               break;
8140             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8141               result_width = width0;
8142             break;
8143           case UDIV:
8144             if (width1 == 0)
8145               break;
8146             result_width = width0;
8147             break;
8148           case MOD:
8149             if (width1 == 0)
8150               break;
8151             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8152               result_width = MIN (width0, width1);
8153             result_low = MIN (low0, low1);
8154             break;
8155           case UMOD:
8156             if (width1 == 0)
8157               break;
8158             result_width = MIN (width0, width1);
8159             result_low = MIN (low0, low1);
8160             break;
8161           default:
8162             abort ();
8163           }
8164
8165         if (result_width < mode_width)
8166           nonzero &= ((HOST_WIDE_INT) 1 << result_width) - 1;
8167
8168         if (result_low > 0)
8169           nonzero &= ~(((HOST_WIDE_INT) 1 << result_low) - 1);
8170
8171 #ifdef POINTERS_EXTEND_UNSIGNED
8172         /* If pointers extend unsigned and this is an addition or subtraction
8173            to a pointer in Pmode, all the bits above ptr_mode are known to be
8174            zero.  */
8175         if (POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
8176             && (code == PLUS || code == MINUS)
8177             && GET_CODE (XEXP (x, 0)) == REG && REG_POINTER (XEXP (x, 0)))
8178           nonzero &= GET_MODE_MASK (ptr_mode);
8179 #endif
8180       }
8181       break;
8182
8183     case ZERO_EXTRACT:
8184       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8185           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8186         nonzero &= ((HOST_WIDE_INT) 1 << INTVAL (XEXP (x, 1))) - 1;
8187       break;
8188
8189     case SUBREG:
8190       /* If this is a SUBREG formed for a promoted variable that has
8191          been zero-extended, we know that at least the high-order bits
8192          are zero, though others might be too.  */
8193
8194       if (SUBREG_PROMOTED_VAR_P (x) && SUBREG_PROMOTED_UNSIGNED_P (x))
8195         nonzero = (GET_MODE_MASK (GET_MODE (x))
8196                    & nonzero_bits (SUBREG_REG (x), GET_MODE (x)));
8197
8198       /* If the inner mode is a single word for both the host and target
8199          machines, we can compute this from which bits of the inner
8200          object might be nonzero.  */
8201       if (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) <= BITS_PER_WORD
8202           && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8203               <= HOST_BITS_PER_WIDE_INT))
8204         {
8205           nonzero &= nonzero_bits (SUBREG_REG (x), mode);
8206
8207 #if defined (WORD_REGISTER_OPERATIONS) && defined (LOAD_EXTEND_OP)
8208           /* If this is a typical RISC machine, we only have to worry
8209              about the way loads are extended.  */
8210           if (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND
8211               ? (((nonzero
8212                    & (((unsigned HOST_WIDE_INT) 1
8213                        << (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) - 1))))
8214                   != 0))
8215               : LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) != ZERO_EXTEND)
8216 #endif
8217             {
8218               /* On many CISC machines, accessing an object in a wider mode
8219                  causes the high-order bits to become undefined.  So they are
8220                  not known to be zero.  */
8221               if (GET_MODE_SIZE (GET_MODE (x))
8222                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8223                 nonzero |= (GET_MODE_MASK (GET_MODE (x))
8224                             & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x))));
8225             }
8226         }
8227       break;
8228
8229     case ASHIFTRT:
8230     case LSHIFTRT:
8231     case ASHIFT:
8232     case ROTATE:
8233       /* The nonzero bits are in two classes: any bits within MODE
8234          that aren't in GET_MODE (x) are always significant.  The rest of the
8235          nonzero bits are those that are significant in the operand of
8236          the shift when shifted the appropriate number of bits.  This
8237          shows that high-order bits are cleared by the right shift and
8238          low-order bits by left shifts.  */
8239       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8240           && INTVAL (XEXP (x, 1)) >= 0
8241           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8242         {
8243           enum machine_mode inner_mode = GET_MODE (x);
8244           unsigned int width = GET_MODE_BITSIZE (inner_mode);
8245           int count = INTVAL (XEXP (x, 1));
8246           unsigned HOST_WIDE_INT mode_mask = GET_MODE_MASK (inner_mode);
8247           unsigned HOST_WIDE_INT op_nonzero = nonzero_bits (XEXP (x, 0), mode);
8248           unsigned HOST_WIDE_INT inner = op_nonzero & mode_mask;
8249           unsigned HOST_WIDE_INT outer = 0;
8250
8251           if (mode_width > width)
8252             outer = (op_nonzero & nonzero & ~mode_mask);
8253
8254           if (code == LSHIFTRT)
8255             inner >>= count;
8256           else if (code == ASHIFTRT)
8257             {
8258               inner >>= count;
8259
8260               /* If the sign bit may have been nonzero before the shift, we
8261                  need to mark all the places it could have been copied to
8262                  by the shift as possibly nonzero.  */
8263               if (inner & ((HOST_WIDE_INT) 1 << (width - 1 - count)))
8264                 inner |= (((HOST_WIDE_INT) 1 << count) - 1) << (width - count);
8265             }
8266           else if (code == ASHIFT)
8267             inner <<= count;
8268           else
8269             inner = ((inner << (count % width)
8270                       | (inner >> (width - (count % width)))) & mode_mask);
8271
8272           nonzero &= (outer | inner);
8273         }
8274       break;
8275
8276     case FFS:
8277       /* This is at most the number of bits in the mode.  */
8278       nonzero = ((HOST_WIDE_INT) 1 << (floor_log2 (mode_width) + 1)) - 1;
8279       break;
8280
8281     case IF_THEN_ELSE:
8282       nonzero &= (nonzero_bits (XEXP (x, 1), mode)
8283                   | nonzero_bits (XEXP (x, 2), mode));
8284       break;
8285
8286     default:
8287       break;
8288     }
8289
8290   return nonzero;
8291 }
8292
8293 /* See the macro definition above.  */
8294 #undef num_sign_bit_copies
8295 \f
8296 /* Return the number of bits at the high-order end of X that are known to
8297    be equal to the sign bit.  X will be used in mode MODE; if MODE is
8298    VOIDmode, X will be used in its own mode.  The returned value  will always
8299    be between 1 and the number of bits in MODE.  */
8300
8301 static unsigned int
8302 num_sign_bit_copies (x, mode)
8303      rtx x;
8304      enum machine_mode mode;
8305 {
8306   enum rtx_code code = GET_CODE (x);
8307   unsigned int bitwidth;
8308   int num0, num1, result;
8309   unsigned HOST_WIDE_INT nonzero;
8310   rtx tem;
8311
8312   /* If we weren't given a mode, use the mode of X.  If the mode is still
8313      VOIDmode, we don't know anything.  Likewise if one of the modes is
8314      floating-point.  */
8315
8316   if (mode == VOIDmode)
8317     mode = GET_MODE (x);
8318
8319   if (mode == VOIDmode || FLOAT_MODE_P (mode) || FLOAT_MODE_P (GET_MODE (x)))
8320     return 1;
8321
8322   bitwidth = GET_MODE_BITSIZE (mode);
8323
8324   /* For a smaller object, just ignore the high bits.  */
8325   if (bitwidth < GET_MODE_BITSIZE (GET_MODE (x)))
8326     {
8327       num0 = num_sign_bit_copies (x, GET_MODE (x));
8328       return MAX (1,
8329                   num0 - (int) (GET_MODE_BITSIZE (GET_MODE (x)) - bitwidth));
8330     }
8331
8332   if (GET_MODE (x) != VOIDmode && bitwidth > GET_MODE_BITSIZE (GET_MODE (x)))
8333     {
8334 #ifndef WORD_REGISTER_OPERATIONS
8335   /* If this machine does not do all register operations on the entire
8336      register and MODE is wider than the mode of X, we can say nothing
8337      at all about the high-order bits.  */
8338       return 1;
8339 #else
8340       /* Likewise on machines that do, if the mode of the object is smaller
8341          than a word and loads of that size don't sign extend, we can say
8342          nothing about the high order bits.  */
8343       if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
8344 #ifdef LOAD_EXTEND_OP
8345           && LOAD_EXTEND_OP (GET_MODE (x)) != SIGN_EXTEND
8346 #endif
8347           )
8348         return 1;
8349 #endif
8350     }
8351
8352   switch (code)
8353     {
8354     case REG:
8355
8356 #ifdef POINTERS_EXTEND_UNSIGNED
8357       /* If pointers extend signed and this is a pointer in Pmode, say that
8358          all the bits above ptr_mode are known to be sign bit copies.  */
8359       if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode && mode == Pmode
8360           && REG_POINTER (x))
8361         return GET_MODE_BITSIZE (Pmode) - GET_MODE_BITSIZE (ptr_mode) + 1;
8362 #endif
8363
8364       if (reg_last_set_value[REGNO (x)] != 0
8365           && reg_last_set_mode[REGNO (x)] == mode
8366           && (reg_last_set_label[REGNO (x)] == label_tick
8367               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
8368                   && REG_N_SETS (REGNO (x)) == 1
8369                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start,
8370                                         REGNO (x))))
8371           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
8372         return reg_last_set_sign_bit_copies[REGNO (x)];
8373
8374       tem = get_last_value (x);
8375       if (tem != 0)
8376         return num_sign_bit_copies (tem, mode);
8377
8378       if (nonzero_sign_valid && reg_sign_bit_copies[REGNO (x)] != 0)
8379         return reg_sign_bit_copies[REGNO (x)];
8380       break;
8381
8382     case MEM:
8383 #ifdef LOAD_EXTEND_OP
8384       /* Some RISC machines sign-extend all loads of smaller than a word.  */
8385       if (LOAD_EXTEND_OP (GET_MODE (x)) == SIGN_EXTEND)
8386         return MAX (1, ((int) bitwidth
8387                         - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1));
8388 #endif
8389       break;
8390
8391     case CONST_INT:
8392       /* If the constant is negative, take its 1's complement and remask.
8393          Then see how many zero bits we have.  */
8394       nonzero = INTVAL (x) & GET_MODE_MASK (mode);
8395       if (bitwidth <= HOST_BITS_PER_WIDE_INT
8396           && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8397         nonzero = (~nonzero) & GET_MODE_MASK (mode);
8398
8399       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
8400
8401     case SUBREG:
8402       /* If this is a SUBREG for a promoted object that is sign-extended
8403          and we are looking at it in a wider mode, we know that at least the
8404          high-order bits are known to be sign bit copies.  */
8405
8406       if (SUBREG_PROMOTED_VAR_P (x) && ! SUBREG_PROMOTED_UNSIGNED_P (x))
8407         {
8408           num0 = num_sign_bit_copies (SUBREG_REG (x), mode);
8409           return MAX ((int) bitwidth
8410                       - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1,
8411                       num0);
8412         }
8413
8414       /* For a smaller object, just ignore the high bits.  */
8415       if (bitwidth <= GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))))
8416         {
8417           num0 = num_sign_bit_copies (SUBREG_REG (x), VOIDmode);
8418           return MAX (1, (num0
8419                           - (int) (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8420                                    - bitwidth)));
8421         }
8422
8423 #ifdef WORD_REGISTER_OPERATIONS
8424 #ifdef LOAD_EXTEND_OP
8425       /* For paradoxical SUBREGs on machines where all register operations
8426          affect the entire register, just look inside.  Note that we are
8427          passing MODE to the recursive call, so the number of sign bit copies
8428          will remain relative to that mode, not the inner mode.  */
8429
8430       /* This works only if loads sign extend.  Otherwise, if we get a
8431          reload for the inner part, it may be loaded from the stack, and
8432          then we lose all sign bit copies that existed before the store
8433          to the stack.  */
8434
8435       if ((GET_MODE_SIZE (GET_MODE (x))
8436            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8437           && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND)
8438         return num_sign_bit_copies (SUBREG_REG (x), mode);
8439 #endif
8440 #endif
8441       break;
8442
8443     case SIGN_EXTRACT:
8444       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
8445         return MAX (1, (int) bitwidth - INTVAL (XEXP (x, 1)));
8446       break;
8447
8448     case SIGN_EXTEND:
8449       return (bitwidth - GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8450               + num_sign_bit_copies (XEXP (x, 0), VOIDmode));
8451
8452     case TRUNCATE:
8453       /* For a smaller object, just ignore the high bits.  */
8454       num0 = num_sign_bit_copies (XEXP (x, 0), VOIDmode);
8455       return MAX (1, (num0 - (int) (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8456                                     - bitwidth)));
8457
8458     case NOT:
8459       return num_sign_bit_copies (XEXP (x, 0), mode);
8460
8461     case ROTATE:       case ROTATERT:
8462       /* If we are rotating left by a number of bits less than the number
8463          of sign bit copies, we can just subtract that amount from the
8464          number.  */
8465       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8466           && INTVAL (XEXP (x, 1)) >= 0 && INTVAL (XEXP (x, 1)) < bitwidth)
8467         {
8468           num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8469           return MAX (1, num0 - (code == ROTATE ? INTVAL (XEXP (x, 1))
8470                                  : (int) bitwidth - INTVAL (XEXP (x, 1))));
8471         }
8472       break;
8473
8474     case NEG:
8475       /* In general, this subtracts one sign bit copy.  But if the value
8476          is known to be positive, the number of sign bit copies is the
8477          same as that of the input.  Finally, if the input has just one bit
8478          that might be nonzero, all the bits are copies of the sign bit.  */
8479       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8480       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8481         return num0 > 1 ? num0 - 1 : 1;
8482
8483       nonzero = nonzero_bits (XEXP (x, 0), mode);
8484       if (nonzero == 1)
8485         return bitwidth;
8486
8487       if (num0 > 1
8488           && (((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero))
8489         num0--;
8490
8491       return num0;
8492
8493     case IOR:   case AND:   case XOR:
8494     case SMIN:  case SMAX:  case UMIN:  case UMAX:
8495       /* Logical operations will preserve the number of sign-bit copies.
8496          MIN and MAX operations always return one of the operands.  */
8497       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8498       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8499       return MIN (num0, num1);
8500
8501     case PLUS:  case MINUS:
8502       /* For addition and subtraction, we can have a 1-bit carry.  However,
8503          if we are subtracting 1 from a positive number, there will not
8504          be such a carry.  Furthermore, if the positive number is known to
8505          be 0 or 1, we know the result is either -1 or 0.  */
8506
8507       if (code == PLUS && XEXP (x, 1) == constm1_rtx
8508           && bitwidth <= HOST_BITS_PER_WIDE_INT)
8509         {
8510           nonzero = nonzero_bits (XEXP (x, 0), mode);
8511           if ((((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero) == 0)
8512             return (nonzero == 1 || nonzero == 0 ? bitwidth
8513                     : bitwidth - floor_log2 (nonzero) - 1);
8514         }
8515
8516       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8517       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8518       result = MAX (1, MIN (num0, num1) - 1);
8519
8520 #ifdef POINTERS_EXTEND_UNSIGNED
8521       /* If pointers extend signed and this is an addition or subtraction
8522          to a pointer in Pmode, all the bits above ptr_mode are known to be
8523          sign bit copies.  */
8524       if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
8525           && (code == PLUS || code == MINUS)
8526           && GET_CODE (XEXP (x, 0)) == REG && REG_POINTER (XEXP (x, 0)))
8527         result = MAX ((GET_MODE_BITSIZE (Pmode)
8528                        - GET_MODE_BITSIZE (ptr_mode) + 1),
8529                       result);
8530 #endif
8531       return result;
8532
8533     case MULT:
8534       /* The number of bits of the product is the sum of the number of
8535          bits of both terms.  However, unless one of the terms if known
8536          to be positive, we must allow for an additional bit since negating
8537          a negative number can remove one sign bit copy.  */
8538
8539       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8540       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8541
8542       result = bitwidth - (bitwidth - num0) - (bitwidth - num1);
8543       if (result > 0
8544           && (bitwidth > HOST_BITS_PER_WIDE_INT
8545               || (((nonzero_bits (XEXP (x, 0), mode)
8546                     & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8547                   && ((nonzero_bits (XEXP (x, 1), mode)
8548                        & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))))
8549         result--;
8550
8551       return MAX (1, result);
8552
8553     case UDIV:
8554       /* The result must be <= the first operand.  If the first operand
8555          has the high bit set, we know nothing about the number of sign
8556          bit copies.  */
8557       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8558         return 1;
8559       else if ((nonzero_bits (XEXP (x, 0), mode)
8560                 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8561         return 1;
8562       else
8563         return num_sign_bit_copies (XEXP (x, 0), mode);
8564
8565     case UMOD:
8566       /* The result must be <= the scond operand.  */
8567       return num_sign_bit_copies (XEXP (x, 1), mode);
8568
8569     case DIV:
8570       /* Similar to unsigned division, except that we have to worry about
8571          the case where the divisor is negative, in which case we have
8572          to add 1.  */
8573       result = num_sign_bit_copies (XEXP (x, 0), mode);
8574       if (result > 1
8575           && (bitwidth > HOST_BITS_PER_WIDE_INT
8576               || (nonzero_bits (XEXP (x, 1), mode)
8577                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8578         result--;
8579
8580       return result;
8581
8582     case MOD:
8583       result = num_sign_bit_copies (XEXP (x, 1), mode);
8584       if (result > 1
8585           && (bitwidth > HOST_BITS_PER_WIDE_INT
8586               || (nonzero_bits (XEXP (x, 1), mode)
8587                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8588         result--;
8589
8590       return result;
8591
8592     case ASHIFTRT:
8593       /* Shifts by a constant add to the number of bits equal to the
8594          sign bit.  */
8595       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8596       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8597           && INTVAL (XEXP (x, 1)) > 0)
8598         num0 = MIN (bitwidth, num0 + INTVAL (XEXP (x, 1)));
8599
8600       return num0;
8601
8602     case ASHIFT:
8603       /* Left shifts destroy copies.  */
8604       if (GET_CODE (XEXP (x, 1)) != CONST_INT
8605           || INTVAL (XEXP (x, 1)) < 0
8606           || INTVAL (XEXP (x, 1)) >= bitwidth)
8607         return 1;
8608
8609       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8610       return MAX (1, num0 - INTVAL (XEXP (x, 1)));
8611
8612     case IF_THEN_ELSE:
8613       num0 = num_sign_bit_copies (XEXP (x, 1), mode);
8614       num1 = num_sign_bit_copies (XEXP (x, 2), mode);
8615       return MIN (num0, num1);
8616
8617     case EQ:  case NE:  case GE:  case GT:  case LE:  case LT:
8618     case UNEQ:  case LTGT:  case UNGE:  case UNGT:  case UNLE:  case UNLT:
8619     case GEU: case GTU: case LEU: case LTU:
8620     case UNORDERED: case ORDERED:
8621       /* If the constant is negative, take its 1's complement and remask.
8622          Then see how many zero bits we have.  */
8623       nonzero = STORE_FLAG_VALUE;
8624       if (bitwidth <= HOST_BITS_PER_WIDE_INT
8625           && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8626         nonzero = (~nonzero) & GET_MODE_MASK (mode);
8627
8628       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
8629       break;
8630
8631     default:
8632       break;
8633     }
8634
8635   /* If we haven't been able to figure it out by one of the above rules,
8636      see if some of the high-order bits are known to be zero.  If so,
8637      count those bits and return one less than that amount.  If we can't
8638      safely compute the mask for this mode, always return BITWIDTH.  */
8639
8640   if (bitwidth > HOST_BITS_PER_WIDE_INT)
8641     return 1;
8642
8643   nonzero = nonzero_bits (x, mode);
8644   return (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))
8645           ? 1 : bitwidth - floor_log2 (nonzero) - 1);
8646 }
8647 \f
8648 /* Return the number of "extended" bits there are in X, when interpreted
8649    as a quantity in MODE whose signedness is indicated by UNSIGNEDP.  For
8650    unsigned quantities, this is the number of high-order zero bits.
8651    For signed quantities, this is the number of copies of the sign bit
8652    minus 1.  In both case, this function returns the number of "spare"
8653    bits.  For example, if two quantities for which this function returns
8654    at least 1 are added, the addition is known not to overflow.
8655
8656    This function will always return 0 unless called during combine, which
8657    implies that it must be called from a define_split.  */
8658
8659 unsigned int
8660 extended_count (x, mode, unsignedp)
8661      rtx x;
8662      enum machine_mode mode;
8663      int unsignedp;
8664 {
8665   if (nonzero_sign_valid == 0)
8666     return 0;
8667
8668   return (unsignedp
8669           ? (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
8670              ? (GET_MODE_BITSIZE (mode) - 1
8671                 - floor_log2 (nonzero_bits (x, mode)))
8672              : 0)
8673           : num_sign_bit_copies (x, mode) - 1);
8674 }
8675 \f
8676 /* This function is called from `simplify_shift_const' to merge two
8677    outer operations.  Specifically, we have already found that we need
8678    to perform operation *POP0 with constant *PCONST0 at the outermost
8679    position.  We would now like to also perform OP1 with constant CONST1
8680    (with *POP0 being done last).
8681
8682    Return 1 if we can do the operation and update *POP0 and *PCONST0 with
8683    the resulting operation.  *PCOMP_P is set to 1 if we would need to
8684    complement the innermost operand, otherwise it is unchanged.
8685
8686    MODE is the mode in which the operation will be done.  No bits outside
8687    the width of this mode matter.  It is assumed that the width of this mode
8688    is smaller than or equal to HOST_BITS_PER_WIDE_INT.
8689
8690    If *POP0 or OP1 are NIL, it means no operation is required.  Only NEG, PLUS,
8691    IOR, XOR, and AND are supported.  We may set *POP0 to SET if the proper
8692    result is simply *PCONST0.
8693
8694    If the resulting operation cannot be expressed as one operation, we
8695    return 0 and do not change *POP0, *PCONST0, and *PCOMP_P.  */
8696
8697 static int
8698 merge_outer_ops (pop0, pconst0, op1, const1, mode, pcomp_p)
8699      enum rtx_code *pop0;
8700      HOST_WIDE_INT *pconst0;
8701      enum rtx_code op1;
8702      HOST_WIDE_INT const1;
8703      enum machine_mode mode;
8704      int *pcomp_p;
8705 {
8706   enum rtx_code op0 = *pop0;
8707   HOST_WIDE_INT const0 = *pconst0;
8708
8709   const0 &= GET_MODE_MASK (mode);
8710   const1 &= GET_MODE_MASK (mode);
8711
8712   /* If OP0 is an AND, clear unimportant bits in CONST1.  */
8713   if (op0 == AND)
8714     const1 &= const0;
8715
8716   /* If OP0 or OP1 is NIL, this is easy.  Similarly if they are the same or
8717      if OP0 is SET.  */
8718
8719   if (op1 == NIL || op0 == SET)
8720     return 1;
8721
8722   else if (op0 == NIL)
8723     op0 = op1, const0 = const1;
8724
8725   else if (op0 == op1)
8726     {
8727       switch (op0)
8728         {
8729         case AND:
8730           const0 &= const1;
8731           break;
8732         case IOR:
8733           const0 |= const1;
8734           break;
8735         case XOR:
8736           const0 ^= const1;
8737           break;
8738         case PLUS:
8739           const0 += const1;
8740           break;
8741         case NEG:
8742           op0 = NIL;
8743           break;
8744         default:
8745           break;
8746         }
8747     }
8748
8749   /* Otherwise, if either is a PLUS or NEG, we can't do anything.  */
8750   else if (op0 == PLUS || op1 == PLUS || op0 == NEG || op1 == NEG)
8751     return 0;
8752
8753   /* If the two constants aren't the same, we can't do anything.  The
8754      remaining six cases can all be done.  */
8755   else if (const0 != const1)
8756     return 0;
8757
8758   else
8759     switch (op0)
8760       {
8761       case IOR:
8762         if (op1 == AND)
8763           /* (a & b) | b == b */
8764           op0 = SET;
8765         else /* op1 == XOR */
8766           /* (a ^ b) | b == a | b */
8767           {;}
8768         break;
8769
8770       case XOR:
8771         if (op1 == AND)
8772           /* (a & b) ^ b == (~a) & b */
8773           op0 = AND, *pcomp_p = 1;
8774         else /* op1 == IOR */
8775           /* (a | b) ^ b == a & ~b */
8776           op0 = AND, *pconst0 = ~const0;
8777         break;
8778
8779       case AND:
8780         if (op1 == IOR)
8781           /* (a | b) & b == b */
8782         op0 = SET;
8783         else /* op1 == XOR */
8784           /* (a ^ b) & b) == (~a) & b */
8785           *pcomp_p = 1;
8786         break;
8787       default:
8788         break;
8789       }
8790
8791   /* Check for NO-OP cases.  */
8792   const0 &= GET_MODE_MASK (mode);
8793   if (const0 == 0
8794       && (op0 == IOR || op0 == XOR || op0 == PLUS))
8795     op0 = NIL;
8796   else if (const0 == 0 && op0 == AND)
8797     op0 = SET;
8798   else if ((unsigned HOST_WIDE_INT) const0 == GET_MODE_MASK (mode)
8799            && op0 == AND)
8800     op0 = NIL;
8801
8802   /* ??? Slightly redundant with the above mask, but not entirely.
8803      Moving this above means we'd have to sign-extend the mode mask
8804      for the final test.  */
8805   const0 = trunc_int_for_mode (const0, mode);
8806
8807   *pop0 = op0;
8808   *pconst0 = const0;
8809
8810   return 1;
8811 }
8812 \f
8813 /* Simplify a shift of VAROP by COUNT bits.  CODE says what kind of shift.
8814    The result of the shift is RESULT_MODE.  X, if non-zero, is an expression
8815    that we started with.
8816
8817    The shift is normally computed in the widest mode we find in VAROP, as
8818    long as it isn't a different number of words than RESULT_MODE.  Exceptions
8819    are ASHIFTRT and ROTATE, which are always done in their original mode,  */
8820
8821 static rtx
8822 simplify_shift_const (x, code, result_mode, varop, input_count)
8823      rtx x;
8824      enum rtx_code code;
8825      enum machine_mode result_mode;
8826      rtx varop;
8827      int input_count;
8828 {
8829   enum rtx_code orig_code = code;
8830   int orig_count = input_count;
8831   unsigned int count;
8832   int signed_count;
8833   enum machine_mode mode = result_mode;
8834   enum machine_mode shift_mode, tmode;
8835   unsigned int mode_words
8836     = (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
8837   /* We form (outer_op (code varop count) (outer_const)).  */
8838   enum rtx_code outer_op = NIL;
8839   HOST_WIDE_INT outer_const = 0;
8840   rtx const_rtx;
8841   int complement_p = 0;
8842   rtx new;
8843
8844   /* If we were given an invalid count, don't do anything except exactly
8845      what was requested.  */
8846
8847   if (input_count < 0 || input_count > (int) GET_MODE_BITSIZE (mode))
8848     {
8849       if (x)
8850         return x;
8851
8852       return gen_rtx_fmt_ee (code, mode, varop, GEN_INT (input_count));
8853     }
8854
8855   count = input_count;
8856
8857   /* Make sure and truncate the "natural" shift on the way in.  We don't
8858      want to do this inside the loop as it makes it more difficult to
8859      combine shifts.  */
8860 #ifdef SHIFT_COUNT_TRUNCATED
8861   if (SHIFT_COUNT_TRUNCATED)
8862     count %= GET_MODE_BITSIZE (mode);
8863 #endif
8864
8865   /* Unless one of the branches of the `if' in this loop does a `continue',
8866      we will `break' the loop after the `if'.  */
8867
8868   while (count != 0)
8869     {
8870       /* If we have an operand of (clobber (const_int 0)), just return that
8871          value.  */
8872       if (GET_CODE (varop) == CLOBBER)
8873         return varop;
8874
8875       /* If we discovered we had to complement VAROP, leave.  Making a NOT
8876          here would cause an infinite loop.  */
8877       if (complement_p)
8878         break;
8879
8880       /* Convert ROTATERT to ROTATE.  */
8881       if (code == ROTATERT)
8882         code = ROTATE, count = GET_MODE_BITSIZE (result_mode) - count;
8883
8884       /* We need to determine what mode we will do the shift in.  If the
8885          shift is a right shift or a ROTATE, we must always do it in the mode
8886          it was originally done in.  Otherwise, we can do it in MODE, the
8887          widest mode encountered.  */
8888       shift_mode
8889         = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
8890            ? result_mode : mode);
8891
8892       /* Handle cases where the count is greater than the size of the mode
8893          minus 1.  For ASHIFT, use the size minus one as the count (this can
8894          occur when simplifying (lshiftrt (ashiftrt ..))).  For rotates,
8895          take the count modulo the size.  For other shifts, the result is
8896          zero.
8897
8898          Since these shifts are being produced by the compiler by combining
8899          multiple operations, each of which are defined, we know what the
8900          result is supposed to be.  */
8901
8902       if (count > GET_MODE_BITSIZE (shift_mode) - 1)
8903         {
8904           if (code == ASHIFTRT)
8905             count = GET_MODE_BITSIZE (shift_mode) - 1;
8906           else if (code == ROTATE || code == ROTATERT)
8907             count %= GET_MODE_BITSIZE (shift_mode);
8908           else
8909             {
8910               /* We can't simply return zero because there may be an
8911                  outer op.  */
8912               varop = const0_rtx;
8913               count = 0;
8914               break;
8915             }
8916         }
8917
8918       /* An arithmetic right shift of a quantity known to be -1 or 0
8919          is a no-op.  */
8920       if (code == ASHIFTRT
8921           && (num_sign_bit_copies (varop, shift_mode)
8922               == GET_MODE_BITSIZE (shift_mode)))
8923         {
8924           count = 0;
8925           break;
8926         }
8927
8928       /* If we are doing an arithmetic right shift and discarding all but
8929          the sign bit copies, this is equivalent to doing a shift by the
8930          bitsize minus one.  Convert it into that shift because it will often
8931          allow other simplifications.  */
8932
8933       if (code == ASHIFTRT
8934           && (count + num_sign_bit_copies (varop, shift_mode)
8935               >= GET_MODE_BITSIZE (shift_mode)))
8936         count = GET_MODE_BITSIZE (shift_mode) - 1;
8937
8938       /* We simplify the tests below and elsewhere by converting
8939          ASHIFTRT to LSHIFTRT if we know the sign bit is clear.
8940          `make_compound_operation' will convert it to a ASHIFTRT for
8941          those machines (such as Vax) that don't have a LSHIFTRT.  */
8942       if (GET_MODE_BITSIZE (shift_mode) <= HOST_BITS_PER_WIDE_INT
8943           && code == ASHIFTRT
8944           && ((nonzero_bits (varop, shift_mode)
8945                & ((HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (shift_mode) - 1)))
8946               == 0))
8947         code = LSHIFTRT;
8948
8949       switch (GET_CODE (varop))
8950         {
8951         case SIGN_EXTEND:
8952         case ZERO_EXTEND:
8953         case SIGN_EXTRACT:
8954         case ZERO_EXTRACT:
8955           new = expand_compound_operation (varop);
8956           if (new != varop)
8957             {
8958               varop = new;
8959               continue;
8960             }
8961           break;
8962
8963         case MEM:
8964           /* If we have (xshiftrt (mem ...) C) and C is MODE_WIDTH
8965              minus the width of a smaller mode, we can do this with a
8966              SIGN_EXTEND or ZERO_EXTEND from the narrower memory location.  */
8967           if ((code == ASHIFTRT || code == LSHIFTRT)
8968               && ! mode_dependent_address_p (XEXP (varop, 0))
8969               && ! MEM_VOLATILE_P (varop)
8970               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
8971                                          MODE_INT, 1)) != BLKmode)
8972             {
8973               new = adjust_address_nv (varop, tmode,
8974                                        BYTES_BIG_ENDIAN ? 0
8975                                        : count / BITS_PER_UNIT);
8976
8977               varop = gen_rtx_fmt_e (code == ASHIFTRT ? SIGN_EXTEND
8978                                      : ZERO_EXTEND, mode, new);
8979               count = 0;
8980               continue;
8981             }
8982           break;
8983
8984         case USE:
8985           /* Similar to the case above, except that we can only do this if
8986              the resulting mode is the same as that of the underlying
8987              MEM and adjust the address depending on the *bits* endianness
8988              because of the way that bit-field extract insns are defined.  */
8989           if ((code == ASHIFTRT || code == LSHIFTRT)
8990               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
8991                                          MODE_INT, 1)) != BLKmode
8992               && tmode == GET_MODE (XEXP (varop, 0)))
8993             {
8994               if (BITS_BIG_ENDIAN)
8995                 new = XEXP (varop, 0);
8996               else
8997                 {
8998                   new = copy_rtx (XEXP (varop, 0));
8999                   SUBST (XEXP (new, 0),
9000                          plus_constant (XEXP (new, 0),
9001                                         count / BITS_PER_UNIT));
9002                 }
9003
9004               varop = gen_rtx_fmt_e (code == ASHIFTRT ? SIGN_EXTEND
9005                                      : ZERO_EXTEND, mode, new);
9006               count = 0;
9007               continue;
9008             }
9009           break;
9010
9011         case SUBREG:
9012           /* If VAROP is a SUBREG, strip it as long as the inner operand has
9013              the same number of words as what we've seen so far.  Then store
9014              the widest mode in MODE.  */
9015           if (subreg_lowpart_p (varop)
9016               && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9017                   > GET_MODE_SIZE (GET_MODE (varop)))
9018               && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9019                     + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
9020                   == mode_words))
9021             {
9022               varop = SUBREG_REG (varop);
9023               if (GET_MODE_SIZE (GET_MODE (varop)) > GET_MODE_SIZE (mode))
9024                 mode = GET_MODE (varop);
9025               continue;
9026             }
9027           break;
9028
9029         case MULT:
9030           /* Some machines use MULT instead of ASHIFT because MULT
9031              is cheaper.  But it is still better on those machines to
9032              merge two shifts into one.  */
9033           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9034               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
9035             {
9036               varop
9037                 = gen_binary (ASHIFT, GET_MODE (varop), XEXP (varop, 0),
9038                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
9039               continue;
9040             }
9041           break;
9042
9043         case UDIV:
9044           /* Similar, for when divides are cheaper.  */
9045           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9046               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
9047             {
9048               varop
9049                 = gen_binary (LSHIFTRT, GET_MODE (varop), XEXP (varop, 0),
9050                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
9051               continue;
9052             }
9053           break;
9054
9055         case ASHIFTRT:
9056           /* If we are extracting just the sign bit of an arithmetic
9057              right shift, that shift is not needed.  However, the sign
9058              bit of a wider mode may be different from what would be
9059              interpreted as the sign bit in a narrower mode, so, if
9060              the result is narrower, don't discard the shift.  */
9061           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9062               && (GET_MODE_BITSIZE (result_mode)
9063                   >= GET_MODE_BITSIZE (GET_MODE (varop))))
9064             {
9065               varop = XEXP (varop, 0);
9066               continue;
9067             }
9068
9069           /* ... fall through ...  */
9070
9071         case LSHIFTRT:
9072         case ASHIFT:
9073         case ROTATE:
9074           /* Here we have two nested shifts.  The result is usually the
9075              AND of a new shift with a mask.  We compute the result below.  */
9076           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9077               && INTVAL (XEXP (varop, 1)) >= 0
9078               && INTVAL (XEXP (varop, 1)) < GET_MODE_BITSIZE (GET_MODE (varop))
9079               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9080               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
9081             {
9082               enum rtx_code first_code = GET_CODE (varop);
9083               unsigned int first_count = INTVAL (XEXP (varop, 1));
9084               unsigned HOST_WIDE_INT mask;
9085               rtx mask_rtx;
9086
9087               /* We have one common special case.  We can't do any merging if
9088                  the inner code is an ASHIFTRT of a smaller mode.  However, if
9089                  we have (ashift:M1 (subreg:M1 (ashiftrt:M2 FOO C1) 0) C2)
9090                  with C2 == GET_MODE_BITSIZE (M1) - GET_MODE_BITSIZE (M2),
9091                  we can convert it to
9092                  (ashiftrt:M1 (ashift:M1 (and:M1 (subreg:M1 FOO 0 C2) C3) C1).
9093                  This simplifies certain SIGN_EXTEND operations.  */
9094               if (code == ASHIFT && first_code == ASHIFTRT
9095                   && (GET_MODE_BITSIZE (result_mode)
9096                       - GET_MODE_BITSIZE (GET_MODE (varop))) == count)
9097                 {
9098                   /* C3 has the low-order C1 bits zero.  */
9099
9100                   mask = (GET_MODE_MASK (mode)
9101                           & ~(((HOST_WIDE_INT) 1 << first_count) - 1));
9102
9103                   varop = simplify_and_const_int (NULL_RTX, result_mode,
9104                                                   XEXP (varop, 0), mask);
9105                   varop = simplify_shift_const (NULL_RTX, ASHIFT, result_mode,
9106                                                 varop, count);
9107                   count = first_count;
9108                   code = ASHIFTRT;
9109                   continue;
9110                 }
9111
9112               /* If this was (ashiftrt (ashift foo C1) C2) and FOO has more
9113                  than C1 high-order bits equal to the sign bit, we can convert
9114                  this to either an ASHIFT or a ASHIFTRT depending on the
9115                  two counts.
9116
9117                  We cannot do this if VAROP's mode is not SHIFT_MODE.  */
9118
9119               if (code == ASHIFTRT && first_code == ASHIFT
9120                   && GET_MODE (varop) == shift_mode
9121                   && (num_sign_bit_copies (XEXP (varop, 0), shift_mode)
9122                       > first_count))
9123                 {
9124                   varop = XEXP (varop, 0);
9125
9126                   signed_count = count - first_count;
9127                   if (signed_count < 0)
9128                     count = -signed_count, code = ASHIFT;
9129                   else
9130                     count = signed_count;
9131
9132                   continue;
9133                 }
9134
9135               /* There are some cases we can't do.  If CODE is ASHIFTRT,
9136                  we can only do this if FIRST_CODE is also ASHIFTRT.
9137
9138                  We can't do the case when CODE is ROTATE and FIRST_CODE is
9139                  ASHIFTRT.
9140
9141                  If the mode of this shift is not the mode of the outer shift,
9142                  we can't do this if either shift is a right shift or ROTATE.
9143
9144                  Finally, we can't do any of these if the mode is too wide
9145                  unless the codes are the same.
9146
9147                  Handle the case where the shift codes are the same
9148                  first.  */
9149
9150               if (code == first_code)
9151                 {
9152                   if (GET_MODE (varop) != result_mode
9153                       && (code == ASHIFTRT || code == LSHIFTRT
9154                           || code == ROTATE))
9155                     break;
9156
9157                   count += first_count;
9158                   varop = XEXP (varop, 0);
9159                   continue;
9160                 }
9161
9162               if (code == ASHIFTRT
9163                   || (code == ROTATE && first_code == ASHIFTRT)
9164                   || GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT
9165                   || (GET_MODE (varop) != result_mode
9166                       && (first_code == ASHIFTRT || first_code == LSHIFTRT
9167                           || first_code == ROTATE
9168                           || code == ROTATE)))
9169                 break;
9170
9171               /* To compute the mask to apply after the shift, shift the
9172                  nonzero bits of the inner shift the same way the
9173                  outer shift will.  */
9174
9175               mask_rtx = GEN_INT (nonzero_bits (varop, GET_MODE (varop)));
9176
9177               mask_rtx
9178                 = simplify_binary_operation (code, result_mode, mask_rtx,
9179                                              GEN_INT (count));
9180
9181               /* Give up if we can't compute an outer operation to use.  */
9182               if (mask_rtx == 0
9183                   || GET_CODE (mask_rtx) != CONST_INT
9184                   || ! merge_outer_ops (&outer_op, &outer_const, AND,
9185                                         INTVAL (mask_rtx),
9186                                         result_mode, &complement_p))
9187                 break;
9188
9189               /* If the shifts are in the same direction, we add the
9190                  counts.  Otherwise, we subtract them.  */
9191               signed_count = count;
9192               if ((code == ASHIFTRT || code == LSHIFTRT)
9193                   == (first_code == ASHIFTRT || first_code == LSHIFTRT))
9194                 signed_count += first_count;
9195               else
9196                 signed_count -= first_count;
9197
9198               /* If COUNT is positive, the new shift is usually CODE,
9199                  except for the two exceptions below, in which case it is
9200                  FIRST_CODE.  If the count is negative, FIRST_CODE should
9201                  always be used  */
9202               if (signed_count > 0
9203                   && ((first_code == ROTATE && code == ASHIFT)
9204                       || (first_code == ASHIFTRT && code == LSHIFTRT)))
9205                 code = first_code, count = signed_count;
9206               else if (signed_count < 0)
9207                 code = first_code, count = -signed_count;
9208               else
9209                 count = signed_count;
9210
9211               varop = XEXP (varop, 0);
9212               continue;
9213             }
9214
9215           /* If we have (A << B << C) for any shift, we can convert this to
9216              (A << C << B).  This wins if A is a constant.  Only try this if
9217              B is not a constant.  */
9218
9219           else if (GET_CODE (varop) == code
9220                    && GET_CODE (XEXP (varop, 1)) != CONST_INT
9221                    && 0 != (new
9222                             = simplify_binary_operation (code, mode,
9223                                                          XEXP (varop, 0),
9224                                                          GEN_INT (count))))
9225             {
9226               varop = gen_rtx_fmt_ee (code, mode, new, XEXP (varop, 1));
9227               count = 0;
9228               continue;
9229             }
9230           break;
9231
9232         case NOT:
9233           /* Make this fit the case below.  */
9234           varop = gen_rtx_XOR (mode, XEXP (varop, 0),
9235                                GEN_INT (GET_MODE_MASK (mode)));
9236           continue;
9237
9238         case IOR:
9239         case AND:
9240         case XOR:
9241           /* If we have (xshiftrt (ior (plus X (const_int -1)) X) C)
9242              with C the size of VAROP - 1 and the shift is logical if
9243              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9244              we have an (le X 0) operation.   If we have an arithmetic shift
9245              and STORE_FLAG_VALUE is 1 or we have a logical shift with
9246              STORE_FLAG_VALUE of -1, we have a (neg (le X 0)) operation.  */
9247
9248           if (GET_CODE (varop) == IOR && GET_CODE (XEXP (varop, 0)) == PLUS
9249               && XEXP (XEXP (varop, 0), 1) == constm1_rtx
9250               && (STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9251               && (code == LSHIFTRT || code == ASHIFTRT)
9252               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9253               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9254             {
9255               count = 0;
9256               varop = gen_rtx_LE (GET_MODE (varop), XEXP (varop, 1),
9257                                   const0_rtx);
9258
9259               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9260                 varop = gen_rtx_NEG (GET_MODE (varop), varop);
9261
9262               continue;
9263             }
9264
9265           /* If we have (shift (logical)), move the logical to the outside
9266              to allow it to possibly combine with another logical and the
9267              shift to combine with another shift.  This also canonicalizes to
9268              what a ZERO_EXTRACT looks like.  Also, some machines have
9269              (and (shift)) insns.  */
9270
9271           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9272               && (new = simplify_binary_operation (code, result_mode,
9273                                                    XEXP (varop, 1),
9274                                                    GEN_INT (count))) != 0
9275               && GET_CODE (new) == CONST_INT
9276               && merge_outer_ops (&outer_op, &outer_const, GET_CODE (varop),
9277                                   INTVAL (new), result_mode, &complement_p))
9278             {
9279               varop = XEXP (varop, 0);
9280               continue;
9281             }
9282
9283           /* If we can't do that, try to simplify the shift in each arm of the
9284              logical expression, make a new logical expression, and apply
9285              the inverse distributive law.  */
9286           {
9287             rtx lhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9288                                             XEXP (varop, 0), count);
9289             rtx rhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9290                                             XEXP (varop, 1), count);
9291
9292             varop = gen_binary (GET_CODE (varop), shift_mode, lhs, rhs);
9293             varop = apply_distributive_law (varop);
9294
9295             count = 0;
9296           }
9297           break;
9298
9299         case EQ:
9300           /* convert (lshiftrt (eq FOO 0) C) to (xor FOO 1) if STORE_FLAG_VALUE
9301              says that the sign bit can be tested, FOO has mode MODE, C is
9302              GET_MODE_BITSIZE (MODE) - 1, and FOO has only its low-order bit
9303              that may be nonzero.  */
9304           if (code == LSHIFTRT
9305               && XEXP (varop, 1) == const0_rtx
9306               && GET_MODE (XEXP (varop, 0)) == result_mode
9307               && count == GET_MODE_BITSIZE (result_mode) - 1
9308               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9309               && ((STORE_FLAG_VALUE
9310                    & ((HOST_WIDE_INT) 1
9311                       < (GET_MODE_BITSIZE (result_mode) - 1))))
9312               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9313               && merge_outer_ops (&outer_op, &outer_const, XOR,
9314                                   (HOST_WIDE_INT) 1, result_mode,
9315                                   &complement_p))
9316             {
9317               varop = XEXP (varop, 0);
9318               count = 0;
9319               continue;
9320             }
9321           break;
9322
9323         case NEG:
9324           /* (lshiftrt (neg A) C) where A is either 0 or 1 and C is one less
9325              than the number of bits in the mode is equivalent to A.  */
9326           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9327               && nonzero_bits (XEXP (varop, 0), result_mode) == 1)
9328             {
9329               varop = XEXP (varop, 0);
9330               count = 0;
9331               continue;
9332             }
9333
9334           /* NEG commutes with ASHIFT since it is multiplication.  Move the
9335              NEG outside to allow shifts to combine.  */
9336           if (code == ASHIFT
9337               && merge_outer_ops (&outer_op, &outer_const, NEG,
9338                                   (HOST_WIDE_INT) 0, result_mode,
9339                                   &complement_p))
9340             {
9341               varop = XEXP (varop, 0);
9342               continue;
9343             }
9344           break;
9345
9346         case PLUS:
9347           /* (lshiftrt (plus A -1) C) where A is either 0 or 1 and C
9348              is one less than the number of bits in the mode is
9349              equivalent to (xor A 1).  */
9350           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9351               && XEXP (varop, 1) == constm1_rtx
9352               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9353               && merge_outer_ops (&outer_op, &outer_const, XOR,
9354                                   (HOST_WIDE_INT) 1, result_mode,
9355                                   &complement_p))
9356             {
9357               count = 0;
9358               varop = XEXP (varop, 0);
9359               continue;
9360             }
9361
9362           /* If we have (xshiftrt (plus FOO BAR) C), and the only bits
9363              that might be nonzero in BAR are those being shifted out and those
9364              bits are known zero in FOO, we can replace the PLUS with FOO.
9365              Similarly in the other operand order.  This code occurs when
9366              we are computing the size of a variable-size array.  */
9367
9368           if ((code == ASHIFTRT || code == LSHIFTRT)
9369               && count < HOST_BITS_PER_WIDE_INT
9370               && nonzero_bits (XEXP (varop, 1), result_mode) >> count == 0
9371               && (nonzero_bits (XEXP (varop, 1), result_mode)
9372                   & nonzero_bits (XEXP (varop, 0), result_mode)) == 0)
9373             {
9374               varop = XEXP (varop, 0);
9375               continue;
9376             }
9377           else if ((code == ASHIFTRT || code == LSHIFTRT)
9378                    && count < HOST_BITS_PER_WIDE_INT
9379                    && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9380                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9381                             >> count)
9382                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9383                             & nonzero_bits (XEXP (varop, 1),
9384                                                  result_mode)))
9385             {
9386               varop = XEXP (varop, 1);
9387               continue;
9388             }
9389
9390           /* (ashift (plus foo C) N) is (plus (ashift foo N) C').  */
9391           if (code == ASHIFT
9392               && GET_CODE (XEXP (varop, 1)) == CONST_INT
9393               && (new = simplify_binary_operation (ASHIFT, result_mode,
9394                                                    XEXP (varop, 1),
9395                                                    GEN_INT (count))) != 0
9396               && GET_CODE (new) == CONST_INT
9397               && merge_outer_ops (&outer_op, &outer_const, PLUS,
9398                                   INTVAL (new), result_mode, &complement_p))
9399             {
9400               varop = XEXP (varop, 0);
9401               continue;
9402             }
9403           break;
9404
9405         case MINUS:
9406           /* If we have (xshiftrt (minus (ashiftrt X C)) X) C)
9407              with C the size of VAROP - 1 and the shift is logical if
9408              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9409              we have a (gt X 0) operation.  If the shift is arithmetic with
9410              STORE_FLAG_VALUE of 1 or logical with STORE_FLAG_VALUE == -1,
9411              we have a (neg (gt X 0)) operation.  */
9412
9413           if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9414               && GET_CODE (XEXP (varop, 0)) == ASHIFTRT
9415               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9416               && (code == LSHIFTRT || code == ASHIFTRT)
9417               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9418               && INTVAL (XEXP (XEXP (varop, 0), 1)) == count
9419               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9420             {
9421               count = 0;
9422               varop = gen_rtx_GT (GET_MODE (varop), XEXP (varop, 1),
9423                                   const0_rtx);
9424
9425               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9426                 varop = gen_rtx_NEG (GET_MODE (varop), varop);
9427
9428               continue;
9429             }
9430           break;
9431
9432         case TRUNCATE:
9433           /* Change (lshiftrt (truncate (lshiftrt))) to (truncate (lshiftrt))
9434              if the truncate does not affect the value.  */
9435           if (code == LSHIFTRT
9436               && GET_CODE (XEXP (varop, 0)) == LSHIFTRT
9437               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9438               && (INTVAL (XEXP (XEXP (varop, 0), 1))
9439                   >= (GET_MODE_BITSIZE (GET_MODE (XEXP (varop, 0)))
9440                       - GET_MODE_BITSIZE (GET_MODE (varop)))))
9441             {
9442               rtx varop_inner = XEXP (varop, 0);
9443
9444               varop_inner
9445                 = gen_rtx_LSHIFTRT (GET_MODE (varop_inner),
9446                                     XEXP (varop_inner, 0),
9447                                     GEN_INT
9448                                     (count + INTVAL (XEXP (varop_inner, 1))));
9449               varop = gen_rtx_TRUNCATE (GET_MODE (varop), varop_inner);
9450               count = 0;
9451               continue;
9452             }
9453           break;
9454
9455         default:
9456           break;
9457         }
9458
9459       break;
9460     }
9461
9462   /* We need to determine what mode to do the shift in.  If the shift is
9463      a right shift or ROTATE, we must always do it in the mode it was
9464      originally done in.  Otherwise, we can do it in MODE, the widest mode
9465      encountered.  The code we care about is that of the shift that will
9466      actually be done, not the shift that was originally requested.  */
9467   shift_mode
9468     = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
9469        ? result_mode : mode);
9470
9471   /* We have now finished analyzing the shift.  The result should be
9472      a shift of type CODE with SHIFT_MODE shifting VAROP COUNT places.  If
9473      OUTER_OP is non-NIL, it is an operation that needs to be applied
9474      to the result of the shift.  OUTER_CONST is the relevant constant,
9475      but we must turn off all bits turned off in the shift.
9476
9477      If we were passed a value for X, see if we can use any pieces of
9478      it.  If not, make new rtx.  */
9479
9480   if (x && GET_RTX_CLASS (GET_CODE (x)) == '2'
9481       && GET_CODE (XEXP (x, 1)) == CONST_INT
9482       && INTVAL (XEXP (x, 1)) == count)
9483     const_rtx = XEXP (x, 1);
9484   else
9485     const_rtx = GEN_INT (count);
9486
9487   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
9488       && GET_MODE (XEXP (x, 0)) == shift_mode
9489       && SUBREG_REG (XEXP (x, 0)) == varop)
9490     varop = XEXP (x, 0);
9491   else if (GET_MODE (varop) != shift_mode)
9492     varop = gen_lowpart_for_combine (shift_mode, varop);
9493
9494   /* If we can't make the SUBREG, try to return what we were given.  */
9495   if (GET_CODE (varop) == CLOBBER)
9496     return x ? x : varop;
9497
9498   new = simplify_binary_operation (code, shift_mode, varop, const_rtx);
9499   if (new != 0)
9500     x = new;
9501   else
9502     {
9503       if (x == 0 || GET_CODE (x) != code || GET_MODE (x) != shift_mode)
9504         x = gen_rtx_fmt_ee (code, shift_mode, varop, const_rtx);
9505
9506       SUBST (XEXP (x, 0), varop);
9507       SUBST (XEXP (x, 1), const_rtx);
9508     }
9509
9510   /* If we have an outer operation and we just made a shift, it is
9511      possible that we could have simplified the shift were it not
9512      for the outer operation.  So try to do the simplification
9513      recursively.  */
9514
9515   if (outer_op != NIL && GET_CODE (x) == code
9516       && GET_CODE (XEXP (x, 1)) == CONST_INT)
9517     x = simplify_shift_const (x, code, shift_mode, XEXP (x, 0),
9518                               INTVAL (XEXP (x, 1)));
9519
9520   /* If we were doing a LSHIFTRT in a wider mode than it was originally,
9521      turn off all the bits that the shift would have turned off.  */
9522   if (orig_code == LSHIFTRT && result_mode != shift_mode)
9523     x = simplify_and_const_int (NULL_RTX, shift_mode, x,
9524                                 GET_MODE_MASK (result_mode) >> orig_count);
9525
9526   /* Do the remainder of the processing in RESULT_MODE.  */
9527   x = gen_lowpart_for_combine (result_mode, x);
9528
9529   /* If COMPLEMENT_P is set, we have to complement X before doing the outer
9530      operation.  */
9531   if (complement_p)
9532     x =simplify_gen_unary (NOT, result_mode, x, result_mode);
9533
9534   if (outer_op != NIL)
9535     {
9536       if (GET_MODE_BITSIZE (result_mode) < HOST_BITS_PER_WIDE_INT)
9537         outer_const = trunc_int_for_mode (outer_const, result_mode);
9538
9539       if (outer_op == AND)
9540         x = simplify_and_const_int (NULL_RTX, result_mode, x, outer_const);
9541       else if (outer_op == SET)
9542         /* This means that we have determined that the result is
9543            equivalent to a constant.  This should be rare.  */
9544         x = GEN_INT (outer_const);
9545       else if (GET_RTX_CLASS (outer_op) == '1')
9546         x = simplify_gen_unary (outer_op, result_mode, x, result_mode);
9547       else
9548         x = gen_binary (outer_op, result_mode, x, GEN_INT (outer_const));
9549     }
9550
9551   return x;
9552 }
9553 \f
9554 /* Like recog, but we receive the address of a pointer to a new pattern.
9555    We try to match the rtx that the pointer points to.
9556    If that fails, we may try to modify or replace the pattern,
9557    storing the replacement into the same pointer object.
9558
9559    Modifications include deletion or addition of CLOBBERs.
9560
9561    PNOTES is a pointer to a location where any REG_UNUSED notes added for
9562    the CLOBBERs are placed.
9563
9564    The value is the final insn code from the pattern ultimately matched,
9565    or -1.  */
9566
9567 static int
9568 recog_for_combine (pnewpat, insn, pnotes)
9569      rtx *pnewpat;
9570      rtx insn;
9571      rtx *pnotes;
9572 {
9573   register rtx pat = *pnewpat;
9574   int insn_code_number;
9575   int num_clobbers_to_add = 0;
9576   int i;
9577   rtx notes = 0;
9578   rtx old_notes;
9579
9580   /* If PAT is a PARALLEL, check to see if it contains the CLOBBER
9581      we use to indicate that something didn't match.  If we find such a
9582      thing, force rejection.  */
9583   if (GET_CODE (pat) == PARALLEL)
9584     for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
9585       if (GET_CODE (XVECEXP (pat, 0, i)) == CLOBBER
9586           && XEXP (XVECEXP (pat, 0, i), 0) == const0_rtx)
9587         return -1;
9588
9589   /* Remove the old notes prior to trying to recognize the new pattern.  */
9590   old_notes = REG_NOTES (insn);
9591   REG_NOTES (insn) = 0;
9592
9593   /* Is the result of combination a valid instruction?  */
9594   insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9595
9596   /* If it isn't, there is the possibility that we previously had an insn
9597      that clobbered some register as a side effect, but the combined
9598      insn doesn't need to do that.  So try once more without the clobbers
9599      unless this represents an ASM insn.  */
9600
9601   if (insn_code_number < 0 && ! check_asm_operands (pat)
9602       && GET_CODE (pat) == PARALLEL)
9603     {
9604       int pos;
9605
9606       for (pos = 0, i = 0; i < XVECLEN (pat, 0); i++)
9607         if (GET_CODE (XVECEXP (pat, 0, i)) != CLOBBER)
9608           {
9609             if (i != pos)
9610               SUBST (XVECEXP (pat, 0, pos), XVECEXP (pat, 0, i));
9611             pos++;
9612           }
9613
9614       SUBST_INT (XVECLEN (pat, 0), pos);
9615
9616       if (pos == 1)
9617         pat = XVECEXP (pat, 0, 0);
9618
9619       insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9620     }
9621
9622   REG_NOTES (insn) = old_notes;
9623
9624   /* If we had any clobbers to add, make a new pattern than contains
9625      them.  Then check to make sure that all of them are dead.  */
9626   if (num_clobbers_to_add)
9627     {
9628       rtx newpat = gen_rtx_PARALLEL (VOIDmode,
9629                                      rtvec_alloc (GET_CODE (pat) == PARALLEL
9630                                                   ? (XVECLEN (pat, 0)
9631                                                      + num_clobbers_to_add)
9632                                                   : num_clobbers_to_add + 1));
9633
9634       if (GET_CODE (pat) == PARALLEL)
9635         for (i = 0; i < XVECLEN (pat, 0); i++)
9636           XVECEXP (newpat, 0, i) = XVECEXP (pat, 0, i);
9637       else
9638         XVECEXP (newpat, 0, 0) = pat;
9639
9640       add_clobbers (newpat, insn_code_number);
9641
9642       for (i = XVECLEN (newpat, 0) - num_clobbers_to_add;
9643            i < XVECLEN (newpat, 0); i++)
9644         {
9645           if (GET_CODE (XEXP (XVECEXP (newpat, 0, i), 0)) == REG
9646               && ! reg_dead_at_p (XEXP (XVECEXP (newpat, 0, i), 0), insn))
9647             return -1;
9648           notes = gen_rtx_EXPR_LIST (REG_UNUSED,
9649                                      XEXP (XVECEXP (newpat, 0, i), 0), notes);
9650         }
9651       pat = newpat;
9652     }
9653
9654   *pnewpat = pat;
9655   *pnotes = notes;
9656
9657   return insn_code_number;
9658 }
9659 \f
9660 /* Like gen_lowpart but for use by combine.  In combine it is not possible
9661    to create any new pseudoregs.  However, it is safe to create
9662    invalid memory addresses, because combine will try to recognize
9663    them and all they will do is make the combine attempt fail.
9664
9665    If for some reason this cannot do its job, an rtx
9666    (clobber (const_int 0)) is returned.
9667    An insn containing that will not be recognized.  */
9668
9669 #undef gen_lowpart
9670
9671 static rtx
9672 gen_lowpart_for_combine (mode, x)
9673      enum machine_mode mode;
9674      register rtx x;
9675 {
9676   rtx result;
9677
9678   if (GET_MODE (x) == mode)
9679     return x;
9680
9681   /* We can only support MODE being wider than a word if X is a
9682      constant integer or has a mode the same size.  */
9683
9684   if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
9685       && ! ((GET_MODE (x) == VOIDmode
9686              && (GET_CODE (x) == CONST_INT
9687                  || GET_CODE (x) == CONST_DOUBLE))
9688             || GET_MODE_SIZE (GET_MODE (x)) == GET_MODE_SIZE (mode)))
9689     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9690
9691   /* X might be a paradoxical (subreg (mem)).  In that case, gen_lowpart
9692      won't know what to do.  So we will strip off the SUBREG here and
9693      process normally.  */
9694   if (GET_CODE (x) == SUBREG && GET_CODE (SUBREG_REG (x)) == MEM)
9695     {
9696       x = SUBREG_REG (x);
9697       if (GET_MODE (x) == mode)
9698         return x;
9699     }
9700
9701   result = gen_lowpart_common (mode, x);
9702 #ifdef CLASS_CANNOT_CHANGE_MODE
9703   if (result != 0
9704       && GET_CODE (result) == SUBREG
9705       && GET_CODE (SUBREG_REG (result)) == REG
9706       && REGNO (SUBREG_REG (result)) >= FIRST_PSEUDO_REGISTER
9707       && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (result),
9708                                      GET_MODE (SUBREG_REG (result))))
9709     REG_CHANGES_MODE (REGNO (SUBREG_REG (result))) = 1;
9710 #endif
9711
9712   if (result)
9713     return result;
9714
9715   if (GET_CODE (x) == MEM)
9716     {
9717       register int offset = 0;
9718       rtx new;
9719
9720       /* Refuse to work on a volatile memory ref or one with a mode-dependent
9721          address.  */
9722       if (MEM_VOLATILE_P (x) || mode_dependent_address_p (XEXP (x, 0)))
9723         return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9724
9725       /* If we want to refer to something bigger than the original memref,
9726          generate a perverse subreg instead.  That will force a reload
9727          of the original memref X.  */
9728       if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode))
9729         return gen_rtx_SUBREG (mode, x, 0);
9730
9731       if (WORDS_BIG_ENDIAN)
9732         offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
9733                   - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
9734
9735       if (BYTES_BIG_ENDIAN)
9736         {
9737           /* Adjust the address so that the address-after-the-data is
9738              unchanged.  */
9739           offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
9740                      - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
9741         }
9742
9743       return adjust_address_nv (x, mode, offset);
9744     }
9745
9746   /* If X is a comparison operator, rewrite it in a new mode.  This
9747      probably won't match, but may allow further simplifications.  */
9748   else if (GET_RTX_CLASS (GET_CODE (x)) == '<')
9749     return gen_rtx_fmt_ee (GET_CODE (x), mode, XEXP (x, 0), XEXP (x, 1));
9750
9751   /* If we couldn't simplify X any other way, just enclose it in a
9752      SUBREG.  Normally, this SUBREG won't match, but some patterns may
9753      include an explicit SUBREG or we may simplify it further in combine.  */
9754   else
9755     {
9756       int offset = 0;
9757       rtx res;
9758
9759       offset = subreg_lowpart_offset (mode, GET_MODE (x));
9760       res = simplify_gen_subreg (mode, x, GET_MODE (x), offset);
9761       if (res)
9762         return res;
9763       return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9764     }
9765 }
9766 \f
9767 /* These routines make binary and unary operations by first seeing if they
9768    fold; if not, a new expression is allocated.  */
9769
9770 static rtx
9771 gen_binary (code, mode, op0, op1)
9772      enum rtx_code code;
9773      enum machine_mode mode;
9774      rtx op0, op1;
9775 {
9776   rtx result;
9777   rtx tem;
9778
9779   if (GET_RTX_CLASS (code) == 'c'
9780       && swap_commutative_operands_p (op0, op1))
9781     tem = op0, op0 = op1, op1 = tem;
9782
9783   if (GET_RTX_CLASS (code) == '<')
9784     {
9785       enum machine_mode op_mode = GET_MODE (op0);
9786
9787       /* Strip the COMPARE from (REL_OP (compare X Y) 0) to get
9788          just (REL_OP X Y).  */
9789       if (GET_CODE (op0) == COMPARE && op1 == const0_rtx)
9790         {
9791           op1 = XEXP (op0, 1);
9792           op0 = XEXP (op0, 0);
9793           op_mode = GET_MODE (op0);
9794         }
9795
9796       if (op_mode == VOIDmode)
9797         op_mode = GET_MODE (op1);
9798       result = simplify_relational_operation (code, op_mode, op0, op1);
9799     }
9800   else
9801     result = simplify_binary_operation (code, mode, op0, op1);
9802
9803   if (result)
9804     return result;
9805
9806   /* Put complex operands first and constants second.  */
9807   if (GET_RTX_CLASS (code) == 'c'
9808       && swap_commutative_operands_p (op0, op1))
9809     return gen_rtx_fmt_ee (code, mode, op1, op0);
9810
9811   /* If we are turning off bits already known off in OP0, we need not do
9812      an AND.  */
9813   else if (code == AND && GET_CODE (op1) == CONST_INT
9814            && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
9815            && (nonzero_bits (op0, mode) & ~INTVAL (op1)) == 0)
9816     return op0;
9817
9818   return gen_rtx_fmt_ee (code, mode, op0, op1);
9819 }
9820 \f
9821 /* Simplify a comparison between *POP0 and *POP1 where CODE is the
9822    comparison code that will be tested.
9823
9824    The result is a possibly different comparison code to use.  *POP0 and
9825    *POP1 may be updated.
9826
9827    It is possible that we might detect that a comparison is either always
9828    true or always false.  However, we do not perform general constant
9829    folding in combine, so this knowledge isn't useful.  Such tautologies
9830    should have been detected earlier.  Hence we ignore all such cases.  */
9831
9832 static enum rtx_code
9833 simplify_comparison (code, pop0, pop1)
9834      enum rtx_code code;
9835      rtx *pop0;
9836      rtx *pop1;
9837 {
9838   rtx op0 = *pop0;
9839   rtx op1 = *pop1;
9840   rtx tem, tem1;
9841   int i;
9842   enum machine_mode mode, tmode;
9843
9844   /* Try a few ways of applying the same transformation to both operands.  */
9845   while (1)
9846     {
9847 #ifndef WORD_REGISTER_OPERATIONS
9848       /* The test below this one won't handle SIGN_EXTENDs on these machines,
9849          so check specially.  */
9850       if (code != GTU && code != GEU && code != LTU && code != LEU
9851           && GET_CODE (op0) == ASHIFTRT && GET_CODE (op1) == ASHIFTRT
9852           && GET_CODE (XEXP (op0, 0)) == ASHIFT
9853           && GET_CODE (XEXP (op1, 0)) == ASHIFT
9854           && GET_CODE (XEXP (XEXP (op0, 0), 0)) == SUBREG
9855           && GET_CODE (XEXP (XEXP (op1, 0), 0)) == SUBREG
9856           && (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0)))
9857               == GET_MODE (SUBREG_REG (XEXP (XEXP (op1, 0), 0))))
9858           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9859           && GET_CODE (XEXP (op1, 1)) == CONST_INT
9860           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
9861           && GET_CODE (XEXP (XEXP (op1, 0), 1)) == CONST_INT
9862           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (op1, 1))
9863           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op0, 0), 1))
9864           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op1, 0), 1))
9865           && (INTVAL (XEXP (op0, 1))
9866               == (GET_MODE_BITSIZE (GET_MODE (op0))
9867                   - (GET_MODE_BITSIZE
9868                      (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0))))))))
9869         {
9870           op0 = SUBREG_REG (XEXP (XEXP (op0, 0), 0));
9871           op1 = SUBREG_REG (XEXP (XEXP (op1, 0), 0));
9872         }
9873 #endif
9874
9875       /* If both operands are the same constant shift, see if we can ignore the
9876          shift.  We can if the shift is a rotate or if the bits shifted out of
9877          this shift are known to be zero for both inputs and if the type of
9878          comparison is compatible with the shift.  */
9879       if (GET_CODE (op0) == GET_CODE (op1)
9880           && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
9881           && ((GET_CODE (op0) == ROTATE && (code == NE || code == EQ))
9882               || ((GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFT)
9883                   && (code != GT && code != LT && code != GE && code != LE))
9884               || (GET_CODE (op0) == ASHIFTRT
9885                   && (code != GTU && code != LTU
9886                       && code != GEU && code != LEU)))
9887           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9888           && INTVAL (XEXP (op0, 1)) >= 0
9889           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
9890           && XEXP (op0, 1) == XEXP (op1, 1))
9891         {
9892           enum machine_mode mode = GET_MODE (op0);
9893           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
9894           int shift_count = INTVAL (XEXP (op0, 1));
9895
9896           if (GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFTRT)
9897             mask &= (mask >> shift_count) << shift_count;
9898           else if (GET_CODE (op0) == ASHIFT)
9899             mask = (mask & (mask << shift_count)) >> shift_count;
9900
9901           if ((nonzero_bits (XEXP (op0, 0), mode) & ~mask) == 0
9902               && (nonzero_bits (XEXP (op1, 0), mode) & ~mask) == 0)
9903             op0 = XEXP (op0, 0), op1 = XEXP (op1, 0);
9904           else
9905             break;
9906         }
9907
9908       /* If both operands are AND's of a paradoxical SUBREG by constant, the
9909          SUBREGs are of the same mode, and, in both cases, the AND would
9910          be redundant if the comparison was done in the narrower mode,
9911          do the comparison in the narrower mode (e.g., we are AND'ing with 1
9912          and the operand's possibly nonzero bits are 0xffffff01; in that case
9913          if we only care about QImode, we don't need the AND).  This case
9914          occurs if the output mode of an scc insn is not SImode and
9915          STORE_FLAG_VALUE == 1 (e.g., the 386).
9916
9917          Similarly, check for a case where the AND's are ZERO_EXTEND
9918          operations from some narrower mode even though a SUBREG is not
9919          present.  */
9920
9921       else if (GET_CODE (op0) == AND && GET_CODE (op1) == AND
9922                && GET_CODE (XEXP (op0, 1)) == CONST_INT
9923                && GET_CODE (XEXP (op1, 1)) == CONST_INT)
9924         {
9925           rtx inner_op0 = XEXP (op0, 0);
9926           rtx inner_op1 = XEXP (op1, 0);
9927           HOST_WIDE_INT c0 = INTVAL (XEXP (op0, 1));
9928           HOST_WIDE_INT c1 = INTVAL (XEXP (op1, 1));
9929           int changed = 0;
9930
9931           if (GET_CODE (inner_op0) == SUBREG && GET_CODE (inner_op1) == SUBREG
9932               && (GET_MODE_SIZE (GET_MODE (inner_op0))
9933                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (inner_op0))))
9934               && (GET_MODE (SUBREG_REG (inner_op0))
9935                   == GET_MODE (SUBREG_REG (inner_op1)))
9936               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (inner_op0)))
9937                   <= HOST_BITS_PER_WIDE_INT)
9938               && (0 == ((~c0) & nonzero_bits (SUBREG_REG (inner_op0),
9939                                              GET_MODE (SUBREG_REG (inner_op0)))))
9940               && (0 == ((~c1) & nonzero_bits (SUBREG_REG (inner_op1),
9941                                              GET_MODE (SUBREG_REG (inner_op1))))))
9942             {
9943               op0 = SUBREG_REG (inner_op0);
9944               op1 = SUBREG_REG (inner_op1);
9945
9946               /* The resulting comparison is always unsigned since we masked
9947                  off the original sign bit.  */
9948               code = unsigned_condition (code);
9949
9950               changed = 1;
9951             }
9952
9953           else if (c0 == c1)
9954             for (tmode = GET_CLASS_NARROWEST_MODE
9955                  (GET_MODE_CLASS (GET_MODE (op0)));
9956                  tmode != GET_MODE (op0); tmode = GET_MODE_WIDER_MODE (tmode))
9957               if ((unsigned HOST_WIDE_INT) c0 == GET_MODE_MASK (tmode))
9958                 {
9959                   op0 = gen_lowpart_for_combine (tmode, inner_op0);
9960                   op1 = gen_lowpart_for_combine (tmode, inner_op1);
9961                   code = unsigned_condition (code);
9962                   changed = 1;
9963                   break;
9964                 }
9965
9966           if (! changed)
9967             break;
9968         }
9969
9970       /* If both operands are NOT, we can strip off the outer operation
9971          and adjust the comparison code for swapped operands; similarly for
9972          NEG, except that this must be an equality comparison.  */
9973       else if ((GET_CODE (op0) == NOT && GET_CODE (op1) == NOT)
9974                || (GET_CODE (op0) == NEG && GET_CODE (op1) == NEG
9975                    && (code == EQ || code == NE)))
9976         op0 = XEXP (op0, 0), op1 = XEXP (op1, 0), code = swap_condition (code);
9977
9978       else
9979         break;
9980     }
9981
9982   /* If the first operand is a constant, swap the operands and adjust the
9983      comparison code appropriately, but don't do this if the second operand
9984      is already a constant integer.  */
9985   if (swap_commutative_operands_p (op0, op1))
9986     {
9987       tem = op0, op0 = op1, op1 = tem;
9988       code = swap_condition (code);
9989     }
9990
9991   /* We now enter a loop during which we will try to simplify the comparison.
9992      For the most part, we only are concerned with comparisons with zero,
9993      but some things may really be comparisons with zero but not start
9994      out looking that way.  */
9995
9996   while (GET_CODE (op1) == CONST_INT)
9997     {
9998       enum machine_mode mode = GET_MODE (op0);
9999       unsigned int mode_width = GET_MODE_BITSIZE (mode);
10000       unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
10001       int equality_comparison_p;
10002       int sign_bit_comparison_p;
10003       int unsigned_comparison_p;
10004       HOST_WIDE_INT const_op;
10005
10006       /* We only want to handle integral modes.  This catches VOIDmode,
10007          CCmode, and the floating-point modes.  An exception is that we
10008          can handle VOIDmode if OP0 is a COMPARE or a comparison
10009          operation.  */
10010
10011       if (GET_MODE_CLASS (mode) != MODE_INT
10012           && ! (mode == VOIDmode
10013                 && (GET_CODE (op0) == COMPARE
10014                     || GET_RTX_CLASS (GET_CODE (op0)) == '<')))
10015         break;
10016
10017       /* Get the constant we are comparing against and turn off all bits
10018          not on in our mode.  */
10019       const_op = trunc_int_for_mode (INTVAL (op1), mode);
10020       op1 = GEN_INT (const_op);
10021
10022       /* If we are comparing against a constant power of two and the value
10023          being compared can only have that single bit nonzero (e.g., it was
10024          `and'ed with that bit), we can replace this with a comparison
10025          with zero.  */
10026       if (const_op
10027           && (code == EQ || code == NE || code == GE || code == GEU
10028               || code == LT || code == LTU)
10029           && mode_width <= HOST_BITS_PER_WIDE_INT
10030           && exact_log2 (const_op) >= 0
10031           && nonzero_bits (op0, mode) == (unsigned HOST_WIDE_INT) const_op)
10032         {
10033           code = (code == EQ || code == GE || code == GEU ? NE : EQ);
10034           op1 = const0_rtx, const_op = 0;
10035         }
10036
10037       /* Similarly, if we are comparing a value known to be either -1 or
10038          0 with -1, change it to the opposite comparison against zero.  */
10039
10040       if (const_op == -1
10041           && (code == EQ || code == NE || code == GT || code == LE
10042               || code == GEU || code == LTU)
10043           && num_sign_bit_copies (op0, mode) == mode_width)
10044         {
10045           code = (code == EQ || code == LE || code == GEU ? NE : EQ);
10046           op1 = const0_rtx, const_op = 0;
10047         }
10048
10049       /* Do some canonicalizations based on the comparison code.  We prefer
10050          comparisons against zero and then prefer equality comparisons.
10051          If we can reduce the size of a constant, we will do that too.  */
10052
10053       switch (code)
10054         {
10055         case LT:
10056           /* < C is equivalent to <= (C - 1) */
10057           if (const_op > 0)
10058             {
10059               const_op -= 1;
10060               op1 = GEN_INT (const_op);
10061               code = LE;
10062               /* ... fall through to LE case below.  */
10063             }
10064           else
10065             break;
10066
10067         case LE:
10068           /* <= C is equivalent to < (C + 1); we do this for C < 0  */
10069           if (const_op < 0)
10070             {
10071               const_op += 1;
10072               op1 = GEN_INT (const_op);
10073               code = LT;
10074             }
10075
10076           /* If we are doing a <= 0 comparison on a value known to have
10077              a zero sign bit, we can replace this with == 0.  */
10078           else if (const_op == 0
10079                    && mode_width <= HOST_BITS_PER_WIDE_INT
10080                    && (nonzero_bits (op0, mode)
10081                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10082             code = EQ;
10083           break;
10084
10085         case GE:
10086           /* >= C is equivalent to > (C - 1).  */
10087           if (const_op > 0)
10088             {
10089               const_op -= 1;
10090               op1 = GEN_INT (const_op);
10091               code = GT;
10092               /* ... fall through to GT below.  */
10093             }
10094           else
10095             break;
10096
10097         case GT:
10098           /* > C is equivalent to >= (C + 1); we do this for C < 0.  */
10099           if (const_op < 0)
10100             {
10101               const_op += 1;
10102               op1 = GEN_INT (const_op);
10103               code = GE;
10104             }
10105
10106           /* If we are doing a > 0 comparison on a value known to have
10107              a zero sign bit, we can replace this with != 0.  */
10108           else if (const_op == 0
10109                    && mode_width <= HOST_BITS_PER_WIDE_INT
10110                    && (nonzero_bits (op0, mode)
10111                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10112             code = NE;
10113           break;
10114
10115         case LTU:
10116           /* < C is equivalent to <= (C - 1).  */
10117           if (const_op > 0)
10118             {
10119               const_op -= 1;
10120               op1 = GEN_INT (const_op);
10121               code = LEU;
10122               /* ... fall through ...  */
10123             }
10124
10125           /* (unsigned) < 0x80000000 is equivalent to >= 0.  */
10126           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10127                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10128             {
10129               const_op = 0, op1 = const0_rtx;
10130               code = GE;
10131               break;
10132             }
10133           else
10134             break;
10135
10136         case LEU:
10137           /* unsigned <= 0 is equivalent to == 0 */
10138           if (const_op == 0)
10139             code = EQ;
10140
10141           /* (unsigned) <= 0x7fffffff is equivalent to >= 0.  */
10142           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10143                    && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10144             {
10145               const_op = 0, op1 = const0_rtx;
10146               code = GE;
10147             }
10148           break;
10149
10150         case GEU:
10151           /* >= C is equivalent to < (C - 1).  */
10152           if (const_op > 1)
10153             {
10154               const_op -= 1;
10155               op1 = GEN_INT (const_op);
10156               code = GTU;
10157               /* ... fall through ...  */
10158             }
10159
10160           /* (unsigned) >= 0x80000000 is equivalent to < 0.  */
10161           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10162                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10163             {
10164               const_op = 0, op1 = const0_rtx;
10165               code = LT;
10166               break;
10167             }
10168           else
10169             break;
10170
10171         case GTU:
10172           /* unsigned > 0 is equivalent to != 0 */
10173           if (const_op == 0)
10174             code = NE;
10175
10176           /* (unsigned) > 0x7fffffff is equivalent to < 0.  */
10177           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10178                     && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10179             {
10180               const_op = 0, op1 = const0_rtx;
10181               code = LT;
10182             }
10183           break;
10184
10185         default:
10186           break;
10187         }
10188
10189       /* Compute some predicates to simplify code below.  */
10190
10191       equality_comparison_p = (code == EQ || code == NE);
10192       sign_bit_comparison_p = ((code == LT || code == GE) && const_op == 0);
10193       unsigned_comparison_p = (code == LTU || code == LEU || code == GTU
10194                                || code == GEU);
10195
10196       /* If this is a sign bit comparison and we can do arithmetic in
10197          MODE, say that we will only be needing the sign bit of OP0.  */
10198       if (sign_bit_comparison_p
10199           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10200         op0 = force_to_mode (op0, mode,
10201                              ((HOST_WIDE_INT) 1
10202                               << (GET_MODE_BITSIZE (mode) - 1)),
10203                              NULL_RTX, 0);
10204
10205       /* Now try cases based on the opcode of OP0.  If none of the cases
10206          does a "continue", we exit this loop immediately after the
10207          switch.  */
10208
10209       switch (GET_CODE (op0))
10210         {
10211         case ZERO_EXTRACT:
10212           /* If we are extracting a single bit from a variable position in
10213              a constant that has only a single bit set and are comparing it
10214              with zero, we can convert this into an equality comparison
10215              between the position and the location of the single bit.  */
10216
10217           if (GET_CODE (XEXP (op0, 0)) == CONST_INT
10218               && XEXP (op0, 1) == const1_rtx
10219               && equality_comparison_p && const_op == 0
10220               && (i = exact_log2 (INTVAL (XEXP (op0, 0)))) >= 0)
10221             {
10222               if (BITS_BIG_ENDIAN)
10223                 {
10224 #ifdef HAVE_extzv
10225                   mode = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
10226                   if (mode == VOIDmode)
10227                     mode = word_mode;
10228                   i = (GET_MODE_BITSIZE (mode) - 1 - i);
10229 #else
10230                   i = BITS_PER_WORD - 1 - i;
10231 #endif
10232                 }
10233
10234               op0 = XEXP (op0, 2);
10235               op1 = GEN_INT (i);
10236               const_op = i;
10237
10238               /* Result is nonzero iff shift count is equal to I.  */
10239               code = reverse_condition (code);
10240               continue;
10241             }
10242
10243           /* ... fall through ...  */
10244
10245         case SIGN_EXTRACT:
10246           tem = expand_compound_operation (op0);
10247           if (tem != op0)
10248             {
10249               op0 = tem;
10250               continue;
10251             }
10252           break;
10253
10254         case NOT:
10255           /* If testing for equality, we can take the NOT of the constant.  */
10256           if (equality_comparison_p
10257               && (tem = simplify_unary_operation (NOT, mode, op1, mode)) != 0)
10258             {
10259               op0 = XEXP (op0, 0);
10260               op1 = tem;
10261               continue;
10262             }
10263
10264           /* If just looking at the sign bit, reverse the sense of the
10265              comparison.  */
10266           if (sign_bit_comparison_p)
10267             {
10268               op0 = XEXP (op0, 0);
10269               code = (code == GE ? LT : GE);
10270               continue;
10271             }
10272           break;
10273
10274         case NEG:
10275           /* If testing for equality, we can take the NEG of the constant.  */
10276           if (equality_comparison_p
10277               && (tem = simplify_unary_operation (NEG, mode, op1, mode)) != 0)
10278             {
10279               op0 = XEXP (op0, 0);
10280               op1 = tem;
10281               continue;
10282             }
10283
10284           /* The remaining cases only apply to comparisons with zero.  */
10285           if (const_op != 0)
10286             break;
10287
10288           /* When X is ABS or is known positive,
10289              (neg X) is < 0 if and only if X != 0.  */
10290
10291           if (sign_bit_comparison_p
10292               && (GET_CODE (XEXP (op0, 0)) == ABS
10293                   || (mode_width <= HOST_BITS_PER_WIDE_INT
10294                       && (nonzero_bits (XEXP (op0, 0), mode)
10295                           & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)))
10296             {
10297               op0 = XEXP (op0, 0);
10298               code = (code == LT ? NE : EQ);
10299               continue;
10300             }
10301
10302           /* If we have NEG of something whose two high-order bits are the
10303              same, we know that "(-a) < 0" is equivalent to "a > 0".  */
10304           if (num_sign_bit_copies (op0, mode) >= 2)
10305             {
10306               op0 = XEXP (op0, 0);
10307               code = swap_condition (code);
10308               continue;
10309             }
10310           break;
10311
10312         case ROTATE:
10313           /* If we are testing equality and our count is a constant, we
10314              can perform the inverse operation on our RHS.  */
10315           if (equality_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10316               && (tem = simplify_binary_operation (ROTATERT, mode,
10317                                                    op1, XEXP (op0, 1))) != 0)
10318             {
10319               op0 = XEXP (op0, 0);
10320               op1 = tem;
10321               continue;
10322             }
10323
10324           /* If we are doing a < 0 or >= 0 comparison, it means we are testing
10325              a particular bit.  Convert it to an AND of a constant of that
10326              bit.  This will be converted into a ZERO_EXTRACT.  */
10327           if (const_op == 0 && sign_bit_comparison_p
10328               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10329               && mode_width <= HOST_BITS_PER_WIDE_INT)
10330             {
10331               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10332                                             ((HOST_WIDE_INT) 1
10333                                              << (mode_width - 1
10334                                                  - INTVAL (XEXP (op0, 1)))));
10335               code = (code == LT ? NE : EQ);
10336               continue;
10337             }
10338
10339           /* Fall through.  */
10340
10341         case ABS:
10342           /* ABS is ignorable inside an equality comparison with zero.  */
10343           if (const_op == 0 && equality_comparison_p)
10344             {
10345               op0 = XEXP (op0, 0);
10346               continue;
10347             }
10348           break;
10349
10350         case SIGN_EXTEND:
10351           /* Can simplify (compare (zero/sign_extend FOO) CONST)
10352              to (compare FOO CONST) if CONST fits in FOO's mode and we
10353              are either testing inequality or have an unsigned comparison
10354              with ZERO_EXTEND or a signed comparison with SIGN_EXTEND.  */
10355           if (! unsigned_comparison_p
10356               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10357                   <= HOST_BITS_PER_WIDE_INT)
10358               && ((unsigned HOST_WIDE_INT) const_op
10359                   < (((unsigned HOST_WIDE_INT) 1
10360                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0))) - 1)))))
10361             {
10362               op0 = XEXP (op0, 0);
10363               continue;
10364             }
10365           break;
10366
10367         case SUBREG:
10368           /* Check for the case where we are comparing A - C1 with C2,
10369              both constants are smaller than 1/2 the maximum positive
10370              value in MODE, and the comparison is equality or unsigned.
10371              In that case, if A is either zero-extended to MODE or has
10372              sufficient sign bits so that the high-order bit in MODE
10373              is a copy of the sign in the inner mode, we can prove that it is
10374              safe to do the operation in the wider mode.  This simplifies
10375              many range checks.  */
10376
10377           if (mode_width <= HOST_BITS_PER_WIDE_INT
10378               && subreg_lowpart_p (op0)
10379               && GET_CODE (SUBREG_REG (op0)) == PLUS
10380               && GET_CODE (XEXP (SUBREG_REG (op0), 1)) == CONST_INT
10381               && INTVAL (XEXP (SUBREG_REG (op0), 1)) < 0
10382               && (-INTVAL (XEXP (SUBREG_REG (op0), 1))
10383                   < (HOST_WIDE_INT) (GET_MODE_MASK (mode) / 2))
10384               && (unsigned HOST_WIDE_INT) const_op < GET_MODE_MASK (mode) / 2
10385               && (0 == (nonzero_bits (XEXP (SUBREG_REG (op0), 0),
10386                                       GET_MODE (SUBREG_REG (op0)))
10387                         & ~GET_MODE_MASK (mode))
10388                   || (num_sign_bit_copies (XEXP (SUBREG_REG (op0), 0),
10389                                            GET_MODE (SUBREG_REG (op0)))
10390                       > (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10391                          - GET_MODE_BITSIZE (mode)))))
10392             {
10393               op0 = SUBREG_REG (op0);
10394               continue;
10395             }
10396
10397           /* If the inner mode is narrower and we are extracting the low part,
10398              we can treat the SUBREG as if it were a ZERO_EXTEND.  */
10399           if (subreg_lowpart_p (op0)
10400               && GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0))) < mode_width)
10401             /* Fall through */ ;
10402           else
10403             break;
10404
10405           /* ... fall through ...  */
10406
10407         case ZERO_EXTEND:
10408           if ((unsigned_comparison_p || equality_comparison_p)
10409               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10410                   <= HOST_BITS_PER_WIDE_INT)
10411               && ((unsigned HOST_WIDE_INT) const_op
10412                   < GET_MODE_MASK (GET_MODE (XEXP (op0, 0)))))
10413             {
10414               op0 = XEXP (op0, 0);
10415               continue;
10416             }
10417           break;
10418
10419         case PLUS:
10420           /* (eq (plus X A) B) -> (eq X (minus B A)).  We can only do
10421              this for equality comparisons due to pathological cases involving
10422              overflows.  */
10423           if (equality_comparison_p
10424               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10425                                                         op1, XEXP (op0, 1))))
10426             {
10427               op0 = XEXP (op0, 0);
10428               op1 = tem;
10429               continue;
10430             }
10431
10432           /* (plus (abs X) (const_int -1)) is < 0 if and only if X == 0.  */
10433           if (const_op == 0 && XEXP (op0, 1) == constm1_rtx
10434               && GET_CODE (XEXP (op0, 0)) == ABS && sign_bit_comparison_p)
10435             {
10436               op0 = XEXP (XEXP (op0, 0), 0);
10437               code = (code == LT ? EQ : NE);
10438               continue;
10439             }
10440           break;
10441
10442         case MINUS:
10443           /* We used to optimize signed comparisons against zero, but that
10444              was incorrect.  Unsigned comparisons against zero (GTU, LEU)
10445              arrive here as equality comparisons, or (GEU, LTU) are
10446              optimized away.  No need to special-case them.  */
10447
10448           /* (eq (minus A B) C) -> (eq A (plus B C)) or
10449              (eq B (minus A C)), whichever simplifies.  We can only do
10450              this for equality comparisons due to pathological cases involving
10451              overflows.  */
10452           if (equality_comparison_p
10453               && 0 != (tem = simplify_binary_operation (PLUS, mode,
10454                                                         XEXP (op0, 1), op1)))
10455             {
10456               op0 = XEXP (op0, 0);
10457               op1 = tem;
10458               continue;
10459             }
10460
10461           if (equality_comparison_p
10462               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10463                                                         XEXP (op0, 0), op1)))
10464             {
10465               op0 = XEXP (op0, 1);
10466               op1 = tem;
10467               continue;
10468             }
10469
10470           /* The sign bit of (minus (ashiftrt X C) X), where C is the number
10471              of bits in X minus 1, is one iff X > 0.  */
10472           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == ASHIFTRT
10473               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10474               && INTVAL (XEXP (XEXP (op0, 0), 1)) == mode_width - 1
10475               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10476             {
10477               op0 = XEXP (op0, 1);
10478               code = (code == GE ? LE : GT);
10479               continue;
10480             }
10481           break;
10482
10483         case XOR:
10484           /* (eq (xor A B) C) -> (eq A (xor B C)).  This is a simplification
10485              if C is zero or B is a constant.  */
10486           if (equality_comparison_p
10487               && 0 != (tem = simplify_binary_operation (XOR, mode,
10488                                                         XEXP (op0, 1), op1)))
10489             {
10490               op0 = XEXP (op0, 0);
10491               op1 = tem;
10492               continue;
10493             }
10494           break;
10495
10496         case EQ:  case NE:
10497         case UNEQ:  case LTGT:
10498         case LT:  case LTU:  case UNLT:  case LE:  case LEU:  case UNLE:
10499         case GT:  case GTU:  case UNGT:  case GE:  case GEU:  case UNGE:
10500         case UNORDERED: case ORDERED:
10501           /* We can't do anything if OP0 is a condition code value, rather
10502              than an actual data value.  */
10503           if (const_op != 0
10504 #ifdef HAVE_cc0
10505               || XEXP (op0, 0) == cc0_rtx
10506 #endif
10507               || GET_MODE_CLASS (GET_MODE (XEXP (op0, 0))) == MODE_CC)
10508             break;
10509
10510           /* Get the two operands being compared.  */
10511           if (GET_CODE (XEXP (op0, 0)) == COMPARE)
10512             tem = XEXP (XEXP (op0, 0), 0), tem1 = XEXP (XEXP (op0, 0), 1);
10513           else
10514             tem = XEXP (op0, 0), tem1 = XEXP (op0, 1);
10515
10516           /* Check for the cases where we simply want the result of the
10517              earlier test or the opposite of that result.  */
10518           if (code == NE || code == EQ
10519               || (GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
10520                   && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10521                   && (STORE_FLAG_VALUE
10522                       & (((HOST_WIDE_INT) 1
10523                           << (GET_MODE_BITSIZE (GET_MODE (op0)) - 1))))
10524                   && (code == LT || code == GE)))
10525             {
10526               enum rtx_code new_code;
10527               if (code == LT || code == NE)
10528                 new_code = GET_CODE (op0);
10529               else
10530                 new_code = combine_reversed_comparison_code (op0);
10531           
10532               if (new_code != UNKNOWN)
10533                 {
10534                   code = new_code;
10535                   op0 = tem;
10536                   op1 = tem1;
10537                   continue;
10538                 }
10539             }
10540           break;
10541
10542         case IOR:
10543           /* The sign bit of (ior (plus X (const_int -1)) X) is non-zero
10544              iff X <= 0.  */
10545           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == PLUS
10546               && XEXP (XEXP (op0, 0), 1) == constm1_rtx
10547               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10548             {
10549               op0 = XEXP (op0, 1);
10550               code = (code == GE ? GT : LE);
10551               continue;
10552             }
10553           break;
10554
10555         case AND:
10556           /* Convert (and (xshift 1 X) Y) to (and (lshiftrt Y X) 1).  This
10557              will be converted to a ZERO_EXTRACT later.  */
10558           if (const_op == 0 && equality_comparison_p
10559               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10560               && XEXP (XEXP (op0, 0), 0) == const1_rtx)
10561             {
10562               op0 = simplify_and_const_int
10563                 (op0, mode, gen_rtx_LSHIFTRT (mode,
10564                                               XEXP (op0, 1),
10565                                               XEXP (XEXP (op0, 0), 1)),
10566                  (HOST_WIDE_INT) 1);
10567               continue;
10568             }
10569
10570           /* If we are comparing (and (lshiftrt X C1) C2) for equality with
10571              zero and X is a comparison and C1 and C2 describe only bits set
10572              in STORE_FLAG_VALUE, we can compare with X.  */
10573           if (const_op == 0 && equality_comparison_p
10574               && mode_width <= HOST_BITS_PER_WIDE_INT
10575               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10576               && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
10577               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10578               && INTVAL (XEXP (XEXP (op0, 0), 1)) >= 0
10579               && INTVAL (XEXP (XEXP (op0, 0), 1)) < HOST_BITS_PER_WIDE_INT)
10580             {
10581               mask = ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10582                       << INTVAL (XEXP (XEXP (op0, 0), 1)));
10583               if ((~STORE_FLAG_VALUE & mask) == 0
10584                   && (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (op0, 0), 0))) == '<'
10585                       || ((tem = get_last_value (XEXP (XEXP (op0, 0), 0))) != 0
10586                           && GET_RTX_CLASS (GET_CODE (tem)) == '<')))
10587                 {
10588                   op0 = XEXP (XEXP (op0, 0), 0);
10589                   continue;
10590                 }
10591             }
10592
10593           /* If we are doing an equality comparison of an AND of a bit equal
10594              to the sign bit, replace this with a LT or GE comparison of
10595              the underlying value.  */
10596           if (equality_comparison_p
10597               && const_op == 0
10598               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10599               && mode_width <= HOST_BITS_PER_WIDE_INT
10600               && ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10601                   == (unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
10602             {
10603               op0 = XEXP (op0, 0);
10604               code = (code == EQ ? GE : LT);
10605               continue;
10606             }
10607
10608           /* If this AND operation is really a ZERO_EXTEND from a narrower
10609              mode, the constant fits within that mode, and this is either an
10610              equality or unsigned comparison, try to do this comparison in
10611              the narrower mode.  */
10612           if ((equality_comparison_p || unsigned_comparison_p)
10613               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10614               && (i = exact_log2 ((INTVAL (XEXP (op0, 1))
10615                                    & GET_MODE_MASK (mode))
10616                                   + 1)) >= 0
10617               && const_op >> i == 0
10618               && (tmode = mode_for_size (i, MODE_INT, 1)) != BLKmode)
10619             {
10620               op0 = gen_lowpart_for_combine (tmode, XEXP (op0, 0));
10621               continue;
10622             }
10623
10624           /* If this is (and:M1 (subreg:M2 X 0) (const_int C1)) where C1 fits
10625              in both M1 and M2 and the SUBREG is either paradoxical or
10626              represents the low part, permute the SUBREG and the AND and
10627              try again.  */
10628           if (GET_CODE (XEXP (op0, 0)) == SUBREG
10629               && (0
10630 #ifdef WORD_REGISTER_OPERATIONS
10631                   || ((mode_width
10632                        > (GET_MODE_BITSIZE
10633                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10634                       && mode_width <= BITS_PER_WORD)
10635 #endif
10636                   || ((mode_width
10637                        <= (GET_MODE_BITSIZE
10638                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10639                       && subreg_lowpart_p (XEXP (op0, 0))))
10640 #ifndef WORD_REGISTER_OPERATIONS
10641               /* It is unsafe to commute the AND into the SUBREG if the SUBREG
10642                  is paradoxical and WORD_REGISTER_OPERATIONS is not defined.
10643                  As originally written the upper bits have a defined value
10644                  due to the AND operation.  However, if we commute the AND
10645                  inside the SUBREG then they no longer have defined values
10646                  and the meaning of the code has been changed.  */
10647               && (GET_MODE_SIZE (GET_MODE (XEXP (op0, 0)))
10648                   <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0)))))
10649 #endif
10650               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10651               && mode_width <= HOST_BITS_PER_WIDE_INT
10652               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10653                   <= HOST_BITS_PER_WIDE_INT)
10654               && (INTVAL (XEXP (op0, 1)) & ~mask) == 0
10655               && 0 == (~GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10656                        & INTVAL (XEXP (op0, 1)))
10657               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1)) != mask
10658               && ((unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1))
10659                   != GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10660
10661             {
10662               op0
10663                 = gen_lowpart_for_combine
10664                   (mode,
10665                    gen_binary (AND, GET_MODE (SUBREG_REG (XEXP (op0, 0))),
10666                                SUBREG_REG (XEXP (op0, 0)), XEXP (op0, 1)));
10667               continue;
10668             }
10669
10670           /* Convert (ne (and (lshiftrt (not X)) 1) 0) to
10671              (eq (and (lshiftrt X) 1) 0).  */
10672           if (const_op == 0 && equality_comparison_p
10673               && XEXP (op0, 1) == const1_rtx
10674               && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
10675               && GET_CODE (XEXP (XEXP (op0, 0), 0)) == NOT)
10676             {
10677               op0 = simplify_and_const_int
10678                 (op0, mode,
10679                  gen_rtx_LSHIFTRT (mode, XEXP (XEXP (XEXP (op0, 0), 0), 0),
10680                                    XEXP (XEXP (op0, 0), 1)),
10681                  (HOST_WIDE_INT) 1);
10682               code = (code == NE ? EQ : NE);
10683               continue;
10684             }
10685           break;
10686
10687         case ASHIFT:
10688           /* If we have (compare (ashift FOO N) (const_int C)) and
10689              the high order N bits of FOO (N+1 if an inequality comparison)
10690              are known to be zero, we can do this by comparing FOO with C
10691              shifted right N bits so long as the low-order N bits of C are
10692              zero.  */
10693           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10694               && INTVAL (XEXP (op0, 1)) >= 0
10695               && ((INTVAL (XEXP (op0, 1)) + ! equality_comparison_p)
10696                   < HOST_BITS_PER_WIDE_INT)
10697               && ((const_op
10698                    & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0)
10699               && mode_width <= HOST_BITS_PER_WIDE_INT
10700               && (nonzero_bits (XEXP (op0, 0), mode)
10701                   & ~(mask >> (INTVAL (XEXP (op0, 1))
10702                                + ! equality_comparison_p))) == 0)
10703             {
10704               /* We must perform a logical shift, not an arithmetic one,
10705                  as we want the top N bits of C to be zero.  */
10706               unsigned HOST_WIDE_INT temp = const_op & GET_MODE_MASK (mode);
10707
10708               temp >>= INTVAL (XEXP (op0, 1));
10709               op1 = GEN_INT (trunc_int_for_mode (temp, mode));
10710               op0 = XEXP (op0, 0);
10711               continue;
10712             }
10713
10714           /* If we are doing a sign bit comparison, it means we are testing
10715              a particular bit.  Convert it to the appropriate AND.  */
10716           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10717               && mode_width <= HOST_BITS_PER_WIDE_INT)
10718             {
10719               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10720                                             ((HOST_WIDE_INT) 1
10721                                              << (mode_width - 1
10722                                                  - INTVAL (XEXP (op0, 1)))));
10723               code = (code == LT ? NE : EQ);
10724               continue;
10725             }
10726
10727           /* If this an equality comparison with zero and we are shifting
10728              the low bit to the sign bit, we can convert this to an AND of the
10729              low-order bit.  */
10730           if (const_op == 0 && equality_comparison_p
10731               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10732               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10733             {
10734               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10735                                             (HOST_WIDE_INT) 1);
10736               continue;
10737             }
10738           break;
10739
10740         case ASHIFTRT:
10741           /* If this is an equality comparison with zero, we can do this
10742              as a logical shift, which might be much simpler.  */
10743           if (equality_comparison_p && const_op == 0
10744               && GET_CODE (XEXP (op0, 1)) == CONST_INT)
10745             {
10746               op0 = simplify_shift_const (NULL_RTX, LSHIFTRT, mode,
10747                                           XEXP (op0, 0),
10748                                           INTVAL (XEXP (op0, 1)));
10749               continue;
10750             }
10751
10752           /* If OP0 is a sign extension and CODE is not an unsigned comparison,
10753              do the comparison in a narrower mode.  */
10754           if (! unsigned_comparison_p
10755               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10756               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10757               && XEXP (op0, 1) == XEXP (XEXP (op0, 0), 1)
10758               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10759                                          MODE_INT, 1)) != BLKmode
10760               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10761                   || ((unsigned HOST_WIDE_INT) -const_op
10762                       <= GET_MODE_MASK (tmode))))
10763             {
10764               op0 = gen_lowpart_for_combine (tmode, XEXP (XEXP (op0, 0), 0));
10765               continue;
10766             }
10767
10768           /* Likewise if OP0 is a PLUS of a sign extension with a
10769              constant, which is usually represented with the PLUS
10770              between the shifts.  */
10771           if (! unsigned_comparison_p
10772               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10773               && GET_CODE (XEXP (op0, 0)) == PLUS
10774               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10775               && GET_CODE (XEXP (XEXP (op0, 0), 0)) == ASHIFT
10776               && XEXP (op0, 1) == XEXP (XEXP (XEXP (op0, 0), 0), 1)
10777               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10778                                          MODE_INT, 1)) != BLKmode
10779               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10780                   || ((unsigned HOST_WIDE_INT) -const_op
10781                       <= GET_MODE_MASK (tmode))))
10782             {
10783               rtx inner = XEXP (XEXP (XEXP (op0, 0), 0), 0);
10784               rtx add_const = XEXP (XEXP (op0, 0), 1);
10785               rtx new_const = gen_binary (ASHIFTRT, GET_MODE (op0), add_const,
10786                                           XEXP (op0, 1));
10787
10788               op0 = gen_binary (PLUS, tmode,
10789                                 gen_lowpart_for_combine (tmode, inner),
10790                                 new_const);
10791               continue;
10792             }
10793
10794           /* ... fall through ...  */
10795         case LSHIFTRT:
10796           /* If we have (compare (xshiftrt FOO N) (const_int C)) and
10797              the low order N bits of FOO are known to be zero, we can do this
10798              by comparing FOO with C shifted left N bits so long as no
10799              overflow occurs.  */
10800           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10801               && INTVAL (XEXP (op0, 1)) >= 0
10802               && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
10803               && mode_width <= HOST_BITS_PER_WIDE_INT
10804               && (nonzero_bits (XEXP (op0, 0), mode)
10805                   & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0
10806               && (const_op == 0
10807                   || (floor_log2 (const_op) + INTVAL (XEXP (op0, 1))
10808                       < mode_width)))
10809             {
10810               const_op <<= INTVAL (XEXP (op0, 1));
10811               op1 = GEN_INT (const_op);
10812               op0 = XEXP (op0, 0);
10813               continue;
10814             }
10815
10816           /* If we are using this shift to extract just the sign bit, we
10817              can replace this with an LT or GE comparison.  */
10818           if (const_op == 0
10819               && (equality_comparison_p || sign_bit_comparison_p)
10820               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10821               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10822             {
10823               op0 = XEXP (op0, 0);
10824               code = (code == NE || code == GT ? LT : GE);
10825               continue;
10826             }
10827           break;
10828
10829         default:
10830           break;
10831         }
10832
10833       break;
10834     }
10835
10836   /* Now make any compound operations involved in this comparison.  Then,
10837      check for an outmost SUBREG on OP0 that is not doing anything or is
10838      paradoxical.  The latter case can only occur when it is known that the
10839      "extra" bits will be zero.  Therefore, it is safe to remove the SUBREG.
10840      We can never remove a SUBREG for a non-equality comparison because the
10841      sign bit is in a different place in the underlying object.  */
10842
10843   op0 = make_compound_operation (op0, op1 == const0_rtx ? COMPARE : SET);
10844   op1 = make_compound_operation (op1, SET);
10845
10846   if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10847       && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10848       && (code == NE || code == EQ)
10849       && ((GET_MODE_SIZE (GET_MODE (op0))
10850            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0))))))
10851     {
10852       op0 = SUBREG_REG (op0);
10853       op1 = gen_lowpart_for_combine (GET_MODE (op0), op1);
10854     }
10855
10856   else if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10857            && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10858            && (code == NE || code == EQ)
10859            && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10860                <= HOST_BITS_PER_WIDE_INT)
10861            && (nonzero_bits (SUBREG_REG (op0), GET_MODE (SUBREG_REG (op0)))
10862                & ~GET_MODE_MASK (GET_MODE (op0))) == 0
10863            && (tem = gen_lowpart_for_combine (GET_MODE (SUBREG_REG (op0)),
10864                                               op1),
10865                (nonzero_bits (tem, GET_MODE (SUBREG_REG (op0)))
10866                 & ~GET_MODE_MASK (GET_MODE (op0))) == 0))
10867     op0 = SUBREG_REG (op0), op1 = tem;
10868
10869   /* We now do the opposite procedure: Some machines don't have compare
10870      insns in all modes.  If OP0's mode is an integer mode smaller than a
10871      word and we can't do a compare in that mode, see if there is a larger
10872      mode for which we can do the compare.  There are a number of cases in
10873      which we can use the wider mode.  */
10874
10875   mode = GET_MODE (op0);
10876   if (mode != VOIDmode && GET_MODE_CLASS (mode) == MODE_INT
10877       && GET_MODE_SIZE (mode) < UNITS_PER_WORD
10878       && cmp_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing)
10879     for (tmode = GET_MODE_WIDER_MODE (mode);
10880          (tmode != VOIDmode
10881           && GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT);
10882          tmode = GET_MODE_WIDER_MODE (tmode))
10883       if (cmp_optab->handlers[(int) tmode].insn_code != CODE_FOR_nothing)
10884         {
10885           /* If the only nonzero bits in OP0 and OP1 are those in the
10886              narrower mode and this is an equality or unsigned comparison,
10887              we can use the wider mode.  Similarly for sign-extended
10888              values, in which case it is true for all comparisons.  */
10889           if (((code == EQ || code == NE
10890                 || code == GEU || code == GTU || code == LEU || code == LTU)
10891                && (nonzero_bits (op0, tmode) & ~GET_MODE_MASK (mode)) == 0
10892                && (nonzero_bits (op1, tmode) & ~GET_MODE_MASK (mode)) == 0)
10893               || ((num_sign_bit_copies (op0, tmode)
10894                    > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))
10895                   && (num_sign_bit_copies (op1, tmode)
10896                       > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))))
10897             {
10898               /* If OP0 is an AND and we don't have an AND in MODE either,
10899                  make a new AND in the proper mode.  */
10900               if (GET_CODE (op0) == AND
10901                   && (add_optab->handlers[(int) mode].insn_code
10902                       == CODE_FOR_nothing))
10903                 op0 = gen_binary (AND, tmode,
10904                                   gen_lowpart_for_combine (tmode,
10905                                                            XEXP (op0, 0)),
10906                                   gen_lowpart_for_combine (tmode,
10907                                                            XEXP (op0, 1)));
10908
10909               op0 = gen_lowpart_for_combine (tmode, op0);
10910               op1 = gen_lowpart_for_combine (tmode, op1);
10911               break;
10912             }
10913
10914           /* If this is a test for negative, we can make an explicit
10915              test of the sign bit.  */
10916
10917           if (op1 == const0_rtx && (code == LT || code == GE)
10918               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10919             {
10920               op0 = gen_binary (AND, tmode,
10921                                 gen_lowpart_for_combine (tmode, op0),
10922                                 GEN_INT ((HOST_WIDE_INT) 1
10923                                          << (GET_MODE_BITSIZE (mode) - 1)));
10924               code = (code == LT) ? NE : EQ;
10925               break;
10926             }
10927         }
10928
10929 #ifdef CANONICALIZE_COMPARISON
10930   /* If this machine only supports a subset of valid comparisons, see if we
10931      can convert an unsupported one into a supported one.  */
10932   CANONICALIZE_COMPARISON (code, op0, op1);
10933 #endif
10934
10935   *pop0 = op0;
10936   *pop1 = op1;
10937
10938   return code;
10939 }
10940 \f
10941 /* Like jump.c' reversed_comparison_code, but use combine infrastructure for
10942    searching backward.  */
10943 static enum rtx_code
10944 combine_reversed_comparison_code (exp)
10945      rtx exp;
10946 {
10947    enum rtx_code code1 = reversed_comparison_code (exp, NULL);
10948    rtx x;
10949
10950    if (code1 != UNKNOWN
10951        || GET_MODE_CLASS (GET_MODE (XEXP (exp, 0))) != MODE_CC)
10952      return code1;
10953    /* Otherwise try and find where the condition codes were last set and
10954       use that.  */
10955    x = get_last_value (XEXP (exp, 0));
10956    if (!x || GET_CODE (x) != COMPARE)
10957      return UNKNOWN;
10958    return reversed_comparison_code_parts (GET_CODE (exp),
10959                                           XEXP (x, 0), XEXP (x, 1), NULL);
10960 }
10961 /* Return comparison with reversed code of EXP and operands OP0 and OP1.
10962    Return NULL_RTX in case we fail to do the reversal.  */
10963 static rtx
10964 reversed_comparison (exp, mode, op0, op1)
10965      rtx exp, op0, op1;
10966      enum machine_mode mode;
10967 {
10968   enum rtx_code reversed_code = combine_reversed_comparison_code (exp);
10969   if (reversed_code == UNKNOWN)
10970     return NULL_RTX;
10971   else
10972     return gen_binary (reversed_code, mode, op0, op1);
10973 }
10974 \f
10975 /* Utility function for following routine.  Called when X is part of a value
10976    being stored into reg_last_set_value.  Sets reg_last_set_table_tick
10977    for each register mentioned.  Similar to mention_regs in cse.c  */
10978
10979 static void
10980 update_table_tick (x)
10981      rtx x;
10982 {
10983   register enum rtx_code code = GET_CODE (x);
10984   register const char *fmt = GET_RTX_FORMAT (code);
10985   register int i;
10986
10987   if (code == REG)
10988     {
10989       unsigned int regno = REGNO (x);
10990       unsigned int endregno
10991         = regno + (regno < FIRST_PSEUDO_REGISTER
10992                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
10993       unsigned int r;
10994
10995       for (r = regno; r < endregno; r++)
10996         reg_last_set_table_tick[r] = label_tick;
10997
10998       return;
10999     }
11000
11001   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11002     /* Note that we can't have an "E" in values stored; see
11003        get_last_value_validate.  */
11004     if (fmt[i] == 'e')
11005       update_table_tick (XEXP (x, i));
11006 }
11007
11008 /* Record that REG is set to VALUE in insn INSN.  If VALUE is zero, we
11009    are saying that the register is clobbered and we no longer know its
11010    value.  If INSN is zero, don't update reg_last_set; this is only permitted
11011    with VALUE also zero and is used to invalidate the register.  */
11012
11013 static void
11014 record_value_for_reg (reg, insn, value)
11015      rtx reg;
11016      rtx insn;
11017      rtx value;
11018 {
11019   unsigned int regno = REGNO (reg);
11020   unsigned int endregno
11021     = regno + (regno < FIRST_PSEUDO_REGISTER
11022                ? HARD_REGNO_NREGS (regno, GET_MODE (reg)) : 1);
11023   unsigned int i;
11024
11025   /* If VALUE contains REG and we have a previous value for REG, substitute
11026      the previous value.  */
11027   if (value && insn && reg_overlap_mentioned_p (reg, value))
11028     {
11029       rtx tem;
11030
11031       /* Set things up so get_last_value is allowed to see anything set up to
11032          our insn.  */
11033       subst_low_cuid = INSN_CUID (insn);
11034       tem = get_last_value (reg);
11035
11036       /* If TEM is simply a binary operation with two CLOBBERs as operands,
11037          it isn't going to be useful and will take a lot of time to process,
11038          so just use the CLOBBER.  */
11039
11040       if (tem)
11041         {
11042           if ((GET_RTX_CLASS (GET_CODE (tem)) == '2'
11043                || GET_RTX_CLASS (GET_CODE (tem)) == 'c')
11044               && GET_CODE (XEXP (tem, 0)) == CLOBBER
11045               && GET_CODE (XEXP (tem, 1)) == CLOBBER)
11046             tem = XEXP (tem, 0);
11047
11048           value = replace_rtx (copy_rtx (value), reg, tem);
11049         }
11050     }
11051
11052   /* For each register modified, show we don't know its value, that
11053      we don't know about its bitwise content, that its value has been
11054      updated, and that we don't know the location of the death of the
11055      register.  */
11056   for (i = regno; i < endregno; i++)
11057     {
11058       if (insn)
11059         reg_last_set[i] = insn;
11060
11061       reg_last_set_value[i] = 0;
11062       reg_last_set_mode[i] = 0;
11063       reg_last_set_nonzero_bits[i] = 0;
11064       reg_last_set_sign_bit_copies[i] = 0;
11065       reg_last_death[i] = 0;
11066     }
11067
11068   /* Mark registers that are being referenced in this value.  */
11069   if (value)
11070     update_table_tick (value);
11071
11072   /* Now update the status of each register being set.
11073      If someone is using this register in this block, set this register
11074      to invalid since we will get confused between the two lives in this
11075      basic block.  This makes using this register always invalid.  In cse, we
11076      scan the table to invalidate all entries using this register, but this
11077      is too much work for us.  */
11078
11079   for (i = regno; i < endregno; i++)
11080     {
11081       reg_last_set_label[i] = label_tick;
11082       if (value && reg_last_set_table_tick[i] == label_tick)
11083         reg_last_set_invalid[i] = 1;
11084       else
11085         reg_last_set_invalid[i] = 0;
11086     }
11087
11088   /* The value being assigned might refer to X (like in "x++;").  In that
11089      case, we must replace it with (clobber (const_int 0)) to prevent
11090      infinite loops.  */
11091   if (value && ! get_last_value_validate (&value, insn,
11092                                           reg_last_set_label[regno], 0))
11093     {
11094       value = copy_rtx (value);
11095       if (! get_last_value_validate (&value, insn,
11096                                      reg_last_set_label[regno], 1))
11097         value = 0;
11098     }
11099
11100   /* For the main register being modified, update the value, the mode, the
11101      nonzero bits, and the number of sign bit copies.  */
11102
11103   reg_last_set_value[regno] = value;
11104
11105   if (value)
11106     {
11107       subst_low_cuid = INSN_CUID (insn);
11108       reg_last_set_mode[regno] = GET_MODE (reg);
11109       reg_last_set_nonzero_bits[regno] = nonzero_bits (value, GET_MODE (reg));
11110       reg_last_set_sign_bit_copies[regno]
11111         = num_sign_bit_copies (value, GET_MODE (reg));
11112     }
11113 }
11114
11115 /* Called via note_stores from record_dead_and_set_regs to handle one
11116    SET or CLOBBER in an insn.  DATA is the instruction in which the
11117    set is occurring.  */
11118
11119 static void
11120 record_dead_and_set_regs_1 (dest, setter, data)
11121      rtx dest, setter;
11122      void *data;
11123 {
11124   rtx record_dead_insn = (rtx) data;
11125
11126   if (GET_CODE (dest) == SUBREG)
11127     dest = SUBREG_REG (dest);
11128
11129   if (GET_CODE (dest) == REG)
11130     {
11131       /* If we are setting the whole register, we know its value.  Otherwise
11132          show that we don't know the value.  We can handle SUBREG in
11133          some cases.  */
11134       if (GET_CODE (setter) == SET && dest == SET_DEST (setter))
11135         record_value_for_reg (dest, record_dead_insn, SET_SRC (setter));
11136       else if (GET_CODE (setter) == SET
11137                && GET_CODE (SET_DEST (setter)) == SUBREG
11138                && SUBREG_REG (SET_DEST (setter)) == dest
11139                && GET_MODE_BITSIZE (GET_MODE (dest)) <= BITS_PER_WORD
11140                && subreg_lowpart_p (SET_DEST (setter)))
11141         record_value_for_reg (dest, record_dead_insn,
11142                               gen_lowpart_for_combine (GET_MODE (dest),
11143                                                        SET_SRC (setter)));
11144       else
11145         record_value_for_reg (dest, record_dead_insn, NULL_RTX);
11146     }
11147   else if (GET_CODE (dest) == MEM
11148            /* Ignore pushes, they clobber nothing.  */
11149            && ! push_operand (dest, GET_MODE (dest)))
11150     mem_last_set = INSN_CUID (record_dead_insn);
11151 }
11152
11153 /* Update the records of when each REG was most recently set or killed
11154    for the things done by INSN.  This is the last thing done in processing
11155    INSN in the combiner loop.
11156
11157    We update reg_last_set, reg_last_set_value, reg_last_set_mode,
11158    reg_last_set_nonzero_bits, reg_last_set_sign_bit_copies, reg_last_death,
11159    and also the similar information mem_last_set (which insn most recently
11160    modified memory) and last_call_cuid (which insn was the most recent
11161    subroutine call).  */
11162
11163 static void
11164 record_dead_and_set_regs (insn)
11165      rtx insn;
11166 {
11167   register rtx link;
11168   unsigned int i;
11169
11170   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
11171     {
11172       if (REG_NOTE_KIND (link) == REG_DEAD
11173           && GET_CODE (XEXP (link, 0)) == REG)
11174         {
11175           unsigned int regno = REGNO (XEXP (link, 0));
11176           unsigned int endregno
11177             = regno + (regno < FIRST_PSEUDO_REGISTER
11178                        ? HARD_REGNO_NREGS (regno, GET_MODE (XEXP (link, 0)))
11179                        : 1);
11180
11181           for (i = regno; i < endregno; i++)
11182             reg_last_death[i] = insn;
11183         }
11184       else if (REG_NOTE_KIND (link) == REG_INC)
11185         record_value_for_reg (XEXP (link, 0), insn, NULL_RTX);
11186     }
11187
11188   if (GET_CODE (insn) == CALL_INSN)
11189     {
11190       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
11191         if (call_used_regs[i])
11192           {
11193             reg_last_set_value[i] = 0;
11194             reg_last_set_mode[i] = 0;
11195             reg_last_set_nonzero_bits[i] = 0;
11196             reg_last_set_sign_bit_copies[i] = 0;
11197             reg_last_death[i] = 0;
11198           }
11199
11200       last_call_cuid = mem_last_set = INSN_CUID (insn);
11201     }
11202
11203   note_stores (PATTERN (insn), record_dead_and_set_regs_1, insn);
11204 }
11205
11206 /* If a SUBREG has the promoted bit set, it is in fact a property of the
11207    register present in the SUBREG, so for each such SUBREG go back and
11208    adjust nonzero and sign bit information of the registers that are
11209    known to have some zero/sign bits set.
11210
11211    This is needed because when combine blows the SUBREGs away, the
11212    information on zero/sign bits is lost and further combines can be
11213    missed because of that.  */
11214
11215 static void
11216 record_promoted_value (insn, subreg)
11217      rtx insn;
11218      rtx subreg;
11219 {
11220   rtx links, set;
11221   unsigned int regno = REGNO (SUBREG_REG (subreg));
11222   enum machine_mode mode = GET_MODE (subreg);
11223
11224   if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
11225     return;
11226
11227   for (links = LOG_LINKS (insn); links;)
11228     {
11229       insn = XEXP (links, 0);
11230       set = single_set (insn);
11231
11232       if (! set || GET_CODE (SET_DEST (set)) != REG
11233           || REGNO (SET_DEST (set)) != regno
11234           || GET_MODE (SET_DEST (set)) != GET_MODE (SUBREG_REG (subreg)))
11235         {
11236           links = XEXP (links, 1);
11237           continue;
11238         }
11239
11240       if (reg_last_set[regno] == insn)
11241         {
11242           if (SUBREG_PROMOTED_UNSIGNED_P (subreg))
11243             reg_last_set_nonzero_bits[regno] &= GET_MODE_MASK (mode);
11244         }
11245
11246       if (GET_CODE (SET_SRC (set)) == REG)
11247         {
11248           regno = REGNO (SET_SRC (set));
11249           links = LOG_LINKS (insn);
11250         }
11251       else
11252         break;
11253     }
11254 }
11255
11256 /* Scan X for promoted SUBREGs.  For each one found,
11257    note what it implies to the registers used in it.  */
11258
11259 static void
11260 check_promoted_subreg (insn, x)
11261      rtx insn;
11262      rtx x;
11263 {
11264   if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
11265       && GET_CODE (SUBREG_REG (x)) == REG)
11266     record_promoted_value (insn, x);
11267   else
11268     {
11269       const char *format = GET_RTX_FORMAT (GET_CODE (x));
11270       int i, j;
11271
11272       for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
11273         switch (format[i])
11274           {
11275           case 'e':
11276             check_promoted_subreg (insn, XEXP (x, i));
11277             break;
11278           case 'V':
11279           case 'E':
11280             if (XVEC (x, i) != 0)
11281               for (j = 0; j < XVECLEN (x, i); j++)
11282                 check_promoted_subreg (insn, XVECEXP (x, i, j));
11283             break;
11284           }
11285     }
11286 }
11287 \f
11288 /* Utility routine for the following function.  Verify that all the registers
11289    mentioned in *LOC are valid when *LOC was part of a value set when
11290    label_tick == TICK.  Return 0 if some are not.
11291
11292    If REPLACE is non-zero, replace the invalid reference with
11293    (clobber (const_int 0)) and return 1.  This replacement is useful because
11294    we often can get useful information about the form of a value (e.g., if
11295    it was produced by a shift that always produces -1 or 0) even though
11296    we don't know exactly what registers it was produced from.  */
11297
11298 static int
11299 get_last_value_validate (loc, insn, tick, replace)
11300      rtx *loc;
11301      rtx insn;
11302      int tick;
11303      int replace;
11304 {
11305   rtx x = *loc;
11306   const char *fmt = GET_RTX_FORMAT (GET_CODE (x));
11307   int len = GET_RTX_LENGTH (GET_CODE (x));
11308   int i;
11309
11310   if (GET_CODE (x) == REG)
11311     {
11312       unsigned int regno = REGNO (x);
11313       unsigned int endregno
11314         = regno + (regno < FIRST_PSEUDO_REGISTER
11315                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11316       unsigned int j;
11317
11318       for (j = regno; j < endregno; j++)
11319         if (reg_last_set_invalid[j]
11320             /* If this is a pseudo-register that was only set once and not
11321                live at the beginning of the function, it is always valid.  */
11322             || (! (regno >= FIRST_PSEUDO_REGISTER
11323                    && REG_N_SETS (regno) == 1
11324                    && (! REGNO_REG_SET_P
11325                        (BASIC_BLOCK (0)->global_live_at_start, regno)))
11326                 && reg_last_set_label[j] > tick))
11327           {
11328             if (replace)
11329               *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11330             return replace;
11331           }
11332
11333       return 1;
11334     }
11335   /* If this is a memory reference, make sure that there were
11336      no stores after it that might have clobbered the value.  We don't
11337      have alias info, so we assume any store invalidates it.  */
11338   else if (GET_CODE (x) == MEM && ! RTX_UNCHANGING_P (x)
11339            && INSN_CUID (insn) <= mem_last_set)
11340     {
11341       if (replace)
11342         *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11343       return replace;
11344     }
11345
11346   for (i = 0; i < len; i++)
11347     if ((fmt[i] == 'e'
11348          && get_last_value_validate (&XEXP (x, i), insn, tick, replace) == 0)
11349         /* Don't bother with these.  They shouldn't occur anyway.  */
11350         || fmt[i] == 'E')
11351       return 0;
11352
11353   /* If we haven't found a reason for it to be invalid, it is valid.  */
11354   return 1;
11355 }
11356
11357 /* Get the last value assigned to X, if known.  Some registers
11358    in the value may be replaced with (clobber (const_int 0)) if their value
11359    is known longer known reliably.  */
11360
11361 static rtx
11362 get_last_value (x)
11363      rtx x;
11364 {
11365   unsigned int regno;
11366   rtx value;
11367
11368   /* If this is a non-paradoxical SUBREG, get the value of its operand and
11369      then convert it to the desired mode.  If this is a paradoxical SUBREG,
11370      we cannot predict what values the "extra" bits might have.  */
11371   if (GET_CODE (x) == SUBREG
11372       && subreg_lowpart_p (x)
11373       && (GET_MODE_SIZE (GET_MODE (x))
11374           <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
11375       && (value = get_last_value (SUBREG_REG (x))) != 0)
11376     return gen_lowpart_for_combine (GET_MODE (x), value);
11377
11378   if (GET_CODE (x) != REG)
11379     return 0;
11380
11381   regno = REGNO (x);
11382   value = reg_last_set_value[regno];
11383
11384   /* If we don't have a value, or if it isn't for this basic block and
11385      it's either a hard register, set more than once, or it's a live
11386      at the beginning of the function, return 0.
11387
11388      Because if it's not live at the beginnning of the function then the reg
11389      is always set before being used (is never used without being set).
11390      And, if it's set only once, and it's always set before use, then all
11391      uses must have the same last value, even if it's not from this basic
11392      block.  */
11393
11394   if (value == 0
11395       || (reg_last_set_label[regno] != label_tick
11396           && (regno < FIRST_PSEUDO_REGISTER
11397               || REG_N_SETS (regno) != 1
11398               || (REGNO_REG_SET_P
11399                   (BASIC_BLOCK (0)->global_live_at_start, regno)))))
11400     return 0;
11401
11402   /* If the value was set in a later insn than the ones we are processing,
11403      we can't use it even if the register was only set once.  */
11404   if (INSN_CUID (reg_last_set[regno]) >= subst_low_cuid)
11405     return 0;
11406
11407   /* If the value has all its registers valid, return it.  */
11408   if (get_last_value_validate (&value, reg_last_set[regno],
11409                                reg_last_set_label[regno], 0))
11410     return value;
11411
11412   /* Otherwise, make a copy and replace any invalid register with
11413      (clobber (const_int 0)).  If that fails for some reason, return 0.  */
11414
11415   value = copy_rtx (value);
11416   if (get_last_value_validate (&value, reg_last_set[regno],
11417                                reg_last_set_label[regno], 1))
11418     return value;
11419
11420   return 0;
11421 }
11422 \f
11423 /* Return nonzero if expression X refers to a REG or to memory
11424    that is set in an instruction more recent than FROM_CUID.  */
11425
11426 static int
11427 use_crosses_set_p (x, from_cuid)
11428      register rtx x;
11429      int from_cuid;
11430 {
11431   register const char *fmt;
11432   register int i;
11433   register enum rtx_code code = GET_CODE (x);
11434
11435   if (code == REG)
11436     {
11437       unsigned int regno = REGNO (x);
11438       unsigned endreg = regno + (regno < FIRST_PSEUDO_REGISTER
11439                                  ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11440
11441 #ifdef PUSH_ROUNDING
11442       /* Don't allow uses of the stack pointer to be moved,
11443          because we don't know whether the move crosses a push insn.  */
11444       if (regno == STACK_POINTER_REGNUM && PUSH_ARGS)
11445         return 1;
11446 #endif
11447       for (; regno < endreg; regno++)
11448         if (reg_last_set[regno]
11449             && INSN_CUID (reg_last_set[regno]) > from_cuid)
11450           return 1;
11451       return 0;
11452     }
11453
11454   if (code == MEM && mem_last_set > from_cuid)
11455     return 1;
11456
11457   fmt = GET_RTX_FORMAT (code);
11458
11459   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11460     {
11461       if (fmt[i] == 'E')
11462         {
11463           register int j;
11464           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11465             if (use_crosses_set_p (XVECEXP (x, i, j), from_cuid))
11466               return 1;
11467         }
11468       else if (fmt[i] == 'e'
11469                && use_crosses_set_p (XEXP (x, i), from_cuid))
11470         return 1;
11471     }
11472   return 0;
11473 }
11474 \f
11475 /* Define three variables used for communication between the following
11476    routines.  */
11477
11478 static unsigned int reg_dead_regno, reg_dead_endregno;
11479 static int reg_dead_flag;
11480
11481 /* Function called via note_stores from reg_dead_at_p.
11482
11483    If DEST is within [reg_dead_regno, reg_dead_endregno), set
11484    reg_dead_flag to 1 if X is a CLOBBER and to -1 it is a SET.  */
11485
11486 static void
11487 reg_dead_at_p_1 (dest, x, data)
11488      rtx dest;
11489      rtx x;
11490      void *data ATTRIBUTE_UNUSED;
11491 {
11492   unsigned int regno, endregno;
11493
11494   if (GET_CODE (dest) != REG)
11495     return;
11496
11497   regno = REGNO (dest);
11498   endregno = regno + (regno < FIRST_PSEUDO_REGISTER
11499                       ? HARD_REGNO_NREGS (regno, GET_MODE (dest)) : 1);
11500
11501   if (reg_dead_endregno > regno && reg_dead_regno < endregno)
11502     reg_dead_flag = (GET_CODE (x) == CLOBBER) ? 1 : -1;
11503 }
11504
11505 /* Return non-zero if REG is known to be dead at INSN.
11506
11507    We scan backwards from INSN.  If we hit a REG_DEAD note or a CLOBBER
11508    referencing REG, it is dead.  If we hit a SET referencing REG, it is
11509    live.  Otherwise, see if it is live or dead at the start of the basic
11510    block we are in.  Hard regs marked as being live in NEWPAT_USED_REGS
11511    must be assumed to be always live.  */
11512
11513 static int
11514 reg_dead_at_p (reg, insn)
11515      rtx reg;
11516      rtx insn;
11517 {
11518   int block;
11519   unsigned int i;
11520
11521   /* Set variables for reg_dead_at_p_1.  */
11522   reg_dead_regno = REGNO (reg);
11523   reg_dead_endregno = reg_dead_regno + (reg_dead_regno < FIRST_PSEUDO_REGISTER
11524                                         ? HARD_REGNO_NREGS (reg_dead_regno,
11525                                                             GET_MODE (reg))
11526                                         : 1);
11527
11528   reg_dead_flag = 0;
11529
11530   /* Check that reg isn't mentioned in NEWPAT_USED_REGS.  */
11531   if (reg_dead_regno < FIRST_PSEUDO_REGISTER)
11532     {
11533       for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11534         if (TEST_HARD_REG_BIT (newpat_used_regs, i))
11535           return 0;
11536     }
11537
11538   /* Scan backwards until we find a REG_DEAD note, SET, CLOBBER, label, or
11539      beginning of function.  */
11540   for (; insn && GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != BARRIER;
11541        insn = prev_nonnote_insn (insn))
11542     {
11543       note_stores (PATTERN (insn), reg_dead_at_p_1, NULL);
11544       if (reg_dead_flag)
11545         return reg_dead_flag == 1 ? 1 : 0;
11546
11547       if (find_regno_note (insn, REG_DEAD, reg_dead_regno))
11548         return 1;
11549     }
11550
11551   /* Get the basic block number that we were in.  */
11552   if (insn == 0)
11553     block = 0;
11554   else
11555     {
11556       for (block = 0; block < n_basic_blocks; block++)
11557         if (insn == BLOCK_HEAD (block))
11558           break;
11559
11560       if (block == n_basic_blocks)
11561         return 0;
11562     }
11563
11564   for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11565     if (REGNO_REG_SET_P (BASIC_BLOCK (block)->global_live_at_start, i))
11566       return 0;
11567
11568   return 1;
11569 }
11570 \f
11571 /* Note hard registers in X that are used.  This code is similar to
11572    that in flow.c, but much simpler since we don't care about pseudos.  */
11573
11574 static void
11575 mark_used_regs_combine (x)
11576      rtx x;
11577 {
11578   RTX_CODE code = GET_CODE (x);
11579   unsigned int regno;
11580   int i;
11581
11582   switch (code)
11583     {
11584     case LABEL_REF:
11585     case SYMBOL_REF:
11586     case CONST_INT:
11587     case CONST:
11588     case CONST_DOUBLE:
11589     case PC:
11590     case ADDR_VEC:
11591     case ADDR_DIFF_VEC:
11592     case ASM_INPUT:
11593 #ifdef HAVE_cc0
11594     /* CC0 must die in the insn after it is set, so we don't need to take
11595        special note of it here.  */
11596     case CC0:
11597 #endif
11598       return;
11599
11600     case CLOBBER:
11601       /* If we are clobbering a MEM, mark any hard registers inside the
11602          address as used.  */
11603       if (GET_CODE (XEXP (x, 0)) == MEM)
11604         mark_used_regs_combine (XEXP (XEXP (x, 0), 0));
11605       return;
11606
11607     case REG:
11608       regno = REGNO (x);
11609       /* A hard reg in a wide mode may really be multiple registers.
11610          If so, mark all of them just like the first.  */
11611       if (regno < FIRST_PSEUDO_REGISTER)
11612         {
11613           unsigned int endregno, r;
11614
11615           /* None of this applies to the stack, frame or arg pointers */
11616           if (regno == STACK_POINTER_REGNUM
11617 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
11618               || regno == HARD_FRAME_POINTER_REGNUM
11619 #endif
11620 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
11621               || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
11622 #endif
11623               || regno == FRAME_POINTER_REGNUM)
11624             return;
11625
11626           endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11627           for (r = regno; r < endregno; r++)
11628             SET_HARD_REG_BIT (newpat_used_regs, r);
11629         }
11630       return;
11631
11632     case SET:
11633       {
11634         /* If setting a MEM, or a SUBREG of a MEM, then note any hard regs in
11635            the address.  */
11636         register rtx testreg = SET_DEST (x);
11637
11638         while (GET_CODE (testreg) == SUBREG
11639                || GET_CODE (testreg) == ZERO_EXTRACT
11640                || GET_CODE (testreg) == SIGN_EXTRACT
11641                || GET_CODE (testreg) == STRICT_LOW_PART)
11642           testreg = XEXP (testreg, 0);
11643
11644         if (GET_CODE (testreg) == MEM)
11645           mark_used_regs_combine (XEXP (testreg, 0));
11646
11647         mark_used_regs_combine (SET_SRC (x));
11648       }
11649       return;
11650
11651     default:
11652       break;
11653     }
11654
11655   /* Recursively scan the operands of this expression.  */
11656
11657   {
11658     register const char *fmt = GET_RTX_FORMAT (code);
11659
11660     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11661       {
11662         if (fmt[i] == 'e')
11663           mark_used_regs_combine (XEXP (x, i));
11664         else if (fmt[i] == 'E')
11665           {
11666             register int j;
11667
11668             for (j = 0; j < XVECLEN (x, i); j++)
11669               mark_used_regs_combine (XVECEXP (x, i, j));
11670           }
11671       }
11672   }
11673 }
11674 \f
11675 /* Remove register number REGNO from the dead registers list of INSN.
11676
11677    Return the note used to record the death, if there was one.  */
11678
11679 rtx
11680 remove_death (regno, insn)
11681      unsigned int regno;
11682      rtx insn;
11683 {
11684   register rtx note = find_regno_note (insn, REG_DEAD, regno);
11685
11686   if (note)
11687     {
11688       REG_N_DEATHS (regno)--;
11689       remove_note (insn, note);
11690     }
11691
11692   return note;
11693 }
11694
11695 /* For each register (hardware or pseudo) used within expression X, if its
11696    death is in an instruction with cuid between FROM_CUID (inclusive) and
11697    TO_INSN (exclusive), put a REG_DEAD note for that register in the
11698    list headed by PNOTES.
11699
11700    That said, don't move registers killed by maybe_kill_insn.
11701
11702    This is done when X is being merged by combination into TO_INSN.  These
11703    notes will then be distributed as needed.  */
11704
11705 static void
11706 move_deaths (x, maybe_kill_insn, from_cuid, to_insn, pnotes)
11707      rtx x;
11708      rtx maybe_kill_insn;
11709      int from_cuid;
11710      rtx to_insn;
11711      rtx *pnotes;
11712 {
11713   register const char *fmt;
11714   register int len, i;
11715   register enum rtx_code code = GET_CODE (x);
11716
11717   if (code == REG)
11718     {
11719       unsigned int regno = REGNO (x);
11720       register rtx where_dead = reg_last_death[regno];
11721       register rtx before_dead, after_dead;
11722
11723       /* Don't move the register if it gets killed in between from and to */
11724       if (maybe_kill_insn && reg_set_p (x, maybe_kill_insn)
11725           && ! reg_referenced_p (x, maybe_kill_insn))
11726         return;
11727
11728       /* WHERE_DEAD could be a USE insn made by combine, so first we
11729          make sure that we have insns with valid INSN_CUID values.  */
11730       before_dead = where_dead;
11731       while (before_dead && INSN_UID (before_dead) > max_uid_cuid)
11732         before_dead = PREV_INSN (before_dead);
11733
11734       after_dead = where_dead;
11735       while (after_dead && INSN_UID (after_dead) > max_uid_cuid)
11736         after_dead = NEXT_INSN (after_dead);
11737
11738       if (before_dead && after_dead
11739           && INSN_CUID (before_dead) >= from_cuid
11740           && (INSN_CUID (after_dead) < INSN_CUID (to_insn)
11741               || (where_dead != after_dead
11742                   && INSN_CUID (after_dead) == INSN_CUID (to_insn))))
11743         {
11744           rtx note = remove_death (regno, where_dead);
11745
11746           /* It is possible for the call above to return 0.  This can occur
11747              when reg_last_death points to I2 or I1 that we combined with.
11748              In that case make a new note.
11749
11750              We must also check for the case where X is a hard register
11751              and NOTE is a death note for a range of hard registers
11752              including X.  In that case, we must put REG_DEAD notes for
11753              the remaining registers in place of NOTE.  */
11754
11755           if (note != 0 && regno < FIRST_PSEUDO_REGISTER
11756               && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11757                   > GET_MODE_SIZE (GET_MODE (x))))
11758             {
11759               unsigned int deadregno = REGNO (XEXP (note, 0));
11760               unsigned int deadend
11761                 = (deadregno + HARD_REGNO_NREGS (deadregno,
11762                                                  GET_MODE (XEXP (note, 0))));
11763               unsigned int ourend
11764                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11765               unsigned int i;
11766
11767               for (i = deadregno; i < deadend; i++)
11768                 if (i < regno || i >= ourend)
11769                   REG_NOTES (where_dead)
11770                     = gen_rtx_EXPR_LIST (REG_DEAD,
11771                                          gen_rtx_REG (reg_raw_mode[i], i),
11772                                          REG_NOTES (where_dead));
11773             }
11774
11775           /* If we didn't find any note, or if we found a REG_DEAD note that
11776              covers only part of the given reg, and we have a multi-reg hard
11777              register, then to be safe we must check for REG_DEAD notes
11778              for each register other than the first.  They could have
11779              their own REG_DEAD notes lying around.  */
11780           else if ((note == 0
11781                     || (note != 0
11782                         && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11783                             < GET_MODE_SIZE (GET_MODE (x)))))
11784                    && regno < FIRST_PSEUDO_REGISTER
11785                    && HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
11786             {
11787               unsigned int ourend
11788                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11789               unsigned int i, offset;
11790               rtx oldnotes = 0;
11791
11792               if (note)
11793                 offset = HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0)));
11794               else
11795                 offset = 1;
11796
11797               for (i = regno + offset; i < ourend; i++)
11798                 move_deaths (gen_rtx_REG (reg_raw_mode[i], i),
11799                              maybe_kill_insn, from_cuid, to_insn, &oldnotes);
11800             }
11801
11802           if (note != 0 && GET_MODE (XEXP (note, 0)) == GET_MODE (x))
11803             {
11804               XEXP (note, 1) = *pnotes;
11805               *pnotes = note;
11806             }
11807           else
11808             *pnotes = gen_rtx_EXPR_LIST (REG_DEAD, x, *pnotes);
11809
11810           REG_N_DEATHS (regno)++;
11811         }
11812
11813       return;
11814     }
11815
11816   else if (GET_CODE (x) == SET)
11817     {
11818       rtx dest = SET_DEST (x);
11819
11820       move_deaths (SET_SRC (x), maybe_kill_insn, from_cuid, to_insn, pnotes);
11821
11822       /* In the case of a ZERO_EXTRACT, a STRICT_LOW_PART, or a SUBREG
11823          that accesses one word of a multi-word item, some
11824          piece of everything register in the expression is used by
11825          this insn, so remove any old death.  */
11826       /* ??? So why do we test for equality of the sizes?  */
11827
11828       if (GET_CODE (dest) == ZERO_EXTRACT
11829           || GET_CODE (dest) == STRICT_LOW_PART
11830           || (GET_CODE (dest) == SUBREG
11831               && (((GET_MODE_SIZE (GET_MODE (dest))
11832                     + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
11833                   == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
11834                        + UNITS_PER_WORD - 1) / UNITS_PER_WORD))))
11835         {
11836           move_deaths (dest, maybe_kill_insn, from_cuid, to_insn, pnotes);
11837           return;
11838         }
11839
11840       /* If this is some other SUBREG, we know it replaces the entire
11841          value, so use that as the destination.  */
11842       if (GET_CODE (dest) == SUBREG)
11843         dest = SUBREG_REG (dest);
11844
11845       /* If this is a MEM, adjust deaths of anything used in the address.
11846          For a REG (the only other possibility), the entire value is
11847          being replaced so the old value is not used in this insn.  */
11848
11849       if (GET_CODE (dest) == MEM)
11850         move_deaths (XEXP (dest, 0), maybe_kill_insn, from_cuid,
11851                      to_insn, pnotes);
11852       return;
11853     }
11854
11855   else if (GET_CODE (x) == CLOBBER)
11856     return;
11857
11858   len = GET_RTX_LENGTH (code);
11859   fmt = GET_RTX_FORMAT (code);
11860
11861   for (i = 0; i < len; i++)
11862     {
11863       if (fmt[i] == 'E')
11864         {
11865           register int j;
11866           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11867             move_deaths (XVECEXP (x, i, j), maybe_kill_insn, from_cuid,
11868                          to_insn, pnotes);
11869         }
11870       else if (fmt[i] == 'e')
11871         move_deaths (XEXP (x, i), maybe_kill_insn, from_cuid, to_insn, pnotes);
11872     }
11873 }
11874 \f
11875 /* Return 1 if X is the target of a bit-field assignment in BODY, the
11876    pattern of an insn.  X must be a REG.  */
11877
11878 static int
11879 reg_bitfield_target_p (x, body)
11880      rtx x;
11881      rtx body;
11882 {
11883   int i;
11884
11885   if (GET_CODE (body) == SET)
11886     {
11887       rtx dest = SET_DEST (body);
11888       rtx target;
11889       unsigned int regno, tregno, endregno, endtregno;
11890
11891       if (GET_CODE (dest) == ZERO_EXTRACT)
11892         target = XEXP (dest, 0);
11893       else if (GET_CODE (dest) == STRICT_LOW_PART)
11894         target = SUBREG_REG (XEXP (dest, 0));
11895       else
11896         return 0;
11897
11898       if (GET_CODE (target) == SUBREG)
11899         target = SUBREG_REG (target);
11900
11901       if (GET_CODE (target) != REG)
11902         return 0;
11903
11904       tregno = REGNO (target), regno = REGNO (x);
11905       if (tregno >= FIRST_PSEUDO_REGISTER || regno >= FIRST_PSEUDO_REGISTER)
11906         return target == x;
11907
11908       endtregno = tregno + HARD_REGNO_NREGS (tregno, GET_MODE (target));
11909       endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11910
11911       return endregno > tregno && regno < endtregno;
11912     }
11913
11914   else if (GET_CODE (body) == PARALLEL)
11915     for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
11916       if (reg_bitfield_target_p (x, XVECEXP (body, 0, i)))
11917         return 1;
11918
11919   return 0;
11920 }
11921 \f
11922 /* Given a chain of REG_NOTES originally from FROM_INSN, try to place them
11923    as appropriate.  I3 and I2 are the insns resulting from the combination
11924    insns including FROM (I2 may be zero).
11925
11926    ELIM_I2 and ELIM_I1 are either zero or registers that we know will
11927    not need REG_DEAD notes because they are being substituted for.  This
11928    saves searching in the most common cases.
11929
11930    Each note in the list is either ignored or placed on some insns, depending
11931    on the type of note.  */
11932
11933 static void
11934 distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
11935      rtx notes;
11936      rtx from_insn;
11937      rtx i3, i2;
11938      rtx elim_i2, elim_i1;
11939 {
11940   rtx note, next_note;
11941   rtx tem;
11942
11943   for (note = notes; note; note = next_note)
11944     {
11945       rtx place = 0, place2 = 0;
11946
11947       /* If this NOTE references a pseudo register, ensure it references
11948          the latest copy of that register.  */
11949       if (XEXP (note, 0) && GET_CODE (XEXP (note, 0)) == REG
11950           && REGNO (XEXP (note, 0)) >= FIRST_PSEUDO_REGISTER)
11951         XEXP (note, 0) = regno_reg_rtx[REGNO (XEXP (note, 0))];
11952
11953       next_note = XEXP (note, 1);
11954       switch (REG_NOTE_KIND (note))
11955         {
11956         case REG_BR_PROB:
11957         case REG_BR_PRED:
11958         case REG_EXEC_COUNT:
11959           /* Doesn't matter much where we put this, as long as it's somewhere.
11960              It is preferable to keep these notes on branches, which is most
11961              likely to be i3.  */
11962           place = i3;
11963           break;
11964
11965         case REG_NON_LOCAL_GOTO:
11966           if (GET_CODE (i3) == JUMP_INSN)
11967             place = i3;
11968           else if (i2 && GET_CODE (i2) == JUMP_INSN)
11969             place = i2;
11970           else
11971             abort();
11972           break;
11973
11974         case REG_EH_REGION:
11975           /* These notes must remain with the call or trapping instruction.  */
11976           if (GET_CODE (i3) == CALL_INSN)
11977             place = i3;
11978           else if (i2 && GET_CODE (i2) == CALL_INSN)
11979             place = i2;
11980           else if (flag_non_call_exceptions)
11981             {
11982               if (may_trap_p (i3))
11983                 place = i3;
11984               else if (i2 && may_trap_p (i2))
11985                 place = i2;
11986               /* ??? Otherwise assume we've combined things such that we
11987                  can now prove that the instructions can't trap.  Drop the
11988                  note in this case.  */
11989             }
11990           else
11991             abort ();
11992           break;
11993
11994         case REG_EH_RETHROW:
11995         case REG_NORETURN:
11996           /* These notes must remain with the call.  It should not be
11997              possible for both I2 and I3 to be a call.  */
11998           if (GET_CODE (i3) == CALL_INSN)
11999             place = i3;
12000           else if (i2 && GET_CODE (i2) == CALL_INSN)
12001             place = i2;
12002           else
12003             abort ();
12004           break;
12005
12006         case REG_UNUSED:
12007           /* Any clobbers for i3 may still exist, and so we must process
12008              REG_UNUSED notes from that insn.
12009
12010              Any clobbers from i2 or i1 can only exist if they were added by
12011              recog_for_combine.  In that case, recog_for_combine created the
12012              necessary REG_UNUSED notes.  Trying to keep any original
12013              REG_UNUSED notes from these insns can cause incorrect output
12014              if it is for the same register as the original i3 dest.
12015              In that case, we will notice that the register is set in i3,
12016              and then add a REG_UNUSED note for the destination of i3, which
12017              is wrong.  However, it is possible to have REG_UNUSED notes from
12018              i2 or i1 for register which were both used and clobbered, so
12019              we keep notes from i2 or i1 if they will turn into REG_DEAD
12020              notes.  */
12021
12022           /* If this register is set or clobbered in I3, put the note there
12023              unless there is one already.  */
12024           if (reg_set_p (XEXP (note, 0), PATTERN (i3)))
12025             {
12026               if (from_insn != i3)
12027                 break;
12028
12029               if (! (GET_CODE (XEXP (note, 0)) == REG
12030                      ? find_regno_note (i3, REG_UNUSED, REGNO (XEXP (note, 0)))
12031                      : find_reg_note (i3, REG_UNUSED, XEXP (note, 0))))
12032                 place = i3;
12033             }
12034           /* Otherwise, if this register is used by I3, then this register
12035              now dies here, so we must put a REG_DEAD note here unless there
12036              is one already.  */
12037           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3))
12038                    && ! (GET_CODE (XEXP (note, 0)) == REG
12039                          ? find_regno_note (i3, REG_DEAD,
12040                                             REGNO (XEXP (note, 0)))
12041                          : find_reg_note (i3, REG_DEAD, XEXP (note, 0))))
12042             {
12043               PUT_REG_NOTE_KIND (note, REG_DEAD);
12044               place = i3;
12045             }
12046           break;
12047
12048         case REG_EQUAL:
12049         case REG_EQUIV:
12050         case REG_NOALIAS:
12051           /* These notes say something about results of an insn.  We can
12052              only support them if they used to be on I3 in which case they
12053              remain on I3.  Otherwise they are ignored.
12054
12055              If the note refers to an expression that is not a constant, we
12056              must also ignore the note since we cannot tell whether the
12057              equivalence is still true.  It might be possible to do
12058              slightly better than this (we only have a problem if I2DEST
12059              or I1DEST is present in the expression), but it doesn't
12060              seem worth the trouble.  */
12061
12062           if (from_insn == i3
12063               && (XEXP (note, 0) == 0 || CONSTANT_P (XEXP (note, 0))))
12064             place = i3;
12065           break;
12066
12067         case REG_INC:
12068         case REG_NO_CONFLICT:
12069           /* These notes say something about how a register is used.  They must
12070              be present on any use of the register in I2 or I3.  */
12071           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3)))
12072             place = i3;
12073
12074           if (i2 && reg_mentioned_p (XEXP (note, 0), PATTERN (i2)))
12075             {
12076               if (place)
12077                 place2 = i2;
12078               else
12079                 place = i2;
12080             }
12081           break;
12082
12083         case REG_LABEL:
12084           /* This can show up in several ways -- either directly in the
12085              pattern, or hidden off in the constant pool with (or without?)
12086              a REG_EQUAL note.  */
12087           /* ??? Ignore the without-reg_equal-note problem for now.  */
12088           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3))
12089               || ((tem = find_reg_note (i3, REG_EQUAL, NULL_RTX))
12090                   && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12091                   && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0)))
12092             place = i3;
12093
12094           if (i2
12095               && (reg_mentioned_p (XEXP (note, 0), PATTERN (i2))
12096                   || ((tem = find_reg_note (i2, REG_EQUAL, NULL_RTX))
12097                       && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12098                       && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0))))
12099             {
12100               if (place)
12101                 place2 = i2;
12102               else
12103                 place = i2;
12104             }
12105           break;
12106
12107         case REG_NONNEG:
12108         case REG_WAS_0:
12109           /* These notes say something about the value of a register prior
12110              to the execution of an insn.  It is too much trouble to see
12111              if the note is still correct in all situations.  It is better
12112              to simply delete it.  */
12113           break;
12114
12115         case REG_RETVAL:
12116           /* If the insn previously containing this note still exists,
12117              put it back where it was.  Otherwise move it to the previous
12118              insn.  Adjust the corresponding REG_LIBCALL note.  */
12119           if (GET_CODE (from_insn) != NOTE)
12120             place = from_insn;
12121           else
12122             {
12123               tem = find_reg_note (XEXP (note, 0), REG_LIBCALL, NULL_RTX);
12124               place = prev_real_insn (from_insn);
12125               if (tem && place)
12126                 XEXP (tem, 0) = place;
12127               /* If we're deleting the last remaining instruction of a
12128                  libcall sequence, don't add the notes.  */
12129               else if (XEXP (note, 0) == from_insn)
12130                 tem = place = 0;
12131             }
12132           break;
12133
12134         case REG_LIBCALL:
12135           /* This is handled similarly to REG_RETVAL.  */
12136           if (GET_CODE (from_insn) != NOTE)
12137             place = from_insn;
12138           else
12139             {
12140               tem = find_reg_note (XEXP (note, 0), REG_RETVAL, NULL_RTX);
12141               place = next_real_insn (from_insn);
12142               if (tem && place)
12143                 XEXP (tem, 0) = place;
12144               /* If we're deleting the last remaining instruction of a
12145                  libcall sequence, don't add the notes.  */
12146               else if (XEXP (note, 0) == from_insn)
12147                 tem = place = 0;
12148             }
12149           break;
12150
12151         case REG_DEAD:
12152           /* If the register is used as an input in I3, it dies there.
12153              Similarly for I2, if it is non-zero and adjacent to I3.
12154
12155              If the register is not used as an input in either I3 or I2
12156              and it is not one of the registers we were supposed to eliminate,
12157              there are two possibilities.  We might have a non-adjacent I2
12158              or we might have somehow eliminated an additional register
12159              from a computation.  For example, we might have had A & B where
12160              we discover that B will always be zero.  In this case we will
12161              eliminate the reference to A.
12162
12163              In both cases, we must search to see if we can find a previous
12164              use of A and put the death note there.  */
12165
12166           if (from_insn
12167               && GET_CODE (from_insn) == CALL_INSN
12168               && find_reg_fusage (from_insn, USE, XEXP (note, 0)))
12169             place = from_insn;
12170           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3)))
12171             place = i3;
12172           else if (i2 != 0 && next_nonnote_insn (i2) == i3
12173                    && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12174             place = i2;
12175
12176           if (rtx_equal_p (XEXP (note, 0), elim_i2)
12177               || rtx_equal_p (XEXP (note, 0), elim_i1))
12178             break;
12179
12180           if (place == 0)
12181             {
12182               basic_block bb = BASIC_BLOCK (this_basic_block);
12183
12184               for (tem = PREV_INSN (i3); place == 0; tem = PREV_INSN (tem))
12185                 {
12186                   if (! INSN_P (tem))
12187                     {
12188                       if (tem == bb->head)
12189                         break;
12190                       continue;
12191                     }
12192
12193                   /* If the register is being set at TEM, see if that is all
12194                      TEM is doing.  If so, delete TEM.  Otherwise, make this
12195                      into a REG_UNUSED note instead.  */
12196                   if (reg_set_p (XEXP (note, 0), PATTERN (tem)))
12197                     {
12198                       rtx set = single_set (tem);
12199                       rtx inner_dest = 0;
12200 #ifdef HAVE_cc0
12201                       rtx cc0_setter = NULL_RTX;
12202 #endif
12203
12204                       if (set != 0)
12205                         for (inner_dest = SET_DEST (set);
12206                              (GET_CODE (inner_dest) == STRICT_LOW_PART
12207                               || GET_CODE (inner_dest) == SUBREG
12208                               || GET_CODE (inner_dest) == ZERO_EXTRACT);
12209                              inner_dest = XEXP (inner_dest, 0))
12210                           ;
12211
12212                       /* Verify that it was the set, and not a clobber that
12213                          modified the register.
12214
12215                          CC0 targets must be careful to maintain setter/user
12216                          pairs.  If we cannot delete the setter due to side
12217                          effects, mark the user with an UNUSED note instead
12218                          of deleting it.  */
12219
12220                       if (set != 0 && ! side_effects_p (SET_SRC (set))
12221                           && rtx_equal_p (XEXP (note, 0), inner_dest)
12222 #ifdef HAVE_cc0
12223                           && (! reg_mentioned_p (cc0_rtx, SET_SRC (set))
12224                               || ((cc0_setter = prev_cc0_setter (tem)) != NULL
12225                                   && sets_cc0_p (PATTERN (cc0_setter)) > 0))
12226 #endif
12227                           )
12228                         {
12229                           /* Move the notes and links of TEM elsewhere.
12230                              This might delete other dead insns recursively.
12231                              First set the pattern to something that won't use
12232                              any register.  */
12233
12234                           PATTERN (tem) = pc_rtx;
12235
12236                           distribute_notes (REG_NOTES (tem), tem, tem,
12237                                             NULL_RTX, NULL_RTX, NULL_RTX);
12238                           distribute_links (LOG_LINKS (tem));
12239
12240                           PUT_CODE (tem, NOTE);
12241                           NOTE_LINE_NUMBER (tem) = NOTE_INSN_DELETED;
12242                           NOTE_SOURCE_FILE (tem) = 0;
12243
12244 #ifdef HAVE_cc0
12245                           /* Delete the setter too.  */
12246                           if (cc0_setter)
12247                             {
12248                               PATTERN (cc0_setter) = pc_rtx;
12249
12250                               distribute_notes (REG_NOTES (cc0_setter),
12251                                                 cc0_setter, cc0_setter,
12252                                                 NULL_RTX, NULL_RTX, NULL_RTX);
12253                               distribute_links (LOG_LINKS (cc0_setter));
12254
12255                               PUT_CODE (cc0_setter, NOTE);
12256                               NOTE_LINE_NUMBER (cc0_setter)
12257                                 = NOTE_INSN_DELETED;
12258                               NOTE_SOURCE_FILE (cc0_setter) = 0;
12259                             }
12260 #endif
12261                         }
12262                       /* If the register is both set and used here, put the
12263                          REG_DEAD note here, but place a REG_UNUSED note
12264                          here too unless there already is one.  */
12265                       else if (reg_referenced_p (XEXP (note, 0),
12266                                                  PATTERN (tem)))
12267                         {
12268                           place = tem;
12269
12270                           if (! find_regno_note (tem, REG_UNUSED,
12271                                                  REGNO (XEXP (note, 0))))
12272                             REG_NOTES (tem)
12273                               = gen_rtx_EXPR_LIST (REG_UNUSED, XEXP (note, 0),
12274                                                    REG_NOTES (tem));
12275                         }
12276                       else
12277                         {
12278                           PUT_REG_NOTE_KIND (note, REG_UNUSED);
12279
12280                           /*  If there isn't already a REG_UNUSED note, put one
12281                               here.  */
12282                           if (! find_regno_note (tem, REG_UNUSED,
12283                                                  REGNO (XEXP (note, 0))))
12284                             place = tem;
12285                           break;
12286                         }
12287                     }
12288                   else if (reg_referenced_p (XEXP (note, 0), PATTERN (tem))
12289                            || (GET_CODE (tem) == CALL_INSN
12290                                && find_reg_fusage (tem, USE, XEXP (note, 0))))
12291                     {
12292                       place = tem;
12293
12294                       /* If we are doing a 3->2 combination, and we have a
12295                          register which formerly died in i3 and was not used
12296                          by i2, which now no longer dies in i3 and is used in
12297                          i2 but does not die in i2, and place is between i2
12298                          and i3, then we may need to move a link from place to
12299                          i2.  */
12300                       if (i2 && INSN_UID (place) <= max_uid_cuid
12301                           && INSN_CUID (place) > INSN_CUID (i2)
12302                           && from_insn
12303                           && INSN_CUID (from_insn) > INSN_CUID (i2)
12304                           && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12305                         {
12306                           rtx links = LOG_LINKS (place);
12307                           LOG_LINKS (place) = 0;
12308                           distribute_links (links);
12309                         }
12310                       break;
12311                     }
12312
12313                   if (tem == bb->head)
12314                     break;
12315                 }
12316
12317               /* We haven't found an insn for the death note and it
12318                  is still a REG_DEAD note, but we have hit the beginning
12319                  of the block.  If the existing life info says the reg
12320                  was dead, there's nothing left to do.  Otherwise, we'll
12321                  need to do a global life update after combine.  */
12322               if (REG_NOTE_KIND (note) == REG_DEAD && place == 0
12323                   && REGNO_REG_SET_P (bb->global_live_at_start,
12324                                       REGNO (XEXP (note, 0))))
12325                 {
12326                   SET_BIT (refresh_blocks, this_basic_block);
12327                   need_refresh = 1;
12328                 }
12329             }
12330
12331           /* If the register is set or already dead at PLACE, we needn't do
12332              anything with this note if it is still a REG_DEAD note.
12333              We can here if it is set at all, not if is it totally replace,
12334              which is what `dead_or_set_p' checks, so also check for it being
12335              set partially.  */
12336
12337           if (place && REG_NOTE_KIND (note) == REG_DEAD)
12338             {
12339               unsigned int regno = REGNO (XEXP (note, 0));
12340
12341               if (dead_or_set_p (place, XEXP (note, 0))
12342                   || reg_bitfield_target_p (XEXP (note, 0), PATTERN (place)))
12343                 {
12344                   /* Unless the register previously died in PLACE, clear
12345                      reg_last_death.  [I no longer understand why this is
12346                      being done.] */
12347                   if (reg_last_death[regno] != place)
12348                     reg_last_death[regno] = 0;
12349                   place = 0;
12350                 }
12351               else
12352                 reg_last_death[regno] = place;
12353
12354               /* If this is a death note for a hard reg that is occupying
12355                  multiple registers, ensure that we are still using all
12356                  parts of the object.  If we find a piece of the object
12357                  that is unused, we must arrange for an appropriate REG_DEAD
12358                  note to be added for it.  However, we can't just emit a USE
12359                  and tag the note to it, since the register might actually
12360                  be dead; so we recourse, and the recursive call then finds
12361                  the previous insn that used this register.  */
12362
12363               if (place && regno < FIRST_PSEUDO_REGISTER
12364                   && HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0))) > 1)
12365                 {
12366                   unsigned int endregno
12367                     = regno + HARD_REGNO_NREGS (regno,
12368                                                 GET_MODE (XEXP (note, 0)));
12369                   int all_used = 1;
12370                   unsigned int i;
12371
12372                   for (i = regno; i < endregno; i++)
12373                     if ((! refers_to_regno_p (i, i + 1, PATTERN (place), 0)
12374                          && ! find_regno_fusage (place, USE, i))
12375                         || dead_or_set_regno_p (place, i))
12376                       all_used = 0;
12377
12378                   if (! all_used)
12379                     {
12380                       /* Put only REG_DEAD notes for pieces that are
12381                          not already dead or set.  */
12382
12383                       for (i = regno; i < endregno;
12384                            i += HARD_REGNO_NREGS (i, reg_raw_mode[i]))
12385                         {
12386                           rtx piece = gen_rtx_REG (reg_raw_mode[i], i);
12387                           basic_block bb = BASIC_BLOCK (this_basic_block);
12388
12389                           if (! dead_or_set_p (place, piece)
12390                               && ! reg_bitfield_target_p (piece,
12391                                                           PATTERN (place)))
12392                             {
12393                               rtx new_note
12394                                 = gen_rtx_EXPR_LIST (REG_DEAD, piece, NULL_RTX);
12395
12396                               distribute_notes (new_note, place, place,
12397                                                 NULL_RTX, NULL_RTX, NULL_RTX);
12398                             }
12399                           else if (! refers_to_regno_p (i, i + 1,
12400                                                         PATTERN (place), 0)
12401                                    && ! find_regno_fusage (place, USE, i))
12402                             for (tem = PREV_INSN (place); ;
12403                                  tem = PREV_INSN (tem))
12404                               {
12405                                 if (! INSN_P (tem))
12406                                   {
12407                                     if (tem == bb->head)
12408                                       {
12409                                         SET_BIT (refresh_blocks,
12410                                                  this_basic_block);
12411                                         need_refresh = 1;
12412                                         break;
12413                                       }
12414                                     continue;
12415                                   }
12416                                 if (dead_or_set_p (tem, piece)
12417                                     || reg_bitfield_target_p (piece,
12418                                                               PATTERN (tem)))
12419                                   {
12420                                     REG_NOTES (tem)
12421                                       = gen_rtx_EXPR_LIST (REG_UNUSED, piece,
12422                                                            REG_NOTES (tem));
12423                                     break;
12424                                   }
12425                               }
12426
12427                         }
12428
12429                       place = 0;
12430                     }
12431                 }
12432             }
12433           break;
12434
12435         default:
12436           /* Any other notes should not be present at this point in the
12437              compilation.  */
12438           abort ();
12439         }
12440
12441       if (place)
12442         {
12443           XEXP (note, 1) = REG_NOTES (place);
12444           REG_NOTES (place) = note;
12445         }
12446       else if ((REG_NOTE_KIND (note) == REG_DEAD
12447                 || REG_NOTE_KIND (note) == REG_UNUSED)
12448                && GET_CODE (XEXP (note, 0)) == REG)
12449         REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
12450
12451       if (place2)
12452         {
12453           if ((REG_NOTE_KIND (note) == REG_DEAD
12454                || REG_NOTE_KIND (note) == REG_UNUSED)
12455               && GET_CODE (XEXP (note, 0)) == REG)
12456             REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
12457
12458           REG_NOTES (place2) = gen_rtx_fmt_ee (GET_CODE (note),
12459                                                REG_NOTE_KIND (note),
12460                                                XEXP (note, 0),
12461                                                REG_NOTES (place2));
12462         }
12463     }
12464 }
12465 \f
12466 /* Similarly to above, distribute the LOG_LINKS that used to be present on
12467    I3, I2, and I1 to new locations.  This is also called in one case to
12468    add a link pointing at I3 when I3's destination is changed.  */
12469
12470 static void
12471 distribute_links (links)
12472      rtx links;
12473 {
12474   rtx link, next_link;
12475
12476   for (link = links; link; link = next_link)
12477     {
12478       rtx place = 0;
12479       rtx insn;
12480       rtx set, reg;
12481
12482       next_link = XEXP (link, 1);
12483
12484       /* If the insn that this link points to is a NOTE or isn't a single
12485          set, ignore it.  In the latter case, it isn't clear what we
12486          can do other than ignore the link, since we can't tell which
12487          register it was for.  Such links wouldn't be used by combine
12488          anyway.
12489
12490          It is not possible for the destination of the target of the link to
12491          have been changed by combine.  The only potential of this is if we
12492          replace I3, I2, and I1 by I3 and I2.  But in that case the
12493          destination of I2 also remains unchanged.  */
12494
12495       if (GET_CODE (XEXP (link, 0)) == NOTE
12496           || (set = single_set (XEXP (link, 0))) == 0)
12497         continue;
12498
12499       reg = SET_DEST (set);
12500       while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
12501              || GET_CODE (reg) == SIGN_EXTRACT
12502              || GET_CODE (reg) == STRICT_LOW_PART)
12503         reg = XEXP (reg, 0);
12504
12505       /* A LOG_LINK is defined as being placed on the first insn that uses
12506          a register and points to the insn that sets the register.  Start
12507          searching at the next insn after the target of the link and stop
12508          when we reach a set of the register or the end of the basic block.
12509
12510          Note that this correctly handles the link that used to point from
12511          I3 to I2.  Also note that not much searching is typically done here
12512          since most links don't point very far away.  */
12513
12514       for (insn = NEXT_INSN (XEXP (link, 0));
12515            (insn && (this_basic_block == n_basic_blocks - 1
12516                      || BLOCK_HEAD (this_basic_block + 1) != insn));
12517            insn = NEXT_INSN (insn))
12518         if (INSN_P (insn) && reg_overlap_mentioned_p (reg, PATTERN (insn)))
12519           {
12520             if (reg_referenced_p (reg, PATTERN (insn)))
12521               place = insn;
12522             break;
12523           }
12524         else if (GET_CODE (insn) == CALL_INSN
12525                  && find_reg_fusage (insn, USE, reg))
12526           {
12527             place = insn;
12528             break;
12529           }
12530
12531       /* If we found a place to put the link, place it there unless there
12532          is already a link to the same insn as LINK at that point.  */
12533
12534       if (place)
12535         {
12536           rtx link2;
12537
12538           for (link2 = LOG_LINKS (place); link2; link2 = XEXP (link2, 1))
12539             if (XEXP (link2, 0) == XEXP (link, 0))
12540               break;
12541
12542           if (link2 == 0)
12543             {
12544               XEXP (link, 1) = LOG_LINKS (place);
12545               LOG_LINKS (place) = link;
12546
12547               /* Set added_links_insn to the earliest insn we added a
12548                  link to.  */
12549               if (added_links_insn == 0
12550                   || INSN_CUID (added_links_insn) > INSN_CUID (place))
12551                 added_links_insn = place;
12552             }
12553         }
12554     }
12555 }
12556 \f
12557 /* Compute INSN_CUID for INSN, which is an insn made by combine.  */
12558
12559 static int
12560 insn_cuid (insn)
12561      rtx insn;
12562 {
12563   while (insn != 0 && INSN_UID (insn) > max_uid_cuid
12564          && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE)
12565     insn = NEXT_INSN (insn);
12566
12567   if (INSN_UID (insn) > max_uid_cuid)
12568     abort ();
12569
12570   return INSN_CUID (insn);
12571 }
12572 \f
12573 void
12574 dump_combine_stats (file)
12575      FILE *file;
12576 {
12577   fnotice
12578     (file,
12579      ";; Combiner statistics: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n\n",
12580      combine_attempts, combine_merges, combine_extras, combine_successes);
12581 }
12582
12583 void
12584 dump_combine_total_stats (file)
12585      FILE *file;
12586 {
12587   fnotice
12588     (file,
12589      "\n;; Combiner totals: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n",
12590      total_attempts, total_merges, total_extras, total_successes);
12591 }