OSDN Git Service

* extend.texi (-fthis-is-variable): Undocument.
[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 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
23 /* This module is essentially the "combiner" phase of the U. of Arizona
24    Portable Optimizer, but redone to work on our list-structured
25    representation for RTL instead of their string representation.
26
27    The LOG_LINKS of each insn identify the most recent assignment
28    to each REG used in the insn.  It is a list of previous insns,
29    each of which contains a SET for a REG that is used in this insn
30    and not used or set in between.  LOG_LINKs never cross basic blocks.
31    They were set up by the preceding pass (lifetime analysis).
32
33    We try to combine each pair of insns joined by a logical link.
34    We also try to combine triples of insns A, B and C when
35    C has a link back to B and B has a link back to A.
36
37    LOG_LINKS does not have links for use of the CC0.  They don't
38    need to, because the insn that sets the CC0 is always immediately
39    before the insn that tests it.  So we always regard a branch
40    insn as having a logical link to the preceding insn.  The same is true
41    for an insn explicitly using CC0.
42
43    We check (with use_crosses_set_p) to avoid combining in such a way
44    as to move a computation to a place where its value would be different.
45
46    Combination is done by mathematically substituting the previous
47    insn(s) values for the regs they set into the expressions in
48    the later insns that refer to these regs.  If the result is a valid insn
49    for our target machine, according to the machine description,
50    we install it, delete the earlier insns, and update the data flow
51    information (LOG_LINKS and REG_NOTES) for what we did.
52
53    There are a few exceptions where the dataflow information created by
54    flow.c aren't completely updated:
55
56    - reg_live_length is not updated
57    - reg_n_refs is not adjusted in the rare case when a register is
58      no longer required in a computation
59    - there are extremely rare cases (see distribute_regnotes) when a
60      REG_DEAD note is lost
61    - a LOG_LINKS entry that refers to an insn with multiple SETs may be
62      removed because there is no way to know which register it was 
63      linking
64
65    To simplify substitution, we combine only when the earlier insn(s)
66    consist of only a single assignment.  To simplify updating afterward,
67    we never combine when a subroutine call appears in the middle.
68
69    Since we do not represent assignments to CC0 explicitly except when that
70    is all an insn does, there is no LOG_LINKS entry in an insn that uses
71    the condition code for the insn that set the condition code.
72    Fortunately, these two insns must be consecutive.
73    Therefore, every JUMP_INSN is taken to have an implicit logical link
74    to the preceding insn.  This is not quite right, since non-jumps can
75    also use the condition code; but in practice such insns would not
76    combine anyway.  */
77
78 #include "config.h"
79 #include "system.h"
80 #include "rtl.h"
81 #include "tm_p.h"
82 #include "flags.h"
83 #include "regs.h"
84 #include "hard-reg-set.h"
85 #include "basic-block.h"
86 #include "insn-config.h"
87 #include "function.h"
88 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
89 #include "expr.h"
90 #include "insn-flags.h"
91 #include "insn-codes.h"
92 #include "insn-attr.h"
93 #include "recog.h"
94 #include "real.h"
95 #include "toplev.h"
96 #include "defaults.h"
97
98 #ifndef ACCUMULATE_OUTGOING_ARGS
99 #define ACCUMULATE_OUTGOING_ARGS 0
100 #endif
101
102 /* Supply a default definition for PUSH_ARGS.  */
103 #ifndef PUSH_ARGS
104 #ifdef PUSH_ROUNDING
105 #define PUSH_ARGS       !ACCUMULATE_OUTGOING_ARGS
106 #else
107 #define PUSH_ARGS       0
108 #endif
109 #endif
110
111 /* It is not safe to use ordinary gen_lowpart in combine.
112    Use gen_lowpart_for_combine instead.  See comments there.  */
113 #define gen_lowpart dont_use_gen_lowpart_you_dummy
114
115 /* Number of attempts to combine instructions in this function.  */
116
117 static int combine_attempts;
118
119 /* Number of attempts that got as far as substitution in this function.  */
120
121 static int combine_merges;
122
123 /* Number of instructions combined with added SETs in this function.  */
124
125 static int combine_extras;
126
127 /* Number of instructions combined in this function.  */
128
129 static int combine_successes;
130
131 /* Totals over entire compilation.  */
132
133 static int total_attempts, total_merges, total_extras, total_successes;
134
135 /* Define a default value for REVERSIBLE_CC_MODE.
136    We can never assume that a condition code mode is safe to reverse unless
137    the md tells us so.  */
138 #ifndef REVERSIBLE_CC_MODE
139 #define REVERSIBLE_CC_MODE(MODE) 0
140 #endif
141 \f
142 /* Vector mapping INSN_UIDs to cuids.
143    The cuids are like uids but increase monotonically always.
144    Combine always uses cuids so that it can compare them.
145    But actually renumbering the uids, which we used to do,
146    proves to be a bad idea because it makes it hard to compare
147    the dumps produced by earlier passes with those from later passes.  */
148
149 static int *uid_cuid;
150 static int max_uid_cuid;
151
152 /* Get the cuid of an insn.  */
153
154 #define INSN_CUID(INSN) \
155 (INSN_UID (INSN) > max_uid_cuid ? insn_cuid (INSN) : uid_cuid[INSN_UID (INSN)])
156
157 /* Maximum register number, which is the size of the tables below.  */
158
159 static unsigned int combine_max_regno;
160
161 /* Record last point of death of (hard or pseudo) register n.  */
162
163 static rtx *reg_last_death;
164
165 /* Record last point of modification of (hard or pseudo) register n.  */
166
167 static rtx *reg_last_set;
168
169 /* Record the cuid of the last insn that invalidated memory
170    (anything that writes memory, and subroutine calls, but not pushes).  */
171
172 static int mem_last_set;
173
174 /* Record the cuid of the last CALL_INSN
175    so we can tell whether a potential combination crosses any calls.  */
176
177 static int last_call_cuid;
178
179 /* When `subst' is called, this is the insn that is being modified
180    (by combining in a previous insn).  The PATTERN of this insn
181    is still the old pattern partially modified and it should not be
182    looked at, but this may be used to examine the successors of the insn
183    to judge whether a simplification is valid.  */
184
185 static rtx subst_insn;
186
187 /* This is an insn that belongs before subst_insn, but is not currently
188    on the insn chain.  */
189
190 static rtx subst_prev_insn;
191
192 /* This is the lowest CUID that `subst' is currently dealing with.
193    get_last_value will not return a value if the register was set at or
194    after this CUID.  If not for this mechanism, we could get confused if
195    I2 or I1 in try_combine were an insn that used the old value of a register
196    to obtain a new value.  In that case, we might erroneously get the
197    new value of the register when we wanted the old one.  */
198
199 static int subst_low_cuid;
200
201 /* This contains any hard registers that are used in newpat; reg_dead_at_p
202    must consider all these registers to be always live.  */
203
204 static HARD_REG_SET newpat_used_regs;
205
206 /* This is an insn to which a LOG_LINKS entry has been added.  If this
207    insn is the earlier than I2 or I3, combine should rescan starting at
208    that location.  */
209
210 static rtx added_links_insn;
211
212 /* Basic block number of the block in which we are performing combines.  */
213 static int this_basic_block;
214
215 /* A bitmap indicating which blocks had registers go dead at entry.  
216    After combine, we'll need to re-do global life analysis with 
217    those blocks as starting points.  */
218 static sbitmap refresh_blocks;
219 static int need_refresh;
220 \f
221 /* The next group of arrays allows the recording of the last value assigned
222    to (hard or pseudo) register n.  We use this information to see if a
223    operation being processed is redundant given a prior operation performed
224    on the register.  For example, an `and' with a constant is redundant if
225    all the zero bits are already known to be turned off.
226
227    We use an approach similar to that used by cse, but change it in the
228    following ways:
229
230    (1) We do not want to reinitialize at each label.
231    (2) It is useful, but not critical, to know the actual value assigned
232        to a register.  Often just its form is helpful.
233
234    Therefore, we maintain the following arrays:
235
236    reg_last_set_value           the last value assigned
237    reg_last_set_label           records the value of label_tick when the
238                                 register was assigned
239    reg_last_set_table_tick      records the value of label_tick when a
240                                 value using the register is assigned
241    reg_last_set_invalid         set to non-zero when it is not valid
242                                 to use the value of this register in some
243                                 register's value
244
245    To understand the usage of these tables, it is important to understand
246    the distinction between the value in reg_last_set_value being valid
247    and the register being validly contained in some other expression in the
248    table.
249
250    Entry I in reg_last_set_value is valid if it is non-zero, and either
251    reg_n_sets[i] is 1 or reg_last_set_label[i] == label_tick.
252
253    Register I may validly appear in any expression returned for the value
254    of another register if reg_n_sets[i] is 1.  It may also appear in the
255    value for register J if reg_last_set_label[i] < reg_last_set_label[j] or
256    reg_last_set_invalid[j] is zero.
257
258    If an expression is found in the table containing a register which may
259    not validly appear in an expression, the register is replaced by
260    something that won't match, (clobber (const_int 0)).
261
262    reg_last_set_invalid[i] is set non-zero when register I is being assigned
263    to and reg_last_set_table_tick[i] == label_tick.  */
264
265 /* Record last value assigned to (hard or pseudo) register n.  */
266
267 static rtx *reg_last_set_value;
268
269 /* Record the value of label_tick when the value for register n is placed in
270    reg_last_set_value[n].  */
271
272 static int *reg_last_set_label;
273
274 /* Record the value of label_tick when an expression involving register n
275    is placed in reg_last_set_value.  */
276
277 static int *reg_last_set_table_tick;
278
279 /* Set non-zero if references to register n in expressions should not be
280    used.  */
281
282 static char *reg_last_set_invalid;
283
284 /* Incremented for each label.  */
285
286 static int label_tick;
287
288 /* Some registers that are set more than once and used in more than one
289    basic block are nevertheless always set in similar ways.  For example,
290    a QImode register may be loaded from memory in two places on a machine
291    where byte loads zero extend.
292
293    We record in the following array what we know about the nonzero
294    bits of a register, specifically which bits are known to be zero.
295
296    If an entry is zero, it means that we don't know anything special.  */
297
298 static unsigned HOST_WIDE_INT *reg_nonzero_bits;
299
300 /* Mode used to compute significance in reg_nonzero_bits.  It is the largest
301    integer mode that can fit in HOST_BITS_PER_WIDE_INT.  */
302
303 static enum machine_mode nonzero_bits_mode;
304
305 /* Nonzero if we know that a register has some leading bits that are always
306    equal to the sign bit.  */
307
308 static unsigned char *reg_sign_bit_copies;
309
310 /* Nonzero when reg_nonzero_bits and reg_sign_bit_copies can be safely used.
311    It is zero while computing them and after combine has completed.  This
312    former test prevents propagating values based on previously set values,
313    which can be incorrect if a variable is modified in a loop.  */
314
315 static int nonzero_sign_valid;
316
317 /* These arrays are maintained in parallel with reg_last_set_value
318    and are used to store the mode in which the register was last set,
319    the bits that were known to be zero when it was last set, and the
320    number of sign bits copies it was known to have when it was last set.  */
321
322 static enum machine_mode *reg_last_set_mode;
323 static unsigned HOST_WIDE_INT *reg_last_set_nonzero_bits;
324 static char *reg_last_set_sign_bit_copies;
325 \f
326 /* Record one modification to rtl structure
327    to be undone by storing old_contents into *where.
328    is_int is 1 if the contents are an int.  */
329
330 struct undo
331 {
332   struct undo *next;
333   int is_int;
334   union {rtx r; int i;} old_contents;
335   union {rtx *r; int *i;} where;
336 };
337
338 /* Record a bunch of changes to be undone, up to MAX_UNDO of them.
339    num_undo says how many are currently recorded.
340
341    storage is nonzero if we must undo the allocation of new storage.
342    The value of storage is what to pass to obfree.
343
344    other_insn is nonzero if we have modified some other insn in the process
345    of working on subst_insn.  It must be verified too.
346
347    previous_undos is the value of undobuf.undos when we started processing
348    this substitution.  This will prevent gen_rtx_combine from re-used a piece
349    from the previous expression.  Doing so can produce circular rtl
350    structures.  */
351
352 struct undobuf
353 {
354   char *storage;
355   struct undo *undos;
356   struct undo *frees;
357   struct undo *previous_undos;
358   rtx other_insn;
359 };
360
361 static struct undobuf undobuf;
362
363 /* Number of times the pseudo being substituted for
364    was found and replaced.  */
365
366 static int n_occurrences;
367
368 static void do_SUBST                    PARAMS ((rtx *, rtx));
369 static void do_SUBST_INT                PARAMS ((int *, int));
370 static void init_reg_last_arrays        PARAMS ((void));
371 static void setup_incoming_promotions   PARAMS ((void));
372 static void set_nonzero_bits_and_sign_copies  PARAMS ((rtx, rtx, void *));
373 static int can_combine_p        PARAMS ((rtx, rtx, rtx, rtx, rtx *, rtx *));
374 static int sets_function_arg_p  PARAMS ((rtx));
375 static int combinable_i3pat     PARAMS ((rtx, rtx *, rtx, rtx, int, rtx *));
376 static int contains_muldiv      PARAMS ((rtx));
377 static rtx try_combine          PARAMS ((rtx, rtx, rtx, int *));
378 static void undo_all            PARAMS ((void));
379 static void undo_commit         PARAMS ((void));
380 static rtx *find_split_point    PARAMS ((rtx *, rtx));
381 static rtx subst                PARAMS ((rtx, rtx, rtx, int, int));
382 static rtx combine_simplify_rtx PARAMS ((rtx, enum machine_mode, int, int));
383 static rtx simplify_if_then_else  PARAMS ((rtx));
384 static rtx simplify_set         PARAMS ((rtx));
385 static rtx simplify_logical     PARAMS ((rtx, int));
386 static rtx expand_compound_operation  PARAMS ((rtx));
387 static rtx expand_field_assignment  PARAMS ((rtx));
388 static rtx make_extraction      PARAMS ((enum machine_mode, rtx, HOST_WIDE_INT,
389                                          rtx, unsigned HOST_WIDE_INT, int,
390                                          int, int));
391 static rtx extract_left_shift   PARAMS ((rtx, int));
392 static rtx make_compound_operation  PARAMS ((rtx, enum rtx_code));
393 static int get_pos_from_mask    PARAMS ((unsigned HOST_WIDE_INT,
394                                          unsigned HOST_WIDE_INT *));
395 static rtx force_to_mode        PARAMS ((rtx, enum machine_mode,
396                                          unsigned HOST_WIDE_INT, rtx, int));
397 static rtx if_then_else_cond    PARAMS ((rtx, rtx *, rtx *));
398 static rtx known_cond           PARAMS ((rtx, enum rtx_code, rtx, rtx));
399 static int rtx_equal_for_field_assignment_p PARAMS ((rtx, rtx));
400 static rtx make_field_assignment  PARAMS ((rtx));
401 static rtx apply_distributive_law  PARAMS ((rtx));
402 static rtx simplify_and_const_int  PARAMS ((rtx, enum machine_mode, rtx,
403                                             unsigned HOST_WIDE_INT));
404 static unsigned HOST_WIDE_INT nonzero_bits  PARAMS ((rtx, enum machine_mode));
405 static unsigned int num_sign_bit_copies  PARAMS ((rtx, enum machine_mode));
406 static int merge_outer_ops      PARAMS ((enum rtx_code *, HOST_WIDE_INT *,
407                                          enum rtx_code, HOST_WIDE_INT,
408                                          enum machine_mode, int *));
409 static rtx simplify_shift_const PARAMS ((rtx, enum rtx_code, enum machine_mode,
410                                          rtx, int));
411 static int recog_for_combine    PARAMS ((rtx *, rtx, rtx *));
412 static rtx gen_lowpart_for_combine  PARAMS ((enum machine_mode, rtx));
413 static rtx gen_rtx_combine PARAMS ((enum rtx_code code, enum machine_mode mode,
414                                     ...));
415 static rtx gen_binary           PARAMS ((enum rtx_code, enum machine_mode,
416                                          rtx, rtx));
417 static rtx gen_unary            PARAMS ((enum rtx_code, enum machine_mode,
418                                          enum machine_mode, rtx));
419 static enum rtx_code simplify_comparison  PARAMS ((enum rtx_code, rtx *, rtx *));
420 static int reversible_comparison_p  PARAMS ((rtx));
421 static void update_table_tick   PARAMS ((rtx));
422 static void record_value_for_reg  PARAMS ((rtx, rtx, rtx));
423 static void check_promoted_subreg PARAMS ((rtx, rtx));
424 static void record_dead_and_set_regs_1  PARAMS ((rtx, rtx, void *));
425 static void record_dead_and_set_regs  PARAMS ((rtx));
426 static int get_last_value_validate  PARAMS ((rtx *, rtx, int, int));
427 static rtx get_last_value       PARAMS ((rtx));
428 static int use_crosses_set_p    PARAMS ((rtx, int));
429 static void reg_dead_at_p_1     PARAMS ((rtx, rtx, void *));
430 static int reg_dead_at_p        PARAMS ((rtx, rtx));
431 static void move_deaths         PARAMS ((rtx, rtx, int, rtx, rtx *));
432 static int reg_bitfield_target_p  PARAMS ((rtx, rtx));
433 static void distribute_notes    PARAMS ((rtx, rtx, rtx, rtx, rtx, rtx));
434 static void distribute_links    PARAMS ((rtx));
435 static void mark_used_regs_combine PARAMS ((rtx));
436 static int insn_cuid            PARAMS ((rtx));
437 static void record_promoted_value PARAMS ((rtx, rtx));
438 \f
439 /* Substitute NEWVAL, an rtx expression, into INTO, a place in some
440    insn.  The substitution can be undone by undo_all.  If INTO is already
441    set to NEWVAL, do not record this change.  Because computing NEWVAL might
442    also call SUBST, we have to compute it before we put anything into
443    the undo table.  */
444
445 static void
446 do_SUBST(into, newval)
447      rtx *into, newval;
448 {
449   struct undo *buf;
450   rtx oldval = *into;
451
452   if (oldval == newval)
453     return;
454
455   if (undobuf.frees)
456     buf = undobuf.frees, undobuf.frees = buf->next;
457   else
458     buf = (struct undo *) xmalloc (sizeof (struct undo));
459
460   buf->is_int = 0;
461   buf->where.r = into;
462   buf->old_contents.r = oldval;
463   *into = newval;
464
465   buf->next = undobuf.undos, undobuf.undos = buf;
466 }
467
468 #define SUBST(INTO, NEWVAL)     do_SUBST(&(INTO), (NEWVAL))
469
470 /* Similar to SUBST, but NEWVAL is an int expression.  Note that substitution
471    for the value of a HOST_WIDE_INT value (including CONST_INT) is
472    not safe.  */
473
474 static void
475 do_SUBST_INT(into, newval)
476      int *into, newval;
477 {
478   struct undo *buf;
479   int oldval = *into;
480
481   if (oldval == newval)
482     return;
483
484   if (undobuf.frees)
485     buf = undobuf.frees, undobuf.frees = buf->next;
486   else
487     buf = (struct undo *) xmalloc (sizeof (struct undo));
488
489   buf->is_int = 1;
490   buf->where.i = into;
491   buf->old_contents.i = oldval;
492   *into = newval;
493
494   buf->next = undobuf.undos, undobuf.undos = buf;
495 }
496
497 #define SUBST_INT(INTO, NEWVAL)  do_SUBST_INT(&(INTO), (NEWVAL))
498 \f
499 /* Main entry point for combiner.  F is the first insn of the function.
500    NREGS is the first unused pseudo-reg number. 
501
502    Return non-zero if the combiner has turned an indirect jump
503    instruction into a direct jump.  */
504 int
505 combine_instructions (f, nregs)
506      rtx f;
507      unsigned int nregs;
508 {
509   register rtx insn, next;
510 #ifdef HAVE_cc0
511   register rtx prev;
512 #endif
513   register int i;
514   register rtx links, nextlinks;
515
516   int new_direct_jump_p = 0;
517
518   combine_attempts = 0;
519   combine_merges = 0;
520   combine_extras = 0;
521   combine_successes = 0;
522
523   combine_max_regno = nregs;
524
525   reg_nonzero_bits = ((unsigned HOST_WIDE_INT *) 
526                       xcalloc (nregs, sizeof (unsigned HOST_WIDE_INT)));
527   reg_sign_bit_copies
528     = (unsigned char *) xcalloc (nregs, sizeof (unsigned char));
529
530   reg_last_death = (rtx *) xmalloc (nregs * sizeof (rtx));
531   reg_last_set = (rtx *) xmalloc (nregs * sizeof (rtx));
532   reg_last_set_value = (rtx *) xmalloc (nregs * sizeof (rtx));
533   reg_last_set_table_tick = (int *) xmalloc (nregs * sizeof (int));
534   reg_last_set_label = (int *) xmalloc (nregs * sizeof (int));
535   reg_last_set_invalid = (char *) xmalloc (nregs * sizeof (char));
536   reg_last_set_mode
537     = (enum machine_mode *) xmalloc (nregs * sizeof (enum machine_mode));
538   reg_last_set_nonzero_bits
539     = (unsigned HOST_WIDE_INT *) xmalloc (nregs * sizeof (HOST_WIDE_INT));
540   reg_last_set_sign_bit_copies
541     = (char *) xmalloc (nregs * sizeof (char));
542
543   init_reg_last_arrays ();
544
545   init_recog_no_volatile ();
546
547   /* Compute maximum uid value so uid_cuid can be allocated.  */
548
549   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
550     if (INSN_UID (insn) > i)
551       i = INSN_UID (insn);
552
553   uid_cuid = (int *) xmalloc ((i + 1) * sizeof (int));
554   max_uid_cuid = i;
555
556   nonzero_bits_mode = mode_for_size (HOST_BITS_PER_WIDE_INT, MODE_INT, 0);
557
558   /* Don't use reg_nonzero_bits when computing it.  This can cause problems
559      when, for example, we have j <<= 1 in a loop.  */
560
561   nonzero_sign_valid = 0;
562
563   /* Compute the mapping from uids to cuids.
564      Cuids are numbers assigned to insns, like uids,
565      except that cuids increase monotonically through the code. 
566
567      Scan all SETs and see if we can deduce anything about what
568      bits are known to be zero for some registers and how many copies
569      of the sign bit are known to exist for those registers.
570
571      Also set any known values so that we can use it while searching
572      for what bits are known to be set.  */
573
574   label_tick = 1;
575
576   /* We need to initialize it here, because record_dead_and_set_regs may call
577      get_last_value.  */
578   subst_prev_insn = NULL_RTX;
579
580   setup_incoming_promotions ();
581
582   refresh_blocks = sbitmap_alloc (n_basic_blocks);
583   sbitmap_zero (refresh_blocks);
584   need_refresh = 0;
585
586   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
587     {
588       uid_cuid[INSN_UID (insn)] = ++i;
589       subst_low_cuid = i;
590       subst_insn = insn;
591
592       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
593         {
594           note_stores (PATTERN (insn), set_nonzero_bits_and_sign_copies, 
595                        NULL);
596           record_dead_and_set_regs (insn);
597
598 #ifdef AUTO_INC_DEC
599           for (links = REG_NOTES (insn); links; links = XEXP (links, 1))
600             if (REG_NOTE_KIND (links) == REG_INC)
601               set_nonzero_bits_and_sign_copies (XEXP (links, 0), NULL_RTX,
602                                                 NULL);
603 #endif
604         }
605
606       if (GET_CODE (insn) == CODE_LABEL)
607         label_tick++;
608     }
609
610   nonzero_sign_valid = 1;
611
612   /* Now scan all the insns in forward order.  */
613
614   this_basic_block = -1;
615   label_tick = 1;
616   last_call_cuid = 0;
617   mem_last_set = 0;
618   init_reg_last_arrays ();
619   setup_incoming_promotions ();
620
621   for (insn = f; insn; insn = next ? next : NEXT_INSN (insn))
622     {
623       next = 0;
624
625       /* If INSN starts a new basic block, update our basic block number.  */
626       if (this_basic_block + 1 < n_basic_blocks
627           && BLOCK_HEAD (this_basic_block + 1) == insn)
628         this_basic_block++;
629
630       if (GET_CODE (insn) == CODE_LABEL)
631         label_tick++;
632
633       else if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
634         {
635           /* See if we know about function return values before this
636              insn based upon SUBREG flags.  */
637           check_promoted_subreg (insn, PATTERN (insn));
638
639           /* Try this insn with each insn it links back to.  */
640
641           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
642             if ((next = try_combine (insn, XEXP (links, 0), 
643                                      NULL_RTX, &new_direct_jump_p)) != 0)
644               goto retry;
645
646           /* Try each sequence of three linked insns ending with this one.  */
647
648           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
649             for (nextlinks = LOG_LINKS (XEXP (links, 0)); nextlinks;
650                  nextlinks = XEXP (nextlinks, 1))
651               if ((next = try_combine (insn, XEXP (links, 0),
652                                        XEXP (nextlinks, 0),
653                                        &new_direct_jump_p)) != 0)
654                 goto retry;
655
656 #ifdef HAVE_cc0
657           /* Try to combine a jump insn that uses CC0
658              with a preceding insn that sets CC0, and maybe with its
659              logical predecessor as well.
660              This is how we make decrement-and-branch insns.
661              We need this special code because data flow connections
662              via CC0 do not get entered in LOG_LINKS.  */
663
664           if (GET_CODE (insn) == JUMP_INSN
665               && (prev = prev_nonnote_insn (insn)) != 0
666               && GET_CODE (prev) == INSN
667               && sets_cc0_p (PATTERN (prev)))
668             {
669               if ((next = try_combine (insn, prev, 
670                                        NULL_RTX, &new_direct_jump_p)) != 0)
671                 goto retry;
672
673               for (nextlinks = LOG_LINKS (prev); nextlinks;
674                    nextlinks = XEXP (nextlinks, 1))
675                 if ((next = try_combine (insn, prev,
676                                          XEXP (nextlinks, 0),
677                                          &new_direct_jump_p)) != 0)
678                   goto retry;
679             }
680
681           /* Do the same for an insn that explicitly references CC0.  */
682           if (GET_CODE (insn) == INSN
683               && (prev = prev_nonnote_insn (insn)) != 0
684               && GET_CODE (prev) == INSN
685               && sets_cc0_p (PATTERN (prev))
686               && GET_CODE (PATTERN (insn)) == SET
687               && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (insn))))
688             {
689               if ((next = try_combine (insn, prev, 
690                                        NULL_RTX, &new_direct_jump_p)) != 0)
691                 goto retry;
692
693               for (nextlinks = LOG_LINKS (prev); nextlinks;
694                    nextlinks = XEXP (nextlinks, 1))
695                 if ((next = try_combine (insn, prev,
696                                          XEXP (nextlinks, 0),
697                                          &new_direct_jump_p)) != 0)
698                   goto retry;
699             }
700
701           /* Finally, see if any of the insns that this insn links to
702              explicitly references CC0.  If so, try this insn, that insn,
703              and its predecessor if it sets CC0.  */
704           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
705             if (GET_CODE (XEXP (links, 0)) == INSN
706                 && GET_CODE (PATTERN (XEXP (links, 0))) == SET
707                 && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (XEXP (links, 0))))
708                 && (prev = prev_nonnote_insn (XEXP (links, 0))) != 0
709                 && GET_CODE (prev) == INSN
710                 && sets_cc0_p (PATTERN (prev))
711                 && (next = try_combine (insn, XEXP (links, 0), 
712                                         prev, &new_direct_jump_p)) != 0)
713               goto retry;
714 #endif
715
716           /* Try combining an insn with two different insns whose results it
717              uses.  */
718           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
719             for (nextlinks = XEXP (links, 1); nextlinks;
720                  nextlinks = XEXP (nextlinks, 1))
721               if ((next = try_combine (insn, XEXP (links, 0),
722                                        XEXP (nextlinks, 0),
723                                        &new_direct_jump_p)) != 0)
724                 goto retry;
725
726           if (GET_CODE (insn) != NOTE)
727             record_dead_and_set_regs (insn);
728
729         retry:
730           ;
731         }
732     }
733
734   if (need_refresh)
735     {
736       compute_bb_for_insn (get_max_uid ());
737       update_life_info (refresh_blocks, UPDATE_LIFE_GLOBAL_RM_NOTES,
738                         PROP_DEATH_NOTES);
739     }
740
741   /* Clean up.  */
742   sbitmap_free (refresh_blocks);
743   free (reg_nonzero_bits);
744   free (reg_sign_bit_copies);
745   free (reg_last_death);
746   free (reg_last_set);
747   free (reg_last_set_value);
748   free (reg_last_set_table_tick);
749   free (reg_last_set_label);
750   free (reg_last_set_invalid);
751   free (reg_last_set_mode);
752   free (reg_last_set_nonzero_bits);
753   free (reg_last_set_sign_bit_copies);
754   free (uid_cuid);
755
756   {
757     struct undo *undo, *next;
758     for (undo = undobuf.frees; undo; undo = next)
759       {
760         next = undo->next;
761         free (undo);
762       }
763     undobuf.frees = 0;
764   }
765
766   total_attempts += combine_attempts;
767   total_merges += combine_merges;
768   total_extras += combine_extras;
769   total_successes += combine_successes;
770
771   nonzero_sign_valid = 0;
772
773   /* Make recognizer allow volatile MEMs again.  */
774   init_recog ();
775
776   return new_direct_jump_p;
777 }
778
779 /* Wipe the reg_last_xxx arrays in preparation for another pass.  */
780
781 static void
782 init_reg_last_arrays ()
783 {
784   unsigned int nregs = combine_max_regno;
785
786   bzero ((char *) reg_last_death, nregs * sizeof (rtx));
787   bzero ((char *) reg_last_set, nregs * sizeof (rtx));
788   bzero ((char *) reg_last_set_value, nregs * sizeof (rtx));
789   bzero ((char *) reg_last_set_table_tick, nregs * sizeof (int));
790   bzero ((char *) reg_last_set_label, nregs * sizeof (int));
791   bzero (reg_last_set_invalid, nregs * sizeof (char));
792   bzero ((char *) reg_last_set_mode, nregs * sizeof (enum machine_mode));
793   bzero ((char *) reg_last_set_nonzero_bits, nregs * sizeof (HOST_WIDE_INT));
794   bzero (reg_last_set_sign_bit_copies, nregs * sizeof (char));
795 }
796 \f
797 /* Set up any promoted values for incoming argument registers.  */
798
799 static void
800 setup_incoming_promotions ()
801 {
802 #ifdef PROMOTE_FUNCTION_ARGS
803   unsigned int regno;
804   rtx reg;
805   enum machine_mode mode;
806   int unsignedp;
807   rtx first = get_insns ();
808
809 #ifndef OUTGOING_REGNO
810 #define OUTGOING_REGNO(N) N
811 #endif
812   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
813     /* Check whether this register can hold an incoming pointer
814        argument.  FUNCTION_ARG_REGNO_P tests outgoing register
815        numbers, so translate if necessary due to register windows.  */
816     if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (regno))
817         && (reg = promoted_input_arg (regno, &mode, &unsignedp)) != 0)
818       {
819         record_value_for_reg
820           (reg, first, gen_rtx_fmt_e ((unsignedp ? ZERO_EXTEND
821                                        : SIGN_EXTEND),
822                                       GET_MODE (reg),
823                                       gen_rtx_CLOBBER (mode, const0_rtx)));
824       }
825 #endif
826 }
827 \f
828 /* Called via note_stores.  If X is a pseudo that is narrower than
829    HOST_BITS_PER_WIDE_INT and is being set, record what bits are known zero.
830
831    If we are setting only a portion of X and we can't figure out what
832    portion, assume all bits will be used since we don't know what will
833    be happening.
834
835    Similarly, set how many bits of X are known to be copies of the sign bit
836    at all locations in the function.  This is the smallest number implied 
837    by any set of X.  */
838
839 static void
840 set_nonzero_bits_and_sign_copies (x, set, data)
841      rtx x;
842      rtx set;
843      void *data ATTRIBUTE_UNUSED;
844 {
845   unsigned int num;
846
847   if (GET_CODE (x) == REG
848       && REGNO (x) >= FIRST_PSEUDO_REGISTER
849       /* If this register is undefined at the start of the file, we can't
850          say what its contents were.  */
851       && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, REGNO (x))
852       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
853     {
854       if (set == 0 || GET_CODE (set) == CLOBBER)
855         {
856           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
857           reg_sign_bit_copies[REGNO (x)] = 1;
858           return;
859         }
860
861       /* If this is a complex assignment, see if we can convert it into a
862          simple assignment.  */
863       set = expand_field_assignment (set);
864
865       /* If this is a simple assignment, or we have a paradoxical SUBREG,
866          set what we know about X.  */
867
868       if (SET_DEST (set) == x
869           || (GET_CODE (SET_DEST (set)) == SUBREG
870               && (GET_MODE_SIZE (GET_MODE (SET_DEST (set)))
871                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (set)))))
872               && SUBREG_REG (SET_DEST (set)) == x))
873         {
874           rtx src = SET_SRC (set);
875
876 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
877           /* If X is narrower than a word and SRC is a non-negative
878              constant that would appear negative in the mode of X,
879              sign-extend it for use in reg_nonzero_bits because some
880              machines (maybe most) will actually do the sign-extension
881              and this is the conservative approach. 
882
883              ??? For 2.5, try to tighten up the MD files in this regard
884              instead of this kludge.  */
885
886           if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
887               && GET_CODE (src) == CONST_INT
888               && INTVAL (src) > 0
889               && 0 != (INTVAL (src)
890                        & ((HOST_WIDE_INT) 1
891                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
892             src = GEN_INT (INTVAL (src)
893                            | ((HOST_WIDE_INT) (-1)
894                               << GET_MODE_BITSIZE (GET_MODE (x))));
895 #endif
896
897           reg_nonzero_bits[REGNO (x)]
898             |= nonzero_bits (src, nonzero_bits_mode);
899           num = num_sign_bit_copies (SET_SRC (set), GET_MODE (x));
900           if (reg_sign_bit_copies[REGNO (x)] == 0
901               || reg_sign_bit_copies[REGNO (x)] > num)
902             reg_sign_bit_copies[REGNO (x)] = num;
903         }
904       else
905         {
906           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
907           reg_sign_bit_copies[REGNO (x)] = 1;
908         }
909     }
910 }
911 \f
912 /* See if INSN can be combined into I3.  PRED and SUCC are optionally
913    insns that were previously combined into I3 or that will be combined
914    into the merger of INSN and I3.
915
916    Return 0 if the combination is not allowed for any reason.
917
918    If the combination is allowed, *PDEST will be set to the single 
919    destination of INSN and *PSRC to the single source, and this function
920    will return 1.  */
921
922 static int
923 can_combine_p (insn, i3, pred, succ, pdest, psrc)
924      rtx insn;
925      rtx i3;
926      rtx pred ATTRIBUTE_UNUSED;
927      rtx succ;
928      rtx *pdest, *psrc;
929 {
930   int i;
931   rtx set = 0, src, dest;
932   rtx p;
933 #ifdef AUTO_INC_DEC
934   rtx link;
935 #endif
936   int all_adjacent = (succ ? (next_active_insn (insn) == succ
937                               && next_active_insn (succ) == i3)
938                       : next_active_insn (insn) == i3);
939
940   /* Can combine only if previous insn is a SET of a REG, a SUBREG or CC0.
941      or a PARALLEL consisting of such a SET and CLOBBERs. 
942
943      If INSN has CLOBBER parallel parts, ignore them for our processing.
944      By definition, these happen during the execution of the insn.  When it
945      is merged with another insn, all bets are off.  If they are, in fact,
946      needed and aren't also supplied in I3, they may be added by
947      recog_for_combine.  Otherwise, it won't match. 
948
949      We can also ignore a SET whose SET_DEST is mentioned in a REG_UNUSED
950      note.
951
952      Get the source and destination of INSN.  If more than one, can't 
953      combine.  */
954      
955   if (GET_CODE (PATTERN (insn)) == SET)
956     set = PATTERN (insn);
957   else if (GET_CODE (PATTERN (insn)) == PARALLEL
958            && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
959     {
960       for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
961         {
962           rtx elt = XVECEXP (PATTERN (insn), 0, i);
963
964           switch (GET_CODE (elt))
965             {
966             /* This is important to combine floating point insns
967                for the SH4 port.  */
968             case USE:
969               /* Combining an isolated USE doesn't make sense.
970                  We depend here on combinable_i3_pat to reject them.  */
971               /* The code below this loop only verifies that the inputs of
972                  the SET in INSN do not change.  We call reg_set_between_p
973                  to verify that the REG in the USE does not change betweeen
974                  I3 and INSN.
975                  If the USE in INSN was for a pseudo register, the matching
976                  insn pattern will likely match any register; combining this
977                  with any other USE would only be safe if we knew that the
978                  used registers have identical values, or if there was
979                  something to tell them apart, e.g. different modes.  For
980                  now, we forgo such compilcated tests and simply disallow
981                  combining of USES of pseudo registers with any other USE.  */
982               if (GET_CODE (XEXP (elt, 0)) == REG
983                   && GET_CODE (PATTERN (i3)) == PARALLEL)
984                 {
985                   rtx i3pat = PATTERN (i3);
986                   int i = XVECLEN (i3pat, 0) - 1;
987                   unsigned int regno = REGNO (XEXP (elt, 0));
988
989                   do
990                     {
991                       rtx i3elt = XVECEXP (i3pat, 0, i);
992
993                       if (GET_CODE (i3elt) == USE
994                           && GET_CODE (XEXP (i3elt, 0)) == REG
995                           && (REGNO (XEXP (i3elt, 0)) == regno
996                               ? reg_set_between_p (XEXP (elt, 0),
997                                                    PREV_INSN (insn), i3)
998                               : regno >= FIRST_PSEUDO_REGISTER))
999                         return 0;
1000                     }
1001                   while (--i >= 0);
1002                 }
1003               break;
1004
1005               /* We can ignore CLOBBERs.  */
1006             case CLOBBER:
1007               break;
1008
1009             case SET:
1010               /* Ignore SETs whose result isn't used but not those that
1011                  have side-effects.  */
1012               if (find_reg_note (insn, REG_UNUSED, SET_DEST (elt))
1013                   && ! side_effects_p (elt))
1014                 break;
1015
1016               /* If we have already found a SET, this is a second one and
1017                  so we cannot combine with this insn.  */
1018               if (set)
1019                 return 0;
1020
1021               set = elt;
1022               break;
1023
1024             default:
1025               /* Anything else means we can't combine.  */
1026               return 0;
1027             }
1028         }
1029
1030       if (set == 0
1031           /* If SET_SRC is an ASM_OPERANDS we can't throw away these CLOBBERs,
1032              so don't do anything with it.  */
1033           || GET_CODE (SET_SRC (set)) == ASM_OPERANDS)
1034         return 0;
1035     }
1036   else
1037     return 0;
1038
1039   if (set == 0)
1040     return 0;
1041
1042   set = expand_field_assignment (set);
1043   src = SET_SRC (set), dest = SET_DEST (set);
1044
1045   /* Don't eliminate a store in the stack pointer.  */
1046   if (dest == stack_pointer_rtx
1047       /* If we couldn't eliminate a field assignment, we can't combine.  */
1048       || GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == STRICT_LOW_PART
1049       /* Don't combine with an insn that sets a register to itself if it has
1050          a REG_EQUAL note.  This may be part of a REG_NO_CONFLICT sequence.  */
1051       || (rtx_equal_p (src, dest) && find_reg_note (insn, REG_EQUAL, NULL_RTX))
1052       /* Can't merge a function call.  */
1053       || GET_CODE (src) == CALL
1054       /* Don't eliminate a function call argument.  */
1055       || (GET_CODE (i3) == CALL_INSN
1056           && (find_reg_fusage (i3, USE, dest)
1057               || (GET_CODE (dest) == REG
1058                   && REGNO (dest) < FIRST_PSEUDO_REGISTER
1059                   && global_regs[REGNO (dest)])))
1060       /* Don't substitute into an incremented register.  */
1061       || FIND_REG_INC_NOTE (i3, dest)
1062       || (succ && FIND_REG_INC_NOTE (succ, dest))
1063 #if 0
1064       /* Don't combine the end of a libcall into anything.  */
1065       /* ??? This gives worse code, and appears to be unnecessary, since no
1066          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  Local-alloc does
1067          use REG_RETVAL notes for noconflict blocks, but other code here
1068          makes sure that those insns don't disappear.  */
1069       || find_reg_note (insn, REG_RETVAL, NULL_RTX)
1070 #endif
1071       /* Make sure that DEST is not used after SUCC but before I3.  */
1072       || (succ && ! all_adjacent
1073           && reg_used_between_p (dest, succ, i3))
1074       /* Make sure that the value that is to be substituted for the register
1075          does not use any registers whose values alter in between.  However,
1076          If the insns are adjacent, a use can't cross a set even though we
1077          think it might (this can happen for a sequence of insns each setting
1078          the same destination; reg_last_set of that register might point to
1079          a NOTE).  If INSN has a REG_EQUIV note, the register is always
1080          equivalent to the memory so the substitution is valid even if there
1081          are intervening stores.  Also, don't move a volatile asm or
1082          UNSPEC_VOLATILE across any other insns.  */
1083       || (! all_adjacent
1084           && (((GET_CODE (src) != MEM
1085                 || ! find_reg_note (insn, REG_EQUIV, src))
1086                && use_crosses_set_p (src, INSN_CUID (insn)))
1087               || (GET_CODE (src) == ASM_OPERANDS && MEM_VOLATILE_P (src))
1088               || GET_CODE (src) == UNSPEC_VOLATILE))
1089       /* If there is a REG_NO_CONFLICT note for DEST in I3 or SUCC, we get
1090          better register allocation by not doing the combine.  */
1091       || find_reg_note (i3, REG_NO_CONFLICT, dest)
1092       || (succ && find_reg_note (succ, REG_NO_CONFLICT, dest))
1093       /* Don't combine across a CALL_INSN, because that would possibly
1094          change whether the life span of some REGs crosses calls or not,
1095          and it is a pain to update that information.
1096          Exception: if source is a constant, moving it later can't hurt.
1097          Accept that special case, because it helps -fforce-addr a lot.  */
1098       || (INSN_CUID (insn) < last_call_cuid && ! CONSTANT_P (src)))
1099     return 0;
1100
1101   /* DEST must either be a REG or CC0.  */
1102   if (GET_CODE (dest) == REG)
1103     {
1104       /* If register alignment is being enforced for multi-word items in all
1105          cases except for parameters, it is possible to have a register copy
1106          insn referencing a hard register that is not allowed to contain the
1107          mode being copied and which would not be valid as an operand of most
1108          insns.  Eliminate this problem by not combining with such an insn.
1109
1110          Also, on some machines we don't want to extend the life of a hard
1111          register.
1112
1113          This is the same test done in can_combine except that we don't test
1114          if SRC is a CALL operation to permit a hard register with
1115          SMALL_REGISTER_CLASSES, and that we have to take all_adjacent
1116          into account.  */
1117
1118       if (GET_CODE (src) == REG
1119           && ((REGNO (dest) < FIRST_PSEUDO_REGISTER
1120                && ! HARD_REGNO_MODE_OK (REGNO (dest), GET_MODE (dest)))
1121               /* Don't extend the life of a hard register unless it is
1122                  user variable (if we have few registers) or it can't
1123                  fit into the desired register (meaning something special
1124                  is going on).
1125                  Also avoid substituting a return register into I3, because
1126                  reload can't handle a conflict with constraints of other
1127                  inputs.  */
1128               || (REGNO (src) < FIRST_PSEUDO_REGISTER
1129                   && (! HARD_REGNO_MODE_OK (REGNO (src), GET_MODE (src))
1130                       || (SMALL_REGISTER_CLASSES
1131                           && ((! all_adjacent && ! REG_USERVAR_P (src))
1132                               || (FUNCTION_VALUE_REGNO_P (REGNO (src))
1133                                   && ! REG_USERVAR_P (src))))))))
1134         return 0;
1135     }
1136   else if (GET_CODE (dest) != CC0)
1137     return 0;
1138
1139   /* Don't substitute for a register intended as a clobberable operand.
1140      Similarly, don't substitute an expression containing a register that
1141      will be clobbered in I3.  */
1142   if (GET_CODE (PATTERN (i3)) == PARALLEL)
1143     for (i = XVECLEN (PATTERN (i3), 0) - 1; i >= 0; i--)
1144       if (GET_CODE (XVECEXP (PATTERN (i3), 0, i)) == CLOBBER
1145           && (reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0),
1146                                        src)
1147               || rtx_equal_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0), dest)))
1148         return 0;
1149
1150   /* If INSN contains anything volatile, or is an `asm' (whether volatile
1151      or not), reject, unless nothing volatile comes between it and I3 */
1152
1153   if (GET_CODE (src) == ASM_OPERANDS || volatile_refs_p (src))
1154     {
1155       /* Make sure succ doesn't contain a volatile reference.  */
1156       if (succ != 0 && volatile_refs_p (PATTERN (succ)))
1157         return 0;
1158   
1159       for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1160         if (GET_RTX_CLASS (GET_CODE (p)) == 'i'
1161           && p != succ && volatile_refs_p (PATTERN (p)))
1162         return 0;
1163     }
1164
1165   /* If INSN is an asm, and DEST is a hard register, reject, since it has
1166      to be an explicit register variable, and was chosen for a reason.  */
1167
1168   if (GET_CODE (src) == ASM_OPERANDS
1169       && GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER)
1170     return 0;
1171
1172   /* If there are any volatile insns between INSN and I3, reject, because
1173      they might affect machine state.  */
1174
1175   for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1176     if (GET_RTX_CLASS (GET_CODE (p)) == 'i'
1177         && p != succ && volatile_insn_p (PATTERN (p)))
1178       return 0;
1179
1180   /* If INSN or I2 contains an autoincrement or autodecrement,
1181      make sure that register is not used between there and I3,
1182      and not already used in I3 either.
1183      Also insist that I3 not be a jump; if it were one
1184      and the incremented register were spilled, we would lose.  */
1185
1186 #ifdef AUTO_INC_DEC
1187   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1188     if (REG_NOTE_KIND (link) == REG_INC
1189         && (GET_CODE (i3) == JUMP_INSN
1190             || reg_used_between_p (XEXP (link, 0), insn, i3)
1191             || reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i3))))
1192       return 0;
1193 #endif
1194
1195 #ifdef HAVE_cc0
1196   /* Don't combine an insn that follows a CC0-setting insn.
1197      An insn that uses CC0 must not be separated from the one that sets it.
1198      We do, however, allow I2 to follow a CC0-setting insn if that insn
1199      is passed as I1; in that case it will be deleted also.
1200      We also allow combining in this case if all the insns are adjacent
1201      because that would leave the two CC0 insns adjacent as well.
1202      It would be more logical to test whether CC0 occurs inside I1 or I2,
1203      but that would be much slower, and this ought to be equivalent.  */
1204
1205   p = prev_nonnote_insn (insn);
1206   if (p && p != pred && GET_CODE (p) == INSN && sets_cc0_p (PATTERN (p))
1207       && ! all_adjacent)
1208     return 0;
1209 #endif
1210
1211   /* If we get here, we have passed all the tests and the combination is
1212      to be allowed.  */
1213
1214   *pdest = dest;
1215   *psrc = src;
1216
1217   return 1;
1218 }
1219 \f
1220 /* Check if PAT is an insn - or a part of it - used to set up an
1221    argument for a function in a hard register.  */
1222
1223 static int
1224 sets_function_arg_p (pat)
1225      rtx pat;
1226 {
1227   int i;
1228   rtx inner_dest;
1229
1230   switch (GET_CODE (pat))
1231     {
1232     case INSN:
1233       return sets_function_arg_p (PATTERN (pat));
1234
1235     case PARALLEL:
1236       for (i = XVECLEN (pat, 0); --i >= 0;)
1237         if (sets_function_arg_p (XVECEXP (pat, 0, i)))
1238           return 1;
1239
1240       break;
1241
1242     case SET:
1243       inner_dest = SET_DEST (pat);
1244       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1245              || GET_CODE (inner_dest) == SUBREG
1246              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1247         inner_dest = XEXP (inner_dest, 0);
1248
1249       return (GET_CODE (inner_dest) == REG
1250               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1251               && FUNCTION_ARG_REGNO_P (REGNO (inner_dest)));
1252
1253     default:
1254       break;
1255     }
1256
1257   return 0;
1258 }
1259
1260 /* LOC is the location within I3 that contains its pattern or the component
1261    of a PARALLEL of the pattern.  We validate that it is valid for combining.
1262
1263    One problem is if I3 modifies its output, as opposed to replacing it
1264    entirely, we can't allow the output to contain I2DEST or I1DEST as doing
1265    so would produce an insn that is not equivalent to the original insns.
1266
1267    Consider:
1268
1269          (set (reg:DI 101) (reg:DI 100))
1270          (set (subreg:SI (reg:DI 101) 0) <foo>)
1271
1272    This is NOT equivalent to:
1273
1274          (parallel [(set (subreg:SI (reg:DI 100) 0) <foo>)
1275                     (set (reg:DI 101) (reg:DI 100))])
1276
1277    Not only does this modify 100 (in which case it might still be valid
1278    if 100 were dead in I2), it sets 101 to the ORIGINAL value of 100. 
1279
1280    We can also run into a problem if I2 sets a register that I1
1281    uses and I1 gets directly substituted into I3 (not via I2).  In that
1282    case, we would be getting the wrong value of I2DEST into I3, so we
1283    must reject the combination.  This case occurs when I2 and I1 both
1284    feed into I3, rather than when I1 feeds into I2, which feeds into I3.
1285    If I1_NOT_IN_SRC is non-zero, it means that finding I1 in the source
1286    of a SET must prevent combination from occurring.
1287
1288    On machines where SMALL_REGISTER_CLASSES is non-zero, we don't combine
1289    if the destination of a SET is a hard register that isn't a user
1290    variable.
1291
1292    Before doing the above check, we first try to expand a field assignment
1293    into a set of logical operations.
1294
1295    If PI3_DEST_KILLED is non-zero, it is a pointer to a location in which
1296    we place a register that is both set and used within I3.  If more than one
1297    such register is detected, we fail.
1298
1299    Return 1 if the combination is valid, zero otherwise.  */
1300
1301 static int
1302 combinable_i3pat (i3, loc, i2dest, i1dest, i1_not_in_src, pi3dest_killed)
1303      rtx i3;
1304      rtx *loc;
1305      rtx i2dest;
1306      rtx i1dest;
1307      int i1_not_in_src;
1308      rtx *pi3dest_killed;
1309 {
1310   rtx x = *loc;
1311
1312   if (GET_CODE (x) == SET)
1313     {
1314       rtx set = expand_field_assignment (x);
1315       rtx dest = SET_DEST (set);
1316       rtx src = SET_SRC (set);
1317       rtx inner_dest = dest;
1318  
1319 #if 0
1320       rtx inner_src = src;
1321 #endif
1322
1323       SUBST (*loc, set);
1324
1325       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1326              || GET_CODE (inner_dest) == SUBREG
1327              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1328         inner_dest = XEXP (inner_dest, 0);
1329
1330   /* We probably don't need this any more now that LIMIT_RELOAD_CLASS
1331      was added.  */
1332 #if 0
1333       while (GET_CODE (inner_src) == STRICT_LOW_PART
1334              || GET_CODE (inner_src) == SUBREG
1335              || GET_CODE (inner_src) == ZERO_EXTRACT)
1336         inner_src = XEXP (inner_src, 0);
1337
1338       /* If it is better that two different modes keep two different pseudos,
1339          avoid combining them.  This avoids producing the following pattern
1340          on a 386:
1341           (set (subreg:SI (reg/v:QI 21) 0)
1342                (lshiftrt:SI (reg/v:SI 20)
1343                    (const_int 24)))
1344          If that were made, reload could not handle the pair of
1345          reg 20/21, since it would try to get any GENERAL_REGS
1346          but some of them don't handle QImode.  */
1347
1348       if (rtx_equal_p (inner_src, i2dest)
1349           && GET_CODE (inner_dest) == REG
1350           && ! MODES_TIEABLE_P (GET_MODE (i2dest), GET_MODE (inner_dest)))
1351         return 0;
1352 #endif
1353
1354       /* Check for the case where I3 modifies its output, as
1355          discussed above.  */
1356       if ((inner_dest != dest
1357            && (reg_overlap_mentioned_p (i2dest, inner_dest)
1358                || (i1dest && reg_overlap_mentioned_p (i1dest, inner_dest))))
1359
1360           /* This is the same test done in can_combine_p except that we
1361              allow a hard register with SMALL_REGISTER_CLASSES if SRC is a
1362              CALL operation. Moreover, we can't test all_adjacent; we don't
1363              have to, since this instruction will stay in place, thus we are
1364              not considering increasing the lifetime of INNER_DEST.
1365
1366              Also, if this insn sets a function argument, combining it with
1367              something that might need a spill could clobber a previous
1368              function argument; the all_adjacent test in can_combine_p also
1369              checks this; here, we do a more specific test for this case.  */
1370              
1371           || (GET_CODE (inner_dest) == REG
1372               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1373               && (! HARD_REGNO_MODE_OK (REGNO (inner_dest),
1374                                         GET_MODE (inner_dest))
1375                  || (SMALL_REGISTER_CLASSES && GET_CODE (src) != CALL
1376                      && ! REG_USERVAR_P (inner_dest)
1377                      && (FUNCTION_VALUE_REGNO_P (REGNO (inner_dest))
1378                          || (FUNCTION_ARG_REGNO_P (REGNO (inner_dest))
1379                              && i3 != 0
1380                              && sets_function_arg_p (prev_nonnote_insn (i3)))))))
1381           || (i1_not_in_src && reg_overlap_mentioned_p (i1dest, src)))
1382         return 0;
1383
1384       /* If DEST is used in I3, it is being killed in this insn,
1385          so record that for later. 
1386          Never add REG_DEAD notes for the FRAME_POINTER_REGNUM or the
1387          STACK_POINTER_REGNUM, since these are always considered to be
1388          live.  Similarly for ARG_POINTER_REGNUM if it is fixed.  */
1389       if (pi3dest_killed && GET_CODE (dest) == REG
1390           && reg_referenced_p (dest, PATTERN (i3))
1391           && REGNO (dest) != FRAME_POINTER_REGNUM
1392 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
1393           && REGNO (dest) != HARD_FRAME_POINTER_REGNUM
1394 #endif
1395 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
1396           && (REGNO (dest) != ARG_POINTER_REGNUM
1397               || ! fixed_regs [REGNO (dest)])
1398 #endif
1399           && REGNO (dest) != STACK_POINTER_REGNUM)
1400         {
1401           if (*pi3dest_killed)
1402             return 0;
1403
1404           *pi3dest_killed = dest;
1405         }
1406     }
1407
1408   else if (GET_CODE (x) == PARALLEL)
1409     {
1410       int i;
1411
1412       for (i = 0; i < XVECLEN (x, 0); i++)
1413         if (! combinable_i3pat (i3, &XVECEXP (x, 0, i), i2dest, i1dest,
1414                                 i1_not_in_src, pi3dest_killed))
1415           return 0;
1416     }
1417
1418   return 1;
1419 }
1420 \f
1421 /* Return 1 if X is an arithmetic expression that contains a multiplication
1422    and division.  We don't count multiplications by powers of two here.  */
1423
1424 static int
1425 contains_muldiv (x)
1426      rtx x;
1427 {
1428   switch (GET_CODE (x))
1429     {
1430     case MOD:  case DIV:  case UMOD:  case UDIV:
1431       return 1;
1432
1433     case MULT:
1434       return ! (GET_CODE (XEXP (x, 1)) == CONST_INT
1435                 && exact_log2 (INTVAL (XEXP (x, 1))) >= 0);
1436     default:
1437       switch (GET_RTX_CLASS (GET_CODE (x)))
1438         {
1439         case 'c':  case '<':  case '2':
1440           return contains_muldiv (XEXP (x, 0))
1441             || contains_muldiv (XEXP (x, 1));
1442
1443         case '1':
1444           return contains_muldiv (XEXP (x, 0));
1445
1446         default:
1447           return 0;
1448         }
1449     }
1450 }
1451 \f
1452 /* Try to combine the insns I1 and I2 into I3.
1453    Here I1 and I2 appear earlier than I3.
1454    I1 can be zero; then we combine just I2 into I3.
1455  
1456    It we are combining three insns and the resulting insn is not recognized,
1457    try splitting it into two insns.  If that happens, I2 and I3 are retained
1458    and I1 is pseudo-deleted by turning it into a NOTE.  Otherwise, I1 and I2
1459    are pseudo-deleted.
1460
1461    Return 0 if the combination does not work.  Then nothing is changed. 
1462    If we did the combination, return the insn at which combine should
1463    resume scanning.  
1464    
1465    Set NEW_DIRECT_JUMP_P to a non-zero value if try_combine creates a
1466    new direct jump instruction.  */
1467
1468 static rtx
1469 try_combine (i3, i2, i1, new_direct_jump_p)
1470      register rtx i3, i2, i1;
1471      register int *new_direct_jump_p;
1472 {
1473   /* New patterns for I3 and I3, respectively.  */
1474   rtx newpat, newi2pat = 0;
1475   /* Indicates need to preserve SET in I1 or I2 in I3 if it is not dead.  */
1476   int added_sets_1, added_sets_2;
1477   /* Total number of SETs to put into I3.  */
1478   int total_sets;
1479   /* Nonzero is I2's body now appears in I3.  */
1480   int i2_is_used;
1481   /* INSN_CODEs for new I3, new I2, and user of condition code.  */
1482   int insn_code_number, i2_code_number = 0, other_code_number = 0;
1483   /* Contains I3 if the destination of I3 is used in its source, which means
1484      that the old life of I3 is being killed.  If that usage is placed into
1485      I2 and not in I3, a REG_DEAD note must be made.  */
1486   rtx i3dest_killed = 0;
1487   /* SET_DEST and SET_SRC of I2 and I1.  */
1488   rtx i2dest, i2src, i1dest = 0, i1src = 0;
1489   /* PATTERN (I2), or a copy of it in certain cases.  */
1490   rtx i2pat;
1491   /* Indicates if I2DEST or I1DEST is in I2SRC or I1_SRC.  */
1492   int i2dest_in_i2src = 0, i1dest_in_i1src = 0, i2dest_in_i1src = 0;
1493   int i1_feeds_i3 = 0;
1494   /* Notes that must be added to REG_NOTES in I3 and I2.  */
1495   rtx new_i3_notes, new_i2_notes;
1496   /* Notes that we substituted I3 into I2 instead of the normal case.  */
1497   int i3_subst_into_i2 = 0;
1498   /* Notes that I1, I2 or I3 is a MULT operation.  */
1499   int have_mult = 0;
1500
1501   int maxreg;
1502   rtx temp;
1503   register rtx link;
1504   int i;
1505
1506   /* If any of I1, I2, and I3 isn't really an insn, we can't do anything.
1507      This can occur when flow deletes an insn that it has merged into an
1508      auto-increment address.  We also can't do anything if I3 has a
1509      REG_LIBCALL note since we don't want to disrupt the contiguity of a
1510      libcall.  */
1511
1512   if (GET_RTX_CLASS (GET_CODE (i3)) != 'i'
1513       || GET_RTX_CLASS (GET_CODE (i2)) != 'i'
1514       || (i1 && GET_RTX_CLASS (GET_CODE (i1)) != 'i')
1515 #if 0
1516       /* ??? This gives worse code, and appears to be unnecessary, since no
1517          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  */
1518       || find_reg_note (i3, REG_LIBCALL, NULL_RTX)
1519 #endif
1520 )
1521     return 0;
1522
1523   combine_attempts++;
1524   undobuf.other_insn = 0;
1525
1526   /* Save the current high-water-mark so we can free storage if we didn't
1527      accept this combination.  */
1528   undobuf.storage = (char *) oballoc (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 has multiple sets,
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      We make very conservative checks below and only try to handle the
1549      most common cases of this.  For example, we only handle the case
1550      where I2 and I3 are adjacent to avoid making difficult register
1551      usage tests.  */
1552
1553   if (i1 == 0 && GET_CODE (i3) == INSN && GET_CODE (PATTERN (i3)) == SET
1554       && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1555       && REGNO (SET_SRC (PATTERN (i3))) >= FIRST_PSEUDO_REGISTER
1556       && (! SMALL_REGISTER_CLASSES
1557           || (GET_CODE (SET_DEST (PATTERN (i3))) != REG
1558               || REGNO (SET_DEST (PATTERN (i3))) >= FIRST_PSEUDO_REGISTER
1559               || REG_USERVAR_P (SET_DEST (PATTERN (i3)))))
1560       && find_reg_note (i3, REG_DEAD, SET_SRC (PATTERN (i3)))
1561       && GET_CODE (PATTERN (i2)) == PARALLEL
1562       && ! side_effects_p (SET_DEST (PATTERN (i3)))
1563       /* If the dest of I3 is a ZERO_EXTRACT or STRICT_LOW_PART, the code
1564          below would need to check what is inside (and reg_overlap_mentioned_p
1565          doesn't support those codes anyway).  Don't allow those destinations;
1566          the resulting insn isn't likely to be recognized anyway.  */
1567       && GET_CODE (SET_DEST (PATTERN (i3))) != ZERO_EXTRACT
1568       && GET_CODE (SET_DEST (PATTERN (i3))) != STRICT_LOW_PART
1569       && ! reg_overlap_mentioned_p (SET_SRC (PATTERN (i3)),
1570                                     SET_DEST (PATTERN (i3)))
1571       && next_real_insn (i2) == i3)
1572     {
1573       rtx p2 = PATTERN (i2);
1574
1575       /* Make sure that the destination of I3,
1576          which we are going to substitute into one output of I2,
1577          is not used within another output of I2.  We must avoid making this:
1578          (parallel [(set (mem (reg 69)) ...)
1579                     (set (reg 69) ...)])
1580          which is not well-defined as to order of actions.
1581          (Besides, reload can't handle output reloads for this.)
1582
1583          The problem can also happen if the dest of I3 is a memory ref,
1584          if another dest in I2 is an indirect memory ref.  */
1585       for (i = 0; i < XVECLEN (p2, 0); i++)
1586         if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1587              || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1588             && reg_overlap_mentioned_p (SET_DEST (PATTERN (i3)),
1589                                         SET_DEST (XVECEXP (p2, 0, i))))
1590           break;
1591
1592       if (i == XVECLEN (p2, 0))
1593         for (i = 0; i < XVECLEN (p2, 0); i++)
1594           if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1595                || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1596               && SET_DEST (XVECEXP (p2, 0, i)) == SET_SRC (PATTERN (i3)))
1597             {
1598               combine_merges++;
1599
1600               subst_insn = i3;
1601               subst_low_cuid = INSN_CUID (i2);
1602
1603               added_sets_2 = added_sets_1 = 0;
1604               i2dest = SET_SRC (PATTERN (i3));
1605
1606               /* Replace the dest in I2 with our dest and make the resulting
1607                  insn the new pattern for I3.  Then skip to where we
1608                  validate the pattern.  Everything was set up above.  */
1609               SUBST (SET_DEST (XVECEXP (p2, 0, i)), 
1610                      SET_DEST (PATTERN (i3)));
1611
1612               newpat = p2;
1613               i3_subst_into_i2 = 1;
1614               goto validate_replacement;
1615             }
1616     }
1617
1618   /* If I2 is setting a double-word pseudo to a constant and I3 is setting
1619      one of those words to another constant, merge them by making a new
1620      constant.  */
1621   if (i1 == 0
1622       && (temp = single_set (i2)) != 0
1623       && (GET_CODE (SET_SRC (temp)) == CONST_INT
1624           || GET_CODE (SET_SRC (temp)) == CONST_DOUBLE)
1625       && GET_CODE (SET_DEST (temp)) == REG
1626       && GET_MODE_CLASS (GET_MODE (SET_DEST (temp))) == MODE_INT
1627       && GET_MODE_SIZE (GET_MODE (SET_DEST (temp))) == 2 * UNITS_PER_WORD
1628       && GET_CODE (PATTERN (i3)) == SET
1629       && GET_CODE (SET_DEST (PATTERN (i3))) == SUBREG
1630       && SUBREG_REG (SET_DEST (PATTERN (i3))) == SET_DEST (temp)
1631       && GET_MODE_CLASS (GET_MODE (SET_DEST (PATTERN (i3)))) == MODE_INT
1632       && GET_MODE_SIZE (GET_MODE (SET_DEST (PATTERN (i3)))) == UNITS_PER_WORD
1633       && GET_CODE (SET_SRC (PATTERN (i3))) == CONST_INT)
1634     {
1635       HOST_WIDE_INT lo, hi;
1636
1637       if (GET_CODE (SET_SRC (temp)) == CONST_INT)
1638         lo = INTVAL (SET_SRC (temp)), hi = lo < 0 ? -1 : 0;
1639       else
1640         {
1641           lo = CONST_DOUBLE_LOW (SET_SRC (temp));
1642           hi = CONST_DOUBLE_HIGH (SET_SRC (temp));
1643         }
1644
1645       if (subreg_lowpart_p (SET_DEST (PATTERN (i3))))
1646         lo = INTVAL (SET_SRC (PATTERN (i3)));
1647       else
1648         hi = INTVAL (SET_SRC (PATTERN (i3)));
1649
1650       combine_merges++;
1651       subst_insn = i3;
1652       subst_low_cuid = INSN_CUID (i2);
1653       added_sets_2 = added_sets_1 = 0;
1654       i2dest = SET_DEST (temp);
1655
1656       SUBST (SET_SRC (temp),
1657              immed_double_const (lo, hi, GET_MODE (SET_DEST (temp))));
1658
1659       newpat = PATTERN (i2);
1660       i3_subst_into_i2 = 1;
1661       goto validate_replacement;
1662     }
1663
1664 #ifndef HAVE_cc0
1665   /* If we have no I1 and I2 looks like:
1666         (parallel [(set (reg:CC X) (compare:CC OP (const_int 0)))
1667                    (set Y OP)])
1668      make up a dummy I1 that is
1669         (set Y OP)
1670      and change I2 to be
1671         (set (reg:CC X) (compare:CC Y (const_int 0)))
1672
1673      (We can ignore any trailing CLOBBERs.)
1674
1675      This undoes a previous combination and allows us to match a branch-and-
1676      decrement insn.  */
1677
1678   if (i1 == 0 && GET_CODE (PATTERN (i2)) == PARALLEL
1679       && XVECLEN (PATTERN (i2), 0) >= 2
1680       && GET_CODE (XVECEXP (PATTERN (i2), 0, 0)) == SET
1681       && (GET_MODE_CLASS (GET_MODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 0))))
1682           == MODE_CC)
1683       && GET_CODE (SET_SRC (XVECEXP (PATTERN (i2), 0, 0))) == COMPARE
1684       && XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 1) == const0_rtx
1685       && GET_CODE (XVECEXP (PATTERN (i2), 0, 1)) == SET
1686       && GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 1))) == REG
1687       && rtx_equal_p (XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 0),
1688                       SET_SRC (XVECEXP (PATTERN (i2), 0, 1))))
1689     {
1690       for (i =  XVECLEN (PATTERN (i2), 0) - 1; i >= 2; i--)
1691         if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != CLOBBER)
1692           break;
1693
1694       if (i == 1)
1695         {
1696           /* We make I1 with the same INSN_UID as I2.  This gives it
1697              the same INSN_CUID for value tracking.  Our fake I1 will
1698              never appear in the insn stream so giving it the same INSN_UID
1699              as I2 will not cause a problem.  */
1700
1701           subst_prev_insn = i1
1702             = gen_rtx_INSN (VOIDmode, INSN_UID (i2), NULL_RTX, i2,
1703                             XVECEXP (PATTERN (i2), 0, 1), -1, NULL_RTX,
1704                             NULL_RTX);
1705
1706           SUBST (PATTERN (i2), XVECEXP (PATTERN (i2), 0, 0));
1707           SUBST (XEXP (SET_SRC (PATTERN (i2)), 0),
1708                  SET_DEST (PATTERN (i1)));
1709         }
1710     }
1711 #endif
1712
1713   /* Verify that I2 and I1 are valid for combining.  */
1714   if (! can_combine_p (i2, i3, i1, NULL_RTX, &i2dest, &i2src)
1715       || (i1 && ! can_combine_p (i1, i3, NULL_RTX, i2, &i1dest, &i1src)))
1716     {
1717       undo_all ();
1718       return 0;
1719     }
1720
1721   /* Record whether I2DEST is used in I2SRC and similarly for the other
1722      cases.  Knowing this will help in register status updating below.  */
1723   i2dest_in_i2src = reg_overlap_mentioned_p (i2dest, i2src);
1724   i1dest_in_i1src = i1 && reg_overlap_mentioned_p (i1dest, i1src);
1725   i2dest_in_i1src = i1 && reg_overlap_mentioned_p (i2dest, i1src);
1726
1727   /* See if I1 directly feeds into I3.  It does if I1DEST is not used
1728      in I2SRC.  */
1729   i1_feeds_i3 = i1 && ! reg_overlap_mentioned_p (i1dest, i2src);
1730
1731   /* Ensure that I3's pattern can be the destination of combines.  */
1732   if (! combinable_i3pat (i3, &PATTERN (i3), i2dest, i1dest,
1733                           i1 && i2dest_in_i1src && i1_feeds_i3,
1734                           &i3dest_killed))
1735     {
1736       undo_all ();
1737       return 0;
1738     }
1739
1740   /* See if any of the insns is a MULT operation.  Unless one is, we will
1741      reject a combination that is, since it must be slower.  Be conservative
1742      here.  */
1743   if (GET_CODE (i2src) == MULT
1744       || (i1 != 0 && GET_CODE (i1src) == MULT)
1745       || (GET_CODE (PATTERN (i3)) == SET
1746           && GET_CODE (SET_SRC (PATTERN (i3))) == MULT))
1747     have_mult = 1;
1748
1749   /* If I3 has an inc, then give up if I1 or I2 uses the reg that is inc'd.
1750      We used to do this EXCEPT in one case: I3 has a post-inc in an
1751      output operand.  However, that exception can give rise to insns like
1752         mov r3,(r3)+
1753      which is a famous insn on the PDP-11 where the value of r3 used as the
1754      source was model-dependent.  Avoid this sort of thing.  */
1755
1756 #if 0
1757   if (!(GET_CODE (PATTERN (i3)) == SET
1758         && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1759         && GET_CODE (SET_DEST (PATTERN (i3))) == MEM
1760         && (GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_INC
1761             || GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_DEC)))
1762     /* It's not the exception.  */
1763 #endif
1764 #ifdef AUTO_INC_DEC
1765     for (link = REG_NOTES (i3); link; link = XEXP (link, 1))
1766       if (REG_NOTE_KIND (link) == REG_INC
1767           && (reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i2))
1768               || (i1 != 0
1769                   && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i1)))))
1770         {
1771           undo_all ();
1772           return 0;
1773         }
1774 #endif
1775
1776   /* See if the SETs in I1 or I2 need to be kept around in the merged
1777      instruction: whenever the value set there is still needed past I3.
1778      For the SETs in I2, this is easy: we see if I2DEST dies or is set in I3.
1779
1780      For the SET in I1, we have two cases:  If I1 and I2 independently
1781      feed into I3, the set in I1 needs to be kept around if I1DEST dies
1782      or is set in I3.  Otherwise (if I1 feeds I2 which feeds I3), the set
1783      in I1 needs to be kept around unless I1DEST dies or is set in either
1784      I2 or I3.  We can distinguish these cases by seeing if I2SRC mentions
1785      I1DEST.  If so, we know I1 feeds into I2.  */
1786
1787   added_sets_2 = ! dead_or_set_p (i3, i2dest);
1788
1789   added_sets_1
1790     = i1 && ! (i1_feeds_i3 ? dead_or_set_p (i3, i1dest)
1791                : (dead_or_set_p (i3, i1dest) || dead_or_set_p (i2, i1dest)));
1792
1793   /* If the set in I2 needs to be kept around, we must make a copy of
1794      PATTERN (I2), so that when we substitute I1SRC for I1DEST in
1795      PATTERN (I2), we are only substituting for the original I1DEST, not into
1796      an already-substituted copy.  This also prevents making self-referential
1797      rtx.  If I2 is a PARALLEL, we just need the piece that assigns I2SRC to
1798      I2DEST.  */
1799
1800   i2pat = (GET_CODE (PATTERN (i2)) == PARALLEL
1801            ? gen_rtx_SET (VOIDmode, i2dest, i2src)
1802            : PATTERN (i2));
1803
1804   if (added_sets_2)
1805     i2pat = copy_rtx (i2pat);
1806
1807   combine_merges++;
1808
1809   /* Substitute in the latest insn for the regs set by the earlier ones.  */
1810
1811   maxreg = max_reg_num ();
1812
1813   subst_insn = i3;
1814
1815   /* It is possible that the source of I2 or I1 may be performing an
1816      unneeded operation, such as a ZERO_EXTEND of something that is known
1817      to have the high part zero.  Handle that case by letting subst look at
1818      the innermost one of them.
1819
1820      Another way to do this would be to have a function that tries to
1821      simplify a single insn instead of merging two or more insns.  We don't
1822      do this because of the potential of infinite loops and because
1823      of the potential extra memory required.  However, doing it the way
1824      we are is a bit of a kludge and doesn't catch all cases.
1825
1826      But only do this if -fexpensive-optimizations since it slows things down
1827      and doesn't usually win.  */
1828
1829   if (flag_expensive_optimizations)
1830     {
1831       /* Pass pc_rtx so no substitutions are done, just simplifications.
1832          The cases that we are interested in here do not involve the few
1833          cases were is_replaced is checked.  */
1834       if (i1)
1835         {
1836           subst_low_cuid = INSN_CUID (i1);
1837           i1src = subst (i1src, pc_rtx, pc_rtx, 0, 0);
1838         }
1839       else
1840         {
1841           subst_low_cuid = INSN_CUID (i2);
1842           i2src = subst (i2src, pc_rtx, pc_rtx, 0, 0);
1843         }
1844
1845       undobuf.previous_undos = undobuf.undos;
1846     }
1847
1848 #ifndef HAVE_cc0
1849   /* Many machines that don't use CC0 have insns that can both perform an
1850      arithmetic operation and set the condition code.  These operations will
1851      be represented as a PARALLEL with the first element of the vector
1852      being a COMPARE of an arithmetic operation with the constant zero.
1853      The second element of the vector will set some pseudo to the result
1854      of the same arithmetic operation.  If we simplify the COMPARE, we won't
1855      match such a pattern and so will generate an extra insn.   Here we test
1856      for this case, where both the comparison and the operation result are
1857      needed, and make the PARALLEL by just replacing I2DEST in I3SRC with
1858      I2SRC.  Later we will make the PARALLEL that contains I2.  */
1859
1860   if (i1 == 0 && added_sets_2 && GET_CODE (PATTERN (i3)) == SET
1861       && GET_CODE (SET_SRC (PATTERN (i3))) == COMPARE
1862       && XEXP (SET_SRC (PATTERN (i3)), 1) == const0_rtx
1863       && rtx_equal_p (XEXP (SET_SRC (PATTERN (i3)), 0), i2dest))
1864     {
1865 #ifdef EXTRA_CC_MODES
1866       rtx *cc_use;
1867       enum machine_mode compare_mode;
1868 #endif
1869
1870       newpat = PATTERN (i3);
1871       SUBST (XEXP (SET_SRC (newpat), 0), i2src);
1872
1873       i2_is_used = 1;
1874
1875 #ifdef EXTRA_CC_MODES
1876       /* See if a COMPARE with the operand we substituted in should be done
1877          with the mode that is currently being used.  If not, do the same
1878          processing we do in `subst' for a SET; namely, if the destination
1879          is used only once, try to replace it with a register of the proper
1880          mode and also replace the COMPARE.  */
1881       if (undobuf.other_insn == 0
1882           && (cc_use = find_single_use (SET_DEST (newpat), i3,
1883                                         &undobuf.other_insn))
1884           && ((compare_mode = SELECT_CC_MODE (GET_CODE (*cc_use),
1885                                               i2src, const0_rtx))
1886               != GET_MODE (SET_DEST (newpat))))
1887         {
1888           unsigned int regno = REGNO (SET_DEST (newpat));
1889           rtx new_dest = gen_rtx_REG (compare_mode, regno);
1890
1891           if (regno < FIRST_PSEUDO_REGISTER
1892               || (REG_N_SETS (regno) == 1 && ! added_sets_2
1893                   && ! REG_USERVAR_P (SET_DEST (newpat))))
1894             {
1895               if (regno >= FIRST_PSEUDO_REGISTER)
1896                 SUBST (regno_reg_rtx[regno], new_dest);
1897
1898               SUBST (SET_DEST (newpat), new_dest);
1899               SUBST (XEXP (*cc_use, 0), new_dest);
1900               SUBST (SET_SRC (newpat),
1901                      gen_rtx_combine (COMPARE, compare_mode,
1902                                       i2src, const0_rtx));
1903             }
1904           else
1905             undobuf.other_insn = 0;
1906         }
1907 #endif    
1908     }
1909   else
1910 #endif
1911     {
1912       n_occurrences = 0;                /* `subst' counts here */
1913
1914       /* If I1 feeds into I2 (not into I3) and I1DEST is in I1SRC, we
1915          need to make a unique copy of I2SRC each time we substitute it
1916          to avoid self-referential rtl.  */
1917
1918       subst_low_cuid = INSN_CUID (i2);
1919       newpat = subst (PATTERN (i3), i2dest, i2src, 0,
1920                       ! i1_feeds_i3 && i1dest_in_i1src);
1921       undobuf.previous_undos = undobuf.undos;
1922
1923       /* Record whether i2's body now appears within i3's body.  */
1924       i2_is_used = n_occurrences;
1925     }
1926
1927   /* If we already got a failure, don't try to do more.  Otherwise,
1928      try to substitute in I1 if we have it.  */
1929
1930   if (i1 && GET_CODE (newpat) != CLOBBER)
1931     {
1932       /* Before we can do this substitution, we must redo the test done
1933          above (see detailed comments there) that ensures  that I1DEST
1934          isn't mentioned in any SETs in NEWPAT that are field assignments.  */
1935
1936       if (! combinable_i3pat (NULL_RTX, &newpat, i1dest, NULL_RTX,
1937                               0, NULL_PTR))
1938         {
1939           undo_all ();
1940           return 0;
1941         }
1942
1943       n_occurrences = 0;
1944       subst_low_cuid = INSN_CUID (i1);
1945       newpat = subst (newpat, i1dest, i1src, 0, 0);
1946       undobuf.previous_undos = undobuf.undos;
1947     }
1948
1949   /* Fail if an autoincrement side-effect has been duplicated.  Be careful
1950      to count all the ways that I2SRC and I1SRC can be used.  */
1951   if ((FIND_REG_INC_NOTE (i2, NULL_RTX) != 0
1952        && i2_is_used + added_sets_2 > 1)
1953       || (i1 != 0 && FIND_REG_INC_NOTE (i1, NULL_RTX) != 0
1954           && (n_occurrences + added_sets_1 + (added_sets_2 && ! i1_feeds_i3)
1955               > 1))
1956       /* Fail if we tried to make a new register (we used to abort, but there's
1957          really no reason to).  */
1958       || max_reg_num () != maxreg
1959       /* Fail if we couldn't do something and have a CLOBBER.  */
1960       || GET_CODE (newpat) == CLOBBER
1961       /* Fail if this new pattern is a MULT and we didn't have one before
1962          at the outer level.  */
1963       || (GET_CODE (newpat) == SET && GET_CODE (SET_SRC (newpat)) == MULT
1964           && ! have_mult))
1965     {
1966       undo_all ();
1967       return 0;
1968     }
1969
1970   /* If the actions of the earlier insns must be kept
1971      in addition to substituting them into the latest one,
1972      we must make a new PARALLEL for the latest insn
1973      to hold additional the SETs.  */
1974
1975   if (added_sets_1 || added_sets_2)
1976     {
1977       combine_extras++;
1978
1979       if (GET_CODE (newpat) == PARALLEL)
1980         {
1981           rtvec old = XVEC (newpat, 0);
1982           total_sets = XVECLEN (newpat, 0) + added_sets_1 + added_sets_2;
1983           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
1984           bcopy ((char *) &old->elem[0], (char *) XVEC (newpat, 0)->elem,
1985                  sizeof (old->elem[0]) * old->num_elem);
1986         }
1987       else
1988         {
1989           rtx old = newpat;
1990           total_sets = 1 + added_sets_1 + added_sets_2;
1991           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
1992           XVECEXP (newpat, 0, 0) = old;
1993         }
1994
1995      if (added_sets_1)
1996        XVECEXP (newpat, 0, --total_sets)
1997          = (GET_CODE (PATTERN (i1)) == PARALLEL
1998             ? gen_rtx_SET (VOIDmode, i1dest, i1src) : PATTERN (i1));
1999
2000      if (added_sets_2)
2001        {
2002          /* If there is no I1, use I2's body as is.  We used to also not do
2003             the subst call below if I2 was substituted into I3,
2004             but that could lose a simplification.  */
2005          if (i1 == 0)
2006            XVECEXP (newpat, 0, --total_sets) = i2pat;
2007          else
2008            /* See comment where i2pat is assigned.  */
2009            XVECEXP (newpat, 0, --total_sets)
2010              = subst (i2pat, i1dest, i1src, 0, 0);
2011        }
2012     }
2013
2014   /* We come here when we are replacing a destination in I2 with the
2015      destination of I3.  */
2016  validate_replacement:
2017
2018   /* Note which hard regs this insn has as inputs.  */
2019   mark_used_regs_combine (newpat);
2020
2021   /* Is the result of combination a valid instruction?  */
2022   insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2023
2024   /* If the result isn't valid, see if it is a PARALLEL of two SETs where
2025      the second SET's destination is a register that is unused.  In that case,
2026      we just need the first SET.   This can occur when simplifying a divmod
2027      insn.  We *must* test for this case here because the code below that
2028      splits two independent SETs doesn't handle this case correctly when it
2029      updates the register status.  Also check the case where the first
2030      SET's destination is unused.  That would not cause incorrect code, but
2031      does cause an unneeded insn to remain.  */
2032
2033   if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2034       && XVECLEN (newpat, 0) == 2
2035       && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2036       && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2037       && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == REG
2038       && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 1)))
2039       && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 1)))
2040       && asm_noperands (newpat) < 0)
2041     {
2042       newpat = XVECEXP (newpat, 0, 0);
2043       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2044     }
2045
2046   else if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2047            && XVECLEN (newpat, 0) == 2
2048            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2049            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2050            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) == REG
2051            && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 0)))
2052            && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 0)))
2053            && asm_noperands (newpat) < 0)
2054     {
2055       newpat = XVECEXP (newpat, 0, 1);
2056       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2057     }
2058
2059   /* If we were combining three insns and the result is a simple SET
2060      with no ASM_OPERANDS that wasn't recognized, try to split it into two
2061      insns.  There are two ways to do this.  It can be split using a 
2062      machine-specific method (like when you have an addition of a large
2063      constant) or by combine in the function find_split_point.  */
2064
2065   if (i1 && insn_code_number < 0 && GET_CODE (newpat) == SET
2066       && asm_noperands (newpat) < 0)
2067     {
2068       rtx m_split, *split;
2069       rtx ni2dest = i2dest;
2070
2071       /* See if the MD file can split NEWPAT.  If it can't, see if letting it
2072          use I2DEST as a scratch register will help.  In the latter case,
2073          convert I2DEST to the mode of the source of NEWPAT if we can.  */
2074
2075       m_split = split_insns (newpat, i3);
2076
2077       /* We can only use I2DEST as a scratch reg if it doesn't overlap any
2078          inputs of NEWPAT.  */
2079
2080       /* ??? If I2DEST is not safe, and I1DEST exists, then it would be
2081          possible to try that as a scratch reg.  This would require adding
2082          more code to make it work though.  */
2083
2084       if (m_split == 0 && ! reg_overlap_mentioned_p (ni2dest, newpat))
2085         {
2086           /* If I2DEST is a hard register or the only use of a pseudo,
2087              we can change its mode.  */
2088           if (GET_MODE (SET_DEST (newpat)) != GET_MODE (i2dest)
2089               && GET_MODE (SET_DEST (newpat)) != VOIDmode
2090               && GET_CODE (i2dest) == REG
2091               && (REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2092                   || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2093                       && ! REG_USERVAR_P (i2dest))))
2094             ni2dest = gen_rtx_REG (GET_MODE (SET_DEST (newpat)),
2095                                    REGNO (i2dest));
2096
2097           m_split = split_insns (gen_rtx_PARALLEL
2098                                  (VOIDmode,
2099                                   gen_rtvec (2, newpat,
2100                                              gen_rtx_CLOBBER (VOIDmode,
2101                                                               ni2dest))),
2102                                  i3);
2103         }
2104
2105       if (m_split && GET_CODE (m_split) == SEQUENCE
2106           && XVECLEN (m_split, 0) == 2
2107           && (next_real_insn (i2) == i3
2108               || ! use_crosses_set_p (PATTERN (XVECEXP (m_split, 0, 0)),
2109                                       INSN_CUID (i2))))
2110         {
2111           rtx i2set, i3set;
2112           rtx newi3pat = PATTERN (XVECEXP (m_split, 0, 1));
2113           newi2pat = PATTERN (XVECEXP (m_split, 0, 0));
2114
2115           i3set = single_set (XVECEXP (m_split, 0, 1));
2116           i2set = single_set (XVECEXP (m_split, 0, 0));
2117
2118           /* In case we changed the mode of I2DEST, replace it in the
2119              pseudo-register table here.  We can't do it above in case this
2120              code doesn't get executed and we do a split the other way.  */
2121
2122           if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2123             SUBST (regno_reg_rtx[REGNO (i2dest)], ni2dest);
2124
2125           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2126
2127           /* If I2 or I3 has multiple SETs, we won't know how to track
2128              register status, so don't use these insns.  If I2's destination
2129              is used between I2 and I3, we also can't use these insns.  */
2130
2131           if (i2_code_number >= 0 && i2set && i3set
2132               && (next_real_insn (i2) == i3
2133                   || ! reg_used_between_p (SET_DEST (i2set), i2, i3)))
2134             insn_code_number = recog_for_combine (&newi3pat, i3,
2135                                                   &new_i3_notes);
2136           if (insn_code_number >= 0)
2137             newpat = newi3pat;
2138
2139           /* It is possible that both insns now set the destination of I3.
2140              If so, we must show an extra use of it.  */
2141
2142           if (insn_code_number >= 0)
2143             {
2144               rtx new_i3_dest = SET_DEST (i3set);
2145               rtx new_i2_dest = SET_DEST (i2set);
2146
2147               while (GET_CODE (new_i3_dest) == ZERO_EXTRACT
2148                      || GET_CODE (new_i3_dest) == STRICT_LOW_PART
2149                      || GET_CODE (new_i3_dest) == SUBREG)
2150                 new_i3_dest = XEXP (new_i3_dest, 0);
2151
2152               while (GET_CODE (new_i2_dest) == ZERO_EXTRACT
2153                      || GET_CODE (new_i2_dest) == STRICT_LOW_PART
2154                      || GET_CODE (new_i2_dest) == SUBREG)
2155                 new_i2_dest = XEXP (new_i2_dest, 0);
2156
2157               if (GET_CODE (new_i3_dest) == REG
2158                   && GET_CODE (new_i2_dest) == REG
2159                   && REGNO (new_i3_dest) == REGNO (new_i2_dest))
2160                 REG_N_SETS (REGNO (new_i2_dest))++;
2161             }
2162         }
2163
2164       /* If we can split it and use I2DEST, go ahead and see if that
2165          helps things be recognized.  Verify that none of the registers
2166          are set between I2 and I3.  */
2167       if (insn_code_number < 0 && (split = find_split_point (&newpat, i3)) != 0
2168 #ifdef HAVE_cc0
2169           && GET_CODE (i2dest) == REG
2170 #endif
2171           /* We need I2DEST in the proper mode.  If it is a hard register
2172              or the only use of a pseudo, we can change its mode.  */
2173           && (GET_MODE (*split) == GET_MODE (i2dest)
2174               || GET_MODE (*split) == VOIDmode
2175               || REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2176               || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2177                   && ! REG_USERVAR_P (i2dest)))
2178           && (next_real_insn (i2) == i3
2179               || ! use_crosses_set_p (*split, INSN_CUID (i2)))
2180           /* We can't overwrite I2DEST if its value is still used by
2181              NEWPAT.  */
2182           && ! reg_referenced_p (i2dest, newpat))
2183         {
2184           rtx newdest = i2dest;
2185           enum rtx_code split_code = GET_CODE (*split);
2186           enum machine_mode split_mode = GET_MODE (*split);
2187
2188           /* Get NEWDEST as a register in the proper mode.  We have already
2189              validated that we can do this.  */
2190           if (GET_MODE (i2dest) != split_mode && split_mode != VOIDmode)
2191             {
2192               newdest = gen_rtx_REG (split_mode, REGNO (i2dest));
2193
2194               if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2195                 SUBST (regno_reg_rtx[REGNO (i2dest)], newdest);
2196             }
2197
2198           /* If *SPLIT is a (mult FOO (const_int pow2)), convert it to
2199              an ASHIFT.  This can occur if it was inside a PLUS and hence
2200              appeared to be a memory address.  This is a kludge.  */
2201           if (split_code == MULT
2202               && GET_CODE (XEXP (*split, 1)) == CONST_INT
2203               && (i = exact_log2 (INTVAL (XEXP (*split, 1)))) >= 0)
2204             {
2205               SUBST (*split, gen_rtx_combine (ASHIFT, split_mode,
2206                                               XEXP (*split, 0), GEN_INT (i)));
2207               /* Update split_code because we may not have a multiply
2208                  anymore.  */
2209               split_code = GET_CODE (*split);
2210             }
2211
2212 #ifdef INSN_SCHEDULING
2213           /* If *SPLIT is a paradoxical SUBREG, when we split it, it should
2214              be written as a ZERO_EXTEND.  */
2215           if (split_code == SUBREG && GET_CODE (SUBREG_REG (*split)) == MEM)
2216             SUBST (*split, gen_rtx_combine (ZERO_EXTEND, split_mode,
2217                                             XEXP (*split, 0)));
2218 #endif
2219
2220           newi2pat = gen_rtx_combine (SET, VOIDmode, newdest, *split);
2221           SUBST (*split, newdest);
2222           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2223
2224           /* If the split point was a MULT and we didn't have one before,
2225              don't use one now.  */
2226           if (i2_code_number >= 0 && ! (split_code == MULT && ! have_mult))
2227             insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2228         }
2229     }
2230
2231   /* Check for a case where we loaded from memory in a narrow mode and
2232      then sign extended it, but we need both registers.  In that case,
2233      we have a PARALLEL with both loads from the same memory location.
2234      We can split this into a load from memory followed by a register-register
2235      copy.  This saves at least one insn, more if register allocation can
2236      eliminate the copy.
2237
2238      We cannot do this if the destination of the second assignment is
2239      a register that we have already assumed is zero-extended.  Similarly
2240      for a SUBREG of such a register.  */
2241
2242   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2243            && GET_CODE (newpat) == PARALLEL
2244            && XVECLEN (newpat, 0) == 2
2245            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2246            && GET_CODE (SET_SRC (XVECEXP (newpat, 0, 0))) == SIGN_EXTEND
2247            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2248            && rtx_equal_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2249                            XEXP (SET_SRC (XVECEXP (newpat, 0, 0)), 0))
2250            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2251                                    INSN_CUID (i2))
2252            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2253            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2254            && ! (temp = SET_DEST (XVECEXP (newpat, 0, 1)),
2255                  (GET_CODE (temp) == REG
2256                   && reg_nonzero_bits[REGNO (temp)] != 0
2257                   && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2258                   && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2259                   && (reg_nonzero_bits[REGNO (temp)]
2260                       != GET_MODE_MASK (word_mode))))
2261            && ! (GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == SUBREG
2262                  && (temp = SUBREG_REG (SET_DEST (XVECEXP (newpat, 0, 1))),
2263                      (GET_CODE (temp) == REG
2264                       && reg_nonzero_bits[REGNO (temp)] != 0
2265                       && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2266                       && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2267                       && (reg_nonzero_bits[REGNO (temp)]
2268                           != GET_MODE_MASK (word_mode)))))
2269            && ! reg_overlap_mentioned_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2270                                          SET_SRC (XVECEXP (newpat, 0, 1)))
2271            && ! find_reg_note (i3, REG_UNUSED,
2272                                SET_DEST (XVECEXP (newpat, 0, 0))))
2273     {
2274       rtx ni2dest;
2275
2276       newi2pat = XVECEXP (newpat, 0, 0);
2277       ni2dest = SET_DEST (XVECEXP (newpat, 0, 0));
2278       newpat = XVECEXP (newpat, 0, 1);
2279       SUBST (SET_SRC (newpat),
2280              gen_lowpart_for_combine (GET_MODE (SET_SRC (newpat)), ni2dest));
2281       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2282
2283       if (i2_code_number >= 0)
2284         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2285
2286       if (insn_code_number >= 0)
2287         {
2288           rtx insn;
2289           rtx link;
2290
2291           /* If we will be able to accept this, we have made a change to the
2292              destination of I3.  This can invalidate a LOG_LINKS pointing
2293              to I3.  No other part of combine.c makes such a transformation.
2294
2295              The new I3 will have a destination that was previously the
2296              destination of I1 or I2 and which was used in i2 or I3.  Call
2297              distribute_links to make a LOG_LINK from the next use of
2298              that destination.  */
2299
2300           PATTERN (i3) = newpat;
2301           distribute_links (gen_rtx_INSN_LIST (VOIDmode, i3, NULL_RTX));
2302
2303           /* I3 now uses what used to be its destination and which is
2304              now I2's destination.  That means we need a LOG_LINK from
2305              I3 to I2.  But we used to have one, so we still will.
2306
2307              However, some later insn might be using I2's dest and have
2308              a LOG_LINK pointing at I3.  We must remove this link.
2309              The simplest way to remove the link is to point it at I1,
2310              which we know will be a NOTE.  */
2311
2312           for (insn = NEXT_INSN (i3);
2313                insn && (this_basic_block == n_basic_blocks - 1
2314                         || insn != BLOCK_HEAD (this_basic_block + 1));
2315                insn = NEXT_INSN (insn))
2316             {
2317               if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
2318                   && reg_referenced_p (ni2dest, PATTERN (insn)))
2319                 {
2320                   for (link = LOG_LINKS (insn); link;
2321                        link = XEXP (link, 1))
2322                     if (XEXP (link, 0) == i3)
2323                       XEXP (link, 0) = i1;
2324
2325                   break;
2326                 }
2327             }
2328         }
2329     }
2330             
2331   /* Similarly, check for a case where we have a PARALLEL of two independent
2332      SETs but we started with three insns.  In this case, we can do the sets
2333      as two separate insns.  This case occurs when some SET allows two
2334      other insns to combine, but the destination of that SET is still live.  */
2335
2336   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2337            && GET_CODE (newpat) == PARALLEL
2338            && XVECLEN (newpat, 0) == 2
2339            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2340            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != ZERO_EXTRACT
2341            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != STRICT_LOW_PART
2342            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2343            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2344            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2345            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2346                                    INSN_CUID (i2))
2347            /* Don't pass sets with (USE (MEM ...)) dests to the following.  */
2348            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != USE
2349            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != USE
2350            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2351                                   XVECEXP (newpat, 0, 0))
2352            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 0)),
2353                                   XVECEXP (newpat, 0, 1))
2354            && ! (contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 0)))
2355                  && contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 1)))))
2356     {
2357       /* Normally, it doesn't matter which of the two is done first,
2358          but it does if one references cc0.  In that case, it has to
2359          be first.  */
2360 #ifdef HAVE_cc0
2361       if (reg_referenced_p (cc0_rtx, XVECEXP (newpat, 0, 0)))
2362         {
2363           newi2pat = XVECEXP (newpat, 0, 0);
2364           newpat = XVECEXP (newpat, 0, 1);
2365         }
2366       else
2367 #endif
2368         {
2369           newi2pat = XVECEXP (newpat, 0, 1);
2370           newpat = XVECEXP (newpat, 0, 0);
2371         }
2372
2373       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2374
2375       if (i2_code_number >= 0)
2376         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2377     }
2378
2379   /* If it still isn't recognized, fail and change things back the way they
2380      were.  */
2381   if ((insn_code_number < 0
2382        /* Is the result a reasonable ASM_OPERANDS?  */
2383        && (! check_asm_operands (newpat) || added_sets_1 || added_sets_2)))
2384     {
2385       undo_all ();
2386       return 0;
2387     }
2388
2389   /* If we had to change another insn, make sure it is valid also.  */
2390   if (undobuf.other_insn)
2391     {
2392       rtx other_pat = PATTERN (undobuf.other_insn);
2393       rtx new_other_notes;
2394       rtx note, next;
2395
2396       CLEAR_HARD_REG_SET (newpat_used_regs);
2397
2398       other_code_number = recog_for_combine (&other_pat, undobuf.other_insn,
2399                                              &new_other_notes);
2400
2401       if (other_code_number < 0 && ! check_asm_operands (other_pat))
2402         {
2403           undo_all ();
2404           return 0;
2405         }
2406
2407       PATTERN (undobuf.other_insn) = other_pat;
2408
2409       /* If any of the notes in OTHER_INSN were REG_UNUSED, ensure that they
2410          are still valid.  Then add any non-duplicate notes added by
2411          recog_for_combine.  */
2412       for (note = REG_NOTES (undobuf.other_insn); note; note = next)
2413         {
2414           next = XEXP (note, 1);
2415
2416           if (REG_NOTE_KIND (note) == REG_UNUSED
2417               && ! reg_set_p (XEXP (note, 0), PATTERN (undobuf.other_insn)))
2418             {
2419               if (GET_CODE (XEXP (note, 0)) == REG)
2420                 REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
2421
2422               remove_note (undobuf.other_insn, note);
2423             }
2424         }
2425
2426       for (note = new_other_notes; note; note = XEXP (note, 1))
2427         if (GET_CODE (XEXP (note, 0)) == REG)
2428           REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
2429
2430       distribute_notes (new_other_notes, undobuf.other_insn,
2431                         undobuf.other_insn, NULL_RTX, NULL_RTX, NULL_RTX);
2432     }
2433 #ifdef HAVE_cc0
2434   /* If I2 is the setter CC0 and I3 is the user CC0 then check whether 
2435      they are adjacent to each other or not. */
2436   {
2437     rtx p = prev_nonnote_insn (i3);
2438     if (p && p != i2 && GET_CODE (p) == INSN && newi2pat && sets_cc0_p (newi2pat))
2439       {
2440         undo_all ();
2441         return 0;
2442       }
2443     }
2444 #endif 
2445
2446   /* We now know that we can do this combination.  Merge the insns and 
2447      update the status of registers and LOG_LINKS.  */
2448
2449   {
2450     rtx i3notes, i2notes, i1notes = 0;
2451     rtx i3links, i2links, i1links = 0;
2452     rtx midnotes = 0;
2453     unsigned int regno;
2454     /* Compute which registers we expect to eliminate.  newi2pat may be setting
2455        either i3dest or i2dest, so we must check it.  Also, i1dest may be the
2456        same as i3dest, in which case newi2pat may be setting i1dest.  */
2457     rtx elim_i2 = ((newi2pat && reg_set_p (i2dest, newi2pat))
2458                    || i2dest_in_i2src || i2dest_in_i1src
2459                    ? 0 : i2dest);
2460     rtx elim_i1 = (i1 == 0 || i1dest_in_i1src
2461                    || (newi2pat && reg_set_p (i1dest, newi2pat))
2462                    ? 0 : i1dest);
2463
2464     /* Get the old REG_NOTES and LOG_LINKS from all our insns and
2465        clear them.  */
2466     i3notes = REG_NOTES (i3), i3links = LOG_LINKS (i3);
2467     i2notes = REG_NOTES (i2), i2links = LOG_LINKS (i2);
2468     if (i1)
2469       i1notes = REG_NOTES (i1), i1links = LOG_LINKS (i1);
2470
2471     /* Ensure that we do not have something that should not be shared but
2472        occurs multiple times in the new insns.  Check this by first
2473        resetting all the `used' flags and then copying anything is shared.  */
2474
2475     reset_used_flags (i3notes);
2476     reset_used_flags (i2notes);
2477     reset_used_flags (i1notes);
2478     reset_used_flags (newpat);
2479     reset_used_flags (newi2pat);
2480     if (undobuf.other_insn)
2481       reset_used_flags (PATTERN (undobuf.other_insn));
2482
2483     i3notes = copy_rtx_if_shared (i3notes);
2484     i2notes = copy_rtx_if_shared (i2notes);
2485     i1notes = copy_rtx_if_shared (i1notes);
2486     newpat = copy_rtx_if_shared (newpat);
2487     newi2pat = copy_rtx_if_shared (newi2pat);
2488     if (undobuf.other_insn)
2489       reset_used_flags (PATTERN (undobuf.other_insn));
2490
2491     INSN_CODE (i3) = insn_code_number;
2492     PATTERN (i3) = newpat;
2493     if (undobuf.other_insn)
2494       INSN_CODE (undobuf.other_insn) = other_code_number;
2495
2496     /* We had one special case above where I2 had more than one set and
2497        we replaced a destination of one of those sets with the destination
2498        of I3.  In that case, we have to update LOG_LINKS of insns later
2499        in this basic block.  Note that this (expensive) case is rare.
2500
2501        Also, in this case, we must pretend that all REG_NOTEs for I2
2502        actually came from I3, so that REG_UNUSED notes from I2 will be
2503        properly handled.  */
2504
2505     if (i3_subst_into_i2)
2506       {
2507         if (GET_CODE (PATTERN (i2)) == PARALLEL)
2508           {
2509             for (i = 0; i < XVECLEN (PATTERN (i2), 0); i++)
2510               if (GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, i))) == REG
2511                   && SET_DEST (XVECEXP (PATTERN (i2), 0, i)) != i2dest
2512                   && ! find_reg_note (i2, REG_UNUSED,
2513                                       SET_DEST (XVECEXP (PATTERN (i2), 0, i))))
2514                 for (temp = NEXT_INSN (i2);
2515                      temp && (this_basic_block == n_basic_blocks - 1
2516                               || BLOCK_HEAD (this_basic_block) != temp);
2517                      temp = NEXT_INSN (temp))
2518                   if (temp != i3 && GET_RTX_CLASS (GET_CODE (temp)) == 'i')
2519                     for (link = LOG_LINKS (temp); link; link = XEXP (link, 1))
2520                       if (XEXP (link, 0) == i2)
2521                         XEXP (link, 0) = i3;
2522           }
2523
2524         if (i3notes)
2525           {
2526             rtx link = i3notes;
2527             while (XEXP (link, 1))
2528               link = XEXP (link, 1);
2529             XEXP (link, 1) = i2notes;
2530           }
2531         else
2532           i3notes = i2notes;
2533         i2notes = 0;
2534       }
2535
2536     LOG_LINKS (i3) = 0;
2537     REG_NOTES (i3) = 0;
2538     LOG_LINKS (i2) = 0;
2539     REG_NOTES (i2) = 0;
2540
2541     if (newi2pat)
2542       {
2543         INSN_CODE (i2) = i2_code_number;
2544         PATTERN (i2) = newi2pat;
2545       }
2546     else
2547       {
2548         PUT_CODE (i2, NOTE);
2549         NOTE_LINE_NUMBER (i2) = NOTE_INSN_DELETED;
2550         NOTE_SOURCE_FILE (i2) = 0;
2551       }
2552
2553     if (i1)
2554       {
2555         LOG_LINKS (i1) = 0;
2556         REG_NOTES (i1) = 0;
2557         PUT_CODE (i1, NOTE);
2558         NOTE_LINE_NUMBER (i1) = NOTE_INSN_DELETED;
2559         NOTE_SOURCE_FILE (i1) = 0;
2560       }
2561
2562     /* Get death notes for everything that is now used in either I3 or
2563        I2 and used to die in a previous insn.  If we built two new 
2564        patterns, move from I1 to I2 then I2 to I3 so that we get the
2565        proper movement on registers that I2 modifies.  */
2566
2567     if (newi2pat)
2568       {
2569         move_deaths (newi2pat, NULL_RTX, INSN_CUID (i1), i2, &midnotes);
2570         move_deaths (newpat, newi2pat, INSN_CUID (i1), i3, &midnotes);
2571       }
2572     else
2573       move_deaths (newpat, NULL_RTX, i1 ? INSN_CUID (i1) : INSN_CUID (i2),
2574                    i3, &midnotes);
2575
2576     /* Distribute all the LOG_LINKS and REG_NOTES from I1, I2, and I3.  */
2577     if (i3notes)
2578       distribute_notes (i3notes, i3, i3, newi2pat ? i2 : NULL_RTX,
2579                         elim_i2, elim_i1);
2580     if (i2notes)
2581       distribute_notes (i2notes, i2, i3, newi2pat ? i2 : NULL_RTX,
2582                         elim_i2, elim_i1);
2583     if (i1notes)
2584       distribute_notes (i1notes, i1, i3, newi2pat ? i2 : NULL_RTX,
2585                         elim_i2, elim_i1);
2586     if (midnotes)
2587       distribute_notes (midnotes, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2588                         elim_i2, elim_i1);
2589
2590     /* Distribute any notes added to I2 or I3 by recog_for_combine.  We
2591        know these are REG_UNUSED and want them to go to the desired insn,
2592        so we always pass it as i3.  We have not counted the notes in 
2593        reg_n_deaths yet, so we need to do so now.  */
2594
2595     if (newi2pat && new_i2_notes)
2596       {
2597         for (temp = new_i2_notes; temp; temp = XEXP (temp, 1))
2598           if (GET_CODE (XEXP (temp, 0)) == REG)
2599             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2600         
2601         distribute_notes (new_i2_notes, i2, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2602       }
2603
2604     if (new_i3_notes)
2605       {
2606         for (temp = new_i3_notes; temp; temp = XEXP (temp, 1))
2607           if (GET_CODE (XEXP (temp, 0)) == REG)
2608             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2609         
2610         distribute_notes (new_i3_notes, i3, i3, NULL_RTX, NULL_RTX, NULL_RTX);
2611       }
2612
2613     /* If I3DEST was used in I3SRC, it really died in I3.  We may need to
2614        put a REG_DEAD note for it somewhere.  If NEWI2PAT exists and sets
2615        I3DEST, the death must be somewhere before I2, not I3.  If we passed I3
2616        in that case, it might delete I2.  Similarly for I2 and I1.
2617        Show an additional death due to the REG_DEAD note we make here.  If
2618        we discard it in distribute_notes, we will decrement it again.  */
2619
2620     if (i3dest_killed)
2621       {
2622         if (GET_CODE (i3dest_killed) == REG)
2623           REG_N_DEATHS (REGNO (i3dest_killed))++;
2624
2625         if (newi2pat && reg_set_p (i3dest_killed, newi2pat))
2626           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2627                                                NULL_RTX),
2628                             NULL_RTX, i2, NULL_RTX, elim_i2, elim_i1);
2629         else
2630           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2631                                                NULL_RTX),
2632                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2633                             elim_i2, elim_i1);
2634       }
2635
2636     if (i2dest_in_i2src)
2637       {
2638         if (GET_CODE (i2dest) == REG)
2639           REG_N_DEATHS (REGNO (i2dest))++;
2640
2641         if (newi2pat && reg_set_p (i2dest, newi2pat))
2642           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2643                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2644         else
2645           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2646                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2647                             NULL_RTX, NULL_RTX);
2648       }
2649
2650     if (i1dest_in_i1src)
2651       {
2652         if (GET_CODE (i1dest) == REG)
2653           REG_N_DEATHS (REGNO (i1dest))++;
2654
2655         if (newi2pat && reg_set_p (i1dest, newi2pat))
2656           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2657                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2658         else
2659           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2660                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2661                             NULL_RTX, NULL_RTX);
2662       }
2663
2664     distribute_links (i3links);
2665     distribute_links (i2links);
2666     distribute_links (i1links);
2667
2668     if (GET_CODE (i2dest) == REG)
2669       {
2670         rtx link;
2671         rtx i2_insn = 0, i2_val = 0, set;
2672
2673         /* The insn that used to set this register doesn't exist, and
2674            this life of the register may not exist either.  See if one of
2675            I3's links points to an insn that sets I2DEST.  If it does, 
2676            that is now the last known value for I2DEST. If we don't update
2677            this and I2 set the register to a value that depended on its old
2678            contents, we will get confused.  If this insn is used, thing
2679            will be set correctly in combine_instructions.  */
2680
2681         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2682           if ((set = single_set (XEXP (link, 0))) != 0
2683               && rtx_equal_p (i2dest, SET_DEST (set)))
2684             i2_insn = XEXP (link, 0), i2_val = SET_SRC (set);
2685
2686         record_value_for_reg (i2dest, i2_insn, i2_val);
2687
2688         /* If the reg formerly set in I2 died only once and that was in I3,
2689            zero its use count so it won't make `reload' do any work.  */
2690         if (! added_sets_2
2691             && (newi2pat == 0 || ! reg_mentioned_p (i2dest, newi2pat))
2692             && ! i2dest_in_i2src)
2693           {
2694             regno = REGNO (i2dest);
2695             REG_N_SETS (regno)--;
2696           }
2697       }
2698
2699     if (i1 && GET_CODE (i1dest) == REG)
2700       {
2701         rtx link;
2702         rtx i1_insn = 0, i1_val = 0, set;
2703
2704         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2705           if ((set = single_set (XEXP (link, 0))) != 0
2706               && rtx_equal_p (i1dest, SET_DEST (set)))
2707             i1_insn = XEXP (link, 0), i1_val = SET_SRC (set);
2708
2709         record_value_for_reg (i1dest, i1_insn, i1_val);
2710
2711         regno = REGNO (i1dest);
2712         if (! added_sets_1 && ! i1dest_in_i1src)
2713           REG_N_SETS (regno)--;
2714       }
2715
2716     /* Update reg_nonzero_bits et al for any changes that may have been made
2717        to this insn.  */
2718
2719     note_stores (newpat, set_nonzero_bits_and_sign_copies, NULL);
2720     if (newi2pat)
2721       note_stores (newi2pat, set_nonzero_bits_and_sign_copies, NULL);
2722
2723     /* Set new_direct_jump_p if a new return or simple jump instruction
2724        has been created.
2725
2726        If I3 is now an unconditional jump, ensure that it has a 
2727        BARRIER following it since it may have initially been a
2728        conditional jump.  It may also be the last nonnote insn.  */
2729     
2730     if (GET_CODE (newpat) == RETURN || simplejump_p (i3))
2731       {
2732         *new_direct_jump_p = 1;
2733
2734         if ((temp = next_nonnote_insn (i3)) == NULL_RTX
2735             || GET_CODE (temp) != BARRIER)
2736           emit_barrier_after (i3);
2737       }
2738   }
2739
2740   combine_successes++;
2741   undo_commit ();
2742
2743   /* Clear this here, so that subsequent get_last_value calls are not
2744      affected.  */
2745   subst_prev_insn = NULL_RTX;
2746
2747   if (added_links_insn
2748       && (newi2pat == 0 || INSN_CUID (added_links_insn) < INSN_CUID (i2))
2749       && INSN_CUID (added_links_insn) < INSN_CUID (i3))
2750     return added_links_insn;
2751   else
2752     return newi2pat ? i2 : i3;
2753 }
2754 \f
2755 /* Undo all the modifications recorded in undobuf.  */
2756
2757 static void
2758 undo_all ()
2759 {
2760   struct undo *undo, *next;
2761
2762   for (undo = undobuf.undos; undo; undo = next)
2763     {
2764       next = undo->next;
2765       if (undo->is_int)
2766         *undo->where.i = undo->old_contents.i;
2767       else
2768         *undo->where.r = undo->old_contents.r;
2769
2770       undo->next = undobuf.frees;
2771       undobuf.frees = undo;
2772     }
2773
2774   obfree (undobuf.storage);
2775   undobuf.undos = undobuf.previous_undos = 0;
2776
2777   /* Clear this here, so that subsequent get_last_value calls are not
2778      affected.  */
2779   subst_prev_insn = NULL_RTX;
2780 }
2781
2782 /* We've committed to accepting the changes we made.  Move all
2783    of the undos to the free list.  */
2784
2785 static void
2786 undo_commit ()
2787 {
2788   struct undo *undo, *next;
2789
2790   for (undo = undobuf.undos; undo; undo = next)
2791     {
2792       next = undo->next;
2793       undo->next = undobuf.frees;
2794       undobuf.frees = undo;
2795     }
2796   undobuf.undos = undobuf.previous_undos = 0;
2797 }
2798
2799 \f
2800 /* Find the innermost point within the rtx at LOC, possibly LOC itself,
2801    where we have an arithmetic expression and return that point.  LOC will
2802    be inside INSN.
2803
2804    try_combine will call this function to see if an insn can be split into
2805    two insns.  */
2806
2807 static rtx *
2808 find_split_point (loc, insn)
2809      rtx *loc;
2810      rtx insn;
2811 {
2812   rtx x = *loc;
2813   enum rtx_code code = GET_CODE (x);
2814   rtx *split;
2815   unsigned HOST_WIDE_INT len = 0;
2816   HOST_WIDE_INT pos = 0;
2817   int unsignedp = 0;
2818   rtx inner = NULL_RTX;
2819
2820   /* First special-case some codes.  */
2821   switch (code)
2822     {
2823     case SUBREG:
2824 #ifdef INSN_SCHEDULING
2825       /* If we are making a paradoxical SUBREG invalid, it becomes a split
2826          point.  */
2827       if (GET_CODE (SUBREG_REG (x)) == MEM)
2828         return loc;
2829 #endif
2830       return find_split_point (&SUBREG_REG (x), insn);
2831
2832     case MEM:
2833 #ifdef HAVE_lo_sum
2834       /* If we have (mem (const ..)) or (mem (symbol_ref ...)), split it
2835          using LO_SUM and HIGH.  */
2836       if (GET_CODE (XEXP (x, 0)) == CONST
2837           || GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
2838         {
2839           SUBST (XEXP (x, 0),
2840                  gen_rtx_combine (LO_SUM, Pmode,
2841                                   gen_rtx_combine (HIGH, Pmode, XEXP (x, 0)),
2842                                   XEXP (x, 0)));
2843           return &XEXP (XEXP (x, 0), 0);
2844         }
2845 #endif
2846
2847       /* If we have a PLUS whose second operand is a constant and the
2848          address is not valid, perhaps will can split it up using
2849          the machine-specific way to split large constants.  We use
2850          the first pseudo-reg (one of the virtual regs) as a placeholder;
2851          it will not remain in the result.  */
2852       if (GET_CODE (XEXP (x, 0)) == PLUS
2853           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2854           && ! memory_address_p (GET_MODE (x), XEXP (x, 0)))
2855         {
2856           rtx reg = regno_reg_rtx[FIRST_PSEUDO_REGISTER];
2857           rtx seq = split_insns (gen_rtx_SET (VOIDmode, reg, XEXP (x, 0)),
2858                                  subst_insn);
2859
2860           /* This should have produced two insns, each of which sets our
2861              placeholder.  If the source of the second is a valid address,
2862              we can make put both sources together and make a split point
2863              in the middle.  */
2864
2865           if (seq && XVECLEN (seq, 0) == 2
2866               && GET_CODE (XVECEXP (seq, 0, 0)) == INSN
2867               && GET_CODE (PATTERN (XVECEXP (seq, 0, 0))) == SET
2868               && SET_DEST (PATTERN (XVECEXP (seq, 0, 0))) == reg
2869               && ! reg_mentioned_p (reg,
2870                                     SET_SRC (PATTERN (XVECEXP (seq, 0, 0))))
2871               && GET_CODE (XVECEXP (seq, 0, 1)) == INSN
2872               && GET_CODE (PATTERN (XVECEXP (seq, 0, 1))) == SET
2873               && SET_DEST (PATTERN (XVECEXP (seq, 0, 1))) == reg
2874               && memory_address_p (GET_MODE (x),
2875                                    SET_SRC (PATTERN (XVECEXP (seq, 0, 1)))))
2876             {
2877               rtx src1 = SET_SRC (PATTERN (XVECEXP (seq, 0, 0)));
2878               rtx src2 = SET_SRC (PATTERN (XVECEXP (seq, 0, 1)));
2879
2880               /* Replace the placeholder in SRC2 with SRC1.  If we can
2881                  find where in SRC2 it was placed, that can become our
2882                  split point and we can replace this address with SRC2.
2883                  Just try two obvious places.  */
2884
2885               src2 = replace_rtx (src2, reg, src1);
2886               split = 0;
2887               if (XEXP (src2, 0) == src1)
2888                 split = &XEXP (src2, 0);
2889               else if (GET_RTX_FORMAT (GET_CODE (XEXP (src2, 0)))[0] == 'e'
2890                        && XEXP (XEXP (src2, 0), 0) == src1)
2891                 split = &XEXP (XEXP (src2, 0), 0);
2892
2893               if (split)
2894                 {
2895                   SUBST (XEXP (x, 0), src2);
2896                   return split;
2897                 }
2898             }
2899           
2900           /* If that didn't work, perhaps the first operand is complex and
2901              needs to be computed separately, so make a split point there.
2902              This will occur on machines that just support REG + CONST
2903              and have a constant moved through some previous computation.  */
2904
2905           else if (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) != 'o'
2906                    && ! (GET_CODE (XEXP (XEXP (x, 0), 0)) == SUBREG
2907                          && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (XEXP (x, 0), 0))))
2908                              == 'o')))
2909             return &XEXP (XEXP (x, 0), 0);
2910         }
2911       break;
2912
2913     case SET:
2914 #ifdef HAVE_cc0
2915       /* If SET_DEST is CC0 and SET_SRC is not an operand, a COMPARE, or a
2916          ZERO_EXTRACT, the most likely reason why this doesn't match is that
2917          we need to put the operand into a register.  So split at that
2918          point.  */
2919
2920       if (SET_DEST (x) == cc0_rtx
2921           && GET_CODE (SET_SRC (x)) != COMPARE
2922           && GET_CODE (SET_SRC (x)) != ZERO_EXTRACT
2923           && GET_RTX_CLASS (GET_CODE (SET_SRC (x))) != 'o'
2924           && ! (GET_CODE (SET_SRC (x)) == SUBREG
2925                 && GET_RTX_CLASS (GET_CODE (SUBREG_REG (SET_SRC (x)))) == 'o'))
2926         return &SET_SRC (x);
2927 #endif
2928
2929       /* See if we can split SET_SRC as it stands.  */
2930       split = find_split_point (&SET_SRC (x), insn);
2931       if (split && split != &SET_SRC (x))
2932         return split;
2933
2934       /* See if we can split SET_DEST as it stands.  */
2935       split = find_split_point (&SET_DEST (x), insn);
2936       if (split && split != &SET_DEST (x))
2937         return split;
2938
2939       /* See if this is a bitfield assignment with everything constant.  If
2940          so, this is an IOR of an AND, so split it into that.  */
2941       if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
2942           && (GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)))
2943               <= HOST_BITS_PER_WIDE_INT)
2944           && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT
2945           && GET_CODE (XEXP (SET_DEST (x), 2)) == CONST_INT
2946           && GET_CODE (SET_SRC (x)) == CONST_INT
2947           && ((INTVAL (XEXP (SET_DEST (x), 1))
2948               + INTVAL (XEXP (SET_DEST (x), 2)))
2949               <= GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0))))
2950           && ! side_effects_p (XEXP (SET_DEST (x), 0)))
2951         {
2952           HOST_WIDE_INT pos = INTVAL (XEXP (SET_DEST (x), 2));
2953           unsigned HOST_WIDE_INT len = INTVAL (XEXP (SET_DEST (x), 1));
2954           unsigned HOST_WIDE_INT src = INTVAL (SET_SRC (x));
2955           rtx dest = XEXP (SET_DEST (x), 0);
2956           enum machine_mode mode = GET_MODE (dest);
2957           unsigned HOST_WIDE_INT mask = ((HOST_WIDE_INT) 1 << len) - 1;
2958
2959           if (BITS_BIG_ENDIAN)
2960             pos = GET_MODE_BITSIZE (mode) - len - pos;
2961
2962           if (src == mask)
2963             SUBST (SET_SRC (x),
2964                    gen_binary (IOR, mode, dest, GEN_INT (src << pos)));
2965           else
2966             SUBST (SET_SRC (x),
2967                    gen_binary (IOR, mode,
2968                                gen_binary (AND, mode, dest, 
2969                                            GEN_INT (~ (mask << pos)
2970                                                     & GET_MODE_MASK (mode))),
2971                                GEN_INT (src << pos)));
2972
2973           SUBST (SET_DEST (x), dest);
2974
2975           split = find_split_point (&SET_SRC (x), insn);
2976           if (split && split != &SET_SRC (x))
2977             return split;
2978         }
2979
2980       /* Otherwise, see if this is an operation that we can split into two.
2981          If so, try to split that.  */
2982       code = GET_CODE (SET_SRC (x));
2983
2984       switch (code)
2985         {
2986         case AND:
2987           /* If we are AND'ing with a large constant that is only a single
2988              bit and the result is only being used in a context where we
2989              need to know if it is zero or non-zero, replace it with a bit
2990              extraction.  This will avoid the large constant, which might
2991              have taken more than one insn to make.  If the constant were
2992              not a valid argument to the AND but took only one insn to make,
2993              this is no worse, but if it took more than one insn, it will
2994              be better.  */
2995
2996           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
2997               && GET_CODE (XEXP (SET_SRC (x), 0)) == REG
2998               && (pos = exact_log2 (INTVAL (XEXP (SET_SRC (x), 1)))) >= 7
2999               && GET_CODE (SET_DEST (x)) == REG
3000               && (split = find_single_use (SET_DEST (x), insn, NULL_PTR)) != 0
3001               && (GET_CODE (*split) == EQ || GET_CODE (*split) == NE)
3002               && XEXP (*split, 0) == SET_DEST (x)
3003               && XEXP (*split, 1) == const0_rtx)
3004             {
3005               rtx extraction = make_extraction (GET_MODE (SET_DEST (x)),
3006                                                 XEXP (SET_SRC (x), 0),
3007                                                 pos, NULL_RTX, 1, 1, 0, 0);
3008               if (extraction != 0)
3009                 {
3010                   SUBST (SET_SRC (x), extraction);
3011                   return find_split_point (loc, insn);
3012                 }
3013             }
3014           break;
3015
3016         case NE:
3017           /* if STORE_FLAG_VALUE is -1, this is (NE X 0) and only one bit of X
3018              is known to be on, this can be converted into a NEG of a shift. */
3019           if (STORE_FLAG_VALUE == -1 && XEXP (SET_SRC (x), 1) == const0_rtx
3020               && GET_MODE (SET_SRC (x)) == GET_MODE (XEXP (SET_SRC (x), 0))
3021               && 1 <= (pos = exact_log2
3022                        (nonzero_bits (XEXP (SET_SRC (x), 0),
3023                                       GET_MODE (XEXP (SET_SRC (x), 0))))))
3024             {
3025               enum machine_mode mode = GET_MODE (XEXP (SET_SRC (x), 0));
3026
3027               SUBST (SET_SRC (x),
3028                      gen_rtx_combine (NEG, mode,
3029                                       gen_rtx_combine (LSHIFTRT, mode,
3030                                                        XEXP (SET_SRC (x), 0),
3031                                                        GEN_INT (pos))));
3032
3033               split = find_split_point (&SET_SRC (x), insn);
3034               if (split && split != &SET_SRC (x))
3035                 return split;
3036             }
3037           break;
3038
3039         case SIGN_EXTEND:
3040           inner = XEXP (SET_SRC (x), 0);
3041
3042           /* We can't optimize if either mode is a partial integer
3043              mode as we don't know how many bits are significant
3044              in those modes.  */
3045           if (GET_MODE_CLASS (GET_MODE (inner)) == MODE_PARTIAL_INT
3046               || GET_MODE_CLASS (GET_MODE (SET_SRC (x))) == MODE_PARTIAL_INT)
3047             break;
3048
3049           pos = 0;
3050           len = GET_MODE_BITSIZE (GET_MODE (inner));
3051           unsignedp = 0;
3052           break;
3053
3054         case SIGN_EXTRACT:
3055         case ZERO_EXTRACT:
3056           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3057               && GET_CODE (XEXP (SET_SRC (x), 2)) == CONST_INT)
3058             {
3059               inner = XEXP (SET_SRC (x), 0);
3060               len = INTVAL (XEXP (SET_SRC (x), 1));
3061               pos = INTVAL (XEXP (SET_SRC (x), 2));
3062
3063               if (BITS_BIG_ENDIAN)
3064                 pos = GET_MODE_BITSIZE (GET_MODE (inner)) - len - pos;
3065               unsignedp = (code == ZERO_EXTRACT);
3066             }
3067           break;
3068
3069         default:
3070           break;
3071         }
3072
3073       if (len && pos >= 0 && pos + len <= GET_MODE_BITSIZE (GET_MODE (inner)))
3074         {
3075           enum machine_mode mode = GET_MODE (SET_SRC (x));
3076
3077           /* For unsigned, we have a choice of a shift followed by an
3078              AND or two shifts.  Use two shifts for field sizes where the
3079              constant might be too large.  We assume here that we can
3080              always at least get 8-bit constants in an AND insn, which is
3081              true for every current RISC.  */
3082
3083           if (unsignedp && len <= 8)
3084             {
3085               SUBST (SET_SRC (x),
3086                      gen_rtx_combine
3087                      (AND, mode,
3088                       gen_rtx_combine (LSHIFTRT, mode,
3089                                        gen_lowpart_for_combine (mode, inner),
3090                                        GEN_INT (pos)),
3091                       GEN_INT (((HOST_WIDE_INT) 1 << len) - 1)));
3092
3093               split = find_split_point (&SET_SRC (x), insn);
3094               if (split && split != &SET_SRC (x))
3095                 return split;
3096             }
3097           else
3098             {
3099               SUBST (SET_SRC (x),
3100                      gen_rtx_combine
3101                      (unsignedp ? LSHIFTRT : ASHIFTRT, mode,
3102                       gen_rtx_combine (ASHIFT, mode,
3103                                        gen_lowpart_for_combine (mode, inner),
3104                                        GEN_INT (GET_MODE_BITSIZE (mode)
3105                                                 - len - pos)),
3106                       GEN_INT (GET_MODE_BITSIZE (mode) - len)));
3107
3108               split = find_split_point (&SET_SRC (x), insn);
3109               if (split && split != &SET_SRC (x))
3110                 return split;
3111             }
3112         }
3113
3114       /* See if this is a simple operation with a constant as the second
3115          operand.  It might be that this constant is out of range and hence
3116          could be used as a split point.  */
3117       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3118            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3119            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<')
3120           && CONSTANT_P (XEXP (SET_SRC (x), 1))
3121           && (GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (x), 0))) == 'o'
3122               || (GET_CODE (XEXP (SET_SRC (x), 0)) == SUBREG
3123                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (SET_SRC (x), 0))))
3124                       == 'o'))))
3125         return &XEXP (SET_SRC (x), 1);
3126
3127       /* Finally, see if this is a simple operation with its first operand
3128          not in a register.  The operation might require this operand in a
3129          register, so return it as a split point.  We can always do this
3130          because if the first operand were another operation, we would have
3131          already found it as a split point.  */
3132       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3133            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3134            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<'
3135            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '1')
3136           && ! register_operand (XEXP (SET_SRC (x), 0), VOIDmode))
3137         return &XEXP (SET_SRC (x), 0);
3138
3139       return 0;
3140
3141     case AND:
3142     case IOR:
3143       /* We write NOR as (and (not A) (not B)), but if we don't have a NOR,
3144          it is better to write this as (not (ior A B)) so we can split it.
3145          Similarly for IOR.  */
3146       if (GET_CODE (XEXP (x, 0)) == NOT && GET_CODE (XEXP (x, 1)) == NOT)
3147         {
3148           SUBST (*loc,
3149                  gen_rtx_combine (NOT, GET_MODE (x),
3150                                   gen_rtx_combine (code == IOR ? AND : IOR,
3151                                                    GET_MODE (x),
3152                                                    XEXP (XEXP (x, 0), 0),
3153                                                    XEXP (XEXP (x, 1), 0))));
3154           return find_split_point (loc, insn);
3155         }
3156
3157       /* Many RISC machines have a large set of logical insns.  If the
3158          second operand is a NOT, put it first so we will try to split the
3159          other operand first.  */
3160       if (GET_CODE (XEXP (x, 1)) == NOT)
3161         {
3162           rtx tem = XEXP (x, 0);
3163           SUBST (XEXP (x, 0), XEXP (x, 1));
3164           SUBST (XEXP (x, 1), tem);
3165         }
3166       break;
3167
3168     default:
3169       break;
3170     }
3171
3172   /* Otherwise, select our actions depending on our rtx class.  */
3173   switch (GET_RTX_CLASS (code))
3174     {
3175     case 'b':                   /* This is ZERO_EXTRACT and SIGN_EXTRACT.  */
3176     case '3':
3177       split = find_split_point (&XEXP (x, 2), insn);
3178       if (split)
3179         return split;
3180       /* ... fall through ...  */
3181     case '2':
3182     case 'c':
3183     case '<':
3184       split = find_split_point (&XEXP (x, 1), insn);
3185       if (split)
3186         return split;
3187       /* ... fall through ...  */
3188     case '1':
3189       /* Some machines have (and (shift ...) ...) insns.  If X is not
3190          an AND, but XEXP (X, 0) is, use it as our split point.  */
3191       if (GET_CODE (x) != AND && GET_CODE (XEXP (x, 0)) == AND)
3192         return &XEXP (x, 0);
3193
3194       split = find_split_point (&XEXP (x, 0), insn);
3195       if (split)
3196         return split;
3197       return loc;
3198     }
3199
3200   /* Otherwise, we don't have a split point.  */
3201   return 0;
3202 }
3203 \f
3204 /* Throughout X, replace FROM with TO, and return the result.
3205    The result is TO if X is FROM;
3206    otherwise the result is X, but its contents may have been modified.
3207    If they were modified, a record was made in undobuf so that
3208    undo_all will (among other things) return X to its original state.
3209
3210    If the number of changes necessary is too much to record to undo,
3211    the excess changes are not made, so the result is invalid.
3212    The changes already made can still be undone.
3213    undobuf.num_undo is incremented for such changes, so by testing that
3214    the caller can tell whether the result is valid.
3215
3216    `n_occurrences' is incremented each time FROM is replaced.
3217    
3218    IN_DEST is non-zero if we are processing the SET_DEST of a SET.
3219
3220    UNIQUE_COPY is non-zero if each substitution must be unique.  We do this
3221    by copying if `n_occurrences' is non-zero.  */
3222
3223 static rtx
3224 subst (x, from, to, in_dest, unique_copy)
3225      register rtx x, from, to;
3226      int in_dest;
3227      int unique_copy;
3228 {
3229   register enum rtx_code code = GET_CODE (x);
3230   enum machine_mode op0_mode = VOIDmode;
3231   register const char *fmt;
3232   register int len, i;
3233   rtx new;
3234
3235 /* Two expressions are equal if they are identical copies of a shared
3236    RTX or if they are both registers with the same register number
3237    and mode.  */
3238
3239 #define COMBINE_RTX_EQUAL_P(X,Y)                        \
3240   ((X) == (Y)                                           \
3241    || (GET_CODE (X) == REG && GET_CODE (Y) == REG       \
3242        && REGNO (X) == REGNO (Y) && GET_MODE (X) == GET_MODE (Y)))
3243
3244   if (! in_dest && COMBINE_RTX_EQUAL_P (x, from))
3245     {
3246       n_occurrences++;
3247       return (unique_copy && n_occurrences > 1 ? copy_rtx (to) : to);
3248     }
3249
3250   /* If X and FROM are the same register but different modes, they will
3251      not have been seen as equal above.  However, flow.c will make a 
3252      LOG_LINKS entry for that case.  If we do nothing, we will try to
3253      rerecognize our original insn and, when it succeeds, we will
3254      delete the feeding insn, which is incorrect.
3255
3256      So force this insn not to match in this (rare) case.  */
3257   if (! in_dest && code == REG && GET_CODE (from) == REG
3258       && REGNO (x) == REGNO (from))
3259     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
3260
3261   /* If this is an object, we are done unless it is a MEM or LO_SUM, both
3262      of which may contain things that can be combined.  */
3263   if (code != MEM && code != LO_SUM && GET_RTX_CLASS (code) == 'o')
3264     return x;
3265
3266   /* It is possible to have a subexpression appear twice in the insn.
3267      Suppose that FROM is a register that appears within TO.
3268      Then, after that subexpression has been scanned once by `subst',
3269      the second time it is scanned, TO may be found.  If we were
3270      to scan TO here, we would find FROM within it and create a
3271      self-referent rtl structure which is completely wrong.  */
3272   if (COMBINE_RTX_EQUAL_P (x, to))
3273     return to;
3274
3275   /* Parallel asm_operands need special attention because all of the
3276      inputs are shared across the arms.  Furthermore, unsharing the
3277      rtl results in recognition failures.  Failure to handle this case
3278      specially can result in circular rtl.
3279
3280      Solve this by doing a normal pass across the first entry of the
3281      parallel, and only processing the SET_DESTs of the subsequent
3282      entries.  Ug.  */
3283
3284   if (code == PARALLEL
3285       && GET_CODE (XVECEXP (x, 0, 0)) == SET
3286       && GET_CODE (SET_SRC (XVECEXP (x, 0, 0))) == ASM_OPERANDS)
3287     {
3288       new = subst (XVECEXP (x, 0, 0), from, to, 0, unique_copy);
3289
3290       /* If this substitution failed, this whole thing fails.  */
3291       if (GET_CODE (new) == CLOBBER
3292           && XEXP (new, 0) == const0_rtx)
3293         return new;
3294
3295       SUBST (XVECEXP (x, 0, 0), new);
3296
3297       for (i = XVECLEN (x, 0) - 1; i >= 1; i--)
3298         {
3299           rtx dest = SET_DEST (XVECEXP (x, 0, i));
3300           
3301           if (GET_CODE (dest) != REG
3302               && GET_CODE (dest) != CC0
3303               && GET_CODE (dest) != PC)
3304             {
3305               new = subst (dest, from, to, 0, unique_copy);
3306
3307               /* If this substitution failed, this whole thing fails.  */
3308               if (GET_CODE (new) == CLOBBER
3309                   && XEXP (new, 0) == const0_rtx)
3310                 return new;
3311
3312               SUBST (SET_DEST (XVECEXP (x, 0, i)), new);
3313             }
3314         }
3315     }
3316   else
3317     {
3318       len = GET_RTX_LENGTH (code);
3319       fmt = GET_RTX_FORMAT (code);
3320
3321       /* We don't need to process a SET_DEST that is a register, CC0,
3322          or PC, so set up to skip this common case.  All other cases
3323          where we want to suppress replacing something inside a
3324          SET_SRC are handled via the IN_DEST operand.  */
3325       if (code == SET
3326           && (GET_CODE (SET_DEST (x)) == REG
3327               || GET_CODE (SET_DEST (x)) == CC0
3328               || GET_CODE (SET_DEST (x)) == PC))
3329         fmt = "ie";
3330
3331       /* Get the mode of operand 0 in case X is now a SIGN_EXTEND of a
3332          constant.  */
3333       if (fmt[0] == 'e')
3334         op0_mode = GET_MODE (XEXP (x, 0));
3335
3336       for (i = 0; i < len; i++)
3337         {
3338           if (fmt[i] == 'E')
3339             {
3340               register int j;
3341               for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3342                 {
3343                   if (COMBINE_RTX_EQUAL_P (XVECEXP (x, i, j), from))
3344                     {
3345                       new = (unique_copy && n_occurrences
3346                              ? copy_rtx (to) : to);
3347                       n_occurrences++;
3348                     }
3349                   else
3350                     {
3351                       new = subst (XVECEXP (x, i, j), from, to, 0,
3352                                    unique_copy);
3353
3354                       /* If this substitution failed, this whole thing
3355                          fails.  */
3356                       if (GET_CODE (new) == CLOBBER
3357                           && XEXP (new, 0) == const0_rtx)
3358                         return new;
3359                     }
3360
3361                   SUBST (XVECEXP (x, i, j), new);
3362                 }
3363             }
3364           else if (fmt[i] == 'e')
3365             {
3366               if (COMBINE_RTX_EQUAL_P (XEXP (x, i), from))
3367                 {
3368                   /* In general, don't install a subreg involving two
3369                      modes not tieable.  It can worsen register
3370                      allocation, and can even make invalid reload
3371                      insns, since the reg inside may need to be copied
3372                      from in the outside mode, and that may be invalid
3373                      if it is an fp reg copied in integer mode.
3374
3375                      We allow two exceptions to this: It is valid if
3376                      it is inside another SUBREG and the mode of that
3377                      SUBREG and the mode of the inside of TO is
3378                      tieable and it is valid if X is a SET that copies
3379                      FROM to CC0.  */
3380
3381                   if (GET_CODE (to) == SUBREG
3382                       && ! MODES_TIEABLE_P (GET_MODE (to),
3383                                             GET_MODE (SUBREG_REG (to)))
3384                       && ! (code == SUBREG
3385                             && MODES_TIEABLE_P (GET_MODE (x),
3386                                                 GET_MODE (SUBREG_REG (to))))
3387 #ifdef HAVE_cc0
3388                       && ! (code == SET && i == 1 && XEXP (x, 0) == cc0_rtx)
3389 #endif
3390                       )
3391                     return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
3392
3393                   new = (unique_copy && n_occurrences ? copy_rtx (to) : to);
3394                   n_occurrences++;
3395                 }
3396               else
3397                 /* If we are in a SET_DEST, suppress most cases unless we
3398                    have gone inside a MEM, in which case we want to
3399                    simplify the address.  We assume here that things that
3400                    are actually part of the destination have their inner
3401                    parts in the first expression.  This is true for SUBREG, 
3402                    STRICT_LOW_PART, and ZERO_EXTRACT, which are the only
3403                    things aside from REG and MEM that should appear in a
3404                    SET_DEST.  */
3405                 new = subst (XEXP (x, i), from, to,
3406                              (((in_dest
3407                                 && (code == SUBREG || code == STRICT_LOW_PART
3408                                     || code == ZERO_EXTRACT))
3409                                || code == SET)
3410                               && i == 0), unique_copy);
3411
3412               /* If we found that we will have to reject this combination,
3413                  indicate that by returning the CLOBBER ourselves, rather than
3414                  an expression containing it.  This will speed things up as
3415                  well as prevent accidents where two CLOBBERs are considered
3416                  to be equal, thus producing an incorrect simplification.  */
3417
3418               if (GET_CODE (new) == CLOBBER && XEXP (new, 0) == const0_rtx)
3419                 return new;
3420
3421               SUBST (XEXP (x, i), new);
3422             }
3423         }
3424     }
3425
3426   /* Try to simplify X.  If the simplification changed the code, it is likely
3427      that further simplification will help, so loop, but limit the number
3428      of repetitions that will be performed.  */
3429
3430   for (i = 0; i < 4; i++)
3431     {
3432       /* If X is sufficiently simple, don't bother trying to do anything
3433          with it.  */
3434       if (code != CONST_INT && code != REG && code != CLOBBER)
3435         x = combine_simplify_rtx (x, op0_mode, i == 3, in_dest);
3436
3437       if (GET_CODE (x) == code)
3438         break;
3439
3440       code = GET_CODE (x);
3441
3442       /* We no longer know the original mode of operand 0 since we
3443          have changed the form of X)  */
3444       op0_mode = VOIDmode;
3445     }
3446
3447   return x;
3448 }
3449 \f
3450 /* Simplify X, a piece of RTL.  We just operate on the expression at the
3451    outer level; call `subst' to simplify recursively.  Return the new
3452    expression.
3453
3454    OP0_MODE is the original mode of XEXP (x, 0); LAST is nonzero if this
3455    will be the iteration even if an expression with a code different from
3456    X is returned; IN_DEST is nonzero if we are inside a SET_DEST.  */
3457
3458 static rtx
3459 combine_simplify_rtx (x, op0_mode, last, in_dest)
3460      rtx x;
3461      enum machine_mode op0_mode;
3462      int last;
3463      int in_dest;
3464 {
3465   enum rtx_code code = GET_CODE (x);
3466   enum machine_mode mode = GET_MODE (x);
3467   rtx temp;
3468   int i;
3469
3470   /* If this is a commutative operation, put a constant last and a complex
3471      expression first.  We don't need to do this for comparisons here.  */
3472   if (GET_RTX_CLASS (code) == 'c'
3473       && ((CONSTANT_P (XEXP (x, 0)) && GET_CODE (XEXP (x, 1)) != CONST_INT)
3474           || (GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == 'o'
3475               && GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) != 'o')
3476           || (GET_CODE (XEXP (x, 0)) == SUBREG
3477               && GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0)))) == 'o'
3478               && GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) != 'o')))
3479     {
3480       temp = XEXP (x, 0);
3481       SUBST (XEXP (x, 0), XEXP (x, 1));
3482       SUBST (XEXP (x, 1), temp);
3483     }
3484
3485   /* If this is a PLUS, MINUS, or MULT, and the first operand is the
3486      sign extension of a PLUS with a constant, reverse the order of the sign
3487      extension and the addition. Note that this not the same as the original
3488      code, but overflow is undefined for signed values.  Also note that the
3489      PLUS will have been partially moved "inside" the sign-extension, so that
3490      the first operand of X will really look like:
3491          (ashiftrt (plus (ashift A C4) C5) C4).
3492      We convert this to
3493          (plus (ashiftrt (ashift A C4) C2) C4)
3494      and replace the first operand of X with that expression.  Later parts
3495      of this function may simplify the expression further.
3496
3497      For example, if we start with (mult (sign_extend (plus A C1)) C2),
3498      we swap the SIGN_EXTEND and PLUS.  Later code will apply the
3499      distributive law to produce (plus (mult (sign_extend X) C1) C3).
3500
3501      We do this to simplify address expressions.  */
3502
3503   if ((code == PLUS || code == MINUS || code == MULT)
3504       && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3505       && GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS
3506       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == ASHIFT
3507       && GET_CODE (XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1)) == CONST_INT
3508       && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3509       && XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1) == XEXP (XEXP (x, 0), 1)
3510       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
3511       && (temp = simplify_binary_operation (ASHIFTRT, mode,
3512                                             XEXP (XEXP (XEXP (x, 0), 0), 1),
3513                                             XEXP (XEXP (x, 0), 1))) != 0)
3514     {
3515       rtx new
3516         = simplify_shift_const (NULL_RTX, ASHIFT, mode,
3517                                 XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 0),
3518                                 INTVAL (XEXP (XEXP (x, 0), 1)));
3519
3520       new = simplify_shift_const (NULL_RTX, ASHIFTRT, mode, new,
3521                                   INTVAL (XEXP (XEXP (x, 0), 1)));
3522
3523       SUBST (XEXP (x, 0), gen_binary (PLUS, mode, new, temp));
3524     }
3525
3526   /* If this is a simple operation applied to an IF_THEN_ELSE, try 
3527      applying it to the arms of the IF_THEN_ELSE.  This often simplifies
3528      things.  Check for cases where both arms are testing the same
3529      condition.
3530
3531      Don't do anything if all operands are very simple.  */
3532
3533   if (((GET_RTX_CLASS (code) == '2' || GET_RTX_CLASS (code) == 'c'
3534         || GET_RTX_CLASS (code) == '<')
3535        && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3536             && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3537                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3538                       == 'o')))
3539            || (GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) != 'o'
3540                && ! (GET_CODE (XEXP (x, 1)) == SUBREG
3541                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 1))))
3542                          == 'o')))))
3543       || (GET_RTX_CLASS (code) == '1'
3544           && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3545                && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3546                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3547                          == 'o'))))))
3548     {
3549       rtx cond, true, false;
3550
3551       cond = if_then_else_cond (x, &true, &false);
3552       if (cond != 0
3553           /* If everything is a comparison, what we have is highly unlikely
3554              to be simpler, so don't use it.  */
3555           && ! (GET_RTX_CLASS (code) == '<'
3556                 && (GET_RTX_CLASS (GET_CODE (true)) == '<'
3557                     || GET_RTX_CLASS (GET_CODE (false)) == '<')))
3558         {
3559           rtx cop1 = const0_rtx;
3560           enum rtx_code cond_code = simplify_comparison (NE, &cond, &cop1);
3561
3562           if (cond_code == NE && GET_RTX_CLASS (GET_CODE (cond)) == '<')
3563             return x;
3564
3565           /* Simplify the alternative arms; this may collapse the true and 
3566              false arms to store-flag values.  */
3567           true = subst (true, pc_rtx, pc_rtx, 0, 0);
3568           false = subst (false, pc_rtx, pc_rtx, 0, 0);
3569
3570           /* Restarting if we generate a store-flag expression will cause
3571              us to loop.  Just drop through in this case.  */
3572
3573           /* If the result values are STORE_FLAG_VALUE and zero, we can
3574              just make the comparison operation.  */
3575           if (true == const_true_rtx && false == const0_rtx)
3576             x = gen_binary (cond_code, mode, cond, cop1);
3577           else if (true == const0_rtx && false == const_true_rtx)
3578             x = gen_binary (reverse_condition (cond_code), mode, cond, cop1);
3579
3580           /* Likewise, we can make the negate of a comparison operation
3581              if the result values are - STORE_FLAG_VALUE and zero.  */
3582           else if (GET_CODE (true) == CONST_INT
3583                    && INTVAL (true) == - STORE_FLAG_VALUE
3584                    && false == const0_rtx)
3585             x = gen_unary (NEG, mode, mode,
3586                            gen_binary (cond_code, mode, cond, cop1));
3587           else if (GET_CODE (false) == CONST_INT
3588                    && INTVAL (false) == - STORE_FLAG_VALUE
3589                    && true == const0_rtx)
3590             x = gen_unary (NEG, mode, mode,
3591                            gen_binary (reverse_condition (cond_code), 
3592                                        mode, cond, cop1));
3593           else
3594             return gen_rtx_IF_THEN_ELSE (mode,
3595                                          gen_binary (cond_code, VOIDmode,
3596                                                      cond, cop1),
3597                                          true, false);
3598
3599           code = GET_CODE (x);
3600           op0_mode = VOIDmode;
3601         }
3602     }
3603
3604   /* Try to fold this expression in case we have constants that weren't
3605      present before.  */
3606   temp = 0;
3607   switch (GET_RTX_CLASS (code))
3608     {
3609     case '1':
3610       temp = simplify_unary_operation (code, mode, XEXP (x, 0), op0_mode);
3611       break;
3612     case '<':
3613       temp = simplify_relational_operation (code, op0_mode,
3614                                             XEXP (x, 0), XEXP (x, 1));
3615 #ifdef FLOAT_STORE_FLAG_VALUE
3616       if (temp != 0 && GET_MODE_CLASS (mode) == MODE_FLOAT)
3617         {
3618           if (temp == const0_rtx)
3619             temp = CONST0_RTX (mode);
3620           else
3621             temp = immed_real_const_1 (FLOAT_STORE_FLAG_VALUE (mode), mode);
3622         }
3623 #endif
3624       break;
3625     case 'c':
3626     case '2':
3627       temp = simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1));
3628       break;
3629     case 'b':
3630     case '3':
3631       temp = simplify_ternary_operation (code, mode, op0_mode, XEXP (x, 0),
3632                                          XEXP (x, 1), XEXP (x, 2));
3633       break;
3634     }
3635
3636   if (temp)
3637     x = temp, code = GET_CODE (temp);
3638
3639   /* First see if we can apply the inverse distributive law.  */
3640   if (code == PLUS || code == MINUS
3641       || code == AND || code == IOR || code == XOR)
3642     {
3643       x = apply_distributive_law (x);
3644       code = GET_CODE (x);
3645     }
3646
3647   /* If CODE is an associative operation not otherwise handled, see if we
3648      can associate some operands.  This can win if they are constants or
3649      if they are logically related (i.e. (a & b) & a.  */
3650   if ((code == PLUS || code == MINUS
3651        || code == MULT || code == AND || code == IOR || code == XOR
3652        || code == DIV || code == UDIV
3653        || code == SMAX || code == SMIN || code == UMAX || code == UMIN)
3654       && INTEGRAL_MODE_P (mode))
3655     {
3656       if (GET_CODE (XEXP (x, 0)) == code)
3657         {
3658           rtx other = XEXP (XEXP (x, 0), 0);
3659           rtx inner_op0 = XEXP (XEXP (x, 0), 1);
3660           rtx inner_op1 = XEXP (x, 1);
3661           rtx inner;
3662           
3663           /* Make sure we pass the constant operand if any as the second
3664              one if this is a commutative operation.  */
3665           if (CONSTANT_P (inner_op0) && GET_RTX_CLASS (code) == 'c')
3666             {
3667               rtx tem = inner_op0;
3668               inner_op0 = inner_op1;
3669               inner_op1 = tem;
3670             }
3671           inner = simplify_binary_operation (code == MINUS ? PLUS
3672                                              : code == DIV ? MULT
3673                                              : code == UDIV ? MULT
3674                                              : code,
3675                                              mode, inner_op0, inner_op1);
3676
3677           /* For commutative operations, try the other pair if that one
3678              didn't simplify.  */
3679           if (inner == 0 && GET_RTX_CLASS (code) == 'c')
3680             {
3681               other = XEXP (XEXP (x, 0), 1);
3682               inner = simplify_binary_operation (code, mode,
3683                                                  XEXP (XEXP (x, 0), 0),
3684                                                  XEXP (x, 1));
3685             }
3686
3687           if (inner)
3688             return gen_binary (code, mode, other, inner);
3689         }
3690     }
3691
3692   /* A little bit of algebraic simplification here.  */
3693   switch (code)
3694     {
3695     case MEM:
3696       /* Ensure that our address has any ASHIFTs converted to MULT in case
3697          address-recognizing predicates are called later.  */
3698       temp = make_compound_operation (XEXP (x, 0), MEM);
3699       SUBST (XEXP (x, 0), temp);
3700       break;
3701
3702     case SUBREG:
3703       /* (subreg:A (mem:B X) N) becomes a modified MEM unless the SUBREG
3704          is paradoxical.  If we can't do that safely, then it becomes
3705          something nonsensical so that this combination won't take place.  */
3706
3707       if (GET_CODE (SUBREG_REG (x)) == MEM
3708           && (GET_MODE_SIZE (mode)
3709               <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
3710         {
3711           rtx inner = SUBREG_REG (x);
3712           int endian_offset = 0;
3713           /* Don't change the mode of the MEM
3714              if that would change the meaning of the address.  */
3715           if (MEM_VOLATILE_P (SUBREG_REG (x))
3716               || mode_dependent_address_p (XEXP (inner, 0)))
3717             return gen_rtx_CLOBBER (mode, const0_rtx);
3718
3719           if (BYTES_BIG_ENDIAN)
3720             {
3721               if (GET_MODE_SIZE (mode) < UNITS_PER_WORD)
3722                 endian_offset += UNITS_PER_WORD - GET_MODE_SIZE (mode);
3723               if (GET_MODE_SIZE (GET_MODE (inner)) < UNITS_PER_WORD)
3724                 endian_offset -= (UNITS_PER_WORD
3725                                   - GET_MODE_SIZE (GET_MODE (inner)));
3726             }
3727           /* Note if the plus_constant doesn't make a valid address
3728              then this combination won't be accepted.  */
3729           x = gen_rtx_MEM (mode,
3730                            plus_constant (XEXP (inner, 0),
3731                                           (SUBREG_WORD (x) * UNITS_PER_WORD
3732                                            + endian_offset)));
3733           RTX_UNCHANGING_P (x) = RTX_UNCHANGING_P (inner);
3734           MEM_COPY_ATTRIBUTES (x, inner);
3735           return x;
3736         }
3737
3738       /* If we are in a SET_DEST, these other cases can't apply.  */
3739       if (in_dest)
3740         return x;
3741
3742       /* Changing mode twice with SUBREG => just change it once,
3743          or not at all if changing back to starting mode.  */
3744       if (GET_CODE (SUBREG_REG (x)) == SUBREG)
3745         {
3746           if (mode == GET_MODE (SUBREG_REG (SUBREG_REG (x)))
3747               && SUBREG_WORD (x) == 0 && SUBREG_WORD (SUBREG_REG (x)) == 0)
3748             return SUBREG_REG (SUBREG_REG (x));
3749
3750           SUBST_INT (SUBREG_WORD (x),
3751                      SUBREG_WORD (x) + SUBREG_WORD (SUBREG_REG (x)));
3752           SUBST (SUBREG_REG (x), SUBREG_REG (SUBREG_REG (x)));
3753         }
3754
3755       /* SUBREG of a hard register => just change the register number
3756          and/or mode.  If the hard register is not valid in that mode,
3757          suppress this combination.  If the hard register is the stack,
3758          frame, or argument pointer, leave this as a SUBREG.  */
3759
3760       if (GET_CODE (SUBREG_REG (x)) == REG
3761           && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER
3762           && REGNO (SUBREG_REG (x)) != FRAME_POINTER_REGNUM
3763 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
3764           && REGNO (SUBREG_REG (x)) != HARD_FRAME_POINTER_REGNUM
3765 #endif
3766 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3767           && REGNO (SUBREG_REG (x)) != ARG_POINTER_REGNUM
3768 #endif
3769           && REGNO (SUBREG_REG (x)) != STACK_POINTER_REGNUM)
3770         {
3771           if (HARD_REGNO_MODE_OK (REGNO (SUBREG_REG (x)) + SUBREG_WORD (x),
3772                                   mode))
3773             return gen_rtx_REG (mode,
3774                                 REGNO (SUBREG_REG (x)) + SUBREG_WORD (x));
3775           else
3776             return gen_rtx_CLOBBER (mode, const0_rtx);
3777         }
3778
3779       /* For a constant, try to pick up the part we want.  Handle a full
3780          word and low-order part.  Only do this if we are narrowing
3781          the constant; if it is being widened, we have no idea what
3782          the extra bits will have been set to.  */
3783
3784       if (CONSTANT_P (SUBREG_REG (x)) && op0_mode != VOIDmode
3785           && GET_MODE_SIZE (mode) == UNITS_PER_WORD
3786           && GET_MODE_SIZE (op0_mode) > UNITS_PER_WORD
3787           && GET_MODE_CLASS (mode) == MODE_INT)
3788         {
3789           temp = operand_subword (SUBREG_REG (x), SUBREG_WORD (x),
3790                                   0, op0_mode);
3791           if (temp)
3792             return temp;
3793         }
3794         
3795       /* If we want a subreg of a constant, at offset 0,
3796          take the low bits.  On a little-endian machine, that's
3797          always valid.  On a big-endian machine, it's valid
3798          only if the constant's mode fits in one word.   Note that we
3799          cannot use subreg_lowpart_p since SUBREG_REG may be VOIDmode.  */
3800       if (CONSTANT_P (SUBREG_REG (x))
3801           && ((GET_MODE_SIZE (op0_mode) <= UNITS_PER_WORD
3802               || ! WORDS_BIG_ENDIAN)
3803               ? SUBREG_WORD (x) == 0
3804               : (SUBREG_WORD (x)
3805                  == ((GET_MODE_SIZE (op0_mode)
3806                       - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD))
3807                      / UNITS_PER_WORD)))
3808           && GET_MODE_SIZE (mode) <= GET_MODE_SIZE (op0_mode)
3809           && (! WORDS_BIG_ENDIAN
3810               || GET_MODE_BITSIZE (op0_mode) <= BITS_PER_WORD))
3811         return gen_lowpart_for_combine (mode, SUBREG_REG (x));
3812
3813       /* A paradoxical SUBREG of a VOIDmode constant is the same constant,
3814          since we are saying that the high bits don't matter.  */
3815       if (CONSTANT_P (SUBREG_REG (x)) && GET_MODE (SUBREG_REG (x)) == VOIDmode
3816           && GET_MODE_SIZE (mode) > GET_MODE_SIZE (op0_mode))
3817         {
3818           if (GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) > UNITS_PER_WORD
3819               && (WORDS_BIG_ENDIAN || SUBREG_WORD (x) != 0))
3820             return operand_subword (SUBREG_REG (x), SUBREG_WORD (x), 0, mode);
3821           return SUBREG_REG (x);
3822         }
3823
3824       /* Note that we cannot do any narrowing for non-constants since
3825          we might have been counting on using the fact that some bits were
3826          zero.  We now do this in the SET.  */
3827
3828       break;
3829
3830     case NOT:
3831       /* (not (plus X -1)) can become (neg X).  */
3832       if (GET_CODE (XEXP (x, 0)) == PLUS
3833           && XEXP (XEXP (x, 0), 1) == constm1_rtx)
3834         return gen_rtx_combine (NEG, mode, XEXP (XEXP (x, 0), 0));
3835
3836       /* Similarly, (not (neg X)) is (plus X -1).  */
3837       if (GET_CODE (XEXP (x, 0)) == NEG)
3838         return gen_rtx_combine (PLUS, mode, XEXP (XEXP (x, 0), 0),
3839                                 constm1_rtx);
3840
3841       /* (not (xor X C)) for C constant is (xor X D) with D = ~ C.  */
3842       if (GET_CODE (XEXP (x, 0)) == XOR
3843           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3844           && (temp = simplify_unary_operation (NOT, mode,
3845                                                XEXP (XEXP (x, 0), 1),
3846                                                mode)) != 0)
3847         return gen_binary (XOR, mode, XEXP (XEXP (x, 0), 0), temp);
3848               
3849       /* (not (ashift 1 X)) is (rotate ~1 X).  We used to do this for operands
3850          other than 1, but that is not valid.  We could do a similar
3851          simplification for (not (lshiftrt C X)) where C is just the sign bit,
3852          but this doesn't seem common enough to bother with.  */
3853       if (GET_CODE (XEXP (x, 0)) == ASHIFT
3854           && XEXP (XEXP (x, 0), 0) == const1_rtx)
3855         return gen_rtx_ROTATE (mode, gen_unary (NOT, mode, mode, const1_rtx),
3856                                XEXP (XEXP (x, 0), 1));
3857                                             
3858       if (GET_CODE (XEXP (x, 0)) == SUBREG
3859           && subreg_lowpart_p (XEXP (x, 0))
3860           && (GET_MODE_SIZE (GET_MODE (XEXP (x, 0)))
3861               < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (x, 0)))))
3862           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == ASHIFT
3863           && XEXP (SUBREG_REG (XEXP (x, 0)), 0) == const1_rtx)
3864         {
3865           enum machine_mode inner_mode = GET_MODE (SUBREG_REG (XEXP (x, 0)));
3866
3867           x = gen_rtx_ROTATE (inner_mode,
3868                               gen_unary (NOT, inner_mode, inner_mode,
3869                                          const1_rtx),
3870                               XEXP (SUBREG_REG (XEXP (x, 0)), 1));
3871           return gen_lowpart_for_combine (mode, x);
3872         }
3873                                             
3874       /* If STORE_FLAG_VALUE is -1, (not (comparison foo bar)) can be done by
3875          reversing the comparison code if valid.  */
3876       if (STORE_FLAG_VALUE == -1
3877           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
3878           && reversible_comparison_p (XEXP (x, 0)))
3879         return gen_rtx_combine (reverse_condition (GET_CODE (XEXP (x, 0))),
3880                                 mode, XEXP (XEXP (x, 0), 0),
3881                                 XEXP (XEXP (x, 0), 1));
3882
3883       /* (ashiftrt foo C) where C is the number of bits in FOO minus 1
3884          is (lt foo (const_int 0)) if STORE_FLAG_VALUE is -1, so we can
3885          perform the above simplification.  */
3886
3887       if (STORE_FLAG_VALUE == -1
3888           && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3889           && XEXP (x, 1) == const1_rtx
3890           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3891           && INTVAL (XEXP (XEXP (x, 0), 1)) == GET_MODE_BITSIZE (mode) - 1)
3892         return gen_rtx_combine (GE, mode, XEXP (XEXP (x, 0), 0), const0_rtx);
3893
3894       /* Apply De Morgan's laws to reduce number of patterns for machines
3895          with negating logical insns (and-not, nand, etc.).  If result has
3896          only one NOT, put it first, since that is how the patterns are
3897          coded.  */
3898
3899       if (GET_CODE (XEXP (x, 0)) == IOR || GET_CODE (XEXP (x, 0)) == AND)
3900         {
3901          rtx in1 = XEXP (XEXP (x, 0), 0), in2 = XEXP (XEXP (x, 0), 1);
3902
3903          if (GET_CODE (in1) == NOT)
3904            in1 = XEXP (in1, 0);
3905          else
3906            in1 = gen_rtx_combine (NOT, GET_MODE (in1), in1);
3907
3908          if (GET_CODE (in2) == NOT)
3909            in2 = XEXP (in2, 0);
3910          else if (GET_CODE (in2) == CONST_INT
3911                   && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
3912            in2 = GEN_INT (GET_MODE_MASK (mode) & ~ INTVAL (in2));
3913          else
3914            in2 = gen_rtx_combine (NOT, GET_MODE (in2), in2);
3915
3916          if (GET_CODE (in2) == NOT)
3917            {
3918              rtx tem = in2;
3919              in2 = in1; in1 = tem;
3920            }
3921
3922          return gen_rtx_combine (GET_CODE (XEXP (x, 0)) == IOR ? AND : IOR,
3923                                  mode, in1, in2);
3924        } 
3925       break;
3926
3927     case NEG:
3928       /* (neg (plus X 1)) can become (not X).  */
3929       if (GET_CODE (XEXP (x, 0)) == PLUS
3930           && XEXP (XEXP (x, 0), 1) == const1_rtx)
3931         return gen_rtx_combine (NOT, mode, XEXP (XEXP (x, 0), 0));
3932
3933       /* Similarly, (neg (not X)) is (plus X 1).  */
3934       if (GET_CODE (XEXP (x, 0)) == NOT)
3935         return plus_constant (XEXP (XEXP (x, 0), 0), 1);
3936
3937       /* (neg (minus X Y)) can become (minus Y X).  */
3938       if (GET_CODE (XEXP (x, 0)) == MINUS
3939           && (! FLOAT_MODE_P (mode)
3940               /* x-y != -(y-x) with IEEE floating point.  */
3941               || TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
3942               || flag_fast_math))
3943         return gen_binary (MINUS, mode, XEXP (XEXP (x, 0), 1),
3944                            XEXP (XEXP (x, 0), 0));
3945
3946       /* (neg (xor A 1)) is (plus A -1) if A is known to be either 0 or 1.  */
3947       if (GET_CODE (XEXP (x, 0)) == XOR && XEXP (XEXP (x, 0), 1) == const1_rtx
3948           && nonzero_bits (XEXP (XEXP (x, 0), 0), mode) == 1)
3949         return gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0), constm1_rtx);
3950
3951       /* NEG commutes with ASHIFT since it is multiplication.  Only do this
3952          if we can then eliminate the NEG (e.g.,
3953          if the operand is a constant).  */
3954
3955       if (GET_CODE (XEXP (x, 0)) == ASHIFT)
3956         {
3957           temp = simplify_unary_operation (NEG, mode,
3958                                            XEXP (XEXP (x, 0), 0), mode);
3959           if (temp)
3960             {
3961               SUBST (XEXP (XEXP (x, 0), 0), temp);
3962               return XEXP (x, 0);
3963             }
3964         }
3965
3966       temp = expand_compound_operation (XEXP (x, 0));
3967
3968       /* For C equal to the width of MODE minus 1, (neg (ashiftrt X C)) can be
3969          replaced by (lshiftrt X C).  This will convert
3970          (neg (sign_extract X 1 Y)) to (zero_extract X 1 Y).  */
3971
3972       if (GET_CODE (temp) == ASHIFTRT
3973           && GET_CODE (XEXP (temp, 1)) == CONST_INT
3974           && INTVAL (XEXP (temp, 1)) == GET_MODE_BITSIZE (mode) - 1)
3975         return simplify_shift_const (temp, LSHIFTRT, mode, XEXP (temp, 0),
3976                                      INTVAL (XEXP (temp, 1)));
3977
3978       /* If X has only a single bit that might be nonzero, say, bit I, convert
3979          (neg X) to (ashiftrt (ashift X C-I) C-I) where C is the bitsize of
3980          MODE minus 1.  This will convert (neg (zero_extract X 1 Y)) to
3981          (sign_extract X 1 Y).  But only do this if TEMP isn't a register
3982          or a SUBREG of one since we'd be making the expression more
3983          complex if it was just a register.  */
3984
3985       if (GET_CODE (temp) != REG
3986           && ! (GET_CODE (temp) == SUBREG
3987                 && GET_CODE (SUBREG_REG (temp)) == REG)
3988           && (i = exact_log2 (nonzero_bits (temp, mode))) >= 0)
3989         {
3990           rtx temp1 = simplify_shift_const
3991             (NULL_RTX, ASHIFTRT, mode,
3992              simplify_shift_const (NULL_RTX, ASHIFT, mode, temp,
3993                                    GET_MODE_BITSIZE (mode) - 1 - i),
3994              GET_MODE_BITSIZE (mode) - 1 - i);
3995
3996           /* If all we did was surround TEMP with the two shifts, we
3997              haven't improved anything, so don't use it.  Otherwise,
3998              we are better off with TEMP1.  */
3999           if (GET_CODE (temp1) != ASHIFTRT
4000               || GET_CODE (XEXP (temp1, 0)) != ASHIFT
4001               || XEXP (XEXP (temp1, 0), 0) != temp)
4002             return temp1;
4003         }
4004       break;
4005
4006     case TRUNCATE:
4007       /* We can't handle truncation to a partial integer mode here
4008          because we don't know the real bitsize of the partial
4009          integer mode.  */
4010       if (GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
4011         break;
4012
4013       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4014           && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
4015                                     GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))))
4016         SUBST (XEXP (x, 0),
4017                force_to_mode (XEXP (x, 0), GET_MODE (XEXP (x, 0)),
4018                               GET_MODE_MASK (mode), NULL_RTX, 0));
4019
4020       /* (truncate:SI ({sign,zero}_extend:DI foo:SI)) == foo:SI.  */
4021       if ((GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
4022            || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
4023           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
4024         return XEXP (XEXP (x, 0), 0);
4025
4026       /* (truncate:SI (OP:DI ({sign,zero}_extend:DI foo:SI))) is
4027          (OP:SI foo:SI) if OP is NEG or ABS.  */
4028       if ((GET_CODE (XEXP (x, 0)) == ABS
4029            || GET_CODE (XEXP (x, 0)) == NEG)
4030           && (GET_CODE (XEXP (XEXP (x, 0), 0)) == SIGN_EXTEND
4031               || GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND)
4032           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
4033         return gen_unary (GET_CODE (XEXP (x, 0)), mode, mode,
4034                           XEXP (XEXP (XEXP (x, 0), 0), 0));
4035
4036       /* (truncate:SI (subreg:DI (truncate:SI X) 0)) is
4037          (truncate:SI x).  */
4038       if (GET_CODE (XEXP (x, 0)) == SUBREG
4039           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == TRUNCATE
4040           && subreg_lowpart_p (XEXP (x, 0)))
4041         return SUBREG_REG (XEXP (x, 0));
4042
4043       /* If we know that the value is already truncated, we can
4044          replace the TRUNCATE with a SUBREG if TRULY_NOOP_TRUNCATION
4045          is nonzero for the corresponding modes.  But don't do this
4046          for an (LSHIFTRT (MULT ...)) since this will cause problems
4047          with the umulXi3_highpart patterns.  */
4048       if (TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
4049                                  GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
4050           && num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4051              >= GET_MODE_BITSIZE (mode) + 1
4052           && ! (GET_CODE (XEXP (x, 0)) == LSHIFTRT
4053                 && GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT))
4054         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4055
4056       /* A truncate of a comparison can be replaced with a subreg if
4057          STORE_FLAG_VALUE permits.  This is like the previous test,
4058          but it works even if the comparison is done in a mode larger
4059          than HOST_BITS_PER_WIDE_INT.  */
4060       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4061           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4062           && ((HOST_WIDE_INT) STORE_FLAG_VALUE &~ GET_MODE_MASK (mode)) == 0)
4063         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4064
4065       /* Similarly, a truncate of a register whose value is a
4066          comparison can be replaced with a subreg if STORE_FLAG_VALUE
4067          permits.  */
4068       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4069           && ((HOST_WIDE_INT) STORE_FLAG_VALUE &~ GET_MODE_MASK (mode)) == 0
4070           && (temp = get_last_value (XEXP (x, 0)))
4071           && GET_RTX_CLASS (GET_CODE (temp)) == '<')
4072         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4073
4074       break;
4075
4076     case FLOAT_TRUNCATE:
4077       /* (float_truncate:SF (float_extend:DF foo:SF)) = foo:SF.  */
4078       if (GET_CODE (XEXP (x, 0)) == FLOAT_EXTEND
4079           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
4080         return XEXP (XEXP (x, 0), 0);
4081
4082       /* (float_truncate:SF (OP:DF (float_extend:DF foo:sf))) is
4083          (OP:SF foo:SF) if OP is NEG or ABS.  */
4084       if ((GET_CODE (XEXP (x, 0)) == ABS
4085            || GET_CODE (XEXP (x, 0)) == NEG)
4086           && GET_CODE (XEXP (XEXP (x, 0), 0)) == FLOAT_EXTEND
4087           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
4088         return gen_unary (GET_CODE (XEXP (x, 0)), mode, mode,
4089                           XEXP (XEXP (XEXP (x, 0), 0), 0));
4090
4091       /* (float_truncate:SF (subreg:DF (float_truncate:SF X) 0))
4092          is (float_truncate:SF x).  */
4093       if (GET_CODE (XEXP (x, 0)) == SUBREG
4094           && subreg_lowpart_p (XEXP (x, 0))
4095           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == FLOAT_TRUNCATE)
4096         return SUBREG_REG (XEXP (x, 0));
4097       break;  
4098
4099 #ifdef HAVE_cc0
4100     case COMPARE:
4101       /* Convert (compare FOO (const_int 0)) to FOO unless we aren't
4102          using cc0, in which case we want to leave it as a COMPARE
4103          so we can distinguish it from a register-register-copy.  */
4104       if (XEXP (x, 1) == const0_rtx)
4105         return XEXP (x, 0);
4106
4107       /* In IEEE floating point, x-0 is not the same as x.  */
4108       if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
4109            || ! FLOAT_MODE_P (GET_MODE (XEXP (x, 0)))
4110            || flag_fast_math)
4111           && XEXP (x, 1) == CONST0_RTX (GET_MODE (XEXP (x, 0))))
4112         return XEXP (x, 0);
4113       break;
4114 #endif
4115
4116     case CONST:
4117       /* (const (const X)) can become (const X).  Do it this way rather than
4118          returning the inner CONST since CONST can be shared with a
4119          REG_EQUAL note.  */
4120       if (GET_CODE (XEXP (x, 0)) == CONST)
4121         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4122       break;
4123
4124 #ifdef HAVE_lo_sum
4125     case LO_SUM:
4126       /* Convert (lo_sum (high FOO) FOO) to FOO.  This is necessary so we
4127          can add in an offset.  find_split_point will split this address up
4128          again if it doesn't match.  */
4129       if (GET_CODE (XEXP (x, 0)) == HIGH
4130           && rtx_equal_p (XEXP (XEXP (x, 0), 0), XEXP (x, 1)))
4131         return XEXP (x, 1);
4132       break;
4133 #endif
4134
4135     case PLUS:
4136       /* If we have (plus (plus (A const) B)), associate it so that CONST is
4137          outermost.  That's because that's the way indexed addresses are
4138          supposed to appear.  This code used to check many more cases, but
4139          they are now checked elsewhere.  */
4140       if (GET_CODE (XEXP (x, 0)) == PLUS
4141           && CONSTANT_ADDRESS_P (XEXP (XEXP (x, 0), 1)))
4142         return gen_binary (PLUS, mode,
4143                            gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0),
4144                                        XEXP (x, 1)),
4145                            XEXP (XEXP (x, 0), 1));
4146
4147       /* (plus (xor (and <foo> (const_int pow2 - 1)) <c>) <-c>)
4148          when c is (const_int (pow2 + 1) / 2) is a sign extension of a
4149          bit-field and can be replaced by either a sign_extend or a
4150          sign_extract.  The `and' may be a zero_extend and the two
4151          <c>, -<c> constants may be reversed.  */
4152       if (GET_CODE (XEXP (x, 0)) == XOR
4153           && GET_CODE (XEXP (x, 1)) == CONST_INT
4154           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4155           && INTVAL (XEXP (x, 1)) == - INTVAL (XEXP (XEXP (x, 0), 1))
4156           && ((i = exact_log2 (INTVAL (XEXP (XEXP (x, 0), 1)))) >= 0
4157               || (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
4158           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4159           && ((GET_CODE (XEXP (XEXP (x, 0), 0)) == AND
4160                && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
4161                && (INTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1))
4162                    == ((HOST_WIDE_INT) 1 << (i + 1)) - 1))
4163               || (GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND
4164                   && (GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)))
4165                       == (unsigned int) i + 1))))
4166         return simplify_shift_const
4167           (NULL_RTX, ASHIFTRT, mode,
4168            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4169                                  XEXP (XEXP (XEXP (x, 0), 0), 0),
4170                                  GET_MODE_BITSIZE (mode) - (i + 1)),
4171            GET_MODE_BITSIZE (mode) - (i + 1));
4172
4173       /* (plus (comparison A B) C) can become (neg (rev-comp A B)) if
4174          C is 1 and STORE_FLAG_VALUE is -1 or if C is -1 and STORE_FLAG_VALUE
4175          is 1.  This produces better code than the alternative immediately
4176          below.  */
4177       if (GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4178           && reversible_comparison_p (XEXP (x, 0))
4179           && ((STORE_FLAG_VALUE == -1 && XEXP (x, 1) == const1_rtx)
4180               || (STORE_FLAG_VALUE == 1 && XEXP (x, 1) == constm1_rtx)))
4181         return
4182           gen_unary (NEG, mode, mode,
4183                      gen_binary (reverse_condition (GET_CODE (XEXP (x, 0))),
4184                                  mode, XEXP (XEXP (x, 0), 0),
4185                                  XEXP (XEXP (x, 0), 1)));
4186
4187       /* If only the low-order bit of X is possibly nonzero, (plus x -1)
4188          can become (ashiftrt (ashift (xor x 1) C) C) where C is
4189          the bitsize of the mode - 1.  This allows simplification of
4190          "a = (b & 8) == 0;"  */
4191       if (XEXP (x, 1) == constm1_rtx
4192           && GET_CODE (XEXP (x, 0)) != REG
4193           && ! (GET_CODE (XEXP (x,0)) == SUBREG
4194                 && GET_CODE (SUBREG_REG (XEXP (x, 0))) == REG)
4195           && nonzero_bits (XEXP (x, 0), mode) == 1)
4196         return simplify_shift_const (NULL_RTX, ASHIFTRT, mode,
4197            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4198                                  gen_rtx_combine (XOR, mode,
4199                                                   XEXP (x, 0), const1_rtx),
4200                                  GET_MODE_BITSIZE (mode) - 1),
4201            GET_MODE_BITSIZE (mode) - 1);
4202
4203       /* If we are adding two things that have no bits in common, convert
4204          the addition into an IOR.  This will often be further simplified,
4205          for example in cases like ((a & 1) + (a & 2)), which can
4206          become a & 3.  */
4207
4208       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4209           && (nonzero_bits (XEXP (x, 0), mode)
4210               & nonzero_bits (XEXP (x, 1), mode)) == 0)
4211         return gen_binary (IOR, mode, XEXP (x, 0), XEXP (x, 1));
4212       break;
4213
4214     case MINUS:
4215       /* If STORE_FLAG_VALUE is 1, (minus 1 (comparison foo bar)) can be done
4216          by reversing the comparison code if valid.  */
4217       if (STORE_FLAG_VALUE == 1
4218           && XEXP (x, 0) == const1_rtx
4219           && GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) == '<'
4220           && reversible_comparison_p (XEXP (x, 1)))
4221         return gen_binary (reverse_condition (GET_CODE (XEXP (x, 1))),
4222                            mode, XEXP (XEXP (x, 1), 0),
4223                                 XEXP (XEXP (x, 1), 1));
4224
4225       /* (minus <foo> (and <foo> (const_int -pow2))) becomes
4226          (and <foo> (const_int pow2-1))  */
4227       if (GET_CODE (XEXP (x, 1)) == AND
4228           && GET_CODE (XEXP (XEXP (x, 1), 1)) == CONST_INT
4229           && exact_log2 (- INTVAL (XEXP (XEXP (x, 1), 1))) >= 0
4230           && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
4231         return simplify_and_const_int (NULL_RTX, mode, XEXP (x, 0),
4232                                        - INTVAL (XEXP (XEXP (x, 1), 1)) - 1);
4233
4234       /* Canonicalize (minus A (plus B C)) to (minus (minus A B) C) for
4235          integers.  */
4236       if (GET_CODE (XEXP (x, 1)) == PLUS && INTEGRAL_MODE_P (mode))
4237         return gen_binary (MINUS, mode,
4238                            gen_binary (MINUS, mode, XEXP (x, 0),
4239                                        XEXP (XEXP (x, 1), 0)),
4240                            XEXP (XEXP (x, 1), 1));
4241       break;
4242
4243     case MULT:
4244       /* If we have (mult (plus A B) C), apply the distributive law and then
4245          the inverse distributive law to see if things simplify.  This
4246          occurs mostly in addresses, often when unrolling loops.  */
4247
4248       if (GET_CODE (XEXP (x, 0)) == PLUS)
4249         {
4250           x = apply_distributive_law
4251             (gen_binary (PLUS, mode,
4252                          gen_binary (MULT, mode,
4253                                      XEXP (XEXP (x, 0), 0), XEXP (x, 1)),
4254                          gen_binary (MULT, mode,
4255                                      XEXP (XEXP (x, 0), 1),
4256                                      copy_rtx (XEXP (x, 1)))));
4257
4258           if (GET_CODE (x) != MULT)
4259             return x;
4260         }
4261       break;
4262
4263     case UDIV:
4264       /* If this is a divide by a power of two, treat it as a shift if
4265          its first operand is a shift.  */
4266       if (GET_CODE (XEXP (x, 1)) == CONST_INT
4267           && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0
4268           && (GET_CODE (XEXP (x, 0)) == ASHIFT
4269               || GET_CODE (XEXP (x, 0)) == LSHIFTRT
4270               || GET_CODE (XEXP (x, 0)) == ASHIFTRT
4271               || GET_CODE (XEXP (x, 0)) == ROTATE
4272               || GET_CODE (XEXP (x, 0)) == ROTATERT))
4273         return simplify_shift_const (NULL_RTX, LSHIFTRT, mode, XEXP (x, 0), i);
4274       break;
4275
4276     case EQ:  case NE:
4277     case GT:  case GTU:  case GE:  case GEU:
4278     case LT:  case LTU:  case LE:  case LEU:
4279       /* If the first operand is a condition code, we can't do anything
4280          with it.  */
4281       if (GET_CODE (XEXP (x, 0)) == COMPARE
4282           || (GET_MODE_CLASS (GET_MODE (XEXP (x, 0))) != MODE_CC
4283 #ifdef HAVE_cc0
4284               && XEXP (x, 0) != cc0_rtx
4285 #endif
4286                ))
4287         {
4288           rtx op0 = XEXP (x, 0);
4289           rtx op1 = XEXP (x, 1);
4290           enum rtx_code new_code;
4291
4292           if (GET_CODE (op0) == COMPARE)
4293             op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
4294
4295           /* Simplify our comparison, if possible.  */
4296           new_code = simplify_comparison (code, &op0, &op1);
4297
4298           /* If STORE_FLAG_VALUE is 1, we can convert (ne x 0) to simply X
4299              if only the low-order bit is possibly nonzero in X (such as when
4300              X is a ZERO_EXTRACT of one bit).  Similarly, we can convert EQ to
4301              (xor X 1) or (minus 1 X); we use the former.  Finally, if X is
4302              known to be either 0 or -1, NE becomes a NEG and EQ becomes
4303              (plus X 1).
4304
4305              Remove any ZERO_EXTRACT we made when thinking this was a
4306              comparison.  It may now be simpler to use, e.g., an AND.  If a
4307              ZERO_EXTRACT is indeed appropriate, it will be placed back by
4308              the call to make_compound_operation in the SET case.  */
4309
4310           if (STORE_FLAG_VALUE == 1
4311               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4312               && op1 == const0_rtx && nonzero_bits (op0, mode) == 1)
4313             return gen_lowpart_for_combine (mode,
4314                                             expand_compound_operation (op0));
4315
4316           else if (STORE_FLAG_VALUE == 1
4317                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4318                    && op1 == const0_rtx
4319                    && (num_sign_bit_copies (op0, mode)
4320                        == GET_MODE_BITSIZE (mode)))
4321             {
4322               op0 = expand_compound_operation (op0);
4323               return gen_unary (NEG, mode, mode,
4324                                 gen_lowpart_for_combine (mode, op0));
4325             }
4326
4327           else if (STORE_FLAG_VALUE == 1
4328                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4329                    && op1 == const0_rtx
4330                    && nonzero_bits (op0, mode) == 1)
4331             {
4332               op0 = expand_compound_operation (op0);
4333               return gen_binary (XOR, mode,
4334                                  gen_lowpart_for_combine (mode, op0),
4335                                  const1_rtx);
4336             }
4337
4338           else if (STORE_FLAG_VALUE == 1
4339                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4340                    && op1 == const0_rtx
4341                    && (num_sign_bit_copies (op0, mode)
4342                        == GET_MODE_BITSIZE (mode)))
4343             {
4344               op0 = expand_compound_operation (op0);
4345               return plus_constant (gen_lowpart_for_combine (mode, op0), 1);
4346             }
4347
4348           /* If STORE_FLAG_VALUE is -1, we have cases similar to
4349              those above.  */
4350           if (STORE_FLAG_VALUE == -1
4351               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4352               && op1 == const0_rtx
4353               && (num_sign_bit_copies (op0, mode)
4354                   == GET_MODE_BITSIZE (mode)))
4355             return gen_lowpart_for_combine (mode,
4356                                             expand_compound_operation (op0));
4357
4358           else if (STORE_FLAG_VALUE == -1
4359                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4360                    && op1 == const0_rtx
4361                    && nonzero_bits (op0, mode) == 1)
4362             {
4363               op0 = expand_compound_operation (op0);
4364               return gen_unary (NEG, mode, mode,
4365                                 gen_lowpart_for_combine (mode, op0));
4366             }
4367
4368           else if (STORE_FLAG_VALUE == -1
4369                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4370                    && op1 == const0_rtx
4371                    && (num_sign_bit_copies (op0, mode)
4372                        == GET_MODE_BITSIZE (mode)))
4373             {
4374               op0 = expand_compound_operation (op0);
4375               return gen_unary (NOT, mode, mode,
4376                                 gen_lowpart_for_combine (mode, op0));
4377             }
4378
4379           /* If X is 0/1, (eq X 0) is X-1.  */
4380           else if (STORE_FLAG_VALUE == -1
4381                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4382                    && op1 == const0_rtx
4383                    && nonzero_bits (op0, mode) == 1)
4384             {
4385               op0 = expand_compound_operation (op0);
4386               return plus_constant (gen_lowpart_for_combine (mode, op0), -1);
4387             }
4388
4389           /* If STORE_FLAG_VALUE says to just test the sign bit and X has just
4390              one bit that might be nonzero, we can convert (ne x 0) to
4391              (ashift x c) where C puts the bit in the sign bit.  Remove any
4392              AND with STORE_FLAG_VALUE when we are done, since we are only
4393              going to test the sign bit.  */
4394           if (new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4395               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4396               && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
4397                   == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE(mode)-1))
4398               && op1 == const0_rtx
4399               && mode == GET_MODE (op0)
4400               && (i = exact_log2 (nonzero_bits (op0, mode))) >= 0)
4401             {
4402               x = simplify_shift_const (NULL_RTX, ASHIFT, mode,
4403                                         expand_compound_operation (op0),
4404                                         GET_MODE_BITSIZE (mode) - 1 - i);
4405               if (GET_CODE (x) == AND && XEXP (x, 1) == const_true_rtx)
4406                 return XEXP (x, 0);
4407               else
4408                 return x;
4409             }
4410
4411           /* If the code changed, return a whole new comparison.  */
4412           if (new_code != code)
4413             return gen_rtx_combine (new_code, mode, op0, op1);
4414
4415           /* Otherwise, keep this operation, but maybe change its operands.  
4416              This also converts (ne (compare FOO BAR) 0) to (ne FOO BAR).  */
4417           SUBST (XEXP (x, 0), op0);
4418           SUBST (XEXP (x, 1), op1);
4419         }
4420       break;
4421           
4422     case IF_THEN_ELSE:
4423       return simplify_if_then_else (x);
4424
4425     case ZERO_EXTRACT:
4426     case SIGN_EXTRACT:
4427     case ZERO_EXTEND:
4428     case SIGN_EXTEND:
4429       /* If we are processing SET_DEST, we are done.  */
4430       if (in_dest)
4431         return x;
4432
4433       return expand_compound_operation (x);
4434
4435     case SET:
4436       return simplify_set (x);
4437
4438     case AND:
4439     case IOR:
4440     case XOR:
4441       return simplify_logical (x, last);
4442
4443     case ABS:      
4444       /* (abs (neg <foo>)) -> (abs <foo>) */
4445       if (GET_CODE (XEXP (x, 0)) == NEG)
4446         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4447
4448       /* If the mode of the operand is VOIDmode (i.e. if it is ASM_OPERANDS),
4449          do nothing.  */
4450       if (GET_MODE (XEXP (x, 0)) == VOIDmode)
4451         break;
4452
4453       /* If operand is something known to be positive, ignore the ABS.  */
4454       if (GET_CODE (XEXP (x, 0)) == FFS || GET_CODE (XEXP (x, 0)) == ABS
4455           || ((GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
4456                <= HOST_BITS_PER_WIDE_INT)
4457               && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4458                    & ((HOST_WIDE_INT) 1
4459                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1)))
4460                   == 0)))
4461         return XEXP (x, 0);
4462
4463
4464       /* If operand is known to be only -1 or 0, convert ABS to NEG.  */
4465       if (num_sign_bit_copies (XEXP (x, 0), mode) == GET_MODE_BITSIZE (mode))
4466         return gen_rtx_combine (NEG, mode, XEXP (x, 0));
4467
4468       break;
4469
4470     case FFS:
4471       /* (ffs (*_extend <X>)) = (ffs <X>) */
4472       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
4473           || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
4474         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4475       break;
4476
4477     case FLOAT:
4478       /* (float (sign_extend <X>)) = (float <X>).  */
4479       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND)
4480         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4481       break;
4482
4483     case ASHIFT:
4484     case LSHIFTRT:
4485     case ASHIFTRT:
4486     case ROTATE:
4487     case ROTATERT:
4488       /* If this is a shift by a constant amount, simplify it.  */
4489       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
4490         return simplify_shift_const (x, code, mode, XEXP (x, 0), 
4491                                      INTVAL (XEXP (x, 1)));
4492
4493 #ifdef SHIFT_COUNT_TRUNCATED
4494       else if (SHIFT_COUNT_TRUNCATED && GET_CODE (XEXP (x, 1)) != REG)
4495         SUBST (XEXP (x, 1),
4496                force_to_mode (XEXP (x, 1), GET_MODE (x),
4497                               ((HOST_WIDE_INT) 1 
4498                                << exact_log2 (GET_MODE_BITSIZE (GET_MODE (x))))
4499                               - 1,
4500                               NULL_RTX, 0));
4501 #endif
4502
4503       break;
4504
4505     default:
4506       break;
4507     }
4508
4509   return x;
4510 }
4511 \f
4512 /* Simplify X, an IF_THEN_ELSE expression.  Return the new expression.  */
4513
4514 static rtx
4515 simplify_if_then_else (x)
4516      rtx x;
4517 {
4518   enum machine_mode mode = GET_MODE (x);
4519   rtx cond = XEXP (x, 0);
4520   rtx true = XEXP (x, 1);
4521   rtx false = XEXP (x, 2);
4522   enum rtx_code true_code = GET_CODE (cond);
4523   int comparison_p = GET_RTX_CLASS (true_code) == '<';
4524   rtx temp;
4525   int i;
4526
4527   /* Simplify storing of the truth value.  */
4528   if (comparison_p && true == const_true_rtx && false == const0_rtx)
4529     return gen_binary (true_code, mode, XEXP (cond, 0), XEXP (cond, 1));
4530       
4531   /* Also when the truth value has to be reversed.  */
4532   if (comparison_p && reversible_comparison_p (cond)
4533       && true == const0_rtx && false == const_true_rtx)
4534     return gen_binary (reverse_condition (true_code),
4535                        mode, XEXP (cond, 0), XEXP (cond, 1));
4536
4537   /* Sometimes we can simplify the arm of an IF_THEN_ELSE if a register used
4538      in it is being compared against certain values.  Get the true and false
4539      comparisons and see if that says anything about the value of each arm.  */
4540
4541   if (comparison_p && reversible_comparison_p (cond)
4542       && GET_CODE (XEXP (cond, 0)) == REG)
4543     {
4544       HOST_WIDE_INT nzb;
4545       rtx from = XEXP (cond, 0);
4546       enum rtx_code false_code = reverse_condition (true_code);
4547       rtx true_val = XEXP (cond, 1);
4548       rtx false_val = true_val;
4549       int swapped = 0;
4550
4551       /* If FALSE_CODE is EQ, swap the codes and arms.  */
4552
4553       if (false_code == EQ)
4554         {
4555           swapped = 1, true_code = EQ, false_code = NE;
4556           temp = true, true = false, false = temp;
4557         }
4558
4559       /* If we are comparing against zero and the expression being tested has
4560          only a single bit that might be nonzero, that is its value when it is
4561          not equal to zero.  Similarly if it is known to be -1 or 0.  */
4562
4563       if (true_code == EQ && true_val == const0_rtx
4564           && exact_log2 (nzb = nonzero_bits (from, GET_MODE (from))) >= 0)
4565         false_code = EQ, false_val = GEN_INT (nzb);
4566       else if (true_code == EQ && true_val == const0_rtx
4567                && (num_sign_bit_copies (from, GET_MODE (from))
4568                    == GET_MODE_BITSIZE (GET_MODE (from))))
4569         false_code = EQ, false_val = constm1_rtx;
4570
4571       /* Now simplify an arm if we know the value of the register in the
4572          branch and it is used in the arm.  Be careful due to the potential
4573          of locally-shared RTL.  */
4574
4575       if (reg_mentioned_p (from, true))
4576         true = subst (known_cond (copy_rtx (true), true_code, from, true_val),
4577                       pc_rtx, pc_rtx, 0, 0);
4578       if (reg_mentioned_p (from, false))
4579         false = subst (known_cond (copy_rtx (false), false_code,
4580                                    from, false_val),
4581                        pc_rtx, pc_rtx, 0, 0);
4582
4583       SUBST (XEXP (x, 1), swapped ? false : true);
4584       SUBST (XEXP (x, 2), swapped ? true : false);
4585
4586       true = XEXP (x, 1), false = XEXP (x, 2), true_code = GET_CODE (cond);
4587     }
4588
4589   /* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
4590      reversed, do so to avoid needing two sets of patterns for
4591      subtract-and-branch insns.  Similarly if we have a constant in the true
4592      arm, the false arm is the same as the first operand of the comparison, or
4593      the false arm is more complicated than the true arm.  */
4594
4595   if (comparison_p && reversible_comparison_p (cond)
4596       && (true == pc_rtx 
4597           || (CONSTANT_P (true)
4598               && GET_CODE (false) != CONST_INT && false != pc_rtx)
4599           || true == const0_rtx
4600           || (GET_RTX_CLASS (GET_CODE (true)) == 'o'
4601               && GET_RTX_CLASS (GET_CODE (false)) != 'o')
4602           || (GET_CODE (true) == SUBREG
4603               && GET_RTX_CLASS (GET_CODE (SUBREG_REG (true))) == 'o'
4604               && GET_RTX_CLASS (GET_CODE (false)) != 'o')
4605           || reg_mentioned_p (true, false)
4606           || rtx_equal_p (false, XEXP (cond, 0))))
4607     {
4608       true_code = reverse_condition (true_code);
4609       SUBST (XEXP (x, 0),
4610              gen_binary (true_code, GET_MODE (cond), XEXP (cond, 0),
4611                          XEXP (cond, 1)));
4612
4613       SUBST (XEXP (x, 1), false);
4614       SUBST (XEXP (x, 2), true);
4615
4616       temp = true, true = false, false = temp, cond = XEXP (x, 0);
4617
4618       /* It is possible that the conditional has been simplified out.  */
4619       true_code = GET_CODE (cond);
4620       comparison_p = GET_RTX_CLASS (true_code) == '<';
4621     }
4622
4623   /* If the two arms are identical, we don't need the comparison.  */
4624
4625   if (rtx_equal_p (true, false) && ! side_effects_p (cond))
4626     return true;
4627
4628   /* Convert a == b ? b : a to "a".  */
4629   if (true_code == EQ && ! side_effects_p (cond)
4630       && rtx_equal_p (XEXP (cond, 0), false)
4631       && rtx_equal_p (XEXP (cond, 1), true))
4632     return false;
4633   else if (true_code == NE && ! side_effects_p (cond)
4634            && rtx_equal_p (XEXP (cond, 0), true)
4635            && rtx_equal_p (XEXP (cond, 1), false))
4636     return true;
4637
4638   /* Look for cases where we have (abs x) or (neg (abs X)).  */
4639
4640   if (GET_MODE_CLASS (mode) == MODE_INT
4641       && GET_CODE (false) == NEG
4642       && rtx_equal_p (true, XEXP (false, 0))
4643       && comparison_p
4644       && rtx_equal_p (true, XEXP (cond, 0))
4645       && ! side_effects_p (true))
4646     switch (true_code)
4647       {
4648       case GT:
4649       case GE:
4650         return gen_unary (ABS, mode, mode, true);
4651       case LT:
4652       case LE:
4653         return gen_unary (NEG, mode, mode, gen_unary (ABS, mode, mode, true));
4654     default:
4655       break;
4656       }
4657
4658   /* Look for MIN or MAX.  */
4659
4660   if ((! FLOAT_MODE_P (mode) || flag_fast_math)
4661       && comparison_p
4662       && rtx_equal_p (XEXP (cond, 0), true)
4663       && rtx_equal_p (XEXP (cond, 1), false)
4664       && ! side_effects_p (cond))
4665     switch (true_code)
4666       {
4667       case GE:
4668       case GT:
4669         return gen_binary (SMAX, mode, true, false);
4670       case LE:
4671       case LT:
4672         return gen_binary (SMIN, mode, true, false);
4673       case GEU:
4674       case GTU:
4675         return gen_binary (UMAX, mode, true, false);
4676       case LEU:
4677       case LTU:
4678         return gen_binary (UMIN, mode, true, false);
4679       default:
4680         break;
4681       }
4682   
4683   /* If we have (if_then_else COND (OP Z C1) Z) and OP is an identity when its
4684      second operand is zero, this can be done as (OP Z (mult COND C2)) where
4685      C2 = C1 * STORE_FLAG_VALUE. Similarly if OP has an outer ZERO_EXTEND or
4686      SIGN_EXTEND as long as Z is already extended (so we don't destroy it).
4687      We can do this kind of thing in some cases when STORE_FLAG_VALUE is
4688      neither 1 or -1, but it isn't worth checking for.  */
4689
4690   if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
4691       && comparison_p && mode != VOIDmode && ! side_effects_p (x))
4692     {
4693       rtx t = make_compound_operation (true, SET);
4694       rtx f = make_compound_operation (false, SET);
4695       rtx cond_op0 = XEXP (cond, 0);
4696       rtx cond_op1 = XEXP (cond, 1);
4697       enum rtx_code op = NIL, extend_op = NIL;
4698       enum machine_mode m = mode;
4699       rtx z = 0, c1 = NULL_RTX;
4700
4701       if ((GET_CODE (t) == PLUS || GET_CODE (t) == MINUS
4702            || GET_CODE (t) == IOR || GET_CODE (t) == XOR
4703            || GET_CODE (t) == ASHIFT
4704            || GET_CODE (t) == LSHIFTRT || GET_CODE (t) == ASHIFTRT)
4705           && rtx_equal_p (XEXP (t, 0), f))
4706         c1 = XEXP (t, 1), op = GET_CODE (t), z = f;
4707
4708       /* If an identity-zero op is commutative, check whether there
4709          would be a match if we swapped the operands.  */
4710       else if ((GET_CODE (t) == PLUS || GET_CODE (t) == IOR
4711                 || GET_CODE (t) == XOR)
4712                && rtx_equal_p (XEXP (t, 1), f))
4713         c1 = XEXP (t, 0), op = GET_CODE (t), z = f;
4714       else if (GET_CODE (t) == SIGN_EXTEND
4715                && (GET_CODE (XEXP (t, 0)) == PLUS
4716                    || GET_CODE (XEXP (t, 0)) == MINUS
4717                    || GET_CODE (XEXP (t, 0)) == IOR
4718                    || GET_CODE (XEXP (t, 0)) == XOR
4719                    || GET_CODE (XEXP (t, 0)) == ASHIFT
4720                    || GET_CODE (XEXP (t, 0)) == LSHIFTRT
4721                    || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
4722                && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
4723                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4724                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4725                && (num_sign_bit_copies (f, GET_MODE (f))
4726                    > (GET_MODE_BITSIZE (mode)
4727                       - GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (t, 0), 0))))))
4728         {
4729           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4730           extend_op = SIGN_EXTEND;
4731           m = GET_MODE (XEXP (t, 0));
4732         }
4733       else if (GET_CODE (t) == SIGN_EXTEND
4734                && (GET_CODE (XEXP (t, 0)) == PLUS
4735                    || GET_CODE (XEXP (t, 0)) == IOR
4736                    || GET_CODE (XEXP (t, 0)) == XOR)
4737                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4738                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4739                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
4740                && (num_sign_bit_copies (f, GET_MODE (f))
4741                    > (GET_MODE_BITSIZE (mode)
4742                       - GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (t, 0), 1))))))
4743         {
4744           c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
4745           extend_op = SIGN_EXTEND;
4746           m = GET_MODE (XEXP (t, 0));
4747         }
4748       else if (GET_CODE (t) == ZERO_EXTEND
4749                && (GET_CODE (XEXP (t, 0)) == PLUS
4750                    || GET_CODE (XEXP (t, 0)) == MINUS
4751                    || GET_CODE (XEXP (t, 0)) == IOR
4752                    || GET_CODE (XEXP (t, 0)) == XOR
4753                    || GET_CODE (XEXP (t, 0)) == ASHIFT
4754                    || GET_CODE (XEXP (t, 0)) == LSHIFTRT
4755                    || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
4756                && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
4757                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4758                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4759                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4760                && ((nonzero_bits (f, GET_MODE (f))
4761                     & ~ GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 0))))
4762                    == 0))
4763         {
4764           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4765           extend_op = ZERO_EXTEND;
4766           m = GET_MODE (XEXP (t, 0));
4767         }
4768       else if (GET_CODE (t) == ZERO_EXTEND
4769                && (GET_CODE (XEXP (t, 0)) == PLUS
4770                    || GET_CODE (XEXP (t, 0)) == IOR
4771                    || GET_CODE (XEXP (t, 0)) == XOR)
4772                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4773                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4774                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4775                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
4776                && ((nonzero_bits (f, GET_MODE (f))
4777                     & ~ GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 1))))
4778                    == 0))
4779         {
4780           c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
4781           extend_op = ZERO_EXTEND;
4782           m = GET_MODE (XEXP (t, 0));
4783         }
4784       
4785       if (z)
4786         {
4787           temp = subst (gen_binary (true_code, m, cond_op0, cond_op1),
4788                         pc_rtx, pc_rtx, 0, 0);
4789           temp = gen_binary (MULT, m, temp,
4790                              gen_binary (MULT, m, c1, const_true_rtx));
4791           temp = subst (temp, pc_rtx, pc_rtx, 0, 0);
4792           temp = gen_binary (op, m, gen_lowpart_for_combine (m, z), temp);
4793
4794           if (extend_op != NIL)
4795             temp = gen_unary (extend_op, mode, m, temp);
4796
4797           return temp;
4798         }
4799     }
4800
4801   /* If we have (if_then_else (ne A 0) C1 0) and either A is known to be 0 or
4802      1 and C1 is a single bit or A is known to be 0 or -1 and C1 is the
4803      negation of a single bit, we can convert this operation to a shift.  We
4804      can actually do this more generally, but it doesn't seem worth it.  */
4805
4806   if (true_code == NE && XEXP (cond, 1) == const0_rtx
4807       && false == const0_rtx && GET_CODE (true) == CONST_INT
4808       && ((1 == nonzero_bits (XEXP (cond, 0), mode)
4809            && (i = exact_log2 (INTVAL (true))) >= 0)
4810           || ((num_sign_bit_copies (XEXP (cond, 0), mode)
4811                == GET_MODE_BITSIZE (mode))
4812               && (i = exact_log2 (- INTVAL (true))) >= 0)))
4813     return
4814       simplify_shift_const (NULL_RTX, ASHIFT, mode,
4815                             gen_lowpart_for_combine (mode, XEXP (cond, 0)), i);
4816
4817   return x;
4818 }
4819 \f
4820 /* Simplify X, a SET expression.  Return the new expression.  */
4821
4822 static rtx
4823 simplify_set (x)
4824      rtx x;
4825 {
4826   rtx src = SET_SRC (x);
4827   rtx dest = SET_DEST (x);
4828   enum machine_mode mode
4829     = GET_MODE (src) != VOIDmode ? GET_MODE (src) : GET_MODE (dest);
4830   rtx other_insn;
4831   rtx *cc_use;
4832
4833   /* (set (pc) (return)) gets written as (return).  */
4834   if (GET_CODE (dest) == PC && GET_CODE (src) == RETURN)
4835     return src;
4836
4837   /* Now that we know for sure which bits of SRC we are using, see if we can
4838      simplify the expression for the object knowing that we only need the
4839      low-order bits.  */
4840
4841   if (GET_MODE_CLASS (mode) == MODE_INT)
4842     {
4843       src = force_to_mode (src, mode, GET_MODE_MASK (mode), NULL_RTX, 0);
4844       SUBST (SET_SRC (x), src);
4845     }
4846
4847   /* If we are setting CC0 or if the source is a COMPARE, look for the use of
4848      the comparison result and try to simplify it unless we already have used
4849      undobuf.other_insn.  */
4850   if ((GET_CODE (src) == COMPARE
4851 #ifdef HAVE_cc0
4852        || dest == cc0_rtx
4853 #endif
4854        )
4855       && (cc_use = find_single_use (dest, subst_insn, &other_insn)) != 0
4856       && (undobuf.other_insn == 0 || other_insn == undobuf.other_insn)
4857       && GET_RTX_CLASS (GET_CODE (*cc_use)) == '<'
4858       && rtx_equal_p (XEXP (*cc_use, 0), dest))
4859     {
4860       enum rtx_code old_code = GET_CODE (*cc_use);
4861       enum rtx_code new_code;
4862       rtx op0, op1;
4863       int other_changed = 0;
4864       enum machine_mode compare_mode = GET_MODE (dest);
4865
4866       if (GET_CODE (src) == COMPARE)
4867         op0 = XEXP (src, 0), op1 = XEXP (src, 1);
4868       else
4869         op0 = src, op1 = const0_rtx;
4870
4871       /* Simplify our comparison, if possible.  */
4872       new_code = simplify_comparison (old_code, &op0, &op1);
4873
4874 #ifdef EXTRA_CC_MODES
4875       /* If this machine has CC modes other than CCmode, check to see if we
4876          need to use a different CC mode here.  */
4877       compare_mode = SELECT_CC_MODE (new_code, op0, op1);
4878 #endif /* EXTRA_CC_MODES */
4879
4880 #if !defined (HAVE_cc0) && defined (EXTRA_CC_MODES)
4881       /* If the mode changed, we have to change SET_DEST, the mode in the
4882          compare, and the mode in the place SET_DEST is used.  If SET_DEST is
4883          a hard register, just build new versions with the proper mode.  If it
4884          is a pseudo, we lose unless it is only time we set the pseudo, in
4885          which case we can safely change its mode.  */
4886       if (compare_mode != GET_MODE (dest))
4887         {
4888           unsigned int regno = REGNO (dest);
4889           rtx new_dest = gen_rtx_REG (compare_mode, regno);
4890
4891           if (regno < FIRST_PSEUDO_REGISTER
4892               || (REG_N_SETS (regno) == 1 && ! REG_USERVAR_P (dest)))
4893             {
4894               if (regno >= FIRST_PSEUDO_REGISTER)
4895                 SUBST (regno_reg_rtx[regno], new_dest);
4896
4897               SUBST (SET_DEST (x), new_dest);
4898               SUBST (XEXP (*cc_use, 0), new_dest);
4899               other_changed = 1;
4900
4901               dest = new_dest;
4902             }
4903         }
4904 #endif
4905
4906       /* If the code changed, we have to build a new comparison in
4907          undobuf.other_insn.  */
4908       if (new_code != old_code)
4909         {
4910           unsigned HOST_WIDE_INT mask;
4911
4912           SUBST (*cc_use, gen_rtx_combine (new_code, GET_MODE (*cc_use),
4913                                            dest, const0_rtx));
4914
4915           /* If the only change we made was to change an EQ into an NE or
4916              vice versa, OP0 has only one bit that might be nonzero, and OP1
4917              is zero, check if changing the user of the condition code will
4918              produce a valid insn.  If it won't, we can keep the original code
4919              in that insn by surrounding our operation with an XOR.  */
4920
4921           if (((old_code == NE && new_code == EQ)
4922                || (old_code == EQ && new_code == NE))
4923               && ! other_changed && op1 == const0_rtx
4924               && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
4925               && exact_log2 (mask = nonzero_bits (op0, GET_MODE (op0))) >= 0)
4926             {
4927               rtx pat = PATTERN (other_insn), note = 0;
4928
4929               if ((recog_for_combine (&pat, other_insn, &note) < 0
4930                    && ! check_asm_operands (pat)))
4931                 {
4932                   PUT_CODE (*cc_use, old_code);
4933                   other_insn = 0;
4934
4935                   op0 = gen_binary (XOR, GET_MODE (op0), op0, GEN_INT (mask));
4936                 }
4937             }
4938
4939           other_changed = 1;
4940         }
4941
4942       if (other_changed)
4943         undobuf.other_insn = other_insn;
4944
4945 #ifdef HAVE_cc0
4946       /* If we are now comparing against zero, change our source if
4947          needed.  If we do not use cc0, we always have a COMPARE.  */
4948       if (op1 == const0_rtx && dest == cc0_rtx)
4949         {
4950           SUBST (SET_SRC (x), op0);
4951           src = op0;
4952         }
4953       else
4954 #endif
4955
4956       /* Otherwise, if we didn't previously have a COMPARE in the
4957          correct mode, we need one.  */
4958       if (GET_CODE (src) != COMPARE || GET_MODE (src) != compare_mode)
4959         {
4960           SUBST (SET_SRC (x),
4961                  gen_rtx_combine (COMPARE, compare_mode, op0, op1));
4962           src = SET_SRC (x);
4963         }
4964       else
4965         {
4966           /* Otherwise, update the COMPARE if needed.  */
4967           SUBST (XEXP (src, 0), op0);
4968           SUBST (XEXP (src, 1), op1);
4969         }
4970     }
4971   else
4972     {
4973       /* Get SET_SRC in a form where we have placed back any
4974          compound expressions.  Then do the checks below.  */
4975       src = make_compound_operation (src, SET);
4976       SUBST (SET_SRC (x), src);
4977     }
4978
4979   /* If we have (set x (subreg:m1 (op:m2 ...) 0)) with OP being some operation,
4980      and X being a REG or (subreg (reg)), we may be able to convert this to
4981      (set (subreg:m2 x) (op)). 
4982
4983      We can always do this if M1 is narrower than M2 because that means that
4984      we only care about the low bits of the result.
4985
4986      However, on machines without WORD_REGISTER_OPERATIONS defined, we cannot
4987      perform a narrower operation than requested since the high-order bits will
4988      be undefined.  On machine where it is defined, this transformation is safe
4989      as long as M1 and M2 have the same number of words.  */
4990  
4991   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
4992       && GET_RTX_CLASS (GET_CODE (SUBREG_REG (src))) != 'o'
4993       && (((GET_MODE_SIZE (GET_MODE (src)) + (UNITS_PER_WORD - 1))
4994            / UNITS_PER_WORD)
4995           == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))
4996                + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))
4997 #ifndef WORD_REGISTER_OPERATIONS
4998       && (GET_MODE_SIZE (GET_MODE (src))
4999           < GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5000 #endif
5001 #ifdef CLASS_CANNOT_CHANGE_SIZE
5002       && ! (GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER
5003             && (TEST_HARD_REG_BIT
5004                 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE],
5005                  REGNO (dest)))
5006             && (GET_MODE_SIZE (GET_MODE (src))
5007                 != GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))))
5008 #endif                            
5009       && (GET_CODE (dest) == REG
5010           || (GET_CODE (dest) == SUBREG
5011               && GET_CODE (SUBREG_REG (dest)) == REG)))
5012     {
5013       SUBST (SET_DEST (x),
5014              gen_lowpart_for_combine (GET_MODE (SUBREG_REG (src)),
5015                                       dest));
5016       SUBST (SET_SRC (x), SUBREG_REG (src));
5017
5018       src = SET_SRC (x), dest = SET_DEST (x);
5019     }
5020
5021 #ifdef LOAD_EXTEND_OP
5022   /* If we have (set FOO (subreg:M (mem:N BAR) 0)) with M wider than N, this
5023      would require a paradoxical subreg.  Replace the subreg with a
5024      zero_extend to avoid the reload that would otherwise be required.  */
5025
5026   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
5027       && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))) != NIL
5028       && SUBREG_WORD (src) == 0
5029       && (GET_MODE_SIZE (GET_MODE (src))
5030           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5031       && GET_CODE (SUBREG_REG (src)) == MEM)
5032     {
5033       SUBST (SET_SRC (x),
5034              gen_rtx_combine (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))),
5035                               GET_MODE (src), XEXP (src, 0)));
5036
5037       src = SET_SRC (x);
5038     }
5039 #endif
5040
5041   /* If we don't have a conditional move, SET_SRC is an IF_THEN_ELSE, and we
5042      are comparing an item known to be 0 or -1 against 0, use a logical
5043      operation instead. Check for one of the arms being an IOR of the other
5044      arm with some value.  We compute three terms to be IOR'ed together.  In
5045      practice, at most two will be nonzero.  Then we do the IOR's.  */
5046
5047   if (GET_CODE (dest) != PC
5048       && GET_CODE (src) == IF_THEN_ELSE
5049       && GET_MODE_CLASS (GET_MODE (src)) == MODE_INT
5050       && (GET_CODE (XEXP (src, 0)) == EQ || GET_CODE (XEXP (src, 0)) == NE)
5051       && XEXP (XEXP (src, 0), 1) == const0_rtx
5052       && GET_MODE (src) == GET_MODE (XEXP (XEXP (src, 0), 0))
5053 #ifdef HAVE_conditional_move
5054       && ! can_conditionally_move_p (GET_MODE (src))
5055 #endif
5056       && (num_sign_bit_copies (XEXP (XEXP (src, 0), 0),
5057                                GET_MODE (XEXP (XEXP (src, 0), 0)))
5058           == GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (src, 0), 0))))
5059       && ! side_effects_p (src))
5060     {
5061       rtx true = (GET_CODE (XEXP (src, 0)) == NE
5062                       ? XEXP (src, 1) : XEXP (src, 2));
5063       rtx false = (GET_CODE (XEXP (src, 0)) == NE
5064                    ? XEXP (src, 2) : XEXP (src, 1));
5065       rtx term1 = const0_rtx, term2, term3;
5066
5067       if (GET_CODE (true) == IOR && rtx_equal_p (XEXP (true, 0), false))
5068         term1 = false, true = XEXP (true, 1), false = const0_rtx;
5069       else if (GET_CODE (true) == IOR
5070                && rtx_equal_p (XEXP (true, 1), false))
5071         term1 = false, true = XEXP (true, 0), false = const0_rtx;
5072       else if (GET_CODE (false) == IOR
5073                && rtx_equal_p (XEXP (false, 0), true))
5074         term1 = true, false = XEXP (false, 1), true = const0_rtx;
5075       else if (GET_CODE (false) == IOR
5076                && rtx_equal_p (XEXP (false, 1), true))
5077         term1 = true, false = XEXP (false, 0), true = const0_rtx;
5078
5079       term2 = gen_binary (AND, GET_MODE (src), XEXP (XEXP (src, 0), 0), true);
5080       term3 = gen_binary (AND, GET_MODE (src),
5081                           gen_unary (NOT, GET_MODE (src), GET_MODE (src),
5082                                      XEXP (XEXP (src, 0), 0)),
5083                           false);
5084
5085       SUBST (SET_SRC (x),
5086              gen_binary (IOR, GET_MODE (src),
5087                          gen_binary (IOR, GET_MODE (src), term1, term2),
5088                          term3));
5089
5090       src = SET_SRC (x);
5091     }
5092
5093 #ifdef HAVE_conditional_arithmetic
5094   /* If we have conditional arithmetic and the operand of a SET is
5095      a conditional expression, replace this with an IF_THEN_ELSE.
5096      We can either have a conditional expression or a MULT of that expression
5097      with a constant.  */
5098   if ((GET_RTX_CLASS (GET_CODE (src)) == '1'
5099        || GET_RTX_CLASS (GET_CODE (src)) == '2'
5100        || GET_RTX_CLASS (GET_CODE (src)) == 'c')
5101       && (GET_RTX_CLASS (GET_CODE (XEXP (src, 0))) == '<'
5102           || (GET_CODE (XEXP (src, 0)) == MULT
5103               && GET_RTX_CLASS (GET_CODE (XEXP (XEXP (src, 0), 0))) == '<'
5104               && GET_CODE (XEXP (XEXP (src, 0), 1)) == CONST_INT)))
5105     {
5106       rtx cond = XEXP (src, 0);
5107       rtx true_val = const1_rtx;
5108       rtx false_arm, true_arm;
5109
5110       if (GET_CODE (cond) == MULT)
5111         {
5112           true_val = XEXP (cond, 1);
5113           cond = XEXP (cond, 0);
5114         }
5115
5116       if (GET_RTX_CLASS (GET_CODE (src)) == '1')
5117         {
5118           true_arm = gen_unary (GET_CODE (src), GET_MODE (src),
5119                                 GET_MODE (XEXP (src, 0)), true_val);
5120           false_arm = gen_unary (GET_CODE (src), GET_MODE (src),
5121                                  GET_MODE (XEXP (src, 0)), const0_rtx);
5122         }
5123       else
5124         {
5125           true_arm = gen_binary (GET_CODE (src), GET_MODE (src),
5126                                  true_val, XEXP (src, 1));
5127           false_arm = gen_binary (GET_CODE (src), GET_MODE (src),
5128                                   const0_rtx, XEXP (src, 1));
5129         }
5130
5131       /* Canonicalize if true_arm is the simpler one.  */
5132       if (GET_RTX_CLASS (GET_CODE (true_arm)) == 'o'
5133           && GET_RTX_CLASS (GET_CODE (false_arm)) != 'o'
5134           && reversible_comparison_p (cond))
5135         {
5136           rtx temp = true_arm;
5137
5138           true_arm = false_arm;
5139           false_arm = temp;
5140
5141           cond = gen_rtx_combine (reverse_condition (GET_CODE (cond)),
5142                                   GET_MODE (cond), XEXP (cond, 0),
5143                                   XEXP (cond, 1));
5144         }
5145
5146       src = gen_rtx_combine (IF_THEN_ELSE, GET_MODE (src),
5147                              gen_rtx_combine (GET_CODE (cond), VOIDmode,
5148                                               XEXP (cond, 0),
5149                                               XEXP (cond, 1)),
5150                              true_arm, false_arm);
5151       SUBST (SET_SRC (x), src);
5152     }
5153 #endif
5154
5155   /* If either SRC or DEST is a CLOBBER of (const_int 0), make this
5156      whole thing fail.  */
5157   if (GET_CODE (src) == CLOBBER && XEXP (src, 0) == const0_rtx)
5158     return src;
5159   else if (GET_CODE (dest) == CLOBBER && XEXP (dest, 0) == const0_rtx)
5160     return dest;
5161   else
5162     /* Convert this into a field assignment operation, if possible.  */
5163     return make_field_assignment (x);
5164 }
5165 \f
5166 /* Simplify, X, and AND, IOR, or XOR operation, and return the simplified
5167    result.  LAST is nonzero if this is the last retry.  */
5168
5169 static rtx
5170 simplify_logical (x, last)
5171      rtx x;
5172      int last;
5173 {
5174   enum machine_mode mode = GET_MODE (x);
5175   rtx op0 = XEXP (x, 0);
5176   rtx op1 = XEXP (x, 1);
5177
5178   switch (GET_CODE (x))
5179     {
5180     case AND:
5181       /* Convert (A ^ B) & A to A & (~ B) since the latter is often a single
5182          insn (and may simplify more).  */
5183       if (GET_CODE (op0) == XOR
5184           && rtx_equal_p (XEXP (op0, 0), op1)
5185           && ! side_effects_p (op1))
5186         x = gen_binary (AND, mode,
5187                         gen_unary (NOT, mode, mode, XEXP (op0, 1)), op1);
5188
5189       if (GET_CODE (op0) == XOR
5190           && rtx_equal_p (XEXP (op0, 1), op1)
5191           && ! side_effects_p (op1))
5192         x = gen_binary (AND, mode,
5193                         gen_unary (NOT, mode, mode, XEXP (op0, 0)), op1);
5194
5195       /* Similarly for (~ (A ^ B)) & A.  */
5196       if (GET_CODE (op0) == NOT
5197           && GET_CODE (XEXP (op0, 0)) == XOR
5198           && rtx_equal_p (XEXP (XEXP (op0, 0), 0), op1)
5199           && ! side_effects_p (op1))
5200         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 1), op1);
5201
5202       if (GET_CODE (op0) == NOT
5203           && GET_CODE (XEXP (op0, 0)) == XOR
5204           && rtx_equal_p (XEXP (XEXP (op0, 0), 1), op1)
5205           && ! side_effects_p (op1))
5206         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 0), op1);
5207
5208       /* We can call simplify_and_const_int only if we don't lose
5209          any (sign) bits when converting INTVAL (op1) to
5210          "unsigned HOST_WIDE_INT".  */
5211       if (GET_CODE (op1) == CONST_INT
5212           && (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5213               || INTVAL (op1) > 0))
5214         {
5215           x = simplify_and_const_int (x, mode, op0, INTVAL (op1));
5216
5217           /* If we have (ior (and (X C1) C2)) and the next restart would be
5218              the last, simplify this by making C1 as small as possible
5219              and then exit.  */
5220           if (last
5221               && GET_CODE (x) == IOR && GET_CODE (op0) == AND
5222               && GET_CODE (XEXP (op0, 1)) == CONST_INT
5223               && GET_CODE (op1) == CONST_INT)
5224             return gen_binary (IOR, mode,
5225                                gen_binary (AND, mode, XEXP (op0, 0),
5226                                            GEN_INT (INTVAL (XEXP (op0, 1))
5227                                                     & ~ INTVAL (op1))), op1);
5228
5229           if (GET_CODE (x) != AND)
5230             return x;
5231
5232           if (GET_RTX_CLASS (GET_CODE (x)) == 'c' 
5233               || GET_RTX_CLASS (GET_CODE (x)) == '2')
5234             op0 = XEXP (x, 0), op1 = XEXP (x, 1);
5235         }
5236
5237       /* Convert (A | B) & A to A.  */
5238       if (GET_CODE (op0) == IOR
5239           && (rtx_equal_p (XEXP (op0, 0), op1)
5240               || rtx_equal_p (XEXP (op0, 1), op1))
5241           && ! side_effects_p (XEXP (op0, 0))
5242           && ! side_effects_p (XEXP (op0, 1)))
5243         return op1;
5244
5245       /* In the following group of tests (and those in case IOR below),
5246          we start with some combination of logical operations and apply
5247          the distributive law followed by the inverse distributive law.
5248          Most of the time, this results in no change.  However, if some of
5249          the operands are the same or inverses of each other, simplifications
5250          will result.
5251
5252          For example, (and (ior A B) (not B)) can occur as the result of
5253          expanding a bit field assignment.  When we apply the distributive
5254          law to this, we get (ior (and (A (not B))) (and (B (not B)))),
5255          which then simplifies to (and (A (not B))). 
5256
5257          If we have (and (ior A B) C), apply the distributive law and then
5258          the inverse distributive law to see if things simplify.  */
5259
5260       if (GET_CODE (op0) == IOR || GET_CODE (op0) == XOR)
5261         {
5262           x = apply_distributive_law
5263             (gen_binary (GET_CODE (op0), mode,
5264                          gen_binary (AND, mode, XEXP (op0, 0), op1),
5265                          gen_binary (AND, mode, XEXP (op0, 1),
5266                                      copy_rtx (op1))));
5267           if (GET_CODE (x) != AND)
5268             return x;
5269         }
5270
5271       if (GET_CODE (op1) == IOR || GET_CODE (op1) == XOR)
5272         return apply_distributive_law
5273           (gen_binary (GET_CODE (op1), mode,
5274                        gen_binary (AND, mode, XEXP (op1, 0), op0),
5275                        gen_binary (AND, mode, XEXP (op1, 1),
5276                                    copy_rtx (op0))));
5277
5278       /* Similarly, taking advantage of the fact that
5279          (and (not A) (xor B C)) == (xor (ior A B) (ior A C))  */
5280
5281       if (GET_CODE (op0) == NOT && GET_CODE (op1) == XOR)
5282         return apply_distributive_law
5283           (gen_binary (XOR, mode,
5284                        gen_binary (IOR, mode, XEXP (op0, 0), XEXP (op1, 0)),
5285                        gen_binary (IOR, mode, copy_rtx (XEXP (op0, 0)),
5286                                    XEXP (op1, 1))));
5287                                                             
5288       else if (GET_CODE (op1) == NOT && GET_CODE (op0) == XOR)
5289         return apply_distributive_law
5290           (gen_binary (XOR, mode,
5291                        gen_binary (IOR, mode, XEXP (op1, 0), XEXP (op0, 0)),
5292                        gen_binary (IOR, mode, copy_rtx (XEXP (op1, 0)), XEXP (op0, 1))));
5293       break;
5294
5295     case IOR:
5296       /* (ior A C) is C if all bits of A that might be nonzero are on in C.  */
5297       if (GET_CODE (op1) == CONST_INT
5298           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5299           && (nonzero_bits (op0, mode) & ~ INTVAL (op1)) == 0)
5300         return op1;
5301
5302       /* Convert (A & B) | A to A.  */
5303       if (GET_CODE (op0) == AND
5304           && (rtx_equal_p (XEXP (op0, 0), op1)
5305               || rtx_equal_p (XEXP (op0, 1), op1))
5306           && ! side_effects_p (XEXP (op0, 0))
5307           && ! side_effects_p (XEXP (op0, 1)))
5308         return op1;
5309
5310       /* If we have (ior (and A B) C), apply the distributive law and then
5311          the inverse distributive law to see if things simplify.  */
5312
5313       if (GET_CODE (op0) == AND)
5314         {
5315           x = apply_distributive_law
5316             (gen_binary (AND, mode,
5317                          gen_binary (IOR, mode, XEXP (op0, 0), op1),
5318                          gen_binary (IOR, mode, XEXP (op0, 1),
5319                                      copy_rtx (op1))));
5320
5321           if (GET_CODE (x) != IOR)
5322             return x;
5323         }
5324
5325       if (GET_CODE (op1) == AND)
5326         {
5327           x = apply_distributive_law
5328             (gen_binary (AND, mode,
5329                          gen_binary (IOR, mode, XEXP (op1, 0), op0),
5330                          gen_binary (IOR, mode, XEXP (op1, 1),
5331                                      copy_rtx (op0))));
5332
5333           if (GET_CODE (x) != IOR)
5334             return x;
5335         }
5336
5337       /* Convert (ior (ashift A CX) (lshiftrt A CY)) where CX+CY equals the
5338          mode size to (rotate A CX).  */
5339
5340       if (((GET_CODE (op0) == ASHIFT && GET_CODE (op1) == LSHIFTRT)
5341            || (GET_CODE (op1) == ASHIFT && GET_CODE (op0) == LSHIFTRT))
5342           && rtx_equal_p (XEXP (op0, 0), XEXP (op1, 0))
5343           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5344           && GET_CODE (XEXP (op1, 1)) == CONST_INT
5345           && (INTVAL (XEXP (op0, 1)) + INTVAL (XEXP (op1, 1))
5346               == GET_MODE_BITSIZE (mode)))
5347         return gen_rtx_ROTATE (mode, XEXP (op0, 0),
5348                                (GET_CODE (op0) == ASHIFT
5349                                 ? XEXP (op0, 1) : XEXP (op1, 1)));
5350
5351       /* If OP0 is (ashiftrt (plus ...) C), it might actually be
5352          a (sign_extend (plus ...)).  If so, OP1 is a CONST_INT, and the PLUS
5353          does not affect any of the bits in OP1, it can really be done
5354          as a PLUS and we can associate.  We do this by seeing if OP1
5355          can be safely shifted left C bits.  */
5356       if (GET_CODE (op1) == CONST_INT && GET_CODE (op0) == ASHIFTRT
5357           && GET_CODE (XEXP (op0, 0)) == PLUS
5358           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
5359           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5360           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT)
5361         {
5362           int count = INTVAL (XEXP (op0, 1));
5363           HOST_WIDE_INT mask = INTVAL (op1) << count;
5364
5365           if (mask >> count == INTVAL (op1)
5366               && (mask & nonzero_bits (XEXP (op0, 0), mode)) == 0)
5367             {
5368               SUBST (XEXP (XEXP (op0, 0), 1),
5369                      GEN_INT (INTVAL (XEXP (XEXP (op0, 0), 1)) | mask));
5370               return op0;
5371             }
5372         }
5373       break;
5374
5375     case XOR:
5376       /* If we are XORing two things that have no bits in common,
5377          convert them into an IOR.  This helps to detect rotation encoded
5378          using those methods and possibly other simplifications.  */
5379
5380       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5381           && (nonzero_bits (op0, mode)
5382               & nonzero_bits (op1, mode)) == 0)
5383         return (gen_binary (IOR, mode, op0, op1));
5384
5385       /* Convert (XOR (NOT x) (NOT y)) to (XOR x y).
5386          Also convert (XOR (NOT x) y) to (NOT (XOR x y)), similarly for
5387          (NOT y).  */
5388       {
5389         int num_negated = 0;
5390
5391         if (GET_CODE (op0) == NOT)
5392           num_negated++, op0 = XEXP (op0, 0);
5393         if (GET_CODE (op1) == NOT)
5394           num_negated++, op1 = XEXP (op1, 0);
5395
5396         if (num_negated == 2)
5397           {
5398             SUBST (XEXP (x, 0), op0);
5399             SUBST (XEXP (x, 1), op1);
5400           }
5401         else if (num_negated == 1)
5402           return gen_unary (NOT, mode, mode, gen_binary (XOR, mode, op0, op1));
5403       }
5404
5405       /* Convert (xor (and A B) B) to (and (not A) B).  The latter may
5406          correspond to a machine insn or result in further simplifications
5407          if B is a constant.  */
5408
5409       if (GET_CODE (op0) == AND
5410           && rtx_equal_p (XEXP (op0, 1), op1)
5411           && ! side_effects_p (op1))
5412         return gen_binary (AND, mode,
5413                            gen_unary (NOT, mode, mode, XEXP (op0, 0)),
5414                            op1);
5415
5416       else if (GET_CODE (op0) == AND
5417                && rtx_equal_p (XEXP (op0, 0), op1)
5418                && ! side_effects_p (op1))
5419         return gen_binary (AND, mode,
5420                            gen_unary (NOT, mode, mode, XEXP (op0, 1)),
5421                            op1);
5422
5423       /* (xor (comparison foo bar) (const_int 1)) can become the reversed
5424          comparison if STORE_FLAG_VALUE is 1.  */
5425       if (STORE_FLAG_VALUE == 1
5426           && op1 == const1_rtx
5427           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5428           && reversible_comparison_p (op0))
5429         return gen_rtx_combine (reverse_condition (GET_CODE (op0)),
5430                                 mode, XEXP (op0, 0), XEXP (op0, 1));
5431
5432       /* (lshiftrt foo C) where C is the number of bits in FOO minus 1
5433          is (lt foo (const_int 0)), so we can perform the above
5434          simplification if STORE_FLAG_VALUE is 1.  */
5435
5436       if (STORE_FLAG_VALUE == 1
5437           && op1 == const1_rtx
5438           && GET_CODE (op0) == LSHIFTRT
5439           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5440           && INTVAL (XEXP (op0, 1)) == GET_MODE_BITSIZE (mode) - 1)
5441         return gen_rtx_combine (GE, mode, XEXP (op0, 0), const0_rtx);
5442
5443       /* (xor (comparison foo bar) (const_int sign-bit))
5444          when STORE_FLAG_VALUE is the sign bit.  */
5445       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5446           && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
5447               == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (mode) - 1))
5448           && op1 == const_true_rtx
5449           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5450           && reversible_comparison_p (op0))
5451         return gen_rtx_combine (reverse_condition (GET_CODE (op0)),
5452                                 mode, XEXP (op0, 0), XEXP (op0, 1));
5453
5454       break;
5455
5456     default:
5457       abort ();
5458     }
5459
5460   return x;
5461 }
5462 \f
5463 /* We consider ZERO_EXTRACT, SIGN_EXTRACT, and SIGN_EXTEND as "compound
5464    operations" because they can be replaced with two more basic operations.
5465    ZERO_EXTEND is also considered "compound" because it can be replaced with
5466    an AND operation, which is simpler, though only one operation.
5467
5468    The function expand_compound_operation is called with an rtx expression
5469    and will convert it to the appropriate shifts and AND operations, 
5470    simplifying at each stage.
5471
5472    The function make_compound_operation is called to convert an expression
5473    consisting of shifts and ANDs into the equivalent compound expression.
5474    It is the inverse of this function, loosely speaking.  */
5475
5476 static rtx
5477 expand_compound_operation (x)
5478      rtx x;
5479 {
5480   unsigned HOST_WIDE_INT pos = 0, len;
5481   int unsignedp = 0;
5482   unsigned int modewidth;
5483   rtx tem;
5484
5485   switch (GET_CODE (x))
5486     {
5487     case ZERO_EXTEND:
5488       unsignedp = 1;
5489     case SIGN_EXTEND:
5490       /* We can't necessarily use a const_int for a multiword mode;
5491          it depends on implicitly extending the value.
5492          Since we don't know the right way to extend it,
5493          we can't tell whether the implicit way is right.
5494
5495          Even for a mode that is no wider than a const_int,
5496          we can't win, because we need to sign extend one of its bits through
5497          the rest of it, and we don't know which bit.  */
5498       if (GET_CODE (XEXP (x, 0)) == CONST_INT)
5499         return x;
5500
5501       /* Return if (subreg:MODE FROM 0) is not a safe replacement for
5502          (zero_extend:MODE FROM) or (sign_extend:MODE FROM).  It is for any MEM
5503          because (SUBREG (MEM...)) is guaranteed to cause the MEM to be
5504          reloaded. If not for that, MEM's would very rarely be safe.
5505
5506          Reject MODEs bigger than a word, because we might not be able
5507          to reference a two-register group starting with an arbitrary register
5508          (and currently gen_lowpart might crash for a SUBREG).  */
5509   
5510       if (GET_MODE_SIZE (GET_MODE (XEXP (x, 0))) > UNITS_PER_WORD)
5511         return x;
5512
5513       len = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)));
5514       /* If the inner object has VOIDmode (the only way this can happen
5515          is if it is a ASM_OPERANDS), we can't do anything since we don't
5516          know how much masking to do.  */
5517       if (len == 0)
5518         return x;
5519
5520       break;
5521
5522     case ZERO_EXTRACT:
5523       unsignedp = 1;
5524     case SIGN_EXTRACT:
5525       /* If the operand is a CLOBBER, just return it.  */
5526       if (GET_CODE (XEXP (x, 0)) == CLOBBER)
5527         return XEXP (x, 0);
5528
5529       if (GET_CODE (XEXP (x, 1)) != CONST_INT
5530           || GET_CODE (XEXP (x, 2)) != CONST_INT
5531           || GET_MODE (XEXP (x, 0)) == VOIDmode)
5532         return x;
5533
5534       len = INTVAL (XEXP (x, 1));
5535       pos = INTVAL (XEXP (x, 2));
5536
5537       /* If this goes outside the object being extracted, replace the object
5538          with a (use (mem ...)) construct that only combine understands
5539          and is used only for this purpose.  */
5540       if (len + pos > GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
5541         SUBST (XEXP (x, 0), gen_rtx_USE (GET_MODE (x), XEXP (x, 0)));
5542
5543       if (BITS_BIG_ENDIAN)
5544         pos = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - len - pos;
5545
5546       break;
5547
5548     default:
5549       return x;
5550     }
5551   /* Convert sign extension to zero extension, if we know that the high
5552      bit is not set, as this is easier to optimize.  It will be converted
5553      back to cheaper alternative in make_extraction.  */
5554   if (GET_CODE (x) == SIGN_EXTEND
5555       && (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5556           && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
5557                 & ~ (((unsigned HOST_WIDE_INT)
5558                       GET_MODE_MASK (GET_MODE (XEXP (x, 0))))
5559                      >> 1))
5560                == 0)))
5561     {
5562       rtx temp = gen_rtx_ZERO_EXTEND (GET_MODE (x), XEXP (x, 0));
5563       return expand_compound_operation (temp);
5564     }
5565
5566   /* We can optimize some special cases of ZERO_EXTEND.  */
5567   if (GET_CODE (x) == ZERO_EXTEND)
5568     {
5569       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI if we
5570          know that the last value didn't have any inappropriate bits
5571          set.  */
5572       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5573           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5574           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5575           && (nonzero_bits (XEXP (XEXP (x, 0), 0), GET_MODE (x))
5576               & ~ GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5577         return XEXP (XEXP (x, 0), 0);
5578
5579       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5580       if (GET_CODE (XEXP (x, 0)) == SUBREG
5581           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5582           && subreg_lowpart_p (XEXP (x, 0))
5583           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5584           && (nonzero_bits (SUBREG_REG (XEXP (x, 0)), GET_MODE (x))
5585               & ~ GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5586         return SUBREG_REG (XEXP (x, 0));
5587
5588       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI when foo
5589          is a comparison and STORE_FLAG_VALUE permits.  This is like
5590          the first case, but it works even when GET_MODE (x) is larger
5591          than HOST_WIDE_INT.  */
5592       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5593           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5594           && GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) == '<'
5595           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5596               <= HOST_BITS_PER_WIDE_INT)
5597           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5598               & ~ GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5599         return XEXP (XEXP (x, 0), 0);
5600
5601       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5602       if (GET_CODE (XEXP (x, 0)) == SUBREG
5603           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5604           && subreg_lowpart_p (XEXP (x, 0))
5605           && GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0)))) == '<'
5606           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5607               <= HOST_BITS_PER_WIDE_INT)
5608           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5609               & ~ GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5610         return SUBREG_REG (XEXP (x, 0));
5611
5612     }
5613
5614   /* If we reach here, we want to return a pair of shifts.  The inner
5615      shift is a left shift of BITSIZE - POS - LEN bits.  The outer
5616      shift is a right shift of BITSIZE - LEN bits.  It is arithmetic or
5617      logical depending on the value of UNSIGNEDP.
5618
5619      If this was a ZERO_EXTEND or ZERO_EXTRACT, this pair of shifts will be
5620      converted into an AND of a shift.
5621
5622      We must check for the case where the left shift would have a negative
5623      count.  This can happen in a case like (x >> 31) & 255 on machines
5624      that can't shift by a constant.  On those machines, we would first
5625      combine the shift with the AND to produce a variable-position 
5626      extraction.  Then the constant of 31 would be substituted in to produce
5627      a such a position.  */
5628
5629   modewidth = GET_MODE_BITSIZE (GET_MODE (x));
5630   if (modewidth + len >= pos)
5631     tem = simplify_shift_const (NULL_RTX, unsignedp ? LSHIFTRT : ASHIFTRT,
5632                                 GET_MODE (x),
5633                                 simplify_shift_const (NULL_RTX, ASHIFT,
5634                                                       GET_MODE (x),
5635                                                       XEXP (x, 0),
5636                                                       modewidth - pos - len),
5637                                 modewidth - len);
5638
5639   else if (unsignedp && len < HOST_BITS_PER_WIDE_INT)
5640     tem = simplify_and_const_int (NULL_RTX, GET_MODE (x),
5641                                   simplify_shift_const (NULL_RTX, LSHIFTRT,
5642                                                         GET_MODE (x),
5643                                                         XEXP (x, 0), pos),
5644                                   ((HOST_WIDE_INT) 1 << len) - 1);
5645   else
5646     /* Any other cases we can't handle.  */
5647     return x;
5648     
5649
5650   /* If we couldn't do this for some reason, return the original
5651      expression.  */
5652   if (GET_CODE (tem) == CLOBBER)
5653     return x;
5654
5655   return tem;
5656 }
5657 \f
5658 /* X is a SET which contains an assignment of one object into
5659    a part of another (such as a bit-field assignment, STRICT_LOW_PART,
5660    or certain SUBREGS). If possible, convert it into a series of
5661    logical operations.
5662
5663    We half-heartedly support variable positions, but do not at all
5664    support variable lengths.  */
5665
5666 static rtx
5667 expand_field_assignment (x)
5668      rtx x;
5669 {
5670   rtx inner;
5671   rtx pos;                      /* Always counts from low bit.  */
5672   int len;
5673   rtx mask;
5674   enum machine_mode compute_mode;
5675
5676   /* Loop until we find something we can't simplify.  */
5677   while (1)
5678     {
5679       if (GET_CODE (SET_DEST (x)) == STRICT_LOW_PART
5680           && GET_CODE (XEXP (SET_DEST (x), 0)) == SUBREG)
5681         {
5682           inner = SUBREG_REG (XEXP (SET_DEST (x), 0));
5683           len = GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)));
5684           pos = GEN_INT (BITS_PER_WORD * SUBREG_WORD (XEXP (SET_DEST (x), 0)));
5685         }
5686       else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
5687                && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT)
5688         {
5689           inner = XEXP (SET_DEST (x), 0);
5690           len = INTVAL (XEXP (SET_DEST (x), 1));
5691           pos = XEXP (SET_DEST (x), 2);
5692
5693           /* If the position is constant and spans the width of INNER,
5694              surround INNER  with a USE to indicate this.  */
5695           if (GET_CODE (pos) == CONST_INT
5696               && INTVAL (pos) + len > GET_MODE_BITSIZE (GET_MODE (inner)))
5697             inner = gen_rtx_USE (GET_MODE (SET_DEST (x)), inner);
5698
5699           if (BITS_BIG_ENDIAN)
5700             {
5701               if (GET_CODE (pos) == CONST_INT)
5702                 pos = GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner)) - len
5703                                - INTVAL (pos));
5704               else if (GET_CODE (pos) == MINUS
5705                        && GET_CODE (XEXP (pos, 1)) == CONST_INT
5706                        && (INTVAL (XEXP (pos, 1))
5707                            == GET_MODE_BITSIZE (GET_MODE (inner)) - len))
5708                 /* If position is ADJUST - X, new position is X.  */
5709                 pos = XEXP (pos, 0);
5710               else
5711                 pos = gen_binary (MINUS, GET_MODE (pos),
5712                                   GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner))
5713                                            - len),
5714                                   pos);
5715             }
5716         }
5717
5718       /* A SUBREG between two modes that occupy the same numbers of words
5719          can be done by moving the SUBREG to the source.  */
5720       else if (GET_CODE (SET_DEST (x)) == SUBREG
5721                /* We need SUBREGs to compute nonzero_bits properly.  */
5722                && nonzero_sign_valid
5723                && (((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
5724                      + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
5725                    == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
5726                         + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
5727         {
5728           x = gen_rtx_SET (VOIDmode, SUBREG_REG (SET_DEST (x)),
5729                            gen_lowpart_for_combine
5730                            (GET_MODE (SUBREG_REG (SET_DEST (x))),
5731                             SET_SRC (x)));
5732           continue;
5733         }
5734       else
5735         break;
5736
5737       while (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5738         inner = SUBREG_REG (inner);
5739
5740       compute_mode = GET_MODE (inner);
5741
5742       /* Don't attempt bitwise arithmetic on non-integral modes.  */
5743       if (! INTEGRAL_MODE_P (compute_mode))
5744         {
5745           enum machine_mode imode;
5746
5747           /* Something is probably seriously wrong if this matches.  */
5748           if (! FLOAT_MODE_P (compute_mode))
5749             break;
5750
5751           /* Try to find an integral mode to pun with.  */
5752           imode = mode_for_size (GET_MODE_BITSIZE (compute_mode), MODE_INT, 0);
5753           if (imode == BLKmode)
5754             break;
5755
5756           compute_mode = imode;
5757           inner = gen_lowpart_for_combine (imode, inner);
5758         }
5759
5760       /* Compute a mask of LEN bits, if we can do this on the host machine.  */
5761       if (len < HOST_BITS_PER_WIDE_INT)
5762         mask = GEN_INT (((HOST_WIDE_INT) 1 << len) - 1);
5763       else
5764         break;
5765
5766       /* Now compute the equivalent expression.  Make a copy of INNER
5767          for the SET_DEST in case it is a MEM into which we will substitute;
5768          we don't want shared RTL in that case.  */
5769       x = gen_rtx_SET
5770         (VOIDmode, copy_rtx (inner),
5771          gen_binary (IOR, compute_mode,
5772                      gen_binary (AND, compute_mode,
5773                                  gen_unary (NOT, compute_mode,
5774                                             compute_mode,
5775                                             gen_binary (ASHIFT,
5776                                                         compute_mode,
5777                                                         mask, pos)),
5778                                  inner),
5779                      gen_binary (ASHIFT, compute_mode,
5780                                  gen_binary (AND, compute_mode,
5781                                              gen_lowpart_for_combine
5782                                              (compute_mode, SET_SRC (x)),
5783                                              mask),
5784                                  pos)));
5785     }
5786
5787   return x;
5788 }
5789 \f
5790 /* Return an RTX for a reference to LEN bits of INNER.  If POS_RTX is nonzero,
5791    it is an RTX that represents a variable starting position; otherwise,
5792    POS is the (constant) starting bit position (counted from the LSB).
5793
5794    INNER may be a USE.  This will occur when we started with a bitfield
5795    that went outside the boundary of the object in memory, which is
5796    allowed on most machines.  To isolate this case, we produce a USE
5797    whose mode is wide enough and surround the MEM with it.  The only
5798    code that understands the USE is this routine.  If it is not removed,
5799    it will cause the resulting insn not to match.
5800
5801    UNSIGNEDP is non-zero for an unsigned reference and zero for a 
5802    signed reference.
5803
5804    IN_DEST is non-zero if this is a reference in the destination of a
5805    SET.  This is used when a ZERO_ or SIGN_EXTRACT isn't needed.  If non-zero,
5806    a STRICT_LOW_PART will be used, if zero, ZERO_EXTEND or SIGN_EXTEND will
5807    be used.
5808
5809    IN_COMPARE is non-zero if we are in a COMPARE.  This means that a
5810    ZERO_EXTRACT should be built even for bits starting at bit 0.
5811
5812    MODE is the desired mode of the result (if IN_DEST == 0).
5813
5814    The result is an RTX for the extraction or NULL_RTX if the target
5815    can't handle it.  */
5816
5817 static rtx
5818 make_extraction (mode, inner, pos, pos_rtx, len,
5819                  unsignedp, in_dest, in_compare)
5820      enum machine_mode mode;
5821      rtx inner;
5822      HOST_WIDE_INT pos;
5823      rtx pos_rtx;
5824      unsigned HOST_WIDE_INT len;
5825      int unsignedp;
5826      int in_dest, in_compare;
5827 {
5828   /* This mode describes the size of the storage area
5829      to fetch the overall value from.  Within that, we
5830      ignore the POS lowest bits, etc.  */
5831   enum machine_mode is_mode = GET_MODE (inner);
5832   enum machine_mode inner_mode;
5833   enum machine_mode wanted_inner_mode = byte_mode;
5834   enum machine_mode wanted_inner_reg_mode = word_mode;
5835   enum machine_mode pos_mode = word_mode;
5836   enum machine_mode extraction_mode = word_mode;
5837   enum machine_mode tmode = mode_for_size (len, MODE_INT, 1);
5838   int spans_byte = 0;
5839   rtx new = 0;
5840   rtx orig_pos_rtx = pos_rtx;
5841   HOST_WIDE_INT orig_pos;
5842
5843   /* Get some information about INNER and get the innermost object.  */
5844   if (GET_CODE (inner) == USE)
5845     /* (use:SI (mem:QI foo)) stands for (mem:SI foo).  */
5846     /* We don't need to adjust the position because we set up the USE
5847        to pretend that it was a full-word object.  */
5848     spans_byte = 1, inner = XEXP (inner, 0);
5849   else if (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5850     {
5851       /* If going from (subreg:SI (mem:QI ...)) to (mem:QI ...),
5852          consider just the QI as the memory to extract from.
5853          The subreg adds or removes high bits; its mode is
5854          irrelevant to the meaning of this extraction,
5855          since POS and LEN count from the lsb.  */
5856       if (GET_CODE (SUBREG_REG (inner)) == MEM)
5857         is_mode = GET_MODE (SUBREG_REG (inner));
5858       inner = SUBREG_REG (inner);
5859     }
5860
5861   inner_mode = GET_MODE (inner);
5862
5863   if (pos_rtx && GET_CODE (pos_rtx) == CONST_INT)
5864     pos = INTVAL (pos_rtx), pos_rtx = 0;
5865
5866   /* See if this can be done without an extraction.  We never can if the
5867      width of the field is not the same as that of some integer mode. For
5868      registers, we can only avoid the extraction if the position is at the
5869      low-order bit and this is either not in the destination or we have the
5870      appropriate STRICT_LOW_PART operation available.
5871
5872      For MEM, we can avoid an extract if the field starts on an appropriate
5873      boundary and we can change the mode of the memory reference.  However,
5874      we cannot directly access the MEM if we have a USE and the underlying
5875      MEM is not TMODE.  This combination means that MEM was being used in a
5876      context where bits outside its mode were being referenced; that is only
5877      valid in bit-field insns.  */
5878
5879   if (tmode != BLKmode
5880       && ! (spans_byte && inner_mode != tmode)
5881       && ((pos_rtx == 0 && (pos % BITS_PER_WORD) == 0
5882            && GET_CODE (inner) != MEM
5883            && (! in_dest
5884                || (GET_CODE (inner) == REG
5885                    && (movstrict_optab->handlers[(int) tmode].insn_code
5886                        != CODE_FOR_nothing))))
5887           || (GET_CODE (inner) == MEM && pos_rtx == 0
5888               && (pos
5889                   % (STRICT_ALIGNMENT ? GET_MODE_ALIGNMENT (tmode)
5890                      : BITS_PER_UNIT)) == 0
5891               /* We can't do this if we are widening INNER_MODE (it
5892                  may not be aligned, for one thing).  */
5893               && GET_MODE_BITSIZE (inner_mode) >= GET_MODE_BITSIZE (tmode)
5894               && (inner_mode == tmode
5895                   || (! mode_dependent_address_p (XEXP (inner, 0))
5896                       && ! MEM_VOLATILE_P (inner))))))
5897     {
5898       /* If INNER is a MEM, make a new MEM that encompasses just the desired
5899          field.  If the original and current mode are the same, we need not
5900          adjust the offset.  Otherwise, we do if bytes big endian.  
5901
5902          If INNER is not a MEM, get a piece consisting of just the field
5903          of interest (in this case POS % BITS_PER_WORD must be 0).  */
5904
5905       if (GET_CODE (inner) == MEM)
5906         {
5907           int offset;
5908           /* POS counts from lsb, but make OFFSET count in memory order.  */
5909           if (BYTES_BIG_ENDIAN)
5910             offset = (GET_MODE_BITSIZE (is_mode) - len - pos) / BITS_PER_UNIT;
5911           else
5912             offset = pos / BITS_PER_UNIT;
5913
5914           new = gen_rtx_MEM (tmode, plus_constant (XEXP (inner, 0), offset));
5915           RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (inner);
5916           MEM_COPY_ATTRIBUTES (new, inner);
5917         }
5918       else if (GET_CODE (inner) == REG)
5919         {
5920           /* We can't call gen_lowpart_for_combine here since we always want
5921              a SUBREG and it would sometimes return a new hard register.  */
5922           if (tmode != inner_mode)
5923             new = gen_rtx_SUBREG (tmode, inner,
5924                                   (WORDS_BIG_ENDIAN
5925                                    && (GET_MODE_SIZE (inner_mode)
5926                                        > UNITS_PER_WORD)
5927                                    ? (((GET_MODE_SIZE (inner_mode)
5928                                         - GET_MODE_SIZE (tmode))
5929                                        / UNITS_PER_WORD)
5930                                       - pos / BITS_PER_WORD)
5931                                    : pos / BITS_PER_WORD));
5932           else
5933             new = inner;
5934         }
5935       else
5936         new = force_to_mode (inner, tmode,
5937                              len >= HOST_BITS_PER_WIDE_INT
5938                              ? GET_MODE_MASK (tmode)
5939                              : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
5940                              NULL_RTX, 0);
5941
5942       /* If this extraction is going into the destination of a SET, 
5943          make a STRICT_LOW_PART unless we made a MEM.  */
5944
5945       if (in_dest)
5946         return (GET_CODE (new) == MEM ? new
5947                 : (GET_CODE (new) != SUBREG
5948                    ? gen_rtx_CLOBBER (tmode, const0_rtx)
5949                    : gen_rtx_combine (STRICT_LOW_PART, VOIDmode, new)));
5950
5951       if (mode == tmode)
5952         return new;
5953
5954       /* If we know that no extraneous bits are set, and that the high
5955          bit is not set, convert the extraction to the cheaper of
5956          sign and zero extension, that are equivalent in these cases.  */
5957       if (flag_expensive_optimizations
5958           && (GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT
5959               && ((nonzero_bits (new, tmode)
5960                    & ~ (((unsigned HOST_WIDE_INT)
5961                          GET_MODE_MASK (tmode))
5962                         >> 1))
5963                   == 0)))
5964         {
5965           rtx temp = gen_rtx_ZERO_EXTEND (mode, new);
5966           rtx temp1 = gen_rtx_SIGN_EXTEND (mode, new);
5967
5968           /* Prefer ZERO_EXTENSION, since it gives more information to
5969              backends.  */
5970           if (rtx_cost (temp, SET) < rtx_cost (temp1, SET))
5971             return temp;
5972           return temp1;
5973         }
5974
5975       /* Otherwise, sign- or zero-extend unless we already are in the
5976          proper mode.  */
5977
5978       return (gen_rtx_combine (unsignedp ? ZERO_EXTEND : SIGN_EXTEND,
5979                                mode, new));
5980     }
5981
5982   /* Unless this is a COMPARE or we have a funny memory reference,
5983      don't do anything with zero-extending field extracts starting at
5984      the low-order bit since they are simple AND operations.  */
5985   if (pos_rtx == 0 && pos == 0 && ! in_dest
5986       && ! in_compare && ! spans_byte && unsignedp)
5987     return 0;
5988
5989   /* Unless we are allowed to span bytes or INNER is not MEM, reject this if
5990      we would be spanning bytes or if the position is not a constant and the
5991      length is not 1.  In all other cases, we would only be going outside
5992      our object in cases when an original shift would have been
5993      undefined.  */
5994   if (! spans_byte && GET_CODE (inner) == MEM
5995       && ((pos_rtx == 0 && pos + len > GET_MODE_BITSIZE (is_mode))
5996           || (pos_rtx != 0 && len != 1)))
5997     return 0;
5998
5999   /* Get the mode to use should INNER not be a MEM, the mode for the position,
6000      and the mode for the result.  */
6001 #ifdef HAVE_insv
6002   if (in_dest)
6003     {
6004       wanted_inner_reg_mode
6005         = insn_data[(int) CODE_FOR_insv].operand[0].mode;
6006       if (wanted_inner_reg_mode == VOIDmode)
6007         wanted_inner_reg_mode = word_mode;
6008
6009       pos_mode = insn_data[(int) CODE_FOR_insv].operand[2].mode;
6010       if (pos_mode == VOIDmode)
6011         pos_mode = word_mode;
6012
6013       extraction_mode = insn_data[(int) CODE_FOR_insv].operand[3].mode;
6014       if (extraction_mode == VOIDmode)
6015         extraction_mode = word_mode;
6016     }
6017 #endif
6018
6019 #ifdef HAVE_extzv
6020   if (! in_dest && unsignedp)
6021     {
6022       wanted_inner_reg_mode
6023         = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
6024       if (wanted_inner_reg_mode == VOIDmode)
6025         wanted_inner_reg_mode = word_mode;
6026
6027       pos_mode = insn_data[(int) CODE_FOR_extzv].operand[3].mode;
6028       if (pos_mode == VOIDmode)
6029         pos_mode = word_mode;
6030
6031       extraction_mode = insn_data[(int) CODE_FOR_extzv].operand[0].mode;
6032       if (extraction_mode == VOIDmode)
6033         extraction_mode = word_mode;
6034     }
6035 #endif
6036
6037 #ifdef HAVE_extv
6038   if (! in_dest && ! unsignedp)
6039     {
6040       wanted_inner_reg_mode
6041         = insn_data[(int) CODE_FOR_extv].operand[1].mode;
6042       if (wanted_inner_reg_mode == VOIDmode)
6043         wanted_inner_reg_mode = word_mode;
6044
6045       pos_mode = insn_data[(int) CODE_FOR_extv].operand[3].mode;
6046       if (pos_mode == VOIDmode)
6047         pos_mode = word_mode;
6048
6049       extraction_mode = insn_data[(int) CODE_FOR_extv].operand[0].mode;
6050       if (extraction_mode == VOIDmode)
6051         extraction_mode = word_mode;
6052     }
6053 #endif
6054
6055   /* Never narrow an object, since that might not be safe.  */
6056
6057   if (mode != VOIDmode
6058       && GET_MODE_SIZE (extraction_mode) < GET_MODE_SIZE (mode))
6059     extraction_mode = mode;
6060
6061   if (pos_rtx && GET_MODE (pos_rtx) != VOIDmode
6062       && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6063     pos_mode = GET_MODE (pos_rtx);
6064
6065   /* If this is not from memory, the desired mode is wanted_inner_reg_mode;
6066      if we have to change the mode of memory and cannot, the desired mode is
6067      EXTRACTION_MODE.  */
6068   if (GET_CODE (inner) != MEM)
6069     wanted_inner_mode = wanted_inner_reg_mode;
6070   else if (inner_mode != wanted_inner_mode
6071            && (mode_dependent_address_p (XEXP (inner, 0))
6072                || MEM_VOLATILE_P (inner)))
6073     wanted_inner_mode = extraction_mode;
6074
6075   orig_pos = pos;
6076
6077   if (BITS_BIG_ENDIAN)
6078     {
6079       /* POS is passed as if BITS_BIG_ENDIAN == 0, so we need to convert it to
6080          BITS_BIG_ENDIAN style.  If position is constant, compute new
6081          position.  Otherwise, build subtraction.
6082          Note that POS is relative to the mode of the original argument.
6083          If it's a MEM we need to recompute POS relative to that.
6084          However, if we're extracting from (or inserting into) a register,
6085          we want to recompute POS relative to wanted_inner_mode.  */
6086       int width = (GET_CODE (inner) == MEM
6087                    ? GET_MODE_BITSIZE (is_mode)
6088                    : GET_MODE_BITSIZE (wanted_inner_mode));
6089
6090       if (pos_rtx == 0)
6091         pos = width - len - pos;
6092       else
6093         pos_rtx
6094           = gen_rtx_combine (MINUS, GET_MODE (pos_rtx),
6095                              GEN_INT (width - len), pos_rtx);
6096       /* POS may be less than 0 now, but we check for that below.
6097          Note that it can only be less than 0 if GET_CODE (inner) != MEM.  */
6098     }
6099
6100   /* If INNER has a wider mode, make it smaller.  If this is a constant
6101      extract, try to adjust the byte to point to the byte containing
6102      the value.  */
6103   if (wanted_inner_mode != VOIDmode
6104       && GET_MODE_SIZE (wanted_inner_mode) < GET_MODE_SIZE (is_mode)
6105       && ((GET_CODE (inner) == MEM
6106            && (inner_mode == wanted_inner_mode
6107                || (! mode_dependent_address_p (XEXP (inner, 0))
6108                    && ! MEM_VOLATILE_P (inner))))))
6109     {
6110       int offset = 0;
6111
6112       /* The computations below will be correct if the machine is big
6113          endian in both bits and bytes or little endian in bits and bytes.
6114          If it is mixed, we must adjust.  */
6115              
6116       /* If bytes are big endian and we had a paradoxical SUBREG, we must
6117          adjust OFFSET to compensate.  */
6118       if (BYTES_BIG_ENDIAN
6119           && ! spans_byte
6120           && GET_MODE_SIZE (inner_mode) < GET_MODE_SIZE (is_mode))
6121         offset -= GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (inner_mode);
6122
6123       /* If this is a constant position, we can move to the desired byte.  */
6124       if (pos_rtx == 0)
6125         {
6126           offset += pos / BITS_PER_UNIT;
6127           pos %= GET_MODE_BITSIZE (wanted_inner_mode);
6128         }
6129
6130       if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN
6131           && ! spans_byte
6132           && is_mode != wanted_inner_mode)
6133         offset = (GET_MODE_SIZE (is_mode)
6134                   - GET_MODE_SIZE (wanted_inner_mode) - offset);
6135
6136       if (offset != 0 || inner_mode != wanted_inner_mode)
6137         {
6138           rtx newmem = gen_rtx_MEM (wanted_inner_mode,
6139                                     plus_constant (XEXP (inner, 0), offset));
6140           RTX_UNCHANGING_P (newmem) = RTX_UNCHANGING_P (inner);
6141           MEM_COPY_ATTRIBUTES (newmem, inner);
6142           inner = newmem;
6143         }
6144     }
6145
6146   /* If INNER is not memory, we can always get it into the proper mode.  If we
6147      are changing its mode, POS must be a constant and smaller than the size
6148      of the new mode.  */
6149   else if (GET_CODE (inner) != MEM)
6150     {
6151       if (GET_MODE (inner) != wanted_inner_mode
6152           && (pos_rtx != 0
6153               || orig_pos + len > GET_MODE_BITSIZE (wanted_inner_mode)))
6154         return 0;
6155
6156       inner = force_to_mode (inner, wanted_inner_mode,
6157                              pos_rtx
6158                              || len + orig_pos >= HOST_BITS_PER_WIDE_INT
6159                              ? GET_MODE_MASK (wanted_inner_mode)
6160                              : ((((unsigned HOST_WIDE_INT) 1 << len) - 1)
6161                                 << orig_pos),
6162                              NULL_RTX, 0);
6163     }
6164
6165   /* Adjust mode of POS_RTX, if needed.  If we want a wider mode, we
6166      have to zero extend.  Otherwise, we can just use a SUBREG.  */
6167   if (pos_rtx != 0
6168       && GET_MODE_SIZE (pos_mode) > GET_MODE_SIZE (GET_MODE (pos_rtx)))
6169     {
6170       rtx temp = gen_rtx_combine (ZERO_EXTEND, pos_mode, pos_rtx);
6171
6172       /* If we know that no extraneous bits are set, and that the high
6173          bit is not set, convert extraction to cheaper one - eighter
6174          SIGN_EXTENSION or ZERO_EXTENSION, that are equivalent in these
6175          cases.  */
6176       if (flag_expensive_optimizations
6177           && (GET_MODE_BITSIZE (GET_MODE (pos_rtx)) <= HOST_BITS_PER_WIDE_INT
6178               && ((nonzero_bits (pos_rtx, GET_MODE (pos_rtx))
6179                    & ~ (((unsigned HOST_WIDE_INT)
6180                          GET_MODE_MASK (GET_MODE (pos_rtx)))
6181                         >> 1))
6182                   == 0)))
6183         {
6184           rtx temp1 = gen_rtx_SIGN_EXTEND (pos_mode, pos_rtx);
6185
6186           /* Preffer ZERO_EXTENSION, since it gives more information to
6187              backends.  */
6188           if (rtx_cost (temp1, SET) < rtx_cost (temp, SET))
6189             temp = temp1;
6190         }
6191       pos_rtx = temp;
6192     }
6193   else if (pos_rtx != 0
6194            && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6195     pos_rtx = gen_lowpart_for_combine (pos_mode, pos_rtx);
6196
6197   /* Make POS_RTX unless we already have it and it is correct.  If we don't
6198      have a POS_RTX but we do have an ORIG_POS_RTX, the latter must
6199      be a CONST_INT.  */
6200   if (pos_rtx == 0 && orig_pos_rtx != 0 && INTVAL (orig_pos_rtx) == pos)
6201     pos_rtx = orig_pos_rtx;
6202
6203   else if (pos_rtx == 0)
6204     pos_rtx = GEN_INT (pos);
6205
6206   /* Make the required operation.  See if we can use existing rtx.  */
6207   new = gen_rtx_combine (unsignedp ? ZERO_EXTRACT : SIGN_EXTRACT,
6208                          extraction_mode, inner, GEN_INT (len), pos_rtx);
6209   if (! in_dest)
6210     new = gen_lowpart_for_combine (mode, new);
6211
6212   return new;
6213 }
6214 \f
6215 /* See if X contains an ASHIFT of COUNT or more bits that can be commuted
6216    with any other operations in X.  Return X without that shift if so.  */
6217
6218 static rtx
6219 extract_left_shift (x, count)
6220      rtx x;
6221      int count;
6222 {
6223   enum rtx_code code = GET_CODE (x);
6224   enum machine_mode mode = GET_MODE (x);
6225   rtx tem;
6226
6227   switch (code)
6228     {
6229     case ASHIFT:
6230       /* This is the shift itself.  If it is wide enough, we will return
6231          either the value being shifted if the shift count is equal to
6232          COUNT or a shift for the difference.  */
6233       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6234           && INTVAL (XEXP (x, 1)) >= count)
6235         return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (x, 0),
6236                                      INTVAL (XEXP (x, 1)) - count);
6237       break;
6238
6239     case NEG:  case NOT:
6240       if ((tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6241         return gen_unary (code, mode, mode, tem);
6242
6243       break;
6244
6245     case PLUS:  case IOR:  case XOR:  case AND:
6246       /* If we can safely shift this constant and we find the inner shift,
6247          make a new operation.  */
6248       if (GET_CODE (XEXP (x,1)) == CONST_INT
6249           && (INTVAL (XEXP (x, 1)) & ((((HOST_WIDE_INT) 1 << count)) - 1)) == 0
6250           && (tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6251         return gen_binary (code, mode, tem, 
6252                            GEN_INT (INTVAL (XEXP (x, 1)) >> count));
6253
6254       break;
6255       
6256     default:
6257       break;
6258     }
6259
6260   return 0;
6261 }
6262 \f
6263 /* Look at the expression rooted at X.  Look for expressions
6264    equivalent to ZERO_EXTRACT, SIGN_EXTRACT, ZERO_EXTEND, SIGN_EXTEND.
6265    Form these expressions.
6266
6267    Return the new rtx, usually just X.
6268
6269    Also, for machines like the Vax that don't have logical shift insns,
6270    try to convert logical to arithmetic shift operations in cases where
6271    they are equivalent.  This undoes the canonicalizations to logical
6272    shifts done elsewhere.
6273
6274    We try, as much as possible, to re-use rtl expressions to save memory.
6275
6276    IN_CODE says what kind of expression we are processing.  Normally, it is
6277    SET.  In a memory address (inside a MEM, PLUS or minus, the latter two
6278    being kludges), it is MEM.  When processing the arguments of a comparison
6279    or a COMPARE against zero, it is COMPARE.  */
6280
6281 static rtx
6282 make_compound_operation (x, in_code)
6283      rtx x;
6284      enum rtx_code in_code;
6285 {
6286   enum rtx_code code = GET_CODE (x);
6287   enum machine_mode mode = GET_MODE (x);
6288   int mode_width = GET_MODE_BITSIZE (mode);
6289   rtx rhs, lhs;
6290   enum rtx_code next_code;
6291   int i;
6292   rtx new = 0;
6293   rtx tem;
6294   const char *fmt;
6295
6296   /* Select the code to be used in recursive calls.  Once we are inside an
6297      address, we stay there.  If we have a comparison, set to COMPARE,
6298      but once inside, go back to our default of SET.  */
6299
6300   next_code = (code == MEM || code == PLUS || code == MINUS ? MEM
6301                : ((code == COMPARE || GET_RTX_CLASS (code) == '<')
6302                   && XEXP (x, 1) == const0_rtx) ? COMPARE
6303                : in_code == COMPARE ? SET : in_code);
6304
6305   /* Process depending on the code of this operation.  If NEW is set
6306      non-zero, it will be returned.  */
6307
6308   switch (code)
6309     {
6310     case ASHIFT:
6311       /* Convert shifts by constants into multiplications if inside
6312          an address.  */
6313       if (in_code == MEM && GET_CODE (XEXP (x, 1)) == CONST_INT
6314           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6315           && INTVAL (XEXP (x, 1)) >= 0)
6316         {
6317           new = make_compound_operation (XEXP (x, 0), next_code);
6318           new = gen_rtx_combine (MULT, mode, new,
6319                                  GEN_INT ((HOST_WIDE_INT) 1
6320                                           << INTVAL (XEXP (x, 1))));
6321         }
6322       break;
6323
6324     case AND:
6325       /* If the second operand is not a constant, we can't do anything
6326          with it.  */
6327       if (GET_CODE (XEXP (x, 1)) != CONST_INT)
6328         break;
6329
6330       /* If the constant is a power of two minus one and the first operand
6331          is a logical right shift, make an extraction.  */
6332       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6333           && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6334         {
6335           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6336           new = make_extraction (mode, new, 0, XEXP (XEXP (x, 0), 1), i, 1,
6337                                  0, in_code == COMPARE);
6338         }
6339
6340       /* Same as previous, but for (subreg (lshiftrt ...)) in first op.  */
6341       else if (GET_CODE (XEXP (x, 0)) == SUBREG
6342                && subreg_lowpart_p (XEXP (x, 0))
6343                && GET_CODE (SUBREG_REG (XEXP (x, 0))) == LSHIFTRT
6344                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6345         {
6346           new = make_compound_operation (XEXP (SUBREG_REG (XEXP (x, 0)), 0),
6347                                          next_code);
6348           new = make_extraction (GET_MODE (SUBREG_REG (XEXP (x, 0))), new, 0,
6349                                  XEXP (SUBREG_REG (XEXP (x, 0)), 1), i, 1,
6350                                  0, in_code == COMPARE);
6351         }
6352       /* Same as previous, but for (xor/ior (lshiftrt...) (lshiftrt...)).  */
6353       else if ((GET_CODE (XEXP (x, 0)) == XOR
6354                 || GET_CODE (XEXP (x, 0)) == IOR)
6355                && GET_CODE (XEXP (XEXP (x, 0), 0)) == LSHIFTRT
6356                && GET_CODE (XEXP (XEXP (x, 0), 1)) == LSHIFTRT
6357                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6358         {
6359           /* Apply the distributive law, and then try to make extractions.  */
6360           new = gen_rtx_combine (GET_CODE (XEXP (x, 0)), mode,
6361                                  gen_rtx_AND (mode, XEXP (XEXP (x, 0), 0),
6362                                               XEXP (x, 1)),
6363                                  gen_rtx_AND (mode, XEXP (XEXP (x, 0), 1),
6364                                               XEXP (x, 1)));
6365           new = make_compound_operation (new, in_code);
6366         }
6367
6368       /* If we are have (and (rotate X C) M) and C is larger than the number
6369          of bits in M, this is an extraction.  */
6370
6371       else if (GET_CODE (XEXP (x, 0)) == ROTATE
6372                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6373                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0
6374                && i <= INTVAL (XEXP (XEXP (x, 0), 1)))
6375         {
6376           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6377           new = make_extraction (mode, new,
6378                                  (GET_MODE_BITSIZE (mode)
6379                                   - INTVAL (XEXP (XEXP (x, 0), 1))),
6380                                  NULL_RTX, i, 1, 0, in_code == COMPARE);
6381         }
6382
6383       /* On machines without logical shifts, if the operand of the AND is
6384          a logical shift and our mask turns off all the propagated sign
6385          bits, we can replace the logical shift with an arithmetic shift.  */
6386       else if (ashr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6387                && (lshr_optab->handlers[(int) mode].insn_code
6388                    == CODE_FOR_nothing)
6389                && GET_CODE (XEXP (x, 0)) == LSHIFTRT
6390                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6391                && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6392                && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6393                && mode_width <= HOST_BITS_PER_WIDE_INT)
6394         {
6395           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
6396
6397           mask >>= INTVAL (XEXP (XEXP (x, 0), 1));
6398           if ((INTVAL (XEXP (x, 1)) & ~mask) == 0)
6399             SUBST (XEXP (x, 0),
6400                    gen_rtx_combine (ASHIFTRT, mode,
6401                                     make_compound_operation (XEXP (XEXP (x, 0), 0),
6402                                                              next_code),
6403                                     XEXP (XEXP (x, 0), 1)));
6404         }
6405
6406       /* If the constant is one less than a power of two, this might be
6407          representable by an extraction even if no shift is present.
6408          If it doesn't end up being a ZERO_EXTEND, we will ignore it unless
6409          we are in a COMPARE.  */
6410       else if ((i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6411         new = make_extraction (mode,
6412                                make_compound_operation (XEXP (x, 0),
6413                                                         next_code),
6414                                0, NULL_RTX, i, 1, 0, in_code == COMPARE);
6415
6416       /* If we are in a comparison and this is an AND with a power of two,
6417          convert this into the appropriate bit extract.  */
6418       else if (in_code == COMPARE
6419                && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
6420         new = make_extraction (mode,
6421                                make_compound_operation (XEXP (x, 0),
6422                                                         next_code),
6423                                i, NULL_RTX, 1, 1, 0, 1);
6424
6425       break;
6426
6427     case LSHIFTRT:
6428       /* If the sign bit is known to be zero, replace this with an
6429          arithmetic shift.  */
6430       if (ashr_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing
6431           && lshr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6432           && mode_width <= HOST_BITS_PER_WIDE_INT
6433           && (nonzero_bits (XEXP (x, 0), mode) & (1 << (mode_width - 1))) == 0)
6434         {
6435           new = gen_rtx_combine (ASHIFTRT, mode,
6436                                  make_compound_operation (XEXP (x, 0),
6437                                                           next_code),
6438                                  XEXP (x, 1));
6439           break;
6440         }
6441
6442       /* ... fall through ...  */
6443
6444     case ASHIFTRT:
6445       lhs = XEXP (x, 0);
6446       rhs = XEXP (x, 1);
6447
6448       /* If we have (ashiftrt (ashift foo C1) C2) with C2 >= C1,
6449          this is a SIGN_EXTRACT.  */
6450       if (GET_CODE (rhs) == CONST_INT
6451           && GET_CODE (lhs) == ASHIFT
6452           && GET_CODE (XEXP (lhs, 1)) == CONST_INT
6453           && INTVAL (rhs) >= INTVAL (XEXP (lhs, 1)))
6454         {
6455           new = make_compound_operation (XEXP (lhs, 0), next_code);
6456           new = make_extraction (mode, new,
6457                                  INTVAL (rhs) - INTVAL (XEXP (lhs, 1)),
6458                                  NULL_RTX, mode_width - INTVAL (rhs),
6459                                  code == LSHIFTRT, 0, in_code == COMPARE);
6460         }
6461
6462       /* See if we have operations between an ASHIFTRT and an ASHIFT.
6463          If so, try to merge the shifts into a SIGN_EXTEND.  We could
6464          also do this for some cases of SIGN_EXTRACT, but it doesn't
6465          seem worth the effort; the case checked for occurs on Alpha.  */
6466       
6467       if (GET_RTX_CLASS (GET_CODE (lhs)) != 'o'
6468           && ! (GET_CODE (lhs) == SUBREG
6469                 && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (lhs))) == 'o'))
6470           && GET_CODE (rhs) == CONST_INT
6471           && INTVAL (rhs) < HOST_BITS_PER_WIDE_INT
6472           && (new = extract_left_shift (lhs, INTVAL (rhs))) != 0)
6473         new = make_extraction (mode, make_compound_operation (new, next_code),
6474                                0, NULL_RTX, mode_width - INTVAL (rhs),
6475                                code == LSHIFTRT, 0, in_code == COMPARE);
6476         
6477       break;
6478
6479     case SUBREG:
6480       /* Call ourselves recursively on the inner expression.  If we are
6481          narrowing the object and it has a different RTL code from
6482          what it originally did, do this SUBREG as a force_to_mode.  */
6483
6484       tem = make_compound_operation (SUBREG_REG (x), in_code);
6485       if (GET_CODE (tem) != GET_CODE (SUBREG_REG (x))
6486           && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (tem))
6487           && subreg_lowpart_p (x))
6488         {
6489           rtx newer = force_to_mode (tem, mode,
6490                                      GET_MODE_MASK (mode), NULL_RTX, 0);
6491
6492           /* If we have something other than a SUBREG, we might have
6493              done an expansion, so rerun outselves.  */
6494           if (GET_CODE (newer) != SUBREG)
6495             newer = make_compound_operation (newer, in_code);
6496
6497           return newer;
6498         }
6499
6500       /* If this is a paradoxical subreg, and the new code is a sign or
6501          zero extension, omit the subreg and widen the extension.  If it
6502          is a regular subreg, we can still get rid of the subreg by not
6503          widening so much, or in fact removing the extension entirely.  */
6504       if ((GET_CODE (tem) == SIGN_EXTEND
6505            || GET_CODE (tem) == ZERO_EXTEND)
6506           && subreg_lowpart_p (x))
6507         {
6508           if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (tem))
6509               || (GET_MODE_SIZE (mode) >
6510                   GET_MODE_SIZE (GET_MODE (XEXP (tem, 0)))))
6511             tem = gen_rtx_combine (GET_CODE (tem), mode, XEXP (tem, 0));
6512           else
6513             tem = gen_lowpart_for_combine (mode, XEXP (tem, 0));
6514           return tem;
6515         }
6516       break;
6517       
6518     default:
6519       break;
6520     }
6521
6522   if (new)
6523     {
6524       x = gen_lowpart_for_combine (mode, new);
6525       code = GET_CODE (x);
6526     }
6527
6528   /* Now recursively process each operand of this operation.  */
6529   fmt = GET_RTX_FORMAT (code);
6530   for (i = 0; i < GET_RTX_LENGTH (code); i++)
6531     if (fmt[i] == 'e')
6532       {
6533         new = make_compound_operation (XEXP (x, i), next_code);
6534         SUBST (XEXP (x, i), new);
6535       }
6536
6537   return x;
6538 }
6539 \f
6540 /* Given M see if it is a value that would select a field of bits
6541     within an item, but not the entire word.  Return -1 if not.
6542     Otherwise, return the starting position of the field, where 0 is the
6543     low-order bit.
6544
6545    *PLEN is set to the length of the field.  */
6546
6547 static int
6548 get_pos_from_mask (m, plen)
6549      unsigned HOST_WIDE_INT m;
6550      unsigned HOST_WIDE_INT *plen;
6551 {
6552   /* Get the bit number of the first 1 bit from the right, -1 if none.  */
6553   int pos = exact_log2 (m & - m);
6554
6555   if (pos < 0)
6556     return -1;
6557
6558   /* Now shift off the low-order zero bits and see if we have a power of
6559      two minus 1.  */
6560   *plen = exact_log2 ((m >> pos) + 1);
6561
6562   if (*plen <= 0)
6563     return -1;
6564
6565   return pos;
6566 }
6567 \f
6568 /* See if X can be simplified knowing that we will only refer to it in
6569    MODE and will only refer to those bits that are nonzero in MASK.
6570    If other bits are being computed or if masking operations are done
6571    that select a superset of the bits in MASK, they can sometimes be
6572    ignored.
6573
6574    Return a possibly simplified expression, but always convert X to
6575    MODE.  If X is a CONST_INT, AND the CONST_INT with MASK.
6576
6577    Also, if REG is non-zero and X is a register equal in value to REG, 
6578    replace X with REG.
6579
6580    If JUST_SELECT is nonzero, don't optimize by noticing that bits in MASK
6581    are all off in X.  This is used when X will be complemented, by either
6582    NOT, NEG, or XOR.  */
6583
6584 static rtx
6585 force_to_mode (x, mode, mask, reg, just_select)
6586      rtx x;
6587      enum machine_mode mode;
6588      unsigned HOST_WIDE_INT mask;
6589      rtx reg;
6590      int just_select;
6591 {
6592   enum rtx_code code = GET_CODE (x);
6593   int next_select = just_select || code == XOR || code == NOT || code == NEG;
6594   enum machine_mode op_mode;
6595   unsigned HOST_WIDE_INT fuller_mask, nonzero;
6596   rtx op0, op1, temp;
6597
6598   /* If this is a CALL or ASM_OPERANDS, don't do anything.  Some of the
6599      code below will do the wrong thing since the mode of such an
6600      expression is VOIDmode. 
6601
6602      Also do nothing if X is a CLOBBER; this can happen if X was
6603      the return value from a call to gen_lowpart_for_combine.  */
6604   if (code == CALL || code == ASM_OPERANDS || code == CLOBBER)
6605     return x;
6606
6607   /* We want to perform the operation is its present mode unless we know
6608      that the operation is valid in MODE, in which case we do the operation
6609      in MODE.  */
6610   op_mode = ((GET_MODE_CLASS (mode) == GET_MODE_CLASS (GET_MODE (x))
6611               && code_to_optab[(int) code] != 0
6612               && (code_to_optab[(int) code]->handlers[(int) mode].insn_code
6613                   != CODE_FOR_nothing))
6614              ? mode : GET_MODE (x));
6615
6616   /* It is not valid to do a right-shift in a narrower mode
6617      than the one it came in with.  */
6618   if ((code == LSHIFTRT || code == ASHIFTRT)
6619       && GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (GET_MODE (x)))
6620     op_mode = GET_MODE (x);
6621
6622   /* Truncate MASK to fit OP_MODE.  */
6623   if (op_mode)
6624     mask &= GET_MODE_MASK (op_mode);
6625
6626   /* When we have an arithmetic operation, or a shift whose count we
6627      do not know, we need to assume that all bit the up to the highest-order
6628      bit in MASK will be needed.  This is how we form such a mask.  */
6629   if (op_mode)
6630     fuller_mask = (GET_MODE_BITSIZE (op_mode) >= HOST_BITS_PER_WIDE_INT
6631                    ? GET_MODE_MASK (op_mode)
6632                    : (((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mask) + 1))
6633                       - 1));
6634   else
6635     fuller_mask = ~ (HOST_WIDE_INT) 0;
6636
6637   /* Determine what bits of X are guaranteed to be (non)zero.  */
6638   nonzero = nonzero_bits (x, mode);
6639
6640   /* If none of the bits in X are needed, return a zero.  */
6641   if (! just_select && (nonzero & mask) == 0)
6642     return const0_rtx;
6643
6644   /* If X is a CONST_INT, return a new one.  Do this here since the
6645      test below will fail.  */
6646   if (GET_CODE (x) == CONST_INT)
6647     {
6648       HOST_WIDE_INT cval = INTVAL (x) & mask;
6649       int width = GET_MODE_BITSIZE (mode);
6650
6651       /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6652          number, sign extend it.  */
6653       if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6654           && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6655         cval |= (HOST_WIDE_INT) -1 << width;
6656         
6657       return GEN_INT (cval);
6658     }
6659
6660   /* If X is narrower than MODE and we want all the bits in X's mode, just
6661      get X in the proper mode.  */
6662   if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode)
6663       && (GET_MODE_MASK (GET_MODE (x)) & ~ mask) == 0)
6664     return gen_lowpart_for_combine (mode, x);
6665
6666   /* If we aren't changing the mode, X is not a SUBREG, and all zero bits in
6667      MASK are already known to be zero in X, we need not do anything.  */
6668   if (GET_MODE (x) == mode && code != SUBREG && (~ mask & nonzero) == 0)
6669     return x;
6670
6671   switch (code)
6672     {
6673     case CLOBBER:
6674       /* If X is a (clobber (const_int)), return it since we know we are
6675          generating something that won't match.  */
6676       return x;
6677
6678     case USE:
6679       /* X is a (use (mem ..)) that was made from a bit-field extraction that
6680          spanned the boundary of the MEM.  If we are now masking so it is
6681          within that boundary, we don't need the USE any more.  */
6682       if (! BITS_BIG_ENDIAN
6683           && (mask & ~ GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6684         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6685       break;
6686
6687     case SIGN_EXTEND:
6688     case ZERO_EXTEND:
6689     case ZERO_EXTRACT:
6690     case SIGN_EXTRACT:
6691       x = expand_compound_operation (x);
6692       if (GET_CODE (x) != code)
6693         return force_to_mode (x, mode, mask, reg, next_select);
6694       break;
6695
6696     case REG:
6697       if (reg != 0 && (rtx_equal_p (get_last_value (reg), x)
6698                        || rtx_equal_p (reg, get_last_value (x))))
6699         x = reg;
6700       break;
6701
6702     case SUBREG:
6703       if (subreg_lowpart_p (x)
6704           /* We can ignore the effect of this SUBREG if it narrows the mode or
6705              if the constant masks to zero all the bits the mode doesn't
6706              have.  */
6707           && ((GET_MODE_SIZE (GET_MODE (x))
6708                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
6709               || (0 == (mask
6710                         & GET_MODE_MASK (GET_MODE (x))
6711                         & ~ GET_MODE_MASK (GET_MODE (SUBREG_REG (x)))))))
6712         return force_to_mode (SUBREG_REG (x), mode, mask, reg, next_select);
6713       break;
6714
6715     case AND:
6716       /* If this is an AND with a constant, convert it into an AND
6717          whose constant is the AND of that constant with MASK.  If it
6718          remains an AND of MASK, delete it since it is redundant.  */
6719
6720       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
6721         {
6722           x = simplify_and_const_int (x, op_mode, XEXP (x, 0),
6723                                       mask & INTVAL (XEXP (x, 1)));
6724
6725           /* If X is still an AND, see if it is an AND with a mask that
6726              is just some low-order bits.  If so, and it is MASK, we don't
6727              need it.  */
6728
6729           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6730               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) == mask)
6731             x = XEXP (x, 0);
6732
6733           /* If it remains an AND, try making another AND with the bits
6734              in the mode mask that aren't in MASK turned on.  If the
6735              constant in the AND is wide enough, this might make a
6736              cheaper constant.  */
6737
6738           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6739               && GET_MODE_MASK (GET_MODE (x)) != mask
6740               && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
6741             {
6742               HOST_WIDE_INT cval = (INTVAL (XEXP (x, 1))
6743                                     | (GET_MODE_MASK (GET_MODE (x)) & ~ mask));
6744               int width = GET_MODE_BITSIZE (GET_MODE (x));
6745               rtx y;
6746
6747               /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6748                  number, sign extend it.  */
6749               if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6750                   && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6751                 cval |= (HOST_WIDE_INT) -1 << width;
6752
6753               y = gen_binary (AND, GET_MODE (x), XEXP (x, 0), GEN_INT (cval));
6754               if (rtx_cost (y, SET) < rtx_cost (x, SET))
6755                 x = y;
6756             }
6757
6758           break;
6759         }
6760
6761       goto binop;
6762
6763     case PLUS:
6764       /* In (and (plus FOO C1) M), if M is a mask that just turns off
6765          low-order bits (as in an alignment operation) and FOO is already
6766          aligned to that boundary, mask C1 to that boundary as well.
6767          This may eliminate that PLUS and, later, the AND.  */
6768
6769       {
6770         unsigned int width = GET_MODE_BITSIZE (mode);
6771         unsigned HOST_WIDE_INT smask = mask;
6772
6773         /* If MODE is narrower than HOST_WIDE_INT and mask is a negative
6774            number, sign extend it.  */
6775
6776         if (width < HOST_BITS_PER_WIDE_INT
6777             && (smask & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6778           smask |= (HOST_WIDE_INT) -1 << width;
6779
6780         if (GET_CODE (XEXP (x, 1)) == CONST_INT
6781             && exact_log2 (- smask) >= 0)
6782           {
6783 #ifdef STACK_BIAS
6784             if (STACK_BIAS
6785                 && (XEXP (x, 0) == stack_pointer_rtx
6786                     || XEXP (x, 0) == frame_pointer_rtx))
6787               {
6788                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
6789                 unsigned HOST_WIDE_INT sp_mask = GET_MODE_MASK (mode);
6790           
6791                 sp_mask &= ~ (sp_alignment - 1);
6792                 if ((sp_mask & ~ smask) == 0
6793                     && ((INTVAL (XEXP (x, 1)) - STACK_BIAS) & ~ smask) != 0)
6794                   return force_to_mode (plus_constant (XEXP (x, 0),
6795                                                        ((INTVAL (XEXP (x, 1)) -
6796                                                          STACK_BIAS) & smask)
6797                                                        + STACK_BIAS),
6798                                         mode, smask, reg, next_select);
6799               }
6800 #endif
6801             if ((nonzero_bits (XEXP (x, 0), mode) & ~ smask) == 0
6802                 && (INTVAL (XEXP (x, 1)) & ~ smask) != 0)
6803               return force_to_mode (plus_constant (XEXP (x, 0),
6804                                                    (INTVAL (XEXP (x, 1))
6805                                                     & smask)),
6806                                     mode, smask, reg, next_select);
6807           }
6808       }
6809
6810       /* ... fall through ...  */
6811
6812     case MINUS:
6813     case MULT:
6814       /* For PLUS, MINUS and MULT, we need any bits less significant than the
6815          most significant bit in MASK since carries from those bits will
6816          affect the bits we are interested in.  */
6817       mask = fuller_mask;
6818       goto binop;
6819
6820     case IOR:
6821     case XOR:
6822       /* If X is (ior (lshiftrt FOO C1) C2), try to commute the IOR and
6823          LSHIFTRT so we end up with an (and (lshiftrt (ior ...) ...) ...)
6824          operation which may be a bitfield extraction.  Ensure that the
6825          constant we form is not wider than the mode of X.  */
6826
6827       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6828           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6829           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6830           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6831           && GET_CODE (XEXP (x, 1)) == CONST_INT
6832           && ((INTVAL (XEXP (XEXP (x, 0), 1))
6833                + floor_log2 (INTVAL (XEXP (x, 1))))
6834               < GET_MODE_BITSIZE (GET_MODE (x)))
6835           && (INTVAL (XEXP (x, 1))
6836               & ~ nonzero_bits (XEXP (x, 0), GET_MODE (x))) == 0)
6837         {
6838           temp = GEN_INT ((INTVAL (XEXP (x, 1)) & mask)
6839                               << INTVAL (XEXP (XEXP (x, 0), 1)));
6840           temp = gen_binary (GET_CODE (x), GET_MODE (x),
6841                              XEXP (XEXP (x, 0), 0), temp);
6842           x = gen_binary (LSHIFTRT, GET_MODE (x), temp,
6843                           XEXP (XEXP (x, 0), 1));
6844           return force_to_mode (x, mode, mask, reg, next_select);
6845         }
6846
6847     binop:
6848       /* For most binary operations, just propagate into the operation and
6849          change the mode if we have an operation of that mode.   */
6850
6851       op0 = gen_lowpart_for_combine (op_mode,
6852                                      force_to_mode (XEXP (x, 0), mode, mask,
6853                                                     reg, next_select));
6854       op1 = gen_lowpart_for_combine (op_mode,
6855                                      force_to_mode (XEXP (x, 1), mode, mask,
6856                                                     reg, next_select));
6857
6858       /* If OP1 is a CONST_INT and X is an IOR or XOR, clear bits outside
6859          MASK since OP1 might have been sign-extended but we never want
6860          to turn on extra bits, since combine might have previously relied
6861          on them being off.  */
6862       if (GET_CODE (op1) == CONST_INT && (code == IOR || code == XOR)
6863           && (INTVAL (op1) & mask) != 0)
6864         op1 = GEN_INT (INTVAL (op1) & mask);
6865          
6866       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
6867         x = gen_binary (code, op_mode, op0, op1);
6868       break;
6869
6870     case ASHIFT:
6871       /* For left shifts, do the same, but just for the first operand.
6872          However, we cannot do anything with shifts where we cannot
6873          guarantee that the counts are smaller than the size of the mode
6874          because such a count will have a different meaning in a
6875          wider mode.  */
6876
6877       if (! (GET_CODE (XEXP (x, 1)) == CONST_INT
6878              && INTVAL (XEXP (x, 1)) >= 0
6879              && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (mode))
6880           && ! (GET_MODE (XEXP (x, 1)) != VOIDmode
6881                 && (nonzero_bits (XEXP (x, 1), GET_MODE (XEXP (x, 1)))
6882                     < (unsigned HOST_WIDE_INT) GET_MODE_BITSIZE (mode))))
6883         break;
6884         
6885       /* If the shift count is a constant and we can do arithmetic in
6886          the mode of the shift, refine which bits we need.  Otherwise, use the
6887          conservative form of the mask.  */
6888       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6889           && INTVAL (XEXP (x, 1)) >= 0
6890           && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (op_mode)
6891           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6892         mask >>= INTVAL (XEXP (x, 1));
6893       else
6894         mask = fuller_mask;
6895
6896       op0 = gen_lowpart_for_combine (op_mode,
6897                                      force_to_mode (XEXP (x, 0), op_mode,
6898                                                     mask, reg, next_select));
6899
6900       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
6901         x =  gen_binary (code, op_mode, op0, XEXP (x, 1));
6902       break;
6903
6904     case LSHIFTRT:
6905       /* Here we can only do something if the shift count is a constant,
6906          this shift constant is valid for the host, and we can do arithmetic
6907          in OP_MODE.  */
6908
6909       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6910           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6911           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6912         {
6913           rtx inner = XEXP (x, 0);
6914           unsigned HOST_WIDE_INT inner_mask;
6915
6916           /* Select the mask of the bits we need for the shift operand.  */
6917           inner_mask = mask << INTVAL (XEXP (x, 1));
6918
6919           /* We can only change the mode of the shift if we can do arithmetic
6920              in the mode of the shift and INNER_MASK is no wider than the
6921              width of OP_MODE.  */
6922           if (GET_MODE_BITSIZE (op_mode) > HOST_BITS_PER_WIDE_INT
6923               || (inner_mask & ~ GET_MODE_MASK (op_mode)) != 0)
6924             op_mode = GET_MODE (x);
6925
6926           inner = force_to_mode (inner, op_mode, inner_mask, reg, next_select);
6927
6928           if (GET_MODE (x) != op_mode || inner != XEXP (x, 0))
6929             x = gen_binary (LSHIFTRT, op_mode, inner, XEXP (x, 1));
6930         }
6931
6932       /* If we have (and (lshiftrt FOO C1) C2) where the combination of the
6933          shift and AND produces only copies of the sign bit (C2 is one less
6934          than a power of two), we can do this with just a shift.  */
6935
6936       if (GET_CODE (x) == LSHIFTRT
6937           && GET_CODE (XEXP (x, 1)) == CONST_INT
6938           && ((INTVAL (XEXP (x, 1))
6939                + num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0))))
6940               >= GET_MODE_BITSIZE (GET_MODE (x)))
6941           && exact_log2 (mask + 1) >= 0
6942           && ((int) num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
6943               >= exact_log2 (mask + 1)))
6944         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0),
6945                         GEN_INT (GET_MODE_BITSIZE (GET_MODE (x))
6946                                  - exact_log2 (mask + 1)));
6947
6948       goto shiftrt;
6949
6950     case ASHIFTRT:
6951       /* If we are just looking for the sign bit, we don't need this shift at
6952          all, even if it has a variable count.  */
6953       if (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
6954           && (mask == ((unsigned HOST_WIDE_INT) 1
6955                        << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
6956         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6957
6958       /* If this is a shift by a constant, get a mask that contains those bits
6959          that are not copies of the sign bit.  We then have two cases:  If
6960          MASK only includes those bits, this can be a logical shift, which may
6961          allow simplifications.  If MASK is a single-bit field not within
6962          those bits, we are requesting a copy of the sign bit and hence can
6963          shift the sign bit to the appropriate location.  */
6964
6965       if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) >= 0
6966           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
6967         {
6968           int i = -1;
6969
6970           /* If the considered data is wider then HOST_WIDE_INT, we can't
6971              represent a mask for all its bits in a single scalar.
6972              But we only care about the lower bits, so calculate these.  */
6973
6974           if (GET_MODE_BITSIZE (GET_MODE (x)) > HOST_BITS_PER_WIDE_INT)
6975             {
6976               nonzero = ~ (HOST_WIDE_INT) 0;
6977
6978               /* GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
6979                  is the number of bits a full-width mask would have set.
6980                  We need only shift if these are fewer than nonzero can
6981                  hold.  If not, we must keep all bits set in nonzero.  */
6982
6983               if (GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
6984                   < HOST_BITS_PER_WIDE_INT)
6985                 nonzero >>= INTVAL (XEXP (x, 1))
6986                             + HOST_BITS_PER_WIDE_INT
6987                             - GET_MODE_BITSIZE (GET_MODE (x)) ;
6988             }
6989           else
6990             {
6991               nonzero = GET_MODE_MASK (GET_MODE (x));
6992               nonzero >>= INTVAL (XEXP (x, 1));
6993             }
6994
6995           if ((mask & ~ nonzero) == 0
6996               || (i = exact_log2 (mask)) >= 0)
6997             {
6998               x = simplify_shift_const
6999                 (x, LSHIFTRT, GET_MODE (x), XEXP (x, 0),
7000                  i < 0 ? INTVAL (XEXP (x, 1))
7001                  : GET_MODE_BITSIZE (GET_MODE (x)) - 1 - i);
7002
7003               if (GET_CODE (x) != ASHIFTRT)
7004                 return force_to_mode (x, mode, mask, reg, next_select);
7005             }
7006         }
7007
7008       /* If MASK is 1, convert this to a LSHIFTRT.  This can be done
7009          even if the shift count isn't a constant.  */
7010       if (mask == 1)
7011         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0), XEXP (x, 1));
7012
7013     shiftrt:
7014
7015       /* If this is a zero- or sign-extension operation that just affects bits
7016          we don't care about, remove it.  Be sure the call above returned
7017          something that is still a shift.  */
7018
7019       if ((GET_CODE (x) == LSHIFTRT || GET_CODE (x) == ASHIFTRT)
7020           && GET_CODE (XEXP (x, 1)) == CONST_INT
7021           && INTVAL (XEXP (x, 1)) >= 0
7022           && (INTVAL (XEXP (x, 1))
7023               <= GET_MODE_BITSIZE (GET_MODE (x)) - (floor_log2 (mask) + 1))
7024           && GET_CODE (XEXP (x, 0)) == ASHIFT
7025           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7026           && INTVAL (XEXP (XEXP (x, 0), 1)) == INTVAL (XEXP (x, 1)))
7027         return force_to_mode (XEXP (XEXP (x, 0), 0), mode, mask,
7028                               reg, next_select);
7029
7030       break;
7031
7032     case ROTATE:
7033     case ROTATERT:
7034       /* If the shift count is constant and we can do computations
7035          in the mode of X, compute where the bits we care about are.
7036          Otherwise, we can't do anything.  Don't change the mode of
7037          the shift or propagate MODE into the shift, though.  */
7038       if (GET_CODE (XEXP (x, 1)) == CONST_INT
7039           && INTVAL (XEXP (x, 1)) >= 0)
7040         {
7041           temp = simplify_binary_operation (code == ROTATE ? ROTATERT : ROTATE,
7042                                             GET_MODE (x), GEN_INT (mask),
7043                                             XEXP (x, 1));
7044           if (temp && GET_CODE(temp) == CONST_INT)
7045             SUBST (XEXP (x, 0),
7046                    force_to_mode (XEXP (x, 0), GET_MODE (x),
7047                                   INTVAL (temp), reg, next_select));
7048         }
7049       break;
7050         
7051     case NEG:
7052       /* If we just want the low-order bit, the NEG isn't needed since it
7053          won't change the low-order bit.    */
7054       if (mask == 1)
7055         return force_to_mode (XEXP (x, 0), mode, mask, reg, just_select);
7056
7057       /* We need any bits less significant than the most significant bit in
7058          MASK since carries from those bits will affect the bits we are
7059          interested in.  */
7060       mask = fuller_mask;
7061       goto unop;
7062
7063     case NOT:
7064       /* (not FOO) is (xor FOO CONST), so if FOO is an LSHIFTRT, we can do the
7065          same as the XOR case above.  Ensure that the constant we form is not
7066          wider than the mode of X.  */
7067
7068       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
7069           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7070           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
7071           && (INTVAL (XEXP (XEXP (x, 0), 1)) + floor_log2 (mask)
7072               < GET_MODE_BITSIZE (GET_MODE (x)))
7073           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT)
7074         {
7075           temp = GEN_INT (mask << INTVAL (XEXP (XEXP (x, 0), 1)));
7076           temp = gen_binary (XOR, GET_MODE (x), XEXP (XEXP (x, 0), 0), temp);
7077           x = gen_binary (LSHIFTRT, GET_MODE (x), temp, XEXP (XEXP (x, 0), 1));
7078
7079           return force_to_mode (x, mode, mask, reg, next_select);
7080         }
7081
7082       /* (and (not FOO) CONST) is (not (or FOO (not CONST))), so we must
7083          use the full mask inside the NOT.  */
7084       mask = fuller_mask;
7085
7086     unop:
7087       op0 = gen_lowpart_for_combine (op_mode,
7088                                      force_to_mode (XEXP (x, 0), mode, mask,
7089                                                     reg, next_select));
7090       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
7091         x = gen_unary (code, op_mode, op_mode, op0);
7092       break;
7093
7094     case NE:
7095       /* (and (ne FOO 0) CONST) can be (and FOO CONST) if CONST is included
7096          in STORE_FLAG_VALUE and FOO has a single bit that might be nonzero,
7097          which is equal to STORE_FLAG_VALUE.  */
7098       if ((mask & ~ STORE_FLAG_VALUE) == 0 && XEXP (x, 1) == const0_rtx
7099           && exact_log2 (nonzero_bits (XEXP (x, 0), mode)) >= 0
7100           && nonzero_bits (XEXP (x, 0), mode) == STORE_FLAG_VALUE)
7101         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
7102
7103       break;
7104
7105     case IF_THEN_ELSE:
7106       /* We have no way of knowing if the IF_THEN_ELSE can itself be
7107          written in a narrower mode.  We play it safe and do not do so.  */
7108
7109       SUBST (XEXP (x, 1),
7110              gen_lowpart_for_combine (GET_MODE (x),
7111                                       force_to_mode (XEXP (x, 1), mode,
7112                                                      mask, reg, next_select)));
7113       SUBST (XEXP (x, 2),
7114              gen_lowpart_for_combine (GET_MODE (x),
7115                                       force_to_mode (XEXP (x, 2), mode,
7116                                                      mask, reg,next_select)));
7117       break;
7118       
7119     default:
7120       break;
7121     }
7122
7123   /* Ensure we return a value of the proper mode.  */
7124   return gen_lowpart_for_combine (mode, x);
7125 }
7126 \f
7127 /* Return nonzero if X is an expression that has one of two values depending on
7128    whether some other value is zero or nonzero.  In that case, we return the
7129    value that is being tested, *PTRUE is set to the value if the rtx being
7130    returned has a nonzero value, and *PFALSE is set to the other alternative.
7131
7132    If we return zero, we set *PTRUE and *PFALSE to X.  */
7133
7134 static rtx
7135 if_then_else_cond (x, ptrue, pfalse)
7136      rtx x;
7137      rtx *ptrue, *pfalse;
7138 {
7139   enum machine_mode mode = GET_MODE (x);
7140   enum rtx_code code = GET_CODE (x);
7141   unsigned int size = GET_MODE_BITSIZE (mode);
7142   rtx cond0, cond1, true0, true1, false0, false1;
7143   unsigned HOST_WIDE_INT nz;
7144
7145   /* If we are comparing a value against zero, we are done.  */
7146   if ((code == NE || code == EQ)
7147       && GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
7148     {
7149       *ptrue = (code == NE) ? const_true_rtx : const0_rtx;
7150       *pfalse = (code == NE) ? const0_rtx : const_true_rtx;
7151       return XEXP (x, 0);
7152     }
7153
7154   /* If this is a unary operation whose operand has one of two values, apply
7155      our opcode to compute those values.  */
7156   else if (GET_RTX_CLASS (code) == '1'
7157            && (cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0)) != 0)
7158     {
7159       *ptrue = gen_unary (code, mode, GET_MODE (XEXP (x, 0)), true0);
7160       *pfalse = gen_unary (code, mode, GET_MODE (XEXP (x, 0)), false0);
7161       return cond0;
7162     }
7163
7164   /* If this is a COMPARE, do nothing, since the IF_THEN_ELSE we would
7165      make can't possibly match and would suppress other optimizations.  */
7166   else if (code == COMPARE)
7167     ;
7168
7169   /* If this is a binary operation, see if either side has only one of two
7170      values.  If either one does or if both do and they are conditional on
7171      the same value, compute the new true and false values.  */
7172   else if (GET_RTX_CLASS (code) == 'c' || GET_RTX_CLASS (code) == '2'
7173            || GET_RTX_CLASS (code) == '<')
7174     {
7175       cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0);
7176       cond1 = if_then_else_cond (XEXP (x, 1), &true1, &false1);
7177
7178       if ((cond0 != 0 || cond1 != 0)
7179           && ! (cond0 != 0 && cond1 != 0 && ! rtx_equal_p (cond0, cond1)))
7180         {
7181           /* If if_then_else_cond returned zero, then true/false are the
7182              same rtl.  We must copy one of them to prevent invalid rtl
7183              sharing.  */
7184           if (cond0 == 0)
7185             true0 = copy_rtx (true0);
7186           else if (cond1 == 0)
7187             true1 = copy_rtx (true1);
7188
7189           *ptrue = gen_binary (code, mode, true0, true1);
7190           *pfalse = gen_binary (code, mode, false0, false1);
7191           return cond0 ? cond0 : cond1;
7192         }
7193
7194       /* See if we have PLUS, IOR, XOR, MINUS or UMAX, where one of the
7195          operands is zero when the other is non-zero, and vice-versa,
7196          and STORE_FLAG_VALUE is 1 or -1.  */
7197
7198       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7199           && (code == PLUS || code == IOR || code == XOR || code == MINUS
7200            || code == UMAX)
7201           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7202         {
7203           rtx op0 = XEXP (XEXP (x, 0), 1);
7204           rtx op1 = XEXP (XEXP (x, 1), 1);
7205
7206           cond0 = XEXP (XEXP (x, 0), 0);
7207           cond1 = XEXP (XEXP (x, 1), 0);
7208
7209           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7210               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7211               && reversible_comparison_p (cond1)
7212               && ((GET_CODE (cond0) == reverse_condition (GET_CODE (cond1))
7213                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7214                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7215                   || ((swap_condition (GET_CODE (cond0))
7216                        == reverse_condition (GET_CODE (cond1)))
7217                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7218                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7219               && ! side_effects_p (x))
7220             {
7221               *ptrue = gen_binary (MULT, mode, op0, const_true_rtx);
7222               *pfalse = gen_binary (MULT, mode, 
7223                                     (code == MINUS 
7224                                      ? gen_unary (NEG, mode, mode, op1) : op1),
7225                                     const_true_rtx);
7226               return cond0;
7227             }
7228         }
7229
7230       /* Similarly for MULT, AND and UMIN, execpt that for these the result
7231          is always zero.  */
7232       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7233           && (code == MULT || code == AND || code == UMIN)
7234           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7235         {
7236           cond0 = XEXP (XEXP (x, 0), 0);
7237           cond1 = XEXP (XEXP (x, 1), 0);
7238
7239           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7240               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7241               && reversible_comparison_p (cond1)
7242               && ((GET_CODE (cond0) == reverse_condition (GET_CODE (cond1))
7243                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7244                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7245                   || ((swap_condition (GET_CODE (cond0))
7246                        == reverse_condition (GET_CODE (cond1)))
7247                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7248                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7249               && ! side_effects_p (x))
7250             {
7251               *ptrue = *pfalse = const0_rtx;
7252               return cond0;
7253             }
7254         }
7255     }
7256
7257   else if (code == IF_THEN_ELSE)
7258     {
7259       /* If we have IF_THEN_ELSE already, extract the condition and
7260          canonicalize it if it is NE or EQ.  */
7261       cond0 = XEXP (x, 0);
7262       *ptrue = XEXP (x, 1), *pfalse = XEXP (x, 2);
7263       if (GET_CODE (cond0) == NE && XEXP (cond0, 1) == const0_rtx)
7264         return XEXP (cond0, 0);
7265       else if (GET_CODE (cond0) == EQ && XEXP (cond0, 1) == const0_rtx)
7266         {
7267           *ptrue = XEXP (x, 2), *pfalse = XEXP (x, 1);
7268           return XEXP (cond0, 0);
7269         }
7270       else
7271         return cond0;
7272     }
7273
7274   /* If X is a normal SUBREG with both inner and outer modes integral,
7275      we can narrow both the true and false values of the inner expression,
7276      if there is a condition.  */
7277   else if (code == SUBREG && GET_MODE_CLASS (mode) == MODE_INT
7278            && GET_MODE_CLASS (GET_MODE (SUBREG_REG (x))) == MODE_INT
7279            && GET_MODE_SIZE (mode) <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))
7280            && 0 != (cond0 = if_then_else_cond (SUBREG_REG (x),
7281                                                &true0, &false0)))
7282     {
7283       if ((GET_CODE (SUBREG_REG (x)) == REG
7284            || GET_CODE (SUBREG_REG (x)) == MEM
7285            || CONSTANT_P (SUBREG_REG (x)))
7286           && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) > UNITS_PER_WORD
7287           && (WORDS_BIG_ENDIAN || SUBREG_WORD (x) != 0))
7288         {
7289           true0 = operand_subword (true0, SUBREG_WORD (x), 0, mode);
7290           false0 = operand_subword (false0, SUBREG_WORD (x), 0, mode);
7291         }
7292       *ptrue = force_to_mode (true0, mode, GET_MODE_MASK (mode), NULL_RTX, 0);
7293       *pfalse
7294         = force_to_mode (false0, mode, GET_MODE_MASK (mode), NULL_RTX, 0);
7295
7296       return cond0;
7297     }
7298
7299   /* If X is a constant, this isn't special and will cause confusions
7300      if we treat it as such.  Likewise if it is equivalent to a constant.  */
7301   else if (CONSTANT_P (x)
7302            || ((cond0 = get_last_value (x)) != 0 && CONSTANT_P (cond0)))
7303     ;
7304
7305   /* If X is known to be either 0 or -1, those are the true and 
7306      false values when testing X.  */
7307   else if (num_sign_bit_copies (x, mode) == size)
7308     {
7309       *ptrue = constm1_rtx, *pfalse = const0_rtx;
7310       return x;
7311     }
7312
7313   /* Likewise for 0 or a single bit.  */
7314   else if (exact_log2 (nz = nonzero_bits (x, mode)) >= 0)
7315     {
7316       *ptrue = GEN_INT (nz), *pfalse = const0_rtx;
7317       return x;
7318     }
7319
7320   /* Otherwise fail; show no condition with true and false values the same.  */
7321   *ptrue = *pfalse = x;
7322   return 0;
7323 }
7324 \f
7325 /* Return the value of expression X given the fact that condition COND
7326    is known to be true when applied to REG as its first operand and VAL
7327    as its second.  X is known to not be shared and so can be modified in
7328    place.
7329
7330    We only handle the simplest cases, and specifically those cases that
7331    arise with IF_THEN_ELSE expressions.  */
7332
7333 static rtx
7334 known_cond (x, cond, reg, val)
7335      rtx x;
7336      enum rtx_code cond;
7337      rtx reg, val;
7338 {
7339   enum rtx_code code = GET_CODE (x);
7340   rtx temp;
7341   const char *fmt;
7342   int i, j;
7343
7344   if (side_effects_p (x))
7345     return x;
7346
7347   if (cond == EQ && rtx_equal_p (x, reg))
7348     return val;
7349
7350   /* If X is (abs REG) and we know something about REG's relationship
7351      with zero, we may be able to simplify this.  */
7352
7353   if (code == ABS && rtx_equal_p (XEXP (x, 0), reg) && val == const0_rtx)
7354     switch (cond)
7355       {
7356       case GE:  case GT:  case EQ:
7357         return XEXP (x, 0);
7358       case LT:  case LE:
7359         return gen_unary (NEG, GET_MODE (XEXP (x, 0)), GET_MODE (XEXP (x, 0)),
7360                           XEXP (x, 0));
7361       default:
7362         break;
7363       }
7364
7365   /* The only other cases we handle are MIN, MAX, and comparisons if the
7366      operands are the same as REG and VAL.  */
7367
7368   else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == 'c')
7369     {
7370       if (rtx_equal_p (XEXP (x, 0), val))
7371         cond = swap_condition (cond), temp = val, val = reg, reg = temp;
7372
7373       if (rtx_equal_p (XEXP (x, 0), reg) && rtx_equal_p (XEXP (x, 1), val))
7374         {
7375           if (GET_RTX_CLASS (code) == '<')
7376             {
7377               if (comparison_dominates_p (cond, code))
7378                 return const_true_rtx;
7379
7380               code = reverse_condition (code);
7381               if (code != UNKNOWN
7382                   && comparison_dominates_p (cond, code))
7383                 return const0_rtx;
7384               else
7385                 return x;
7386             }
7387           else if (code == SMAX || code == SMIN
7388                    || code == UMIN || code == UMAX)
7389             {
7390               int unsignedp = (code == UMIN || code == UMAX);
7391
7392               if (code == SMAX || code == UMAX)
7393                 cond = reverse_condition (cond);
7394
7395               switch (cond)
7396                 {
7397                 case GE:   case GT:
7398                   return unsignedp ? x : XEXP (x, 1);
7399                 case LE:   case LT:
7400                   return unsignedp ? x : XEXP (x, 0);
7401                 case GEU:  case GTU:
7402                   return unsignedp ? XEXP (x, 1) : x;
7403                 case LEU:  case LTU:
7404                   return unsignedp ? XEXP (x, 0) : x;
7405                 default:
7406                   break;
7407                 }
7408             }
7409         }
7410     }
7411
7412   fmt = GET_RTX_FORMAT (code);
7413   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7414     {
7415       if (fmt[i] == 'e')
7416         SUBST (XEXP (x, i), known_cond (XEXP (x, i), cond, reg, val));
7417       else if (fmt[i] == 'E')
7418         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
7419           SUBST (XVECEXP (x, i, j), known_cond (XVECEXP (x, i, j),
7420                                                 cond, reg, val));
7421     }
7422
7423   return x;
7424 }
7425 \f
7426 /* See if X and Y are equal for the purposes of seeing if we can rewrite an
7427    assignment as a field assignment.  */
7428
7429 static int
7430 rtx_equal_for_field_assignment_p (x, y)
7431      rtx x;
7432      rtx y;
7433 {
7434   if (x == y || rtx_equal_p (x, y))
7435     return 1;
7436
7437   if (x == 0 || y == 0 || GET_MODE (x) != GET_MODE (y))
7438     return 0;
7439
7440   /* Check for a paradoxical SUBREG of a MEM compared with the MEM.
7441      Note that all SUBREGs of MEM are paradoxical; otherwise they
7442      would have been rewritten.  */
7443   if (GET_CODE (x) == MEM && GET_CODE (y) == SUBREG
7444       && GET_CODE (SUBREG_REG (y)) == MEM
7445       && rtx_equal_p (SUBREG_REG (y),
7446                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (y)), x)))
7447     return 1;
7448
7449   if (GET_CODE (y) == MEM && GET_CODE (x) == SUBREG
7450       && GET_CODE (SUBREG_REG (x)) == MEM
7451       && rtx_equal_p (SUBREG_REG (x),
7452                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (x)), y)))
7453     return 1;
7454
7455   /* We used to see if get_last_value of X and Y were the same but that's
7456      not correct.  In one direction, we'll cause the assignment to have
7457      the wrong destination and in the case, we'll import a register into this
7458      insn that might have already have been dead.   So fail if none of the
7459      above cases are true.  */
7460   return 0;
7461 }
7462 \f
7463 /* See if X, a SET operation, can be rewritten as a bit-field assignment.
7464    Return that assignment if so.
7465
7466    We only handle the most common cases.  */
7467
7468 static rtx
7469 make_field_assignment (x)
7470      rtx x;
7471 {
7472   rtx dest = SET_DEST (x);
7473   rtx src = SET_SRC (x);
7474   rtx assign;
7475   rtx rhs, lhs;
7476   HOST_WIDE_INT c1;
7477   HOST_WIDE_INT pos;
7478   unsigned HOST_WIDE_INT len;
7479   rtx other;
7480   enum machine_mode mode;
7481
7482   /* If SRC was (and (not (ashift (const_int 1) POS)) DEST), this is
7483      a clear of a one-bit field.  We will have changed it to
7484      (and (rotate (const_int -2) POS) DEST), so check for that.  Also check
7485      for a SUBREG.  */
7486
7487   if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == ROTATE
7488       && GET_CODE (XEXP (XEXP (src, 0), 0)) == CONST_INT
7489       && INTVAL (XEXP (XEXP (src, 0), 0)) == -2
7490       && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7491     {
7492       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7493                                 1, 1, 1, 0);
7494       if (assign != 0)
7495         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7496       return x;
7497     }
7498
7499   else if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == SUBREG
7500            && subreg_lowpart_p (XEXP (src, 0))
7501            && (GET_MODE_SIZE (GET_MODE (XEXP (src, 0))) 
7502                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (src, 0)))))
7503            && GET_CODE (SUBREG_REG (XEXP (src, 0))) == ROTATE
7504            && INTVAL (XEXP (SUBREG_REG (XEXP (src, 0)), 0)) == -2
7505            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7506     {
7507       assign = make_extraction (VOIDmode, dest, 0,
7508                                 XEXP (SUBREG_REG (XEXP (src, 0)), 1),
7509                                 1, 1, 1, 0);
7510       if (assign != 0)
7511         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7512       return x;
7513     }
7514
7515   /* If SRC is (ior (ashift (const_int 1) POS) DEST), this is a set of a
7516      one-bit field.  */
7517   else if (GET_CODE (src) == IOR && GET_CODE (XEXP (src, 0)) == ASHIFT
7518            && XEXP (XEXP (src, 0), 0) == const1_rtx
7519            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7520     {
7521       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7522                                 1, 1, 1, 0);
7523       if (assign != 0)
7524         return gen_rtx_SET (VOIDmode, assign, const1_rtx);
7525       return x;
7526     }
7527
7528   /* The other case we handle is assignments into a constant-position
7529      field.  They look like (ior/xor (and DEST C1) OTHER).  If C1 represents
7530      a mask that has all one bits except for a group of zero bits and
7531      OTHER is known to have zeros where C1 has ones, this is such an
7532      assignment.  Compute the position and length from C1.  Shift OTHER
7533      to the appropriate position, force it to the required mode, and
7534      make the extraction.  Check for the AND in both operands.  */
7535
7536   if (GET_CODE (src) != IOR && GET_CODE (src) != XOR)
7537     return x;
7538
7539   rhs = expand_compound_operation (XEXP (src, 0));
7540   lhs = expand_compound_operation (XEXP (src, 1));
7541
7542   if (GET_CODE (rhs) == AND
7543       && GET_CODE (XEXP (rhs, 1)) == CONST_INT
7544       && rtx_equal_for_field_assignment_p (XEXP (rhs, 0), dest))
7545     c1 = INTVAL (XEXP (rhs, 1)), other = lhs;
7546   else if (GET_CODE (lhs) == AND
7547            && GET_CODE (XEXP (lhs, 1)) == CONST_INT
7548            && rtx_equal_for_field_assignment_p (XEXP (lhs, 0), dest))
7549     c1 = INTVAL (XEXP (lhs, 1)), other = rhs;
7550   else
7551     return x;
7552
7553   pos = get_pos_from_mask ((~ c1) & GET_MODE_MASK (GET_MODE (dest)), &len);
7554   if (pos < 0 || pos + len > GET_MODE_BITSIZE (GET_MODE (dest))
7555       || GET_MODE_BITSIZE (GET_MODE (dest)) > HOST_BITS_PER_WIDE_INT
7556       || (c1 & nonzero_bits (other, GET_MODE (dest))) != 0)
7557     return x;
7558
7559   assign = make_extraction (VOIDmode, dest, pos, NULL_RTX, len, 1, 1, 0);
7560   if (assign == 0)
7561     return x;
7562
7563   /* The mode to use for the source is the mode of the assignment, or of
7564      what is inside a possible STRICT_LOW_PART.  */
7565   mode = (GET_CODE (assign) == STRICT_LOW_PART 
7566           ? GET_MODE (XEXP (assign, 0)) : GET_MODE (assign));
7567
7568   /* Shift OTHER right POS places and make it the source, restricting it
7569      to the proper length and mode.  */
7570
7571   src = force_to_mode (simplify_shift_const (NULL_RTX, LSHIFTRT,
7572                                              GET_MODE (src), other, pos),
7573                        mode,
7574                        GET_MODE_BITSIZE (mode) >= HOST_BITS_PER_WIDE_INT
7575                        ? GET_MODE_MASK (mode)
7576                        : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
7577                        dest, 0);
7578
7579   return gen_rtx_combine (SET, VOIDmode, assign, src);
7580 }
7581 \f
7582 /* See if X is of the form (+ (* a c) (* b c)) and convert to (* (+ a b) c)
7583    if so.  */
7584
7585 static rtx
7586 apply_distributive_law (x)
7587      rtx x;
7588 {
7589   enum rtx_code code = GET_CODE (x);
7590   rtx lhs, rhs, other;
7591   rtx tem;
7592   enum rtx_code inner_code;
7593
7594   /* Distributivity is not true for floating point.
7595      It can change the value.  So don't do it.
7596      -- rms and moshier@world.std.com.  */
7597   if (FLOAT_MODE_P (GET_MODE (x)))
7598     return x;
7599
7600   /* The outer operation can only be one of the following:  */
7601   if (code != IOR && code != AND && code != XOR
7602       && code != PLUS && code != MINUS)
7603     return x;
7604
7605   lhs = XEXP (x, 0), rhs = XEXP (x, 1);
7606
7607   /* If either operand is a primitive we can't do anything, so get out
7608      fast.  */
7609   if (GET_RTX_CLASS (GET_CODE (lhs)) == 'o'
7610       || GET_RTX_CLASS (GET_CODE (rhs)) == 'o')
7611     return x;
7612
7613   lhs = expand_compound_operation (lhs);
7614   rhs = expand_compound_operation (rhs);
7615   inner_code = GET_CODE (lhs);
7616   if (inner_code != GET_CODE (rhs))
7617     return x;
7618
7619   /* See if the inner and outer operations distribute.  */
7620   switch (inner_code)
7621     {
7622     case LSHIFTRT:
7623     case ASHIFTRT:
7624     case AND:
7625     case IOR:
7626       /* These all distribute except over PLUS.  */
7627       if (code == PLUS || code == MINUS)
7628         return x;
7629       break;
7630
7631     case MULT:
7632       if (code != PLUS && code != MINUS)
7633         return x;
7634       break;
7635
7636     case ASHIFT:
7637       /* This is also a multiply, so it distributes over everything.  */
7638       break;
7639
7640     case SUBREG:
7641       /* Non-paradoxical SUBREGs distributes over all operations, provided
7642          the inner modes and word numbers are the same, this is an extraction
7643          of a low-order part, we don't convert an fp operation to int or
7644          vice versa, and we would not be converting a single-word
7645          operation into a multi-word operation.  The latter test is not
7646          required, but it prevents generating unneeded multi-word operations.
7647          Some of the previous tests are redundant given the latter test, but
7648          are retained because they are required for correctness.
7649
7650          We produce the result slightly differently in this case.  */
7651
7652       if (GET_MODE (SUBREG_REG (lhs)) != GET_MODE (SUBREG_REG (rhs))
7653           || SUBREG_WORD (lhs) != SUBREG_WORD (rhs)
7654           || ! subreg_lowpart_p (lhs)
7655           || (GET_MODE_CLASS (GET_MODE (lhs))
7656               != GET_MODE_CLASS (GET_MODE (SUBREG_REG (lhs))))
7657           || (GET_MODE_SIZE (GET_MODE (lhs))
7658               > GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))))
7659           || GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))) > UNITS_PER_WORD)
7660         return x;
7661
7662       tem = gen_binary (code, GET_MODE (SUBREG_REG (lhs)),
7663                         SUBREG_REG (lhs), SUBREG_REG (rhs));
7664       return gen_lowpart_for_combine (GET_MODE (x), tem);
7665
7666     default:
7667       return x;
7668     }
7669
7670   /* Set LHS and RHS to the inner operands (A and B in the example
7671      above) and set OTHER to the common operand (C in the example).
7672      These is only one way to do this unless the inner operation is
7673      commutative.  */
7674   if (GET_RTX_CLASS (inner_code) == 'c'
7675       && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 0)))
7676     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 1);
7677   else if (GET_RTX_CLASS (inner_code) == 'c'
7678            && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 1)))
7679     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 0);
7680   else if (GET_RTX_CLASS (inner_code) == 'c'
7681            && rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 0)))
7682     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 1);
7683   else if (rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 1)))
7684     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 0);
7685   else
7686     return x;
7687
7688   /* Form the new inner operation, seeing if it simplifies first.  */
7689   tem = gen_binary (code, GET_MODE (x), lhs, rhs);
7690
7691   /* There is one exception to the general way of distributing:
7692      (a ^ b) | (a ^ c) -> (~a) & (b ^ c)  */
7693   if (code == XOR && inner_code == IOR)
7694     {
7695       inner_code = AND;
7696       other = gen_unary (NOT, GET_MODE (x), GET_MODE (x), other);
7697     }
7698
7699   /* We may be able to continuing distributing the result, so call
7700      ourselves recursively on the inner operation before forming the
7701      outer operation, which we return.  */
7702   return gen_binary (inner_code, GET_MODE (x),
7703                      apply_distributive_law (tem), other);
7704 }
7705 \f
7706 /* We have X, a logical `and' of VAROP with the constant CONSTOP, to be done
7707    in MODE.
7708
7709    Return an equivalent form, if different from X.  Otherwise, return X.  If
7710    X is zero, we are to always construct the equivalent form.  */
7711
7712 static rtx
7713 simplify_and_const_int (x, mode, varop, constop)
7714      rtx x;
7715      enum machine_mode mode;
7716      rtx varop;
7717      unsigned HOST_WIDE_INT constop;
7718 {
7719   unsigned HOST_WIDE_INT nonzero;
7720   int i;
7721
7722   /* Simplify VAROP knowing that we will be only looking at some of the
7723      bits in it.  */
7724   varop = force_to_mode (varop, mode, constop, NULL_RTX, 0);
7725
7726   /* If VAROP is a CLOBBER, we will fail so return it; if it is a
7727      CONST_INT, we are done.  */
7728   if (GET_CODE (varop) == CLOBBER || GET_CODE (varop) == CONST_INT)
7729     return varop;
7730
7731   /* See what bits may be nonzero in VAROP.  Unlike the general case of
7732      a call to nonzero_bits, here we don't care about bits outside
7733      MODE.  */
7734
7735   nonzero = nonzero_bits (varop, mode) & GET_MODE_MASK (mode);
7736   nonzero = trunc_int_for_mode (nonzero, mode);
7737
7738   /* Turn off all bits in the constant that are known to already be zero.
7739      Thus, if the AND isn't needed at all, we will have CONSTOP == NONZERO_BITS
7740      which is tested below.  */
7741
7742   constop &= nonzero;
7743
7744   /* If we don't have any bits left, return zero.  */
7745   if (constop == 0)
7746     return const0_rtx;
7747
7748   /* If VAROP is a NEG of something known to be zero or 1 and CONSTOP is
7749      a power of two, we can replace this with a ASHIFT.  */
7750   if (GET_CODE (varop) == NEG && nonzero_bits (XEXP (varop, 0), mode) == 1
7751       && (i = exact_log2 (constop)) >= 0)
7752     return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (varop, 0), i);
7753                                  
7754   /* If VAROP is an IOR or XOR, apply the AND to both branches of the IOR
7755      or XOR, then try to apply the distributive law.  This may eliminate
7756      operations if either branch can be simplified because of the AND.
7757      It may also make some cases more complex, but those cases probably
7758      won't match a pattern either with or without this.  */
7759
7760   if (GET_CODE (varop) == IOR || GET_CODE (varop) == XOR)
7761     return
7762       gen_lowpart_for_combine
7763         (mode,
7764          apply_distributive_law
7765          (gen_binary (GET_CODE (varop), GET_MODE (varop),
7766                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7767                                               XEXP (varop, 0), constop),
7768                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7769                                               XEXP (varop, 1), constop))));
7770
7771   /* Get VAROP in MODE.  Try to get a SUBREG if not.  Don't make a new SUBREG
7772      if we already had one (just check for the simplest cases).  */
7773   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
7774       && GET_MODE (XEXP (x, 0)) == mode
7775       && SUBREG_REG (XEXP (x, 0)) == varop)
7776     varop = XEXP (x, 0);
7777   else
7778     varop = gen_lowpart_for_combine (mode, varop);
7779
7780   /* If we can't make the SUBREG, try to return what we were given.  */
7781   if (GET_CODE (varop) == CLOBBER)
7782     return x ? x : varop;
7783
7784   /* If we are only masking insignificant bits, return VAROP.  */
7785   if (constop == nonzero)
7786     x = varop;
7787
7788   /* Otherwise, return an AND.  See how much, if any, of X we can use.  */
7789   else if (x == 0 || GET_CODE (x) != AND || GET_MODE (x) != mode)
7790     x = gen_binary (AND, mode, varop, GEN_INT (constop));
7791
7792   else
7793     {
7794       if (GET_CODE (XEXP (x, 1)) != CONST_INT
7795           || (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) != constop)
7796         SUBST (XEXP (x, 1), GEN_INT (constop));
7797
7798       SUBST (XEXP (x, 0), varop);
7799     }
7800
7801   return x;
7802 }
7803 \f
7804 /* We let num_sign_bit_copies recur into nonzero_bits as that is useful.
7805    We don't let nonzero_bits recur into num_sign_bit_copies, because that
7806    is less useful.  We can't allow both, because that results in exponential
7807    run time recursion.  There is a nullstone testcase that triggered
7808    this.  This macro avoids accidental uses of num_sign_bit_copies.  */
7809 #define num_sign_bit_copies()
7810
7811 /* Given an expression, X, compute which bits in X can be non-zero.
7812    We don't care about bits outside of those defined in MODE.
7813
7814    For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
7815    a shift, AND, or zero_extract, we can do better.  */
7816
7817 static unsigned HOST_WIDE_INT
7818 nonzero_bits (x, mode)
7819      rtx x;
7820      enum machine_mode mode;
7821 {
7822   unsigned HOST_WIDE_INT nonzero = GET_MODE_MASK (mode);
7823   unsigned HOST_WIDE_INT inner_nz;
7824   enum rtx_code code;
7825   unsigned int mode_width = GET_MODE_BITSIZE (mode);
7826   rtx tem;
7827
7828   /* For floating-point values, assume all bits are needed.  */
7829   if (FLOAT_MODE_P (GET_MODE (x)) || FLOAT_MODE_P (mode))
7830     return nonzero;
7831
7832   /* If X is wider than MODE, use its mode instead.  */
7833   if (GET_MODE_BITSIZE (GET_MODE (x)) > mode_width)
7834     {
7835       mode = GET_MODE (x);
7836       nonzero = GET_MODE_MASK (mode);
7837       mode_width = GET_MODE_BITSIZE (mode);
7838     }
7839
7840   if (mode_width > HOST_BITS_PER_WIDE_INT)
7841     /* Our only callers in this case look for single bit values.  So
7842        just return the mode mask.  Those tests will then be false.  */
7843     return nonzero;
7844
7845 #ifndef WORD_REGISTER_OPERATIONS
7846   /* If MODE is wider than X, but both are a single word for both the host
7847      and target machines, we can compute this from which bits of the 
7848      object might be nonzero in its own mode, taking into account the fact
7849      that on many CISC machines, accessing an object in a wider mode
7850      causes the high-order bits to become undefined.  So they are
7851      not known to be zero.  */
7852
7853   if (GET_MODE (x) != VOIDmode && GET_MODE (x) != mode
7854       && GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD
7855       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
7856       && GET_MODE_BITSIZE (mode) > GET_MODE_BITSIZE (GET_MODE (x)))
7857     {
7858       nonzero &= nonzero_bits (x, GET_MODE (x));
7859       nonzero |= GET_MODE_MASK (mode) & ~ GET_MODE_MASK (GET_MODE (x));
7860       return nonzero;
7861     }
7862 #endif
7863
7864   code = GET_CODE (x);
7865   switch (code)
7866     {
7867     case REG:
7868 #ifdef POINTERS_EXTEND_UNSIGNED
7869       /* If pointers extend unsigned and this is a pointer in Pmode, say that
7870          all the bits above ptr_mode are known to be zero.  */
7871       if (POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
7872           && REGNO_POINTER_FLAG (REGNO (x)))
7873         nonzero &= GET_MODE_MASK (ptr_mode);
7874 #endif
7875
7876 #ifdef STACK_BOUNDARY
7877       /* If this is the stack pointer, we may know something about its
7878          alignment.  If PUSH_ROUNDING is defined, it is possible for the
7879          stack to be momentarily aligned only to that amount, so we pick
7880          the least alignment.  */
7881
7882       /* We can't check for arg_pointer_rtx here, because it is not
7883          guaranteed to have as much alignment as the stack pointer.
7884          In particular, in the Irix6 n64 ABI, the stack has 128 bit
7885          alignment but the argument pointer has only 64 bit alignment.  */
7886
7887       if ((x == frame_pointer_rtx
7888            || x == stack_pointer_rtx
7889            || x == hard_frame_pointer_rtx
7890            || (REGNO (x) >= FIRST_VIRTUAL_REGISTER
7891                && REGNO (x) <= LAST_VIRTUAL_REGISTER))
7892 #ifdef STACK_BIAS
7893           && !STACK_BIAS
7894 #endif        
7895               )
7896         {
7897           int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
7898
7899 #ifdef PUSH_ROUNDING
7900           if (REGNO (x) == STACK_POINTER_REGNUM && PUSH_ARGS)
7901             sp_alignment = MIN (PUSH_ROUNDING (1), sp_alignment);
7902 #endif
7903
7904           /* We must return here, otherwise we may get a worse result from
7905              one of the choices below.  There is nothing useful below as
7906              far as the stack pointer is concerned.  */
7907           return nonzero &= ~ (sp_alignment - 1);
7908         }
7909 #endif
7910
7911       /* If X is a register whose nonzero bits value is current, use it.
7912          Otherwise, if X is a register whose value we can find, use that
7913          value.  Otherwise, use the previously-computed global nonzero bits
7914          for this register.  */
7915
7916       if (reg_last_set_value[REGNO (x)] != 0
7917           && reg_last_set_mode[REGNO (x)] == mode
7918           && (reg_last_set_label[REGNO (x)] == label_tick
7919               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
7920                   && REG_N_SETS (REGNO (x)) == 1
7921                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, 
7922                                         REGNO (x))))
7923           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
7924         return reg_last_set_nonzero_bits[REGNO (x)];
7925
7926       tem = get_last_value (x);
7927
7928       if (tem)
7929         {
7930 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
7931           /* If X is narrower than MODE and TEM is a non-negative
7932              constant that would appear negative in the mode of X,
7933              sign-extend it for use in reg_nonzero_bits because some
7934              machines (maybe most) will actually do the sign-extension
7935              and this is the conservative approach. 
7936
7937              ??? For 2.5, try to tighten up the MD files in this regard
7938              instead of this kludge.  */
7939
7940           if (GET_MODE_BITSIZE (GET_MODE (x)) < mode_width
7941               && GET_CODE (tem) == CONST_INT
7942               && INTVAL (tem) > 0
7943               && 0 != (INTVAL (tem)
7944                        & ((HOST_WIDE_INT) 1
7945                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
7946             tem = GEN_INT (INTVAL (tem)
7947                            | ((HOST_WIDE_INT) (-1)
7948                               << GET_MODE_BITSIZE (GET_MODE (x))));
7949 #endif
7950           return nonzero_bits (tem, mode);
7951         }
7952       else if (nonzero_sign_valid && reg_nonzero_bits[REGNO (x)])
7953         return reg_nonzero_bits[REGNO (x)] & nonzero;
7954       else
7955         return nonzero;
7956
7957     case CONST_INT:
7958 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
7959       /* If X is negative in MODE, sign-extend the value.  */
7960       if (INTVAL (x) > 0 && mode_width < BITS_PER_WORD
7961           && 0 != (INTVAL (x) & ((HOST_WIDE_INT) 1 << (mode_width - 1))))
7962         return (INTVAL (x) | ((HOST_WIDE_INT) (-1) << mode_width));
7963 #endif
7964
7965       return INTVAL (x);
7966
7967     case MEM:
7968 #ifdef LOAD_EXTEND_OP
7969       /* In many, if not most, RISC machines, reading a byte from memory
7970          zeros the rest of the register.  Noticing that fact saves a lot
7971          of extra zero-extends.  */
7972       if (LOAD_EXTEND_OP (GET_MODE (x)) == ZERO_EXTEND)
7973         nonzero &= GET_MODE_MASK (GET_MODE (x));
7974 #endif
7975       break;
7976
7977     case EQ:  case NE:
7978     case GT:  case GTU:
7979     case LT:  case LTU:
7980     case GE:  case GEU:
7981     case LE:  case LEU:
7982
7983       /* If this produces an integer result, we know which bits are set.
7984          Code here used to clear bits outside the mode of X, but that is
7985          now done above.  */
7986
7987       if (GET_MODE_CLASS (mode) == MODE_INT
7988           && mode_width <= HOST_BITS_PER_WIDE_INT)
7989         nonzero = STORE_FLAG_VALUE;
7990       break;
7991
7992     case NEG:
7993 #if 0
7994       /* Disabled to avoid exponential mutual recursion between nonzero_bits
7995          and num_sign_bit_copies.  */
7996       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
7997           == GET_MODE_BITSIZE (GET_MODE (x)))
7998         nonzero = 1;
7999 #endif
8000
8001       if (GET_MODE_SIZE (GET_MODE (x)) < mode_width)
8002         nonzero |= (GET_MODE_MASK (mode) & ~ GET_MODE_MASK (GET_MODE (x)));
8003       break;
8004
8005     case ABS:
8006 #if 0
8007       /* Disabled to avoid exponential mutual recursion between nonzero_bits
8008          and num_sign_bit_copies.  */
8009       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
8010           == GET_MODE_BITSIZE (GET_MODE (x)))
8011         nonzero = 1;
8012 #endif
8013       break;
8014
8015     case TRUNCATE:
8016       nonzero &= (nonzero_bits (XEXP (x, 0), mode) & GET_MODE_MASK (mode));
8017       break;
8018
8019     case ZERO_EXTEND:
8020       nonzero &= nonzero_bits (XEXP (x, 0), mode);
8021       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8022         nonzero &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8023       break;
8024
8025     case SIGN_EXTEND:
8026       /* If the sign bit is known clear, this is the same as ZERO_EXTEND.
8027          Otherwise, show all the bits in the outer mode but not the inner
8028          may be non-zero.  */
8029       inner_nz = nonzero_bits (XEXP (x, 0), mode);
8030       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8031         {
8032           inner_nz &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8033           if (inner_nz
8034               & (((HOST_WIDE_INT) 1
8035                   << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1))))
8036             inner_nz |= (GET_MODE_MASK (mode)
8037                           & ~ GET_MODE_MASK (GET_MODE (XEXP (x, 0))));
8038         }
8039
8040       nonzero &= inner_nz;
8041       break;
8042
8043     case AND:
8044       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8045                   & nonzero_bits (XEXP (x, 1), mode));
8046       break;
8047
8048     case XOR:   case IOR:
8049     case UMIN:  case UMAX:  case SMIN:  case SMAX:
8050       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8051                   | nonzero_bits (XEXP (x, 1), mode));
8052       break;
8053
8054     case PLUS:  case MINUS:
8055     case MULT:
8056     case DIV:   case UDIV:
8057     case MOD:   case UMOD:
8058       /* We can apply the rules of arithmetic to compute the number of
8059          high- and low-order zero bits of these operations.  We start by
8060          computing the width (position of the highest-order non-zero bit)
8061          and the number of low-order zero bits for each value.  */
8062       {
8063         unsigned HOST_WIDE_INT nz0 = nonzero_bits (XEXP (x, 0), mode);
8064         unsigned HOST_WIDE_INT nz1 = nonzero_bits (XEXP (x, 1), mode);
8065         int width0 = floor_log2 (nz0) + 1;
8066         int width1 = floor_log2 (nz1) + 1;
8067         int low0 = floor_log2 (nz0 & -nz0);
8068         int low1 = floor_log2 (nz1 & -nz1);
8069         HOST_WIDE_INT op0_maybe_minusp
8070           = (nz0 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8071         HOST_WIDE_INT op1_maybe_minusp
8072           = (nz1 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8073         unsigned int result_width = mode_width;
8074         int result_low = 0;
8075
8076         switch (code)
8077           {
8078           case PLUS:
8079 #ifdef STACK_BIAS
8080             if (STACK_BIAS
8081                 && (XEXP (x, 0) == stack_pointer_rtx
8082                     || XEXP (x, 0) == frame_pointer_rtx)
8083                 && GET_CODE (XEXP (x, 1)) == CONST_INT)
8084               {
8085                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
8086
8087                 nz0 = (GET_MODE_MASK (mode) & ~ (sp_alignment - 1));
8088                 nz1 = INTVAL (XEXP (x, 1)) - STACK_BIAS;
8089                 width0 = floor_log2 (nz0) + 1;
8090                 width1 = floor_log2 (nz1) + 1;
8091                 low0 = floor_log2 (nz0 & -nz0);
8092                 low1 = floor_log2 (nz1 & -nz1);
8093               }
8094 #endif    
8095             result_width = MAX (width0, width1) + 1;
8096             result_low = MIN (low0, low1);
8097             break;
8098           case MINUS:
8099             result_low = MIN (low0, low1);
8100             break;
8101           case MULT:
8102             result_width = width0 + width1;
8103             result_low = low0 + low1;
8104             break;
8105           case DIV:
8106             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8107               result_width = width0;
8108             break;
8109           case UDIV:
8110             result_width = width0;
8111             break;
8112           case MOD:
8113             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8114               result_width = MIN (width0, width1);
8115             result_low = MIN (low0, low1);
8116             break;
8117           case UMOD:
8118             result_width = MIN (width0, width1);
8119             result_low = MIN (low0, low1);
8120             break;
8121           default:
8122             abort ();
8123           }
8124
8125         if (result_width < mode_width)
8126           nonzero &= ((HOST_WIDE_INT) 1 << result_width) - 1;
8127
8128         if (result_low > 0)
8129           nonzero &= ~ (((HOST_WIDE_INT) 1 << result_low) - 1);
8130       }
8131       break;
8132
8133     case ZERO_EXTRACT:
8134       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8135           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8136         nonzero &= ((HOST_WIDE_INT) 1 << INTVAL (XEXP (x, 1))) - 1;
8137       break;
8138
8139     case SUBREG:
8140       /* If this is a SUBREG formed for a promoted variable that has
8141          been zero-extended, we know that at least the high-order bits
8142          are zero, though others might be too.  */
8143
8144       if (SUBREG_PROMOTED_VAR_P (x) && SUBREG_PROMOTED_UNSIGNED_P (x))
8145         nonzero = (GET_MODE_MASK (GET_MODE (x))
8146                    & nonzero_bits (SUBREG_REG (x), GET_MODE (x)));
8147
8148       /* If the inner mode is a single word for both the host and target
8149          machines, we can compute this from which bits of the inner
8150          object might be nonzero.  */
8151       if (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) <= BITS_PER_WORD
8152           && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8153               <= HOST_BITS_PER_WIDE_INT))
8154         {
8155           nonzero &= nonzero_bits (SUBREG_REG (x), mode);
8156
8157 #if defined (WORD_REGISTER_OPERATIONS) && defined (LOAD_EXTEND_OP)
8158           /* If this is a typical RISC machine, we only have to worry
8159              about the way loads are extended.  */
8160           if (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND
8161               ? (((nonzero
8162                    & (((unsigned HOST_WIDE_INT) 1
8163                        << (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) - 1))))
8164                   != 0))
8165               : LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) != ZERO_EXTEND)
8166 #endif
8167             {
8168               /* On many CISC machines, accessing an object in a wider mode
8169                  causes the high-order bits to become undefined.  So they are
8170                  not known to be zero.  */
8171               if (GET_MODE_SIZE (GET_MODE (x))
8172                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8173                 nonzero |= (GET_MODE_MASK (GET_MODE (x))
8174                             & ~ GET_MODE_MASK (GET_MODE (SUBREG_REG (x))));
8175             }
8176         }
8177       break;
8178
8179     case ASHIFTRT:
8180     case LSHIFTRT:
8181     case ASHIFT:
8182     case ROTATE:
8183       /* The nonzero bits are in two classes: any bits within MODE
8184          that aren't in GET_MODE (x) are always significant.  The rest of the
8185          nonzero bits are those that are significant in the operand of
8186          the shift when shifted the appropriate number of bits.  This
8187          shows that high-order bits are cleared by the right shift and
8188          low-order bits by left shifts.  */
8189       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8190           && INTVAL (XEXP (x, 1)) >= 0
8191           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8192         {
8193           enum machine_mode inner_mode = GET_MODE (x);
8194           unsigned int width = GET_MODE_BITSIZE (inner_mode);
8195           int count = INTVAL (XEXP (x, 1));
8196           unsigned HOST_WIDE_INT mode_mask = GET_MODE_MASK (inner_mode);
8197           unsigned HOST_WIDE_INT op_nonzero = nonzero_bits (XEXP (x, 0), mode);
8198           unsigned HOST_WIDE_INT inner = op_nonzero & mode_mask;
8199           unsigned HOST_WIDE_INT outer = 0;
8200
8201           if (mode_width > width)
8202             outer = (op_nonzero & nonzero & ~ mode_mask);
8203
8204           if (code == LSHIFTRT)
8205             inner >>= count;
8206           else if (code == ASHIFTRT)
8207             {
8208               inner >>= count;
8209
8210               /* If the sign bit may have been nonzero before the shift, we
8211                  need to mark all the places it could have been copied to
8212                  by the shift as possibly nonzero.  */
8213               if (inner & ((HOST_WIDE_INT) 1 << (width - 1 - count)))
8214                 inner |= (((HOST_WIDE_INT) 1 << count) - 1) << (width - count);
8215             }
8216           else if (code == ASHIFT)
8217             inner <<= count;
8218           else
8219             inner = ((inner << (count % width)
8220                       | (inner >> (width - (count % width)))) & mode_mask);
8221
8222           nonzero &= (outer | inner);
8223         }
8224       break;
8225
8226     case FFS:
8227       /* This is at most the number of bits in the mode.  */
8228       nonzero = ((HOST_WIDE_INT) 1 << (floor_log2 (mode_width) + 1)) - 1;
8229       break;
8230
8231     case IF_THEN_ELSE:
8232       nonzero &= (nonzero_bits (XEXP (x, 1), mode)
8233                   | nonzero_bits (XEXP (x, 2), mode));
8234       break;
8235       
8236     default:
8237       break;
8238     }
8239
8240   return nonzero;
8241 }
8242
8243 /* See the macro definition above.  */
8244 #undef num_sign_bit_copies
8245 \f
8246 /* Return the number of bits at the high-order end of X that are known to
8247    be equal to the sign bit.  X will be used in mode MODE; if MODE is
8248    VOIDmode, X will be used in its own mode.  The returned value  will always
8249    be between 1 and the number of bits in MODE.  */
8250
8251 static unsigned int
8252 num_sign_bit_copies (x, mode)
8253      rtx x;
8254      enum machine_mode mode;
8255 {
8256   enum rtx_code code = GET_CODE (x);
8257   unsigned int bitwidth;
8258   int num0, num1, result;
8259   unsigned HOST_WIDE_INT nonzero;
8260   rtx tem;
8261
8262   /* If we weren't given a mode, use the mode of X.  If the mode is still
8263      VOIDmode, we don't know anything.  Likewise if one of the modes is
8264      floating-point.  */
8265
8266   if (mode == VOIDmode)
8267     mode = GET_MODE (x);
8268
8269   if (mode == VOIDmode || FLOAT_MODE_P (mode) || FLOAT_MODE_P (GET_MODE (x)))
8270     return 1;
8271
8272   bitwidth = GET_MODE_BITSIZE (mode);
8273
8274   /* For a smaller object, just ignore the high bits.  */
8275   if (bitwidth < GET_MODE_BITSIZE (GET_MODE (x)))
8276     {
8277       num0 = num_sign_bit_copies (x, GET_MODE (x));
8278       return MAX (1,
8279                   num0 - (int) (GET_MODE_BITSIZE (GET_MODE (x)) - bitwidth));
8280     }
8281      
8282   if (GET_MODE (x) != VOIDmode && bitwidth > GET_MODE_BITSIZE (GET_MODE (x)))
8283     {
8284 #ifndef WORD_REGISTER_OPERATIONS
8285   /* If this machine does not do all register operations on the entire
8286      register and MODE is wider than the mode of X, we can say nothing
8287      at all about the high-order bits.  */
8288       return 1;
8289 #else
8290       /* Likewise on machines that do, if the mode of the object is smaller
8291          than a word and loads of that size don't sign extend, we can say
8292          nothing about the high order bits.  */
8293       if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
8294 #ifdef LOAD_EXTEND_OP
8295           && LOAD_EXTEND_OP (GET_MODE (x)) != SIGN_EXTEND
8296 #endif
8297           )
8298         return 1;
8299 #endif
8300     }
8301
8302   switch (code)
8303     {
8304     case REG:
8305
8306 #ifdef POINTERS_EXTEND_UNSIGNED
8307       /* If pointers extend signed and this is a pointer in Pmode, say that
8308          all the bits above ptr_mode are known to be sign bit copies.  */
8309       if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode && mode == Pmode
8310           && REGNO_POINTER_FLAG (REGNO (x)))
8311         return GET_MODE_BITSIZE (Pmode) - GET_MODE_BITSIZE (ptr_mode) + 1;
8312 #endif
8313
8314       if (reg_last_set_value[REGNO (x)] != 0
8315           && reg_last_set_mode[REGNO (x)] == mode
8316           && (reg_last_set_label[REGNO (x)] == label_tick
8317               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
8318                   && REG_N_SETS (REGNO (x)) == 1
8319                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start,
8320                                         REGNO (x))))
8321           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
8322         return reg_last_set_sign_bit_copies[REGNO (x)];
8323
8324       tem =  get_last_value (x);
8325       if (tem != 0)
8326         return num_sign_bit_copies (tem, mode);
8327
8328       if (nonzero_sign_valid && reg_sign_bit_copies[REGNO (x)] != 0)
8329         return reg_sign_bit_copies[REGNO (x)];
8330       break;
8331
8332     case MEM:
8333 #ifdef LOAD_EXTEND_OP
8334       /* Some RISC machines sign-extend all loads of smaller than a word.  */
8335       if (LOAD_EXTEND_OP (GET_MODE (x)) == SIGN_EXTEND)
8336         return MAX (1, ((int) bitwidth
8337                         - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1));
8338 #endif
8339       break;
8340
8341     case CONST_INT:
8342       /* If the constant is negative, take its 1's complement and remask.
8343          Then see how many zero bits we have.  */
8344       nonzero = INTVAL (x) & GET_MODE_MASK (mode);
8345       if (bitwidth <= HOST_BITS_PER_WIDE_INT
8346           && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8347         nonzero = (~ nonzero) & GET_MODE_MASK (mode);
8348
8349       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
8350
8351     case SUBREG:
8352       /* If this is a SUBREG for a promoted object that is sign-extended
8353          and we are looking at it in a wider mode, we know that at least the
8354          high-order bits are known to be sign bit copies.  */
8355
8356       if (SUBREG_PROMOTED_VAR_P (x) && ! SUBREG_PROMOTED_UNSIGNED_P (x))
8357         {
8358           num0 = num_sign_bit_copies (SUBREG_REG (x), mode);
8359           return MAX ((int) bitwidth
8360                       - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1,
8361                       num0);
8362         }
8363                  
8364       /* For a smaller object, just ignore the high bits.  */
8365       if (bitwidth <= GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))))
8366         {
8367           num0 = num_sign_bit_copies (SUBREG_REG (x), VOIDmode);
8368           return MAX (1, (num0
8369                           - (int) (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8370                                    - bitwidth)));
8371         }
8372
8373 #ifdef WORD_REGISTER_OPERATIONS
8374 #ifdef LOAD_EXTEND_OP
8375       /* For paradoxical SUBREGs on machines where all register operations
8376          affect the entire register, just look inside.  Note that we are
8377          passing MODE to the recursive call, so the number of sign bit copies
8378          will remain relative to that mode, not the inner mode.  */
8379
8380       /* This works only if loads sign extend.  Otherwise, if we get a
8381          reload for the inner part, it may be loaded from the stack, and
8382          then we lose all sign bit copies that existed before the store
8383          to the stack.  */
8384
8385       if ((GET_MODE_SIZE (GET_MODE (x))
8386            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8387           && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND)
8388         return num_sign_bit_copies (SUBREG_REG (x), mode);
8389 #endif
8390 #endif
8391       break;
8392
8393     case SIGN_EXTRACT:
8394       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
8395         return MAX (1, (int) bitwidth - INTVAL (XEXP (x, 1)));
8396       break;
8397
8398     case SIGN_EXTEND: 
8399       return (bitwidth - GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8400               + num_sign_bit_copies (XEXP (x, 0), VOIDmode));
8401
8402     case TRUNCATE:
8403       /* For a smaller object, just ignore the high bits.  */
8404       num0 = num_sign_bit_copies (XEXP (x, 0), VOIDmode);
8405       return MAX (1, (num0 - (int) (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8406                                     - bitwidth)));
8407
8408     case NOT:
8409       return num_sign_bit_copies (XEXP (x, 0), mode);
8410
8411     case ROTATE:       case ROTATERT:
8412       /* If we are rotating left by a number of bits less than the number
8413          of sign bit copies, we can just subtract that amount from the
8414          number.  */
8415       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8416           && INTVAL (XEXP (x, 1)) >= 0 && INTVAL (XEXP (x, 1)) < bitwidth)
8417         {
8418           num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8419           return MAX (1, num0 - (code == ROTATE ? INTVAL (XEXP (x, 1))
8420                                  : (int) bitwidth - INTVAL (XEXP (x, 1))));
8421         }
8422       break;
8423
8424     case NEG:
8425       /* In general, this subtracts one sign bit copy.  But if the value
8426          is known to be positive, the number of sign bit copies is the
8427          same as that of the input.  Finally, if the input has just one bit
8428          that might be nonzero, all the bits are copies of the sign bit.  */
8429       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8430       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8431         return num0 > 1 ? num0 - 1 : 1;
8432
8433       nonzero = nonzero_bits (XEXP (x, 0), mode);
8434       if (nonzero == 1)
8435         return bitwidth;
8436
8437       if (num0 > 1
8438           && (((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero))
8439         num0--;
8440
8441       return num0;
8442
8443     case IOR:   case AND:   case XOR:
8444     case SMIN:  case SMAX:  case UMIN:  case UMAX:
8445       /* Logical operations will preserve the number of sign-bit copies.
8446          MIN and MAX operations always return one of the operands.  */
8447       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8448       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8449       return MIN (num0, num1);
8450
8451     case PLUS:  case MINUS:
8452       /* For addition and subtraction, we can have a 1-bit carry.  However,
8453          if we are subtracting 1 from a positive number, there will not
8454          be such a carry.  Furthermore, if the positive number is known to
8455          be 0 or 1, we know the result is either -1 or 0.  */
8456
8457       if (code == PLUS && XEXP (x, 1) == constm1_rtx
8458           && bitwidth <= HOST_BITS_PER_WIDE_INT)
8459         {
8460           nonzero = nonzero_bits (XEXP (x, 0), mode);
8461           if ((((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero) == 0)
8462             return (nonzero == 1 || nonzero == 0 ? bitwidth
8463                     : bitwidth - floor_log2 (nonzero) - 1);
8464         }
8465
8466       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8467       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8468       return MAX (1, MIN (num0, num1) - 1);
8469       
8470     case MULT:
8471       /* The number of bits of the product is the sum of the number of
8472          bits of both terms.  However, unless one of the terms if known
8473          to be positive, we must allow for an additional bit since negating
8474          a negative number can remove one sign bit copy.  */
8475
8476       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8477       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8478
8479       result = bitwidth - (bitwidth - num0) - (bitwidth - num1);
8480       if (result > 0
8481           && (bitwidth > HOST_BITS_PER_WIDE_INT
8482               || (((nonzero_bits (XEXP (x, 0), mode)
8483                     & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8484                   && ((nonzero_bits (XEXP (x, 1), mode)
8485                        & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))))
8486         result--;
8487
8488       return MAX (1, result);
8489
8490     case UDIV:
8491       /* The result must be <= the first operand.  If the first operand
8492          has the high bit set, we know nothing about the number of sign
8493          bit copies.  */
8494       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8495         return 1;
8496       else if ((nonzero_bits (XEXP (x, 0), mode)
8497                 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8498         return 1;
8499       else
8500         return num_sign_bit_copies (XEXP (x, 0), mode);
8501                                     
8502     case UMOD:
8503       /* The result must be <= the scond operand.  */
8504       return num_sign_bit_copies (XEXP (x, 1), mode);
8505
8506     case DIV:
8507       /* Similar to unsigned division, except that we have to worry about
8508          the case where the divisor is negative, in which case we have
8509          to add 1.  */
8510       result = num_sign_bit_copies (XEXP (x, 0), mode);
8511       if (result > 1
8512           && (bitwidth > HOST_BITS_PER_WIDE_INT
8513               || (nonzero_bits (XEXP (x, 1), mode)
8514                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8515         result--;
8516
8517       return result;
8518
8519     case MOD:
8520       result = num_sign_bit_copies (XEXP (x, 1), mode);
8521       if (result > 1
8522           && (bitwidth > HOST_BITS_PER_WIDE_INT
8523               || (nonzero_bits (XEXP (x, 1), mode)
8524                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8525         result--;
8526
8527       return result;
8528
8529     case ASHIFTRT:
8530       /* Shifts by a constant add to the number of bits equal to the
8531          sign bit.  */
8532       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8533       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8534           && INTVAL (XEXP (x, 1)) > 0)
8535         num0 = MIN (bitwidth, num0 + INTVAL (XEXP (x, 1)));
8536
8537       return num0;
8538
8539     case ASHIFT:
8540       /* Left shifts destroy copies.  */
8541       if (GET_CODE (XEXP (x, 1)) != CONST_INT
8542           || INTVAL (XEXP (x, 1)) < 0
8543           || INTVAL (XEXP (x, 1)) >= bitwidth)
8544         return 1;
8545
8546       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8547       return MAX (1, num0 - INTVAL (XEXP (x, 1)));
8548
8549     case IF_THEN_ELSE:
8550       num0 = num_sign_bit_copies (XEXP (x, 1), mode);
8551       num1 = num_sign_bit_copies (XEXP (x, 2), mode);
8552       return MIN (num0, num1);
8553
8554     case EQ:  case NE:  case GE:  case GT:  case LE:  case LT:
8555     case GEU: case GTU: case LEU: case LTU:
8556       if (STORE_FLAG_VALUE == -1)
8557         return bitwidth;
8558       break;
8559       
8560     default:
8561       break;
8562     }
8563
8564   /* If we haven't been able to figure it out by one of the above rules,
8565      see if some of the high-order bits are known to be zero.  If so,
8566      count those bits and return one less than that amount.  If we can't
8567      safely compute the mask for this mode, always return BITWIDTH.  */
8568
8569   if (bitwidth > HOST_BITS_PER_WIDE_INT)
8570     return 1;
8571
8572   nonzero = nonzero_bits (x, mode);
8573   return (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))
8574           ? 1 : bitwidth - floor_log2 (nonzero) - 1);
8575 }
8576 \f
8577 /* Return the number of "extended" bits there are in X, when interpreted
8578    as a quantity in MODE whose signedness is indicated by UNSIGNEDP.  For
8579    unsigned quantities, this is the number of high-order zero bits.
8580    For signed quantities, this is the number of copies of the sign bit
8581    minus 1.  In both case, this function returns the number of "spare"
8582    bits.  For example, if two quantities for which this function returns
8583    at least 1 are added, the addition is known not to overflow.
8584
8585    This function will always return 0 unless called during combine, which
8586    implies that it must be called from a define_split.  */
8587
8588 unsigned int
8589 extended_count (x, mode, unsignedp)
8590      rtx x;
8591      enum machine_mode mode;
8592      int unsignedp;
8593 {
8594   if (nonzero_sign_valid == 0)
8595     return 0;
8596
8597   return (unsignedp
8598           ? (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
8599              ? (GET_MODE_BITSIZE (mode) - 1
8600                 - floor_log2 (nonzero_bits (x, mode)))
8601              : 0)
8602           : num_sign_bit_copies (x, mode) - 1);
8603 }
8604 \f
8605 /* This function is called from `simplify_shift_const' to merge two
8606    outer operations.  Specifically, we have already found that we need
8607    to perform operation *POP0 with constant *PCONST0 at the outermost
8608    position.  We would now like to also perform OP1 with constant CONST1
8609    (with *POP0 being done last).
8610
8611    Return 1 if we can do the operation and update *POP0 and *PCONST0 with
8612    the resulting operation.  *PCOMP_P is set to 1 if we would need to 
8613    complement the innermost operand, otherwise it is unchanged.
8614
8615    MODE is the mode in which the operation will be done.  No bits outside
8616    the width of this mode matter.  It is assumed that the width of this mode
8617    is smaller than or equal to HOST_BITS_PER_WIDE_INT.
8618
8619    If *POP0 or OP1 are NIL, it means no operation is required.  Only NEG, PLUS,
8620    IOR, XOR, and AND are supported.  We may set *POP0 to SET if the proper
8621    result is simply *PCONST0.
8622
8623    If the resulting operation cannot be expressed as one operation, we
8624    return 0 and do not change *POP0, *PCONST0, and *PCOMP_P.  */
8625
8626 static int
8627 merge_outer_ops (pop0, pconst0, op1, const1, mode, pcomp_p)
8628      enum rtx_code *pop0;
8629      HOST_WIDE_INT *pconst0;
8630      enum rtx_code op1;
8631      HOST_WIDE_INT const1;
8632      enum machine_mode mode;
8633      int *pcomp_p;
8634 {
8635   enum rtx_code op0 = *pop0;
8636   HOST_WIDE_INT const0 = *pconst0;
8637
8638   const0 &= GET_MODE_MASK (mode);
8639   const1 &= GET_MODE_MASK (mode);
8640
8641   /* If OP0 is an AND, clear unimportant bits in CONST1.  */
8642   if (op0 == AND)
8643     const1 &= const0;
8644
8645   /* If OP0 or OP1 is NIL, this is easy.  Similarly if they are the same or
8646      if OP0 is SET.  */
8647
8648   if (op1 == NIL || op0 == SET)
8649     return 1;
8650
8651   else if (op0 == NIL)
8652     op0 = op1, const0 = const1;
8653
8654   else if (op0 == op1)
8655     {
8656       switch (op0)
8657         {
8658         case AND:
8659           const0 &= const1;
8660           break;
8661         case IOR:
8662           const0 |= const1;
8663           break;
8664         case XOR:
8665           const0 ^= const1;
8666           break;
8667         case PLUS:
8668           const0 += const1;
8669           break;
8670         case NEG:
8671           op0 = NIL;
8672           break;
8673         default:
8674           break;
8675         }
8676     }
8677
8678   /* Otherwise, if either is a PLUS or NEG, we can't do anything.  */
8679   else if (op0 == PLUS || op1 == PLUS || op0 == NEG || op1 == NEG)
8680     return 0;
8681
8682   /* If the two constants aren't the same, we can't do anything.  The
8683      remaining six cases can all be done.  */
8684   else if (const0 != const1)
8685     return 0;
8686
8687   else
8688     switch (op0)
8689       {
8690       case IOR:
8691         if (op1 == AND)
8692           /* (a & b) | b == b */
8693           op0 = SET;
8694         else /* op1 == XOR */
8695           /* (a ^ b) | b == a | b */
8696           {;}
8697         break;
8698
8699       case XOR:
8700         if (op1 == AND)
8701           /* (a & b) ^ b == (~a) & b */
8702           op0 = AND, *pcomp_p = 1;
8703         else /* op1 == IOR */
8704           /* (a | b) ^ b == a & ~b */
8705           op0 = AND, *pconst0 = ~ const0;
8706         break;
8707
8708       case AND:
8709         if (op1 == IOR)
8710           /* (a | b) & b == b */
8711         op0 = SET;
8712         else /* op1 == XOR */
8713           /* (a ^ b) & b) == (~a) & b */
8714           *pcomp_p = 1;
8715         break;
8716       default:
8717         break;
8718       }
8719
8720   /* Check for NO-OP cases.  */
8721   const0 &= GET_MODE_MASK (mode);
8722   if (const0 == 0
8723       && (op0 == IOR || op0 == XOR || op0 == PLUS))
8724     op0 = NIL;
8725   else if (const0 == 0 && op0 == AND)
8726     op0 = SET;
8727   else if ((unsigned HOST_WIDE_INT) const0 == GET_MODE_MASK (mode)
8728            && op0 == AND)
8729     op0 = NIL;
8730
8731   /* ??? Slightly redundant with the above mask, but not entirely.
8732      Moving this above means we'd have to sign-extend the mode mask
8733      for the final test.  */
8734   const0 = trunc_int_for_mode (const0, mode);
8735
8736   *pop0 = op0;
8737   *pconst0 = const0;
8738
8739   return 1;
8740 }
8741 \f
8742 /* Simplify a shift of VAROP by COUNT bits.  CODE says what kind of shift.
8743    The result of the shift is RESULT_MODE.  X, if non-zero, is an expression
8744    that we started with.
8745
8746    The shift is normally computed in the widest mode we find in VAROP, as
8747    long as it isn't a different number of words than RESULT_MODE.  Exceptions
8748    are ASHIFTRT and ROTATE, which are always done in their original mode,  */
8749
8750 static rtx
8751 simplify_shift_const (x, code, result_mode, varop, input_count)
8752      rtx x;
8753      enum rtx_code code;
8754      enum machine_mode result_mode;
8755      rtx varop;
8756      int input_count;
8757 {
8758   enum rtx_code orig_code = code;
8759   int orig_count = input_count;
8760   unsigned int count;
8761   int signed_count;
8762   enum machine_mode mode = result_mode;
8763   enum machine_mode shift_mode, tmode;
8764   unsigned int mode_words
8765     = (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
8766   /* We form (outer_op (code varop count) (outer_const)).  */
8767   enum rtx_code outer_op = NIL;
8768   HOST_WIDE_INT outer_const = 0;
8769   rtx const_rtx;
8770   int complement_p = 0;
8771   rtx new;
8772
8773   /* If we were given an invalid count, don't do anything except exactly
8774      what was requested.  */
8775
8776   if (input_count < 0 || input_count > (int) GET_MODE_BITSIZE (mode))
8777     {
8778       if (x)
8779         return x;
8780
8781       return gen_rtx_fmt_ee (code, mode, varop, GEN_INT (input_count));
8782     }
8783
8784   count = input_count;
8785
8786   /* Unless one of the branches of the `if' in this loop does a `continue',
8787      we will `break' the loop after the `if'.  */
8788
8789   while (count != 0)
8790     {
8791       /* If we have an operand of (clobber (const_int 0)), just return that
8792          value.  */
8793       if (GET_CODE (varop) == CLOBBER)
8794         return varop;
8795
8796       /* If we discovered we had to complement VAROP, leave.  Making a NOT
8797          here would cause an infinite loop.  */
8798       if (complement_p)
8799         break;
8800
8801       /* Convert ROTATERT to ROTATE.  */
8802       if (code == ROTATERT)
8803         code = ROTATE, count = GET_MODE_BITSIZE (result_mode) - count;
8804
8805       /* We need to determine what mode we will do the shift in.  If the
8806          shift is a right shift or a ROTATE, we must always do it in the mode
8807          it was originally done in.  Otherwise, we can do it in MODE, the
8808          widest mode encountered.  */
8809       shift_mode
8810         = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
8811            ? result_mode : mode);
8812
8813       /* Handle cases where the count is greater than the size of the mode
8814          minus 1.  For ASHIFT, use the size minus one as the count (this can
8815          occur when simplifying (lshiftrt (ashiftrt ..))).  For rotates,
8816          take the count modulo the size.  For other shifts, the result is
8817          zero.
8818
8819          Since these shifts are being produced by the compiler by combining
8820          multiple operations, each of which are defined, we know what the
8821          result is supposed to be.  */
8822          
8823       if (count > GET_MODE_BITSIZE (shift_mode) - 1)
8824         {
8825           if (code == ASHIFTRT)
8826             count = GET_MODE_BITSIZE (shift_mode) - 1;
8827           else if (code == ROTATE || code == ROTATERT)
8828             count %= GET_MODE_BITSIZE (shift_mode);
8829           else
8830             {
8831               /* We can't simply return zero because there may be an
8832                  outer op.  */
8833               varop = const0_rtx;
8834               count = 0;
8835               break;
8836             }
8837         }
8838
8839       /* An arithmetic right shift of a quantity known to be -1 or 0
8840          is a no-op.  */
8841       if (code == ASHIFTRT
8842           && (num_sign_bit_copies (varop, shift_mode)
8843               == GET_MODE_BITSIZE (shift_mode)))
8844         {
8845           count = 0;
8846           break;
8847         }
8848
8849       /* If we are doing an arithmetic right shift and discarding all but
8850          the sign bit copies, this is equivalent to doing a shift by the
8851          bitsize minus one.  Convert it into that shift because it will often
8852          allow other simplifications.  */
8853
8854       if (code == ASHIFTRT
8855           && (count + num_sign_bit_copies (varop, shift_mode)
8856               >= GET_MODE_BITSIZE (shift_mode)))
8857         count = GET_MODE_BITSIZE (shift_mode) - 1;
8858
8859       /* We simplify the tests below and elsewhere by converting
8860          ASHIFTRT to LSHIFTRT if we know the sign bit is clear.
8861          `make_compound_operation' will convert it to a ASHIFTRT for
8862          those machines (such as Vax) that don't have a LSHIFTRT.  */
8863       if (GET_MODE_BITSIZE (shift_mode) <= HOST_BITS_PER_WIDE_INT
8864           && code == ASHIFTRT
8865           && ((nonzero_bits (varop, shift_mode)
8866                & ((HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (shift_mode) - 1)))
8867               == 0))
8868         code = LSHIFTRT;
8869
8870       switch (GET_CODE (varop))
8871         {
8872         case SIGN_EXTEND:
8873         case ZERO_EXTEND:
8874         case SIGN_EXTRACT:
8875         case ZERO_EXTRACT:
8876           new = expand_compound_operation (varop);
8877           if (new != varop)
8878             {
8879               varop = new;
8880               continue;
8881             }
8882           break;
8883
8884         case MEM:
8885           /* If we have (xshiftrt (mem ...) C) and C is MODE_WIDTH
8886              minus the width of a smaller mode, we can do this with a
8887              SIGN_EXTEND or ZERO_EXTEND from the narrower memory location.  */
8888           if ((code == ASHIFTRT || code == LSHIFTRT)
8889               && ! mode_dependent_address_p (XEXP (varop, 0))
8890               && ! MEM_VOLATILE_P (varop)
8891               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
8892                                          MODE_INT, 1)) != BLKmode)
8893             {
8894               if (BYTES_BIG_ENDIAN)
8895                 new = gen_rtx_MEM (tmode, XEXP (varop, 0));
8896               else
8897                 new = gen_rtx_MEM (tmode,
8898                                    plus_constant (XEXP (varop, 0),
8899                                                   count / BITS_PER_UNIT));
8900               RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (varop);
8901               MEM_COPY_ATTRIBUTES (new, varop);
8902               varop = gen_rtx_combine (code == ASHIFTRT ? SIGN_EXTEND
8903                                        : ZERO_EXTEND, mode, new);
8904               count = 0;
8905               continue;
8906             }
8907           break;
8908
8909         case USE:
8910           /* Similar to the case above, except that we can only do this if
8911              the resulting mode is the same as that of the underlying
8912              MEM and adjust the address depending on the *bits* endianness
8913              because of the way that bit-field extract insns are defined.  */
8914           if ((code == ASHIFTRT || code == LSHIFTRT)
8915               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
8916                                          MODE_INT, 1)) != BLKmode
8917               && tmode == GET_MODE (XEXP (varop, 0)))
8918             {
8919               if (BITS_BIG_ENDIAN)
8920                 new = XEXP (varop, 0);
8921               else
8922                 {
8923                   new = copy_rtx (XEXP (varop, 0));
8924                   SUBST (XEXP (new, 0), 
8925                          plus_constant (XEXP (new, 0),
8926                                         count / BITS_PER_UNIT));
8927                 }
8928
8929               varop = gen_rtx_combine (code == ASHIFTRT ? SIGN_EXTEND
8930                                        : ZERO_EXTEND, mode, new);
8931               count = 0;
8932               continue;
8933             }
8934           break;
8935
8936         case SUBREG:
8937           /* If VAROP is a SUBREG, strip it as long as the inner operand has
8938              the same number of words as what we've seen so far.  Then store
8939              the widest mode in MODE.  */
8940           if (subreg_lowpart_p (varop)
8941               && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
8942                   > GET_MODE_SIZE (GET_MODE (varop)))
8943               && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
8944                     + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
8945                   == mode_words))
8946             {
8947               varop = SUBREG_REG (varop);
8948               if (GET_MODE_SIZE (GET_MODE (varop)) > GET_MODE_SIZE (mode))
8949                 mode = GET_MODE (varop);
8950               continue;
8951             }
8952           break;
8953
8954         case MULT:
8955           /* Some machines use MULT instead of ASHIFT because MULT
8956              is cheaper.  But it is still better on those machines to
8957              merge two shifts into one.  */
8958           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
8959               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
8960             {
8961               varop
8962                 = gen_binary (ASHIFT, GET_MODE (varop), XEXP (varop, 0),
8963                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
8964               continue;
8965             }
8966           break;
8967
8968         case UDIV:
8969           /* Similar, for when divides are cheaper.  */
8970           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
8971               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
8972             {
8973               varop
8974                 = gen_binary (LSHIFTRT, GET_MODE (varop), XEXP (varop, 0),
8975                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
8976               continue;
8977             }
8978           break;
8979
8980         case ASHIFTRT:
8981           /* If we are extracting just the sign bit of an arithmetic right 
8982              shift, that shift is not needed.  */
8983           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1)
8984             {
8985               varop = XEXP (varop, 0);
8986               continue;
8987             }
8988
8989           /* ... fall through ...  */
8990
8991         case LSHIFTRT:
8992         case ASHIFT:
8993         case ROTATE:
8994           /* Here we have two nested shifts.  The result is usually the
8995              AND of a new shift with a mask.  We compute the result below.  */
8996           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
8997               && INTVAL (XEXP (varop, 1)) >= 0
8998               && INTVAL (XEXP (varop, 1)) < GET_MODE_BITSIZE (GET_MODE (varop))
8999               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9000               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
9001             {
9002               enum rtx_code first_code = GET_CODE (varop);
9003               unsigned int first_count = INTVAL (XEXP (varop, 1));
9004               unsigned HOST_WIDE_INT mask;
9005               rtx mask_rtx;
9006
9007               /* We have one common special case.  We can't do any merging if
9008                  the inner code is an ASHIFTRT of a smaller mode.  However, if
9009                  we have (ashift:M1 (subreg:M1 (ashiftrt:M2 FOO C1) 0) C2)
9010                  with C2 == GET_MODE_BITSIZE (M1) - GET_MODE_BITSIZE (M2),
9011                  we can convert it to
9012                  (ashiftrt:M1 (ashift:M1 (and:M1 (subreg:M1 FOO 0 C2) C3) C1).
9013                  This simplifies certain SIGN_EXTEND operations.  */
9014               if (code == ASHIFT && first_code == ASHIFTRT
9015                   && (GET_MODE_BITSIZE (result_mode)
9016                       - GET_MODE_BITSIZE (GET_MODE (varop))) == count)
9017                 {
9018                   /* C3 has the low-order C1 bits zero.  */
9019                   
9020                   mask = (GET_MODE_MASK (mode)
9021                           & ~ (((HOST_WIDE_INT) 1 << first_count) - 1));
9022
9023                   varop = simplify_and_const_int (NULL_RTX, result_mode,
9024                                                   XEXP (varop, 0), mask);
9025                   varop = simplify_shift_const (NULL_RTX, ASHIFT, result_mode,
9026                                                 varop, count);
9027                   count = first_count;
9028                   code = ASHIFTRT;
9029                   continue;
9030                 }
9031               
9032               /* If this was (ashiftrt (ashift foo C1) C2) and FOO has more
9033                  than C1 high-order bits equal to the sign bit, we can convert
9034                  this to either an ASHIFT or a ASHIFTRT depending on the
9035                  two counts. 
9036
9037                  We cannot do this if VAROP's mode is not SHIFT_MODE.  */
9038
9039               if (code == ASHIFTRT && first_code == ASHIFT
9040                   && GET_MODE (varop) == shift_mode
9041                   && (num_sign_bit_copies (XEXP (varop, 0), shift_mode)
9042                       > first_count))
9043                 {
9044                   varop = XEXP (varop, 0);
9045
9046                   signed_count = count - first_count;
9047                   if (signed_count < 0)
9048                     count = - signed_count, code = ASHIFT;
9049                   else
9050                     count = signed_count;
9051
9052                   continue;
9053                 }
9054
9055               /* There are some cases we can't do.  If CODE is ASHIFTRT,
9056                  we can only do this if FIRST_CODE is also ASHIFTRT.
9057
9058                  We can't do the case when CODE is ROTATE and FIRST_CODE is
9059                  ASHIFTRT.
9060
9061                  If the mode of this shift is not the mode of the outer shift,
9062                  we can't do this if either shift is a right shift or ROTATE.
9063
9064                  Finally, we can't do any of these if the mode is too wide
9065                  unless the codes are the same.
9066
9067                  Handle the case where the shift codes are the same
9068                  first.  */
9069
9070               if (code == first_code)
9071                 {
9072                   if (GET_MODE (varop) != result_mode
9073                       && (code == ASHIFTRT || code == LSHIFTRT
9074                           || code == ROTATE))
9075                     break;
9076
9077                   count += first_count;
9078                   varop = XEXP (varop, 0);
9079                   continue;
9080                 }
9081
9082               if (code == ASHIFTRT
9083                   || (code == ROTATE && first_code == ASHIFTRT)
9084                   || GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT
9085                   || (GET_MODE (varop) != result_mode
9086                       && (first_code == ASHIFTRT || first_code == LSHIFTRT
9087                           || first_code == ROTATE
9088                           || code == ROTATE)))
9089                 break;
9090
9091               /* To compute the mask to apply after the shift, shift the
9092                  nonzero bits of the inner shift the same way the 
9093                  outer shift will.  */
9094
9095               mask_rtx = GEN_INT (nonzero_bits (varop, GET_MODE (varop)));
9096
9097               mask_rtx
9098                 = simplify_binary_operation (code, result_mode, mask_rtx,
9099                                              GEN_INT (count));
9100                                   
9101               /* Give up if we can't compute an outer operation to use.  */
9102               if (mask_rtx == 0
9103                   || GET_CODE (mask_rtx) != CONST_INT
9104                   || ! merge_outer_ops (&outer_op, &outer_const, AND,
9105                                         INTVAL (mask_rtx),
9106                                         result_mode, &complement_p))
9107                 break;
9108
9109               /* If the shifts are in the same direction, we add the
9110                  counts.  Otherwise, we subtract them.  */
9111               signed_count = count;
9112               if ((code == ASHIFTRT || code == LSHIFTRT)
9113                   == (first_code == ASHIFTRT || first_code == LSHIFTRT))
9114                 signed_count += first_count;
9115               else
9116                 signed_count -= first_count;
9117
9118               /* If COUNT is positive, the new shift is usually CODE, 
9119                  except for the two exceptions below, in which case it is
9120                  FIRST_CODE.  If the count is negative, FIRST_CODE should
9121                  always be used  */
9122               if (signed_count > 0
9123                   && ((first_code == ROTATE && code == ASHIFT)
9124                       || (first_code == ASHIFTRT && code == LSHIFTRT)))
9125                 code = first_code, count = signed_count;
9126               else if (signed_count < 0)
9127                 code = first_code, count = - signed_count;
9128               else
9129                 count = signed_count;
9130
9131               varop = XEXP (varop, 0);
9132               continue;
9133             }
9134
9135           /* If we have (A << B << C) for any shift, we can convert this to
9136              (A << C << B).  This wins if A is a constant.  Only try this if
9137              B is not a constant.  */
9138
9139           else if (GET_CODE (varop) == code
9140                    && GET_CODE (XEXP (varop, 1)) != CONST_INT
9141                    && 0 != (new
9142                             = simplify_binary_operation (code, mode,
9143                                                          XEXP (varop, 0),
9144                                                          GEN_INT (count))))
9145             {
9146               varop = gen_rtx_combine (code, mode, new, XEXP (varop, 1));
9147               count = 0;
9148               continue;
9149             }
9150           break;
9151
9152         case NOT:
9153           /* Make this fit the case below.  */
9154           varop = gen_rtx_combine (XOR, mode, XEXP (varop, 0),
9155                                    GEN_INT (GET_MODE_MASK (mode)));
9156           continue;
9157
9158         case IOR:
9159         case AND:
9160         case XOR:
9161           /* If we have (xshiftrt (ior (plus X (const_int -1)) X) C)
9162              with C the size of VAROP - 1 and the shift is logical if
9163              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9164              we have an (le X 0) operation.   If we have an arithmetic shift
9165              and STORE_FLAG_VALUE is 1 or we have a logical shift with
9166              STORE_FLAG_VALUE of -1, we have a (neg (le X 0)) operation.  */
9167
9168           if (GET_CODE (varop) == IOR && GET_CODE (XEXP (varop, 0)) == PLUS
9169               && XEXP (XEXP (varop, 0), 1) == constm1_rtx
9170               && (STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9171               && (code == LSHIFTRT || code == ASHIFTRT)
9172               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9173               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9174             {
9175               count = 0;
9176               varop = gen_rtx_combine (LE, GET_MODE (varop), XEXP (varop, 1),
9177                                        const0_rtx);
9178
9179               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9180                 varop = gen_rtx_combine (NEG, GET_MODE (varop), varop);
9181
9182               continue;
9183             }
9184
9185           /* If we have (shift (logical)), move the logical to the outside
9186              to allow it to possibly combine with another logical and the
9187              shift to combine with another shift.  This also canonicalizes to
9188              what a ZERO_EXTRACT looks like.  Also, some machines have
9189              (and (shift)) insns.  */
9190
9191           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9192               && (new = simplify_binary_operation (code, result_mode,
9193                                                    XEXP (varop, 1),
9194                                                    GEN_INT (count))) != 0
9195               && GET_CODE(new) == CONST_INT
9196               && merge_outer_ops (&outer_op, &outer_const, GET_CODE (varop),
9197                                   INTVAL (new), result_mode, &complement_p))
9198             {
9199               varop = XEXP (varop, 0);
9200               continue;
9201             }
9202
9203           /* If we can't do that, try to simplify the shift in each arm of the
9204              logical expression, make a new logical expression, and apply
9205              the inverse distributive law.  */
9206           {
9207             rtx lhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9208                                             XEXP (varop, 0), count);
9209             rtx rhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9210                                             XEXP (varop, 1), count);
9211
9212             varop = gen_binary (GET_CODE (varop), shift_mode, lhs, rhs);
9213             varop = apply_distributive_law (varop);
9214
9215             count = 0;
9216           }
9217           break;
9218
9219         case EQ:
9220           /* convert (lshiftrt (eq FOO 0) C) to (xor FOO 1) if STORE_FLAG_VALUE
9221              says that the sign bit can be tested, FOO has mode MODE, C is
9222              GET_MODE_BITSIZE (MODE) - 1, and FOO has only its low-order bit
9223              that may be nonzero.  */
9224           if (code == LSHIFTRT
9225               && XEXP (varop, 1) == const0_rtx
9226               && GET_MODE (XEXP (varop, 0)) == result_mode
9227               && count == GET_MODE_BITSIZE (result_mode) - 1
9228               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9229               && ((STORE_FLAG_VALUE
9230                    & ((HOST_WIDE_INT) 1 
9231                       < (GET_MODE_BITSIZE (result_mode) - 1))))
9232               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9233               && merge_outer_ops (&outer_op, &outer_const, XOR,
9234                                   (HOST_WIDE_INT) 1, result_mode,
9235                                   &complement_p))
9236             {
9237               varop = XEXP (varop, 0);
9238               count = 0;
9239               continue;
9240             }
9241           break;
9242
9243         case NEG:
9244           /* (lshiftrt (neg A) C) where A is either 0 or 1 and C is one less
9245              than the number of bits in the mode is equivalent to A.  */
9246           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9247               && nonzero_bits (XEXP (varop, 0), result_mode) == 1)
9248             {
9249               varop = XEXP (varop, 0);
9250               count = 0;
9251               continue;
9252             }
9253
9254           /* NEG commutes with ASHIFT since it is multiplication.  Move the
9255              NEG outside to allow shifts to combine.  */
9256           if (code == ASHIFT
9257               && merge_outer_ops (&outer_op, &outer_const, NEG,
9258                                   (HOST_WIDE_INT) 0, result_mode,
9259                                   &complement_p))
9260             {
9261               varop = XEXP (varop, 0);
9262               continue;
9263             }
9264           break;
9265
9266         case PLUS:
9267           /* (lshiftrt (plus A -1) C) where A is either 0 or 1 and C
9268              is one less than the number of bits in the mode is
9269              equivalent to (xor A 1).  */
9270           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9271               && XEXP (varop, 1) == constm1_rtx
9272               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9273               && merge_outer_ops (&outer_op, &outer_const, XOR,
9274                                   (HOST_WIDE_INT) 1, result_mode,
9275                                   &complement_p))
9276             {
9277               count = 0;
9278               varop = XEXP (varop, 0);
9279               continue;
9280             }
9281
9282           /* If we have (xshiftrt (plus FOO BAR) C), and the only bits
9283              that might be nonzero in BAR are those being shifted out and those
9284              bits are known zero in FOO, we can replace the PLUS with FOO.
9285              Similarly in the other operand order.  This code occurs when
9286              we are computing the size of a variable-size array.  */
9287
9288           if ((code == ASHIFTRT || code == LSHIFTRT)
9289               && count < HOST_BITS_PER_WIDE_INT
9290               && nonzero_bits (XEXP (varop, 1), result_mode) >> count == 0
9291               && (nonzero_bits (XEXP (varop, 1), result_mode)
9292                   & nonzero_bits (XEXP (varop, 0), result_mode)) == 0)
9293             {
9294               varop = XEXP (varop, 0);
9295               continue;
9296             }
9297           else if ((code == ASHIFTRT || code == LSHIFTRT)
9298                    && count < HOST_BITS_PER_WIDE_INT
9299                    && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9300                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9301                             >> count)
9302                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9303                             & nonzero_bits (XEXP (varop, 1),
9304                                                  result_mode)))
9305             {
9306               varop = XEXP (varop, 1);
9307               continue;
9308             }
9309
9310           /* (ashift (plus foo C) N) is (plus (ashift foo N) C').  */
9311           if (code == ASHIFT
9312               && GET_CODE (XEXP (varop, 1)) == CONST_INT
9313               && (new = simplify_binary_operation (ASHIFT, result_mode,
9314                                                    XEXP (varop, 1),
9315                                                    GEN_INT (count))) != 0
9316               && GET_CODE (new) == CONST_INT
9317               && merge_outer_ops (&outer_op, &outer_const, PLUS,
9318                                   INTVAL (new), result_mode, &complement_p))
9319             {
9320               varop = XEXP (varop, 0);
9321               continue;
9322             }
9323           break;
9324
9325         case MINUS:
9326           /* If we have (xshiftrt (minus (ashiftrt X C)) X) C)
9327              with C the size of VAROP - 1 and the shift is logical if
9328              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9329              we have a (gt X 0) operation.  If the shift is arithmetic with
9330              STORE_FLAG_VALUE of 1 or logical with STORE_FLAG_VALUE == -1,
9331              we have a (neg (gt X 0)) operation.  */
9332
9333           if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9334               && GET_CODE (XEXP (varop, 0)) == ASHIFTRT
9335               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9336               && (code == LSHIFTRT || code == ASHIFTRT)
9337               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9338               && INTVAL (XEXP (XEXP (varop, 0), 1)) == count
9339               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9340             {
9341               count = 0;
9342               varop = gen_rtx_combine (GT, GET_MODE (varop), XEXP (varop, 1),
9343                                        const0_rtx);
9344
9345               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9346                 varop = gen_rtx_combine (NEG, GET_MODE (varop), varop);
9347
9348               continue;
9349             }
9350           break;
9351
9352         case TRUNCATE:
9353           /* Change (lshiftrt (truncate (lshiftrt))) to (truncate (lshiftrt))
9354              if the truncate does not affect the value.  */
9355           if (code == LSHIFTRT
9356               && GET_CODE (XEXP (varop, 0)) == LSHIFTRT
9357               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9358               && (INTVAL (XEXP (XEXP (varop, 0), 1))
9359                   >= (GET_MODE_BITSIZE (GET_MODE (XEXP (varop, 0)))
9360                       - GET_MODE_BITSIZE (GET_MODE (varop)))))
9361             {
9362               rtx varop_inner = XEXP (varop, 0);
9363
9364               varop_inner
9365                 = gen_rtx_combine (LSHIFTRT, GET_MODE (varop_inner),
9366                                    XEXP (varop_inner, 0),
9367                                    GEN_INT (count
9368                                             + INTVAL (XEXP (varop_inner, 1))));
9369               varop = gen_rtx_combine (TRUNCATE, GET_MODE (varop),
9370                                        varop_inner);
9371               count = 0;
9372               continue;
9373             }
9374           break;
9375           
9376         default:
9377           break;
9378         }
9379
9380       break;
9381     }
9382
9383   /* We need to determine what mode to do the shift in.  If the shift is
9384      a right shift or ROTATE, we must always do it in the mode it was
9385      originally done in.  Otherwise, we can do it in MODE, the widest mode
9386      encountered.  The code we care about is that of the shift that will
9387      actually be done, not the shift that was originally requested.  */
9388   shift_mode
9389     = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
9390        ? result_mode : mode);
9391
9392   /* We have now finished analyzing the shift.  The result should be
9393      a shift of type CODE with SHIFT_MODE shifting VAROP COUNT places.  If
9394      OUTER_OP is non-NIL, it is an operation that needs to be applied
9395      to the result of the shift.  OUTER_CONST is the relevant constant,
9396      but we must turn off all bits turned off in the shift.
9397
9398      If we were passed a value for X, see if we can use any pieces of
9399      it.  If not, make new rtx.  */
9400
9401   if (x && GET_RTX_CLASS (GET_CODE (x)) == '2'
9402       && GET_CODE (XEXP (x, 1)) == CONST_INT
9403       && INTVAL (XEXP (x, 1)) == count)
9404     const_rtx = XEXP (x, 1);
9405   else
9406     const_rtx = GEN_INT (count);
9407
9408   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
9409       && GET_MODE (XEXP (x, 0)) == shift_mode
9410       && SUBREG_REG (XEXP (x, 0)) == varop)
9411     varop = XEXP (x, 0);
9412   else if (GET_MODE (varop) != shift_mode)
9413     varop = gen_lowpart_for_combine (shift_mode, varop);
9414
9415   /* If we can't make the SUBREG, try to return what we were given.  */
9416   if (GET_CODE (varop) == CLOBBER)
9417     return x ? x : varop;
9418
9419   new = simplify_binary_operation (code, shift_mode, varop, const_rtx);
9420   if (new != 0)
9421     x = new;
9422   else
9423     {
9424       if (x == 0 || GET_CODE (x) != code || GET_MODE (x) != shift_mode)
9425         x = gen_rtx_combine (code, shift_mode, varop, const_rtx);
9426
9427       SUBST (XEXP (x, 0), varop);
9428       SUBST (XEXP (x, 1), const_rtx);
9429     }
9430
9431   /* If we have an outer operation and we just made a shift, it is
9432      possible that we could have simplified the shift were it not
9433      for the outer operation.  So try to do the simplification
9434      recursively.  */
9435
9436   if (outer_op != NIL && GET_CODE (x) == code
9437       && GET_CODE (XEXP (x, 1)) == CONST_INT)
9438     x = simplify_shift_const (x, code, shift_mode, XEXP (x, 0),
9439                               INTVAL (XEXP (x, 1)));
9440
9441   /* If we were doing a LSHIFTRT in a wider mode than it was originally,
9442      turn off all the bits that the shift would have turned off.  */
9443   if (orig_code == LSHIFTRT && result_mode != shift_mode)
9444     x = simplify_and_const_int (NULL_RTX, shift_mode, x,
9445                                 GET_MODE_MASK (result_mode) >> orig_count);
9446       
9447   /* Do the remainder of the processing in RESULT_MODE.  */
9448   x = gen_lowpart_for_combine (result_mode, x);
9449
9450   /* If COMPLEMENT_P is set, we have to complement X before doing the outer
9451      operation.  */
9452   if (complement_p)
9453     x = gen_unary (NOT, result_mode, result_mode, x);
9454
9455   if (outer_op != NIL)
9456     {
9457       if (GET_MODE_BITSIZE (result_mode) < HOST_BITS_PER_WIDE_INT)
9458         outer_const = trunc_int_for_mode (outer_const, result_mode);
9459
9460       if (outer_op == AND)
9461         x = simplify_and_const_int (NULL_RTX, result_mode, x, outer_const);
9462       else if (outer_op == SET)
9463         /* This means that we have determined that the result is
9464            equivalent to a constant.  This should be rare.  */
9465         x = GEN_INT (outer_const);
9466       else if (GET_RTX_CLASS (outer_op) == '1')
9467         x = gen_unary (outer_op, result_mode, result_mode, x);
9468       else
9469         x = gen_binary (outer_op, result_mode, x, GEN_INT (outer_const));
9470     }
9471
9472   return x;
9473 }  
9474 \f
9475 /* Like recog, but we receive the address of a pointer to a new pattern.
9476    We try to match the rtx that the pointer points to.
9477    If that fails, we may try to modify or replace the pattern,
9478    storing the replacement into the same pointer object.
9479
9480    Modifications include deletion or addition of CLOBBERs.
9481
9482    PNOTES is a pointer to a location where any REG_UNUSED notes added for
9483    the CLOBBERs are placed.
9484
9485    The value is the final insn code from the pattern ultimately matched,
9486    or -1.  */
9487
9488 static int
9489 recog_for_combine (pnewpat, insn, pnotes)
9490      rtx *pnewpat;
9491      rtx insn;
9492      rtx *pnotes;
9493 {
9494   register rtx pat = *pnewpat;
9495   int insn_code_number;
9496   int num_clobbers_to_add = 0;
9497   int i;
9498   rtx notes = 0;
9499
9500   /* If PAT is a PARALLEL, check to see if it contains the CLOBBER
9501      we use to indicate that something didn't match.  If we find such a
9502      thing, force rejection.  */
9503   if (GET_CODE (pat) == PARALLEL)
9504     for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
9505       if (GET_CODE (XVECEXP (pat, 0, i)) == CLOBBER
9506           && XEXP (XVECEXP (pat, 0, i), 0) == const0_rtx)
9507         return -1;
9508
9509   /* Is the result of combination a valid instruction?  */
9510   insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9511
9512   /* If it isn't, there is the possibility that we previously had an insn
9513      that clobbered some register as a side effect, but the combined
9514      insn doesn't need to do that.  So try once more without the clobbers
9515      unless this represents an ASM insn.  */
9516
9517   if (insn_code_number < 0 && ! check_asm_operands (pat)
9518       && GET_CODE (pat) == PARALLEL)
9519     {
9520       int pos;
9521
9522       for (pos = 0, i = 0; i < XVECLEN (pat, 0); i++)
9523         if (GET_CODE (XVECEXP (pat, 0, i)) != CLOBBER)
9524           {
9525             if (i != pos)
9526               SUBST (XVECEXP (pat, 0, pos), XVECEXP (pat, 0, i));
9527             pos++;
9528           }
9529
9530       SUBST_INT (XVECLEN (pat, 0), pos);
9531
9532       if (pos == 1)
9533         pat = XVECEXP (pat, 0, 0);
9534
9535       insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9536     }
9537
9538   /* If we had any clobbers to add, make a new pattern than contains
9539      them.  Then check to make sure that all of them are dead.  */
9540   if (num_clobbers_to_add)
9541     {
9542       rtx newpat = gen_rtx_PARALLEL (VOIDmode,
9543                                      gen_rtvec (GET_CODE (pat) == PARALLEL
9544                                                 ? (XVECLEN (pat, 0)
9545                                                    + num_clobbers_to_add)
9546                                                 : num_clobbers_to_add + 1));
9547
9548       if (GET_CODE (pat) == PARALLEL)
9549         for (i = 0; i < XVECLEN (pat, 0); i++)
9550           XVECEXP (newpat, 0, i) = XVECEXP (pat, 0, i);
9551       else
9552         XVECEXP (newpat, 0, 0) = pat;
9553
9554       add_clobbers (newpat, insn_code_number);
9555
9556       for (i = XVECLEN (newpat, 0) - num_clobbers_to_add;
9557            i < XVECLEN (newpat, 0); i++)
9558         {
9559           if (GET_CODE (XEXP (XVECEXP (newpat, 0, i), 0)) == REG
9560               && ! reg_dead_at_p (XEXP (XVECEXP (newpat, 0, i), 0), insn))
9561             return -1;
9562           notes = gen_rtx_EXPR_LIST (REG_UNUSED,
9563                                      XEXP (XVECEXP (newpat, 0, i), 0), notes);
9564         }
9565       pat = newpat;
9566     }
9567
9568   *pnewpat = pat;
9569   *pnotes = notes;
9570
9571   return insn_code_number;
9572 }
9573 \f
9574 /* Like gen_lowpart but for use by combine.  In combine it is not possible
9575    to create any new pseudoregs.  However, it is safe to create
9576    invalid memory addresses, because combine will try to recognize
9577    them and all they will do is make the combine attempt fail.
9578
9579    If for some reason this cannot do its job, an rtx
9580    (clobber (const_int 0)) is returned.
9581    An insn containing that will not be recognized.  */
9582
9583 #undef gen_lowpart
9584
9585 static rtx
9586 gen_lowpart_for_combine (mode, x)
9587      enum machine_mode mode;
9588      register rtx x;
9589 {
9590   rtx result;
9591
9592   if (GET_MODE (x) == mode)
9593     return x;
9594
9595   /* We can only support MODE being wider than a word if X is a
9596      constant integer or has a mode the same size.  */
9597
9598   if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
9599       && ! ((GET_MODE (x) == VOIDmode
9600              && (GET_CODE (x) == CONST_INT
9601                  || GET_CODE (x) == CONST_DOUBLE))
9602             || GET_MODE_SIZE (GET_MODE (x)) == GET_MODE_SIZE (mode)))
9603     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9604
9605   /* X might be a paradoxical (subreg (mem)).  In that case, gen_lowpart
9606      won't know what to do.  So we will strip off the SUBREG here and
9607      process normally.  */
9608   if (GET_CODE (x) == SUBREG && GET_CODE (SUBREG_REG (x)) == MEM)
9609     {
9610       x = SUBREG_REG (x);
9611       if (GET_MODE (x) == mode)
9612         return x;
9613     }
9614
9615   result = gen_lowpart_common (mode, x);
9616   if (result != 0
9617       && GET_CODE (result) == SUBREG
9618       && GET_CODE (SUBREG_REG (result)) == REG
9619       && REGNO (SUBREG_REG (result)) >= FIRST_PSEUDO_REGISTER
9620       && (GET_MODE_SIZE (GET_MODE (result))
9621           != GET_MODE_SIZE (GET_MODE (SUBREG_REG (result)))))
9622     REG_CHANGES_SIZE (REGNO (SUBREG_REG (result))) = 1;
9623
9624   if (result)
9625     return result;
9626
9627   if (GET_CODE (x) == MEM)
9628     {
9629       register int offset = 0;
9630       rtx new;
9631
9632       /* Refuse to work on a volatile memory ref or one with a mode-dependent
9633          address.  */
9634       if (MEM_VOLATILE_P (x) || mode_dependent_address_p (XEXP (x, 0)))
9635         return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9636
9637       /* If we want to refer to something bigger than the original memref,
9638          generate a perverse subreg instead.  That will force a reload
9639          of the original memref X.  */
9640       if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode))
9641         return gen_rtx_SUBREG (mode, x, 0);
9642
9643       if (WORDS_BIG_ENDIAN)
9644         offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
9645                   - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
9646
9647       if (BYTES_BIG_ENDIAN)
9648         {
9649           /* Adjust the address so that the address-after-the-data is
9650              unchanged.  */
9651           offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
9652                      - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
9653         }
9654       new = gen_rtx_MEM (mode, plus_constant (XEXP (x, 0), offset));
9655       RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (x);
9656       MEM_COPY_ATTRIBUTES (new, x);
9657       return new;
9658     }
9659
9660   /* If X is a comparison operator, rewrite it in a new mode.  This
9661      probably won't match, but may allow further simplifications.  */
9662   else if (GET_RTX_CLASS (GET_CODE (x)) == '<')
9663     return gen_rtx_combine (GET_CODE (x), mode, XEXP (x, 0), XEXP (x, 1));
9664
9665   /* If we couldn't simplify X any other way, just enclose it in a
9666      SUBREG.  Normally, this SUBREG won't match, but some patterns may
9667      include an explicit SUBREG or we may simplify it further in combine.  */
9668   else
9669     {
9670       int word = 0;
9671
9672       if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)
9673         word = ((GET_MODE_SIZE (GET_MODE (x))
9674                  - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD))
9675                 / UNITS_PER_WORD);
9676       return gen_rtx_SUBREG (mode, x, word);
9677     }
9678 }
9679 \f
9680 /* Make an rtx expression.  This is a subset of gen_rtx and only supports
9681    expressions of 1, 2, or 3 operands, each of which are rtx expressions.
9682
9683    If the identical expression was previously in the insn (in the undobuf),
9684    it will be returned.  Only if it is not found will a new expression
9685    be made.  */
9686
9687 /*VARARGS2*/
9688 static rtx
9689 gen_rtx_combine VPARAMS ((enum rtx_code code, enum machine_mode mode, ...))
9690 {
9691 #ifndef ANSI_PROTOTYPES
9692   enum rtx_code code;
9693   enum machine_mode mode;
9694 #endif
9695   va_list p;
9696   int n_args;
9697   rtx args[3];
9698   int j;
9699   const char *fmt;
9700   rtx rt;
9701   struct undo *undo;
9702
9703   VA_START (p, mode);
9704
9705 #ifndef ANSI_PROTOTYPES
9706   code = va_arg (p, enum rtx_code);
9707   mode = va_arg (p, enum machine_mode);
9708 #endif
9709
9710   n_args = GET_RTX_LENGTH (code);
9711   fmt = GET_RTX_FORMAT (code);
9712
9713   if (n_args == 0 || n_args > 3)
9714     abort ();
9715
9716   /* Get each arg and verify that it is supposed to be an expression.  */
9717   for (j = 0; j < n_args; j++)
9718     {
9719       if (*fmt++ != 'e')
9720         abort ();
9721
9722       args[j] = va_arg (p, rtx);
9723     }
9724
9725   va_end (p);
9726
9727   /* See if this is in undobuf.  Be sure we don't use objects that came
9728      from another insn; this could produce circular rtl structures.  */
9729
9730   for (undo = undobuf.undos; undo != undobuf.previous_undos; undo = undo->next)
9731     if (!undo->is_int
9732         && GET_CODE (undo->old_contents.r) == code
9733         && GET_MODE (undo->old_contents.r) == mode)
9734       {
9735         for (j = 0; j < n_args; j++)
9736           if (XEXP (undo->old_contents.r, j) != args[j])
9737             break;
9738
9739         if (j == n_args)
9740           return undo->old_contents.r;
9741       }
9742
9743   /* Otherwise make a new rtx.  We know we have 1, 2, or 3 args.
9744      Use rtx_alloc instead of gen_rtx because it's faster on RISC.  */
9745   rt = rtx_alloc (code);
9746   PUT_MODE (rt, mode);
9747   XEXP (rt, 0) = args[0];
9748   if (n_args > 1)
9749     {
9750       XEXP (rt, 1) = args[1];
9751       if (n_args > 2)
9752         XEXP (rt, 2) = args[2];
9753     }
9754   return rt;
9755 }
9756
9757 /* These routines make binary and unary operations by first seeing if they
9758    fold; if not, a new expression is allocated.  */
9759
9760 static rtx
9761 gen_binary (code, mode, op0, op1)
9762      enum rtx_code code;
9763      enum machine_mode mode;
9764      rtx op0, op1;
9765 {
9766   rtx result;
9767   rtx tem;
9768
9769   if (GET_RTX_CLASS (code) == 'c'
9770       && (GET_CODE (op0) == CONST_INT
9771           || (CONSTANT_P (op0) && GET_CODE (op1) != CONST_INT)))
9772     tem = op0, op0 = op1, op1 = tem;
9773
9774   if (GET_RTX_CLASS (code) == '<') 
9775     {
9776       enum machine_mode op_mode = GET_MODE (op0);
9777
9778       /* Strip the COMPARE from (REL_OP (compare X Y) 0) to get 
9779          just (REL_OP X Y).  */
9780       if (GET_CODE (op0) == COMPARE && op1 == const0_rtx)
9781         {
9782           op1 = XEXP (op0, 1);
9783           op0 = XEXP (op0, 0);
9784           op_mode = GET_MODE (op0);
9785         }
9786
9787       if (op_mode == VOIDmode)
9788         op_mode = GET_MODE (op1);
9789       result = simplify_relational_operation (code, op_mode, op0, op1);
9790     }
9791   else
9792     result = simplify_binary_operation (code, mode, op0, op1);
9793
9794   if (result)
9795     return result;
9796
9797   /* Put complex operands first and constants second.  */
9798   if (GET_RTX_CLASS (code) == 'c'
9799       && ((CONSTANT_P (op0) && GET_CODE (op1) != CONST_INT)
9800           || (GET_RTX_CLASS (GET_CODE (op0)) == 'o'
9801               && GET_RTX_CLASS (GET_CODE (op1)) != 'o')
9802           || (GET_CODE (op0) == SUBREG
9803               && GET_RTX_CLASS (GET_CODE (SUBREG_REG (op0))) == 'o'
9804               && GET_RTX_CLASS (GET_CODE (op1)) != 'o')))
9805     return gen_rtx_combine (code, mode, op1, op0);
9806
9807   /* If we are turning off bits already known off in OP0, we need not do
9808      an AND.  */
9809   else if (code == AND && GET_CODE (op1) == CONST_INT
9810            && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
9811            && (nonzero_bits (op0, mode) & ~ INTVAL (op1)) == 0)
9812     return op0;
9813
9814   return gen_rtx_combine (code, mode, op0, op1);
9815 }
9816
9817 static rtx
9818 gen_unary (code, mode, op0_mode, op0)
9819      enum rtx_code code;
9820      enum machine_mode mode, op0_mode;
9821      rtx op0;
9822 {
9823   rtx result = simplify_unary_operation (code, mode, op0, op0_mode);
9824
9825   if (result)
9826     return result;
9827
9828   return gen_rtx_combine (code, mode, op0);
9829 }
9830 \f
9831 /* Simplify a comparison between *POP0 and *POP1 where CODE is the
9832    comparison code that will be tested.
9833
9834    The result is a possibly different comparison code to use.  *POP0 and
9835    *POP1 may be updated.
9836
9837    It is possible that we might detect that a comparison is either always
9838    true or always false.  However, we do not perform general constant
9839    folding in combine, so this knowledge isn't useful.  Such tautologies
9840    should have been detected earlier.  Hence we ignore all such cases.  */
9841
9842 static enum rtx_code
9843 simplify_comparison (code, pop0, pop1)
9844      enum rtx_code code;
9845      rtx *pop0;
9846      rtx *pop1;
9847 {
9848   rtx op0 = *pop0;
9849   rtx op1 = *pop1;
9850   rtx tem, tem1;
9851   int i;
9852   enum machine_mode mode, tmode;
9853
9854   /* Try a few ways of applying the same transformation to both operands.  */
9855   while (1)
9856     {
9857 #ifndef WORD_REGISTER_OPERATIONS
9858       /* The test below this one won't handle SIGN_EXTENDs on these machines,
9859          so check specially.  */
9860       if (code != GTU && code != GEU && code != LTU && code != LEU
9861           && GET_CODE (op0) == ASHIFTRT && GET_CODE (op1) == ASHIFTRT
9862           && GET_CODE (XEXP (op0, 0)) == ASHIFT
9863           && GET_CODE (XEXP (op1, 0)) == ASHIFT
9864           && GET_CODE (XEXP (XEXP (op0, 0), 0)) == SUBREG
9865           && GET_CODE (XEXP (XEXP (op1, 0), 0)) == SUBREG
9866           && (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0)))
9867               == GET_MODE (SUBREG_REG (XEXP (XEXP (op1, 0), 0))))
9868           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9869           && GET_CODE (XEXP (op1, 1)) == CONST_INT
9870           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
9871           && GET_CODE (XEXP (XEXP (op1, 0), 1)) == CONST_INT
9872           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (op1, 1))
9873           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op0, 0), 1))
9874           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op1, 0), 1))
9875           && (INTVAL (XEXP (op0, 1))
9876               == (GET_MODE_BITSIZE (GET_MODE (op0))
9877                   - (GET_MODE_BITSIZE
9878                      (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0))))))))
9879         {
9880           op0 = SUBREG_REG (XEXP (XEXP (op0, 0), 0));
9881           op1 = SUBREG_REG (XEXP (XEXP (op1, 0), 0));
9882         }
9883 #endif
9884
9885       /* If both operands are the same constant shift, see if we can ignore the
9886          shift.  We can if the shift is a rotate or if the bits shifted out of
9887          this shift are known to be zero for both inputs and if the type of
9888          comparison is compatible with the shift.  */
9889       if (GET_CODE (op0) == GET_CODE (op1)
9890           && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
9891           && ((GET_CODE (op0) == ROTATE && (code == NE || code == EQ))
9892               || ((GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFT)
9893                   && (code != GT && code != LT && code != GE && code != LE))
9894               || (GET_CODE (op0) == ASHIFTRT
9895                   && (code != GTU && code != LTU
9896                       && code != GEU && code != GEU)))
9897           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9898           && INTVAL (XEXP (op0, 1)) >= 0
9899           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
9900           && XEXP (op0, 1) == XEXP (op1, 1))
9901         {
9902           enum machine_mode mode = GET_MODE (op0);
9903           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
9904           int shift_count = INTVAL (XEXP (op0, 1));
9905
9906           if (GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFTRT)
9907             mask &= (mask >> shift_count) << shift_count;
9908           else if (GET_CODE (op0) == ASHIFT)
9909             mask = (mask & (mask << shift_count)) >> shift_count;
9910
9911           if ((nonzero_bits (XEXP (op0, 0), mode) & ~ mask) == 0
9912               && (nonzero_bits (XEXP (op1, 0), mode) & ~ mask) == 0)
9913             op0 = XEXP (op0, 0), op1 = XEXP (op1, 0);
9914           else
9915             break;
9916         }
9917
9918       /* If both operands are AND's of a paradoxical SUBREG by constant, the
9919          SUBREGs are of the same mode, and, in both cases, the AND would
9920          be redundant if the comparison was done in the narrower mode,
9921          do the comparison in the narrower mode (e.g., we are AND'ing with 1
9922          and the operand's possibly nonzero bits are 0xffffff01; in that case
9923          if we only care about QImode, we don't need the AND).  This case
9924          occurs if the output mode of an scc insn is not SImode and
9925          STORE_FLAG_VALUE == 1 (e.g., the 386).
9926
9927          Similarly, check for a case where the AND's are ZERO_EXTEND
9928          operations from some narrower mode even though a SUBREG is not
9929          present.  */
9930
9931       else if  (GET_CODE (op0) == AND && GET_CODE (op1) == AND
9932                 && GET_CODE (XEXP (op0, 1)) == CONST_INT
9933                 && GET_CODE (XEXP (op1, 1)) == CONST_INT)
9934         {
9935           rtx inner_op0 = XEXP (op0, 0);
9936           rtx inner_op1 = XEXP (op1, 0);
9937           HOST_WIDE_INT c0 = INTVAL (XEXP (op0, 1));
9938           HOST_WIDE_INT c1 = INTVAL (XEXP (op1, 1));
9939           int changed = 0;
9940                 
9941           if (GET_CODE (inner_op0) == SUBREG && GET_CODE (inner_op1) == SUBREG
9942               && (GET_MODE_SIZE (GET_MODE (inner_op0))
9943                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (inner_op0))))
9944               && (GET_MODE (SUBREG_REG (inner_op0))
9945                   == GET_MODE (SUBREG_REG (inner_op1)))
9946               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (inner_op0)))
9947                   <= HOST_BITS_PER_WIDE_INT)
9948               && (0 == ((~c0) & nonzero_bits (SUBREG_REG (inner_op0),
9949                                              GET_MODE (SUBREG_REG (inner_op0)))))
9950               && (0 == ((~c1) & nonzero_bits (SUBREG_REG (inner_op1),
9951                                              GET_MODE (SUBREG_REG (inner_op1))))))
9952             {
9953               op0 = SUBREG_REG (inner_op0);
9954               op1 = SUBREG_REG (inner_op1);
9955
9956               /* The resulting comparison is always unsigned since we masked
9957                  off the original sign bit.  */
9958               code = unsigned_condition (code);
9959
9960               changed = 1;
9961             }
9962
9963           else if (c0 == c1)
9964             for (tmode = GET_CLASS_NARROWEST_MODE
9965                  (GET_MODE_CLASS (GET_MODE (op0)));
9966                  tmode != GET_MODE (op0); tmode = GET_MODE_WIDER_MODE (tmode))
9967               if ((unsigned HOST_WIDE_INT) c0 == GET_MODE_MASK (tmode))
9968                 {
9969                   op0 = gen_lowpart_for_combine (tmode, inner_op0);
9970                   op1 = gen_lowpart_for_combine (tmode, inner_op1);
9971                   code = unsigned_condition (code);
9972                   changed = 1;
9973                   break;
9974                 }
9975
9976           if (! changed)
9977             break;
9978         }
9979
9980       /* If both operands are NOT, we can strip off the outer operation
9981          and adjust the comparison code for swapped operands; similarly for
9982          NEG, except that this must be an equality comparison.  */
9983       else if ((GET_CODE (op0) == NOT && GET_CODE (op1) == NOT)
9984                || (GET_CODE (op0) == NEG && GET_CODE (op1) == NEG
9985                    && (code == EQ || code == NE)))
9986         op0 = XEXP (op0, 0), op1 = XEXP (op1, 0), code = swap_condition (code);
9987
9988       else
9989         break;
9990     }
9991      
9992   /* If the first operand is a constant, swap the operands and adjust the
9993      comparison code appropriately, but don't do this if the second operand
9994      is already a constant integer.  */
9995   if (CONSTANT_P (op0) && GET_CODE (op1) != CONST_INT)
9996     {
9997       tem = op0, op0 = op1, op1 = tem;
9998       code = swap_condition (code);
9999     }
10000
10001   /* We now enter a loop during which we will try to simplify the comparison.
10002      For the most part, we only are concerned with comparisons with zero,
10003      but some things may really be comparisons with zero but not start
10004      out looking that way.  */
10005
10006   while (GET_CODE (op1) == CONST_INT)
10007     {
10008       enum machine_mode mode = GET_MODE (op0);
10009       unsigned int mode_width = GET_MODE_BITSIZE (mode);
10010       unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
10011       int equality_comparison_p;
10012       int sign_bit_comparison_p;
10013       int unsigned_comparison_p;
10014       HOST_WIDE_INT const_op;
10015
10016       /* We only want to handle integral modes.  This catches VOIDmode,
10017          CCmode, and the floating-point modes.  An exception is that we
10018          can handle VOIDmode if OP0 is a COMPARE or a comparison
10019          operation.  */
10020
10021       if (GET_MODE_CLASS (mode) != MODE_INT
10022           && ! (mode == VOIDmode
10023                 && (GET_CODE (op0) == COMPARE
10024                     || GET_RTX_CLASS (GET_CODE (op0)) == '<')))
10025         break;
10026
10027       /* Get the constant we are comparing against and turn off all bits
10028          not on in our mode.  */
10029       const_op = INTVAL (op1);
10030       if (mode_width <= HOST_BITS_PER_WIDE_INT)
10031         const_op &= mask;
10032
10033       /* If we are comparing against a constant power of two and the value
10034          being compared can only have that single bit nonzero (e.g., it was
10035          `and'ed with that bit), we can replace this with a comparison
10036          with zero.  */
10037       if (const_op
10038           && (code == EQ || code == NE || code == GE || code == GEU
10039               || code == LT || code == LTU)
10040           && mode_width <= HOST_BITS_PER_WIDE_INT
10041           && exact_log2 (const_op) >= 0
10042           && nonzero_bits (op0, mode) == (unsigned HOST_WIDE_INT) const_op)
10043         {
10044           code = (code == EQ || code == GE || code == GEU ? NE : EQ);
10045           op1 = const0_rtx, const_op = 0;
10046         }
10047
10048       /* Similarly, if we are comparing a value known to be either -1 or
10049          0 with -1, change it to the opposite comparison against zero.  */
10050
10051       if (const_op == -1
10052           && (code == EQ || code == NE || code == GT || code == LE
10053               || code == GEU || code == LTU)
10054           && num_sign_bit_copies (op0, mode) == mode_width)
10055         {
10056           code = (code == EQ || code == LE || code == GEU ? NE : EQ);
10057           op1 = const0_rtx, const_op = 0;
10058         }
10059
10060       /* Do some canonicalizations based on the comparison code.  We prefer
10061          comparisons against zero and then prefer equality comparisons.  
10062          If we can reduce the size of a constant, we will do that too.  */
10063
10064       switch (code)
10065         {
10066         case LT:
10067           /* < C is equivalent to <= (C - 1) */
10068           if (const_op > 0)
10069             {
10070               const_op -= 1;
10071               op1 = GEN_INT (const_op);
10072               code = LE;
10073               /* ... fall through to LE case below.  */
10074             }
10075           else
10076             break;
10077
10078         case LE:
10079           /* <= C is equivalent to < (C + 1); we do this for C < 0  */
10080           if (const_op < 0)
10081             {
10082               const_op += 1;
10083               op1 = GEN_INT (const_op);
10084               code = LT;
10085             }
10086
10087           /* If we are doing a <= 0 comparison on a value known to have
10088              a zero sign bit, we can replace this with == 0.  */
10089           else if (const_op == 0
10090                    && mode_width <= HOST_BITS_PER_WIDE_INT
10091                    && (nonzero_bits (op0, mode)
10092                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10093             code = EQ;
10094           break;
10095
10096         case GE:
10097           /* >= C is equivalent to > (C - 1).  */
10098           if (const_op > 0)
10099             {
10100               const_op -= 1;
10101               op1 = GEN_INT (const_op);
10102               code = GT;
10103               /* ... fall through to GT below.  */
10104             }
10105           else
10106             break;
10107
10108         case GT:
10109           /* > C is equivalent to >= (C + 1); we do this for C < 0*/
10110           if (const_op < 0)
10111             {
10112               const_op += 1;
10113               op1 = GEN_INT (const_op);
10114               code = GE;
10115             }
10116
10117           /* If we are doing a > 0 comparison on a value known to have
10118              a zero sign bit, we can replace this with != 0.  */
10119           else if (const_op == 0
10120                    && mode_width <= HOST_BITS_PER_WIDE_INT
10121                    && (nonzero_bits (op0, mode)
10122                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10123             code = NE;
10124           break;
10125
10126         case LTU:
10127           /* < C is equivalent to <= (C - 1).  */
10128           if (const_op > 0)
10129             {
10130               const_op -= 1;
10131               op1 = GEN_INT (const_op);
10132               code = LEU;
10133               /* ... fall through ...  */
10134             }
10135
10136           /* (unsigned) < 0x80000000 is equivalent to >= 0.  */
10137           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10138                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10139             {
10140               const_op = 0, op1 = const0_rtx;
10141               code = GE;
10142               break;
10143             }
10144           else
10145             break;
10146
10147         case LEU:
10148           /* unsigned <= 0 is equivalent to == 0 */
10149           if (const_op == 0)
10150             code = EQ;
10151
10152           /* (unsigned) <= 0x7fffffff is equivalent to >= 0.  */
10153           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10154                    && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10155             {
10156               const_op = 0, op1 = const0_rtx;
10157               code = GE;
10158             }
10159           break;
10160
10161         case GEU:
10162           /* >= C is equivalent to < (C - 1).  */
10163           if (const_op > 1)
10164             {
10165               const_op -= 1;
10166               op1 = GEN_INT (const_op);
10167               code = GTU;
10168               /* ... fall through ...  */
10169             }
10170
10171           /* (unsigned) >= 0x80000000 is equivalent to < 0.  */
10172           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10173                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10174             {
10175               const_op = 0, op1 = const0_rtx;
10176               code = LT;
10177               break;
10178             }
10179           else
10180             break;
10181
10182         case GTU:
10183           /* unsigned > 0 is equivalent to != 0 */
10184           if (const_op == 0)
10185             code = NE;
10186
10187           /* (unsigned) > 0x7fffffff is equivalent to < 0.  */
10188           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10189                     && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10190             {
10191               const_op = 0, op1 = const0_rtx;
10192               code = LT;
10193             }
10194           break;
10195
10196         default:
10197           break;
10198         }
10199
10200       /* Compute some predicates to simplify code below.  */
10201
10202       equality_comparison_p = (code == EQ || code == NE);
10203       sign_bit_comparison_p = ((code == LT || code == GE) && const_op == 0);
10204       unsigned_comparison_p = (code == LTU || code == LEU || code == GTU
10205                                || code == GEU);
10206
10207       /* If this is a sign bit comparison and we can do arithmetic in
10208          MODE, say that we will only be needing the sign bit of OP0.  */
10209       if (sign_bit_comparison_p
10210           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10211         op0 = force_to_mode (op0, mode,
10212                              ((HOST_WIDE_INT) 1
10213                               << (GET_MODE_BITSIZE (mode) - 1)),
10214                              NULL_RTX, 0);
10215
10216       /* Now try cases based on the opcode of OP0.  If none of the cases
10217          does a "continue", we exit this loop immediately after the
10218          switch.  */
10219
10220       switch (GET_CODE (op0))
10221         {
10222         case ZERO_EXTRACT:
10223           /* If we are extracting a single bit from a variable position in
10224              a constant that has only a single bit set and are comparing it
10225              with zero, we can convert this into an equality comparison 
10226              between the position and the location of the single bit.  */
10227
10228           if (GET_CODE (XEXP (op0, 0)) == CONST_INT
10229               && XEXP (op0, 1) == const1_rtx
10230               && equality_comparison_p && const_op == 0
10231               && (i = exact_log2 (INTVAL (XEXP (op0, 0)))) >= 0)
10232             {
10233               if (BITS_BIG_ENDIAN)
10234                 {
10235 #ifdef HAVE_extzv
10236                   mode = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
10237                   if (mode == VOIDmode)
10238                     mode = word_mode;
10239                   i = (GET_MODE_BITSIZE (mode) - 1 - i);
10240 #else
10241                   i = BITS_PER_WORD - 1 - i;
10242 #endif
10243                 }
10244
10245               op0 = XEXP (op0, 2);
10246               op1 = GEN_INT (i);
10247               const_op = i;
10248
10249               /* Result is nonzero iff shift count is equal to I.  */
10250               code = reverse_condition (code);
10251               continue;
10252             }
10253
10254           /* ... fall through ...  */
10255
10256         case SIGN_EXTRACT:
10257           tem = expand_compound_operation (op0);
10258           if (tem != op0)
10259             {
10260               op0 = tem;
10261               continue;
10262             }
10263           break;
10264
10265         case NOT:
10266           /* If testing for equality, we can take the NOT of the constant.  */
10267           if (equality_comparison_p
10268               && (tem = simplify_unary_operation (NOT, mode, op1, mode)) != 0)
10269             {
10270               op0 = XEXP (op0, 0);
10271               op1 = tem;
10272               continue;
10273             }
10274
10275           /* If just looking at the sign bit, reverse the sense of the
10276              comparison.  */
10277           if (sign_bit_comparison_p)
10278             {
10279               op0 = XEXP (op0, 0);
10280               code = (code == GE ? LT : GE);
10281               continue;
10282             }
10283           break;
10284
10285         case NEG:
10286           /* If testing for equality, we can take the NEG of the constant.  */
10287           if (equality_comparison_p
10288               && (tem = simplify_unary_operation (NEG, mode, op1, mode)) != 0)
10289             {
10290               op0 = XEXP (op0, 0);
10291               op1 = tem;
10292               continue;
10293             }
10294
10295           /* The remaining cases only apply to comparisons with zero.  */
10296           if (const_op != 0)
10297             break;
10298
10299           /* When X is ABS or is known positive,
10300              (neg X) is < 0 if and only if X != 0.  */
10301
10302           if (sign_bit_comparison_p
10303               && (GET_CODE (XEXP (op0, 0)) == ABS
10304                   || (mode_width <= HOST_BITS_PER_WIDE_INT
10305                       && (nonzero_bits (XEXP (op0, 0), mode)
10306                           & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)))
10307             {
10308               op0 = XEXP (op0, 0);
10309               code = (code == LT ? NE : EQ);
10310               continue;
10311             }
10312
10313           /* If we have NEG of something whose two high-order bits are the
10314              same, we know that "(-a) < 0" is equivalent to "a > 0".  */
10315           if (num_sign_bit_copies (op0, mode) >= 2)
10316             {
10317               op0 = XEXP (op0, 0);
10318               code = swap_condition (code);
10319               continue;
10320             }
10321           break;
10322
10323         case ROTATE:
10324           /* If we are testing equality and our count is a constant, we
10325              can perform the inverse operation on our RHS.  */
10326           if (equality_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10327               && (tem = simplify_binary_operation (ROTATERT, mode,
10328                                                    op1, XEXP (op0, 1))) != 0)
10329             {
10330               op0 = XEXP (op0, 0);
10331               op1 = tem;
10332               continue;
10333             }
10334
10335           /* If we are doing a < 0 or >= 0 comparison, it means we are testing
10336              a particular bit.  Convert it to an AND of a constant of that
10337              bit.  This will be converted into a ZERO_EXTRACT.  */
10338           if (const_op == 0 && sign_bit_comparison_p
10339               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10340               && mode_width <= HOST_BITS_PER_WIDE_INT)
10341             {
10342               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10343                                             ((HOST_WIDE_INT) 1
10344                                              << (mode_width - 1
10345                                                  - INTVAL (XEXP (op0, 1)))));
10346               code = (code == LT ? NE : EQ);
10347               continue;
10348             }
10349
10350           /* ... fall through ...  */
10351
10352         case ABS:
10353           /* ABS is ignorable inside an equality comparison with zero.  */
10354           if (const_op == 0 && equality_comparison_p)
10355             {
10356               op0 = XEXP (op0, 0);
10357               continue;
10358             }
10359           break;
10360           
10361
10362         case SIGN_EXTEND:
10363           /* Can simplify (compare (zero/sign_extend FOO) CONST)
10364              to (compare FOO CONST) if CONST fits in FOO's mode and we 
10365              are either testing inequality or have an unsigned comparison
10366              with ZERO_EXTEND or a signed comparison with SIGN_EXTEND.  */
10367           if (! unsigned_comparison_p
10368               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10369                   <= HOST_BITS_PER_WIDE_INT)
10370               && ((unsigned HOST_WIDE_INT) const_op
10371                   < (((unsigned HOST_WIDE_INT) 1
10372                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0))) - 1)))))
10373             {
10374               op0 = XEXP (op0, 0);
10375               continue;
10376             }
10377           break;
10378
10379         case SUBREG:
10380           /* Check for the case where we are comparing A - C1 with C2,
10381              both constants are smaller than 1/2 the maximum positive
10382              value in MODE, and the comparison is equality or unsigned.
10383              In that case, if A is either zero-extended to MODE or has
10384              sufficient sign bits so that the high-order bit in MODE
10385              is a copy of the sign in the inner mode, we can prove that it is
10386              safe to do the operation in the wider mode.  This simplifies
10387              many range checks.  */
10388
10389           if (mode_width <= HOST_BITS_PER_WIDE_INT
10390               && subreg_lowpart_p (op0)
10391               && GET_CODE (SUBREG_REG (op0)) == PLUS
10392               && GET_CODE (XEXP (SUBREG_REG (op0), 1)) == CONST_INT
10393               && INTVAL (XEXP (SUBREG_REG (op0), 1)) < 0
10394               && (- INTVAL (XEXP (SUBREG_REG (op0), 1))
10395                   < (HOST_WIDE_INT)(GET_MODE_MASK (mode) / 2))
10396               && (unsigned HOST_WIDE_INT) const_op < GET_MODE_MASK (mode) / 2
10397               && (0 == (nonzero_bits (XEXP (SUBREG_REG (op0), 0),
10398                                       GET_MODE (SUBREG_REG (op0)))
10399                         & ~ GET_MODE_MASK (mode))
10400                   || (num_sign_bit_copies (XEXP (SUBREG_REG (op0), 0),
10401                                            GET_MODE (SUBREG_REG (op0)))
10402                       > (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10403                          - GET_MODE_BITSIZE (mode)))))
10404             {
10405               op0 = SUBREG_REG (op0);
10406               continue;
10407             }
10408
10409           /* If the inner mode is narrower and we are extracting the low part,
10410              we can treat the SUBREG as if it were a ZERO_EXTEND.  */
10411           if (subreg_lowpart_p (op0)
10412               && GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0))) < mode_width)
10413             /* Fall through */ ;
10414           else
10415             break;
10416
10417           /* ... fall through ...  */
10418
10419         case ZERO_EXTEND:
10420           if ((unsigned_comparison_p || equality_comparison_p)
10421               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10422                   <= HOST_BITS_PER_WIDE_INT)
10423               && ((unsigned HOST_WIDE_INT) const_op
10424                   < GET_MODE_MASK (GET_MODE (XEXP (op0, 0)))))
10425             {
10426               op0 = XEXP (op0, 0);
10427               continue;
10428             }
10429           break;
10430
10431         case PLUS:
10432           /* (eq (plus X A) B) -> (eq X (minus B A)).  We can only do
10433              this for equality comparisons due to pathological cases involving
10434              overflows.  */
10435           if (equality_comparison_p
10436               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10437                                                         op1, XEXP (op0, 1))))
10438             {
10439               op0 = XEXP (op0, 0);
10440               op1 = tem;
10441               continue;
10442             }
10443
10444           /* (plus (abs X) (const_int -1)) is < 0 if and only if X == 0.  */
10445           if (const_op == 0 && XEXP (op0, 1) == constm1_rtx
10446               && GET_CODE (XEXP (op0, 0)) == ABS && sign_bit_comparison_p)
10447             {
10448               op0 = XEXP (XEXP (op0, 0), 0);
10449               code = (code == LT ? EQ : NE);
10450               continue;
10451             }
10452           break;
10453
10454         case MINUS:
10455           /* We used to optimize signed comparisons against zero, but that
10456              was incorrect.  Unsigned comparisons against zero (GTU, LEU)
10457              arrive here as equality comparisons, or (GEU, LTU) are
10458              optimized away.  No need to special-case them.  */
10459
10460           /* (eq (minus A B) C) -> (eq A (plus B C)) or
10461              (eq B (minus A C)), whichever simplifies.  We can only do
10462              this for equality comparisons due to pathological cases involving
10463              overflows.  */
10464           if (equality_comparison_p
10465               && 0 != (tem = simplify_binary_operation (PLUS, mode,
10466                                                         XEXP (op0, 1), op1)))
10467             {
10468               op0 = XEXP (op0, 0);
10469               op1 = tem;
10470               continue;
10471             }
10472
10473           if (equality_comparison_p
10474               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10475                                                         XEXP (op0, 0), op1)))
10476             {
10477               op0 = XEXP (op0, 1);
10478               op1 = tem;
10479               continue;
10480             }
10481
10482           /* The sign bit of (minus (ashiftrt X C) X), where C is the number
10483              of bits in X minus 1, is one iff X > 0.  */
10484           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == ASHIFTRT
10485               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10486               && INTVAL (XEXP (XEXP (op0, 0), 1)) == mode_width - 1
10487               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10488             {
10489               op0 = XEXP (op0, 1);
10490               code = (code == GE ? LE : GT);
10491               continue;
10492             }
10493           break;
10494
10495         case XOR:
10496           /* (eq (xor A B) C) -> (eq A (xor B C)).  This is a simplification
10497              if C is zero or B is a constant.  */
10498           if (equality_comparison_p
10499               && 0 != (tem = simplify_binary_operation (XOR, mode,
10500                                                         XEXP (op0, 1), op1)))
10501             {
10502               op0 = XEXP (op0, 0);
10503               op1 = tem;
10504               continue;
10505             }
10506           break;
10507
10508         case EQ:  case NE:
10509         case LT:  case LTU:  case LE:  case LEU:
10510         case GT:  case GTU:  case GE:  case GEU:
10511           /* We can't do anything if OP0 is a condition code value, rather
10512              than an actual data value.  */
10513           if (const_op != 0
10514 #ifdef HAVE_cc0
10515               || XEXP (op0, 0) == cc0_rtx
10516 #endif
10517               || GET_MODE_CLASS (GET_MODE (XEXP (op0, 0))) == MODE_CC)
10518             break;
10519
10520           /* Get the two operands being compared.  */
10521           if (GET_CODE (XEXP (op0, 0)) == COMPARE)
10522             tem = XEXP (XEXP (op0, 0), 0), tem1 = XEXP (XEXP (op0, 0), 1);
10523           else
10524             tem = XEXP (op0, 0), tem1 = XEXP (op0, 1);
10525
10526           /* Check for the cases where we simply want the result of the
10527              earlier test or the opposite of that result.  */
10528           if (code == NE
10529               || (code == EQ && reversible_comparison_p (op0))
10530               || (GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
10531                   && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10532                   && (STORE_FLAG_VALUE
10533                       & (((HOST_WIDE_INT) 1
10534                           << (GET_MODE_BITSIZE (GET_MODE (op0)) - 1))))
10535                   && (code == LT
10536                       || (code == GE && reversible_comparison_p (op0)))))
10537             {
10538               code = (code == LT || code == NE
10539                       ? GET_CODE (op0) : reverse_condition (GET_CODE (op0)));
10540               op0 = tem, op1 = tem1;
10541               continue;
10542             }
10543           break;
10544
10545         case IOR:
10546           /* The sign bit of (ior (plus X (const_int -1)) X) is non-zero
10547              iff X <= 0.  */
10548           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == PLUS
10549               && XEXP (XEXP (op0, 0), 1) == constm1_rtx
10550               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10551             {
10552               op0 = XEXP (op0, 1);
10553               code = (code == GE ? GT : LE);
10554               continue;
10555             }
10556           break;
10557
10558         case AND:
10559           /* Convert (and (xshift 1 X) Y) to (and (lshiftrt Y X) 1).  This
10560              will be converted to a ZERO_EXTRACT later.  */
10561           if (const_op == 0 && equality_comparison_p
10562               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10563               && XEXP (XEXP (op0, 0), 0) == const1_rtx)
10564             {
10565               op0 = simplify_and_const_int
10566                 (op0, mode, gen_rtx_combine (LSHIFTRT, mode,
10567                                              XEXP (op0, 1),
10568                                              XEXP (XEXP (op0, 0), 1)),
10569                  (HOST_WIDE_INT) 1);
10570               continue;
10571             }
10572
10573           /* If we are comparing (and (lshiftrt X C1) C2) for equality with
10574              zero and X is a comparison and C1 and C2 describe only bits set
10575              in STORE_FLAG_VALUE, we can compare with X.  */
10576           if (const_op == 0 && equality_comparison_p
10577               && mode_width <= HOST_BITS_PER_WIDE_INT
10578               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10579               && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
10580               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10581               && INTVAL (XEXP (XEXP (op0, 0), 1)) >= 0
10582               && INTVAL (XEXP (XEXP (op0, 0), 1)) < HOST_BITS_PER_WIDE_INT)
10583             {
10584               mask = ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10585                       << INTVAL (XEXP (XEXP (op0, 0), 1)));
10586               if ((~ STORE_FLAG_VALUE & mask) == 0
10587                   && (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (op0, 0), 0))) == '<'
10588                       || ((tem = get_last_value (XEXP (XEXP (op0, 0), 0))) != 0
10589                           && GET_RTX_CLASS (GET_CODE (tem)) == '<')))
10590                 {
10591                   op0 = XEXP (XEXP (op0, 0), 0);
10592                   continue;
10593                 }
10594             }
10595
10596           /* If we are doing an equality comparison of an AND of a bit equal
10597              to the sign bit, replace this with a LT or GE comparison of
10598              the underlying value.  */
10599           if (equality_comparison_p
10600               && const_op == 0
10601               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10602               && mode_width <= HOST_BITS_PER_WIDE_INT
10603               && ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10604                   == (unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
10605             {
10606               op0 = XEXP (op0, 0);
10607               code = (code == EQ ? GE : LT);
10608               continue;
10609             }
10610
10611           /* If this AND operation is really a ZERO_EXTEND from a narrower
10612              mode, the constant fits within that mode, and this is either an
10613              equality or unsigned comparison, try to do this comparison in
10614              the narrower mode.  */
10615           if ((equality_comparison_p || unsigned_comparison_p)
10616               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10617               && (i = exact_log2 ((INTVAL (XEXP (op0, 1))
10618                                    & GET_MODE_MASK (mode))
10619                                   + 1)) >= 0
10620               && const_op >> i == 0
10621               && (tmode = mode_for_size (i, MODE_INT, 1)) != BLKmode)
10622             {
10623               op0 = gen_lowpart_for_combine (tmode, XEXP (op0, 0));
10624               continue;
10625             }
10626
10627           /* If this is (and:M1 (subreg:M2 X 0) (const_int C1)) where C1 fits
10628              in both M1 and M2 and the SUBREG is either paradoxical or
10629              represents the low part, permute the SUBREG and the AND and
10630              try again.  */
10631           if (GET_CODE (XEXP (op0, 0)) == SUBREG
10632               && (0
10633 #ifdef WORD_REGISTER_OPERATIONS
10634                   || ((mode_width
10635                        > (GET_MODE_BITSIZE
10636                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10637                       && mode_width <= BITS_PER_WORD)
10638 #endif
10639                   || ((mode_width
10640                        <= (GET_MODE_BITSIZE
10641                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10642                       && subreg_lowpart_p (XEXP (op0, 0))))
10643 #ifndef WORD_REGISTER_OPERATIONS
10644               /* It is unsafe to commute the AND into the SUBREG if the SUBREG
10645                  is paradoxical and WORD_REGISTER_OPERATIONS is not defined.
10646                  As originally written the upper bits have a defined value
10647                  due to the AND operation.  However, if we commute the AND
10648                  inside the SUBREG then they no longer have defined values
10649                  and the meaning of the code has been changed.  */
10650               && (GET_MODE_SIZE (GET_MODE (XEXP (op0, 0)))
10651                   <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0)))))
10652 #endif
10653               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10654               && mode_width <= HOST_BITS_PER_WIDE_INT
10655               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10656                   <= HOST_BITS_PER_WIDE_INT)
10657               && (INTVAL (XEXP (op0, 1)) & ~ mask) == 0
10658               && 0 == (~ GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10659                        & INTVAL (XEXP (op0, 1)))
10660               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1)) != mask
10661               && ((unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1))
10662                   != GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10663                        
10664             {
10665               op0
10666                 = gen_lowpart_for_combine
10667                   (mode,
10668                    gen_binary (AND, GET_MODE (SUBREG_REG (XEXP (op0, 0))),
10669                                SUBREG_REG (XEXP (op0, 0)), XEXP (op0, 1)));
10670               continue;
10671             }
10672
10673           break;
10674
10675         case ASHIFT:
10676           /* If we have (compare (ashift FOO N) (const_int C)) and
10677              the high order N bits of FOO (N+1 if an inequality comparison)
10678              are known to be zero, we can do this by comparing FOO with C
10679              shifted right N bits so long as the low-order N bits of C are
10680              zero.  */
10681           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10682               && INTVAL (XEXP (op0, 1)) >= 0
10683               && ((INTVAL (XEXP (op0, 1)) + ! equality_comparison_p)
10684                   < HOST_BITS_PER_WIDE_INT)
10685               && ((const_op
10686                    & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0)
10687               && mode_width <= HOST_BITS_PER_WIDE_INT
10688               && (nonzero_bits (XEXP (op0, 0), mode)
10689                   & ~ (mask >> (INTVAL (XEXP (op0, 1))
10690                                 + ! equality_comparison_p))) == 0)
10691             {
10692               /* We must perform a logical shift, not an arithmetic one,
10693                  as we want the top N bits of C to be zero.  */
10694               unsigned HOST_WIDE_INT temp = const_op & GET_MODE_MASK (mode);
10695               
10696               temp >>= INTVAL (XEXP (op0, 1));
10697               op1 = GEN_INT (trunc_int_for_mode (temp, mode));
10698               op0 = XEXP (op0, 0);
10699               continue;
10700             }
10701
10702           /* If we are doing a sign bit comparison, it means we are testing
10703              a particular bit.  Convert it to the appropriate AND.  */
10704           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10705               && mode_width <= HOST_BITS_PER_WIDE_INT)
10706             {
10707               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10708                                             ((HOST_WIDE_INT) 1
10709                                              << (mode_width - 1
10710                                                  - INTVAL (XEXP (op0, 1)))));
10711               code = (code == LT ? NE : EQ);
10712               continue;
10713             }
10714
10715           /* If this an equality comparison with zero and we are shifting
10716              the low bit to the sign bit, we can convert this to an AND of the
10717              low-order bit.  */
10718           if (const_op == 0 && equality_comparison_p
10719               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10720               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10721             {
10722               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10723                                             (HOST_WIDE_INT) 1);
10724               continue;
10725             }
10726           break;
10727
10728         case ASHIFTRT:
10729           /* If this is an equality comparison with zero, we can do this
10730              as a logical shift, which might be much simpler.  */
10731           if (equality_comparison_p && const_op == 0
10732               && GET_CODE (XEXP (op0, 1)) == CONST_INT)
10733             {
10734               op0 = simplify_shift_const (NULL_RTX, LSHIFTRT, mode,
10735                                           XEXP (op0, 0),
10736                                           INTVAL (XEXP (op0, 1)));
10737               continue;
10738             }
10739
10740           /* If OP0 is a sign extension and CODE is not an unsigned comparison,
10741              do the comparison in a narrower mode.  */
10742           if (! unsigned_comparison_p
10743               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10744               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10745               && XEXP (op0, 1) == XEXP (XEXP (op0, 0), 1)
10746               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10747                                          MODE_INT, 1)) != BLKmode
10748               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10749                   || ((unsigned HOST_WIDE_INT) - const_op
10750                       <= GET_MODE_MASK (tmode))))
10751             {
10752               op0 = gen_lowpart_for_combine (tmode, XEXP (XEXP (op0, 0), 0));
10753               continue;
10754             }
10755
10756           /* Likewise if OP0 is a PLUS of a sign extension with a
10757              constant, which is usually represented with the PLUS
10758              between the shifts.  */
10759           if (! unsigned_comparison_p
10760               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10761               && GET_CODE (XEXP (op0, 0)) == PLUS
10762               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10763               && GET_CODE (XEXP (XEXP (op0, 0), 0)) == ASHIFT
10764               && XEXP (op0, 1) == XEXP (XEXP (XEXP (op0, 0), 0), 1)
10765               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10766                                          MODE_INT, 1)) != BLKmode
10767               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10768                   || ((unsigned HOST_WIDE_INT) - const_op
10769                       <= GET_MODE_MASK (tmode))))
10770             {
10771               rtx inner = XEXP (XEXP (XEXP (op0, 0), 0), 0);
10772               rtx add_const = XEXP (XEXP (op0, 0), 1);
10773               rtx new_const = gen_binary (ASHIFTRT, GET_MODE (op0), add_const,
10774                                           XEXP (op0, 1));
10775
10776               op0 = gen_binary (PLUS, tmode,
10777                                 gen_lowpart_for_combine (tmode, inner),
10778                                 new_const);
10779               continue;
10780             }
10781
10782           /* ... fall through ...  */
10783         case LSHIFTRT:
10784           /* If we have (compare (xshiftrt FOO N) (const_int C)) and
10785              the low order N bits of FOO are known to be zero, we can do this
10786              by comparing FOO with C shifted left N bits so long as no
10787              overflow occurs.  */
10788           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10789               && INTVAL (XEXP (op0, 1)) >= 0
10790               && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
10791               && mode_width <= HOST_BITS_PER_WIDE_INT
10792               && (nonzero_bits (XEXP (op0, 0), mode)
10793                   & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0
10794               && (const_op == 0
10795                   || (floor_log2 (const_op) + INTVAL (XEXP (op0, 1))
10796                       < mode_width)))
10797             {
10798               const_op <<= INTVAL (XEXP (op0, 1));
10799               op1 = GEN_INT (const_op);
10800               op0 = XEXP (op0, 0);
10801               continue;
10802             }
10803
10804           /* If we are using this shift to extract just the sign bit, we
10805              can replace this with an LT or GE comparison.  */
10806           if (const_op == 0
10807               && (equality_comparison_p || sign_bit_comparison_p)
10808               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10809               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10810             {
10811               op0 = XEXP (op0, 0);
10812               code = (code == NE || code == GT ? LT : GE);
10813               continue;
10814             }
10815           break;
10816           
10817         default:
10818           break;
10819         }
10820
10821       break;
10822     }
10823
10824   /* Now make any compound operations involved in this comparison.  Then,
10825      check for an outmost SUBREG on OP0 that is not doing anything or is
10826      paradoxical.  The latter case can only occur when it is known that the
10827      "extra" bits will be zero.  Therefore, it is safe to remove the SUBREG.
10828      We can never remove a SUBREG for a non-equality comparison because the
10829      sign bit is in a different place in the underlying object.  */
10830
10831   op0 = make_compound_operation (op0, op1 == const0_rtx ? COMPARE : SET);
10832   op1 = make_compound_operation (op1, SET);
10833
10834   if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10835       && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10836       && (code == NE || code == EQ)
10837       && ((GET_MODE_SIZE (GET_MODE (op0))
10838            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0))))))
10839     {
10840       op0 = SUBREG_REG (op0);
10841       op1 = gen_lowpart_for_combine (GET_MODE (op0), op1);
10842     }
10843
10844   else if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10845            && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10846            && (code == NE || code == EQ)
10847            && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10848                <= HOST_BITS_PER_WIDE_INT)
10849            && (nonzero_bits (SUBREG_REG (op0), GET_MODE (SUBREG_REG (op0)))
10850                & ~ GET_MODE_MASK (GET_MODE (op0))) == 0
10851            && (tem = gen_lowpart_for_combine (GET_MODE (SUBREG_REG (op0)),
10852                                               op1),
10853                (nonzero_bits (tem, GET_MODE (SUBREG_REG (op0)))
10854                 & ~ GET_MODE_MASK (GET_MODE (op0))) == 0))
10855     op0 = SUBREG_REG (op0), op1 = tem;
10856
10857   /* We now do the opposite procedure: Some machines don't have compare
10858      insns in all modes.  If OP0's mode is an integer mode smaller than a
10859      word and we can't do a compare in that mode, see if there is a larger
10860      mode for which we can do the compare.  There are a number of cases in
10861      which we can use the wider mode.  */
10862
10863   mode = GET_MODE (op0);
10864   if (mode != VOIDmode && GET_MODE_CLASS (mode) == MODE_INT
10865       && GET_MODE_SIZE (mode) < UNITS_PER_WORD
10866       && cmp_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing)
10867     for (tmode = GET_MODE_WIDER_MODE (mode);
10868          (tmode != VOIDmode
10869           && GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT);
10870          tmode = GET_MODE_WIDER_MODE (tmode))
10871       if (cmp_optab->handlers[(int) tmode].insn_code != CODE_FOR_nothing)
10872         {
10873           /* If the only nonzero bits in OP0 and OP1 are those in the
10874              narrower mode and this is an equality or unsigned comparison,
10875              we can use the wider mode.  Similarly for sign-extended
10876              values, in which case it is true for all comparisons.  */
10877           if (((code == EQ || code == NE
10878                 || code == GEU || code == GTU || code == LEU || code == LTU)
10879                && (nonzero_bits (op0, tmode) & ~ GET_MODE_MASK (mode)) == 0
10880                && (nonzero_bits (op1, tmode) & ~ GET_MODE_MASK (mode)) == 0)
10881               || ((num_sign_bit_copies (op0, tmode)
10882                    > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))
10883                   && (num_sign_bit_copies (op1, tmode)
10884                       > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))))
10885             {
10886               /* If OP0 is an AND and we don't have an AND in MODE either,
10887                  make a new AND in the proper mode.  */
10888               if (GET_CODE (op0) == AND
10889                   && (add_optab->handlers[(int) mode].insn_code
10890                       == CODE_FOR_nothing))
10891                 op0 = gen_binary (AND, tmode,
10892                                   gen_lowpart_for_combine (tmode,
10893                                                            XEXP (op0, 0)),
10894                                   gen_lowpart_for_combine (tmode,
10895                                                            XEXP (op0, 1)));
10896
10897               op0 = gen_lowpart_for_combine (tmode, op0);
10898               op1 = gen_lowpart_for_combine (tmode, op1);
10899               break;
10900             }
10901
10902           /* If this is a test for negative, we can make an explicit
10903              test of the sign bit.  */
10904
10905           if (op1 == const0_rtx && (code == LT || code == GE)
10906               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10907             {
10908               op0 = gen_binary (AND, tmode,
10909                                 gen_lowpart_for_combine (tmode, op0),
10910                                 GEN_INT ((HOST_WIDE_INT) 1
10911                                          << (GET_MODE_BITSIZE (mode) - 1)));
10912               code = (code == LT) ? NE : EQ;
10913               break;
10914             }
10915         }
10916
10917 #ifdef CANONICALIZE_COMPARISON
10918   /* If this machine only supports a subset of valid comparisons, see if we
10919      can convert an unsupported one into a supported one.  */
10920   CANONICALIZE_COMPARISON (code, op0, op1);
10921 #endif
10922
10923   *pop0 = op0;
10924   *pop1 = op1;
10925
10926   return code;
10927 }
10928 \f
10929 /* Return 1 if we know that X, a comparison operation, is not operating
10930    on a floating-point value or is EQ or NE, meaning that we can safely
10931    reverse it.  */
10932
10933 static int
10934 reversible_comparison_p (x)
10935      rtx x;
10936 {
10937   if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
10938       || flag_fast_math
10939       || GET_CODE (x) == NE || GET_CODE (x) == EQ
10940       || GET_CODE (x) == UNORDERED || GET_CODE (x) == ORDERED)
10941     return 1;
10942
10943   switch (GET_MODE_CLASS (GET_MODE (XEXP (x, 0))))
10944     {
10945     case MODE_INT:
10946     case MODE_PARTIAL_INT:
10947     case MODE_COMPLEX_INT:
10948       return 1;
10949
10950     case MODE_CC:
10951       /* If the mode of the condition codes tells us that this is safe,
10952          we need look no further.  */
10953       if (REVERSIBLE_CC_MODE (GET_MODE (XEXP (x, 0))))
10954         return 1;
10955
10956       /* Otherwise try and find where the condition codes were last set and
10957          use that.  */
10958       x = get_last_value (XEXP (x, 0));
10959       return (x && GET_CODE (x) == COMPARE
10960               && ! FLOAT_MODE_P (GET_MODE (XEXP (x, 0))));
10961       
10962     default:
10963       return 0;
10964     }
10965 }
10966 \f
10967 /* Utility function for following routine.  Called when X is part of a value
10968    being stored into reg_last_set_value.  Sets reg_last_set_table_tick
10969    for each register mentioned.  Similar to mention_regs in cse.c  */
10970
10971 static void
10972 update_table_tick (x)
10973      rtx x;
10974 {
10975   register enum rtx_code code = GET_CODE (x);
10976   register const char *fmt = GET_RTX_FORMAT (code);
10977   register int i;
10978
10979   if (code == REG)
10980     {
10981       unsigned int regno = REGNO (x);
10982       unsigned int endregno
10983         = regno + (regno < FIRST_PSEUDO_REGISTER
10984                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
10985       unsigned int r;
10986
10987       for (r = regno; r < endregno; r++)
10988         reg_last_set_table_tick[r] = label_tick;
10989
10990       return;
10991     }
10992   
10993   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
10994     /* Note that we can't have an "E" in values stored; see
10995        get_last_value_validate.  */
10996     if (fmt[i] == 'e')
10997       update_table_tick (XEXP (x, i));
10998 }
10999
11000 /* Record that REG is set to VALUE in insn INSN.  If VALUE is zero, we
11001    are saying that the register is clobbered and we no longer know its
11002    value.  If INSN is zero, don't update reg_last_set; this is only permitted
11003    with VALUE also zero and is used to invalidate the register.  */
11004
11005 static void
11006 record_value_for_reg (reg, insn, value)
11007      rtx reg;
11008      rtx insn;
11009      rtx value;
11010 {
11011   unsigned int regno = REGNO (reg);
11012   unsigned int endregno
11013     = regno + (regno < FIRST_PSEUDO_REGISTER
11014                ? HARD_REGNO_NREGS (regno, GET_MODE (reg)) : 1);
11015   unsigned int i;
11016
11017   /* If VALUE contains REG and we have a previous value for REG, substitute
11018      the previous value.  */
11019   if (value && insn && reg_overlap_mentioned_p (reg, value))
11020     {
11021       rtx tem;
11022
11023       /* Set things up so get_last_value is allowed to see anything set up to
11024          our insn.  */
11025       subst_low_cuid = INSN_CUID (insn);
11026       tem = get_last_value (reg);      
11027
11028       /* If TEM is simply a binary operation with two CLOBBERs as operands,
11029          it isn't going to be useful and will take a lot of time to process,
11030          so just use the CLOBBER.  */
11031
11032       if (tem)
11033         {
11034           if ((GET_RTX_CLASS (GET_CODE (tem)) == '2'
11035                || GET_RTX_CLASS (GET_CODE (tem)) == 'c')
11036               && GET_CODE (XEXP (tem, 0)) == CLOBBER
11037               && GET_CODE (XEXP (tem, 1)) == CLOBBER)
11038             tem = XEXP (tem, 0);
11039
11040           value = replace_rtx (copy_rtx (value), reg, tem);
11041         }
11042     }
11043
11044   /* For each register modified, show we don't know its value, that
11045      we don't know about its bitwise content, that its value has been
11046      updated, and that we don't know the location of the death of the
11047      register.  */
11048   for (i = regno; i < endregno; i++)
11049     {
11050       if (insn)
11051         reg_last_set[i] = insn;
11052
11053       reg_last_set_value[i] = 0;
11054       reg_last_set_mode[i] = 0;
11055       reg_last_set_nonzero_bits[i] = 0;
11056       reg_last_set_sign_bit_copies[i] = 0;
11057       reg_last_death[i] = 0;
11058     }
11059
11060   /* Mark registers that are being referenced in this value.  */
11061   if (value)
11062     update_table_tick (value);
11063
11064   /* Now update the status of each register being set.
11065      If someone is using this register in this block, set this register
11066      to invalid since we will get confused between the two lives in this
11067      basic block.  This makes using this register always invalid.  In cse, we
11068      scan the table to invalidate all entries using this register, but this
11069      is too much work for us.  */
11070
11071   for (i = regno; i < endregno; i++)
11072     {
11073       reg_last_set_label[i] = label_tick;
11074       if (value && reg_last_set_table_tick[i] == label_tick)
11075         reg_last_set_invalid[i] = 1;
11076       else
11077         reg_last_set_invalid[i] = 0;
11078     }
11079
11080   /* The value being assigned might refer to X (like in "x++;").  In that
11081      case, we must replace it with (clobber (const_int 0)) to prevent
11082      infinite loops.  */
11083   if (value && ! get_last_value_validate (&value, insn,
11084                                           reg_last_set_label[regno], 0))
11085     {
11086       value = copy_rtx (value);
11087       if (! get_last_value_validate (&value, insn,
11088                                      reg_last_set_label[regno], 1))
11089         value = 0;
11090     }
11091
11092   /* For the main register being modified, update the value, the mode, the
11093      nonzero bits, and the number of sign bit copies.  */
11094
11095   reg_last_set_value[regno] = value;
11096
11097   if (value)
11098     {
11099       subst_low_cuid = INSN_CUID (insn);
11100       reg_last_set_mode[regno] = GET_MODE (reg);
11101       reg_last_set_nonzero_bits[regno] = nonzero_bits (value, GET_MODE (reg));
11102       reg_last_set_sign_bit_copies[regno]
11103         = num_sign_bit_copies (value, GET_MODE (reg));
11104     }
11105 }
11106
11107 /* Called via note_stores from record_dead_and_set_regs to handle one
11108    SET or CLOBBER in an insn.  DATA is the instruction in which the
11109    set is occurring.  */
11110
11111 static void
11112 record_dead_and_set_regs_1 (dest, setter, data)
11113      rtx dest, setter;
11114      void *data;
11115 {
11116   rtx record_dead_insn = (rtx) data;
11117
11118   if (GET_CODE (dest) == SUBREG)
11119     dest = SUBREG_REG (dest);
11120
11121   if (GET_CODE (dest) == REG)
11122     {
11123       /* If we are setting the whole register, we know its value.  Otherwise
11124          show that we don't know the value.  We can handle SUBREG in
11125          some cases.  */
11126       if (GET_CODE (setter) == SET && dest == SET_DEST (setter))
11127         record_value_for_reg (dest, record_dead_insn, SET_SRC (setter));
11128       else if (GET_CODE (setter) == SET
11129                && GET_CODE (SET_DEST (setter)) == SUBREG
11130                && SUBREG_REG (SET_DEST (setter)) == dest
11131                && GET_MODE_BITSIZE (GET_MODE (dest)) <= BITS_PER_WORD
11132                && subreg_lowpart_p (SET_DEST (setter)))
11133         record_value_for_reg (dest, record_dead_insn,
11134                               gen_lowpart_for_combine (GET_MODE (dest),
11135                                                        SET_SRC (setter)));
11136       else
11137         record_value_for_reg (dest, record_dead_insn, NULL_RTX);
11138     }
11139   else if (GET_CODE (dest) == MEM
11140            /* Ignore pushes, they clobber nothing.  */
11141            && ! push_operand (dest, GET_MODE (dest)))
11142     mem_last_set = INSN_CUID (record_dead_insn);
11143 }
11144
11145 /* Update the records of when each REG was most recently set or killed
11146    for the things done by INSN.  This is the last thing done in processing
11147    INSN in the combiner loop.
11148
11149    We update reg_last_set, reg_last_set_value, reg_last_set_mode,
11150    reg_last_set_nonzero_bits, reg_last_set_sign_bit_copies, reg_last_death,
11151    and also the similar information mem_last_set (which insn most recently
11152    modified memory) and last_call_cuid (which insn was the most recent
11153    subroutine call).  */
11154
11155 static void
11156 record_dead_and_set_regs (insn)
11157      rtx insn;
11158 {
11159   register rtx link;
11160   unsigned int i;
11161
11162   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
11163     {
11164       if (REG_NOTE_KIND (link) == REG_DEAD
11165           && GET_CODE (XEXP (link, 0)) == REG)
11166         {
11167           unsigned int regno = REGNO (XEXP (link, 0));
11168           unsigned int endregno
11169             = regno + (regno < FIRST_PSEUDO_REGISTER
11170                        ? HARD_REGNO_NREGS (regno, GET_MODE (XEXP (link, 0)))
11171                        : 1);
11172
11173           for (i = regno; i < endregno; i++)
11174             reg_last_death[i] = insn;
11175         }
11176       else if (REG_NOTE_KIND (link) == REG_INC)
11177         record_value_for_reg (XEXP (link, 0), insn, NULL_RTX);
11178     }
11179
11180   if (GET_CODE (insn) == CALL_INSN)
11181     {
11182       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
11183         if (call_used_regs[i])
11184           {
11185             reg_last_set_value[i] = 0;
11186             reg_last_set_mode[i] = 0;
11187             reg_last_set_nonzero_bits[i] = 0;
11188             reg_last_set_sign_bit_copies[i] = 0;
11189             reg_last_death[i] = 0;
11190           }
11191
11192       last_call_cuid = mem_last_set = INSN_CUID (insn);
11193     }
11194
11195   note_stores (PATTERN (insn), record_dead_and_set_regs_1, insn);
11196 }
11197
11198 /* If a SUBREG has the promoted bit set, it is in fact a property of the
11199    register present in the SUBREG, so for each such SUBREG go back and
11200    adjust nonzero and sign bit information of the registers that are
11201    known to have some zero/sign bits set.
11202
11203    This is needed because when combine blows the SUBREGs away, the
11204    information on zero/sign bits is lost and further combines can be
11205    missed because of that.  */
11206
11207 static void
11208 record_promoted_value (insn, subreg)
11209     rtx insn;
11210     rtx subreg;
11211 {
11212   rtx links, set;
11213   unsigned int regno = REGNO (SUBREG_REG (subreg));
11214   enum machine_mode mode = GET_MODE (subreg);
11215
11216   if (GET_MODE_BITSIZE (mode) >= HOST_BITS_PER_WIDE_INT)
11217     return;
11218
11219   for (links = LOG_LINKS (insn); links; )
11220     {
11221       insn = XEXP (links, 0);
11222       set = single_set (insn);
11223
11224       if (! set || GET_CODE (SET_DEST (set)) != REG
11225           || REGNO (SET_DEST (set)) != regno
11226           || GET_MODE (SET_DEST (set)) != GET_MODE (SUBREG_REG (subreg)))
11227         {
11228           links = XEXP (links, 1);
11229           continue;
11230         }
11231
11232       if (reg_last_set [regno] == insn)
11233         {
11234           if (SUBREG_PROMOTED_UNSIGNED_P (subreg))
11235             reg_last_set_nonzero_bits [regno] &= GET_MODE_MASK (mode);
11236         }
11237
11238       if (GET_CODE (SET_SRC (set)) == REG)
11239         {
11240           regno = REGNO (SET_SRC (set));
11241           links = LOG_LINKS (insn);
11242         }
11243       else
11244         break;
11245     }
11246 }
11247
11248 /* Scan X for promoted SUBREGs.  For each one found,
11249    note what it implies to the registers used in it.  */
11250
11251 static void
11252 check_promoted_subreg (insn, x)
11253     rtx insn;
11254     rtx x;
11255 {
11256   if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
11257       && GET_CODE (SUBREG_REG (x)) == REG)
11258     record_promoted_value (insn, x);
11259   else
11260     {
11261       const char *format = GET_RTX_FORMAT (GET_CODE (x));
11262       int i, j;
11263
11264       for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
11265         switch (format [i])
11266           {
11267           case 'e':
11268             check_promoted_subreg (insn, XEXP (x, i));
11269             break;
11270           case 'V':
11271           case 'E':
11272             if (XVEC (x, i) != 0)
11273               for (j = 0; j < XVECLEN (x, i); j++)
11274                 check_promoted_subreg (insn, XVECEXP (x, i, j));
11275             break;
11276           }
11277     }
11278 }
11279 \f
11280 /* Utility routine for the following function.  Verify that all the registers
11281    mentioned in *LOC are valid when *LOC was part of a value set when
11282    label_tick == TICK.  Return 0 if some are not.
11283
11284    If REPLACE is non-zero, replace the invalid reference with
11285    (clobber (const_int 0)) and return 1.  This replacement is useful because
11286    we often can get useful information about the form of a value (e.g., if
11287    it was produced by a shift that always produces -1 or 0) even though
11288    we don't know exactly what registers it was produced from.  */
11289
11290 static int
11291 get_last_value_validate (loc, insn, tick, replace)
11292      rtx *loc;
11293      rtx insn;
11294      int tick;
11295      int replace;
11296 {
11297   rtx x = *loc;
11298   const char *fmt = GET_RTX_FORMAT (GET_CODE (x));
11299   int len = GET_RTX_LENGTH (GET_CODE (x));
11300   int i;
11301
11302   if (GET_CODE (x) == REG)
11303     {
11304       unsigned int regno = REGNO (x);
11305       unsigned int endregno
11306         = regno + (regno < FIRST_PSEUDO_REGISTER
11307                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11308       unsigned int j;
11309
11310       for (j = regno; j < endregno; j++)
11311         if (reg_last_set_invalid[j]
11312             /* If this is a pseudo-register that was only set once and not
11313                live at the beginning of the function, it is always valid.  */
11314             || (! (regno >= FIRST_PSEUDO_REGISTER 
11315                    && REG_N_SETS (regno) == 1
11316                    && (! REGNO_REG_SET_P
11317                        (BASIC_BLOCK (0)->global_live_at_start, regno)))
11318                 && reg_last_set_label[j] > tick))
11319           {
11320             if (replace)
11321               *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11322             return replace;
11323           }
11324
11325       return 1;
11326     }
11327   /* If this is a memory reference, make sure that there were
11328      no stores after it that might have clobbered the value.  We don't
11329      have alias info, so we assume any store invalidates it.  */
11330   else if (GET_CODE (x) == MEM && ! RTX_UNCHANGING_P (x)
11331            && INSN_CUID (insn) <= mem_last_set)
11332     {
11333       if (replace)
11334         *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11335       return replace;
11336     }
11337
11338   for (i = 0; i < len; i++)
11339     if ((fmt[i] == 'e'
11340          && get_last_value_validate (&XEXP (x, i), insn, tick, replace) == 0)
11341         /* Don't bother with these.  They shouldn't occur anyway.  */
11342         || fmt[i] == 'E')
11343       return 0;
11344
11345   /* If we haven't found a reason for it to be invalid, it is valid.  */
11346   return 1;
11347 }
11348
11349 /* Get the last value assigned to X, if known.  Some registers
11350    in the value may be replaced with (clobber (const_int 0)) if their value
11351    is known longer known reliably.  */
11352
11353 static rtx
11354 get_last_value (x)
11355      rtx x;
11356 {
11357   unsigned int regno;
11358   rtx value;
11359
11360   /* If this is a non-paradoxical SUBREG, get the value of its operand and
11361      then convert it to the desired mode.  If this is a paradoxical SUBREG,
11362      we cannot predict what values the "extra" bits might have.  */
11363   if (GET_CODE (x) == SUBREG
11364       && subreg_lowpart_p (x)
11365       && (GET_MODE_SIZE (GET_MODE (x))
11366           <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
11367       && (value = get_last_value (SUBREG_REG (x))) != 0)
11368     return gen_lowpart_for_combine (GET_MODE (x), value);
11369
11370   if (GET_CODE (x) != REG)
11371     return 0;
11372
11373   regno = REGNO (x);
11374   value = reg_last_set_value[regno];
11375
11376   /* If we don't have a value, or if it isn't for this basic block and
11377      it's either a hard register, set more than once, or it's a live
11378      at the beginning of the function, return 0.  
11379
11380      Because if it's not live at the beginnning of the function then the reg 
11381      is always set before being used (is never used without being set).
11382      And, if it's set only once, and it's always set before use, then all
11383      uses must have the same last value, even if it's not from this basic
11384      block.  */
11385
11386   if (value == 0
11387       || (reg_last_set_label[regno] != label_tick
11388           && (regno < FIRST_PSEUDO_REGISTER
11389               || REG_N_SETS (regno) != 1
11390               || (REGNO_REG_SET_P
11391                   (BASIC_BLOCK (0)->global_live_at_start, regno)))))
11392     return 0;
11393
11394   /* If the value was set in a later insn than the ones we are processing,
11395      we can't use it even if the register was only set once.  */
11396   if (INSN_CUID (reg_last_set[regno]) >= subst_low_cuid)
11397     return 0;
11398
11399   /* If the value has all its registers valid, return it.  */
11400   if (get_last_value_validate (&value, reg_last_set[regno],
11401                                reg_last_set_label[regno], 0))
11402     return value;
11403
11404   /* Otherwise, make a copy and replace any invalid register with
11405      (clobber (const_int 0)).  If that fails for some reason, return 0.  */
11406
11407   value = copy_rtx (value);
11408   if (get_last_value_validate (&value, reg_last_set[regno],
11409                                reg_last_set_label[regno], 1))
11410     return value;
11411
11412   return 0;
11413 }
11414 \f
11415 /* Return nonzero if expression X refers to a REG or to memory
11416    that is set in an instruction more recent than FROM_CUID.  */
11417
11418 static int
11419 use_crosses_set_p (x, from_cuid)
11420      register rtx x;
11421      int from_cuid;
11422 {
11423   register const char *fmt;
11424   register int i;
11425   register enum rtx_code code = GET_CODE (x);
11426
11427   if (code == REG)
11428     {
11429       unsigned int regno = REGNO (x);
11430       unsigned endreg = regno + (regno < FIRST_PSEUDO_REGISTER
11431                             ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11432       
11433 #ifdef PUSH_ROUNDING
11434       /* Don't allow uses of the stack pointer to be moved,
11435          because we don't know whether the move crosses a push insn.  */
11436       if (regno == STACK_POINTER_REGNUM && PUSH_ARGS)
11437         return 1;
11438 #endif
11439       for (; regno < endreg; regno++)
11440         if (reg_last_set[regno]
11441             && INSN_CUID (reg_last_set[regno]) > from_cuid)
11442           return 1;
11443       return 0;
11444     }
11445
11446   if (code == MEM && mem_last_set > from_cuid)
11447     return 1;
11448
11449   fmt = GET_RTX_FORMAT (code);
11450
11451   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11452     {
11453       if (fmt[i] == 'E')
11454         {
11455           register int j;
11456           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11457             if (use_crosses_set_p (XVECEXP (x, i, j), from_cuid))
11458               return 1;
11459         }
11460       else if (fmt[i] == 'e'
11461                && use_crosses_set_p (XEXP (x, i), from_cuid))
11462         return 1;
11463     }
11464   return 0;
11465 }
11466 \f
11467 /* Define three variables used for communication between the following
11468    routines.  */
11469
11470 static unsigned int reg_dead_regno, reg_dead_endregno;
11471 static int reg_dead_flag;
11472
11473 /* Function called via note_stores from reg_dead_at_p.
11474
11475    If DEST is within [reg_dead_regno, reg_dead_endregno), set 
11476    reg_dead_flag to 1 if X is a CLOBBER and to -1 it is a SET.  */
11477
11478 static void
11479 reg_dead_at_p_1 (dest, x, data)
11480      rtx dest;
11481      rtx x;
11482      void *data ATTRIBUTE_UNUSED;
11483 {
11484   unsigned int regno, endregno;
11485
11486   if (GET_CODE (dest) != REG)
11487     return;
11488
11489   regno = REGNO (dest);
11490   endregno = regno + (regno < FIRST_PSEUDO_REGISTER 
11491                       ? HARD_REGNO_NREGS (regno, GET_MODE (dest)) : 1);
11492
11493   if (reg_dead_endregno > regno && reg_dead_regno < endregno)
11494     reg_dead_flag = (GET_CODE (x) == CLOBBER) ? 1 : -1;
11495 }
11496
11497 /* Return non-zero if REG is known to be dead at INSN.
11498
11499    We scan backwards from INSN.  If we hit a REG_DEAD note or a CLOBBER
11500    referencing REG, it is dead.  If we hit a SET referencing REG, it is
11501    live.  Otherwise, see if it is live or dead at the start of the basic
11502    block we are in.  Hard regs marked as being live in NEWPAT_USED_REGS
11503    must be assumed to be always live.  */
11504
11505 static int
11506 reg_dead_at_p (reg, insn)
11507      rtx reg;
11508      rtx insn;
11509 {
11510   int block;
11511   unsigned int i;
11512
11513   /* Set variables for reg_dead_at_p_1.  */
11514   reg_dead_regno = REGNO (reg);
11515   reg_dead_endregno = reg_dead_regno + (reg_dead_regno < FIRST_PSEUDO_REGISTER
11516                                         ? HARD_REGNO_NREGS (reg_dead_regno,
11517                                                             GET_MODE (reg))
11518                                         : 1);
11519
11520   reg_dead_flag = 0;
11521
11522   /* Check that reg isn't mentioned in NEWPAT_USED_REGS.  */
11523   if (reg_dead_regno < FIRST_PSEUDO_REGISTER)
11524     {
11525       for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11526         if (TEST_HARD_REG_BIT (newpat_used_regs, i))
11527           return 0;
11528     }
11529
11530   /* Scan backwards until we find a REG_DEAD note, SET, CLOBBER, label, or
11531      beginning of function.  */
11532   for (; insn && GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != BARRIER;
11533        insn = prev_nonnote_insn (insn))
11534     {
11535       note_stores (PATTERN (insn), reg_dead_at_p_1, NULL);
11536       if (reg_dead_flag)
11537         return reg_dead_flag == 1 ? 1 : 0;
11538
11539       if (find_regno_note (insn, REG_DEAD, reg_dead_regno))
11540         return 1;
11541     }
11542
11543   /* Get the basic block number that we were in.  */
11544   if (insn == 0)
11545     block = 0;
11546   else
11547     {
11548       for (block = 0; block < n_basic_blocks; block++)
11549         if (insn == BLOCK_HEAD (block))
11550           break;
11551
11552       if (block == n_basic_blocks)
11553         return 0;
11554     }
11555
11556   for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11557     if (REGNO_REG_SET_P (BASIC_BLOCK (block)->global_live_at_start, i))
11558       return 0;
11559
11560   return 1;
11561 }
11562 \f
11563 /* Note hard registers in X that are used.  This code is similar to
11564    that in flow.c, but much simpler since we don't care about pseudos.  */
11565
11566 static void
11567 mark_used_regs_combine (x)
11568      rtx x;
11569 {
11570   RTX_CODE code = GET_CODE (x);
11571   unsigned int regno;
11572   int i;
11573
11574   switch (code)
11575     {
11576     case LABEL_REF:
11577     case SYMBOL_REF:
11578     case CONST_INT:
11579     case CONST:
11580     case CONST_DOUBLE:
11581     case PC:
11582     case ADDR_VEC:
11583     case ADDR_DIFF_VEC:
11584     case ASM_INPUT:
11585 #ifdef HAVE_cc0
11586     /* CC0 must die in the insn after it is set, so we don't need to take
11587        special note of it here.  */
11588     case CC0:
11589 #endif
11590       return;
11591
11592     case CLOBBER:
11593       /* If we are clobbering a MEM, mark any hard registers inside the
11594          address as used.  */
11595       if (GET_CODE (XEXP (x, 0)) == MEM)
11596         mark_used_regs_combine (XEXP (XEXP (x, 0), 0));
11597       return;
11598
11599     case REG:
11600       regno = REGNO (x);
11601       /* A hard reg in a wide mode may really be multiple registers.
11602          If so, mark all of them just like the first.  */
11603       if (regno < FIRST_PSEUDO_REGISTER)
11604         {
11605           unsigned int endregno, r;
11606
11607           /* None of this applies to the stack, frame or arg pointers */
11608           if (regno == STACK_POINTER_REGNUM
11609 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
11610               || regno == HARD_FRAME_POINTER_REGNUM
11611 #endif
11612 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
11613               || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
11614 #endif
11615               || regno == FRAME_POINTER_REGNUM)
11616             return;
11617
11618           endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11619           for (r = regno; r < endregno; r++)
11620             SET_HARD_REG_BIT (newpat_used_regs, r);
11621         }
11622       return;
11623
11624     case SET:
11625       {
11626         /* If setting a MEM, or a SUBREG of a MEM, then note any hard regs in
11627            the address.  */
11628         register rtx testreg = SET_DEST (x);
11629
11630         while (GET_CODE (testreg) == SUBREG
11631                || GET_CODE (testreg) == ZERO_EXTRACT
11632                || GET_CODE (testreg) == SIGN_EXTRACT
11633                || GET_CODE (testreg) == STRICT_LOW_PART)
11634           testreg = XEXP (testreg, 0);
11635
11636         if (GET_CODE (testreg) == MEM)
11637           mark_used_regs_combine (XEXP (testreg, 0));
11638
11639         mark_used_regs_combine (SET_SRC (x));
11640       }
11641       return;
11642
11643     default:
11644       break;
11645     }
11646
11647   /* Recursively scan the operands of this expression.  */
11648
11649   {
11650     register const char *fmt = GET_RTX_FORMAT (code);
11651
11652     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11653       {
11654         if (fmt[i] == 'e')
11655           mark_used_regs_combine (XEXP (x, i));
11656         else if (fmt[i] == 'E')
11657           {
11658             register int j;
11659
11660             for (j = 0; j < XVECLEN (x, i); j++)
11661               mark_used_regs_combine (XVECEXP (x, i, j));
11662           }
11663       }
11664   }
11665 }
11666
11667 \f
11668 /* Remove register number REGNO from the dead registers list of INSN.
11669
11670    Return the note used to record the death, if there was one.  */
11671
11672 rtx
11673 remove_death (regno, insn)
11674      unsigned int regno;
11675      rtx insn;
11676 {
11677   register rtx note = find_regno_note (insn, REG_DEAD, regno);
11678
11679   if (note)
11680     {
11681       REG_N_DEATHS (regno)--;
11682       remove_note (insn, note);
11683     }
11684
11685   return note;
11686 }
11687
11688 /* For each register (hardware or pseudo) used within expression X, if its
11689    death is in an instruction with cuid between FROM_CUID (inclusive) and
11690    TO_INSN (exclusive), put a REG_DEAD note for that register in the
11691    list headed by PNOTES. 
11692
11693    That said, don't move registers killed by maybe_kill_insn.
11694
11695    This is done when X is being merged by combination into TO_INSN.  These
11696    notes will then be distributed as needed.  */
11697
11698 static void
11699 move_deaths (x, maybe_kill_insn, from_cuid, to_insn, pnotes)
11700      rtx x;
11701      rtx maybe_kill_insn;
11702      int from_cuid;
11703      rtx to_insn;
11704      rtx *pnotes;
11705 {
11706   register const char *fmt;
11707   register int len, i;
11708   register enum rtx_code code = GET_CODE (x);
11709
11710   if (code == REG)
11711     {
11712       unsigned int regno = REGNO (x);
11713       register rtx where_dead = reg_last_death[regno];
11714       register rtx before_dead, after_dead;
11715
11716       /* Don't move the register if it gets killed in between from and to */
11717       if (maybe_kill_insn && reg_set_p (x, maybe_kill_insn)
11718           && ! reg_referenced_p (x, maybe_kill_insn))
11719         return;
11720
11721       /* WHERE_DEAD could be a USE insn made by combine, so first we
11722          make sure that we have insns with valid INSN_CUID values.  */
11723       before_dead = where_dead;
11724       while (before_dead && INSN_UID (before_dead) > max_uid_cuid)
11725         before_dead = PREV_INSN (before_dead);
11726
11727       after_dead = where_dead;
11728       while (after_dead && INSN_UID (after_dead) > max_uid_cuid)
11729         after_dead = NEXT_INSN (after_dead);
11730
11731       if (before_dead && after_dead
11732           && INSN_CUID (before_dead) >= from_cuid
11733           && (INSN_CUID (after_dead) < INSN_CUID (to_insn)
11734               || (where_dead != after_dead
11735                   && INSN_CUID (after_dead) == INSN_CUID (to_insn))))
11736         {
11737           rtx note = remove_death (regno, where_dead);
11738
11739           /* It is possible for the call above to return 0.  This can occur
11740              when reg_last_death points to I2 or I1 that we combined with.
11741              In that case make a new note.
11742
11743              We must also check for the case where X is a hard register
11744              and NOTE is a death note for a range of hard registers
11745              including X.  In that case, we must put REG_DEAD notes for
11746              the remaining registers in place of NOTE.  */
11747
11748           if (note != 0 && regno < FIRST_PSEUDO_REGISTER
11749               && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11750                   > GET_MODE_SIZE (GET_MODE (x))))
11751             {
11752               unsigned int deadregno = REGNO (XEXP (note, 0));
11753               unsigned int deadend
11754                 = (deadregno + HARD_REGNO_NREGS (deadregno,
11755                                                  GET_MODE (XEXP (note, 0))));
11756               unsigned int ourend
11757                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11758               unsigned int i;
11759
11760               for (i = deadregno; i < deadend; i++)
11761                 if (i < regno || i >= ourend)
11762                   REG_NOTES (where_dead)
11763                     = gen_rtx_EXPR_LIST (REG_DEAD,
11764                                          gen_rtx_REG (reg_raw_mode[i], i),
11765                                          REG_NOTES (where_dead));
11766             }
11767
11768           /* If we didn't find any note, or if we found a REG_DEAD note that
11769              covers only part of the given reg, and we have a multi-reg hard
11770              register, then to be safe we must check for REG_DEAD notes
11771              for each register other than the first.  They could have
11772              their own REG_DEAD notes lying around.  */
11773           else if ((note == 0
11774                     || (note != 0
11775                         && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11776                             < GET_MODE_SIZE (GET_MODE (x)))))
11777                    && regno < FIRST_PSEUDO_REGISTER
11778                    && HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
11779             {
11780               unsigned int ourend
11781                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11782               unsigned int i, offset;
11783               rtx oldnotes = 0;
11784
11785               if (note)
11786                 offset = HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0)));
11787               else
11788                 offset = 1;
11789
11790               for (i = regno + offset; i < ourend; i++)
11791                 move_deaths (gen_rtx_REG (reg_raw_mode[i], i),
11792                              maybe_kill_insn, from_cuid, to_insn, &oldnotes);
11793             }
11794
11795           if (note != 0 && GET_MODE (XEXP (note, 0)) == GET_MODE (x))
11796             {
11797               XEXP (note, 1) = *pnotes;
11798               *pnotes = note;
11799             }
11800           else
11801             *pnotes = gen_rtx_EXPR_LIST (REG_DEAD, x, *pnotes);
11802
11803           REG_N_DEATHS (regno)++;
11804         }
11805
11806       return;
11807     }
11808
11809   else if (GET_CODE (x) == SET)
11810     {
11811       rtx dest = SET_DEST (x);
11812
11813       move_deaths (SET_SRC (x), maybe_kill_insn, from_cuid, to_insn, pnotes);
11814
11815       /* In the case of a ZERO_EXTRACT, a STRICT_LOW_PART, or a SUBREG
11816          that accesses one word of a multi-word item, some
11817          piece of everything register in the expression is used by
11818          this insn, so remove any old death.  */
11819
11820       if (GET_CODE (dest) == ZERO_EXTRACT
11821           || GET_CODE (dest) == STRICT_LOW_PART
11822           || (GET_CODE (dest) == SUBREG
11823               && (((GET_MODE_SIZE (GET_MODE (dest))
11824                     + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
11825                   == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
11826                        + UNITS_PER_WORD - 1) / UNITS_PER_WORD))))
11827         {
11828           move_deaths (dest, maybe_kill_insn, from_cuid, to_insn, pnotes);
11829           return;
11830         }
11831
11832       /* If this is some other SUBREG, we know it replaces the entire
11833          value, so use that as the destination.  */
11834       if (GET_CODE (dest) == SUBREG)
11835         dest = SUBREG_REG (dest);
11836
11837       /* If this is a MEM, adjust deaths of anything used in the address.
11838          For a REG (the only other possibility), the entire value is
11839          being replaced so the old value is not used in this insn.  */
11840
11841       if (GET_CODE (dest) == MEM)
11842         move_deaths (XEXP (dest, 0), maybe_kill_insn, from_cuid,
11843                      to_insn, pnotes);
11844       return;
11845     }
11846
11847   else if (GET_CODE (x) == CLOBBER)
11848     return;
11849
11850   len = GET_RTX_LENGTH (code);
11851   fmt = GET_RTX_FORMAT (code);
11852
11853   for (i = 0; i < len; i++)
11854     {
11855       if (fmt[i] == 'E')
11856         {
11857           register int j;
11858           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11859             move_deaths (XVECEXP (x, i, j), maybe_kill_insn, from_cuid,
11860                          to_insn, pnotes);
11861         }
11862       else if (fmt[i] == 'e')
11863         move_deaths (XEXP (x, i), maybe_kill_insn, from_cuid, to_insn, pnotes);
11864     }
11865 }
11866 \f
11867 /* Return 1 if X is the target of a bit-field assignment in BODY, the
11868    pattern of an insn.  X must be a REG.  */
11869
11870 static int
11871 reg_bitfield_target_p (x, body)
11872      rtx x;
11873      rtx body;
11874 {
11875   int i;
11876
11877   if (GET_CODE (body) == SET)
11878     {
11879       rtx dest = SET_DEST (body);
11880       rtx target;
11881       unsigned int regno, tregno, endregno, endtregno;
11882
11883       if (GET_CODE (dest) == ZERO_EXTRACT)
11884         target = XEXP (dest, 0);
11885       else if (GET_CODE (dest) == STRICT_LOW_PART)
11886         target = SUBREG_REG (XEXP (dest, 0));
11887       else
11888         return 0;
11889
11890       if (GET_CODE (target) == SUBREG)
11891         target = SUBREG_REG (target);
11892
11893       if (GET_CODE (target) != REG)
11894         return 0;
11895
11896       tregno = REGNO (target), regno = REGNO (x);
11897       if (tregno >= FIRST_PSEUDO_REGISTER || regno >= FIRST_PSEUDO_REGISTER)
11898         return target == x;
11899
11900       endtregno = tregno + HARD_REGNO_NREGS (tregno, GET_MODE (target));
11901       endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11902
11903       return endregno > tregno && regno < endtregno;
11904     }
11905
11906   else if (GET_CODE (body) == PARALLEL)
11907     for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
11908       if (reg_bitfield_target_p (x, XVECEXP (body, 0, i)))
11909         return 1;
11910
11911   return 0;
11912 }      
11913 \f
11914 /* Given a chain of REG_NOTES originally from FROM_INSN, try to place them
11915    as appropriate.  I3 and I2 are the insns resulting from the combination
11916    insns including FROM (I2 may be zero).
11917
11918    ELIM_I2 and ELIM_I1 are either zero or registers that we know will
11919    not need REG_DEAD notes because they are being substituted for.  This
11920    saves searching in the most common cases.
11921
11922    Each note in the list is either ignored or placed on some insns, depending
11923    on the type of note.  */
11924
11925 static void
11926 distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
11927      rtx notes;
11928      rtx from_insn;
11929      rtx i3, i2;
11930      rtx elim_i2, elim_i1;
11931 {
11932   rtx note, next_note;
11933   rtx tem;
11934
11935   for (note = notes; note; note = next_note)
11936     {
11937       rtx place = 0, place2 = 0;
11938
11939       /* If this NOTE references a pseudo register, ensure it references
11940          the latest copy of that register.  */
11941       if (XEXP (note, 0) && GET_CODE (XEXP (note, 0)) == REG
11942           && REGNO (XEXP (note, 0)) >= FIRST_PSEUDO_REGISTER)
11943         XEXP (note, 0) = regno_reg_rtx[REGNO (XEXP (note, 0))];
11944
11945       next_note = XEXP (note, 1);
11946       switch (REG_NOTE_KIND (note))
11947         {
11948         case REG_BR_PROB:
11949         case REG_EXEC_COUNT:
11950           /* Doesn't matter much where we put this, as long as it's somewhere.
11951              It is preferable to keep these notes on branches, which is most
11952              likely to be i3.  */
11953           place = i3;
11954           break;
11955
11956         case REG_EH_REGION:
11957         case REG_EH_RETHROW:
11958           /* These notes must remain with the call.  It should not be
11959              possible for both I2 and I3 to be a call.  */
11960           if (GET_CODE (i3) == CALL_INSN) 
11961             place = i3;
11962           else if (i2 && GET_CODE (i2) == CALL_INSN)
11963             place = i2;
11964           else
11965             abort ();
11966           break;
11967
11968         case REG_UNUSED:
11969           /* Any clobbers for i3 may still exist, and so we must process
11970              REG_UNUSED notes from that insn.
11971
11972              Any clobbers from i2 or i1 can only exist if they were added by
11973              recog_for_combine.  In that case, recog_for_combine created the
11974              necessary REG_UNUSED notes.  Trying to keep any original
11975              REG_UNUSED notes from these insns can cause incorrect output
11976              if it is for the same register as the original i3 dest.
11977              In that case, we will notice that the register is set in i3,
11978              and then add a REG_UNUSED note for the destination of i3, which
11979              is wrong.  However, it is possible to have REG_UNUSED notes from
11980              i2 or i1 for register which were both used and clobbered, so
11981              we keep notes from i2 or i1 if they will turn into REG_DEAD
11982              notes.  */
11983
11984           /* If this register is set or clobbered in I3, put the note there
11985              unless there is one already.  */
11986           if (reg_set_p (XEXP (note, 0), PATTERN (i3)))
11987             {
11988               if (from_insn != i3)
11989                 break;
11990
11991               if (! (GET_CODE (XEXP (note, 0)) == REG
11992                      ? find_regno_note (i3, REG_UNUSED, REGNO (XEXP (note, 0)))
11993                      : find_reg_note (i3, REG_UNUSED, XEXP (note, 0))))
11994                 place = i3;
11995             }
11996           /* Otherwise, if this register is used by I3, then this register
11997              now dies here, so we must put a REG_DEAD note here unless there
11998              is one already.  */
11999           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3))
12000                    && ! (GET_CODE (XEXP (note, 0)) == REG
12001                          ? find_regno_note (i3, REG_DEAD,
12002                                             REGNO (XEXP (note, 0)))
12003                          : find_reg_note (i3, REG_DEAD, XEXP (note, 0))))
12004             {
12005               PUT_REG_NOTE_KIND (note, REG_DEAD);
12006               place = i3;
12007             }
12008           break;
12009
12010         case REG_EQUAL:
12011         case REG_EQUIV:
12012         case REG_NONNEG:
12013         case REG_NOALIAS:
12014           /* These notes say something about results of an insn.  We can
12015              only support them if they used to be on I3 in which case they
12016              remain on I3.  Otherwise they are ignored.
12017
12018              If the note refers to an expression that is not a constant, we
12019              must also ignore the note since we cannot tell whether the
12020              equivalence is still true.  It might be possible to do
12021              slightly better than this (we only have a problem if I2DEST
12022              or I1DEST is present in the expression), but it doesn't
12023              seem worth the trouble.  */
12024
12025           if (from_insn == i3
12026               && (XEXP (note, 0) == 0 || CONSTANT_P (XEXP (note, 0))))
12027             place = i3;
12028           break;
12029
12030         case REG_INC:
12031         case REG_NO_CONFLICT:
12032           /* These notes say something about how a register is used.  They must
12033              be present on any use of the register in I2 or I3.  */
12034           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3)))
12035             place = i3;
12036
12037           if (i2 && reg_mentioned_p (XEXP (note, 0), PATTERN (i2)))
12038             {
12039               if (place)
12040                 place2 = i2;
12041               else
12042                 place = i2;
12043             }
12044           break;
12045
12046         case REG_LABEL:
12047           /* This can show up in several ways -- either directly in the
12048              pattern, or hidden off in the constant pool with (or without?)
12049              a REG_EQUAL note.  */
12050           /* ??? Ignore the without-reg_equal-note problem for now.  */
12051           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3))
12052               || ((tem = find_reg_note (i3, REG_EQUAL, NULL_RTX))
12053                   && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12054                   && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0)))
12055             place = i3;
12056
12057           if (i2
12058               && (reg_mentioned_p (XEXP (note, 0), PATTERN (i2))
12059                   || ((tem = find_reg_note (i2, REG_EQUAL, NULL_RTX))
12060                       && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12061                       && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0))))
12062             {
12063               if (place)
12064                 place2 = i2;
12065               else
12066                 place = i2;
12067             }
12068           break;
12069
12070         case REG_WAS_0:
12071           /* It is too much trouble to try to see if this note is still
12072              correct in all situations.  It is better to simply delete it.  */
12073           break;
12074
12075         case REG_RETVAL:
12076           /* If the insn previously containing this note still exists,
12077              put it back where it was.  Otherwise move it to the previous
12078              insn.  Adjust the corresponding REG_LIBCALL note.  */
12079           if (GET_CODE (from_insn) != NOTE)
12080             place = from_insn;
12081           else
12082             {
12083               tem = find_reg_note (XEXP (note, 0), REG_LIBCALL, NULL_RTX);
12084               place = prev_real_insn (from_insn);
12085               if (tem && place)
12086                 XEXP (tem, 0) = place;
12087             }
12088           break;
12089
12090         case REG_LIBCALL:
12091           /* This is handled similarly to REG_RETVAL.  */
12092           if (GET_CODE (from_insn) != NOTE)
12093             place = from_insn;
12094           else
12095             {
12096               tem = find_reg_note (XEXP (note, 0), REG_RETVAL, NULL_RTX);
12097               place = next_real_insn (from_insn);
12098               if (tem && place)
12099                 XEXP (tem, 0) = place;
12100             }
12101           break;
12102
12103         case REG_DEAD:
12104           /* If the register is used as an input in I3, it dies there.
12105              Similarly for I2, if it is non-zero and adjacent to I3.
12106
12107              If the register is not used as an input in either I3 or I2
12108              and it is not one of the registers we were supposed to eliminate,
12109              there are two possibilities.  We might have a non-adjacent I2
12110              or we might have somehow eliminated an additional register
12111              from a computation.  For example, we might have had A & B where
12112              we discover that B will always be zero.  In this case we will
12113              eliminate the reference to A.
12114
12115              In both cases, we must search to see if we can find a previous
12116              use of A and put the death note there.  */
12117
12118           if (from_insn
12119               && GET_CODE (from_insn) == CALL_INSN
12120               && find_reg_fusage (from_insn, USE, XEXP (note, 0)))
12121             place = from_insn;
12122           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3)))
12123             place = i3;
12124           else if (i2 != 0 && next_nonnote_insn (i2) == i3
12125                    && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12126             place = i2;
12127
12128           if (XEXP (note, 0) == elim_i2 || XEXP (note, 0) == elim_i1)
12129             break;
12130
12131           if (place == 0)
12132             {
12133               basic_block bb = BASIC_BLOCK (this_basic_block);
12134
12135               for (tem = PREV_INSN (i3); place == 0; tem = PREV_INSN (tem))
12136                 {
12137                   if (GET_RTX_CLASS (GET_CODE (tem)) != 'i')
12138                     {
12139                       if (tem == bb->head)
12140                         break;
12141                       continue;
12142                     }
12143
12144                   /* If the register is being set at TEM, see if that is all
12145                      TEM is doing.  If so, delete TEM.  Otherwise, make this
12146                      into a REG_UNUSED note instead.  */
12147                   if (reg_set_p (XEXP (note, 0), PATTERN (tem)))
12148                     {
12149                       rtx set = single_set (tem);
12150                       rtx inner_dest = 0;
12151 #ifdef HAVE_cc0
12152                       rtx cc0_setter = NULL_RTX;
12153 #endif
12154
12155                       if (set != 0)
12156                         for (inner_dest = SET_DEST (set);
12157                              GET_CODE (inner_dest) == STRICT_LOW_PART
12158                                || GET_CODE (inner_dest) == SUBREG
12159                                || GET_CODE (inner_dest) == ZERO_EXTRACT;
12160                              inner_dest = XEXP (inner_dest, 0))
12161                           ;
12162
12163                       /* Verify that it was the set, and not a clobber that
12164                          modified the register. 
12165
12166                          CC0 targets must be careful to maintain setter/user
12167                          pairs.  If we cannot delete the setter due to side
12168                          effects, mark the user with an UNUSED note instead
12169                          of deleting it.  */
12170
12171                       if (set != 0 && ! side_effects_p (SET_SRC (set))
12172                           && rtx_equal_p (XEXP (note, 0), inner_dest)
12173 #ifdef HAVE_cc0
12174                           && (! reg_mentioned_p (cc0_rtx, SET_SRC (set))
12175                               || ((cc0_setter = prev_cc0_setter (tem)) != NULL
12176                                   && sets_cc0_p (PATTERN (cc0_setter)) > 0))
12177 #endif
12178                           )
12179                         {
12180                           /* Move the notes and links of TEM elsewhere.
12181                              This might delete other dead insns recursively. 
12182                              First set the pattern to something that won't use
12183                              any register.  */
12184
12185                           PATTERN (tem) = pc_rtx;
12186
12187                           distribute_notes (REG_NOTES (tem), tem, tem,
12188                                             NULL_RTX, NULL_RTX, NULL_RTX);
12189                           distribute_links (LOG_LINKS (tem));
12190
12191                           PUT_CODE (tem, NOTE);
12192                           NOTE_LINE_NUMBER (tem) = NOTE_INSN_DELETED;
12193                           NOTE_SOURCE_FILE (tem) = 0;
12194
12195 #ifdef HAVE_cc0
12196                           /* Delete the setter too.  */
12197                           if (cc0_setter)
12198                             {
12199                               PATTERN (cc0_setter) = pc_rtx;
12200
12201                               distribute_notes (REG_NOTES (cc0_setter),
12202                                                 cc0_setter, cc0_setter,
12203                                                 NULL_RTX, NULL_RTX, NULL_RTX);
12204                               distribute_links (LOG_LINKS (cc0_setter));
12205
12206                               PUT_CODE (cc0_setter, NOTE);
12207                               NOTE_LINE_NUMBER (cc0_setter)
12208                                 = NOTE_INSN_DELETED;
12209                               NOTE_SOURCE_FILE (cc0_setter) = 0;
12210                             }
12211 #endif
12212                         }
12213                       /* If the register is both set and used here, put the
12214                          REG_DEAD note here, but place a REG_UNUSED note
12215                          here too unless there already is one.  */
12216                       else if (reg_referenced_p (XEXP (note, 0),
12217                                                  PATTERN (tem)))
12218                         {
12219                           place = tem;
12220
12221                           if (! find_regno_note (tem, REG_UNUSED,
12222                                                  REGNO (XEXP (note, 0))))
12223                             REG_NOTES (tem)
12224                               = gen_rtx_EXPR_LIST (REG_UNUSED, XEXP (note, 0),
12225                                                    REG_NOTES (tem));
12226                         }
12227                       else
12228                         {
12229                           PUT_REG_NOTE_KIND (note, REG_UNUSED);
12230                           
12231                           /*  If there isn't already a REG_UNUSED note, put one
12232                               here.  */
12233                           if (! find_regno_note (tem, REG_UNUSED,
12234                                                  REGNO (XEXP (note, 0))))
12235                             place = tem;
12236                           break;
12237                         }
12238                     }
12239                   else if (reg_referenced_p (XEXP (note, 0), PATTERN (tem))
12240                            || (GET_CODE (tem) == CALL_INSN
12241                                && find_reg_fusage (tem, USE, XEXP (note, 0))))
12242                     {
12243                       place = tem;
12244
12245                       /* If we are doing a 3->2 combination, and we have a
12246                          register which formerly died in i3 and was not used
12247                          by i2, which now no longer dies in i3 and is used in
12248                          i2 but does not die in i2, and place is between i2
12249                          and i3, then we may need to move a link from place to
12250                          i2.  */
12251                       if (i2 && INSN_UID (place) <= max_uid_cuid
12252                           && INSN_CUID (place) > INSN_CUID (i2)
12253                           && from_insn && INSN_CUID (from_insn) > INSN_CUID (i2)
12254                           && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12255                         {
12256                           rtx links = LOG_LINKS (place);
12257                           LOG_LINKS (place) = 0;
12258                           distribute_links (links);
12259                         }
12260                       break;
12261                     }
12262
12263                   if (tem == bb->head)
12264                     break;
12265                 }
12266               
12267               /* We haven't found an insn for the death note and it
12268                  is still a REG_DEAD note, but we have hit the beginning
12269                  of the block.  If the existing life info says the reg
12270                  was dead, there's nothing left to do.  Otherwise, we'll
12271                  need to do a global life update after combine.  */
12272               if (REG_NOTE_KIND (note) == REG_DEAD && place == 0
12273                   && REGNO_REG_SET_P (bb->global_live_at_start,
12274                                       REGNO (XEXP (note, 0))))
12275                 {
12276                   SET_BIT (refresh_blocks, this_basic_block);
12277                   need_refresh = 1;
12278                 }
12279             }
12280
12281           /* If the register is set or already dead at PLACE, we needn't do
12282              anything with this note if it is still a REG_DEAD note.
12283              We can here if it is set at all, not if is it totally replace,
12284              which is what `dead_or_set_p' checks, so also check for it being
12285              set partially.  */
12286
12287           if (place && REG_NOTE_KIND (note) == REG_DEAD)
12288             {
12289               unsigned int regno = REGNO (XEXP (note, 0));
12290
12291               if (dead_or_set_p (place, XEXP (note, 0))
12292                   || reg_bitfield_target_p (XEXP (note, 0), PATTERN (place)))
12293                 {
12294                   /* Unless the register previously died in PLACE, clear
12295                      reg_last_death.  [I no longer understand why this is
12296                      being done.] */
12297                   if (reg_last_death[regno] != place)
12298                     reg_last_death[regno] = 0;
12299                   place = 0;
12300                 }
12301               else
12302                 reg_last_death[regno] = place;
12303
12304               /* If this is a death note for a hard reg that is occupying
12305                  multiple registers, ensure that we are still using all
12306                  parts of the object.  If we find a piece of the object
12307                  that is unused, we must add a USE for that piece before
12308                  PLACE and put the appropriate REG_DEAD note on it.
12309
12310                  An alternative would be to put a REG_UNUSED for the pieces
12311                  on the insn that set the register, but that can't be done if
12312                  it is not in the same block.  It is simpler, though less
12313                  efficient, to add the USE insns.  */
12314
12315               if (place && regno < FIRST_PSEUDO_REGISTER
12316                   && HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0))) > 1)
12317                 {
12318                   unsigned int endregno
12319                     = regno + HARD_REGNO_NREGS (regno,
12320                                                 GET_MODE (XEXP (note, 0)));
12321                   int all_used = 1;
12322                   unsigned int i;
12323
12324                   for (i = regno; i < endregno; i++)
12325                     if (! refers_to_regno_p (i, i + 1, PATTERN (place), 0)
12326                         && ! find_regno_fusage (place, USE, i))
12327                       {
12328                         rtx piece = gen_rtx_REG (reg_raw_mode[i], i);
12329                         rtx p;
12330
12331                         /* See if we already placed a USE note for this
12332                            register in front of PLACE.  */
12333                         for (p = place;
12334                              GET_CODE (PREV_INSN (p)) == INSN
12335                              && GET_CODE (PATTERN (PREV_INSN (p))) == USE;
12336                              p = PREV_INSN (p))
12337                           if (rtx_equal_p (piece,
12338                                            XEXP (PATTERN (PREV_INSN (p)), 0)))
12339                             {
12340                               p = 0;
12341                               break;
12342                             }
12343
12344                         if (p)
12345                           {
12346                             rtx use_insn
12347                               = emit_insn_before (gen_rtx_USE (VOIDmode,
12348                                                                piece),
12349                                                   p);
12350                             REG_NOTES (use_insn)
12351                               = gen_rtx_EXPR_LIST (REG_DEAD, piece,
12352                                                    REG_NOTES (use_insn));
12353                           }
12354
12355                         all_used = 0;
12356                       }
12357
12358                   /* Check for the case where the register dying partially
12359                      overlaps the register set by this insn.  */
12360                   if (all_used)
12361                     for (i = regno; i < endregno; i++)
12362                       if (dead_or_set_regno_p (place, i))
12363                           {
12364                             all_used = 0;
12365                             break;
12366                           }
12367
12368                   if (! all_used)
12369                     {
12370                       /* Put only REG_DEAD notes for pieces that are
12371                          still used and that are not already dead or set.  */
12372
12373                       for (i = regno; i < endregno; i++)
12374                         {
12375                           rtx piece = gen_rtx_REG (reg_raw_mode[i], i);
12376
12377                           if ((reg_referenced_p (piece, PATTERN (place))
12378                                || (GET_CODE (place) == CALL_INSN
12379                                    && find_reg_fusage (place, USE, piece)))
12380                               && ! dead_or_set_p (place, piece)
12381                               && ! reg_bitfield_target_p (piece,
12382                                                           PATTERN (place)))
12383                             REG_NOTES (place)
12384                               = gen_rtx_EXPR_LIST (REG_DEAD, piece,
12385                                                    REG_NOTES (place));
12386                         }
12387
12388                       place = 0;
12389                     }
12390                 }
12391             }
12392           break;
12393
12394         default:
12395           /* Any other notes should not be present at this point in the
12396              compilation.  */
12397           abort ();
12398         }
12399
12400       if (place)
12401         {
12402           XEXP (note, 1) = REG_NOTES (place);
12403           REG_NOTES (place) = note;
12404         }
12405       else if ((REG_NOTE_KIND (note) == REG_DEAD
12406                 || REG_NOTE_KIND (note) == REG_UNUSED)
12407                && GET_CODE (XEXP (note, 0)) == REG)
12408         REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
12409
12410       if (place2)
12411         {
12412           if ((REG_NOTE_KIND (note) == REG_DEAD
12413                || REG_NOTE_KIND (note) == REG_UNUSED)
12414               && GET_CODE (XEXP (note, 0)) == REG)
12415             REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
12416
12417           REG_NOTES (place2) = gen_rtx_fmt_ee (GET_CODE (note),
12418                                                REG_NOTE_KIND (note),
12419                                                XEXP (note, 0),
12420                                                REG_NOTES (place2));
12421         }
12422     }
12423 }
12424 \f
12425 /* Similarly to above, distribute the LOG_LINKS that used to be present on
12426    I3, I2, and I1 to new locations.  This is also called in one case to
12427    add a link pointing at I3 when I3's destination is changed.  */
12428
12429 static void
12430 distribute_links (links)
12431      rtx links;
12432 {
12433   rtx link, next_link;
12434
12435   for (link = links; link; link = next_link)
12436     {
12437       rtx place = 0;
12438       rtx insn;
12439       rtx set, reg;
12440
12441       next_link = XEXP (link, 1);
12442
12443       /* If the insn that this link points to is a NOTE or isn't a single
12444          set, ignore it.  In the latter case, it isn't clear what we
12445          can do other than ignore the link, since we can't tell which 
12446          register it was for.  Such links wouldn't be used by combine
12447          anyway.
12448
12449          It is not possible for the destination of the target of the link to
12450          have been changed by combine.  The only potential of this is if we
12451          replace I3, I2, and I1 by I3 and I2.  But in that case the
12452          destination of I2 also remains unchanged.  */
12453
12454       if (GET_CODE (XEXP (link, 0)) == NOTE
12455           || (set = single_set (XEXP (link, 0))) == 0)
12456         continue;
12457
12458       reg = SET_DEST (set);
12459       while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
12460              || GET_CODE (reg) == SIGN_EXTRACT
12461              || GET_CODE (reg) == STRICT_LOW_PART)
12462         reg = XEXP (reg, 0);
12463
12464       /* A LOG_LINK is defined as being placed on the first insn that uses
12465          a register and points to the insn that sets the register.  Start
12466          searching at the next insn after the target of the link and stop
12467          when we reach a set of the register or the end of the basic block.
12468
12469          Note that this correctly handles the link that used to point from
12470          I3 to I2.  Also note that not much searching is typically done here
12471          since most links don't point very far away.  */
12472
12473       for (insn = NEXT_INSN (XEXP (link, 0));
12474            (insn && (this_basic_block == n_basic_blocks - 1
12475                      || BLOCK_HEAD (this_basic_block + 1) != insn));
12476            insn = NEXT_INSN (insn))
12477         if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
12478             && reg_overlap_mentioned_p (reg, PATTERN (insn)))
12479           {
12480             if (reg_referenced_p (reg, PATTERN (insn)))
12481               place = insn;
12482             break;
12483           }
12484         else if (GET_CODE (insn) == CALL_INSN
12485               && find_reg_fusage (insn, USE, reg))
12486           {
12487             place = insn;
12488             break;
12489           }
12490
12491       /* If we found a place to put the link, place it there unless there
12492          is already a link to the same insn as LINK at that point.  */
12493
12494       if (place)
12495         {
12496           rtx link2;
12497
12498           for (link2 = LOG_LINKS (place); link2; link2 = XEXP (link2, 1))
12499             if (XEXP (link2, 0) == XEXP (link, 0))
12500               break;
12501
12502           if (link2 == 0)
12503             {
12504               XEXP (link, 1) = LOG_LINKS (place);
12505               LOG_LINKS (place) = link;
12506
12507               /* Set added_links_insn to the earliest insn we added a
12508                  link to.  */
12509               if (added_links_insn == 0 
12510                   || INSN_CUID (added_links_insn) > INSN_CUID (place))
12511                 added_links_insn = place;
12512             }
12513         }
12514     }
12515 }
12516 \f
12517 /* Compute INSN_CUID for INSN, which is an insn made by combine.  */
12518
12519 static int
12520 insn_cuid (insn)
12521      rtx insn;
12522 {
12523   while (insn != 0 && INSN_UID (insn) > max_uid_cuid
12524          && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE)
12525     insn = NEXT_INSN (insn);
12526
12527   if (INSN_UID (insn) > max_uid_cuid)
12528     abort ();
12529
12530   return INSN_CUID (insn);
12531 }
12532 \f
12533 void
12534 dump_combine_stats (file)
12535      FILE *file;
12536 {
12537   fnotice
12538     (file,
12539      ";; Combiner statistics: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n\n",
12540      combine_attempts, combine_merges, combine_extras, combine_successes);
12541 }
12542
12543 void
12544 dump_combine_total_stats (file)
12545      FILE *file;
12546 {
12547   fnotice
12548     (file,
12549      "\n;; Combiner totals: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n",
12550      total_attempts, total_merges, total_extras, total_successes);
12551 }