OSDN Git Service

wchar_t now gets wrapped inside "ifndef __cplusplus",
[pf3gnuchains/gcc-fork.git] / gcc / combine.c
1 /* Optimize by combining instructions for GNU compiler.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* This module is essentially the "combiner" phase of the U. of Arizona
23    Portable Optimizer, but redone to work on our list-structured
24    representation for RTL instead of their string representation.
25
26    The LOG_LINKS of each insn identify the most recent assignment
27    to each REG used in the insn.  It is a list of previous insns,
28    each of which contains a SET for a REG that is used in this insn
29    and not used or set in between.  LOG_LINKs never cross basic blocks.
30    They were set up by the preceding pass (lifetime analysis).
31
32    We try to combine each pair of insns joined by a logical link.
33    We also try to combine triples of insns A, B and C when
34    C has a link back to B and B has a link back to A.
35
36    LOG_LINKS does not have links for use of the CC0.  They don't
37    need to, because the insn that sets the CC0 is always immediately
38    before the insn that tests it.  So we always regard a branch
39    insn as having a logical link to the preceding insn.  The same is true
40    for an insn explicitly using CC0.
41
42    We check (with use_crosses_set_p) to avoid combining in such a way
43    as to move a computation to a place where its value would be different.
44
45    Combination is done by mathematically substituting the previous
46    insn(s) values for the regs they set into the expressions in
47    the later insns that refer to these regs.  If the result is a valid insn
48    for our target machine, according to the machine description,
49    we install it, delete the earlier insns, and update the data flow
50    information (LOG_LINKS and REG_NOTES) for what we did.
51
52    There are a few exceptions where the dataflow information created by
53    flow.c aren't completely updated:
54
55    - reg_live_length is not updated
56    - reg_n_refs is not adjusted in the rare case when a register is
57      no longer required in a computation
58    - there are extremely rare cases (see distribute_regnotes) when a
59      REG_DEAD note is lost
60    - a LOG_LINKS entry that refers to an insn with multiple SETs may be
61      removed because there is no way to know which register it was
62      linking
63
64    To simplify substitution, we combine only when the earlier insn(s)
65    consist of only a single assignment.  To simplify updating afterward,
66    we never combine when a subroutine call appears in the middle.
67
68    Since we do not represent assignments to CC0 explicitly except when that
69    is all an insn does, there is no LOG_LINKS entry in an insn that uses
70    the condition code for the insn that set the condition code.
71    Fortunately, these two insns must be consecutive.
72    Therefore, every JUMP_INSN is taken to have an implicit logical link
73    to the preceding insn.  This is not quite right, since non-jumps can
74    also use the condition code; but in practice such insns would not
75    combine anyway.  */
76
77 #include "config.h"
78 #include "system.h"
79 #include "rtl.h"
80 #include "tm_p.h"
81 #include "flags.h"
82 #include "regs.h"
83 #include "hard-reg-set.h"
84 #include "basic-block.h"
85 #include "insn-config.h"
86 #include "function.h"
87 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
88 #include "expr.h"
89 #include "insn-attr.h"
90 #include "recog.h"
91 #include "real.h"
92 #include "toplev.h"
93
94 /* It is not safe to use ordinary gen_lowpart in combine.
95    Use gen_lowpart_for_combine instead.  See comments there.  */
96 #define gen_lowpart dont_use_gen_lowpart_you_dummy
97
98 /* Number of attempts to combine instructions in this function.  */
99
100 static int combine_attempts;
101
102 /* Number of attempts that got as far as substitution in this function.  */
103
104 static int combine_merges;
105
106 /* Number of instructions combined with added SETs in this function.  */
107
108 static int combine_extras;
109
110 /* Number of instructions combined in this function.  */
111
112 static int combine_successes;
113
114 /* Totals over entire compilation.  */
115
116 static int total_attempts, total_merges, total_extras, total_successes;
117
118 \f
119 /* Vector mapping INSN_UIDs to cuids.
120    The cuids are like uids but increase monotonically always.
121    Combine always uses cuids so that it can compare them.
122    But actually renumbering the uids, which we used to do,
123    proves to be a bad idea because it makes it hard to compare
124    the dumps produced by earlier passes with those from later passes.  */
125
126 static int *uid_cuid;
127 static int max_uid_cuid;
128
129 /* Get the cuid of an insn.  */
130
131 #define INSN_CUID(INSN) \
132 (INSN_UID (INSN) > max_uid_cuid ? insn_cuid (INSN) : uid_cuid[INSN_UID (INSN)])
133
134 /* In case BITS_PER_WORD == HOST_BITS_PER_WIDE_INT, shifting by
135    BITS_PER_WORD would invoke undefined behavior.  Work around it.  */
136
137 #define UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD(val) \
138   (((unsigned HOST_WIDE_INT)(val) << (BITS_PER_WORD - 1)) << 1)
139
140 /* Maximum register number, which is the size of the tables below.  */
141
142 static unsigned int combine_max_regno;
143
144 /* Record last point of death of (hard or pseudo) register n.  */
145
146 static rtx *reg_last_death;
147
148 /* Record last point of modification of (hard or pseudo) register n.  */
149
150 static rtx *reg_last_set;
151
152 /* Record the cuid of the last insn that invalidated memory
153    (anything that writes memory, and subroutine calls, but not pushes).  */
154
155 static int mem_last_set;
156
157 /* Record the cuid of the last CALL_INSN
158    so we can tell whether a potential combination crosses any calls.  */
159
160 static int last_call_cuid;
161
162 /* When `subst' is called, this is the insn that is being modified
163    (by combining in a previous insn).  The PATTERN of this insn
164    is still the old pattern partially modified and it should not be
165    looked at, but this may be used to examine the successors of the insn
166    to judge whether a simplification is valid.  */
167
168 static rtx subst_insn;
169
170 /* This is an insn that belongs before subst_insn, but is not currently
171    on the insn chain.  */
172
173 static rtx subst_prev_insn;
174
175 /* This is the lowest CUID that `subst' is currently dealing with.
176    get_last_value will not return a value if the register was set at or
177    after this CUID.  If not for this mechanism, we could get confused if
178    I2 or I1 in try_combine were an insn that used the old value of a register
179    to obtain a new value.  In that case, we might erroneously get the
180    new value of the register when we wanted the old one.  */
181
182 static int subst_low_cuid;
183
184 /* This contains any hard registers that are used in newpat; reg_dead_at_p
185    must consider all these registers to be always live.  */
186
187 static HARD_REG_SET newpat_used_regs;
188
189 /* This is an insn to which a LOG_LINKS entry has been added.  If this
190    insn is the earlier than I2 or I3, combine should rescan starting at
191    that location.  */
192
193 static rtx added_links_insn;
194
195 /* Basic block number of the block in which we are performing combines.  */
196 static int this_basic_block;
197
198 /* A bitmap indicating which blocks had registers go dead at entry.
199    After combine, we'll need to re-do global life analysis with
200    those blocks as starting points.  */
201 static sbitmap refresh_blocks;
202 static int need_refresh;
203 \f
204 /* The next group of arrays allows the recording of the last value assigned
205    to (hard or pseudo) register n.  We use this information to see if a
206    operation being processed is redundant given a prior operation performed
207    on the register.  For example, an `and' with a constant is redundant if
208    all the zero bits are already known to be turned off.
209
210    We use an approach similar to that used by cse, but change it in the
211    following ways:
212
213    (1) We do not want to reinitialize at each label.
214    (2) It is useful, but not critical, to know the actual value assigned
215        to a register.  Often just its form is helpful.
216
217    Therefore, we maintain the following arrays:
218
219    reg_last_set_value           the last value assigned
220    reg_last_set_label           records the value of label_tick when the
221                                 register was assigned
222    reg_last_set_table_tick      records the value of label_tick when a
223                                 value using the register is assigned
224    reg_last_set_invalid         set to non-zero when it is not valid
225                                 to use the value of this register in some
226                                 register's value
227
228    To understand the usage of these tables, it is important to understand
229    the distinction between the value in reg_last_set_value being valid
230    and the register being validly contained in some other expression in the
231    table.
232
233    Entry I in reg_last_set_value is valid if it is non-zero, and either
234    reg_n_sets[i] is 1 or reg_last_set_label[i] == label_tick.
235
236    Register I may validly appear in any expression returned for the value
237    of another register if reg_n_sets[i] is 1.  It may also appear in the
238    value for register J if reg_last_set_label[i] < reg_last_set_label[j] or
239    reg_last_set_invalid[j] is zero.
240
241    If an expression is found in the table containing a register which may
242    not validly appear in an expression, the register is replaced by
243    something that won't match, (clobber (const_int 0)).
244
245    reg_last_set_invalid[i] is set non-zero when register I is being assigned
246    to and reg_last_set_table_tick[i] == label_tick.  */
247
248 /* Record last value assigned to (hard or pseudo) register n.  */
249
250 static rtx *reg_last_set_value;
251
252 /* Record the value of label_tick when the value for register n is placed in
253    reg_last_set_value[n].  */
254
255 static int *reg_last_set_label;
256
257 /* Record the value of label_tick when an expression involving register n
258    is placed in reg_last_set_value.  */
259
260 static int *reg_last_set_table_tick;
261
262 /* Set non-zero if references to register n in expressions should not be
263    used.  */
264
265 static char *reg_last_set_invalid;
266
267 /* Incremented for each label.  */
268
269 static int label_tick;
270
271 /* Some registers that are set more than once and used in more than one
272    basic block are nevertheless always set in similar ways.  For example,
273    a QImode register may be loaded from memory in two places on a machine
274    where byte loads zero extend.
275
276    We record in the following array what we know about the nonzero
277    bits of a register, specifically which bits are known to be zero.
278
279    If an entry is zero, it means that we don't know anything special.  */
280
281 static unsigned HOST_WIDE_INT *reg_nonzero_bits;
282
283 /* Mode used to compute significance in reg_nonzero_bits.  It is the largest
284    integer mode that can fit in HOST_BITS_PER_WIDE_INT.  */
285
286 static enum machine_mode nonzero_bits_mode;
287
288 /* Nonzero if we know that a register has some leading bits that are always
289    equal to the sign bit.  */
290
291 static unsigned char *reg_sign_bit_copies;
292
293 /* Nonzero when reg_nonzero_bits and reg_sign_bit_copies can be safely used.
294    It is zero while computing them and after combine has completed.  This
295    former test prevents propagating values based on previously set values,
296    which can be incorrect if a variable is modified in a loop.  */
297
298 static int nonzero_sign_valid;
299
300 /* These arrays are maintained in parallel with reg_last_set_value
301    and are used to store the mode in which the register was last set,
302    the bits that were known to be zero when it was last set, and the
303    number of sign bits copies it was known to have when it was last set.  */
304
305 static enum machine_mode *reg_last_set_mode;
306 static unsigned HOST_WIDE_INT *reg_last_set_nonzero_bits;
307 static char *reg_last_set_sign_bit_copies;
308 \f
309 /* Record one modification to rtl structure
310    to be undone by storing old_contents into *where.
311    is_int is 1 if the contents are an int.  */
312
313 struct undo
314 {
315   struct undo *next;
316   int is_int;
317   union {rtx r; unsigned int i;} old_contents;
318   union {rtx *r; unsigned int *i;} where;
319 };
320
321 /* Record a bunch of changes to be undone, up to MAX_UNDO of them.
322    num_undo says how many are currently recorded.
323
324    other_insn is nonzero if we have modified some other insn in the process
325    of working on subst_insn.  It must be verified too.  */
326
327 struct undobuf
328 {
329   struct undo *undos;
330   struct undo *frees;
331   rtx other_insn;
332 };
333
334 static struct undobuf undobuf;
335
336 /* Number of times the pseudo being substituted for
337    was found and replaced.  */
338
339 static int n_occurrences;
340
341 static void do_SUBST                    PARAMS ((rtx *, rtx));
342 static void do_SUBST_INT                PARAMS ((unsigned int *,
343                                                  unsigned int));
344 static void init_reg_last_arrays        PARAMS ((void));
345 static void setup_incoming_promotions   PARAMS ((void));
346 static void set_nonzero_bits_and_sign_copies  PARAMS ((rtx, rtx, void *));
347 static int cant_combine_insn_p  PARAMS ((rtx));
348 static int can_combine_p        PARAMS ((rtx, rtx, rtx, rtx, rtx *, rtx *));
349 static int sets_function_arg_p  PARAMS ((rtx));
350 static int combinable_i3pat     PARAMS ((rtx, rtx *, rtx, rtx, int, rtx *));
351 static int contains_muldiv      PARAMS ((rtx));
352 static rtx try_combine          PARAMS ((rtx, rtx, rtx, int *));
353 static void undo_all            PARAMS ((void));
354 static void undo_commit         PARAMS ((void));
355 static rtx *find_split_point    PARAMS ((rtx *, rtx));
356 static rtx subst                PARAMS ((rtx, rtx, rtx, int, int));
357 static rtx combine_simplify_rtx PARAMS ((rtx, enum machine_mode, int, int));
358 static rtx simplify_if_then_else  PARAMS ((rtx));
359 static rtx simplify_set         PARAMS ((rtx));
360 static rtx simplify_logical     PARAMS ((rtx, int));
361 static rtx expand_compound_operation  PARAMS ((rtx));
362 static rtx expand_field_assignment  PARAMS ((rtx));
363 static rtx make_extraction      PARAMS ((enum machine_mode, rtx, HOST_WIDE_INT,
364                                          rtx, unsigned HOST_WIDE_INT, int,
365                                          int, int));
366 static rtx extract_left_shift   PARAMS ((rtx, int));
367 static rtx make_compound_operation  PARAMS ((rtx, enum rtx_code));
368 static int get_pos_from_mask    PARAMS ((unsigned HOST_WIDE_INT,
369                                          unsigned HOST_WIDE_INT *));
370 static rtx force_to_mode        PARAMS ((rtx, enum machine_mode,
371                                          unsigned HOST_WIDE_INT, rtx, int));
372 static rtx if_then_else_cond    PARAMS ((rtx, rtx *, rtx *));
373 static rtx known_cond           PARAMS ((rtx, enum rtx_code, rtx, rtx));
374 static int rtx_equal_for_field_assignment_p PARAMS ((rtx, rtx));
375 static rtx make_field_assignment  PARAMS ((rtx));
376 static rtx apply_distributive_law  PARAMS ((rtx));
377 static rtx simplify_and_const_int  PARAMS ((rtx, enum machine_mode, rtx,
378                                             unsigned HOST_WIDE_INT));
379 static unsigned HOST_WIDE_INT nonzero_bits  PARAMS ((rtx, enum machine_mode));
380 static unsigned int num_sign_bit_copies  PARAMS ((rtx, enum machine_mode));
381 static int merge_outer_ops      PARAMS ((enum rtx_code *, HOST_WIDE_INT *,
382                                          enum rtx_code, HOST_WIDE_INT,
383                                          enum machine_mode, int *));
384 static rtx simplify_shift_const PARAMS ((rtx, enum rtx_code, enum machine_mode,
385                                          rtx, int));
386 static int recog_for_combine    PARAMS ((rtx *, rtx, rtx *));
387 static rtx gen_lowpart_for_combine  PARAMS ((enum machine_mode, rtx));
388 static rtx gen_binary           PARAMS ((enum rtx_code, enum machine_mode,
389                                          rtx, rtx));
390 static enum rtx_code simplify_comparison  PARAMS ((enum rtx_code, rtx *, rtx *));
391 static void update_table_tick   PARAMS ((rtx));
392 static void record_value_for_reg  PARAMS ((rtx, rtx, rtx));
393 static void check_promoted_subreg PARAMS ((rtx, rtx));
394 static void record_dead_and_set_regs_1  PARAMS ((rtx, rtx, void *));
395 static void record_dead_and_set_regs  PARAMS ((rtx));
396 static int get_last_value_validate  PARAMS ((rtx *, rtx, int, int));
397 static rtx get_last_value       PARAMS ((rtx));
398 static int use_crosses_set_p    PARAMS ((rtx, int));
399 static void reg_dead_at_p_1     PARAMS ((rtx, rtx, void *));
400 static int reg_dead_at_p        PARAMS ((rtx, rtx));
401 static void move_deaths         PARAMS ((rtx, rtx, int, rtx, rtx *));
402 static int reg_bitfield_target_p  PARAMS ((rtx, rtx));
403 static void distribute_notes    PARAMS ((rtx, rtx, rtx, rtx, rtx, rtx));
404 static void distribute_links    PARAMS ((rtx));
405 static void mark_used_regs_combine PARAMS ((rtx));
406 static int insn_cuid            PARAMS ((rtx));
407 static void record_promoted_value PARAMS ((rtx, rtx));
408 static rtx reversed_comparison  PARAMS ((rtx, enum machine_mode, rtx, rtx));
409 static enum rtx_code combine_reversed_comparison_code PARAMS ((rtx));
410 \f
411 /* Substitute NEWVAL, an rtx expression, into INTO, a place in some
412    insn.  The substitution can be undone by undo_all.  If INTO is already
413    set to NEWVAL, do not record this change.  Because computing NEWVAL might
414    also call SUBST, we have to compute it before we put anything into
415    the undo table.  */
416
417 static void
418 do_SUBST (into, newval)
419      rtx *into, newval;
420 {
421   struct undo *buf;
422   rtx oldval = *into;
423
424   if (oldval == newval)
425     return;
426
427   if (undobuf.frees)
428     buf = undobuf.frees, undobuf.frees = buf->next;
429   else
430     buf = (struct undo *) xmalloc (sizeof (struct undo));
431
432   buf->is_int = 0;
433   buf->where.r = into;
434   buf->old_contents.r = oldval;
435   *into = newval;
436
437   buf->next = undobuf.undos, undobuf.undos = buf;
438 }
439
440 #define SUBST(INTO, NEWVAL)     do_SUBST(&(INTO), (NEWVAL))
441
442 /* Similar to SUBST, but NEWVAL is an int expression.  Note that substitution
443    for the value of a HOST_WIDE_INT value (including CONST_INT) is
444    not safe.  */
445
446 static void
447 do_SUBST_INT (into, newval)
448      unsigned int *into, newval;
449 {
450   struct undo *buf;
451   unsigned int oldval = *into;
452
453   if (oldval == newval)
454     return;
455
456   if (undobuf.frees)
457     buf = undobuf.frees, undobuf.frees = buf->next;
458   else
459     buf = (struct undo *) xmalloc (sizeof (struct undo));
460
461   buf->is_int = 1;
462   buf->where.i = into;
463   buf->old_contents.i = oldval;
464   *into = newval;
465
466   buf->next = undobuf.undos, undobuf.undos = buf;
467 }
468
469 #define SUBST_INT(INTO, NEWVAL)  do_SUBST_INT(&(INTO), (NEWVAL))
470 \f
471 /* Main entry point for combiner.  F is the first insn of the function.
472    NREGS is the first unused pseudo-reg number.
473
474    Return non-zero if the combiner has turned an indirect jump
475    instruction into a direct jump.  */
476 int
477 combine_instructions (f, nregs)
478      rtx f;
479      unsigned int nregs;
480 {
481   register rtx insn, next;
482 #ifdef HAVE_cc0
483   register rtx prev;
484 #endif
485   register int i;
486   register rtx links, nextlinks;
487
488   int new_direct_jump_p = 0;
489
490   combine_attempts = 0;
491   combine_merges = 0;
492   combine_extras = 0;
493   combine_successes = 0;
494
495   combine_max_regno = nregs;
496
497   reg_nonzero_bits = ((unsigned HOST_WIDE_INT *)
498                       xcalloc (nregs, sizeof (unsigned HOST_WIDE_INT)));
499   reg_sign_bit_copies
500     = (unsigned char *) xcalloc (nregs, sizeof (unsigned char));
501
502   reg_last_death = (rtx *) xmalloc (nregs * sizeof (rtx));
503   reg_last_set = (rtx *) xmalloc (nregs * sizeof (rtx));
504   reg_last_set_value = (rtx *) xmalloc (nregs * sizeof (rtx));
505   reg_last_set_table_tick = (int *) xmalloc (nregs * sizeof (int));
506   reg_last_set_label = (int *) xmalloc (nregs * sizeof (int));
507   reg_last_set_invalid = (char *) xmalloc (nregs * sizeof (char));
508   reg_last_set_mode
509     = (enum machine_mode *) xmalloc (nregs * sizeof (enum machine_mode));
510   reg_last_set_nonzero_bits
511     = (unsigned HOST_WIDE_INT *) xmalloc (nregs * sizeof (HOST_WIDE_INT));
512   reg_last_set_sign_bit_copies
513     = (char *) xmalloc (nregs * sizeof (char));
514
515   init_reg_last_arrays ();
516
517   init_recog_no_volatile ();
518
519   /* Compute maximum uid value so uid_cuid can be allocated.  */
520
521   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
522     if (INSN_UID (insn) > i)
523       i = INSN_UID (insn);
524
525   uid_cuid = (int *) xmalloc ((i + 1) * sizeof (int));
526   max_uid_cuid = i;
527
528   nonzero_bits_mode = mode_for_size (HOST_BITS_PER_WIDE_INT, MODE_INT, 0);
529
530   /* Don't use reg_nonzero_bits when computing it.  This can cause problems
531      when, for example, we have j <<= 1 in a loop.  */
532
533   nonzero_sign_valid = 0;
534
535   /* Compute the mapping from uids to cuids.
536      Cuids are numbers assigned to insns, like uids,
537      except that cuids increase monotonically through the code.
538
539      Scan all SETs and see if we can deduce anything about what
540      bits are known to be zero for some registers and how many copies
541      of the sign bit are known to exist for those registers.
542
543      Also set any known values so that we can use it while searching
544      for what bits are known to be set.  */
545
546   label_tick = 1;
547
548   /* We need to initialize it here, because record_dead_and_set_regs may call
549      get_last_value.  */
550   subst_prev_insn = NULL_RTX;
551
552   setup_incoming_promotions ();
553
554   refresh_blocks = sbitmap_alloc (n_basic_blocks);
555   sbitmap_zero (refresh_blocks);
556   need_refresh = 0;
557
558   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
559     {
560       uid_cuid[INSN_UID (insn)] = ++i;
561       subst_low_cuid = i;
562       subst_insn = insn;
563
564       if (INSN_P (insn))
565         {
566           note_stores (PATTERN (insn), set_nonzero_bits_and_sign_copies,
567                        NULL);
568           record_dead_and_set_regs (insn);
569
570 #ifdef AUTO_INC_DEC
571           for (links = REG_NOTES (insn); links; links = XEXP (links, 1))
572             if (REG_NOTE_KIND (links) == REG_INC)
573               set_nonzero_bits_and_sign_copies (XEXP (links, 0), NULL_RTX,
574                                                 NULL);
575 #endif
576         }
577
578       if (GET_CODE (insn) == CODE_LABEL)
579         label_tick++;
580     }
581
582   nonzero_sign_valid = 1;
583
584   /* Now scan all the insns in forward order.  */
585
586   this_basic_block = -1;
587   label_tick = 1;
588   last_call_cuid = 0;
589   mem_last_set = 0;
590   init_reg_last_arrays ();
591   setup_incoming_promotions ();
592
593   for (insn = f; insn; insn = next ? next : NEXT_INSN (insn))
594     {
595       next = 0;
596
597       /* If INSN starts a new basic block, update our basic block number.  */
598       if (this_basic_block + 1 < n_basic_blocks
599           && BLOCK_HEAD (this_basic_block + 1) == insn)
600         this_basic_block++;
601
602       if (GET_CODE (insn) == CODE_LABEL)
603         label_tick++;
604
605       else if (INSN_P (insn))
606         {
607           /* See if we know about function return values before this
608              insn based upon SUBREG flags.  */
609           check_promoted_subreg (insn, PATTERN (insn));
610
611           /* Try this insn with each insn it links back to.  */
612
613           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
614             if ((next = try_combine (insn, XEXP (links, 0),
615                                      NULL_RTX, &new_direct_jump_p)) != 0)
616               goto retry;
617
618           /* Try each sequence of three linked insns ending with this one.  */
619
620           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
621             {
622               rtx link = XEXP (links, 0);
623
624               /* If the linked insn has been replaced by a note, then there
625                  is no point in persuing this chain any further.  */
626               if (GET_CODE (link) == NOTE)
627                 break;
628
629               for (nextlinks = LOG_LINKS (link);
630                    nextlinks;
631                    nextlinks = XEXP (nextlinks, 1))
632                 if ((next = try_combine (insn, XEXP (links, 0),
633                                          XEXP (nextlinks, 0),
634                                          &new_direct_jump_p)) != 0)
635                   goto retry;
636             }
637
638 #ifdef HAVE_cc0
639           /* Try to combine a jump insn that uses CC0
640              with a preceding insn that sets CC0, and maybe with its
641              logical predecessor as well.
642              This is how we make decrement-and-branch insns.
643              We need this special code because data flow connections
644              via CC0 do not get entered in LOG_LINKS.  */
645
646           if (GET_CODE (insn) == JUMP_INSN
647               && (prev = prev_nonnote_insn (insn)) != 0
648               && GET_CODE (prev) == INSN
649               && sets_cc0_p (PATTERN (prev)))
650             {
651               if ((next = try_combine (insn, prev,
652                                        NULL_RTX, &new_direct_jump_p)) != 0)
653                 goto retry;
654
655               for (nextlinks = LOG_LINKS (prev); nextlinks;
656                    nextlinks = XEXP (nextlinks, 1))
657                 if ((next = try_combine (insn, prev,
658                                          XEXP (nextlinks, 0),
659                                          &new_direct_jump_p)) != 0)
660                   goto retry;
661             }
662
663           /* Do the same for an insn that explicitly references CC0.  */
664           if (GET_CODE (insn) == INSN
665               && (prev = prev_nonnote_insn (insn)) != 0
666               && GET_CODE (prev) == INSN
667               && sets_cc0_p (PATTERN (prev))
668               && GET_CODE (PATTERN (insn)) == SET
669               && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (insn))))
670             {
671               if ((next = try_combine (insn, prev,
672                                        NULL_RTX, &new_direct_jump_p)) != 0)
673                 goto retry;
674
675               for (nextlinks = LOG_LINKS (prev); nextlinks;
676                    nextlinks = XEXP (nextlinks, 1))
677                 if ((next = try_combine (insn, prev,
678                                          XEXP (nextlinks, 0),
679                                          &new_direct_jump_p)) != 0)
680                   goto retry;
681             }
682
683           /* Finally, see if any of the insns that this insn links to
684              explicitly references CC0.  If so, try this insn, that insn,
685              and its predecessor if it sets CC0.  */
686           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
687             if (GET_CODE (XEXP (links, 0)) == INSN
688                 && GET_CODE (PATTERN (XEXP (links, 0))) == SET
689                 && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (XEXP (links, 0))))
690                 && (prev = prev_nonnote_insn (XEXP (links, 0))) != 0
691                 && GET_CODE (prev) == INSN
692                 && sets_cc0_p (PATTERN (prev))
693                 && (next = try_combine (insn, XEXP (links, 0),
694                                         prev, &new_direct_jump_p)) != 0)
695               goto retry;
696 #endif
697
698           /* Try combining an insn with two different insns whose results it
699              uses.  */
700           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
701             for (nextlinks = XEXP (links, 1); nextlinks;
702                  nextlinks = XEXP (nextlinks, 1))
703               if ((next = try_combine (insn, XEXP (links, 0),
704                                        XEXP (nextlinks, 0),
705                                        &new_direct_jump_p)) != 0)
706                 goto retry;
707
708           if (GET_CODE (insn) != NOTE)
709             record_dead_and_set_regs (insn);
710
711         retry:
712           ;
713         }
714     }
715
716   if (need_refresh)
717     {
718       compute_bb_for_insn (get_max_uid ());
719       update_life_info (refresh_blocks, UPDATE_LIFE_GLOBAL_RM_NOTES,
720                         PROP_DEATH_NOTES);
721     }
722
723   /* Clean up.  */
724   sbitmap_free (refresh_blocks);
725   free (reg_nonzero_bits);
726   free (reg_sign_bit_copies);
727   free (reg_last_death);
728   free (reg_last_set);
729   free (reg_last_set_value);
730   free (reg_last_set_table_tick);
731   free (reg_last_set_label);
732   free (reg_last_set_invalid);
733   free (reg_last_set_mode);
734   free (reg_last_set_nonzero_bits);
735   free (reg_last_set_sign_bit_copies);
736   free (uid_cuid);
737
738   {
739     struct undo *undo, *next;
740     for (undo = undobuf.frees; undo; undo = next)
741       {
742         next = undo->next;
743         free (undo);
744       }
745     undobuf.frees = 0;
746   }
747
748   total_attempts += combine_attempts;
749   total_merges += combine_merges;
750   total_extras += combine_extras;
751   total_successes += combine_successes;
752
753   nonzero_sign_valid = 0;
754
755   /* Make recognizer allow volatile MEMs again.  */
756   init_recog ();
757
758   return new_direct_jump_p;
759 }
760
761 /* Wipe the reg_last_xxx arrays in preparation for another pass.  */
762
763 static void
764 init_reg_last_arrays ()
765 {
766   unsigned int nregs = combine_max_regno;
767
768   memset ((char *) reg_last_death, 0, nregs * sizeof (rtx));
769   memset ((char *) reg_last_set, 0, nregs * sizeof (rtx));
770   memset ((char *) reg_last_set_value, 0, nregs * sizeof (rtx));
771   memset ((char *) reg_last_set_table_tick, 0, nregs * sizeof (int));
772   memset ((char *) reg_last_set_label, 0, nregs * sizeof (int));
773   memset (reg_last_set_invalid, 0, nregs * sizeof (char));
774   memset ((char *) reg_last_set_mode, 0, nregs * sizeof (enum machine_mode));
775   memset ((char *) reg_last_set_nonzero_bits, 0, nregs * sizeof (HOST_WIDE_INT));
776   memset (reg_last_set_sign_bit_copies, 0, nregs * sizeof (char));
777 }
778 \f
779 /* Set up any promoted values for incoming argument registers.  */
780
781 static void
782 setup_incoming_promotions ()
783 {
784 #ifdef PROMOTE_FUNCTION_ARGS
785   unsigned int regno;
786   rtx reg;
787   enum machine_mode mode;
788   int unsignedp;
789   rtx first = get_insns ();
790
791 #ifndef OUTGOING_REGNO
792 #define OUTGOING_REGNO(N) N
793 #endif
794   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
795     /* Check whether this register can hold an incoming pointer
796        argument.  FUNCTION_ARG_REGNO_P tests outgoing register
797        numbers, so translate if necessary due to register windows.  */
798     if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (regno))
799         && (reg = promoted_input_arg (regno, &mode, &unsignedp)) != 0)
800       {
801         record_value_for_reg
802           (reg, first, gen_rtx_fmt_e ((unsignedp ? ZERO_EXTEND
803                                        : SIGN_EXTEND),
804                                       GET_MODE (reg),
805                                       gen_rtx_CLOBBER (mode, const0_rtx)));
806       }
807 #endif
808 }
809 \f
810 /* Called via note_stores.  If X is a pseudo that is narrower than
811    HOST_BITS_PER_WIDE_INT and is being set, record what bits are known zero.
812
813    If we are setting only a portion of X and we can't figure out what
814    portion, assume all bits will be used since we don't know what will
815    be happening.
816
817    Similarly, set how many bits of X are known to be copies of the sign bit
818    at all locations in the function.  This is the smallest number implied
819    by any set of X.  */
820
821 static void
822 set_nonzero_bits_and_sign_copies (x, set, data)
823      rtx x;
824      rtx set;
825      void *data ATTRIBUTE_UNUSED;
826 {
827   unsigned int num;
828
829   if (GET_CODE (x) == REG
830       && REGNO (x) >= FIRST_PSEUDO_REGISTER
831       /* If this register is undefined at the start of the file, we can't
832          say what its contents were.  */
833       && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, REGNO (x))
834       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
835     {
836       if (set == 0 || GET_CODE (set) == CLOBBER)
837         {
838           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
839           reg_sign_bit_copies[REGNO (x)] = 1;
840           return;
841         }
842
843       /* If this is a complex assignment, see if we can convert it into a
844          simple assignment.  */
845       set = expand_field_assignment (set);
846
847       /* If this is a simple assignment, or we have a paradoxical SUBREG,
848          set what we know about X.  */
849
850       if (SET_DEST (set) == x
851           || (GET_CODE (SET_DEST (set)) == SUBREG
852               && (GET_MODE_SIZE (GET_MODE (SET_DEST (set)))
853                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (set)))))
854               && SUBREG_REG (SET_DEST (set)) == x))
855         {
856           rtx src = SET_SRC (set);
857
858 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
859           /* If X is narrower than a word and SRC is a non-negative
860              constant that would appear negative in the mode of X,
861              sign-extend it for use in reg_nonzero_bits because some
862              machines (maybe most) will actually do the sign-extension
863              and this is the conservative approach.
864
865              ??? For 2.5, try to tighten up the MD files in this regard
866              instead of this kludge.  */
867
868           if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
869               && GET_CODE (src) == CONST_INT
870               && INTVAL (src) > 0
871               && 0 != (INTVAL (src)
872                        & ((HOST_WIDE_INT) 1
873                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
874             src = GEN_INT (INTVAL (src)
875                            | ((HOST_WIDE_INT) (-1)
876                               << GET_MODE_BITSIZE (GET_MODE (x))));
877 #endif
878
879           reg_nonzero_bits[REGNO (x)]
880             |= nonzero_bits (src, nonzero_bits_mode);
881           num = num_sign_bit_copies (SET_SRC (set), GET_MODE (x));
882           if (reg_sign_bit_copies[REGNO (x)] == 0
883               || reg_sign_bit_copies[REGNO (x)] > num)
884             reg_sign_bit_copies[REGNO (x)] = num;
885         }
886       else
887         {
888           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
889           reg_sign_bit_copies[REGNO (x)] = 1;
890         }
891     }
892 }
893 \f
894 /* See if INSN can be combined into I3.  PRED and SUCC are optionally
895    insns that were previously combined into I3 or that will be combined
896    into the merger of INSN and I3.
897
898    Return 0 if the combination is not allowed for any reason.
899
900    If the combination is allowed, *PDEST will be set to the single
901    destination of INSN and *PSRC to the single source, and this function
902    will return 1.  */
903
904 static int
905 can_combine_p (insn, i3, pred, succ, pdest, psrc)
906      rtx insn;
907      rtx i3;
908      rtx pred ATTRIBUTE_UNUSED;
909      rtx succ;
910      rtx *pdest, *psrc;
911 {
912   int i;
913   rtx set = 0, src, dest;
914   rtx p;
915 #ifdef AUTO_INC_DEC
916   rtx link;
917 #endif
918   int all_adjacent = (succ ? (next_active_insn (insn) == succ
919                               && next_active_insn (succ) == i3)
920                       : next_active_insn (insn) == i3);
921
922   /* Can combine only if previous insn is a SET of a REG, a SUBREG or CC0.
923      or a PARALLEL consisting of such a SET and CLOBBERs.
924
925      If INSN has CLOBBER parallel parts, ignore them for our processing.
926      By definition, these happen during the execution of the insn.  When it
927      is merged with another insn, all bets are off.  If they are, in fact,
928      needed and aren't also supplied in I3, they may be added by
929      recog_for_combine.  Otherwise, it won't match.
930
931      We can also ignore a SET whose SET_DEST is mentioned in a REG_UNUSED
932      note.
933
934      Get the source and destination of INSN.  If more than one, can't
935      combine.  */
936
937   if (GET_CODE (PATTERN (insn)) == SET)
938     set = PATTERN (insn);
939   else if (GET_CODE (PATTERN (insn)) == PARALLEL
940            && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
941     {
942       for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
943         {
944           rtx elt = XVECEXP (PATTERN (insn), 0, i);
945
946           switch (GET_CODE (elt))
947             {
948             /* This is important to combine floating point insns
949                for the SH4 port.  */
950             case USE:
951               /* Combining an isolated USE doesn't make sense.
952                  We depend here on combinable_i3_pat to reject them.  */
953               /* The code below this loop only verifies that the inputs of
954                  the SET in INSN do not change.  We call reg_set_between_p
955                  to verify that the REG in the USE does not change betweeen
956                  I3 and INSN.
957                  If the USE in INSN was for a pseudo register, the matching
958                  insn pattern will likely match any register; combining this
959                  with any other USE would only be safe if we knew that the
960                  used registers have identical values, or if there was
961                  something to tell them apart, e.g. different modes.  For
962                  now, we forgo such compilcated tests and simply disallow
963                  combining of USES of pseudo registers with any other USE.  */
964               if (GET_CODE (XEXP (elt, 0)) == REG
965                   && GET_CODE (PATTERN (i3)) == PARALLEL)
966                 {
967                   rtx i3pat = PATTERN (i3);
968                   int i = XVECLEN (i3pat, 0) - 1;
969                   unsigned int regno = REGNO (XEXP (elt, 0));
970
971                   do
972                     {
973                       rtx i3elt = XVECEXP (i3pat, 0, i);
974
975                       if (GET_CODE (i3elt) == USE
976                           && GET_CODE (XEXP (i3elt, 0)) == REG
977                           && (REGNO (XEXP (i3elt, 0)) == regno
978                               ? reg_set_between_p (XEXP (elt, 0),
979                                                    PREV_INSN (insn), i3)
980                               : regno >= FIRST_PSEUDO_REGISTER))
981                         return 0;
982                     }
983                   while (--i >= 0);
984                 }
985               break;
986
987               /* We can ignore CLOBBERs.  */
988             case CLOBBER:
989               break;
990
991             case SET:
992               /* Ignore SETs whose result isn't used but not those that
993                  have side-effects.  */
994               if (find_reg_note (insn, REG_UNUSED, SET_DEST (elt))
995                   && ! side_effects_p (elt))
996                 break;
997
998               /* If we have already found a SET, this is a second one and
999                  so we cannot combine with this insn.  */
1000               if (set)
1001                 return 0;
1002
1003               set = elt;
1004               break;
1005
1006             default:
1007               /* Anything else means we can't combine.  */
1008               return 0;
1009             }
1010         }
1011
1012       if (set == 0
1013           /* If SET_SRC is an ASM_OPERANDS we can't throw away these CLOBBERs,
1014              so don't do anything with it.  */
1015           || GET_CODE (SET_SRC (set)) == ASM_OPERANDS)
1016         return 0;
1017     }
1018   else
1019     return 0;
1020
1021   if (set == 0)
1022     return 0;
1023
1024   set = expand_field_assignment (set);
1025   src = SET_SRC (set), dest = SET_DEST (set);
1026
1027   /* Don't eliminate a store in the stack pointer.  */
1028   if (dest == stack_pointer_rtx
1029       /* If we couldn't eliminate a field assignment, we can't combine.  */
1030       || GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == STRICT_LOW_PART
1031       /* Don't combine with an insn that sets a register to itself if it has
1032          a REG_EQUAL note.  This may be part of a REG_NO_CONFLICT sequence.  */
1033       || (rtx_equal_p (src, dest) && find_reg_note (insn, REG_EQUAL, NULL_RTX))
1034       /* Can't merge an ASM_OPERANDS.  */
1035       || GET_CODE (src) == ASM_OPERANDS
1036       /* Can't merge a function call.  */
1037       || GET_CODE (src) == CALL
1038       /* Don't eliminate a function call argument.  */
1039       || (GET_CODE (i3) == CALL_INSN
1040           && (find_reg_fusage (i3, USE, dest)
1041               || (GET_CODE (dest) == REG
1042                   && REGNO (dest) < FIRST_PSEUDO_REGISTER
1043                   && global_regs[REGNO (dest)])))
1044       /* Don't substitute into an incremented register.  */
1045       || FIND_REG_INC_NOTE (i3, dest)
1046       || (succ && FIND_REG_INC_NOTE (succ, dest))
1047 #if 0
1048       /* Don't combine the end of a libcall into anything.  */
1049       /* ??? This gives worse code, and appears to be unnecessary, since no
1050          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  Local-alloc does
1051          use REG_RETVAL notes for noconflict blocks, but other code here
1052          makes sure that those insns don't disappear.  */
1053       || find_reg_note (insn, REG_RETVAL, NULL_RTX)
1054 #endif
1055       /* Make sure that DEST is not used after SUCC but before I3.  */
1056       || (succ && ! all_adjacent
1057           && reg_used_between_p (dest, succ, i3))
1058       /* Make sure that the value that is to be substituted for the register
1059          does not use any registers whose values alter in between.  However,
1060          If the insns are adjacent, a use can't cross a set even though we
1061          think it might (this can happen for a sequence of insns each setting
1062          the same destination; reg_last_set of that register might point to
1063          a NOTE).  If INSN has a REG_EQUIV note, the register is always
1064          equivalent to the memory so the substitution is valid even if there
1065          are intervening stores.  Also, don't move a volatile asm or
1066          UNSPEC_VOLATILE across any other insns.  */
1067       || (! all_adjacent
1068           && (((GET_CODE (src) != MEM
1069                 || ! find_reg_note (insn, REG_EQUIV, src))
1070                && use_crosses_set_p (src, INSN_CUID (insn)))
1071               || (GET_CODE (src) == ASM_OPERANDS && MEM_VOLATILE_P (src))
1072               || GET_CODE (src) == UNSPEC_VOLATILE))
1073       /* If there is a REG_NO_CONFLICT note for DEST in I3 or SUCC, we get
1074          better register allocation by not doing the combine.  */
1075       || find_reg_note (i3, REG_NO_CONFLICT, dest)
1076       || (succ && find_reg_note (succ, REG_NO_CONFLICT, dest))
1077       /* Don't combine across a CALL_INSN, because that would possibly
1078          change whether the life span of some REGs crosses calls or not,
1079          and it is a pain to update that information.
1080          Exception: if source is a constant, moving it later can't hurt.
1081          Accept that special case, because it helps -fforce-addr a lot.  */
1082       || (INSN_CUID (insn) < last_call_cuid && ! CONSTANT_P (src)))
1083     return 0;
1084
1085   /* DEST must either be a REG or CC0.  */
1086   if (GET_CODE (dest) == REG)
1087     {
1088       /* If register alignment is being enforced for multi-word items in all
1089          cases except for parameters, it is possible to have a register copy
1090          insn referencing a hard register that is not allowed to contain the
1091          mode being copied and which would not be valid as an operand of most
1092          insns.  Eliminate this problem by not combining with such an insn.
1093
1094          Also, on some machines we don't want to extend the life of a hard
1095          register.  */
1096
1097       if (GET_CODE (src) == REG
1098           && ((REGNO (dest) < FIRST_PSEUDO_REGISTER
1099                && ! HARD_REGNO_MODE_OK (REGNO (dest), GET_MODE (dest)))
1100               /* Don't extend the life of a hard register unless it is
1101                  user variable (if we have few registers) or it can't
1102                  fit into the desired register (meaning something special
1103                  is going on).
1104                  Also avoid substituting a return register into I3, because
1105                  reload can't handle a conflict with constraints of other
1106                  inputs.  */
1107               || (REGNO (src) < FIRST_PSEUDO_REGISTER
1108                   && ! HARD_REGNO_MODE_OK (REGNO (src), GET_MODE (src)))))
1109         return 0;
1110     }
1111   else if (GET_CODE (dest) != CC0)
1112     return 0;
1113
1114   /* Don't substitute for a register intended as a clobberable operand.
1115      Similarly, don't substitute an expression containing a register that
1116      will be clobbered in I3.  */
1117   if (GET_CODE (PATTERN (i3)) == PARALLEL)
1118     for (i = XVECLEN (PATTERN (i3), 0) - 1; i >= 0; i--)
1119       if (GET_CODE (XVECEXP (PATTERN (i3), 0, i)) == CLOBBER
1120           && (reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0),
1121                                        src)
1122               || rtx_equal_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0), dest)))
1123         return 0;
1124
1125   /* If INSN contains anything volatile, or is an `asm' (whether volatile
1126      or not), reject, unless nothing volatile comes between it and I3 */
1127
1128   if (GET_CODE (src) == ASM_OPERANDS || volatile_refs_p (src))
1129     {
1130       /* Make sure succ doesn't contain a volatile reference.  */
1131       if (succ != 0 && volatile_refs_p (PATTERN (succ)))
1132         return 0;
1133
1134       for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1135         if (INSN_P (p) && p != succ && volatile_refs_p (PATTERN (p)))
1136         return 0;
1137     }
1138
1139   /* If INSN is an asm, and DEST is a hard register, reject, since it has
1140      to be an explicit register variable, and was chosen for a reason.  */
1141
1142   if (GET_CODE (src) == ASM_OPERANDS
1143       && GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER)
1144     return 0;
1145
1146   /* If there are any volatile insns between INSN and I3, reject, because
1147      they might affect machine state.  */
1148
1149   for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1150     if (INSN_P (p) && p != succ && volatile_insn_p (PATTERN (p)))
1151       return 0;
1152
1153   /* If INSN or I2 contains an autoincrement or autodecrement,
1154      make sure that register is not used between there and I3,
1155      and not already used in I3 either.
1156      Also insist that I3 not be a jump; if it were one
1157      and the incremented register were spilled, we would lose.  */
1158
1159 #ifdef AUTO_INC_DEC
1160   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1161     if (REG_NOTE_KIND (link) == REG_INC
1162         && (GET_CODE (i3) == JUMP_INSN
1163             || reg_used_between_p (XEXP (link, 0), insn, i3)
1164             || reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i3))))
1165       return 0;
1166 #endif
1167
1168 #ifdef HAVE_cc0
1169   /* Don't combine an insn that follows a CC0-setting insn.
1170      An insn that uses CC0 must not be separated from the one that sets it.
1171      We do, however, allow I2 to follow a CC0-setting insn if that insn
1172      is passed as I1; in that case it will be deleted also.
1173      We also allow combining in this case if all the insns are adjacent
1174      because that would leave the two CC0 insns adjacent as well.
1175      It would be more logical to test whether CC0 occurs inside I1 or I2,
1176      but that would be much slower, and this ought to be equivalent.  */
1177
1178   p = prev_nonnote_insn (insn);
1179   if (p && p != pred && GET_CODE (p) == INSN && sets_cc0_p (PATTERN (p))
1180       && ! all_adjacent)
1181     return 0;
1182 #endif
1183
1184   /* If we get here, we have passed all the tests and the combination is
1185      to be allowed.  */
1186
1187   *pdest = dest;
1188   *psrc = src;
1189
1190   return 1;
1191 }
1192 \f
1193 /* Check if PAT is an insn - or a part of it - used to set up an
1194    argument for a function in a hard register.  */
1195
1196 static int
1197 sets_function_arg_p (pat)
1198      rtx pat;
1199 {
1200   int i;
1201   rtx inner_dest;
1202
1203   switch (GET_CODE (pat))
1204     {
1205     case INSN:
1206       return sets_function_arg_p (PATTERN (pat));
1207
1208     case PARALLEL:
1209       for (i = XVECLEN (pat, 0); --i >= 0;)
1210         if (sets_function_arg_p (XVECEXP (pat, 0, i)))
1211           return 1;
1212
1213       break;
1214
1215     case SET:
1216       inner_dest = SET_DEST (pat);
1217       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1218              || GET_CODE (inner_dest) == SUBREG
1219              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1220         inner_dest = XEXP (inner_dest, 0);
1221
1222       return (GET_CODE (inner_dest) == REG
1223               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1224               && FUNCTION_ARG_REGNO_P (REGNO (inner_dest)));
1225
1226     default:
1227       break;
1228     }
1229
1230   return 0;
1231 }
1232
1233 /* LOC is the location within I3 that contains its pattern or the component
1234    of a PARALLEL of the pattern.  We validate that it is valid for combining.
1235
1236    One problem is if I3 modifies its output, as opposed to replacing it
1237    entirely, we can't allow the output to contain I2DEST or I1DEST as doing
1238    so would produce an insn that is not equivalent to the original insns.
1239
1240    Consider:
1241
1242          (set (reg:DI 101) (reg:DI 100))
1243          (set (subreg:SI (reg:DI 101) 0) <foo>)
1244
1245    This is NOT equivalent to:
1246
1247          (parallel [(set (subreg:SI (reg:DI 100) 0) <foo>)
1248                     (set (reg:DI 101) (reg:DI 100))])
1249
1250    Not only does this modify 100 (in which case it might still be valid
1251    if 100 were dead in I2), it sets 101 to the ORIGINAL value of 100.
1252
1253    We can also run into a problem if I2 sets a register that I1
1254    uses and I1 gets directly substituted into I3 (not via I2).  In that
1255    case, we would be getting the wrong value of I2DEST into I3, so we
1256    must reject the combination.  This case occurs when I2 and I1 both
1257    feed into I3, rather than when I1 feeds into I2, which feeds into I3.
1258    If I1_NOT_IN_SRC is non-zero, it means that finding I1 in the source
1259    of a SET must prevent combination from occurring.
1260
1261    Before doing the above check, we first try to expand a field assignment
1262    into a set of logical operations.
1263
1264    If PI3_DEST_KILLED is non-zero, it is a pointer to a location in which
1265    we place a register that is both set and used within I3.  If more than one
1266    such register is detected, we fail.
1267
1268    Return 1 if the combination is valid, zero otherwise.  */
1269
1270 static int
1271 combinable_i3pat (i3, loc, i2dest, i1dest, i1_not_in_src, pi3dest_killed)
1272      rtx i3;
1273      rtx *loc;
1274      rtx i2dest;
1275      rtx i1dest;
1276      int i1_not_in_src;
1277      rtx *pi3dest_killed;
1278 {
1279   rtx x = *loc;
1280
1281   if (GET_CODE (x) == SET)
1282     {
1283       rtx set = expand_field_assignment (x);
1284       rtx dest = SET_DEST (set);
1285       rtx src = SET_SRC (set);
1286       rtx inner_dest = dest;
1287
1288 #if 0
1289       rtx inner_src = src;
1290 #endif
1291
1292       SUBST (*loc, set);
1293
1294       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1295              || GET_CODE (inner_dest) == SUBREG
1296              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1297         inner_dest = XEXP (inner_dest, 0);
1298
1299   /* We probably don't need this any more now that LIMIT_RELOAD_CLASS
1300      was added.  */
1301 #if 0
1302       while (GET_CODE (inner_src) == STRICT_LOW_PART
1303              || GET_CODE (inner_src) == SUBREG
1304              || GET_CODE (inner_src) == ZERO_EXTRACT)
1305         inner_src = XEXP (inner_src, 0);
1306
1307       /* If it is better that two different modes keep two different pseudos,
1308          avoid combining them.  This avoids producing the following pattern
1309          on a 386:
1310           (set (subreg:SI (reg/v:QI 21) 0)
1311                (lshiftrt:SI (reg/v:SI 20)
1312                    (const_int 24)))
1313          If that were made, reload could not handle the pair of
1314          reg 20/21, since it would try to get any GENERAL_REGS
1315          but some of them don't handle QImode.  */
1316
1317       if (rtx_equal_p (inner_src, i2dest)
1318           && GET_CODE (inner_dest) == REG
1319           && ! MODES_TIEABLE_P (GET_MODE (i2dest), GET_MODE (inner_dest)))
1320         return 0;
1321 #endif
1322
1323       /* Check for the case where I3 modifies its output, as
1324          discussed above.  */
1325       if ((inner_dest != dest
1326            && (reg_overlap_mentioned_p (i2dest, inner_dest)
1327                || (i1dest && reg_overlap_mentioned_p (i1dest, inner_dest))))
1328
1329           /* This is the same test done in can_combine_p except we can't test
1330              all_adjacent; we don't have to, since this instruction will stay
1331              in place, thus we are not considering increasing the lifetime of
1332              INNER_DEST.
1333
1334              Also, if this insn sets a function argument, combining it with
1335              something that might need a spill could clobber a previous
1336              function argument; the all_adjacent test in can_combine_p also
1337              checks this; here, we do a more specific test for this case.  */
1338
1339           || (GET_CODE (inner_dest) == REG
1340               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1341               && (! HARD_REGNO_MODE_OK (REGNO (inner_dest),
1342                                         GET_MODE (inner_dest))))
1343           || (i1_not_in_src && reg_overlap_mentioned_p (i1dest, src)))
1344         return 0;
1345
1346       /* If DEST is used in I3, it is being killed in this insn,
1347          so record that for later.
1348          Never add REG_DEAD notes for the FRAME_POINTER_REGNUM or the
1349          STACK_POINTER_REGNUM, since these are always considered to be
1350          live.  Similarly for ARG_POINTER_REGNUM if it is fixed.  */
1351       if (pi3dest_killed && GET_CODE (dest) == REG
1352           && reg_referenced_p (dest, PATTERN (i3))
1353           && REGNO (dest) != FRAME_POINTER_REGNUM
1354 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
1355           && REGNO (dest) != HARD_FRAME_POINTER_REGNUM
1356 #endif
1357 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
1358           && (REGNO (dest) != ARG_POINTER_REGNUM
1359               || ! fixed_regs [REGNO (dest)])
1360 #endif
1361           && REGNO (dest) != STACK_POINTER_REGNUM)
1362         {
1363           if (*pi3dest_killed)
1364             return 0;
1365
1366           *pi3dest_killed = dest;
1367         }
1368     }
1369
1370   else if (GET_CODE (x) == PARALLEL)
1371     {
1372       int i;
1373
1374       for (i = 0; i < XVECLEN (x, 0); i++)
1375         if (! combinable_i3pat (i3, &XVECEXP (x, 0, i), i2dest, i1dest,
1376                                 i1_not_in_src, pi3dest_killed))
1377           return 0;
1378     }
1379
1380   return 1;
1381 }
1382 \f
1383 /* Return 1 if X is an arithmetic expression that contains a multiplication
1384    and division.  We don't count multiplications by powers of two here.  */
1385
1386 static int
1387 contains_muldiv (x)
1388      rtx x;
1389 {
1390   switch (GET_CODE (x))
1391     {
1392     case MOD:  case DIV:  case UMOD:  case UDIV:
1393       return 1;
1394
1395     case MULT:
1396       return ! (GET_CODE (XEXP (x, 1)) == CONST_INT
1397                 && exact_log2 (INTVAL (XEXP (x, 1))) >= 0);
1398     default:
1399       switch (GET_RTX_CLASS (GET_CODE (x)))
1400         {
1401         case 'c':  case '<':  case '2':
1402           return contains_muldiv (XEXP (x, 0))
1403             || contains_muldiv (XEXP (x, 1));
1404
1405         case '1':
1406           return contains_muldiv (XEXP (x, 0));
1407
1408         default:
1409           return 0;
1410         }
1411     }
1412 }
1413 \f
1414 /* Determine whether INSN can be used in a combination.  Return nonzero if
1415    not.  This is used in try_combine to detect early some cases where we
1416    can't perform combinations.  */
1417
1418 static int
1419 cant_combine_insn_p (insn)
1420      rtx insn;
1421 {
1422   rtx set;
1423   rtx src, dest;
1424   
1425   /* If this isn't really an insn, we can't do anything.
1426      This can occur when flow deletes an insn that it has merged into an
1427      auto-increment address.  */
1428   if (! INSN_P (insn))
1429     return 1;
1430
1431   /* Never combine loads and stores involving hard regs.  The register
1432      allocator can usually handle such reg-reg moves by tying.  If we allow
1433      the combiner to make substitutions of hard regs, we risk aborting in
1434      reload on machines that have SMALL_REGISTER_CLASSES.
1435      As an exception, we allow combinations involving fixed regs; these are
1436      not available to the register allocator so there's no risk involved.  */
1437
1438   set = single_set (insn);
1439   if (! set)
1440     return 0;
1441   src = SET_SRC (set);
1442   dest = SET_DEST (set);
1443   if (GET_CODE (src) == SUBREG)
1444     src = SUBREG_REG (src);
1445   if (GET_CODE (dest) == SUBREG)
1446     dest = SUBREG_REG (dest);
1447   if (REG_P (src) && REG_P (dest)
1448       && ((REGNO (src) < FIRST_PSEUDO_REGISTER
1449            && ! fixed_regs[REGNO (src)])
1450           || (REGNO (dest) < FIRST_PSEUDO_REGISTER
1451               && ! fixed_regs[REGNO (dest)])))
1452     return 1;
1453
1454   return 0;
1455 }
1456
1457 /* Try to combine the insns I1 and I2 into I3.
1458    Here I1 and I2 appear earlier than I3.
1459    I1 can be zero; then we combine just I2 into I3.
1460
1461    It we are combining three insns and the resulting insn is not recognized,
1462    try splitting it into two insns.  If that happens, I2 and I3 are retained
1463    and I1 is pseudo-deleted by turning it into a NOTE.  Otherwise, I1 and I2
1464    are pseudo-deleted.
1465
1466    Return 0 if the combination does not work.  Then nothing is changed.
1467    If we did the combination, return the insn at which combine should
1468    resume scanning.
1469
1470    Set NEW_DIRECT_JUMP_P to a non-zero value if try_combine creates a
1471    new direct jump instruction.  */
1472
1473 static rtx
1474 try_combine (i3, i2, i1, new_direct_jump_p)
1475      register rtx i3, i2, i1;
1476      register int *new_direct_jump_p;
1477 {
1478   /* New patterns for I3 and I2, respectively.  */
1479   rtx newpat, newi2pat = 0;
1480   /* Indicates need to preserve SET in I1 or I2 in I3 if it is not dead.  */
1481   int added_sets_1, added_sets_2;
1482   /* Total number of SETs to put into I3.  */
1483   int total_sets;
1484   /* Nonzero is I2's body now appears in I3.  */
1485   int i2_is_used;
1486   /* INSN_CODEs for new I3, new I2, and user of condition code.  */
1487   int insn_code_number, i2_code_number = 0, other_code_number = 0;
1488   /* Contains I3 if the destination of I3 is used in its source, which means
1489      that the old life of I3 is being killed.  If that usage is placed into
1490      I2 and not in I3, a REG_DEAD note must be made.  */
1491   rtx i3dest_killed = 0;
1492   /* SET_DEST and SET_SRC of I2 and I1.  */
1493   rtx i2dest, i2src, i1dest = 0, i1src = 0;
1494   /* PATTERN (I2), or a copy of it in certain cases.  */
1495   rtx i2pat;
1496   /* Indicates if I2DEST or I1DEST is in I2SRC or I1_SRC.  */
1497   int i2dest_in_i2src = 0, i1dest_in_i1src = 0, i2dest_in_i1src = 0;
1498   int i1_feeds_i3 = 0;
1499   /* Notes that must be added to REG_NOTES in I3 and I2.  */
1500   rtx new_i3_notes, new_i2_notes;
1501   /* Notes that we substituted I3 into I2 instead of the normal case.  */
1502   int i3_subst_into_i2 = 0;
1503   /* Notes that I1, I2 or I3 is a MULT operation.  */
1504   int have_mult = 0;
1505
1506   int maxreg;
1507   rtx temp;
1508   register rtx link;
1509   int i;
1510
1511   /* Exit early if one of the insns involved can't be used for
1512      combinations.  */
1513   if (cant_combine_insn_p (i3)
1514       || cant_combine_insn_p (i2)
1515       || (i1 && cant_combine_insn_p (i1))
1516       /* We also can't do anything if I3 has a
1517          REG_LIBCALL note since we don't want to disrupt the contiguity of a
1518          libcall.  */
1519 #if 0
1520       /* ??? This gives worse code, and appears to be unnecessary, since no
1521          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  */
1522       || find_reg_note (i3, REG_LIBCALL, NULL_RTX)
1523 #endif
1524       )
1525     return 0;
1526
1527   combine_attempts++;
1528   undobuf.other_insn = 0;
1529
1530   /* Reset the hard register usage information.  */
1531   CLEAR_HARD_REG_SET (newpat_used_regs);
1532
1533   /* If I1 and I2 both feed I3, they can be in any order.  To simplify the
1534      code below, set I1 to be the earlier of the two insns.  */
1535   if (i1 && INSN_CUID (i1) > INSN_CUID (i2))
1536     temp = i1, i1 = i2, i2 = temp;
1537
1538   added_links_insn = 0;
1539
1540   /* First check for one important special-case that the code below will
1541      not handle.  Namely, the case where I1 is zero, I2 is a PARALLEL
1542      and I3 is a SET whose SET_SRC is a SET_DEST in I2.  In that case,
1543      we may be able to replace that destination with the destination of I3.
1544      This occurs in the common code where we compute both a quotient and
1545      remainder into a structure, in which case we want to do the computation
1546      directly into the structure to avoid register-register copies.
1547
1548      Note that this case handles both multiple sets in I2 and also
1549      cases where I2 has a number of CLOBBER or PARALLELs.
1550
1551      We make very conservative checks below and only try to handle the
1552      most common cases of this.  For example, we only handle the case
1553      where I2 and I3 are adjacent to avoid making difficult register
1554      usage tests.  */
1555
1556   if (i1 == 0 && GET_CODE (i3) == INSN && GET_CODE (PATTERN (i3)) == SET
1557       && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1558       && REGNO (SET_SRC (PATTERN (i3))) >= FIRST_PSEUDO_REGISTER
1559       && find_reg_note (i3, REG_DEAD, SET_SRC (PATTERN (i3)))
1560       && GET_CODE (PATTERN (i2)) == PARALLEL
1561       && ! side_effects_p (SET_DEST (PATTERN (i3)))
1562       /* If the dest of I3 is a ZERO_EXTRACT or STRICT_LOW_PART, the code
1563          below would need to check what is inside (and reg_overlap_mentioned_p
1564          doesn't support those codes anyway).  Don't allow those destinations;
1565          the resulting insn isn't likely to be recognized anyway.  */
1566       && GET_CODE (SET_DEST (PATTERN (i3))) != ZERO_EXTRACT
1567       && GET_CODE (SET_DEST (PATTERN (i3))) != STRICT_LOW_PART
1568       && ! reg_overlap_mentioned_p (SET_SRC (PATTERN (i3)),
1569                                     SET_DEST (PATTERN (i3)))
1570       && next_real_insn (i2) == i3)
1571     {
1572       rtx p2 = PATTERN (i2);
1573
1574       /* Make sure that the destination of I3,
1575          which we are going to substitute into one output of I2,
1576          is not used within another output of I2.  We must avoid making this:
1577          (parallel [(set (mem (reg 69)) ...)
1578                     (set (reg 69) ...)])
1579          which is not well-defined as to order of actions.
1580          (Besides, reload can't handle output reloads for this.)
1581
1582          The problem can also happen if the dest of I3 is a memory ref,
1583          if another dest in I2 is an indirect memory ref.  */
1584       for (i = 0; i < XVECLEN (p2, 0); i++)
1585         if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1586              || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1587             && reg_overlap_mentioned_p (SET_DEST (PATTERN (i3)),
1588                                         SET_DEST (XVECEXP (p2, 0, i))))
1589           break;
1590
1591       if (i == XVECLEN (p2, 0))
1592         for (i = 0; i < XVECLEN (p2, 0); i++)
1593           if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1594                || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1595               && SET_DEST (XVECEXP (p2, 0, i)) == SET_SRC (PATTERN (i3)))
1596             {
1597               combine_merges++;
1598
1599               subst_insn = i3;
1600               subst_low_cuid = INSN_CUID (i2);
1601
1602               added_sets_2 = added_sets_1 = 0;
1603               i2dest = SET_SRC (PATTERN (i3));
1604
1605               /* Replace the dest in I2 with our dest and make the resulting
1606                  insn the new pattern for I3.  Then skip to where we
1607                  validate the pattern.  Everything was set up above.  */
1608               SUBST (SET_DEST (XVECEXP (p2, 0, i)),
1609                      SET_DEST (PATTERN (i3)));
1610
1611               newpat = p2;
1612               i3_subst_into_i2 = 1;
1613               goto validate_replacement;
1614             }
1615     }
1616
1617   /* If I2 is setting a double-word pseudo to a constant and I3 is setting
1618      one of those words to another constant, merge them by making a new
1619      constant.  */
1620   if (i1 == 0
1621       && (temp = single_set (i2)) != 0
1622       && (GET_CODE (SET_SRC (temp)) == CONST_INT
1623           || GET_CODE (SET_SRC (temp)) == CONST_DOUBLE)
1624       && GET_CODE (SET_DEST (temp)) == REG
1625       && GET_MODE_CLASS (GET_MODE (SET_DEST (temp))) == MODE_INT
1626       && GET_MODE_SIZE (GET_MODE (SET_DEST (temp))) == 2 * UNITS_PER_WORD
1627       && GET_CODE (PATTERN (i3)) == SET
1628       && GET_CODE (SET_DEST (PATTERN (i3))) == SUBREG
1629       && SUBREG_REG (SET_DEST (PATTERN (i3))) == SET_DEST (temp)
1630       && GET_MODE_CLASS (GET_MODE (SET_DEST (PATTERN (i3)))) == MODE_INT
1631       && GET_MODE_SIZE (GET_MODE (SET_DEST (PATTERN (i3)))) == UNITS_PER_WORD
1632       && GET_CODE (SET_SRC (PATTERN (i3))) == CONST_INT)
1633     {
1634       HOST_WIDE_INT lo, hi;
1635
1636       if (GET_CODE (SET_SRC (temp)) == CONST_INT)
1637         lo = INTVAL (SET_SRC (temp)), hi = lo < 0 ? -1 : 0;
1638       else
1639         {
1640           lo = CONST_DOUBLE_LOW (SET_SRC (temp));
1641           hi = CONST_DOUBLE_HIGH (SET_SRC (temp));
1642         }
1643
1644       if (subreg_lowpart_p (SET_DEST (PATTERN (i3))))
1645         {
1646           /* We don't handle the case of the target word being wider
1647              than a host wide int.  */
1648           if (HOST_BITS_PER_WIDE_INT < BITS_PER_WORD)
1649             abort ();
1650
1651           lo &= ~(UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD (1) - 1);
1652           lo |= INTVAL (SET_SRC (PATTERN (i3)));
1653         }
1654       else if (HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1655         hi = INTVAL (SET_SRC (PATTERN (i3)));
1656       else if (HOST_BITS_PER_WIDE_INT >= 2 * BITS_PER_WORD)
1657         {
1658           int sign = -(int) ((unsigned HOST_WIDE_INT) lo
1659                              >> (HOST_BITS_PER_WIDE_INT - 1));
1660
1661           lo &= ~ (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD
1662                    (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD (1) - 1));
1663           lo |= (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD
1664                  (INTVAL (SET_SRC (PATTERN (i3)))));
1665           if (hi == sign)
1666             hi = lo < 0 ? -1 : 0;
1667         }
1668       else
1669         /* We don't handle the case of the higher word not fitting
1670            entirely in either hi or lo.  */
1671         abort ();
1672
1673       combine_merges++;
1674       subst_insn = i3;
1675       subst_low_cuid = INSN_CUID (i2);
1676       added_sets_2 = added_sets_1 = 0;
1677       i2dest = SET_DEST (temp);
1678
1679       SUBST (SET_SRC (temp),
1680              immed_double_const (lo, hi, GET_MODE (SET_DEST (temp))));
1681
1682       newpat = PATTERN (i2);
1683       goto validate_replacement;
1684     }
1685
1686 #ifndef HAVE_cc0
1687   /* If we have no I1 and I2 looks like:
1688         (parallel [(set (reg:CC X) (compare:CC OP (const_int 0)))
1689                    (set Y OP)])
1690      make up a dummy I1 that is
1691         (set Y OP)
1692      and change I2 to be
1693         (set (reg:CC X) (compare:CC Y (const_int 0)))
1694
1695      (We can ignore any trailing CLOBBERs.)
1696
1697      This undoes a previous combination and allows us to match a branch-and-
1698      decrement insn.  */
1699
1700   if (i1 == 0 && GET_CODE (PATTERN (i2)) == PARALLEL
1701       && XVECLEN (PATTERN (i2), 0) >= 2
1702       && GET_CODE (XVECEXP (PATTERN (i2), 0, 0)) == SET
1703       && (GET_MODE_CLASS (GET_MODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 0))))
1704           == MODE_CC)
1705       && GET_CODE (SET_SRC (XVECEXP (PATTERN (i2), 0, 0))) == COMPARE
1706       && XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 1) == const0_rtx
1707       && GET_CODE (XVECEXP (PATTERN (i2), 0, 1)) == SET
1708       && GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 1))) == REG
1709       && rtx_equal_p (XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 0),
1710                       SET_SRC (XVECEXP (PATTERN (i2), 0, 1))))
1711     {
1712       for (i = XVECLEN (PATTERN (i2), 0) - 1; i >= 2; i--)
1713         if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != CLOBBER)
1714           break;
1715
1716       if (i == 1)
1717         {
1718           /* We make I1 with the same INSN_UID as I2.  This gives it
1719              the same INSN_CUID for value tracking.  Our fake I1 will
1720              never appear in the insn stream so giving it the same INSN_UID
1721              as I2 will not cause a problem.  */
1722
1723           subst_prev_insn = i1
1724             = gen_rtx_INSN (VOIDmode, INSN_UID (i2), NULL_RTX, i2,
1725                             XVECEXP (PATTERN (i2), 0, 1), -1, NULL_RTX,
1726                             NULL_RTX);
1727
1728           SUBST (PATTERN (i2), XVECEXP (PATTERN (i2), 0, 0));
1729           SUBST (XEXP (SET_SRC (PATTERN (i2)), 0),
1730                  SET_DEST (PATTERN (i1)));
1731         }
1732     }
1733 #endif
1734
1735   /* Verify that I2 and I1 are valid for combining.  */
1736   if (! can_combine_p (i2, i3, i1, NULL_RTX, &i2dest, &i2src)
1737       || (i1 && ! can_combine_p (i1, i3, NULL_RTX, i2, &i1dest, &i1src)))
1738     {
1739       undo_all ();
1740       return 0;
1741     }
1742
1743   /* Record whether I2DEST is used in I2SRC and similarly for the other
1744      cases.  Knowing this will help in register status updating below.  */
1745   i2dest_in_i2src = reg_overlap_mentioned_p (i2dest, i2src);
1746   i1dest_in_i1src = i1 && reg_overlap_mentioned_p (i1dest, i1src);
1747   i2dest_in_i1src = i1 && reg_overlap_mentioned_p (i2dest, i1src);
1748
1749   /* See if I1 directly feeds into I3.  It does if I1DEST is not used
1750      in I2SRC.  */
1751   i1_feeds_i3 = i1 && ! reg_overlap_mentioned_p (i1dest, i2src);
1752
1753   /* Ensure that I3's pattern can be the destination of combines.  */
1754   if (! combinable_i3pat (i3, &PATTERN (i3), i2dest, i1dest,
1755                           i1 && i2dest_in_i1src && i1_feeds_i3,
1756                           &i3dest_killed))
1757     {
1758       undo_all ();
1759       return 0;
1760     }
1761
1762   /* See if any of the insns is a MULT operation.  Unless one is, we will
1763      reject a combination that is, since it must be slower.  Be conservative
1764      here.  */
1765   if (GET_CODE (i2src) == MULT
1766       || (i1 != 0 && GET_CODE (i1src) == MULT)
1767       || (GET_CODE (PATTERN (i3)) == SET
1768           && GET_CODE (SET_SRC (PATTERN (i3))) == MULT))
1769     have_mult = 1;
1770
1771   /* If I3 has an inc, then give up if I1 or I2 uses the reg that is inc'd.
1772      We used to do this EXCEPT in one case: I3 has a post-inc in an
1773      output operand.  However, that exception can give rise to insns like
1774         mov r3,(r3)+
1775      which is a famous insn on the PDP-11 where the value of r3 used as the
1776      source was model-dependent.  Avoid this sort of thing.  */
1777
1778 #if 0
1779   if (!(GET_CODE (PATTERN (i3)) == SET
1780         && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1781         && GET_CODE (SET_DEST (PATTERN (i3))) == MEM
1782         && (GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_INC
1783             || GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_DEC)))
1784     /* It's not the exception.  */
1785 #endif
1786 #ifdef AUTO_INC_DEC
1787     for (link = REG_NOTES (i3); link; link = XEXP (link, 1))
1788       if (REG_NOTE_KIND (link) == REG_INC
1789           && (reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i2))
1790               || (i1 != 0
1791                   && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i1)))))
1792         {
1793           undo_all ();
1794           return 0;
1795         }
1796 #endif
1797
1798   /* See if the SETs in I1 or I2 need to be kept around in the merged
1799      instruction: whenever the value set there is still needed past I3.
1800      For the SETs in I2, this is easy: we see if I2DEST dies or is set in I3.
1801
1802      For the SET in I1, we have two cases:  If I1 and I2 independently
1803      feed into I3, the set in I1 needs to be kept around if I1DEST dies
1804      or is set in I3.  Otherwise (if I1 feeds I2 which feeds I3), the set
1805      in I1 needs to be kept around unless I1DEST dies or is set in either
1806      I2 or I3.  We can distinguish these cases by seeing if I2SRC mentions
1807      I1DEST.  If so, we know I1 feeds into I2.  */
1808
1809   added_sets_2 = ! dead_or_set_p (i3, i2dest);
1810
1811   added_sets_1
1812     = i1 && ! (i1_feeds_i3 ? dead_or_set_p (i3, i1dest)
1813                : (dead_or_set_p (i3, i1dest) || dead_or_set_p (i2, i1dest)));
1814
1815   /* If the set in I2 needs to be kept around, we must make a copy of
1816      PATTERN (I2), so that when we substitute I1SRC for I1DEST in
1817      PATTERN (I2), we are only substituting for the original I1DEST, not into
1818      an already-substituted copy.  This also prevents making self-referential
1819      rtx.  If I2 is a PARALLEL, we just need the piece that assigns I2SRC to
1820      I2DEST.  */
1821
1822   i2pat = (GET_CODE (PATTERN (i2)) == PARALLEL
1823            ? gen_rtx_SET (VOIDmode, i2dest, i2src)
1824            : PATTERN (i2));
1825
1826   if (added_sets_2)
1827     i2pat = copy_rtx (i2pat);
1828
1829   combine_merges++;
1830
1831   /* Substitute in the latest insn for the regs set by the earlier ones.  */
1832
1833   maxreg = max_reg_num ();
1834
1835   subst_insn = i3;
1836
1837   /* It is possible that the source of I2 or I1 may be performing an
1838      unneeded operation, such as a ZERO_EXTEND of something that is known
1839      to have the high part zero.  Handle that case by letting subst look at
1840      the innermost one of them.
1841
1842      Another way to do this would be to have a function that tries to
1843      simplify a single insn instead of merging two or more insns.  We don't
1844      do this because of the potential of infinite loops and because
1845      of the potential extra memory required.  However, doing it the way
1846      we are is a bit of a kludge and doesn't catch all cases.
1847
1848      But only do this if -fexpensive-optimizations since it slows things down
1849      and doesn't usually win.  */
1850
1851   if (flag_expensive_optimizations)
1852     {
1853       /* Pass pc_rtx so no substitutions are done, just simplifications.
1854          The cases that we are interested in here do not involve the few
1855          cases were is_replaced is checked.  */
1856       if (i1)
1857         {
1858           subst_low_cuid = INSN_CUID (i1);
1859           i1src = subst (i1src, pc_rtx, pc_rtx, 0, 0);
1860         }
1861       else
1862         {
1863           subst_low_cuid = INSN_CUID (i2);
1864           i2src = subst (i2src, pc_rtx, pc_rtx, 0, 0);
1865         }
1866     }
1867
1868 #ifndef HAVE_cc0
1869   /* Many machines that don't use CC0 have insns that can both perform an
1870      arithmetic operation and set the condition code.  These operations will
1871      be represented as a PARALLEL with the first element of the vector
1872      being a COMPARE of an arithmetic operation with the constant zero.
1873      The second element of the vector will set some pseudo to the result
1874      of the same arithmetic operation.  If we simplify the COMPARE, we won't
1875      match such a pattern and so will generate an extra insn.   Here we test
1876      for this case, where both the comparison and the operation result are
1877      needed, and make the PARALLEL by just replacing I2DEST in I3SRC with
1878      I2SRC.  Later we will make the PARALLEL that contains I2.  */
1879
1880   if (i1 == 0 && added_sets_2 && GET_CODE (PATTERN (i3)) == SET
1881       && GET_CODE (SET_SRC (PATTERN (i3))) == COMPARE
1882       && XEXP (SET_SRC (PATTERN (i3)), 1) == const0_rtx
1883       && rtx_equal_p (XEXP (SET_SRC (PATTERN (i3)), 0), i2dest))
1884     {
1885 #ifdef EXTRA_CC_MODES
1886       rtx *cc_use;
1887       enum machine_mode compare_mode;
1888 #endif
1889
1890       newpat = PATTERN (i3);
1891       SUBST (XEXP (SET_SRC (newpat), 0), i2src);
1892
1893       i2_is_used = 1;
1894
1895 #ifdef EXTRA_CC_MODES
1896       /* See if a COMPARE with the operand we substituted in should be done
1897          with the mode that is currently being used.  If not, do the same
1898          processing we do in `subst' for a SET; namely, if the destination
1899          is used only once, try to replace it with a register of the proper
1900          mode and also replace the COMPARE.  */
1901       if (undobuf.other_insn == 0
1902           && (cc_use = find_single_use (SET_DEST (newpat), i3,
1903                                         &undobuf.other_insn))
1904           && ((compare_mode = SELECT_CC_MODE (GET_CODE (*cc_use),
1905                                               i2src, const0_rtx))
1906               != GET_MODE (SET_DEST (newpat))))
1907         {
1908           unsigned int regno = REGNO (SET_DEST (newpat));
1909           rtx new_dest = gen_rtx_REG (compare_mode, regno);
1910
1911           if (regno < FIRST_PSEUDO_REGISTER
1912               || (REG_N_SETS (regno) == 1 && ! added_sets_2
1913                   && ! REG_USERVAR_P (SET_DEST (newpat))))
1914             {
1915               if (regno >= FIRST_PSEUDO_REGISTER)
1916                 SUBST (regno_reg_rtx[regno], new_dest);
1917
1918               SUBST (SET_DEST (newpat), new_dest);
1919               SUBST (XEXP (*cc_use, 0), new_dest);
1920               SUBST (SET_SRC (newpat),
1921                      gen_rtx_COMPARE (compare_mode, i2src, const0_rtx));
1922             }
1923           else
1924             undobuf.other_insn = 0;
1925         }
1926 #endif
1927     }
1928   else
1929 #endif
1930     {
1931       n_occurrences = 0;                /* `subst' counts here */
1932
1933       /* If I1 feeds into I2 (not into I3) and I1DEST is in I1SRC, we
1934          need to make a unique copy of I2SRC each time we substitute it
1935          to avoid self-referential rtl.  */
1936
1937       subst_low_cuid = INSN_CUID (i2);
1938       newpat = subst (PATTERN (i3), i2dest, i2src, 0,
1939                       ! i1_feeds_i3 && i1dest_in_i1src);
1940
1941       /* Record whether i2's body now appears within i3's body.  */
1942       i2_is_used = n_occurrences;
1943     }
1944
1945   /* If we already got a failure, don't try to do more.  Otherwise,
1946      try to substitute in I1 if we have it.  */
1947
1948   if (i1 && GET_CODE (newpat) != CLOBBER)
1949     {
1950       /* Before we can do this substitution, we must redo the test done
1951          above (see detailed comments there) that ensures  that I1DEST
1952          isn't mentioned in any SETs in NEWPAT that are field assignments.  */
1953
1954       if (! combinable_i3pat (NULL_RTX, &newpat, i1dest, NULL_RTX,
1955                               0, (rtx*)0))
1956         {
1957           undo_all ();
1958           return 0;
1959         }
1960
1961       n_occurrences = 0;
1962       subst_low_cuid = INSN_CUID (i1);
1963       newpat = subst (newpat, i1dest, i1src, 0, 0);
1964     }
1965
1966   /* Fail if an autoincrement side-effect has been duplicated.  Be careful
1967      to count all the ways that I2SRC and I1SRC can be used.  */
1968   if ((FIND_REG_INC_NOTE (i2, NULL_RTX) != 0
1969        && i2_is_used + added_sets_2 > 1)
1970       || (i1 != 0 && FIND_REG_INC_NOTE (i1, NULL_RTX) != 0
1971           && (n_occurrences + added_sets_1 + (added_sets_2 && ! i1_feeds_i3)
1972               > 1))
1973       /* Fail if we tried to make a new register (we used to abort, but there's
1974          really no reason to).  */
1975       || max_reg_num () != maxreg
1976       /* Fail if we couldn't do something and have a CLOBBER.  */
1977       || GET_CODE (newpat) == CLOBBER
1978       /* Fail if this new pattern is a MULT and we didn't have one before
1979          at the outer level.  */
1980       || (GET_CODE (newpat) == SET && GET_CODE (SET_SRC (newpat)) == MULT
1981           && ! have_mult))
1982     {
1983       undo_all ();
1984       return 0;
1985     }
1986
1987   /* If the actions of the earlier insns must be kept
1988      in addition to substituting them into the latest one,
1989      we must make a new PARALLEL for the latest insn
1990      to hold additional the SETs.  */
1991
1992   if (added_sets_1 || added_sets_2)
1993     {
1994       combine_extras++;
1995
1996       if (GET_CODE (newpat) == PARALLEL)
1997         {
1998           rtvec old = XVEC (newpat, 0);
1999           total_sets = XVECLEN (newpat, 0) + added_sets_1 + added_sets_2;
2000           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
2001           memcpy (XVEC (newpat, 0)->elem, &old->elem[0],
2002                   sizeof (old->elem[0]) * old->num_elem);
2003         }
2004       else
2005         {
2006           rtx old = newpat;
2007           total_sets = 1 + added_sets_1 + added_sets_2;
2008           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
2009           XVECEXP (newpat, 0, 0) = old;
2010         }
2011
2012      if (added_sets_1)
2013        XVECEXP (newpat, 0, --total_sets)
2014          = (GET_CODE (PATTERN (i1)) == PARALLEL
2015             ? gen_rtx_SET (VOIDmode, i1dest, i1src) : PATTERN (i1));
2016
2017      if (added_sets_2)
2018        {
2019          /* If there is no I1, use I2's body as is.  We used to also not do
2020             the subst call below if I2 was substituted into I3,
2021             but that could lose a simplification.  */
2022          if (i1 == 0)
2023            XVECEXP (newpat, 0, --total_sets) = i2pat;
2024          else
2025            /* See comment where i2pat is assigned.  */
2026            XVECEXP (newpat, 0, --total_sets)
2027              = subst (i2pat, i1dest, i1src, 0, 0);
2028        }
2029     }
2030
2031   /* We come here when we are replacing a destination in I2 with the
2032      destination of I3.  */
2033  validate_replacement:
2034
2035   /* Note which hard regs this insn has as inputs.  */
2036   mark_used_regs_combine (newpat);
2037
2038   /* Is the result of combination a valid instruction?  */
2039   insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2040
2041   /* If the result isn't valid, see if it is a PARALLEL of two SETs where
2042      the second SET's destination is a register that is unused.  In that case,
2043      we just need the first SET.   This can occur when simplifying a divmod
2044      insn.  We *must* test for this case here because the code below that
2045      splits two independent SETs doesn't handle this case correctly when it
2046      updates the register status.  Also check the case where the first
2047      SET's destination is unused.  That would not cause incorrect code, but
2048      does cause an unneeded insn to remain.  */
2049
2050   if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2051       && XVECLEN (newpat, 0) == 2
2052       && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2053       && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2054       && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == REG
2055       && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 1)))
2056       && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 1)))
2057       && asm_noperands (newpat) < 0)
2058     {
2059       newpat = XVECEXP (newpat, 0, 0);
2060       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2061     }
2062
2063   else if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2064            && XVECLEN (newpat, 0) == 2
2065            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2066            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2067            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) == REG
2068            && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 0)))
2069            && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 0)))
2070            && asm_noperands (newpat) < 0)
2071     {
2072       newpat = XVECEXP (newpat, 0, 1);
2073       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2074     }
2075
2076   /* If we were combining three insns and the result is a simple SET
2077      with no ASM_OPERANDS that wasn't recognized, try to split it into two
2078      insns.  There are two ways to do this.  It can be split using a
2079      machine-specific method (like when you have an addition of a large
2080      constant) or by combine in the function find_split_point.  */
2081
2082   if (i1 && insn_code_number < 0 && GET_CODE (newpat) == SET
2083       && asm_noperands (newpat) < 0)
2084     {
2085       rtx m_split, *split;
2086       rtx ni2dest = i2dest;
2087
2088       /* See if the MD file can split NEWPAT.  If it can't, see if letting it
2089          use I2DEST as a scratch register will help.  In the latter case,
2090          convert I2DEST to the mode of the source of NEWPAT if we can.  */
2091
2092       m_split = split_insns (newpat, i3);
2093
2094       /* We can only use I2DEST as a scratch reg if it doesn't overlap any
2095          inputs of NEWPAT.  */
2096
2097       /* ??? If I2DEST is not safe, and I1DEST exists, then it would be
2098          possible to try that as a scratch reg.  This would require adding
2099          more code to make it work though.  */
2100
2101       if (m_split == 0 && ! reg_overlap_mentioned_p (ni2dest, newpat))
2102         {
2103           /* If I2DEST is a hard register or the only use of a pseudo,
2104              we can change its mode.  */
2105           if (GET_MODE (SET_DEST (newpat)) != GET_MODE (i2dest)
2106               && GET_MODE (SET_DEST (newpat)) != VOIDmode
2107               && GET_CODE (i2dest) == REG
2108               && (REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2109                   || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2110                       && ! REG_USERVAR_P (i2dest))))
2111             ni2dest = gen_rtx_REG (GET_MODE (SET_DEST (newpat)),
2112                                    REGNO (i2dest));
2113
2114           m_split = split_insns (gen_rtx_PARALLEL
2115                                  (VOIDmode,
2116                                   gen_rtvec (2, newpat,
2117                                              gen_rtx_CLOBBER (VOIDmode,
2118                                                               ni2dest))),
2119                                  i3);
2120           /* If the split with the mode-changed register didn't work, try
2121              the original register.  */
2122           if (! m_split && ni2dest != i2dest)
2123             {
2124               ni2dest = i2dest;
2125               m_split = split_insns (gen_rtx_PARALLEL
2126                                      (VOIDmode,
2127                                       gen_rtvec (2, newpat,
2128                                                  gen_rtx_CLOBBER (VOIDmode,
2129                                                                   i2dest))),
2130                                      i3);
2131             }
2132         }
2133
2134       if (m_split && GET_CODE (m_split) != SEQUENCE)
2135         {
2136           insn_code_number = recog_for_combine (&m_split, i3, &new_i3_notes);
2137           if (insn_code_number >= 0)
2138             newpat = m_split;
2139         } 
2140       else if (m_split && GET_CODE (m_split) == SEQUENCE
2141                && XVECLEN (m_split, 0) == 2
2142                && (next_real_insn (i2) == i3
2143                    || ! use_crosses_set_p (PATTERN (XVECEXP (m_split, 0, 0)),
2144                                            INSN_CUID (i2))))
2145         {
2146           rtx i2set, i3set;
2147           rtx newi3pat = PATTERN (XVECEXP (m_split, 0, 1));
2148           newi2pat = PATTERN (XVECEXP (m_split, 0, 0));
2149
2150           i3set = single_set (XVECEXP (m_split, 0, 1));
2151           i2set = single_set (XVECEXP (m_split, 0, 0));
2152
2153           /* In case we changed the mode of I2DEST, replace it in the
2154              pseudo-register table here.  We can't do it above in case this
2155              code doesn't get executed and we do a split the other way.  */
2156
2157           if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2158             SUBST (regno_reg_rtx[REGNO (i2dest)], ni2dest);
2159
2160           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2161
2162           /* If I2 or I3 has multiple SETs, we won't know how to track
2163              register status, so don't use these insns.  If I2's destination
2164              is used between I2 and I3, we also can't use these insns.  */
2165
2166           if (i2_code_number >= 0 && i2set && i3set
2167               && (next_real_insn (i2) == i3
2168                   || ! reg_used_between_p (SET_DEST (i2set), i2, i3)))
2169             insn_code_number = recog_for_combine (&newi3pat, i3,
2170                                                   &new_i3_notes);
2171           if (insn_code_number >= 0)
2172             newpat = newi3pat;
2173
2174           /* It is possible that both insns now set the destination of I3.
2175              If so, we must show an extra use of it.  */
2176
2177           if (insn_code_number >= 0)
2178             {
2179               rtx new_i3_dest = SET_DEST (i3set);
2180               rtx new_i2_dest = SET_DEST (i2set);
2181
2182               while (GET_CODE (new_i3_dest) == ZERO_EXTRACT
2183                      || GET_CODE (new_i3_dest) == STRICT_LOW_PART
2184                      || GET_CODE (new_i3_dest) == SUBREG)
2185                 new_i3_dest = XEXP (new_i3_dest, 0);
2186
2187               while (GET_CODE (new_i2_dest) == ZERO_EXTRACT
2188                      || GET_CODE (new_i2_dest) == STRICT_LOW_PART
2189                      || GET_CODE (new_i2_dest) == SUBREG)
2190                 new_i2_dest = XEXP (new_i2_dest, 0);
2191
2192               if (GET_CODE (new_i3_dest) == REG
2193                   && GET_CODE (new_i2_dest) == REG
2194                   && REGNO (new_i3_dest) == REGNO (new_i2_dest))
2195                 REG_N_SETS (REGNO (new_i2_dest))++;
2196             }
2197         }
2198
2199       /* If we can split it and use I2DEST, go ahead and see if that
2200          helps things be recognized.  Verify that none of the registers
2201          are set between I2 and I3.  */
2202       if (insn_code_number < 0 && (split = find_split_point (&newpat, i3)) != 0
2203 #ifdef HAVE_cc0
2204           && GET_CODE (i2dest) == REG
2205 #endif
2206           /* We need I2DEST in the proper mode.  If it is a hard register
2207              or the only use of a pseudo, we can change its mode.  */
2208           && (GET_MODE (*split) == GET_MODE (i2dest)
2209               || GET_MODE (*split) == VOIDmode
2210               || REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2211               || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2212                   && ! REG_USERVAR_P (i2dest)))
2213           && (next_real_insn (i2) == i3
2214               || ! use_crosses_set_p (*split, INSN_CUID (i2)))
2215           /* We can't overwrite I2DEST if its value is still used by
2216              NEWPAT.  */
2217           && ! reg_referenced_p (i2dest, newpat))
2218         {
2219           rtx newdest = i2dest;
2220           enum rtx_code split_code = GET_CODE (*split);
2221           enum machine_mode split_mode = GET_MODE (*split);
2222
2223           /* Get NEWDEST as a register in the proper mode.  We have already
2224              validated that we can do this.  */
2225           if (GET_MODE (i2dest) != split_mode && split_mode != VOIDmode)
2226             {
2227               newdest = gen_rtx_REG (split_mode, REGNO (i2dest));
2228
2229               if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2230                 SUBST (regno_reg_rtx[REGNO (i2dest)], newdest);
2231             }
2232
2233           /* If *SPLIT is a (mult FOO (const_int pow2)), convert it to
2234              an ASHIFT.  This can occur if it was inside a PLUS and hence
2235              appeared to be a memory address.  This is a kludge.  */
2236           if (split_code == MULT
2237               && GET_CODE (XEXP (*split, 1)) == CONST_INT
2238               && (i = exact_log2 (INTVAL (XEXP (*split, 1)))) >= 0)
2239             {
2240               SUBST (*split, gen_rtx_ASHIFT (split_mode,
2241                                              XEXP (*split, 0), GEN_INT (i)));
2242               /* Update split_code because we may not have a multiply
2243                  anymore.  */
2244               split_code = GET_CODE (*split);
2245             }
2246
2247 #ifdef INSN_SCHEDULING
2248           /* If *SPLIT is a paradoxical SUBREG, when we split it, it should
2249              be written as a ZERO_EXTEND.  */
2250           if (split_code == SUBREG && GET_CODE (SUBREG_REG (*split)) == MEM)
2251             SUBST (*split, gen_rtx_ZERO_EXTEND  (split_mode,
2252                                                  SUBREG_REG (*split)));
2253 #endif
2254
2255           newi2pat = gen_rtx_SET (VOIDmode, newdest, *split);
2256           SUBST (*split, newdest);
2257           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2258
2259           /* If the split point was a MULT and we didn't have one before,
2260              don't use one now.  */
2261           if (i2_code_number >= 0 && ! (split_code == MULT && ! have_mult))
2262             insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2263         }
2264     }
2265
2266   /* Check for a case where we loaded from memory in a narrow mode and
2267      then sign extended it, but we need both registers.  In that case,
2268      we have a PARALLEL with both loads from the same memory location.
2269      We can split this into a load from memory followed by a register-register
2270      copy.  This saves at least one insn, more if register allocation can
2271      eliminate the copy.
2272
2273      We cannot do this if the destination of the second assignment is
2274      a register that we have already assumed is zero-extended.  Similarly
2275      for a SUBREG of such a register.  */
2276
2277   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2278            && GET_CODE (newpat) == PARALLEL
2279            && XVECLEN (newpat, 0) == 2
2280            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2281            && GET_CODE (SET_SRC (XVECEXP (newpat, 0, 0))) == SIGN_EXTEND
2282            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2283            && rtx_equal_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2284                            XEXP (SET_SRC (XVECEXP (newpat, 0, 0)), 0))
2285            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2286                                    INSN_CUID (i2))
2287            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2288            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2289            && ! (temp = SET_DEST (XVECEXP (newpat, 0, 1)),
2290                  (GET_CODE (temp) == REG
2291                   && reg_nonzero_bits[REGNO (temp)] != 0
2292                   && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2293                   && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2294                   && (reg_nonzero_bits[REGNO (temp)]
2295                       != GET_MODE_MASK (word_mode))))
2296            && ! (GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == SUBREG
2297                  && (temp = SUBREG_REG (SET_DEST (XVECEXP (newpat, 0, 1))),
2298                      (GET_CODE (temp) == REG
2299                       && reg_nonzero_bits[REGNO (temp)] != 0
2300                       && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2301                       && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2302                       && (reg_nonzero_bits[REGNO (temp)]
2303                           != GET_MODE_MASK (word_mode)))))
2304            && ! reg_overlap_mentioned_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2305                                          SET_SRC (XVECEXP (newpat, 0, 1)))
2306            && ! find_reg_note (i3, REG_UNUSED,
2307                                SET_DEST (XVECEXP (newpat, 0, 0))))
2308     {
2309       rtx ni2dest;
2310
2311       newi2pat = XVECEXP (newpat, 0, 0);
2312       ni2dest = SET_DEST (XVECEXP (newpat, 0, 0));
2313       newpat = XVECEXP (newpat, 0, 1);
2314       SUBST (SET_SRC (newpat),
2315              gen_lowpart_for_combine (GET_MODE (SET_SRC (newpat)), ni2dest));
2316       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2317
2318       if (i2_code_number >= 0)
2319         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2320
2321       if (insn_code_number >= 0)
2322         {
2323           rtx insn;
2324           rtx link;
2325
2326           /* If we will be able to accept this, we have made a change to the
2327              destination of I3.  This can invalidate a LOG_LINKS pointing
2328              to I3.  No other part of combine.c makes such a transformation.
2329
2330              The new I3 will have a destination that was previously the
2331              destination of I1 or I2 and which was used in i2 or I3.  Call
2332              distribute_links to make a LOG_LINK from the next use of
2333              that destination.  */
2334
2335           PATTERN (i3) = newpat;
2336           distribute_links (gen_rtx_INSN_LIST (VOIDmode, i3, NULL_RTX));
2337
2338           /* I3 now uses what used to be its destination and which is
2339              now I2's destination.  That means we need a LOG_LINK from
2340              I3 to I2.  But we used to have one, so we still will.
2341
2342              However, some later insn might be using I2's dest and have
2343              a LOG_LINK pointing at I3.  We must remove this link.
2344              The simplest way to remove the link is to point it at I1,
2345              which we know will be a NOTE.  */
2346
2347           for (insn = NEXT_INSN (i3);
2348                insn && (this_basic_block == n_basic_blocks - 1
2349                         || insn != BLOCK_HEAD (this_basic_block + 1));
2350                insn = NEXT_INSN (insn))
2351             {
2352               if (INSN_P (insn) && reg_referenced_p (ni2dest, PATTERN (insn)))
2353                 {
2354                   for (link = LOG_LINKS (insn); link;
2355                        link = XEXP (link, 1))
2356                     if (XEXP (link, 0) == i3)
2357                       XEXP (link, 0) = i1;
2358
2359                   break;
2360                 }
2361             }
2362         }
2363     }
2364
2365   /* Similarly, check for a case where we have a PARALLEL of two independent
2366      SETs but we started with three insns.  In this case, we can do the sets
2367      as two separate insns.  This case occurs when some SET allows two
2368      other insns to combine, but the destination of that SET is still live.  */
2369
2370   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2371            && GET_CODE (newpat) == PARALLEL
2372            && XVECLEN (newpat, 0) == 2
2373            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2374            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != ZERO_EXTRACT
2375            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != STRICT_LOW_PART
2376            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2377            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2378            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2379            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2380                                    INSN_CUID (i2))
2381            /* Don't pass sets with (USE (MEM ...)) dests to the following.  */
2382            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != USE
2383            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != USE
2384            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2385                                   XVECEXP (newpat, 0, 0))
2386            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 0)),
2387                                   XVECEXP (newpat, 0, 1))
2388            && ! (contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 0)))
2389                  && contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 1)))))
2390     {
2391       /* Normally, it doesn't matter which of the two is done first,
2392          but it does if one references cc0.  In that case, it has to
2393          be first.  */
2394 #ifdef HAVE_cc0
2395       if (reg_referenced_p (cc0_rtx, XVECEXP (newpat, 0, 0)))
2396         {
2397           newi2pat = XVECEXP (newpat, 0, 0);
2398           newpat = XVECEXP (newpat, 0, 1);
2399         }
2400       else
2401 #endif
2402         {
2403           newi2pat = XVECEXP (newpat, 0, 1);
2404           newpat = XVECEXP (newpat, 0, 0);
2405         }
2406
2407       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2408
2409       if (i2_code_number >= 0)
2410         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2411     }
2412
2413   /* If it still isn't recognized, fail and change things back the way they
2414      were.  */
2415   if ((insn_code_number < 0
2416        /* Is the result a reasonable ASM_OPERANDS?  */
2417        && (! check_asm_operands (newpat) || added_sets_1 || added_sets_2)))
2418     {
2419       undo_all ();
2420       return 0;
2421     }
2422
2423   /* If we had to change another insn, make sure it is valid also.  */
2424   if (undobuf.other_insn)
2425     {
2426       rtx other_pat = PATTERN (undobuf.other_insn);
2427       rtx new_other_notes;
2428       rtx note, next;
2429
2430       CLEAR_HARD_REG_SET (newpat_used_regs);
2431
2432       other_code_number = recog_for_combine (&other_pat, undobuf.other_insn,
2433                                              &new_other_notes);
2434
2435       if (other_code_number < 0 && ! check_asm_operands (other_pat))
2436         {
2437           undo_all ();
2438           return 0;
2439         }
2440
2441       PATTERN (undobuf.other_insn) = other_pat;
2442
2443       /* If any of the notes in OTHER_INSN were REG_UNUSED, ensure that they
2444          are still valid.  Then add any non-duplicate notes added by
2445          recog_for_combine.  */
2446       for (note = REG_NOTES (undobuf.other_insn); note; note = next)
2447         {
2448           next = XEXP (note, 1);
2449
2450           if (REG_NOTE_KIND (note) == REG_UNUSED
2451               && ! reg_set_p (XEXP (note, 0), PATTERN (undobuf.other_insn)))
2452             {
2453               if (GET_CODE (XEXP (note, 0)) == REG)
2454                 REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
2455
2456               remove_note (undobuf.other_insn, note);
2457             }
2458         }
2459
2460       for (note = new_other_notes; note; note = XEXP (note, 1))
2461         if (GET_CODE (XEXP (note, 0)) == REG)
2462           REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
2463
2464       distribute_notes (new_other_notes, undobuf.other_insn,
2465                         undobuf.other_insn, NULL_RTX, NULL_RTX, NULL_RTX);
2466     }
2467 #ifdef HAVE_cc0
2468   /* If I2 is the setter CC0 and I3 is the user CC0 then check whether
2469      they are adjacent to each other or not. */
2470   {
2471     rtx p = prev_nonnote_insn (i3);
2472     if (p && p != i2 && GET_CODE (p) == INSN && newi2pat
2473         && sets_cc0_p (newi2pat))
2474       {
2475         undo_all ();
2476         return 0;
2477       }
2478   }
2479 #endif
2480
2481   /* We now know that we can do this combination.  Merge the insns and
2482      update the status of registers and LOG_LINKS.  */
2483
2484   {
2485     rtx i3notes, i2notes, i1notes = 0;
2486     rtx i3links, i2links, i1links = 0;
2487     rtx midnotes = 0;
2488     unsigned int regno;
2489     /* Compute which registers we expect to eliminate.  newi2pat may be setting
2490        either i3dest or i2dest, so we must check it.  Also, i1dest may be the
2491        same as i3dest, in which case newi2pat may be setting i1dest.  */
2492     rtx elim_i2 = ((newi2pat && reg_set_p (i2dest, newi2pat))
2493                    || i2dest_in_i2src || i2dest_in_i1src
2494                    ? 0 : i2dest);
2495     rtx elim_i1 = (i1 == 0 || i1dest_in_i1src
2496                    || (newi2pat && reg_set_p (i1dest, newi2pat))
2497                    ? 0 : i1dest);
2498
2499     /* Get the old REG_NOTES and LOG_LINKS from all our insns and
2500        clear them.  */
2501     i3notes = REG_NOTES (i3), i3links = LOG_LINKS (i3);
2502     i2notes = REG_NOTES (i2), i2links = LOG_LINKS (i2);
2503     if (i1)
2504       i1notes = REG_NOTES (i1), i1links = LOG_LINKS (i1);
2505
2506     /* Ensure that we do not have something that should not be shared but
2507        occurs multiple times in the new insns.  Check this by first
2508        resetting all the `used' flags and then copying anything is shared.  */
2509
2510     reset_used_flags (i3notes);
2511     reset_used_flags (i2notes);
2512     reset_used_flags (i1notes);
2513     reset_used_flags (newpat);
2514     reset_used_flags (newi2pat);
2515     if (undobuf.other_insn)
2516       reset_used_flags (PATTERN (undobuf.other_insn));
2517
2518     i3notes = copy_rtx_if_shared (i3notes);
2519     i2notes = copy_rtx_if_shared (i2notes);
2520     i1notes = copy_rtx_if_shared (i1notes);
2521     newpat = copy_rtx_if_shared (newpat);
2522     newi2pat = copy_rtx_if_shared (newi2pat);
2523     if (undobuf.other_insn)
2524       reset_used_flags (PATTERN (undobuf.other_insn));
2525
2526     INSN_CODE (i3) = insn_code_number;
2527     PATTERN (i3) = newpat;
2528     if (undobuf.other_insn)
2529       INSN_CODE (undobuf.other_insn) = other_code_number;
2530
2531     /* We had one special case above where I2 had more than one set and
2532        we replaced a destination of one of those sets with the destination
2533        of I3.  In that case, we have to update LOG_LINKS of insns later
2534        in this basic block.  Note that this (expensive) case is rare.
2535
2536        Also, in this case, we must pretend that all REG_NOTEs for I2
2537        actually came from I3, so that REG_UNUSED notes from I2 will be
2538        properly handled.  */
2539
2540     if (i3_subst_into_i2)
2541       {
2542         for (i = 0; i < XVECLEN (PATTERN (i2), 0); i++)
2543           if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != USE
2544               && GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, i))) == REG
2545               && SET_DEST (XVECEXP (PATTERN (i2), 0, i)) != i2dest
2546               && ! find_reg_note (i2, REG_UNUSED,
2547                                   SET_DEST (XVECEXP (PATTERN (i2), 0, i))))
2548             for (temp = NEXT_INSN (i2);
2549                  temp && (this_basic_block == n_basic_blocks - 1
2550                           || BLOCK_HEAD (this_basic_block) != temp);
2551                  temp = NEXT_INSN (temp))
2552               if (temp != i3 && INSN_P (temp))
2553                 for (link = LOG_LINKS (temp); link; link = XEXP (link, 1))
2554                   if (XEXP (link, 0) == i2)
2555                     XEXP (link, 0) = i3;
2556
2557         if (i3notes)
2558           {
2559             rtx link = i3notes;
2560             while (XEXP (link, 1))
2561               link = XEXP (link, 1);
2562             XEXP (link, 1) = i2notes;
2563           }
2564         else
2565           i3notes = i2notes;
2566         i2notes = 0;
2567       }
2568
2569     LOG_LINKS (i3) = 0;
2570     REG_NOTES (i3) = 0;
2571     LOG_LINKS (i2) = 0;
2572     REG_NOTES (i2) = 0;
2573
2574     if (newi2pat)
2575       {
2576         INSN_CODE (i2) = i2_code_number;
2577         PATTERN (i2) = newi2pat;
2578       }
2579     else
2580       {
2581         PUT_CODE (i2, NOTE);
2582         NOTE_LINE_NUMBER (i2) = NOTE_INSN_DELETED;
2583         NOTE_SOURCE_FILE (i2) = 0;
2584       }
2585
2586     if (i1)
2587       {
2588         LOG_LINKS (i1) = 0;
2589         REG_NOTES (i1) = 0;
2590         PUT_CODE (i1, NOTE);
2591         NOTE_LINE_NUMBER (i1) = NOTE_INSN_DELETED;
2592         NOTE_SOURCE_FILE (i1) = 0;
2593       }
2594
2595     /* Get death notes for everything that is now used in either I3 or
2596        I2 and used to die in a previous insn.  If we built two new
2597        patterns, move from I1 to I2 then I2 to I3 so that we get the
2598        proper movement on registers that I2 modifies.  */
2599
2600     if (newi2pat)
2601       {
2602         move_deaths (newi2pat, NULL_RTX, INSN_CUID (i1), i2, &midnotes);
2603         move_deaths (newpat, newi2pat, INSN_CUID (i1), i3, &midnotes);
2604       }
2605     else
2606       move_deaths (newpat, NULL_RTX, i1 ? INSN_CUID (i1) : INSN_CUID (i2),
2607                    i3, &midnotes);
2608
2609     /* Distribute all the LOG_LINKS and REG_NOTES from I1, I2, and I3.  */
2610     if (i3notes)
2611       distribute_notes (i3notes, i3, i3, newi2pat ? i2 : NULL_RTX,
2612                         elim_i2, elim_i1);
2613     if (i2notes)
2614       distribute_notes (i2notes, i2, i3, newi2pat ? i2 : NULL_RTX,
2615                         elim_i2, elim_i1);
2616     if (i1notes)
2617       distribute_notes (i1notes, i1, i3, newi2pat ? i2 : NULL_RTX,
2618                         elim_i2, elim_i1);
2619     if (midnotes)
2620       distribute_notes (midnotes, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2621                         elim_i2, elim_i1);
2622
2623     /* Distribute any notes added to I2 or I3 by recog_for_combine.  We
2624        know these are REG_UNUSED and want them to go to the desired insn,
2625        so we always pass it as i3.  We have not counted the notes in
2626        reg_n_deaths yet, so we need to do so now.  */
2627
2628     if (newi2pat && new_i2_notes)
2629       {
2630         for (temp = new_i2_notes; temp; temp = XEXP (temp, 1))
2631           if (GET_CODE (XEXP (temp, 0)) == REG)
2632             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2633
2634         distribute_notes (new_i2_notes, i2, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2635       }
2636
2637     if (new_i3_notes)
2638       {
2639         for (temp = new_i3_notes; temp; temp = XEXP (temp, 1))
2640           if (GET_CODE (XEXP (temp, 0)) == REG)
2641             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2642
2643         distribute_notes (new_i3_notes, i3, i3, NULL_RTX, NULL_RTX, NULL_RTX);
2644       }
2645
2646     /* If I3DEST was used in I3SRC, it really died in I3.  We may need to
2647        put a REG_DEAD note for it somewhere.  If NEWI2PAT exists and sets
2648        I3DEST, the death must be somewhere before I2, not I3.  If we passed I3
2649        in that case, it might delete I2.  Similarly for I2 and I1.
2650        Show an additional death due to the REG_DEAD note we make here.  If
2651        we discard it in distribute_notes, we will decrement it again.  */
2652
2653     if (i3dest_killed)
2654       {
2655         if (GET_CODE (i3dest_killed) == REG)
2656           REG_N_DEATHS (REGNO (i3dest_killed))++;
2657
2658         if (newi2pat && reg_set_p (i3dest_killed, newi2pat))
2659           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2660                                                NULL_RTX),
2661                             NULL_RTX, i2, NULL_RTX, elim_i2, elim_i1);
2662         else
2663           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2664                                                NULL_RTX),
2665                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2666                             elim_i2, elim_i1);
2667       }
2668
2669     if (i2dest_in_i2src)
2670       {
2671         if (GET_CODE (i2dest) == REG)
2672           REG_N_DEATHS (REGNO (i2dest))++;
2673
2674         if (newi2pat && reg_set_p (i2dest, newi2pat))
2675           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2676                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2677         else
2678           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2679                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2680                             NULL_RTX, NULL_RTX);
2681       }
2682
2683     if (i1dest_in_i1src)
2684       {
2685         if (GET_CODE (i1dest) == REG)
2686           REG_N_DEATHS (REGNO (i1dest))++;
2687
2688         if (newi2pat && reg_set_p (i1dest, newi2pat))
2689           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2690                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2691         else
2692           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2693                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2694                             NULL_RTX, NULL_RTX);
2695       }
2696
2697     distribute_links (i3links);
2698     distribute_links (i2links);
2699     distribute_links (i1links);
2700
2701     if (GET_CODE (i2dest) == REG)
2702       {
2703         rtx link;
2704         rtx i2_insn = 0, i2_val = 0, set;
2705
2706         /* The insn that used to set this register doesn't exist, and
2707            this life of the register may not exist either.  See if one of
2708            I3's links points to an insn that sets I2DEST.  If it does,
2709            that is now the last known value for I2DEST. If we don't update
2710            this and I2 set the register to a value that depended on its old
2711            contents, we will get confused.  If this insn is used, thing
2712            will be set correctly in combine_instructions.  */
2713
2714         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2715           if ((set = single_set (XEXP (link, 0))) != 0
2716               && rtx_equal_p (i2dest, SET_DEST (set)))
2717             i2_insn = XEXP (link, 0), i2_val = SET_SRC (set);
2718
2719         record_value_for_reg (i2dest, i2_insn, i2_val);
2720
2721         /* If the reg formerly set in I2 died only once and that was in I3,
2722            zero its use count so it won't make `reload' do any work.  */
2723         if (! added_sets_2
2724             && (newi2pat == 0 || ! reg_mentioned_p (i2dest, newi2pat))
2725             && ! i2dest_in_i2src)
2726           {
2727             regno = REGNO (i2dest);
2728             REG_N_SETS (regno)--;
2729           }
2730       }
2731
2732     if (i1 && GET_CODE (i1dest) == REG)
2733       {
2734         rtx link;
2735         rtx i1_insn = 0, i1_val = 0, set;
2736
2737         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2738           if ((set = single_set (XEXP (link, 0))) != 0
2739               && rtx_equal_p (i1dest, SET_DEST (set)))
2740             i1_insn = XEXP (link, 0), i1_val = SET_SRC (set);
2741
2742         record_value_for_reg (i1dest, i1_insn, i1_val);
2743
2744         regno = REGNO (i1dest);
2745         if (! added_sets_1 && ! i1dest_in_i1src)
2746           REG_N_SETS (regno)--;
2747       }
2748
2749     /* Update reg_nonzero_bits et al for any changes that may have been made
2750        to this insn.  The order of set_nonzero_bits_and_sign_copies() is
2751        important.  Because newi2pat can affect nonzero_bits of newpat */
2752     if (newi2pat)
2753       note_stores (newi2pat, set_nonzero_bits_and_sign_copies, NULL);
2754     note_stores (newpat, set_nonzero_bits_and_sign_copies, NULL);
2755
2756     /* Set new_direct_jump_p if a new return or simple jump instruction
2757        has been created.
2758
2759        If I3 is now an unconditional jump, ensure that it has a
2760        BARRIER following it since it may have initially been a
2761        conditional jump.  It may also be the last nonnote insn.  */
2762
2763     if (GET_CODE (newpat) == RETURN || any_uncondjump_p (i3))
2764       {
2765         *new_direct_jump_p = 1;
2766
2767         if ((temp = next_nonnote_insn (i3)) == NULL_RTX
2768             || GET_CODE (temp) != BARRIER)
2769           emit_barrier_after (i3);
2770       }
2771   }
2772
2773   combine_successes++;
2774   undo_commit ();
2775
2776   /* Clear this here, so that subsequent get_last_value calls are not
2777      affected.  */
2778   subst_prev_insn = NULL_RTX;
2779
2780   if (added_links_insn
2781       && (newi2pat == 0 || INSN_CUID (added_links_insn) < INSN_CUID (i2))
2782       && INSN_CUID (added_links_insn) < INSN_CUID (i3))
2783     return added_links_insn;
2784   else
2785     return newi2pat ? i2 : i3;
2786 }
2787 \f
2788 /* Undo all the modifications recorded in undobuf.  */
2789
2790 static void
2791 undo_all ()
2792 {
2793   struct undo *undo, *next;
2794
2795   for (undo = undobuf.undos; undo; undo = next)
2796     {
2797       next = undo->next;
2798       if (undo->is_int)
2799         *undo->where.i = undo->old_contents.i;
2800       else
2801         *undo->where.r = undo->old_contents.r;
2802
2803       undo->next = undobuf.frees;
2804       undobuf.frees = undo;
2805     }
2806
2807   undobuf.undos = 0;
2808
2809   /* Clear this here, so that subsequent get_last_value calls are not
2810      affected.  */
2811   subst_prev_insn = NULL_RTX;
2812 }
2813
2814 /* We've committed to accepting the changes we made.  Move all
2815    of the undos to the free list.  */
2816
2817 static void
2818 undo_commit ()
2819 {
2820   struct undo *undo, *next;
2821
2822   for (undo = undobuf.undos; undo; undo = next)
2823     {
2824       next = undo->next;
2825       undo->next = undobuf.frees;
2826       undobuf.frees = undo;
2827     }
2828   undobuf.undos = 0;
2829 }
2830
2831 \f
2832 /* Find the innermost point within the rtx at LOC, possibly LOC itself,
2833    where we have an arithmetic expression and return that point.  LOC will
2834    be inside INSN.
2835
2836    try_combine will call this function to see if an insn can be split into
2837    two insns.  */
2838
2839 static rtx *
2840 find_split_point (loc, insn)
2841      rtx *loc;
2842      rtx insn;
2843 {
2844   rtx x = *loc;
2845   enum rtx_code code = GET_CODE (x);
2846   rtx *split;
2847   unsigned HOST_WIDE_INT len = 0;
2848   HOST_WIDE_INT pos = 0;
2849   int unsignedp = 0;
2850   rtx inner = NULL_RTX;
2851
2852   /* First special-case some codes.  */
2853   switch (code)
2854     {
2855     case SUBREG:
2856 #ifdef INSN_SCHEDULING
2857       /* If we are making a paradoxical SUBREG invalid, it becomes a split
2858          point.  */
2859       if (GET_CODE (SUBREG_REG (x)) == MEM)
2860         return loc;
2861 #endif
2862       return find_split_point (&SUBREG_REG (x), insn);
2863
2864     case MEM:
2865 #ifdef HAVE_lo_sum
2866       /* If we have (mem (const ..)) or (mem (symbol_ref ...)), split it
2867          using LO_SUM and HIGH.  */
2868       if (GET_CODE (XEXP (x, 0)) == CONST
2869           || GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
2870         {
2871           SUBST (XEXP (x, 0),
2872                  gen_rtx_LO_SUM (Pmode,
2873                                  gen_rtx_HIGH (Pmode, XEXP (x, 0)),
2874                                  XEXP (x, 0)));
2875           return &XEXP (XEXP (x, 0), 0);
2876         }
2877 #endif
2878
2879       /* If we have a PLUS whose second operand is a constant and the
2880          address is not valid, perhaps will can split it up using
2881          the machine-specific way to split large constants.  We use
2882          the first pseudo-reg (one of the virtual regs) as a placeholder;
2883          it will not remain in the result.  */
2884       if (GET_CODE (XEXP (x, 0)) == PLUS
2885           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2886           && ! memory_address_p (GET_MODE (x), XEXP (x, 0)))
2887         {
2888           rtx reg = regno_reg_rtx[FIRST_PSEUDO_REGISTER];
2889           rtx seq = split_insns (gen_rtx_SET (VOIDmode, reg, XEXP (x, 0)),
2890                                  subst_insn);
2891
2892           /* This should have produced two insns, each of which sets our
2893              placeholder.  If the source of the second is a valid address,
2894              we can make put both sources together and make a split point
2895              in the middle.  */
2896
2897           if (seq && XVECLEN (seq, 0) == 2
2898               && GET_CODE (XVECEXP (seq, 0, 0)) == INSN
2899               && GET_CODE (PATTERN (XVECEXP (seq, 0, 0))) == SET
2900               && SET_DEST (PATTERN (XVECEXP (seq, 0, 0))) == reg
2901               && ! reg_mentioned_p (reg,
2902                                     SET_SRC (PATTERN (XVECEXP (seq, 0, 0))))
2903               && GET_CODE (XVECEXP (seq, 0, 1)) == INSN
2904               && GET_CODE (PATTERN (XVECEXP (seq, 0, 1))) == SET
2905               && SET_DEST (PATTERN (XVECEXP (seq, 0, 1))) == reg
2906               && memory_address_p (GET_MODE (x),
2907                                    SET_SRC (PATTERN (XVECEXP (seq, 0, 1)))))
2908             {
2909               rtx src1 = SET_SRC (PATTERN (XVECEXP (seq, 0, 0)));
2910               rtx src2 = SET_SRC (PATTERN (XVECEXP (seq, 0, 1)));
2911
2912               /* Replace the placeholder in SRC2 with SRC1.  If we can
2913                  find where in SRC2 it was placed, that can become our
2914                  split point and we can replace this address with SRC2.
2915                  Just try two obvious places.  */
2916
2917               src2 = replace_rtx (src2, reg, src1);
2918               split = 0;
2919               if (XEXP (src2, 0) == src1)
2920                 split = &XEXP (src2, 0);
2921               else if (GET_RTX_FORMAT (GET_CODE (XEXP (src2, 0)))[0] == 'e'
2922                        && XEXP (XEXP (src2, 0), 0) == src1)
2923                 split = &XEXP (XEXP (src2, 0), 0);
2924
2925               if (split)
2926                 {
2927                   SUBST (XEXP (x, 0), src2);
2928                   return split;
2929                 }
2930             }
2931
2932           /* If that didn't work, perhaps the first operand is complex and
2933              needs to be computed separately, so make a split point there.
2934              This will occur on machines that just support REG + CONST
2935              and have a constant moved through some previous computation.  */
2936
2937           else if (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) != 'o'
2938                    && ! (GET_CODE (XEXP (XEXP (x, 0), 0)) == SUBREG
2939                          && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (XEXP (x, 0), 0))))
2940                              == 'o')))
2941             return &XEXP (XEXP (x, 0), 0);
2942         }
2943       break;
2944
2945     case SET:
2946 #ifdef HAVE_cc0
2947       /* If SET_DEST is CC0 and SET_SRC is not an operand, a COMPARE, or a
2948          ZERO_EXTRACT, the most likely reason why this doesn't match is that
2949          we need to put the operand into a register.  So split at that
2950          point.  */
2951
2952       if (SET_DEST (x) == cc0_rtx
2953           && GET_CODE (SET_SRC (x)) != COMPARE
2954           && GET_CODE (SET_SRC (x)) != ZERO_EXTRACT
2955           && GET_RTX_CLASS (GET_CODE (SET_SRC (x))) != 'o'
2956           && ! (GET_CODE (SET_SRC (x)) == SUBREG
2957                 && GET_RTX_CLASS (GET_CODE (SUBREG_REG (SET_SRC (x)))) == 'o'))
2958         return &SET_SRC (x);
2959 #endif
2960
2961       /* See if we can split SET_SRC as it stands.  */
2962       split = find_split_point (&SET_SRC (x), insn);
2963       if (split && split != &SET_SRC (x))
2964         return split;
2965
2966       /* See if we can split SET_DEST as it stands.  */
2967       split = find_split_point (&SET_DEST (x), insn);
2968       if (split && split != &SET_DEST (x))
2969         return split;
2970
2971       /* See if this is a bitfield assignment with everything constant.  If
2972          so, this is an IOR of an AND, so split it into that.  */
2973       if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
2974           && (GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)))
2975               <= HOST_BITS_PER_WIDE_INT)
2976           && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT
2977           && GET_CODE (XEXP (SET_DEST (x), 2)) == CONST_INT
2978           && GET_CODE (SET_SRC (x)) == CONST_INT
2979           && ((INTVAL (XEXP (SET_DEST (x), 1))
2980               + INTVAL (XEXP (SET_DEST (x), 2)))
2981               <= GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0))))
2982           && ! side_effects_p (XEXP (SET_DEST (x), 0)))
2983         {
2984           HOST_WIDE_INT pos = INTVAL (XEXP (SET_DEST (x), 2));
2985           unsigned HOST_WIDE_INT len = INTVAL (XEXP (SET_DEST (x), 1));
2986           unsigned HOST_WIDE_INT src = INTVAL (SET_SRC (x));
2987           rtx dest = XEXP (SET_DEST (x), 0);
2988           enum machine_mode mode = GET_MODE (dest);
2989           unsigned HOST_WIDE_INT mask = ((HOST_WIDE_INT) 1 << len) - 1;
2990
2991           if (BITS_BIG_ENDIAN)
2992             pos = GET_MODE_BITSIZE (mode) - len - pos;
2993
2994           if (src == mask)
2995             SUBST (SET_SRC (x),
2996                    gen_binary (IOR, mode, dest, GEN_INT (src << pos)));
2997           else
2998             SUBST (SET_SRC (x),
2999                    gen_binary (IOR, mode,
3000                                gen_binary (AND, mode, dest,
3001                                            GEN_INT (~(mask << pos)
3002                                                     & GET_MODE_MASK (mode))),
3003                                GEN_INT (src << pos)));
3004
3005           SUBST (SET_DEST (x), dest);
3006
3007           split = find_split_point (&SET_SRC (x), insn);
3008           if (split && split != &SET_SRC (x))
3009             return split;
3010         }
3011
3012       /* Otherwise, see if this is an operation that we can split into two.
3013          If so, try to split that.  */
3014       code = GET_CODE (SET_SRC (x));
3015
3016       switch (code)
3017         {
3018         case AND:
3019           /* If we are AND'ing with a large constant that is only a single
3020              bit and the result is only being used in a context where we
3021              need to know if it is zero or non-zero, replace it with a bit
3022              extraction.  This will avoid the large constant, which might
3023              have taken more than one insn to make.  If the constant were
3024              not a valid argument to the AND but took only one insn to make,
3025              this is no worse, but if it took more than one insn, it will
3026              be better.  */
3027
3028           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3029               && GET_CODE (XEXP (SET_SRC (x), 0)) == REG
3030               && (pos = exact_log2 (INTVAL (XEXP (SET_SRC (x), 1)))) >= 7
3031               && GET_CODE (SET_DEST (x)) == REG
3032               && (split = find_single_use (SET_DEST (x), insn, (rtx*)0)) != 0
3033               && (GET_CODE (*split) == EQ || GET_CODE (*split) == NE)
3034               && XEXP (*split, 0) == SET_DEST (x)
3035               && XEXP (*split, 1) == const0_rtx)
3036             {
3037               rtx extraction = make_extraction (GET_MODE (SET_DEST (x)),
3038                                                 XEXP (SET_SRC (x), 0),
3039                                                 pos, NULL_RTX, 1, 1, 0, 0);
3040               if (extraction != 0)
3041                 {
3042                   SUBST (SET_SRC (x), extraction);
3043                   return find_split_point (loc, insn);
3044                 }
3045             }
3046           break;
3047
3048         case NE:
3049           /* if STORE_FLAG_VALUE is -1, this is (NE X 0) and only one bit of X
3050              is known to be on, this can be converted into a NEG of a shift. */
3051           if (STORE_FLAG_VALUE == -1 && XEXP (SET_SRC (x), 1) == const0_rtx
3052               && GET_MODE (SET_SRC (x)) == GET_MODE (XEXP (SET_SRC (x), 0))
3053               && 1 <= (pos = exact_log2
3054                        (nonzero_bits (XEXP (SET_SRC (x), 0),
3055                                       GET_MODE (XEXP (SET_SRC (x), 0))))))
3056             {
3057               enum machine_mode mode = GET_MODE (XEXP (SET_SRC (x), 0));
3058
3059               SUBST (SET_SRC (x),
3060                      gen_rtx_NEG (mode,
3061                                   gen_rtx_LSHIFTRT (mode,
3062                                                     XEXP (SET_SRC (x), 0),
3063                                                     GEN_INT (pos))));
3064
3065               split = find_split_point (&SET_SRC (x), insn);
3066               if (split && split != &SET_SRC (x))
3067                 return split;
3068             }
3069           break;
3070
3071         case SIGN_EXTEND:
3072           inner = XEXP (SET_SRC (x), 0);
3073
3074           /* We can't optimize if either mode is a partial integer
3075              mode as we don't know how many bits are significant
3076              in those modes.  */
3077           if (GET_MODE_CLASS (GET_MODE (inner)) == MODE_PARTIAL_INT
3078               || GET_MODE_CLASS (GET_MODE (SET_SRC (x))) == MODE_PARTIAL_INT)
3079             break;
3080
3081           pos = 0;
3082           len = GET_MODE_BITSIZE (GET_MODE (inner));
3083           unsignedp = 0;
3084           break;
3085
3086         case SIGN_EXTRACT:
3087         case ZERO_EXTRACT:
3088           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3089               && GET_CODE (XEXP (SET_SRC (x), 2)) == CONST_INT)
3090             {
3091               inner = XEXP (SET_SRC (x), 0);
3092               len = INTVAL (XEXP (SET_SRC (x), 1));
3093               pos = INTVAL (XEXP (SET_SRC (x), 2));
3094
3095               if (BITS_BIG_ENDIAN)
3096                 pos = GET_MODE_BITSIZE (GET_MODE (inner)) - len - pos;
3097               unsignedp = (code == ZERO_EXTRACT);
3098             }
3099           break;
3100
3101         default:
3102           break;
3103         }
3104
3105       if (len && pos >= 0 && pos + len <= GET_MODE_BITSIZE (GET_MODE (inner)))
3106         {
3107           enum machine_mode mode = GET_MODE (SET_SRC (x));
3108
3109           /* For unsigned, we have a choice of a shift followed by an
3110              AND or two shifts.  Use two shifts for field sizes where the
3111              constant might be too large.  We assume here that we can
3112              always at least get 8-bit constants in an AND insn, which is
3113              true for every current RISC.  */
3114
3115           if (unsignedp && len <= 8)
3116             {
3117               SUBST (SET_SRC (x),
3118                      gen_rtx_AND (mode,
3119                                   gen_rtx_LSHIFTRT
3120                                   (mode, gen_lowpart_for_combine (mode, inner),
3121                                    GEN_INT (pos)),
3122                                   GEN_INT (((HOST_WIDE_INT) 1 << len) - 1)));
3123
3124               split = find_split_point (&SET_SRC (x), insn);
3125               if (split && split != &SET_SRC (x))
3126                 return split;
3127             }
3128           else
3129             {
3130               SUBST (SET_SRC (x),
3131                      gen_rtx_fmt_ee
3132                      (unsignedp ? LSHIFTRT : ASHIFTRT, mode,
3133                       gen_rtx_ASHIFT (mode,
3134                                       gen_lowpart_for_combine (mode, inner),
3135                                       GEN_INT (GET_MODE_BITSIZE (mode)
3136                                                - len - pos)),
3137                       GEN_INT (GET_MODE_BITSIZE (mode) - len)));
3138
3139               split = find_split_point (&SET_SRC (x), insn);
3140               if (split && split != &SET_SRC (x))
3141                 return split;
3142             }
3143         }
3144
3145       /* See if this is a simple operation with a constant as the second
3146          operand.  It might be that this constant is out of range and hence
3147          could be used as a split point.  */
3148       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3149            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3150            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<')
3151           && CONSTANT_P (XEXP (SET_SRC (x), 1))
3152           && (GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (x), 0))) == 'o'
3153               || (GET_CODE (XEXP (SET_SRC (x), 0)) == SUBREG
3154                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (SET_SRC (x), 0))))
3155                       == 'o'))))
3156         return &XEXP (SET_SRC (x), 1);
3157
3158       /* Finally, see if this is a simple operation with its first operand
3159          not in a register.  The operation might require this operand in a
3160          register, so return it as a split point.  We can always do this
3161          because if the first operand were another operation, we would have
3162          already found it as a split point.  */
3163       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3164            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3165            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<'
3166            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '1')
3167           && ! register_operand (XEXP (SET_SRC (x), 0), VOIDmode))
3168         return &XEXP (SET_SRC (x), 0);
3169
3170       return 0;
3171
3172     case AND:
3173     case IOR:
3174       /* We write NOR as (and (not A) (not B)), but if we don't have a NOR,
3175          it is better to write this as (not (ior A B)) so we can split it.
3176          Similarly for IOR.  */
3177       if (GET_CODE (XEXP (x, 0)) == NOT && GET_CODE (XEXP (x, 1)) == NOT)
3178         {
3179           SUBST (*loc,
3180                  gen_rtx_NOT (GET_MODE (x),
3181                               gen_rtx_fmt_ee (code == IOR ? AND : IOR,
3182                                               GET_MODE (x),
3183                                               XEXP (XEXP (x, 0), 0),
3184                                               XEXP (XEXP (x, 1), 0))));
3185           return find_split_point (loc, insn);
3186         }
3187
3188       /* Many RISC machines have a large set of logical insns.  If the
3189          second operand is a NOT, put it first so we will try to split the
3190          other operand first.  */
3191       if (GET_CODE (XEXP (x, 1)) == NOT)
3192         {
3193           rtx tem = XEXP (x, 0);
3194           SUBST (XEXP (x, 0), XEXP (x, 1));
3195           SUBST (XEXP (x, 1), tem);
3196         }
3197       break;
3198
3199     default:
3200       break;
3201     }
3202
3203   /* Otherwise, select our actions depending on our rtx class.  */
3204   switch (GET_RTX_CLASS (code))
3205     {
3206     case 'b':                   /* This is ZERO_EXTRACT and SIGN_EXTRACT.  */
3207     case '3':
3208       split = find_split_point (&XEXP (x, 2), insn);
3209       if (split)
3210         return split;
3211       /* ... fall through ...  */
3212     case '2':
3213     case 'c':
3214     case '<':
3215       split = find_split_point (&XEXP (x, 1), insn);
3216       if (split)
3217         return split;
3218       /* ... fall through ...  */
3219     case '1':
3220       /* Some machines have (and (shift ...) ...) insns.  If X is not
3221          an AND, but XEXP (X, 0) is, use it as our split point.  */
3222       if (GET_CODE (x) != AND && GET_CODE (XEXP (x, 0)) == AND)
3223         return &XEXP (x, 0);
3224
3225       split = find_split_point (&XEXP (x, 0), insn);
3226       if (split)
3227         return split;
3228       return loc;
3229     }
3230
3231   /* Otherwise, we don't have a split point.  */
3232   return 0;
3233 }
3234 \f
3235 /* Throughout X, replace FROM with TO, and return the result.
3236    The result is TO if X is FROM;
3237    otherwise the result is X, but its contents may have been modified.
3238    If they were modified, a record was made in undobuf so that
3239    undo_all will (among other things) return X to its original state.
3240
3241    If the number of changes necessary is too much to record to undo,
3242    the excess changes are not made, so the result is invalid.
3243    The changes already made can still be undone.
3244    undobuf.num_undo is incremented for such changes, so by testing that
3245    the caller can tell whether the result is valid.
3246
3247    `n_occurrences' is incremented each time FROM is replaced.
3248
3249    IN_DEST is non-zero if we are processing the SET_DEST of a SET.
3250
3251    UNIQUE_COPY is non-zero if each substitution must be unique.  We do this
3252    by copying if `n_occurrences' is non-zero.  */
3253
3254 static rtx
3255 subst (x, from, to, in_dest, unique_copy)
3256      register rtx x, from, to;
3257      int in_dest;
3258      int unique_copy;
3259 {
3260   register enum rtx_code code = GET_CODE (x);
3261   enum machine_mode op0_mode = VOIDmode;
3262   register const char *fmt;
3263   register int len, i;
3264   rtx new;
3265
3266 /* Two expressions are equal if they are identical copies of a shared
3267    RTX or if they are both registers with the same register number
3268    and mode.  */
3269
3270 #define COMBINE_RTX_EQUAL_P(X,Y)                        \
3271   ((X) == (Y)                                           \
3272    || (GET_CODE (X) == REG && GET_CODE (Y) == REG       \
3273        && REGNO (X) == REGNO (Y) && GET_MODE (X) == GET_MODE (Y)))
3274
3275   if (! in_dest && COMBINE_RTX_EQUAL_P (x, from))
3276     {
3277       n_occurrences++;
3278       return (unique_copy && n_occurrences > 1 ? copy_rtx (to) : to);
3279     }
3280
3281   /* If X and FROM are the same register but different modes, they will
3282      not have been seen as equal above.  However, flow.c will make a
3283      LOG_LINKS entry for that case.  If we do nothing, we will try to
3284      rerecognize our original insn and, when it succeeds, we will
3285      delete the feeding insn, which is incorrect.
3286
3287      So force this insn not to match in this (rare) case.  */
3288   if (! in_dest && code == REG && GET_CODE (from) == REG
3289       && REGNO (x) == REGNO (from))
3290     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
3291
3292   /* If this is an object, we are done unless it is a MEM or LO_SUM, both
3293      of which may contain things that can be combined.  */
3294   if (code != MEM && code != LO_SUM && GET_RTX_CLASS (code) == 'o')
3295     return x;
3296
3297   /* It is possible to have a subexpression appear twice in the insn.
3298      Suppose that FROM is a register that appears within TO.
3299      Then, after that subexpression has been scanned once by `subst',
3300      the second time it is scanned, TO may be found.  If we were
3301      to scan TO here, we would find FROM within it and create a
3302      self-referent rtl structure which is completely wrong.  */
3303   if (COMBINE_RTX_EQUAL_P (x, to))
3304     return to;
3305
3306   /* Parallel asm_operands need special attention because all of the
3307      inputs are shared across the arms.  Furthermore, unsharing the
3308      rtl results in recognition failures.  Failure to handle this case
3309      specially can result in circular rtl.
3310
3311      Solve this by doing a normal pass across the first entry of the
3312      parallel, and only processing the SET_DESTs of the subsequent
3313      entries.  Ug.  */
3314
3315   if (code == PARALLEL
3316       && GET_CODE (XVECEXP (x, 0, 0)) == SET
3317       && GET_CODE (SET_SRC (XVECEXP (x, 0, 0))) == ASM_OPERANDS)
3318     {
3319       new = subst (XVECEXP (x, 0, 0), from, to, 0, unique_copy);
3320
3321       /* If this substitution failed, this whole thing fails.  */
3322       if (GET_CODE (new) == CLOBBER
3323           && XEXP (new, 0) == const0_rtx)
3324         return new;
3325
3326       SUBST (XVECEXP (x, 0, 0), new);
3327
3328       for (i = XVECLEN (x, 0) - 1; i >= 1; i--)
3329         {
3330           rtx dest = SET_DEST (XVECEXP (x, 0, i));
3331
3332           if (GET_CODE (dest) != REG
3333               && GET_CODE (dest) != CC0
3334               && GET_CODE (dest) != PC)
3335             {
3336               new = subst (dest, from, to, 0, unique_copy);
3337
3338               /* If this substitution failed, this whole thing fails.  */
3339               if (GET_CODE (new) == CLOBBER
3340                   && XEXP (new, 0) == const0_rtx)
3341                 return new;
3342
3343               SUBST (SET_DEST (XVECEXP (x, 0, i)), new);
3344             }
3345         }
3346     }
3347   else
3348     {
3349       len = GET_RTX_LENGTH (code);
3350       fmt = GET_RTX_FORMAT (code);
3351
3352       /* We don't need to process a SET_DEST that is a register, CC0,
3353          or PC, so set up to skip this common case.  All other cases
3354          where we want to suppress replacing something inside a
3355          SET_SRC are handled via the IN_DEST operand.  */
3356       if (code == SET
3357           && (GET_CODE (SET_DEST (x)) == REG
3358               || GET_CODE (SET_DEST (x)) == CC0
3359               || GET_CODE (SET_DEST (x)) == PC))
3360         fmt = "ie";
3361
3362       /* Get the mode of operand 0 in case X is now a SIGN_EXTEND of a
3363          constant.  */
3364       if (fmt[0] == 'e')
3365         op0_mode = GET_MODE (XEXP (x, 0));
3366
3367       for (i = 0; i < len; i++)
3368         {
3369           if (fmt[i] == 'E')
3370             {
3371               register int j;
3372               for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3373                 {
3374                   if (COMBINE_RTX_EQUAL_P (XVECEXP (x, i, j), from))
3375                     {
3376                       new = (unique_copy && n_occurrences
3377                              ? copy_rtx (to) : to);
3378                       n_occurrences++;
3379                     }
3380                   else
3381                     {
3382                       new = subst (XVECEXP (x, i, j), from, to, 0,
3383                                    unique_copy);
3384
3385                       /* If this substitution failed, this whole thing
3386                          fails.  */
3387                       if (GET_CODE (new) == CLOBBER
3388                           && XEXP (new, 0) == const0_rtx)
3389                         return new;
3390                     }
3391
3392                   SUBST (XVECEXP (x, i, j), new);
3393                 }
3394             }
3395           else if (fmt[i] == 'e')
3396             {
3397               /* If this is a register being set, ignore it.  */
3398               new = XEXP (x, i);
3399               if (in_dest
3400                   && (code == SUBREG || code == STRICT_LOW_PART
3401                       || code == ZERO_EXTRACT)
3402                   && i == 0
3403                   && GET_CODE (new) == REG)
3404                 ;
3405
3406               else if (COMBINE_RTX_EQUAL_P (XEXP (x, i), from))
3407                 {
3408                   /* In general, don't install a subreg involving two
3409                      modes not tieable.  It can worsen register
3410                      allocation, and can even make invalid reload
3411                      insns, since the reg inside may need to be copied
3412                      from in the outside mode, and that may be invalid
3413                      if it is an fp reg copied in integer mode.
3414
3415                      We allow two exceptions to this: It is valid if
3416                      it is inside another SUBREG and the mode of that
3417                      SUBREG and the mode of the inside of TO is
3418                      tieable and it is valid if X is a SET that copies
3419                      FROM to CC0.  */
3420
3421                   if (GET_CODE (to) == SUBREG
3422                       && ! MODES_TIEABLE_P (GET_MODE (to),
3423                                             GET_MODE (SUBREG_REG (to)))
3424                       && ! (code == SUBREG
3425                             && MODES_TIEABLE_P (GET_MODE (x),
3426                                                 GET_MODE (SUBREG_REG (to))))
3427 #ifdef HAVE_cc0
3428                       && ! (code == SET && i == 1 && XEXP (x, 0) == cc0_rtx)
3429 #endif
3430                       )
3431                     return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
3432
3433 #ifdef CLASS_CANNOT_CHANGE_MODE
3434                   if (code == SUBREG
3435                       && GET_CODE (to) == REG
3436                       && REGNO (to) < FIRST_PSEUDO_REGISTER
3437                       && (TEST_HARD_REG_BIT
3438                           (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
3439                            REGNO (to)))
3440                       && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (to),
3441                                                      GET_MODE (x)))
3442                     return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
3443 #endif
3444
3445                   new = (unique_copy && n_occurrences ? copy_rtx (to) : to);
3446                   n_occurrences++;
3447                 }
3448               else
3449                 /* If we are in a SET_DEST, suppress most cases unless we
3450                    have gone inside a MEM, in which case we want to
3451                    simplify the address.  We assume here that things that
3452                    are actually part of the destination have their inner
3453                    parts in the first expression.  This is true for SUBREG,
3454                    STRICT_LOW_PART, and ZERO_EXTRACT, which are the only
3455                    things aside from REG and MEM that should appear in a
3456                    SET_DEST.  */
3457                 new = subst (XEXP (x, i), from, to,
3458                              (((in_dest
3459                                 && (code == SUBREG || code == STRICT_LOW_PART
3460                                     || code == ZERO_EXTRACT))
3461                                || code == SET)
3462                               && i == 0), unique_copy);
3463
3464               /* If we found that we will have to reject this combination,
3465                  indicate that by returning the CLOBBER ourselves, rather than
3466                  an expression containing it.  This will speed things up as
3467                  well as prevent accidents where two CLOBBERs are considered
3468                  to be equal, thus producing an incorrect simplification.  */
3469
3470               if (GET_CODE (new) == CLOBBER && XEXP (new, 0) == const0_rtx)
3471                 return new;
3472
3473               SUBST (XEXP (x, i), new);
3474             }
3475         }
3476     }
3477
3478   /* Try to simplify X.  If the simplification changed the code, it is likely
3479      that further simplification will help, so loop, but limit the number
3480      of repetitions that will be performed.  */
3481
3482   for (i = 0; i < 4; i++)
3483     {
3484       /* If X is sufficiently simple, don't bother trying to do anything
3485          with it.  */
3486       if (code != CONST_INT && code != REG && code != CLOBBER)
3487         x = combine_simplify_rtx (x, op0_mode, i == 3, in_dest);
3488
3489       if (GET_CODE (x) == code)
3490         break;
3491
3492       code = GET_CODE (x);
3493
3494       /* We no longer know the original mode of operand 0 since we
3495          have changed the form of X)  */
3496       op0_mode = VOIDmode;
3497     }
3498
3499   return x;
3500 }
3501 \f
3502 /* Simplify X, a piece of RTL.  We just operate on the expression at the
3503    outer level; call `subst' to simplify recursively.  Return the new
3504    expression.
3505
3506    OP0_MODE is the original mode of XEXP (x, 0); LAST is nonzero if this
3507    will be the iteration even if an expression with a code different from
3508    X is returned; IN_DEST is nonzero if we are inside a SET_DEST.  */
3509
3510 static rtx
3511 combine_simplify_rtx (x, op0_mode, last, in_dest)
3512      rtx x;
3513      enum machine_mode op0_mode;
3514      int last;
3515      int in_dest;
3516 {
3517   enum rtx_code code = GET_CODE (x);
3518   enum machine_mode mode = GET_MODE (x);
3519   rtx temp;
3520   rtx reversed;
3521   int i;
3522
3523   /* If this is a commutative operation, put a constant last and a complex
3524      expression first.  We don't need to do this for comparisons here.  */
3525   if (GET_RTX_CLASS (code) == 'c'
3526       && swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
3527     {
3528       temp = XEXP (x, 0);
3529       SUBST (XEXP (x, 0), XEXP (x, 1));
3530       SUBST (XEXP (x, 1), temp);
3531     }
3532
3533   /* If this is a PLUS, MINUS, or MULT, and the first operand is the
3534      sign extension of a PLUS with a constant, reverse the order of the sign
3535      extension and the addition. Note that this not the same as the original
3536      code, but overflow is undefined for signed values.  Also note that the
3537      PLUS will have been partially moved "inside" the sign-extension, so that
3538      the first operand of X will really look like:
3539          (ashiftrt (plus (ashift A C4) C5) C4).
3540      We convert this to
3541          (plus (ashiftrt (ashift A C4) C2) C4)
3542      and replace the first operand of X with that expression.  Later parts
3543      of this function may simplify the expression further.
3544
3545      For example, if we start with (mult (sign_extend (plus A C1)) C2),
3546      we swap the SIGN_EXTEND and PLUS.  Later code will apply the
3547      distributive law to produce (plus (mult (sign_extend X) C1) C3).
3548
3549      We do this to simplify address expressions.  */
3550
3551   if ((code == PLUS || code == MINUS || code == MULT)
3552       && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3553       && GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS
3554       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == ASHIFT
3555       && GET_CODE (XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1)) == CONST_INT
3556       && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3557       && XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1) == XEXP (XEXP (x, 0), 1)
3558       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
3559       && (temp = simplify_binary_operation (ASHIFTRT, mode,
3560                                             XEXP (XEXP (XEXP (x, 0), 0), 1),
3561                                             XEXP (XEXP (x, 0), 1))) != 0)
3562     {
3563       rtx new
3564         = simplify_shift_const (NULL_RTX, ASHIFT, mode,
3565                                 XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 0),
3566                                 INTVAL (XEXP (XEXP (x, 0), 1)));
3567
3568       new = simplify_shift_const (NULL_RTX, ASHIFTRT, mode, new,
3569                                   INTVAL (XEXP (XEXP (x, 0), 1)));
3570
3571       SUBST (XEXP (x, 0), gen_binary (PLUS, mode, new, temp));
3572     }
3573
3574   /* If this is a simple operation applied to an IF_THEN_ELSE, try
3575      applying it to the arms of the IF_THEN_ELSE.  This often simplifies
3576      things.  Check for cases where both arms are testing the same
3577      condition.
3578
3579      Don't do anything if all operands are very simple.  */
3580
3581   if (((GET_RTX_CLASS (code) == '2' || GET_RTX_CLASS (code) == 'c'
3582         || GET_RTX_CLASS (code) == '<')
3583        && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3584             && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3585                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3586                       == 'o')))
3587            || (GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) != 'o'
3588                && ! (GET_CODE (XEXP (x, 1)) == SUBREG
3589                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 1))))
3590                          == 'o')))))
3591       || (GET_RTX_CLASS (code) == '1'
3592           && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3593                && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3594                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3595                          == 'o'))))))
3596     {
3597       rtx cond, true_rtx, false_rtx;
3598
3599       cond = if_then_else_cond (x, &true_rtx, &false_rtx);
3600       if (cond != 0
3601           /* If everything is a comparison, what we have is highly unlikely
3602              to be simpler, so don't use it.  */
3603           && ! (GET_RTX_CLASS (code) == '<'
3604                 && (GET_RTX_CLASS (GET_CODE (true_rtx)) == '<'
3605                     || GET_RTX_CLASS (GET_CODE (false_rtx)) == '<')))
3606         {
3607           rtx cop1 = const0_rtx;
3608           enum rtx_code cond_code = simplify_comparison (NE, &cond, &cop1);
3609
3610           if (cond_code == NE && GET_RTX_CLASS (GET_CODE (cond)) == '<')
3611             return x;
3612
3613           /* Simplify the alternative arms; this may collapse the true and
3614              false arms to store-flag values.  */
3615           true_rtx = subst (true_rtx, pc_rtx, pc_rtx, 0, 0);
3616           false_rtx = subst (false_rtx, pc_rtx, pc_rtx, 0, 0);
3617
3618           /* If true_rtx and false_rtx are not general_operands, an if_then_else
3619              is unlikely to be simpler.  */
3620           if (general_operand (true_rtx, VOIDmode)
3621               && general_operand (false_rtx, VOIDmode))
3622             {
3623               /* Restarting if we generate a store-flag expression will cause
3624                  us to loop.  Just drop through in this case.  */
3625
3626               /* If the result values are STORE_FLAG_VALUE and zero, we can
3627                  just make the comparison operation.  */
3628               if (true_rtx == const_true_rtx && false_rtx == const0_rtx)
3629                 x = gen_binary (cond_code, mode, cond, cop1);
3630               else if (true_rtx == const0_rtx && false_rtx == const_true_rtx)
3631                 x = gen_binary (reverse_condition (cond_code),
3632                                 mode, cond, cop1);
3633
3634               /* Likewise, we can make the negate of a comparison operation
3635                  if the result values are - STORE_FLAG_VALUE and zero.  */
3636               else if (GET_CODE (true_rtx) == CONST_INT
3637                        && INTVAL (true_rtx) == - STORE_FLAG_VALUE
3638                        && false_rtx == const0_rtx)
3639                 x = simplify_gen_unary (NEG, mode,
3640                                         gen_binary (cond_code, mode, cond,
3641                                                     cop1),
3642                                         mode);
3643               else if (GET_CODE (false_rtx) == CONST_INT
3644                        && INTVAL (false_rtx) == - STORE_FLAG_VALUE
3645                        && true_rtx == const0_rtx)
3646                 x = simplify_gen_unary (NEG, mode,
3647                                         gen_binary (reverse_condition
3648                                                     (cond_code),
3649                                                     mode, cond, cop1),
3650                                         mode);
3651               else
3652                 return gen_rtx_IF_THEN_ELSE (mode,
3653                                              gen_binary (cond_code, VOIDmode,
3654                                                          cond, cop1),
3655                                              true_rtx, false_rtx);
3656
3657               code = GET_CODE (x);
3658               op0_mode = VOIDmode;
3659             }
3660         }
3661     }
3662
3663   /* Try to fold this expression in case we have constants that weren't
3664      present before.  */
3665   temp = 0;
3666   switch (GET_RTX_CLASS (code))
3667     {
3668     case '1':
3669       temp = simplify_unary_operation (code, mode, XEXP (x, 0), op0_mode);
3670       break;
3671     case '<':
3672       {
3673         enum machine_mode cmp_mode = GET_MODE (XEXP (x, 0));
3674         if (cmp_mode == VOIDmode)
3675           {
3676             cmp_mode = GET_MODE (XEXP (x, 1));
3677             if (cmp_mode == VOIDmode)
3678               cmp_mode = op0_mode;
3679           }
3680         temp = simplify_relational_operation (code, cmp_mode,
3681                                               XEXP (x, 0), XEXP (x, 1));
3682       }
3683 #ifdef FLOAT_STORE_FLAG_VALUE
3684       if (temp != 0 && GET_MODE_CLASS (mode) == MODE_FLOAT)
3685         {
3686           if (temp == const0_rtx)
3687             temp = CONST0_RTX (mode);
3688           else
3689             temp = immed_real_const_1 (FLOAT_STORE_FLAG_VALUE (mode), mode);
3690         }
3691 #endif
3692       break;
3693     case 'c':
3694     case '2':
3695       temp = simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1));
3696       break;
3697     case 'b':
3698     case '3':
3699       temp = simplify_ternary_operation (code, mode, op0_mode, XEXP (x, 0),
3700                                          XEXP (x, 1), XEXP (x, 2));
3701       break;
3702     }
3703
3704   if (temp)
3705     x = temp, code = GET_CODE (temp), op0_mode = VOIDmode;
3706
3707   /* First see if we can apply the inverse distributive law.  */
3708   if (code == PLUS || code == MINUS
3709       || code == AND || code == IOR || code == XOR)
3710     {
3711       x = apply_distributive_law (x);
3712       code = GET_CODE (x);
3713       op0_mode = VOIDmode;
3714     }
3715
3716   /* If CODE is an associative operation not otherwise handled, see if we
3717      can associate some operands.  This can win if they are constants or
3718      if they are logically related (i.e. (a & b) & a.  */
3719   if ((code == PLUS || code == MINUS
3720        || code == MULT || code == AND || code == IOR || code == XOR
3721        || code == DIV || code == UDIV
3722        || code == SMAX || code == SMIN || code == UMAX || code == UMIN)
3723       && INTEGRAL_MODE_P (mode))
3724     {
3725       if (GET_CODE (XEXP (x, 0)) == code)
3726         {
3727           rtx other = XEXP (XEXP (x, 0), 0);
3728           rtx inner_op0 = XEXP (XEXP (x, 0), 1);
3729           rtx inner_op1 = XEXP (x, 1);
3730           rtx inner;
3731
3732           /* Make sure we pass the constant operand if any as the second
3733              one if this is a commutative operation.  */
3734           if (CONSTANT_P (inner_op0) && GET_RTX_CLASS (code) == 'c')
3735             {
3736               rtx tem = inner_op0;
3737               inner_op0 = inner_op1;
3738               inner_op1 = tem;
3739             }
3740           inner = simplify_binary_operation (code == MINUS ? PLUS
3741                                              : code == DIV ? MULT
3742                                              : code == UDIV ? MULT
3743                                              : code,
3744                                              mode, inner_op0, inner_op1);
3745
3746           /* For commutative operations, try the other pair if that one
3747              didn't simplify.  */
3748           if (inner == 0 && GET_RTX_CLASS (code) == 'c')
3749             {
3750               other = XEXP (XEXP (x, 0), 1);
3751               inner = simplify_binary_operation (code, mode,
3752                                                  XEXP (XEXP (x, 0), 0),
3753                                                  XEXP (x, 1));
3754             }
3755
3756           if (inner)
3757             return gen_binary (code, mode, other, inner);
3758         }
3759     }
3760
3761   /* A little bit of algebraic simplification here.  */
3762   switch (code)
3763     {
3764     case MEM:
3765       /* Ensure that our address has any ASHIFTs converted to MULT in case
3766          address-recognizing predicates are called later.  */
3767       temp = make_compound_operation (XEXP (x, 0), MEM);
3768       SUBST (XEXP (x, 0), temp);
3769       break;
3770
3771     case SUBREG:
3772       if (op0_mode == VOIDmode)
3773         op0_mode = GET_MODE (SUBREG_REG (x));
3774
3775       /* simplify_subreg can't use gen_lowpart_for_combine.  */
3776       if (CONSTANT_P (SUBREG_REG (x))
3777           && subreg_lowpart_parts_p (mode, op0_mode, SUBREG_BYTE (x)))
3778         return gen_lowpart_for_combine (mode, SUBREG_REG (x));
3779
3780       {
3781         rtx temp;
3782         temp = simplify_subreg (mode, SUBREG_REG (x), op0_mode,
3783                                 SUBREG_BYTE (x));
3784         if (temp)
3785           return temp;
3786       }
3787
3788       /* Note that we cannot do any narrowing for non-constants since
3789          we might have been counting on using the fact that some bits were
3790          zero.  We now do this in the SET.  */
3791
3792       break;
3793
3794     case NOT:
3795       /* (not (plus X -1)) can become (neg X).  */
3796       if (GET_CODE (XEXP (x, 0)) == PLUS
3797           && XEXP (XEXP (x, 0), 1) == constm1_rtx)
3798         return gen_rtx_NEG (mode, XEXP (XEXP (x, 0), 0));
3799
3800       /* Similarly, (not (neg X)) is (plus X -1).  */
3801       if (GET_CODE (XEXP (x, 0)) == NEG)
3802         return gen_rtx_PLUS (mode, XEXP (XEXP (x, 0), 0), constm1_rtx);
3803
3804       /* (not (xor X C)) for C constant is (xor X D) with D = ~C.  */
3805       if (GET_CODE (XEXP (x, 0)) == XOR
3806           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3807           && (temp = simplify_unary_operation (NOT, mode,
3808                                                XEXP (XEXP (x, 0), 1),
3809                                                mode)) != 0)
3810         return gen_binary (XOR, mode, XEXP (XEXP (x, 0), 0), temp);
3811
3812       /* (not (ashift 1 X)) is (rotate ~1 X).  We used to do this for operands
3813          other than 1, but that is not valid.  We could do a similar
3814          simplification for (not (lshiftrt C X)) where C is just the sign bit,
3815          but this doesn't seem common enough to bother with.  */
3816       if (GET_CODE (XEXP (x, 0)) == ASHIFT
3817           && XEXP (XEXP (x, 0), 0) == const1_rtx)
3818         return gen_rtx_ROTATE (mode, simplify_gen_unary (NOT, mode,
3819                                                          const1_rtx, mode),
3820                                XEXP (XEXP (x, 0), 1));
3821
3822       if (GET_CODE (XEXP (x, 0)) == SUBREG
3823           && subreg_lowpart_p (XEXP (x, 0))
3824           && (GET_MODE_SIZE (GET_MODE (XEXP (x, 0)))
3825               < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (x, 0)))))
3826           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == ASHIFT
3827           && XEXP (SUBREG_REG (XEXP (x, 0)), 0) == const1_rtx)
3828         {
3829           enum machine_mode inner_mode = GET_MODE (SUBREG_REG (XEXP (x, 0)));
3830
3831           x = gen_rtx_ROTATE (inner_mode,
3832                               simplify_gen_unary (NOT, inner_mode, const1_rtx,
3833                                                   inner_mode),
3834                               XEXP (SUBREG_REG (XEXP (x, 0)), 1));
3835           return gen_lowpart_for_combine (mode, x);
3836         }
3837
3838       /* If STORE_FLAG_VALUE is -1, (not (comparison foo bar)) can be done by
3839          reversing the comparison code if valid.  */
3840       if (STORE_FLAG_VALUE == -1
3841           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
3842           && (reversed = reversed_comparison (x, mode, XEXP (XEXP (x, 0), 0),
3843                                               XEXP (XEXP (x, 0), 1))))
3844         return reversed;
3845
3846       /* (ashiftrt foo C) where C is the number of bits in FOO minus 1
3847          is (lt foo (const_int 0)) if STORE_FLAG_VALUE is -1, so we can
3848          perform the above simplification.  */
3849
3850       if (STORE_FLAG_VALUE == -1
3851           && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3852           && XEXP (x, 1) == const1_rtx
3853           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3854           && INTVAL (XEXP (XEXP (x, 0), 1)) == GET_MODE_BITSIZE (mode) - 1)
3855         return gen_rtx_GE (mode, XEXP (XEXP (x, 0), 0), const0_rtx);
3856
3857       /* Apply De Morgan's laws to reduce number of patterns for machines
3858          with negating logical insns (and-not, nand, etc.).  If result has
3859          only one NOT, put it first, since that is how the patterns are
3860          coded.  */
3861
3862       if (GET_CODE (XEXP (x, 0)) == IOR || GET_CODE (XEXP (x, 0)) == AND)
3863         {
3864           rtx in1 = XEXP (XEXP (x, 0), 0), in2 = XEXP (XEXP (x, 0), 1);
3865           enum machine_mode op_mode;
3866
3867           op_mode = GET_MODE (in1);
3868           in1 = simplify_gen_unary (NOT, op_mode, in1, op_mode);
3869
3870           op_mode = GET_MODE (in2);
3871           if (op_mode == VOIDmode)
3872             op_mode = mode;
3873           in2 = simplify_gen_unary (NOT, op_mode, in2, op_mode);
3874
3875           if (GET_CODE (in2) == NOT && GET_CODE (in1) != NOT)
3876             {
3877               rtx tem = in2;
3878               in2 = in1; in1 = tem;
3879             }
3880
3881           return gen_rtx_fmt_ee (GET_CODE (XEXP (x, 0)) == IOR ? AND : IOR,
3882                                  mode, in1, in2);
3883         }
3884       break;
3885
3886     case NEG:
3887       /* (neg (plus X 1)) can become (not X).  */
3888       if (GET_CODE (XEXP (x, 0)) == PLUS
3889           && XEXP (XEXP (x, 0), 1) == const1_rtx)
3890         return gen_rtx_NOT (mode, XEXP (XEXP (x, 0), 0));
3891
3892       /* Similarly, (neg (not X)) is (plus X 1).  */
3893       if (GET_CODE (XEXP (x, 0)) == NOT)
3894         return plus_constant (XEXP (XEXP (x, 0), 0), 1);
3895
3896       /* (neg (minus X Y)) can become (minus Y X).  */
3897       if (GET_CODE (XEXP (x, 0)) == MINUS
3898           && (! FLOAT_MODE_P (mode)
3899               /* x-y != -(y-x) with IEEE floating point.  */
3900               || TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
3901               || flag_unsafe_math_optimizations))
3902         return gen_binary (MINUS, mode, XEXP (XEXP (x, 0), 1),
3903                            XEXP (XEXP (x, 0), 0));
3904
3905       /* (neg (xor A 1)) is (plus A -1) if A is known to be either 0 or 1.  */
3906       if (GET_CODE (XEXP (x, 0)) == XOR && XEXP (XEXP (x, 0), 1) == const1_rtx
3907           && nonzero_bits (XEXP (XEXP (x, 0), 0), mode) == 1)
3908         return gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0), constm1_rtx);
3909
3910       /* NEG commutes with ASHIFT since it is multiplication.  Only do this
3911          if we can then eliminate the NEG (e.g.,
3912          if the operand is a constant).  */
3913
3914       if (GET_CODE (XEXP (x, 0)) == ASHIFT)
3915         {
3916           temp = simplify_unary_operation (NEG, mode,
3917                                            XEXP (XEXP (x, 0), 0), mode);
3918           if (temp)
3919             {
3920               SUBST (XEXP (XEXP (x, 0), 0), temp);
3921               return XEXP (x, 0);
3922             }
3923         }
3924
3925       temp = expand_compound_operation (XEXP (x, 0));
3926
3927       /* For C equal to the width of MODE minus 1, (neg (ashiftrt X C)) can be
3928          replaced by (lshiftrt X C).  This will convert
3929          (neg (sign_extract X 1 Y)) to (zero_extract X 1 Y).  */
3930
3931       if (GET_CODE (temp) == ASHIFTRT
3932           && GET_CODE (XEXP (temp, 1)) == CONST_INT
3933           && INTVAL (XEXP (temp, 1)) == GET_MODE_BITSIZE (mode) - 1)
3934         return simplify_shift_const (temp, LSHIFTRT, mode, XEXP (temp, 0),
3935                                      INTVAL (XEXP (temp, 1)));
3936
3937       /* If X has only a single bit that might be nonzero, say, bit I, convert
3938          (neg X) to (ashiftrt (ashift X C-I) C-I) where C is the bitsize of
3939          MODE minus 1.  This will convert (neg (zero_extract X 1 Y)) to
3940          (sign_extract X 1 Y).  But only do this if TEMP isn't a register
3941          or a SUBREG of one since we'd be making the expression more
3942          complex if it was just a register.  */
3943
3944       if (GET_CODE (temp) != REG
3945           && ! (GET_CODE (temp) == SUBREG
3946                 && GET_CODE (SUBREG_REG (temp)) == REG)
3947           && (i = exact_log2 (nonzero_bits (temp, mode))) >= 0)
3948         {
3949           rtx temp1 = simplify_shift_const
3950             (NULL_RTX, ASHIFTRT, mode,
3951              simplify_shift_const (NULL_RTX, ASHIFT, mode, temp,
3952                                    GET_MODE_BITSIZE (mode) - 1 - i),
3953              GET_MODE_BITSIZE (mode) - 1 - i);
3954
3955           /* If all we did was surround TEMP with the two shifts, we
3956              haven't improved anything, so don't use it.  Otherwise,
3957              we are better off with TEMP1.  */
3958           if (GET_CODE (temp1) != ASHIFTRT
3959               || GET_CODE (XEXP (temp1, 0)) != ASHIFT
3960               || XEXP (XEXP (temp1, 0), 0) != temp)
3961             return temp1;
3962         }
3963       break;
3964
3965     case TRUNCATE:
3966       /* We can't handle truncation to a partial integer mode here
3967          because we don't know the real bitsize of the partial
3968          integer mode.  */
3969       if (GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
3970         break;
3971
3972       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
3973           && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
3974                                     GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))))
3975         SUBST (XEXP (x, 0),
3976                force_to_mode (XEXP (x, 0), GET_MODE (XEXP (x, 0)),
3977                               GET_MODE_MASK (mode), NULL_RTX, 0));
3978
3979       /* (truncate:SI ({sign,zero}_extend:DI foo:SI)) == foo:SI.  */
3980       if ((GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
3981            || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
3982           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
3983         return XEXP (XEXP (x, 0), 0);
3984
3985       /* (truncate:SI (OP:DI ({sign,zero}_extend:DI foo:SI))) is
3986          (OP:SI foo:SI) if OP is NEG or ABS.  */
3987       if ((GET_CODE (XEXP (x, 0)) == ABS
3988            || GET_CODE (XEXP (x, 0)) == NEG)
3989           && (GET_CODE (XEXP (XEXP (x, 0), 0)) == SIGN_EXTEND
3990               || GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND)
3991           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
3992         return simplify_gen_unary (GET_CODE (XEXP (x, 0)), mode,
3993                                    XEXP (XEXP (XEXP (x, 0), 0), 0), mode);
3994
3995       /* (truncate:SI (subreg:DI (truncate:SI X) 0)) is
3996          (truncate:SI x).  */
3997       if (GET_CODE (XEXP (x, 0)) == SUBREG
3998           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == TRUNCATE
3999           && subreg_lowpart_p (XEXP (x, 0)))
4000         return SUBREG_REG (XEXP (x, 0));
4001
4002       /* If we know that the value is already truncated, we can
4003          replace the TRUNCATE with a SUBREG if TRULY_NOOP_TRUNCATION
4004          is nonzero for the corresponding modes.  But don't do this
4005          for an (LSHIFTRT (MULT ...)) since this will cause problems
4006          with the umulXi3_highpart patterns.  */
4007       if (TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
4008                                  GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
4009           && num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4010              >= GET_MODE_BITSIZE (mode) + 1
4011           && ! (GET_CODE (XEXP (x, 0)) == LSHIFTRT
4012                 && GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT))
4013         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4014
4015       /* A truncate of a comparison can be replaced with a subreg if
4016          STORE_FLAG_VALUE permits.  This is like the previous test,
4017          but it works even if the comparison is done in a mode larger
4018          than HOST_BITS_PER_WIDE_INT.  */
4019       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4020           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4021           && ((HOST_WIDE_INT) STORE_FLAG_VALUE & ~GET_MODE_MASK (mode)) == 0)
4022         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4023
4024       /* Similarly, a truncate of a register whose value is a
4025          comparison can be replaced with a subreg if STORE_FLAG_VALUE
4026          permits.  */
4027       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4028           && ((HOST_WIDE_INT) STORE_FLAG_VALUE & ~GET_MODE_MASK (mode)) == 0
4029           && (temp = get_last_value (XEXP (x, 0)))
4030           && GET_RTX_CLASS (GET_CODE (temp)) == '<')
4031         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4032
4033       break;
4034
4035     case FLOAT_TRUNCATE:
4036       /* (float_truncate:SF (float_extend:DF foo:SF)) = foo:SF.  */
4037       if (GET_CODE (XEXP (x, 0)) == FLOAT_EXTEND
4038           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
4039         return XEXP (XEXP (x, 0), 0);
4040
4041       /* (float_truncate:SF (OP:DF (float_extend:DF foo:sf))) is
4042          (OP:SF foo:SF) if OP is NEG or ABS.  */
4043       if ((GET_CODE (XEXP (x, 0)) == ABS
4044            || GET_CODE (XEXP (x, 0)) == NEG)
4045           && GET_CODE (XEXP (XEXP (x, 0), 0)) == FLOAT_EXTEND
4046           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
4047         return simplify_gen_unary (GET_CODE (XEXP (x, 0)), mode,
4048                                    XEXP (XEXP (XEXP (x, 0), 0), 0), mode);
4049
4050       /* (float_truncate:SF (subreg:DF (float_truncate:SF X) 0))
4051          is (float_truncate:SF x).  */
4052       if (GET_CODE (XEXP (x, 0)) == SUBREG
4053           && subreg_lowpart_p (XEXP (x, 0))
4054           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == FLOAT_TRUNCATE)
4055         return SUBREG_REG (XEXP (x, 0));
4056       break;
4057
4058 #ifdef HAVE_cc0
4059     case COMPARE:
4060       /* Convert (compare FOO (const_int 0)) to FOO unless we aren't
4061          using cc0, in which case we want to leave it as a COMPARE
4062          so we can distinguish it from a register-register-copy.  */
4063       if (XEXP (x, 1) == const0_rtx)
4064         return XEXP (x, 0);
4065
4066       /* In IEEE floating point, x-0 is not the same as x.  */
4067       if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
4068            || ! FLOAT_MODE_P (GET_MODE (XEXP (x, 0)))
4069            || flag_unsafe_math_optimizations)
4070           && XEXP (x, 1) == CONST0_RTX (GET_MODE (XEXP (x, 0))))
4071         return XEXP (x, 0);
4072       break;
4073 #endif
4074
4075     case CONST:
4076       /* (const (const X)) can become (const X).  Do it this way rather than
4077          returning the inner CONST since CONST can be shared with a
4078          REG_EQUAL note.  */
4079       if (GET_CODE (XEXP (x, 0)) == CONST)
4080         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4081       break;
4082
4083 #ifdef HAVE_lo_sum
4084     case LO_SUM:
4085       /* Convert (lo_sum (high FOO) FOO) to FOO.  This is necessary so we
4086          can add in an offset.  find_split_point will split this address up
4087          again if it doesn't match.  */
4088       if (GET_CODE (XEXP (x, 0)) == HIGH
4089           && rtx_equal_p (XEXP (XEXP (x, 0), 0), XEXP (x, 1)))
4090         return XEXP (x, 1);
4091       break;
4092 #endif
4093
4094     case PLUS:
4095       /* If we have (plus (plus (A const) B)), associate it so that CONST is
4096          outermost.  That's because that's the way indexed addresses are
4097          supposed to appear.  This code used to check many more cases, but
4098          they are now checked elsewhere.  */
4099       if (GET_CODE (XEXP (x, 0)) == PLUS
4100           && CONSTANT_ADDRESS_P (XEXP (XEXP (x, 0), 1)))
4101         return gen_binary (PLUS, mode,
4102                            gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0),
4103                                        XEXP (x, 1)),
4104                            XEXP (XEXP (x, 0), 1));
4105
4106       /* (plus (xor (and <foo> (const_int pow2 - 1)) <c>) <-c>)
4107          when c is (const_int (pow2 + 1) / 2) is a sign extension of a
4108          bit-field and can be replaced by either a sign_extend or a
4109          sign_extract.  The `and' may be a zero_extend and the two
4110          <c>, -<c> constants may be reversed.  */
4111       if (GET_CODE (XEXP (x, 0)) == XOR
4112           && GET_CODE (XEXP (x, 1)) == CONST_INT
4113           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4114           && INTVAL (XEXP (x, 1)) == -INTVAL (XEXP (XEXP (x, 0), 1))
4115           && ((i = exact_log2 (INTVAL (XEXP (XEXP (x, 0), 1)))) >= 0
4116               || (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
4117           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4118           && ((GET_CODE (XEXP (XEXP (x, 0), 0)) == AND
4119                && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
4120                && (INTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1))
4121                    == ((HOST_WIDE_INT) 1 << (i + 1)) - 1))
4122               || (GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND
4123                   && (GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)))
4124                       == (unsigned int) i + 1))))
4125         return simplify_shift_const
4126           (NULL_RTX, ASHIFTRT, mode,
4127            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4128                                  XEXP (XEXP (XEXP (x, 0), 0), 0),
4129                                  GET_MODE_BITSIZE (mode) - (i + 1)),
4130            GET_MODE_BITSIZE (mode) - (i + 1));
4131
4132       /* (plus (comparison A B) C) can become (neg (rev-comp A B)) if
4133          C is 1 and STORE_FLAG_VALUE is -1 or if C is -1 and STORE_FLAG_VALUE
4134          is 1.  This produces better code than the alternative immediately
4135          below.  */
4136       if (GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4137           && ((STORE_FLAG_VALUE == -1 && XEXP (x, 1) == const1_rtx)
4138               || (STORE_FLAG_VALUE == 1 && XEXP (x, 1) == constm1_rtx))
4139           && (reversed = reversed_comparison (XEXP (x, 0), mode,
4140                                               XEXP (XEXP (x, 0), 0),
4141                                               XEXP (XEXP (x, 0), 1))))
4142         return
4143           simplify_gen_unary (NEG, mode, reversed, mode);
4144
4145       /* If only the low-order bit of X is possibly nonzero, (plus x -1)
4146          can become (ashiftrt (ashift (xor x 1) C) C) where C is
4147          the bitsize of the mode - 1.  This allows simplification of
4148          "a = (b & 8) == 0;"  */
4149       if (XEXP (x, 1) == constm1_rtx
4150           && GET_CODE (XEXP (x, 0)) != REG
4151           && ! (GET_CODE (XEXP (x,0)) == SUBREG
4152                 && GET_CODE (SUBREG_REG (XEXP (x, 0))) == REG)
4153           && nonzero_bits (XEXP (x, 0), mode) == 1)
4154         return simplify_shift_const (NULL_RTX, ASHIFTRT, mode,
4155            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4156                                  gen_rtx_XOR (mode, XEXP (x, 0), const1_rtx),
4157                                  GET_MODE_BITSIZE (mode) - 1),
4158            GET_MODE_BITSIZE (mode) - 1);
4159
4160       /* If we are adding two things that have no bits in common, convert
4161          the addition into an IOR.  This will often be further simplified,
4162          for example in cases like ((a & 1) + (a & 2)), which can
4163          become a & 3.  */
4164
4165       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4166           && (nonzero_bits (XEXP (x, 0), mode)
4167               & nonzero_bits (XEXP (x, 1), mode)) == 0)
4168         {
4169           /* Try to simplify the expression further.  */
4170           rtx tor = gen_binary (IOR, mode, XEXP (x, 0), XEXP (x, 1));
4171           temp = combine_simplify_rtx (tor, mode, last, in_dest);
4172
4173           /* If we could, great.  If not, do not go ahead with the IOR
4174              replacement, since PLUS appears in many special purpose
4175              address arithmetic instructions.  */
4176           if (GET_CODE (temp) != CLOBBER && temp != tor)
4177             return temp;
4178         }
4179       break;
4180
4181     case MINUS:
4182       /* If STORE_FLAG_VALUE is 1, (minus 1 (comparison foo bar)) can be done
4183          by reversing the comparison code if valid.  */
4184       if (STORE_FLAG_VALUE == 1
4185           && XEXP (x, 0) == const1_rtx
4186           && GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) == '<'
4187           && (reversed = reversed_comparison (XEXP (x, 1), mode,
4188                                               XEXP (XEXP (x, 1), 0),
4189                                               XEXP (XEXP (x, 1), 1))))
4190         return reversed;
4191
4192       /* (minus <foo> (and <foo> (const_int -pow2))) becomes
4193          (and <foo> (const_int pow2-1))  */
4194       if (GET_CODE (XEXP (x, 1)) == AND
4195           && GET_CODE (XEXP (XEXP (x, 1), 1)) == CONST_INT
4196           && exact_log2 (-INTVAL (XEXP (XEXP (x, 1), 1))) >= 0
4197           && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
4198         return simplify_and_const_int (NULL_RTX, mode, XEXP (x, 0),
4199                                        -INTVAL (XEXP (XEXP (x, 1), 1)) - 1);
4200
4201       /* Canonicalize (minus A (plus B C)) to (minus (minus A B) C) for
4202          integers.  */
4203       if (GET_CODE (XEXP (x, 1)) == PLUS && INTEGRAL_MODE_P (mode))
4204         return gen_binary (MINUS, mode,
4205                            gen_binary (MINUS, mode, XEXP (x, 0),
4206                                        XEXP (XEXP (x, 1), 0)),
4207                            XEXP (XEXP (x, 1), 1));
4208       break;
4209
4210     case MULT:
4211       /* If we have (mult (plus A B) C), apply the distributive law and then
4212          the inverse distributive law to see if things simplify.  This
4213          occurs mostly in addresses, often when unrolling loops.  */
4214
4215       if (GET_CODE (XEXP (x, 0)) == PLUS)
4216         {
4217           x = apply_distributive_law
4218             (gen_binary (PLUS, mode,
4219                          gen_binary (MULT, mode,
4220                                      XEXP (XEXP (x, 0), 0), XEXP (x, 1)),
4221                          gen_binary (MULT, mode,
4222                                      XEXP (XEXP (x, 0), 1),
4223                                      copy_rtx (XEXP (x, 1)))));
4224
4225           if (GET_CODE (x) != MULT)
4226             return x;
4227         }
4228       break;
4229
4230     case UDIV:
4231       /* If this is a divide by a power of two, treat it as a shift if
4232          its first operand is a shift.  */
4233       if (GET_CODE (XEXP (x, 1)) == CONST_INT
4234           && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0
4235           && (GET_CODE (XEXP (x, 0)) == ASHIFT
4236               || GET_CODE (XEXP (x, 0)) == LSHIFTRT
4237               || GET_CODE (XEXP (x, 0)) == ASHIFTRT
4238               || GET_CODE (XEXP (x, 0)) == ROTATE
4239               || GET_CODE (XEXP (x, 0)) == ROTATERT))
4240         return simplify_shift_const (NULL_RTX, LSHIFTRT, mode, XEXP (x, 0), i);
4241       break;
4242
4243     case EQ:  case NE:
4244     case GT:  case GTU:  case GE:  case GEU:
4245     case LT:  case LTU:  case LE:  case LEU:
4246     case UNEQ:  case LTGT:
4247     case UNGT:  case UNGE:  
4248     case UNLT:  case UNLE:  
4249     case UNORDERED: case ORDERED:
4250       /* If the first operand is a condition code, we can't do anything
4251          with it.  */
4252       if (GET_CODE (XEXP (x, 0)) == COMPARE
4253           || (GET_MODE_CLASS (GET_MODE (XEXP (x, 0))) != MODE_CC
4254 #ifdef HAVE_cc0
4255               && XEXP (x, 0) != cc0_rtx
4256 #endif
4257               ))
4258         {
4259           rtx op0 = XEXP (x, 0);
4260           rtx op1 = XEXP (x, 1);
4261           enum rtx_code new_code;
4262
4263           if (GET_CODE (op0) == COMPARE)
4264             op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
4265
4266           /* Simplify our comparison, if possible.  */
4267           new_code = simplify_comparison (code, &op0, &op1);
4268
4269           /* If STORE_FLAG_VALUE is 1, we can convert (ne x 0) to simply X
4270              if only the low-order bit is possibly nonzero in X (such as when
4271              X is a ZERO_EXTRACT of one bit).  Similarly, we can convert EQ to
4272              (xor X 1) or (minus 1 X); we use the former.  Finally, if X is
4273              known to be either 0 or -1, NE becomes a NEG and EQ becomes
4274              (plus X 1).
4275
4276              Remove any ZERO_EXTRACT we made when thinking this was a
4277              comparison.  It may now be simpler to use, e.g., an AND.  If a
4278              ZERO_EXTRACT is indeed appropriate, it will be placed back by
4279              the call to make_compound_operation in the SET case.  */
4280
4281           if (STORE_FLAG_VALUE == 1
4282               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4283               && op1 == const0_rtx
4284               && mode == GET_MODE (op0)
4285               && nonzero_bits (op0, mode) == 1)
4286             return gen_lowpart_for_combine (mode,
4287                                             expand_compound_operation (op0));
4288
4289           else if (STORE_FLAG_VALUE == 1
4290                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4291                    && op1 == const0_rtx
4292                    && mode == GET_MODE (op0)
4293                    && (num_sign_bit_copies (op0, mode)
4294                        == GET_MODE_BITSIZE (mode)))
4295             {
4296               op0 = expand_compound_operation (op0);
4297               return simplify_gen_unary (NEG, mode,
4298                                          gen_lowpart_for_combine (mode, op0),
4299                                          mode);
4300             }
4301
4302           else if (STORE_FLAG_VALUE == 1
4303                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4304                    && op1 == const0_rtx
4305                    && mode == GET_MODE (op0)
4306                    && nonzero_bits (op0, mode) == 1)
4307             {
4308               op0 = expand_compound_operation (op0);
4309               return gen_binary (XOR, mode,
4310                                  gen_lowpart_for_combine (mode, op0),
4311                                  const1_rtx);
4312             }
4313
4314           else if (STORE_FLAG_VALUE == 1
4315                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4316                    && op1 == const0_rtx
4317                    && mode == GET_MODE (op0)
4318                    && (num_sign_bit_copies (op0, mode)
4319                        == GET_MODE_BITSIZE (mode)))
4320             {
4321               op0 = expand_compound_operation (op0);
4322               return plus_constant (gen_lowpart_for_combine (mode, op0), 1);
4323             }
4324
4325           /* If STORE_FLAG_VALUE is -1, we have cases similar to
4326              those above.  */
4327           if (STORE_FLAG_VALUE == -1
4328               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4329               && op1 == const0_rtx
4330               && (num_sign_bit_copies (op0, mode)
4331                   == GET_MODE_BITSIZE (mode)))
4332             return gen_lowpart_for_combine (mode,
4333                                             expand_compound_operation (op0));
4334
4335           else if (STORE_FLAG_VALUE == -1
4336                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4337                    && op1 == const0_rtx
4338                    && mode == GET_MODE (op0)
4339                    && nonzero_bits (op0, mode) == 1)
4340             {
4341               op0 = expand_compound_operation (op0);
4342               return simplify_gen_unary (NEG, mode,
4343                                          gen_lowpart_for_combine (mode, op0),
4344                                          mode);
4345             }
4346
4347           else if (STORE_FLAG_VALUE == -1
4348                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4349                    && op1 == const0_rtx
4350                    && mode == GET_MODE (op0)
4351                    && (num_sign_bit_copies (op0, mode)
4352                        == GET_MODE_BITSIZE (mode)))
4353             {
4354               op0 = expand_compound_operation (op0);
4355               return simplify_gen_unary (NOT, mode,
4356                                          gen_lowpart_for_combine (mode, op0),
4357                                          mode);
4358             }
4359
4360           /* If X is 0/1, (eq X 0) is X-1.  */
4361           else if (STORE_FLAG_VALUE == -1
4362                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4363                    && op1 == const0_rtx
4364                    && mode == GET_MODE (op0)
4365                    && nonzero_bits (op0, mode) == 1)
4366             {
4367               op0 = expand_compound_operation (op0);
4368               return plus_constant (gen_lowpart_for_combine (mode, op0), -1);
4369             }
4370
4371           /* If STORE_FLAG_VALUE says to just test the sign bit and X has just
4372              one bit that might be nonzero, we can convert (ne x 0) to
4373              (ashift x c) where C puts the bit in the sign bit.  Remove any
4374              AND with STORE_FLAG_VALUE when we are done, since we are only
4375              going to test the sign bit.  */
4376           if (new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4377               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4378               && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
4379                   == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE(mode)-1))
4380               && op1 == const0_rtx
4381               && mode == GET_MODE (op0)
4382               && (i = exact_log2 (nonzero_bits (op0, mode))) >= 0)
4383             {
4384               x = simplify_shift_const (NULL_RTX, ASHIFT, mode,
4385                                         expand_compound_operation (op0),
4386                                         GET_MODE_BITSIZE (mode) - 1 - i);
4387               if (GET_CODE (x) == AND && XEXP (x, 1) == const_true_rtx)
4388                 return XEXP (x, 0);
4389               else
4390                 return x;
4391             }
4392
4393           /* If the code changed, return a whole new comparison.  */
4394           if (new_code != code)
4395             return gen_rtx_fmt_ee (new_code, mode, op0, op1);
4396
4397           /* Otherwise, keep this operation, but maybe change its operands.
4398              This also converts (ne (compare FOO BAR) 0) to (ne FOO BAR).  */
4399           SUBST (XEXP (x, 0), op0);
4400           SUBST (XEXP (x, 1), op1);
4401         }
4402       break;
4403
4404     case IF_THEN_ELSE:
4405       return simplify_if_then_else (x);
4406
4407     case ZERO_EXTRACT:
4408     case SIGN_EXTRACT:
4409     case ZERO_EXTEND:
4410     case SIGN_EXTEND:
4411       /* If we are processing SET_DEST, we are done.  */
4412       if (in_dest)
4413         return x;
4414
4415       return expand_compound_operation (x);
4416
4417     case SET:
4418       return simplify_set (x);
4419
4420     case AND:
4421     case IOR:
4422     case XOR:
4423       return simplify_logical (x, last);
4424
4425     case ABS:
4426       /* (abs (neg <foo>)) -> (abs <foo>) */
4427       if (GET_CODE (XEXP (x, 0)) == NEG)
4428         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4429
4430       /* If the mode of the operand is VOIDmode (i.e. if it is ASM_OPERANDS),
4431          do nothing.  */
4432       if (GET_MODE (XEXP (x, 0)) == VOIDmode)
4433         break;
4434
4435       /* If operand is something known to be positive, ignore the ABS.  */
4436       if (GET_CODE (XEXP (x, 0)) == FFS || GET_CODE (XEXP (x, 0)) == ABS
4437           || ((GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
4438                <= HOST_BITS_PER_WIDE_INT)
4439               && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4440                    & ((HOST_WIDE_INT) 1
4441                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1)))
4442                   == 0)))
4443         return XEXP (x, 0);
4444
4445       /* If operand is known to be only -1 or 0, convert ABS to NEG.  */
4446       if (num_sign_bit_copies (XEXP (x, 0), mode) == GET_MODE_BITSIZE (mode))
4447         return gen_rtx_NEG (mode, XEXP (x, 0));
4448
4449       break;
4450
4451     case FFS:
4452       /* (ffs (*_extend <X>)) = (ffs <X>) */
4453       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
4454           || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
4455         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4456       break;
4457
4458     case FLOAT:
4459       /* (float (sign_extend <X>)) = (float <X>).  */
4460       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND)
4461         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4462       break;
4463
4464     case ASHIFT:
4465     case LSHIFTRT:
4466     case ASHIFTRT:
4467     case ROTATE:
4468     case ROTATERT:
4469       /* If this is a shift by a constant amount, simplify it.  */
4470       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
4471         return simplify_shift_const (x, code, mode, XEXP (x, 0),
4472                                      INTVAL (XEXP (x, 1)));
4473
4474 #ifdef SHIFT_COUNT_TRUNCATED
4475       else if (SHIFT_COUNT_TRUNCATED && GET_CODE (XEXP (x, 1)) != REG)
4476         SUBST (XEXP (x, 1),
4477                force_to_mode (XEXP (x, 1), GET_MODE (x),
4478                               ((HOST_WIDE_INT) 1
4479                                << exact_log2 (GET_MODE_BITSIZE (GET_MODE (x))))
4480                               - 1,
4481                               NULL_RTX, 0));
4482 #endif
4483
4484       break;
4485
4486     case VEC_SELECT:
4487       {
4488         rtx op0 = XEXP (x, 0);
4489         rtx op1 = XEXP (x, 1);
4490         int len;
4491
4492         if (GET_CODE (op1) != PARALLEL)
4493           abort ();
4494         len = XVECLEN (op1, 0);
4495         if (len == 1
4496             && GET_CODE (XVECEXP (op1, 0, 0)) == CONST_INT
4497             && GET_CODE (op0) == VEC_CONCAT)
4498           {
4499             int offset = INTVAL (XVECEXP (op1, 0, 0)) * GET_MODE_SIZE (GET_MODE (x));
4500
4501             /* Try to find the element in the VEC_CONCAT.  */
4502             for (;;)
4503               {
4504                 if (GET_MODE (op0) == GET_MODE (x))
4505                   return op0;
4506                 if (GET_CODE (op0) == VEC_CONCAT)
4507                   {
4508                     HOST_WIDE_INT op0_size = GET_MODE_SIZE (GET_MODE (XEXP (op0, 0)));
4509                     if (op0_size < offset)
4510                       op0 = XEXP (op0, 0);
4511                     else
4512                       {
4513                         offset -= op0_size;
4514                         op0 = XEXP (op0, 1);
4515                       }
4516                   }
4517                 else
4518                   break;
4519               }
4520           }
4521       }
4522
4523       break;
4524       
4525     default:
4526       break;
4527     }
4528
4529   return x;
4530 }
4531 \f
4532 /* Simplify X, an IF_THEN_ELSE expression.  Return the new expression.  */
4533
4534 static rtx
4535 simplify_if_then_else (x)
4536      rtx x;
4537 {
4538   enum machine_mode mode = GET_MODE (x);
4539   rtx cond = XEXP (x, 0);
4540   rtx true_rtx = XEXP (x, 1);
4541   rtx false_rtx = XEXP (x, 2);
4542   enum rtx_code true_code = GET_CODE (cond);
4543   int comparison_p = GET_RTX_CLASS (true_code) == '<';
4544   rtx temp;
4545   int i;
4546   enum rtx_code false_code;
4547   rtx reversed;
4548
4549   /* Simplify storing of the truth value.  */
4550   if (comparison_p && true_rtx == const_true_rtx && false_rtx == const0_rtx)
4551     return gen_binary (true_code, mode, XEXP (cond, 0), XEXP (cond, 1));
4552
4553   /* Also when the truth value has to be reversed.  */
4554   if (comparison_p
4555       && true_rtx == const0_rtx && false_rtx == const_true_rtx
4556       && (reversed = reversed_comparison (cond, mode, XEXP (cond, 0),
4557                                           XEXP (cond, 1))))
4558     return reversed;
4559
4560   /* Sometimes we can simplify the arm of an IF_THEN_ELSE if a register used
4561      in it is being compared against certain values.  Get the true and false
4562      comparisons and see if that says anything about the value of each arm.  */
4563
4564   if (comparison_p
4565       && ((false_code = combine_reversed_comparison_code (cond))
4566           != UNKNOWN)
4567       && GET_CODE (XEXP (cond, 0)) == REG)
4568     {
4569       HOST_WIDE_INT nzb;
4570       rtx from = XEXP (cond, 0);
4571       rtx true_val = XEXP (cond, 1);
4572       rtx false_val = true_val;
4573       int swapped = 0;
4574
4575       /* If FALSE_CODE is EQ, swap the codes and arms.  */
4576
4577       if (false_code == EQ)
4578         {
4579           swapped = 1, true_code = EQ, false_code = NE;
4580           temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4581         }
4582
4583       /* If we are comparing against zero and the expression being tested has
4584          only a single bit that might be nonzero, that is its value when it is
4585          not equal to zero.  Similarly if it is known to be -1 or 0.  */
4586
4587       if (true_code == EQ && true_val == const0_rtx
4588           && exact_log2 (nzb = nonzero_bits (from, GET_MODE (from))) >= 0)
4589         false_code = EQ, false_val = GEN_INT (nzb);
4590       else if (true_code == EQ && true_val == const0_rtx
4591                && (num_sign_bit_copies (from, GET_MODE (from))
4592                    == GET_MODE_BITSIZE (GET_MODE (from))))
4593         false_code = EQ, false_val = constm1_rtx;
4594
4595       /* Now simplify an arm if we know the value of the register in the
4596          branch and it is used in the arm.  Be careful due to the potential
4597          of locally-shared RTL.  */
4598
4599       if (reg_mentioned_p (from, true_rtx))
4600         true_rtx = subst (known_cond (copy_rtx (true_rtx), true_code,
4601                                       from, true_val),
4602                       pc_rtx, pc_rtx, 0, 0);
4603       if (reg_mentioned_p (from, false_rtx))
4604         false_rtx = subst (known_cond (copy_rtx (false_rtx), false_code,
4605                                    from, false_val),
4606                        pc_rtx, pc_rtx, 0, 0);
4607
4608       SUBST (XEXP (x, 1), swapped ? false_rtx : true_rtx);
4609       SUBST (XEXP (x, 2), swapped ? true_rtx : false_rtx);
4610
4611       true_rtx = XEXP (x, 1);
4612       false_rtx = XEXP (x, 2);
4613       true_code = GET_CODE (cond);
4614     }
4615
4616   /* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
4617      reversed, do so to avoid needing two sets of patterns for
4618      subtract-and-branch insns.  Similarly if we have a constant in the true
4619      arm, the false arm is the same as the first operand of the comparison, or
4620      the false arm is more complicated than the true arm.  */
4621
4622   if (comparison_p
4623       && combine_reversed_comparison_code (cond) != UNKNOWN
4624       && (true_rtx == pc_rtx
4625           || (CONSTANT_P (true_rtx)
4626               && GET_CODE (false_rtx) != CONST_INT && false_rtx != pc_rtx)
4627           || true_rtx == const0_rtx
4628           || (GET_RTX_CLASS (GET_CODE (true_rtx)) == 'o'
4629               && GET_RTX_CLASS (GET_CODE (false_rtx)) != 'o')
4630           || (GET_CODE (true_rtx) == SUBREG
4631               && GET_RTX_CLASS (GET_CODE (SUBREG_REG (true_rtx))) == 'o'
4632               && GET_RTX_CLASS (GET_CODE (false_rtx)) != 'o')
4633           || reg_mentioned_p (true_rtx, false_rtx)
4634           || rtx_equal_p (false_rtx, XEXP (cond, 0))))
4635     {
4636       true_code = reversed_comparison_code (cond, NULL);
4637       SUBST (XEXP (x, 0),
4638              reversed_comparison (cond, GET_MODE (cond), XEXP (cond, 0),
4639                                   XEXP (cond, 1)));
4640
4641       SUBST (XEXP (x, 1), false_rtx);
4642       SUBST (XEXP (x, 2), true_rtx);
4643
4644       temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4645       cond = XEXP (x, 0);
4646
4647       /* It is possible that the conditional has been simplified out.  */
4648       true_code = GET_CODE (cond);
4649       comparison_p = GET_RTX_CLASS (true_code) == '<';
4650     }
4651
4652   /* If the two arms are identical, we don't need the comparison.  */
4653
4654   if (rtx_equal_p (true_rtx, false_rtx) && ! side_effects_p (cond))
4655     return true_rtx;
4656
4657   /* Convert a == b ? b : a to "a".  */
4658   if (true_code == EQ && ! side_effects_p (cond)
4659       && (! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4660       && rtx_equal_p (XEXP (cond, 0), false_rtx)
4661       && rtx_equal_p (XEXP (cond, 1), true_rtx))
4662     return false_rtx;
4663   else if (true_code == NE && ! side_effects_p (cond)
4664            && (! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4665            && rtx_equal_p (XEXP (cond, 0), true_rtx)
4666            && rtx_equal_p (XEXP (cond, 1), false_rtx))
4667     return true_rtx;
4668
4669   /* Look for cases where we have (abs x) or (neg (abs X)).  */
4670
4671   if (GET_MODE_CLASS (mode) == MODE_INT
4672       && GET_CODE (false_rtx) == NEG
4673       && rtx_equal_p (true_rtx, XEXP (false_rtx, 0))
4674       && comparison_p
4675       && rtx_equal_p (true_rtx, XEXP (cond, 0))
4676       && ! side_effects_p (true_rtx))
4677     switch (true_code)
4678       {
4679       case GT:
4680       case GE:
4681         return simplify_gen_unary (ABS, mode, true_rtx, mode);
4682       case LT:
4683       case LE:
4684         return
4685           simplify_gen_unary (NEG, mode,
4686                               simplify_gen_unary (ABS, mode, true_rtx, mode),
4687                               mode);
4688     default:
4689       break;
4690       }
4691
4692   /* Look for MIN or MAX.  */
4693
4694   if ((! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4695       && comparison_p
4696       && rtx_equal_p (XEXP (cond, 0), true_rtx)
4697       && rtx_equal_p (XEXP (cond, 1), false_rtx)
4698       && ! side_effects_p (cond))
4699     switch (true_code)
4700       {
4701       case GE:
4702       case GT:
4703         return gen_binary (SMAX, mode, true_rtx, false_rtx);
4704       case LE:
4705       case LT:
4706         return gen_binary (SMIN, mode, true_rtx, false_rtx);
4707       case GEU:
4708       case GTU:
4709         return gen_binary (UMAX, mode, true_rtx, false_rtx);
4710       case LEU:
4711       case LTU:
4712         return gen_binary (UMIN, mode, true_rtx, false_rtx);
4713       default:
4714         break;
4715       }
4716
4717   /* If we have (if_then_else COND (OP Z C1) Z) and OP is an identity when its
4718      second operand is zero, this can be done as (OP Z (mult COND C2)) where
4719      C2 = C1 * STORE_FLAG_VALUE. Similarly if OP has an outer ZERO_EXTEND or
4720      SIGN_EXTEND as long as Z is already extended (so we don't destroy it).
4721      We can do this kind of thing in some cases when STORE_FLAG_VALUE is
4722      neither 1 or -1, but it isn't worth checking for.  */
4723
4724   if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
4725       && comparison_p && mode != VOIDmode && ! side_effects_p (x))
4726     {
4727       rtx t = make_compound_operation (true_rtx, SET);
4728       rtx f = make_compound_operation (false_rtx, SET);
4729       rtx cond_op0 = XEXP (cond, 0);
4730       rtx cond_op1 = XEXP (cond, 1);
4731       enum rtx_code op = NIL, extend_op = NIL;
4732       enum machine_mode m = mode;
4733       rtx z = 0, c1 = NULL_RTX;
4734
4735       if ((GET_CODE (t) == PLUS || GET_CODE (t) == MINUS
4736            || GET_CODE (t) == IOR || GET_CODE (t) == XOR
4737            || GET_CODE (t) == ASHIFT
4738            || GET_CODE (t) == LSHIFTRT || GET_CODE (t) == ASHIFTRT)
4739           && rtx_equal_p (XEXP (t, 0), f))
4740         c1 = XEXP (t, 1), op = GET_CODE (t), z = f;
4741
4742       /* If an identity-zero op is commutative, check whether there
4743          would be a match if we swapped the operands.  */
4744       else if ((GET_CODE (t) == PLUS || GET_CODE (t) == IOR
4745                 || GET_CODE (t) == XOR)
4746                && rtx_equal_p (XEXP (t, 1), f))
4747         c1 = XEXP (t, 0), op = GET_CODE (t), z = f;
4748       else if (GET_CODE (t) == SIGN_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                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4758                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4759                && (num_sign_bit_copies (f, GET_MODE (f))
4760                    > (GET_MODE_BITSIZE (mode)
4761                       - GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (t, 0), 0))))))
4762         {
4763           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4764           extend_op = SIGN_EXTEND;
4765           m = GET_MODE (XEXP (t, 0));
4766         }
4767       else if (GET_CODE (t) == SIGN_EXTEND
4768                && (GET_CODE (XEXP (t, 0)) == PLUS
4769                    || GET_CODE (XEXP (t, 0)) == IOR
4770                    || GET_CODE (XEXP (t, 0)) == XOR)
4771                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4772                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4773                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
4774                && (num_sign_bit_copies (f, GET_MODE (f))
4775                    > (GET_MODE_BITSIZE (mode)
4776                       - GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (t, 0), 1))))))
4777         {
4778           c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
4779           extend_op = SIGN_EXTEND;
4780           m = GET_MODE (XEXP (t, 0));
4781         }
4782       else if (GET_CODE (t) == ZERO_EXTEND
4783                && (GET_CODE (XEXP (t, 0)) == PLUS
4784                    || GET_CODE (XEXP (t, 0)) == MINUS
4785                    || GET_CODE (XEXP (t, 0)) == IOR
4786                    || GET_CODE (XEXP (t, 0)) == XOR
4787                    || GET_CODE (XEXP (t, 0)) == ASHIFT
4788                    || GET_CODE (XEXP (t, 0)) == LSHIFTRT
4789                    || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
4790                && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
4791                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4792                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4793                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4794                && ((nonzero_bits (f, GET_MODE (f))
4795                     & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 0))))
4796                    == 0))
4797         {
4798           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4799           extend_op = ZERO_EXTEND;
4800           m = GET_MODE (XEXP (t, 0));
4801         }
4802       else if (GET_CODE (t) == ZERO_EXTEND
4803                && (GET_CODE (XEXP (t, 0)) == PLUS
4804                    || GET_CODE (XEXP (t, 0)) == IOR
4805                    || GET_CODE (XEXP (t, 0)) == XOR)
4806                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4807                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4808                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4809                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
4810                && ((nonzero_bits (f, GET_MODE (f))
4811                     & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 1))))
4812                    == 0))
4813         {
4814           c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
4815           extend_op = ZERO_EXTEND;
4816           m = GET_MODE (XEXP (t, 0));
4817         }
4818
4819       if (z)
4820         {
4821           temp = subst (gen_binary (true_code, m, cond_op0, cond_op1),
4822                         pc_rtx, pc_rtx, 0, 0);
4823           temp = gen_binary (MULT, m, temp,
4824                              gen_binary (MULT, m, c1, const_true_rtx));
4825           temp = subst (temp, pc_rtx, pc_rtx, 0, 0);
4826           temp = gen_binary (op, m, gen_lowpart_for_combine (m, z), temp);
4827
4828           if (extend_op != NIL)
4829             temp = simplify_gen_unary (extend_op, mode, temp, m);
4830
4831           return temp;
4832         }
4833     }
4834
4835   /* If we have (if_then_else (ne A 0) C1 0) and either A is known to be 0 or
4836      1 and C1 is a single bit or A is known to be 0 or -1 and C1 is the
4837      negation of a single bit, we can convert this operation to a shift.  We
4838      can actually do this more generally, but it doesn't seem worth it.  */
4839
4840   if (true_code == NE && XEXP (cond, 1) == const0_rtx
4841       && false_rtx == const0_rtx && GET_CODE (true_rtx) == CONST_INT
4842       && ((1 == nonzero_bits (XEXP (cond, 0), mode)
4843            && (i = exact_log2 (INTVAL (true_rtx))) >= 0)
4844           || ((num_sign_bit_copies (XEXP (cond, 0), mode)
4845                == GET_MODE_BITSIZE (mode))
4846               && (i = exact_log2 (-INTVAL (true_rtx))) >= 0)))
4847     return
4848       simplify_shift_const (NULL_RTX, ASHIFT, mode,
4849                             gen_lowpart_for_combine (mode, XEXP (cond, 0)), i);
4850
4851   return x;
4852 }
4853 \f
4854 /* Simplify X, a SET expression.  Return the new expression.  */
4855
4856 static rtx
4857 simplify_set (x)
4858      rtx x;
4859 {
4860   rtx src = SET_SRC (x);
4861   rtx dest = SET_DEST (x);
4862   enum machine_mode mode
4863     = GET_MODE (src) != VOIDmode ? GET_MODE (src) : GET_MODE (dest);
4864   rtx other_insn;
4865   rtx *cc_use;
4866
4867   /* (set (pc) (return)) gets written as (return).  */
4868   if (GET_CODE (dest) == PC && GET_CODE (src) == RETURN)
4869     return src;
4870
4871   /* Now that we know for sure which bits of SRC we are using, see if we can
4872      simplify the expression for the object knowing that we only need the
4873      low-order bits.  */
4874
4875   if (GET_MODE_CLASS (mode) == MODE_INT)
4876     {
4877       src = force_to_mode (src, mode, ~(HOST_WIDE_INT) 0, NULL_RTX, 0);
4878       SUBST (SET_SRC (x), src);
4879     }
4880
4881   /* If we are setting CC0 or if the source is a COMPARE, look for the use of
4882      the comparison result and try to simplify it unless we already have used
4883      undobuf.other_insn.  */
4884   if ((GET_CODE (src) == COMPARE
4885 #ifdef HAVE_cc0
4886        || dest == cc0_rtx
4887 #endif
4888        )
4889       && (cc_use = find_single_use (dest, subst_insn, &other_insn)) != 0
4890       && (undobuf.other_insn == 0 || other_insn == undobuf.other_insn)
4891       && GET_RTX_CLASS (GET_CODE (*cc_use)) == '<'
4892       && rtx_equal_p (XEXP (*cc_use, 0), dest))
4893     {
4894       enum rtx_code old_code = GET_CODE (*cc_use);
4895       enum rtx_code new_code;
4896       rtx op0, op1;
4897       int other_changed = 0;
4898       enum machine_mode compare_mode = GET_MODE (dest);
4899
4900       if (GET_CODE (src) == COMPARE)
4901         op0 = XEXP (src, 0), op1 = XEXP (src, 1);
4902       else
4903         op0 = src, op1 = const0_rtx;
4904
4905       /* Simplify our comparison, if possible.  */
4906       new_code = simplify_comparison (old_code, &op0, &op1);
4907
4908 #ifdef EXTRA_CC_MODES
4909       /* If this machine has CC modes other than CCmode, check to see if we
4910          need to use a different CC mode here.  */
4911       compare_mode = SELECT_CC_MODE (new_code, op0, op1);
4912 #endif /* EXTRA_CC_MODES */
4913
4914 #if !defined (HAVE_cc0) && defined (EXTRA_CC_MODES)
4915       /* If the mode changed, we have to change SET_DEST, the mode in the
4916          compare, and the mode in the place SET_DEST is used.  If SET_DEST is
4917          a hard register, just build new versions with the proper mode.  If it
4918          is a pseudo, we lose unless it is only time we set the pseudo, in
4919          which case we can safely change its mode.  */
4920       if (compare_mode != GET_MODE (dest))
4921         {
4922           unsigned int regno = REGNO (dest);
4923           rtx new_dest = gen_rtx_REG (compare_mode, regno);
4924
4925           if (regno < FIRST_PSEUDO_REGISTER
4926               || (REG_N_SETS (regno) == 1 && ! REG_USERVAR_P (dest)))
4927             {
4928               if (regno >= FIRST_PSEUDO_REGISTER)
4929                 SUBST (regno_reg_rtx[regno], new_dest);
4930
4931               SUBST (SET_DEST (x), new_dest);
4932               SUBST (XEXP (*cc_use, 0), new_dest);
4933               other_changed = 1;
4934
4935               dest = new_dest;
4936             }
4937         }
4938 #endif
4939
4940       /* If the code changed, we have to build a new comparison in
4941          undobuf.other_insn.  */
4942       if (new_code != old_code)
4943         {
4944           unsigned HOST_WIDE_INT mask;
4945
4946           SUBST (*cc_use, gen_rtx_fmt_ee (new_code, GET_MODE (*cc_use),
4947                                           dest, const0_rtx));
4948
4949           /* If the only change we made was to change an EQ into an NE or
4950              vice versa, OP0 has only one bit that might be nonzero, and OP1
4951              is zero, check if changing the user of the condition code will
4952              produce a valid insn.  If it won't, we can keep the original code
4953              in that insn by surrounding our operation with an XOR.  */
4954
4955           if (((old_code == NE && new_code == EQ)
4956                || (old_code == EQ && new_code == NE))
4957               && ! other_changed && op1 == const0_rtx
4958               && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
4959               && exact_log2 (mask = nonzero_bits (op0, GET_MODE (op0))) >= 0)
4960             {
4961               rtx pat = PATTERN (other_insn), note = 0;
4962
4963               if ((recog_for_combine (&pat, other_insn, &note) < 0
4964                    && ! check_asm_operands (pat)))
4965                 {
4966                   PUT_CODE (*cc_use, old_code);
4967                   other_insn = 0;
4968
4969                   op0 = gen_binary (XOR, GET_MODE (op0), op0, GEN_INT (mask));
4970                 }
4971             }
4972
4973           other_changed = 1;
4974         }
4975
4976       if (other_changed)
4977         undobuf.other_insn = other_insn;
4978
4979 #ifdef HAVE_cc0
4980       /* If we are now comparing against zero, change our source if
4981          needed.  If we do not use cc0, we always have a COMPARE.  */
4982       if (op1 == const0_rtx && dest == cc0_rtx)
4983         {
4984           SUBST (SET_SRC (x), op0);
4985           src = op0;
4986         }
4987       else
4988 #endif
4989
4990       /* Otherwise, if we didn't previously have a COMPARE in the
4991          correct mode, we need one.  */
4992       if (GET_CODE (src) != COMPARE || GET_MODE (src) != compare_mode)
4993         {
4994           SUBST (SET_SRC (x), gen_rtx_COMPARE (compare_mode, op0, op1));
4995           src = SET_SRC (x);
4996         }
4997       else
4998         {
4999           /* Otherwise, update the COMPARE if needed.  */
5000           SUBST (XEXP (src, 0), op0);
5001           SUBST (XEXP (src, 1), op1);
5002         }
5003     }
5004   else
5005     {
5006       /* Get SET_SRC in a form where we have placed back any
5007          compound expressions.  Then do the checks below.  */
5008       src = make_compound_operation (src, SET);
5009       SUBST (SET_SRC (x), src);
5010     }
5011
5012   /* If we have (set x (subreg:m1 (op:m2 ...) 0)) with OP being some operation,
5013      and X being a REG or (subreg (reg)), we may be able to convert this to
5014      (set (subreg:m2 x) (op)).
5015
5016      We can always do this if M1 is narrower than M2 because that means that
5017      we only care about the low bits of the result.
5018
5019      However, on machines without WORD_REGISTER_OPERATIONS defined, we cannot
5020      perform a narrower operation than requested since the high-order bits will
5021      be undefined.  On machine where it is defined, this transformation is safe
5022      as long as M1 and M2 have the same number of words.  */
5023
5024   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
5025       && GET_RTX_CLASS (GET_CODE (SUBREG_REG (src))) != 'o'
5026       && (((GET_MODE_SIZE (GET_MODE (src)) + (UNITS_PER_WORD - 1))
5027            / UNITS_PER_WORD)
5028           == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))
5029                + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))
5030 #ifndef WORD_REGISTER_OPERATIONS
5031       && (GET_MODE_SIZE (GET_MODE (src))
5032           < GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5033 #endif
5034 #ifdef CLASS_CANNOT_CHANGE_MODE
5035       && ! (GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER
5036             && (TEST_HARD_REG_BIT
5037                 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
5038                  REGNO (dest)))
5039             && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (src),
5040                                            GET_MODE (SUBREG_REG (src))))
5041 #endif
5042       && (GET_CODE (dest) == REG
5043           || (GET_CODE (dest) == SUBREG
5044               && GET_CODE (SUBREG_REG (dest)) == REG)))
5045     {
5046       SUBST (SET_DEST (x),
5047              gen_lowpart_for_combine (GET_MODE (SUBREG_REG (src)),
5048                                       dest));
5049       SUBST (SET_SRC (x), SUBREG_REG (src));
5050
5051       src = SET_SRC (x), dest = SET_DEST (x);
5052     }
5053
5054 #ifdef LOAD_EXTEND_OP
5055   /* If we have (set FOO (subreg:M (mem:N BAR) 0)) with M wider than N, this
5056      would require a paradoxical subreg.  Replace the subreg with a
5057      zero_extend to avoid the reload that would otherwise be required.  */
5058
5059   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
5060       && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))) != NIL
5061       && SUBREG_BYTE (src) == 0
5062       && (GET_MODE_SIZE (GET_MODE (src))
5063           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5064       && GET_CODE (SUBREG_REG (src)) == MEM)
5065     {
5066       SUBST (SET_SRC (x),
5067              gen_rtx (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))),
5068                       GET_MODE (src), SUBREG_REG (src)));
5069
5070       src = SET_SRC (x);
5071     }
5072 #endif
5073
5074   /* If we don't have a conditional move, SET_SRC is an IF_THEN_ELSE, and we
5075      are comparing an item known to be 0 or -1 against 0, use a logical
5076      operation instead. Check for one of the arms being an IOR of the other
5077      arm with some value.  We compute three terms to be IOR'ed together.  In
5078      practice, at most two will be nonzero.  Then we do the IOR's.  */
5079
5080   if (GET_CODE (dest) != PC
5081       && GET_CODE (src) == IF_THEN_ELSE
5082       && GET_MODE_CLASS (GET_MODE (src)) == MODE_INT
5083       && (GET_CODE (XEXP (src, 0)) == EQ || GET_CODE (XEXP (src, 0)) == NE)
5084       && XEXP (XEXP (src, 0), 1) == const0_rtx
5085       && GET_MODE (src) == GET_MODE (XEXP (XEXP (src, 0), 0))
5086 #ifdef HAVE_conditional_move
5087       && ! can_conditionally_move_p (GET_MODE (src))
5088 #endif
5089       && (num_sign_bit_copies (XEXP (XEXP (src, 0), 0),
5090                                GET_MODE (XEXP (XEXP (src, 0), 0)))
5091           == GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (src, 0), 0))))
5092       && ! side_effects_p (src))
5093     {
5094       rtx true_rtx = (GET_CODE (XEXP (src, 0)) == NE
5095                       ? XEXP (src, 1) : XEXP (src, 2));
5096       rtx false_rtx = (GET_CODE (XEXP (src, 0)) == NE
5097                    ? XEXP (src, 2) : XEXP (src, 1));
5098       rtx term1 = const0_rtx, term2, term3;
5099
5100       if (GET_CODE (true_rtx) == IOR
5101           && rtx_equal_p (XEXP (true_rtx, 0), false_rtx))
5102         term1 = false_rtx, true_rtx = XEXP(true_rtx, 1), false_rtx = const0_rtx;
5103       else if (GET_CODE (true_rtx) == IOR
5104                && rtx_equal_p (XEXP (true_rtx, 1), false_rtx))
5105         term1 = false_rtx, true_rtx = XEXP(true_rtx, 0), false_rtx = const0_rtx;
5106       else if (GET_CODE (false_rtx) == IOR
5107                && rtx_equal_p (XEXP (false_rtx, 0), true_rtx))
5108         term1 = true_rtx, false_rtx = XEXP(false_rtx, 1), true_rtx = const0_rtx;
5109       else if (GET_CODE (false_rtx) == IOR
5110                && rtx_equal_p (XEXP (false_rtx, 1), true_rtx))
5111         term1 = true_rtx, false_rtx = XEXP(false_rtx, 0), true_rtx = const0_rtx;
5112
5113       term2 = gen_binary (AND, GET_MODE (src),
5114                           XEXP (XEXP (src, 0), 0), true_rtx);
5115       term3 = gen_binary (AND, GET_MODE (src),
5116                           simplify_gen_unary (NOT, GET_MODE (src),
5117                                               XEXP (XEXP (src, 0), 0),
5118                                               GET_MODE (src)),
5119                           false_rtx);
5120
5121       SUBST (SET_SRC (x),
5122              gen_binary (IOR, GET_MODE (src),
5123                          gen_binary (IOR, GET_MODE (src), term1, term2),
5124                          term3));
5125
5126       src = SET_SRC (x);
5127     }
5128
5129   /* If either SRC or DEST is a CLOBBER of (const_int 0), make this
5130      whole thing fail.  */
5131   if (GET_CODE (src) == CLOBBER && XEXP (src, 0) == const0_rtx)
5132     return src;
5133   else if (GET_CODE (dest) == CLOBBER && XEXP (dest, 0) == const0_rtx)
5134     return dest;
5135   else
5136     /* Convert this into a field assignment operation, if possible.  */
5137     return make_field_assignment (x);
5138 }
5139 \f
5140 /* Simplify, X, and AND, IOR, or XOR operation, and return the simplified
5141    result.  LAST is nonzero if this is the last retry.  */
5142
5143 static rtx
5144 simplify_logical (x, last)
5145      rtx x;
5146      int last;
5147 {
5148   enum machine_mode mode = GET_MODE (x);
5149   rtx op0 = XEXP (x, 0);
5150   rtx op1 = XEXP (x, 1);
5151   rtx reversed;
5152
5153   switch (GET_CODE (x))
5154     {
5155     case AND:
5156       /* Convert (A ^ B) & A to A & (~B) since the latter is often a single
5157          insn (and may simplify more).  */
5158       if (GET_CODE (op0) == XOR
5159           && rtx_equal_p (XEXP (op0, 0), op1)
5160           && ! side_effects_p (op1))
5161         x = gen_binary (AND, mode,
5162                         simplify_gen_unary (NOT, mode, XEXP (op0, 1), mode),
5163                         op1);
5164
5165       if (GET_CODE (op0) == XOR
5166           && rtx_equal_p (XEXP (op0, 1), op1)
5167           && ! side_effects_p (op1))
5168         x = gen_binary (AND, mode,
5169                         simplify_gen_unary (NOT, mode, XEXP (op0, 0), mode),
5170                         op1);
5171
5172       /* Similarly for (~(A ^ B)) & A.  */
5173       if (GET_CODE (op0) == NOT
5174           && GET_CODE (XEXP (op0, 0)) == XOR
5175           && rtx_equal_p (XEXP (XEXP (op0, 0), 0), op1)
5176           && ! side_effects_p (op1))
5177         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 1), op1);
5178
5179       if (GET_CODE (op0) == NOT
5180           && GET_CODE (XEXP (op0, 0)) == XOR
5181           && rtx_equal_p (XEXP (XEXP (op0, 0), 1), op1)
5182           && ! side_effects_p (op1))
5183         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 0), op1);
5184
5185       /* We can call simplify_and_const_int only if we don't lose
5186          any (sign) bits when converting INTVAL (op1) to
5187          "unsigned HOST_WIDE_INT".  */
5188       if (GET_CODE (op1) == CONST_INT
5189           && (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5190               || INTVAL (op1) > 0))
5191         {
5192           x = simplify_and_const_int (x, mode, op0, INTVAL (op1));
5193
5194           /* If we have (ior (and (X C1) C2)) and the next restart would be
5195              the last, simplify this by making C1 as small as possible
5196              and then exit.  */
5197           if (last
5198               && GET_CODE (x) == IOR && GET_CODE (op0) == AND
5199               && GET_CODE (XEXP (op0, 1)) == CONST_INT
5200               && GET_CODE (op1) == CONST_INT)
5201             return gen_binary (IOR, mode,
5202                                gen_binary (AND, mode, XEXP (op0, 0),
5203                                            GEN_INT (INTVAL (XEXP (op0, 1))
5204                                                     & ~INTVAL (op1))), op1);
5205
5206           if (GET_CODE (x) != AND)
5207             return x;
5208
5209           if (GET_RTX_CLASS (GET_CODE (x)) == 'c'
5210               || GET_RTX_CLASS (GET_CODE (x)) == '2')
5211             op0 = XEXP (x, 0), op1 = XEXP (x, 1);
5212         }
5213
5214       /* Convert (A | B) & A to A.  */
5215       if (GET_CODE (op0) == IOR
5216           && (rtx_equal_p (XEXP (op0, 0), op1)
5217               || rtx_equal_p (XEXP (op0, 1), op1))
5218           && ! side_effects_p (XEXP (op0, 0))
5219           && ! side_effects_p (XEXP (op0, 1)))
5220         return op1;
5221
5222       /* In the following group of tests (and those in case IOR below),
5223          we start with some combination of logical operations and apply
5224          the distributive law followed by the inverse distributive law.
5225          Most of the time, this results in no change.  However, if some of
5226          the operands are the same or inverses of each other, simplifications
5227          will result.
5228
5229          For example, (and (ior A B) (not B)) can occur as the result of
5230          expanding a bit field assignment.  When we apply the distributive
5231          law to this, we get (ior (and (A (not B))) (and (B (not B)))),
5232          which then simplifies to (and (A (not B))).
5233
5234          If we have (and (ior A B) C), apply the distributive law and then
5235          the inverse distributive law to see if things simplify.  */
5236
5237       if (GET_CODE (op0) == IOR || GET_CODE (op0) == XOR)
5238         {
5239           x = apply_distributive_law
5240             (gen_binary (GET_CODE (op0), mode,
5241                          gen_binary (AND, mode, XEXP (op0, 0), op1),
5242                          gen_binary (AND, mode, XEXP (op0, 1),
5243                                      copy_rtx (op1))));
5244           if (GET_CODE (x) != AND)
5245             return x;
5246         }
5247
5248       if (GET_CODE (op1) == IOR || GET_CODE (op1) == XOR)
5249         return apply_distributive_law
5250           (gen_binary (GET_CODE (op1), mode,
5251                        gen_binary (AND, mode, XEXP (op1, 0), op0),
5252                        gen_binary (AND, mode, XEXP (op1, 1),
5253                                    copy_rtx (op0))));
5254
5255       /* Similarly, taking advantage of the fact that
5256          (and (not A) (xor B C)) == (xor (ior A B) (ior A C))  */
5257
5258       if (GET_CODE (op0) == NOT && GET_CODE (op1) == XOR)
5259         return apply_distributive_law
5260           (gen_binary (XOR, mode,
5261                        gen_binary (IOR, mode, XEXP (op0, 0), XEXP (op1, 0)),
5262                        gen_binary (IOR, mode, copy_rtx (XEXP (op0, 0)),
5263                                    XEXP (op1, 1))));
5264
5265       else if (GET_CODE (op1) == NOT && GET_CODE (op0) == XOR)
5266         return apply_distributive_law
5267           (gen_binary (XOR, mode,
5268                        gen_binary (IOR, mode, XEXP (op1, 0), XEXP (op0, 0)),
5269                        gen_binary (IOR, mode, copy_rtx (XEXP (op1, 0)), XEXP (op0, 1))));
5270       break;
5271
5272     case IOR:
5273       /* (ior A C) is C if all bits of A that might be nonzero are on in C.  */
5274       if (GET_CODE (op1) == CONST_INT
5275           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5276           && (nonzero_bits (op0, mode) & ~INTVAL (op1)) == 0)
5277         return op1;
5278
5279       /* Convert (A & B) | A to A.  */
5280       if (GET_CODE (op0) == AND
5281           && (rtx_equal_p (XEXP (op0, 0), op1)
5282               || rtx_equal_p (XEXP (op0, 1), op1))
5283           && ! side_effects_p (XEXP (op0, 0))
5284           && ! side_effects_p (XEXP (op0, 1)))
5285         return op1;
5286
5287       /* If we have (ior (and A B) C), apply the distributive law and then
5288          the inverse distributive law to see if things simplify.  */
5289
5290       if (GET_CODE (op0) == AND)
5291         {
5292           x = apply_distributive_law
5293             (gen_binary (AND, mode,
5294                          gen_binary (IOR, mode, XEXP (op0, 0), op1),
5295                          gen_binary (IOR, mode, XEXP (op0, 1),
5296                                      copy_rtx (op1))));
5297
5298           if (GET_CODE (x) != IOR)
5299             return x;
5300         }
5301
5302       if (GET_CODE (op1) == AND)
5303         {
5304           x = apply_distributive_law
5305             (gen_binary (AND, mode,
5306                          gen_binary (IOR, mode, XEXP (op1, 0), op0),
5307                          gen_binary (IOR, mode, XEXP (op1, 1),
5308                                      copy_rtx (op0))));
5309
5310           if (GET_CODE (x) != IOR)
5311             return x;
5312         }
5313
5314       /* Convert (ior (ashift A CX) (lshiftrt A CY)) where CX+CY equals the
5315          mode size to (rotate A CX).  */
5316
5317       if (((GET_CODE (op0) == ASHIFT && GET_CODE (op1) == LSHIFTRT)
5318            || (GET_CODE (op1) == ASHIFT && GET_CODE (op0) == LSHIFTRT))
5319           && rtx_equal_p (XEXP (op0, 0), XEXP (op1, 0))
5320           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5321           && GET_CODE (XEXP (op1, 1)) == CONST_INT
5322           && (INTVAL (XEXP (op0, 1)) + INTVAL (XEXP (op1, 1))
5323               == GET_MODE_BITSIZE (mode)))
5324         return gen_rtx_ROTATE (mode, XEXP (op0, 0),
5325                                (GET_CODE (op0) == ASHIFT
5326                                 ? XEXP (op0, 1) : XEXP (op1, 1)));
5327
5328       /* If OP0 is (ashiftrt (plus ...) C), it might actually be
5329          a (sign_extend (plus ...)).  If so, OP1 is a CONST_INT, and the PLUS
5330          does not affect any of the bits in OP1, it can really be done
5331          as a PLUS and we can associate.  We do this by seeing if OP1
5332          can be safely shifted left C bits.  */
5333       if (GET_CODE (op1) == CONST_INT && GET_CODE (op0) == ASHIFTRT
5334           && GET_CODE (XEXP (op0, 0)) == PLUS
5335           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
5336           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5337           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT)
5338         {
5339           int count = INTVAL (XEXP (op0, 1));
5340           HOST_WIDE_INT mask = INTVAL (op1) << count;
5341
5342           if (mask >> count == INTVAL (op1)
5343               && (mask & nonzero_bits (XEXP (op0, 0), mode)) == 0)
5344             {
5345               SUBST (XEXP (XEXP (op0, 0), 1),
5346                      GEN_INT (INTVAL (XEXP (XEXP (op0, 0), 1)) | mask));
5347               return op0;
5348             }
5349         }
5350       break;
5351
5352     case XOR:
5353       /* If we are XORing two things that have no bits in common,
5354          convert them into an IOR.  This helps to detect rotation encoded
5355          using those methods and possibly other simplifications.  */
5356
5357       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5358           && (nonzero_bits (op0, mode)
5359               & nonzero_bits (op1, mode)) == 0)
5360         return (gen_binary (IOR, mode, op0, op1));
5361
5362       /* Convert (XOR (NOT x) (NOT y)) to (XOR x y).
5363          Also convert (XOR (NOT x) y) to (NOT (XOR x y)), similarly for
5364          (NOT y).  */
5365       {
5366         int num_negated = 0;
5367
5368         if (GET_CODE (op0) == NOT)
5369           num_negated++, op0 = XEXP (op0, 0);
5370         if (GET_CODE (op1) == NOT)
5371           num_negated++, op1 = XEXP (op1, 0);
5372
5373         if (num_negated == 2)
5374           {
5375             SUBST (XEXP (x, 0), op0);
5376             SUBST (XEXP (x, 1), op1);
5377           }
5378         else if (num_negated == 1)
5379           return
5380             simplify_gen_unary (NOT, mode, gen_binary (XOR, mode, op0, op1),
5381                                 mode);
5382       }
5383
5384       /* Convert (xor (and A B) B) to (and (not A) B).  The latter may
5385          correspond to a machine insn or result in further simplifications
5386          if B is a constant.  */
5387
5388       if (GET_CODE (op0) == AND
5389           && rtx_equal_p (XEXP (op0, 1), op1)
5390           && ! side_effects_p (op1))
5391         return gen_binary (AND, mode,
5392                            simplify_gen_unary (NOT, mode, XEXP (op0, 0), mode),
5393                            op1);
5394
5395       else if (GET_CODE (op0) == AND
5396                && rtx_equal_p (XEXP (op0, 0), op1)
5397                && ! side_effects_p (op1))
5398         return gen_binary (AND, mode,
5399                            simplify_gen_unary (NOT, mode, XEXP (op0, 1), mode),
5400                            op1);
5401
5402       /* (xor (comparison foo bar) (const_int 1)) can become the reversed
5403          comparison if STORE_FLAG_VALUE is 1.  */
5404       if (STORE_FLAG_VALUE == 1
5405           && op1 == const1_rtx
5406           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5407           && (reversed = reversed_comparison (op0, mode, XEXP (op0, 0),
5408                                               XEXP (op0, 1))))
5409         return reversed;
5410
5411       /* (lshiftrt foo C) where C is the number of bits in FOO minus 1
5412          is (lt foo (const_int 0)), so we can perform the above
5413          simplification if STORE_FLAG_VALUE is 1.  */
5414
5415       if (STORE_FLAG_VALUE == 1
5416           && op1 == const1_rtx
5417           && GET_CODE (op0) == LSHIFTRT
5418           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5419           && INTVAL (XEXP (op0, 1)) == GET_MODE_BITSIZE (mode) - 1)
5420         return gen_rtx_GE (mode, XEXP (op0, 0), const0_rtx);
5421
5422       /* (xor (comparison foo bar) (const_int sign-bit))
5423          when STORE_FLAG_VALUE is the sign bit.  */
5424       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5425           && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
5426               == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (mode) - 1))
5427           && op1 == const_true_rtx
5428           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5429           && (reversed = reversed_comparison (op0, mode, XEXP (op0, 0),
5430                                               XEXP (op0, 1))))
5431         return reversed;
5432
5433       break;
5434
5435     default:
5436       abort ();
5437     }
5438
5439   return x;
5440 }
5441 \f
5442 /* We consider ZERO_EXTRACT, SIGN_EXTRACT, and SIGN_EXTEND as "compound
5443    operations" because they can be replaced with two more basic operations.
5444    ZERO_EXTEND is also considered "compound" because it can be replaced with
5445    an AND operation, which is simpler, though only one operation.
5446
5447    The function expand_compound_operation is called with an rtx expression
5448    and will convert it to the appropriate shifts and AND operations,
5449    simplifying at each stage.
5450
5451    The function make_compound_operation is called to convert an expression
5452    consisting of shifts and ANDs into the equivalent compound expression.
5453    It is the inverse of this function, loosely speaking.  */
5454
5455 static rtx
5456 expand_compound_operation (x)
5457      rtx x;
5458 {
5459   unsigned HOST_WIDE_INT pos = 0, len;
5460   int unsignedp = 0;
5461   unsigned int modewidth;
5462   rtx tem;
5463
5464   switch (GET_CODE (x))
5465     {
5466     case ZERO_EXTEND:
5467       unsignedp = 1;
5468     case SIGN_EXTEND:
5469       /* We can't necessarily use a const_int for a multiword mode;
5470          it depends on implicitly extending the value.
5471          Since we don't know the right way to extend it,
5472          we can't tell whether the implicit way is right.
5473
5474          Even for a mode that is no wider than a const_int,
5475          we can't win, because we need to sign extend one of its bits through
5476          the rest of it, and we don't know which bit.  */
5477       if (GET_CODE (XEXP (x, 0)) == CONST_INT)
5478         return x;
5479
5480       /* Return if (subreg:MODE FROM 0) is not a safe replacement for
5481          (zero_extend:MODE FROM) or (sign_extend:MODE FROM).  It is for any MEM
5482          because (SUBREG (MEM...)) is guaranteed to cause the MEM to be
5483          reloaded. If not for that, MEM's would very rarely be safe.
5484
5485          Reject MODEs bigger than a word, because we might not be able
5486          to reference a two-register group starting with an arbitrary register
5487          (and currently gen_lowpart might crash for a SUBREG).  */
5488
5489       if (GET_MODE_SIZE (GET_MODE (XEXP (x, 0))) > UNITS_PER_WORD)
5490         return x;
5491
5492       len = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)));
5493       /* If the inner object has VOIDmode (the only way this can happen
5494          is if it is a ASM_OPERANDS), we can't do anything since we don't
5495          know how much masking to do.  */
5496       if (len == 0)
5497         return x;
5498
5499       break;
5500
5501     case ZERO_EXTRACT:
5502       unsignedp = 1;
5503     case SIGN_EXTRACT:
5504       /* If the operand is a CLOBBER, just return it.  */
5505       if (GET_CODE (XEXP (x, 0)) == CLOBBER)
5506         return XEXP (x, 0);
5507
5508       if (GET_CODE (XEXP (x, 1)) != CONST_INT
5509           || GET_CODE (XEXP (x, 2)) != CONST_INT
5510           || GET_MODE (XEXP (x, 0)) == VOIDmode)
5511         return x;
5512
5513       len = INTVAL (XEXP (x, 1));
5514       pos = INTVAL (XEXP (x, 2));
5515
5516       /* If this goes outside the object being extracted, replace the object
5517          with a (use (mem ...)) construct that only combine understands
5518          and is used only for this purpose.  */
5519       if (len + pos > GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
5520         SUBST (XEXP (x, 0), gen_rtx_USE (GET_MODE (x), XEXP (x, 0)));
5521
5522       if (BITS_BIG_ENDIAN)
5523         pos = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - len - pos;
5524
5525       break;
5526
5527     default:
5528       return x;
5529     }
5530   /* Convert sign extension to zero extension, if we know that the high
5531      bit is not set, as this is easier to optimize.  It will be converted
5532      back to cheaper alternative in make_extraction.  */
5533   if (GET_CODE (x) == SIGN_EXTEND
5534       && (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5535           && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
5536                 & ~(((unsigned HOST_WIDE_INT)
5537                       GET_MODE_MASK (GET_MODE (XEXP (x, 0))))
5538                      >> 1))
5539                == 0)))
5540     {
5541       rtx temp = gen_rtx_ZERO_EXTEND (GET_MODE (x), XEXP (x, 0));
5542       return expand_compound_operation (temp);
5543     }
5544
5545   /* We can optimize some special cases of ZERO_EXTEND.  */
5546   if (GET_CODE (x) == ZERO_EXTEND)
5547     {
5548       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI if we
5549          know that the last value didn't have any inappropriate bits
5550          set.  */
5551       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5552           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5553           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5554           && (nonzero_bits (XEXP (XEXP (x, 0), 0), GET_MODE (x))
5555               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5556         return XEXP (XEXP (x, 0), 0);
5557
5558       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5559       if (GET_CODE (XEXP (x, 0)) == SUBREG
5560           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5561           && subreg_lowpart_p (XEXP (x, 0))
5562           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5563           && (nonzero_bits (SUBREG_REG (XEXP (x, 0)), GET_MODE (x))
5564               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5565         return SUBREG_REG (XEXP (x, 0));
5566
5567       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI when foo
5568          is a comparison and STORE_FLAG_VALUE permits.  This is like
5569          the first case, but it works even when GET_MODE (x) is larger
5570          than HOST_WIDE_INT.  */
5571       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5572           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5573           && GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) == '<'
5574           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5575               <= HOST_BITS_PER_WIDE_INT)
5576           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5577               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5578         return XEXP (XEXP (x, 0), 0);
5579
5580       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5581       if (GET_CODE (XEXP (x, 0)) == SUBREG
5582           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5583           && subreg_lowpart_p (XEXP (x, 0))
5584           && GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0)))) == '<'
5585           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5586               <= HOST_BITS_PER_WIDE_INT)
5587           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5588               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5589         return SUBREG_REG (XEXP (x, 0));
5590
5591     }
5592
5593   /* If we reach here, we want to return a pair of shifts.  The inner
5594      shift is a left shift of BITSIZE - POS - LEN bits.  The outer
5595      shift is a right shift of BITSIZE - LEN bits.  It is arithmetic or
5596      logical depending on the value of UNSIGNEDP.
5597
5598      If this was a ZERO_EXTEND or ZERO_EXTRACT, this pair of shifts will be
5599      converted into an AND of a shift.
5600
5601      We must check for the case where the left shift would have a negative
5602      count.  This can happen in a case like (x >> 31) & 255 on machines
5603      that can't shift by a constant.  On those machines, we would first
5604      combine the shift with the AND to produce a variable-position
5605      extraction.  Then the constant of 31 would be substituted in to produce
5606      a such a position.  */
5607
5608   modewidth = GET_MODE_BITSIZE (GET_MODE (x));
5609   if (modewidth + len >= pos)
5610     tem = simplify_shift_const (NULL_RTX, unsignedp ? LSHIFTRT : ASHIFTRT,
5611                                 GET_MODE (x),
5612                                 simplify_shift_const (NULL_RTX, ASHIFT,
5613                                                       GET_MODE (x),
5614                                                       XEXP (x, 0),
5615                                                       modewidth - pos - len),
5616                                 modewidth - len);
5617
5618   else if (unsignedp && len < HOST_BITS_PER_WIDE_INT)
5619     tem = simplify_and_const_int (NULL_RTX, GET_MODE (x),
5620                                   simplify_shift_const (NULL_RTX, LSHIFTRT,
5621                                                         GET_MODE (x),
5622                                                         XEXP (x, 0), pos),
5623                                   ((HOST_WIDE_INT) 1 << len) - 1);
5624   else
5625     /* Any other cases we can't handle.  */
5626     return x;
5627
5628   /* If we couldn't do this for some reason, return the original
5629      expression.  */
5630   if (GET_CODE (tem) == CLOBBER)
5631     return x;
5632
5633   return tem;
5634 }
5635 \f
5636 /* X is a SET which contains an assignment of one object into
5637    a part of another (such as a bit-field assignment, STRICT_LOW_PART,
5638    or certain SUBREGS). If possible, convert it into a series of
5639    logical operations.
5640
5641    We half-heartedly support variable positions, but do not at all
5642    support variable lengths.  */
5643
5644 static rtx
5645 expand_field_assignment (x)
5646      rtx x;
5647 {
5648   rtx inner;
5649   rtx pos;                      /* Always counts from low bit.  */
5650   int len;
5651   rtx mask;
5652   enum machine_mode compute_mode;
5653
5654   /* Loop until we find something we can't simplify.  */
5655   while (1)
5656     {
5657       if (GET_CODE (SET_DEST (x)) == STRICT_LOW_PART
5658           && GET_CODE (XEXP (SET_DEST (x), 0)) == SUBREG)
5659         {
5660           int byte_offset = SUBREG_BYTE (XEXP (SET_DEST (x), 0));
5661
5662           inner = SUBREG_REG (XEXP (SET_DEST (x), 0));
5663           len = GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)));
5664           pos = GEN_INT (BITS_PER_WORD * (byte_offset / UNITS_PER_WORD));
5665         }
5666       else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
5667                && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT)
5668         {
5669           inner = XEXP (SET_DEST (x), 0);
5670           len = INTVAL (XEXP (SET_DEST (x), 1));
5671           pos = XEXP (SET_DEST (x), 2);
5672
5673           /* If the position is constant and spans the width of INNER,
5674              surround INNER  with a USE to indicate this.  */
5675           if (GET_CODE (pos) == CONST_INT
5676               && INTVAL (pos) + len > GET_MODE_BITSIZE (GET_MODE (inner)))
5677             inner = gen_rtx_USE (GET_MODE (SET_DEST (x)), inner);
5678
5679           if (BITS_BIG_ENDIAN)
5680             {
5681               if (GET_CODE (pos) == CONST_INT)
5682                 pos = GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner)) - len
5683                                - INTVAL (pos));
5684               else if (GET_CODE (pos) == MINUS
5685                        && GET_CODE (XEXP (pos, 1)) == CONST_INT
5686                        && (INTVAL (XEXP (pos, 1))
5687                            == GET_MODE_BITSIZE (GET_MODE (inner)) - len))
5688                 /* If position is ADJUST - X, new position is X.  */
5689                 pos = XEXP (pos, 0);
5690               else
5691                 pos = gen_binary (MINUS, GET_MODE (pos),
5692                                   GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner))
5693                                            - len),
5694                                   pos);
5695             }
5696         }
5697
5698       /* A SUBREG between two modes that occupy the same numbers of words
5699          can be done by moving the SUBREG to the source.  */
5700       else if (GET_CODE (SET_DEST (x)) == SUBREG
5701                /* We need SUBREGs to compute nonzero_bits properly.  */
5702                && nonzero_sign_valid
5703                && (((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
5704                      + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
5705                    == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
5706                         + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
5707         {
5708           x = gen_rtx_SET (VOIDmode, SUBREG_REG (SET_DEST (x)),
5709                            gen_lowpart_for_combine
5710                            (GET_MODE (SUBREG_REG (SET_DEST (x))),
5711                             SET_SRC (x)));
5712           continue;
5713         }
5714       else
5715         break;
5716
5717       while (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5718         inner = SUBREG_REG (inner);
5719
5720       compute_mode = GET_MODE (inner);
5721
5722       /* Don't attempt bitwise arithmetic on non-integral modes.  */
5723       if (! INTEGRAL_MODE_P (compute_mode))
5724         {
5725           enum machine_mode imode;
5726
5727           /* Something is probably seriously wrong if this matches.  */
5728           if (! FLOAT_MODE_P (compute_mode))
5729             break;
5730
5731           /* Try to find an integral mode to pun with.  */
5732           imode = mode_for_size (GET_MODE_BITSIZE (compute_mode), MODE_INT, 0);
5733           if (imode == BLKmode)
5734             break;
5735
5736           compute_mode = imode;
5737           inner = gen_lowpart_for_combine (imode, inner);
5738         }
5739
5740       /* Compute a mask of LEN bits, if we can do this on the host machine.  */
5741       if (len < HOST_BITS_PER_WIDE_INT)
5742         mask = GEN_INT (((HOST_WIDE_INT) 1 << len) - 1);
5743       else
5744         break;
5745
5746       /* Now compute the equivalent expression.  Make a copy of INNER
5747          for the SET_DEST in case it is a MEM into which we will substitute;
5748          we don't want shared RTL in that case.  */
5749       x = gen_rtx_SET
5750         (VOIDmode, copy_rtx (inner),
5751          gen_binary (IOR, compute_mode,
5752                      gen_binary (AND, compute_mode,
5753                                  simplify_gen_unary (NOT, compute_mode,
5754                                                      gen_binary (ASHIFT,
5755                                                                  compute_mode,
5756                                                                  mask, pos),
5757                                                      compute_mode),
5758                                  inner),
5759                      gen_binary (ASHIFT, compute_mode,
5760                                  gen_binary (AND, compute_mode,
5761                                              gen_lowpart_for_combine
5762                                              (compute_mode, SET_SRC (x)),
5763                                              mask),
5764                                  pos)));
5765     }
5766
5767   return x;
5768 }
5769 \f
5770 /* Return an RTX for a reference to LEN bits of INNER.  If POS_RTX is nonzero,
5771    it is an RTX that represents a variable starting position; otherwise,
5772    POS is the (constant) starting bit position (counted from the LSB).
5773
5774    INNER may be a USE.  This will occur when we started with a bitfield
5775    that went outside the boundary of the object in memory, which is
5776    allowed on most machines.  To isolate this case, we produce a USE
5777    whose mode is wide enough and surround the MEM with it.  The only
5778    code that understands the USE is this routine.  If it is not removed,
5779    it will cause the resulting insn not to match.
5780
5781    UNSIGNEDP is non-zero for an unsigned reference and zero for a
5782    signed reference.
5783
5784    IN_DEST is non-zero if this is a reference in the destination of a
5785    SET.  This is used when a ZERO_ or SIGN_EXTRACT isn't needed.  If non-zero,
5786    a STRICT_LOW_PART will be used, if zero, ZERO_EXTEND or SIGN_EXTEND will
5787    be used.
5788
5789    IN_COMPARE is non-zero if we are in a COMPARE.  This means that a
5790    ZERO_EXTRACT should be built even for bits starting at bit 0.
5791
5792    MODE is the desired mode of the result (if IN_DEST == 0).
5793
5794    The result is an RTX for the extraction or NULL_RTX if the target
5795    can't handle it.  */
5796
5797 static rtx
5798 make_extraction (mode, inner, pos, pos_rtx, len,
5799                  unsignedp, in_dest, in_compare)
5800      enum machine_mode mode;
5801      rtx inner;
5802      HOST_WIDE_INT pos;
5803      rtx pos_rtx;
5804      unsigned HOST_WIDE_INT len;
5805      int unsignedp;
5806      int in_dest, in_compare;
5807 {
5808   /* This mode describes the size of the storage area
5809      to fetch the overall value from.  Within that, we
5810      ignore the POS lowest bits, etc.  */
5811   enum machine_mode is_mode = GET_MODE (inner);
5812   enum machine_mode inner_mode;
5813   enum machine_mode wanted_inner_mode = byte_mode;
5814   enum machine_mode wanted_inner_reg_mode = word_mode;
5815   enum machine_mode pos_mode = word_mode;
5816   enum machine_mode extraction_mode = word_mode;
5817   enum machine_mode tmode = mode_for_size (len, MODE_INT, 1);
5818   int spans_byte = 0;
5819   rtx new = 0;
5820   rtx orig_pos_rtx = pos_rtx;
5821   HOST_WIDE_INT orig_pos;
5822
5823   /* Get some information about INNER and get the innermost object.  */
5824   if (GET_CODE (inner) == USE)
5825     /* (use:SI (mem:QI foo)) stands for (mem:SI foo).  */
5826     /* We don't need to adjust the position because we set up the USE
5827        to pretend that it was a full-word object.  */
5828     spans_byte = 1, inner = XEXP (inner, 0);
5829   else if (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5830     {
5831       /* If going from (subreg:SI (mem:QI ...)) to (mem:QI ...),
5832          consider just the QI as the memory to extract from.
5833          The subreg adds or removes high bits; its mode is
5834          irrelevant to the meaning of this extraction,
5835          since POS and LEN count from the lsb.  */
5836       if (GET_CODE (SUBREG_REG (inner)) == MEM)
5837         is_mode = GET_MODE (SUBREG_REG (inner));
5838       inner = SUBREG_REG (inner);
5839     }
5840
5841   inner_mode = GET_MODE (inner);
5842
5843   if (pos_rtx && GET_CODE (pos_rtx) == CONST_INT)
5844     pos = INTVAL (pos_rtx), pos_rtx = 0;
5845
5846   /* See if this can be done without an extraction.  We never can if the
5847      width of the field is not the same as that of some integer mode. For
5848      registers, we can only avoid the extraction if the position is at the
5849      low-order bit and this is either not in the destination or we have the
5850      appropriate STRICT_LOW_PART operation available.
5851
5852      For MEM, we can avoid an extract if the field starts on an appropriate
5853      boundary and we can change the mode of the memory reference.  However,
5854      we cannot directly access the MEM if we have a USE and the underlying
5855      MEM is not TMODE.  This combination means that MEM was being used in a
5856      context where bits outside its mode were being referenced; that is only
5857      valid in bit-field insns.  */
5858
5859   if (tmode != BLKmode
5860       && ! (spans_byte && inner_mode != tmode)
5861       && ((pos_rtx == 0 && (pos % BITS_PER_WORD) == 0
5862            && GET_CODE (inner) != MEM
5863            && (! in_dest
5864                || (GET_CODE (inner) == REG
5865                    && (movstrict_optab->handlers[(int) tmode].insn_code
5866                        != CODE_FOR_nothing))))
5867           || (GET_CODE (inner) == MEM && pos_rtx == 0
5868               && (pos
5869                   % (STRICT_ALIGNMENT ? GET_MODE_ALIGNMENT (tmode)
5870                      : BITS_PER_UNIT)) == 0
5871               /* We can't do this if we are widening INNER_MODE (it
5872                  may not be aligned, for one thing).  */
5873               && GET_MODE_BITSIZE (inner_mode) >= GET_MODE_BITSIZE (tmode)
5874               && (inner_mode == tmode
5875                   || (! mode_dependent_address_p (XEXP (inner, 0))
5876                       && ! MEM_VOLATILE_P (inner))))))
5877     {
5878       /* If INNER is a MEM, make a new MEM that encompasses just the desired
5879          field.  If the original and current mode are the same, we need not
5880          adjust the offset.  Otherwise, we do if bytes big endian.
5881
5882          If INNER is not a MEM, get a piece consisting of just the field
5883          of interest (in this case POS % BITS_PER_WORD must be 0).  */
5884
5885       if (GET_CODE (inner) == MEM)
5886         {
5887           int offset;
5888           /* POS counts from lsb, but make OFFSET count in memory order.  */
5889           if (BYTES_BIG_ENDIAN)
5890             offset = (GET_MODE_BITSIZE (is_mode) - len - pos) / BITS_PER_UNIT;
5891           else
5892             offset = pos / BITS_PER_UNIT;
5893
5894           new = gen_rtx_MEM (tmode, plus_constant (XEXP (inner, 0), offset));
5895           MEM_COPY_ATTRIBUTES (new, inner);
5896         }
5897       else if (GET_CODE (inner) == REG)
5898         {
5899           /* We can't call gen_lowpart_for_combine here since we always want
5900              a SUBREG and it would sometimes return a new hard register.  */
5901           if (tmode != inner_mode)
5902             {
5903               int final_word = pos / BITS_PER_WORD;
5904
5905               if (WORDS_BIG_ENDIAN
5906                   && GET_MODE_SIZE (inner_mode) > UNITS_PER_WORD)
5907                 final_word = ((GET_MODE_SIZE (inner_mode)
5908                                - GET_MODE_SIZE (tmode))
5909                               / UNITS_PER_WORD) - final_word;
5910
5911               final_word *= UNITS_PER_WORD;
5912               if (BYTES_BIG_ENDIAN &&
5913                   GET_MODE_SIZE (inner_mode) > GET_MODE_SIZE (tmode))
5914                 final_word += (GET_MODE_SIZE (inner_mode)
5915                                - GET_MODE_SIZE (tmode)) % UNITS_PER_WORD;
5916
5917               new = gen_rtx_SUBREG (tmode, inner, final_word);
5918             }
5919           else
5920             new = inner;
5921         }
5922       else
5923         new = force_to_mode (inner, tmode,
5924                              len >= HOST_BITS_PER_WIDE_INT
5925                              ? ~(unsigned HOST_WIDE_INT) 0
5926                              : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
5927                              NULL_RTX, 0);
5928
5929       /* If this extraction is going into the destination of a SET,
5930          make a STRICT_LOW_PART unless we made a MEM.  */
5931
5932       if (in_dest)
5933         return (GET_CODE (new) == MEM ? new
5934                 : (GET_CODE (new) != SUBREG
5935                    ? gen_rtx_CLOBBER (tmode, const0_rtx)
5936                    : gen_rtx_STRICT_LOW_PART (VOIDmode, new)));
5937
5938       if (mode == tmode)
5939         return new;
5940
5941       /* If we know that no extraneous bits are set, and that the high
5942          bit is not set, convert the extraction to the cheaper of
5943          sign and zero extension, that are equivalent in these cases.  */
5944       if (flag_expensive_optimizations
5945           && (GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT
5946               && ((nonzero_bits (new, tmode)
5947                    & ~(((unsigned HOST_WIDE_INT)
5948                         GET_MODE_MASK (tmode))
5949                        >> 1))
5950                   == 0)))
5951         {
5952           rtx temp = gen_rtx_ZERO_EXTEND (mode, new);
5953           rtx temp1 = gen_rtx_SIGN_EXTEND (mode, new);
5954
5955           /* Prefer ZERO_EXTENSION, since it gives more information to
5956              backends.  */
5957           if (rtx_cost (temp, SET) <= rtx_cost (temp1, SET))
5958             return temp;
5959           return temp1;
5960         }
5961
5962       /* Otherwise, sign- or zero-extend unless we already are in the
5963          proper mode.  */
5964
5965       return (gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND,
5966                              mode, new));
5967     }
5968
5969   /* Unless this is a COMPARE or we have a funny memory reference,
5970      don't do anything with zero-extending field extracts starting at
5971      the low-order bit since they are simple AND operations.  */
5972   if (pos_rtx == 0 && pos == 0 && ! in_dest
5973       && ! in_compare && ! spans_byte && unsignedp)
5974     return 0;
5975
5976   /* Unless we are allowed to span bytes or INNER is not MEM, reject this if
5977      we would be spanning bytes or if the position is not a constant and the
5978      length is not 1.  In all other cases, we would only be going outside
5979      our object in cases when an original shift would have been
5980      undefined.  */
5981   if (! spans_byte && GET_CODE (inner) == MEM
5982       && ((pos_rtx == 0 && pos + len > GET_MODE_BITSIZE (is_mode))
5983           || (pos_rtx != 0 && len != 1)))
5984     return 0;
5985
5986   /* Get the mode to use should INNER not be a MEM, the mode for the position,
5987      and the mode for the result.  */
5988 #ifdef HAVE_insv
5989   if (in_dest)
5990     {
5991       wanted_inner_reg_mode
5992         = insn_data[(int) CODE_FOR_insv].operand[0].mode;
5993       if (wanted_inner_reg_mode == VOIDmode)
5994         wanted_inner_reg_mode = word_mode;
5995
5996       pos_mode = insn_data[(int) CODE_FOR_insv].operand[2].mode;
5997       if (pos_mode == VOIDmode)
5998         pos_mode = word_mode;
5999
6000       extraction_mode = insn_data[(int) CODE_FOR_insv].operand[3].mode;
6001       if (extraction_mode == VOIDmode)
6002         extraction_mode = word_mode;
6003     }
6004 #endif
6005
6006 #ifdef HAVE_extzv
6007   if (! in_dest && unsignedp)
6008     {
6009       wanted_inner_reg_mode
6010         = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
6011       if (wanted_inner_reg_mode == VOIDmode)
6012         wanted_inner_reg_mode = word_mode;
6013
6014       pos_mode = insn_data[(int) CODE_FOR_extzv].operand[3].mode;
6015       if (pos_mode == VOIDmode)
6016         pos_mode = word_mode;
6017
6018       extraction_mode = insn_data[(int) CODE_FOR_extzv].operand[0].mode;
6019       if (extraction_mode == VOIDmode)
6020         extraction_mode = word_mode;
6021     }
6022 #endif
6023
6024 #ifdef HAVE_extv
6025   if (! in_dest && ! unsignedp)
6026     {
6027       wanted_inner_reg_mode
6028         = insn_data[(int) CODE_FOR_extv].operand[1].mode;
6029       if (wanted_inner_reg_mode == VOIDmode)
6030         wanted_inner_reg_mode = word_mode;
6031
6032       pos_mode = insn_data[(int) CODE_FOR_extv].operand[3].mode;
6033       if (pos_mode == VOIDmode)
6034         pos_mode = word_mode;
6035
6036       extraction_mode = insn_data[(int) CODE_FOR_extv].operand[0].mode;
6037       if (extraction_mode == VOIDmode)
6038         extraction_mode = word_mode;
6039     }
6040 #endif
6041
6042   /* Never narrow an object, since that might not be safe.  */
6043
6044   if (mode != VOIDmode
6045       && GET_MODE_SIZE (extraction_mode) < GET_MODE_SIZE (mode))
6046     extraction_mode = mode;
6047
6048   if (pos_rtx && GET_MODE (pos_rtx) != VOIDmode
6049       && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6050     pos_mode = GET_MODE (pos_rtx);
6051
6052   /* If this is not from memory, the desired mode is wanted_inner_reg_mode;
6053      if we have to change the mode of memory and cannot, the desired mode is
6054      EXTRACTION_MODE.  */
6055   if (GET_CODE (inner) != MEM)
6056     wanted_inner_mode = wanted_inner_reg_mode;
6057   else if (inner_mode != wanted_inner_mode
6058            && (mode_dependent_address_p (XEXP (inner, 0))
6059                || MEM_VOLATILE_P (inner)))
6060     wanted_inner_mode = extraction_mode;
6061
6062   orig_pos = pos;
6063
6064   if (BITS_BIG_ENDIAN)
6065     {
6066       /* POS is passed as if BITS_BIG_ENDIAN == 0, so we need to convert it to
6067          BITS_BIG_ENDIAN style.  If position is constant, compute new
6068          position.  Otherwise, build subtraction.
6069          Note that POS is relative to the mode of the original argument.
6070          If it's a MEM we need to recompute POS relative to that.
6071          However, if we're extracting from (or inserting into) a register,
6072          we want to recompute POS relative to wanted_inner_mode.  */
6073       int width = (GET_CODE (inner) == MEM
6074                    ? GET_MODE_BITSIZE (is_mode)
6075                    : GET_MODE_BITSIZE (wanted_inner_mode));
6076
6077       if (pos_rtx == 0)
6078         pos = width - len - pos;
6079       else
6080         pos_rtx
6081           = gen_rtx_MINUS (GET_MODE (pos_rtx), GEN_INT (width - len), pos_rtx);
6082       /* POS may be less than 0 now, but we check for that below.
6083          Note that it can only be less than 0 if GET_CODE (inner) != MEM.  */
6084     }
6085
6086   /* If INNER has a wider mode, make it smaller.  If this is a constant
6087      extract, try to adjust the byte to point to the byte containing
6088      the value.  */
6089   if (wanted_inner_mode != VOIDmode
6090       && GET_MODE_SIZE (wanted_inner_mode) < GET_MODE_SIZE (is_mode)
6091       && ((GET_CODE (inner) == MEM
6092            && (inner_mode == wanted_inner_mode
6093                || (! mode_dependent_address_p (XEXP (inner, 0))
6094                    && ! MEM_VOLATILE_P (inner))))))
6095     {
6096       int offset = 0;
6097
6098       /* The computations below will be correct if the machine is big
6099          endian in both bits and bytes or little endian in bits and bytes.
6100          If it is mixed, we must adjust.  */
6101
6102       /* If bytes are big endian and we had a paradoxical SUBREG, we must
6103          adjust OFFSET to compensate.  */
6104       if (BYTES_BIG_ENDIAN
6105           && ! spans_byte
6106           && GET_MODE_SIZE (inner_mode) < GET_MODE_SIZE (is_mode))
6107         offset -= GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (inner_mode);
6108
6109       /* If this is a constant position, we can move to the desired byte.  */
6110       if (pos_rtx == 0)
6111         {
6112           offset += pos / BITS_PER_UNIT;
6113           pos %= GET_MODE_BITSIZE (wanted_inner_mode);
6114         }
6115
6116       if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN
6117           && ! spans_byte
6118           && is_mode != wanted_inner_mode)
6119         offset = (GET_MODE_SIZE (is_mode)
6120                   - GET_MODE_SIZE (wanted_inner_mode) - offset);
6121
6122       if (offset != 0 || inner_mode != wanted_inner_mode)
6123         {
6124           rtx newmem = gen_rtx_MEM (wanted_inner_mode,
6125                                     plus_constant (XEXP (inner, 0), offset));
6126
6127           MEM_COPY_ATTRIBUTES (newmem, inner);
6128           inner = newmem;
6129         }
6130     }
6131
6132   /* If INNER is not memory, we can always get it into the proper mode.  If we
6133      are changing its mode, POS must be a constant and smaller than the size
6134      of the new mode.  */
6135   else if (GET_CODE (inner) != MEM)
6136     {
6137       if (GET_MODE (inner) != wanted_inner_mode
6138           && (pos_rtx != 0
6139               || orig_pos + len > GET_MODE_BITSIZE (wanted_inner_mode)))
6140         return 0;
6141
6142       inner = force_to_mode (inner, wanted_inner_mode,
6143                              pos_rtx
6144                              || len + orig_pos >= HOST_BITS_PER_WIDE_INT
6145                              ? ~(unsigned HOST_WIDE_INT) 0
6146                              : ((((unsigned HOST_WIDE_INT) 1 << len) - 1)
6147                                 << orig_pos),
6148                              NULL_RTX, 0);
6149     }
6150
6151   /* Adjust mode of POS_RTX, if needed.  If we want a wider mode, we
6152      have to zero extend.  Otherwise, we can just use a SUBREG.  */
6153   if (pos_rtx != 0
6154       && GET_MODE_SIZE (pos_mode) > GET_MODE_SIZE (GET_MODE (pos_rtx)))
6155     {
6156       rtx temp = gen_rtx_ZERO_EXTEND (pos_mode, pos_rtx);
6157
6158       /* If we know that no extraneous bits are set, and that the high
6159          bit is not set, convert extraction to cheaper one - eighter
6160          SIGN_EXTENSION or ZERO_EXTENSION, that are equivalent in these
6161          cases.  */
6162       if (flag_expensive_optimizations
6163           && (GET_MODE_BITSIZE (GET_MODE (pos_rtx)) <= HOST_BITS_PER_WIDE_INT
6164               && ((nonzero_bits (pos_rtx, GET_MODE (pos_rtx))
6165                    & ~(((unsigned HOST_WIDE_INT)
6166                         GET_MODE_MASK (GET_MODE (pos_rtx)))
6167                        >> 1))
6168                   == 0)))
6169         {
6170           rtx temp1 = gen_rtx_SIGN_EXTEND (pos_mode, pos_rtx);
6171
6172           /* Prefer ZERO_EXTENSION, since it gives more information to
6173              backends.  */
6174           if (rtx_cost (temp1, SET) < rtx_cost (temp, SET))
6175             temp = temp1;
6176         }
6177       pos_rtx = temp;
6178     }
6179   else if (pos_rtx != 0
6180            && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6181     pos_rtx = gen_lowpart_for_combine (pos_mode, pos_rtx);
6182
6183   /* Make POS_RTX unless we already have it and it is correct.  If we don't
6184      have a POS_RTX but we do have an ORIG_POS_RTX, the latter must
6185      be a CONST_INT.  */
6186   if (pos_rtx == 0 && orig_pos_rtx != 0 && INTVAL (orig_pos_rtx) == pos)
6187     pos_rtx = orig_pos_rtx;
6188
6189   else if (pos_rtx == 0)
6190     pos_rtx = GEN_INT (pos);
6191
6192   /* Make the required operation.  See if we can use existing rtx.  */
6193   new = gen_rtx_fmt_eee (unsignedp ? ZERO_EXTRACT : SIGN_EXTRACT,
6194                          extraction_mode, inner, GEN_INT (len), pos_rtx);
6195   if (! in_dest)
6196     new = gen_lowpart_for_combine (mode, new);
6197
6198   return new;
6199 }
6200 \f
6201 /* See if X contains an ASHIFT of COUNT or more bits that can be commuted
6202    with any other operations in X.  Return X without that shift if so.  */
6203
6204 static rtx
6205 extract_left_shift (x, count)
6206      rtx x;
6207      int count;
6208 {
6209   enum rtx_code code = GET_CODE (x);
6210   enum machine_mode mode = GET_MODE (x);
6211   rtx tem;
6212
6213   switch (code)
6214     {
6215     case ASHIFT:
6216       /* This is the shift itself.  If it is wide enough, we will return
6217          either the value being shifted if the shift count is equal to
6218          COUNT or a shift for the difference.  */
6219       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6220           && INTVAL (XEXP (x, 1)) >= count)
6221         return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (x, 0),
6222                                      INTVAL (XEXP (x, 1)) - count);
6223       break;
6224
6225     case NEG:  case NOT:
6226       if ((tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6227         return simplify_gen_unary (code, mode, tem, mode);
6228
6229       break;
6230
6231     case PLUS:  case IOR:  case XOR:  case AND:
6232       /* If we can safely shift this constant and we find the inner shift,
6233          make a new operation.  */
6234       if (GET_CODE (XEXP (x,1)) == CONST_INT
6235           && (INTVAL (XEXP (x, 1)) & ((((HOST_WIDE_INT) 1 << count)) - 1)) == 0
6236           && (tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6237         return gen_binary (code, mode, tem,
6238                            GEN_INT (INTVAL (XEXP (x, 1)) >> count));
6239
6240       break;
6241
6242     default:
6243       break;
6244     }
6245
6246   return 0;
6247 }
6248 \f
6249 /* Look at the expression rooted at X.  Look for expressions
6250    equivalent to ZERO_EXTRACT, SIGN_EXTRACT, ZERO_EXTEND, SIGN_EXTEND.
6251    Form these expressions.
6252
6253    Return the new rtx, usually just X.
6254
6255    Also, for machines like the Vax that don't have logical shift insns,
6256    try to convert logical to arithmetic shift operations in cases where
6257    they are equivalent.  This undoes the canonicalizations to logical
6258    shifts done elsewhere.
6259
6260    We try, as much as possible, to re-use rtl expressions to save memory.
6261
6262    IN_CODE says what kind of expression we are processing.  Normally, it is
6263    SET.  In a memory address (inside a MEM, PLUS or minus, the latter two
6264    being kludges), it is MEM.  When processing the arguments of a comparison
6265    or a COMPARE against zero, it is COMPARE.  */
6266
6267 static rtx
6268 make_compound_operation (x, in_code)
6269      rtx x;
6270      enum rtx_code in_code;
6271 {
6272   enum rtx_code code = GET_CODE (x);
6273   enum machine_mode mode = GET_MODE (x);
6274   int mode_width = GET_MODE_BITSIZE (mode);
6275   rtx rhs, lhs;
6276   enum rtx_code next_code;
6277   int i;
6278   rtx new = 0;
6279   rtx tem;
6280   const char *fmt;
6281
6282   /* Select the code to be used in recursive calls.  Once we are inside an
6283      address, we stay there.  If we have a comparison, set to COMPARE,
6284      but once inside, go back to our default of SET.  */
6285
6286   next_code = (code == MEM || code == PLUS || code == MINUS ? MEM
6287                : ((code == COMPARE || GET_RTX_CLASS (code) == '<')
6288                   && XEXP (x, 1) == const0_rtx) ? COMPARE
6289                : in_code == COMPARE ? SET : in_code);
6290
6291   /* Process depending on the code of this operation.  If NEW is set
6292      non-zero, it will be returned.  */
6293
6294   switch (code)
6295     {
6296     case ASHIFT:
6297       /* Convert shifts by constants into multiplications if inside
6298          an address.  */
6299       if (in_code == MEM && GET_CODE (XEXP (x, 1)) == CONST_INT
6300           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6301           && INTVAL (XEXP (x, 1)) >= 0)
6302         {
6303           new = make_compound_operation (XEXP (x, 0), next_code);
6304           new = gen_rtx_MULT (mode, new,
6305                               GEN_INT ((HOST_WIDE_INT) 1
6306                                        << INTVAL (XEXP (x, 1))));
6307         }
6308       break;
6309
6310     case AND:
6311       /* If the second operand is not a constant, we can't do anything
6312          with it.  */
6313       if (GET_CODE (XEXP (x, 1)) != CONST_INT)
6314         break;
6315
6316       /* If the constant is a power of two minus one and the first operand
6317          is a logical right shift, make an extraction.  */
6318       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6319           && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6320         {
6321           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6322           new = make_extraction (mode, new, 0, XEXP (XEXP (x, 0), 1), i, 1,
6323                                  0, in_code == COMPARE);
6324         }
6325
6326       /* Same as previous, but for (subreg (lshiftrt ...)) in first op.  */
6327       else if (GET_CODE (XEXP (x, 0)) == SUBREG
6328                && subreg_lowpart_p (XEXP (x, 0))
6329                && GET_CODE (SUBREG_REG (XEXP (x, 0))) == LSHIFTRT
6330                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6331         {
6332           new = make_compound_operation (XEXP (SUBREG_REG (XEXP (x, 0)), 0),
6333                                          next_code);
6334           new = make_extraction (GET_MODE (SUBREG_REG (XEXP (x, 0))), new, 0,
6335                                  XEXP (SUBREG_REG (XEXP (x, 0)), 1), i, 1,
6336                                  0, in_code == COMPARE);
6337         }
6338       /* Same as previous, but for (xor/ior (lshiftrt...) (lshiftrt...)).  */
6339       else if ((GET_CODE (XEXP (x, 0)) == XOR
6340                 || GET_CODE (XEXP (x, 0)) == IOR)
6341                && GET_CODE (XEXP (XEXP (x, 0), 0)) == LSHIFTRT
6342                && GET_CODE (XEXP (XEXP (x, 0), 1)) == LSHIFTRT
6343                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6344         {
6345           /* Apply the distributive law, and then try to make extractions.  */
6346           new = gen_rtx_fmt_ee (GET_CODE (XEXP (x, 0)), mode,
6347                                 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 0),
6348                                              XEXP (x, 1)),
6349                                 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 1),
6350                                              XEXP (x, 1)));
6351           new = make_compound_operation (new, in_code);
6352         }
6353
6354       /* If we are have (and (rotate X C) M) and C is larger than the number
6355          of bits in M, this is an extraction.  */
6356
6357       else if (GET_CODE (XEXP (x, 0)) == ROTATE
6358                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6359                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0
6360                && i <= INTVAL (XEXP (XEXP (x, 0), 1)))
6361         {
6362           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6363           new = make_extraction (mode, new,
6364                                  (GET_MODE_BITSIZE (mode)
6365                                   - INTVAL (XEXP (XEXP (x, 0), 1))),
6366                                  NULL_RTX, i, 1, 0, in_code == COMPARE);
6367         }
6368
6369       /* On machines without logical shifts, if the operand of the AND is
6370          a logical shift and our mask turns off all the propagated sign
6371          bits, we can replace the logical shift with an arithmetic shift.  */
6372       else if (ashr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6373                && (lshr_optab->handlers[(int) mode].insn_code
6374                    == CODE_FOR_nothing)
6375                && GET_CODE (XEXP (x, 0)) == LSHIFTRT
6376                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6377                && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6378                && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6379                && mode_width <= HOST_BITS_PER_WIDE_INT)
6380         {
6381           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
6382
6383           mask >>= INTVAL (XEXP (XEXP (x, 0), 1));
6384           if ((INTVAL (XEXP (x, 1)) & ~mask) == 0)
6385             SUBST (XEXP (x, 0),
6386                    gen_rtx_ASHIFTRT (mode,
6387                                      make_compound_operation
6388                                      (XEXP (XEXP (x, 0), 0), next_code),
6389                                      XEXP (XEXP (x, 0), 1)));
6390         }
6391
6392       /* If the constant is one less than a power of two, this might be
6393          representable by an extraction even if no shift is present.
6394          If it doesn't end up being a ZERO_EXTEND, we will ignore it unless
6395          we are in a COMPARE.  */
6396       else if ((i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6397         new = make_extraction (mode,
6398                                make_compound_operation (XEXP (x, 0),
6399                                                         next_code),
6400                                0, NULL_RTX, i, 1, 0, in_code == COMPARE);
6401
6402       /* If we are in a comparison and this is an AND with a power of two,
6403          convert this into the appropriate bit extract.  */
6404       else if (in_code == COMPARE
6405                && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
6406         new = make_extraction (mode,
6407                                make_compound_operation (XEXP (x, 0),
6408                                                         next_code),
6409                                i, NULL_RTX, 1, 1, 0, 1);
6410
6411       break;
6412
6413     case LSHIFTRT:
6414       /* If the sign bit is known to be zero, replace this with an
6415          arithmetic shift.  */
6416       if (ashr_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing
6417           && lshr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6418           && mode_width <= HOST_BITS_PER_WIDE_INT
6419           && (nonzero_bits (XEXP (x, 0), mode) & (1 << (mode_width - 1))) == 0)
6420         {
6421           new = gen_rtx_ASHIFTRT (mode,
6422                                   make_compound_operation (XEXP (x, 0),
6423                                                            next_code),
6424                                   XEXP (x, 1));
6425           break;
6426         }
6427
6428       /* ... fall through ...  */
6429
6430     case ASHIFTRT:
6431       lhs = XEXP (x, 0);
6432       rhs = XEXP (x, 1);
6433
6434       /* If we have (ashiftrt (ashift foo C1) C2) with C2 >= C1,
6435          this is a SIGN_EXTRACT.  */
6436       if (GET_CODE (rhs) == CONST_INT
6437           && GET_CODE (lhs) == ASHIFT
6438           && GET_CODE (XEXP (lhs, 1)) == CONST_INT
6439           && INTVAL (rhs) >= INTVAL (XEXP (lhs, 1)))
6440         {
6441           new = make_compound_operation (XEXP (lhs, 0), next_code);
6442           new = make_extraction (mode, new,
6443                                  INTVAL (rhs) - INTVAL (XEXP (lhs, 1)),
6444                                  NULL_RTX, mode_width - INTVAL (rhs),
6445                                  code == LSHIFTRT, 0, in_code == COMPARE);
6446           break;
6447         }
6448
6449       /* See if we have operations between an ASHIFTRT and an ASHIFT.
6450          If so, try to merge the shifts into a SIGN_EXTEND.  We could
6451          also do this for some cases of SIGN_EXTRACT, but it doesn't
6452          seem worth the effort; the case checked for occurs on Alpha.  */
6453
6454       if (GET_RTX_CLASS (GET_CODE (lhs)) != 'o'
6455           && ! (GET_CODE (lhs) == SUBREG
6456                 && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (lhs))) == 'o'))
6457           && GET_CODE (rhs) == CONST_INT
6458           && INTVAL (rhs) < HOST_BITS_PER_WIDE_INT
6459           && (new = extract_left_shift (lhs, INTVAL (rhs))) != 0)
6460         new = make_extraction (mode, make_compound_operation (new, next_code),
6461                                0, NULL_RTX, mode_width - INTVAL (rhs),
6462                                code == LSHIFTRT, 0, in_code == COMPARE);
6463
6464       break;
6465
6466     case SUBREG:
6467       /* Call ourselves recursively on the inner expression.  If we are
6468          narrowing the object and it has a different RTL code from
6469          what it originally did, do this SUBREG as a force_to_mode.  */
6470
6471       tem = make_compound_operation (SUBREG_REG (x), in_code);
6472       if (GET_CODE (tem) != GET_CODE (SUBREG_REG (x))
6473           && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (tem))
6474           && subreg_lowpart_p (x))
6475         {
6476           rtx newer = force_to_mode (tem, mode, ~(HOST_WIDE_INT) 0,
6477                                      NULL_RTX, 0);
6478
6479           /* If we have something other than a SUBREG, we might have
6480              done an expansion, so rerun outselves.  */
6481           if (GET_CODE (newer) != SUBREG)
6482             newer = make_compound_operation (newer, in_code);
6483
6484           return newer;
6485         }
6486
6487       /* If this is a paradoxical subreg, and the new code is a sign or
6488          zero extension, omit the subreg and widen the extension.  If it
6489          is a regular subreg, we can still get rid of the subreg by not
6490          widening so much, or in fact removing the extension entirely.  */
6491       if ((GET_CODE (tem) == SIGN_EXTEND
6492            || GET_CODE (tem) == ZERO_EXTEND)
6493           && subreg_lowpart_p (x))
6494         {
6495           if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (tem))
6496               || (GET_MODE_SIZE (mode) >
6497                   GET_MODE_SIZE (GET_MODE (XEXP (tem, 0)))))
6498             tem = gen_rtx_fmt_e (GET_CODE (tem), mode, XEXP (tem, 0));
6499           else
6500             tem = gen_lowpart_for_combine (mode, XEXP (tem, 0));
6501           return tem;
6502         }
6503       break;
6504
6505     default:
6506       break;
6507     }
6508
6509   if (new)
6510     {
6511       x = gen_lowpart_for_combine (mode, new);
6512       code = GET_CODE (x);
6513     }
6514
6515   /* Now recursively process each operand of this operation.  */
6516   fmt = GET_RTX_FORMAT (code);
6517   for (i = 0; i < GET_RTX_LENGTH (code); i++)
6518     if (fmt[i] == 'e')
6519       {
6520         new = make_compound_operation (XEXP (x, i), next_code);
6521         SUBST (XEXP (x, i), new);
6522       }
6523
6524   return x;
6525 }
6526 \f
6527 /* Given M see if it is a value that would select a field of bits
6528    within an item, but not the entire word.  Return -1 if not.
6529    Otherwise, return the starting position of the field, where 0 is the
6530    low-order bit.
6531
6532    *PLEN is set to the length of the field.  */
6533
6534 static int
6535 get_pos_from_mask (m, plen)
6536      unsigned HOST_WIDE_INT m;
6537      unsigned HOST_WIDE_INT *plen;
6538 {
6539   /* Get the bit number of the first 1 bit from the right, -1 if none.  */
6540   int pos = exact_log2 (m & -m);
6541   int len;
6542
6543   if (pos < 0)
6544     return -1;
6545
6546   /* Now shift off the low-order zero bits and see if we have a power of
6547      two minus 1.  */
6548   len = exact_log2 ((m >> pos) + 1);
6549
6550   if (len <= 0)
6551     return -1;
6552
6553   *plen = len;
6554   return pos;
6555 }
6556 \f
6557 /* See if X can be simplified knowing that we will only refer to it in
6558    MODE and will only refer to those bits that are nonzero in MASK.
6559    If other bits are being computed or if masking operations are done
6560    that select a superset of the bits in MASK, they can sometimes be
6561    ignored.
6562
6563    Return a possibly simplified expression, but always convert X to
6564    MODE.  If X is a CONST_INT, AND the CONST_INT with MASK.
6565
6566    Also, if REG is non-zero and X is a register equal in value to REG,
6567    replace X with REG.
6568
6569    If JUST_SELECT is nonzero, don't optimize by noticing that bits in MASK
6570    are all off in X.  This is used when X will be complemented, by either
6571    NOT, NEG, or XOR.  */
6572
6573 static rtx
6574 force_to_mode (x, mode, mask, reg, just_select)
6575      rtx x;
6576      enum machine_mode mode;
6577      unsigned HOST_WIDE_INT mask;
6578      rtx reg;
6579      int just_select;
6580 {
6581   enum rtx_code code = GET_CODE (x);
6582   int next_select = just_select || code == XOR || code == NOT || code == NEG;
6583   enum machine_mode op_mode;
6584   unsigned HOST_WIDE_INT fuller_mask, nonzero;
6585   rtx op0, op1, temp;
6586
6587   /* If this is a CALL or ASM_OPERANDS, don't do anything.  Some of the
6588      code below will do the wrong thing since the mode of such an
6589      expression is VOIDmode.
6590
6591      Also do nothing if X is a CLOBBER; this can happen if X was
6592      the return value from a call to gen_lowpart_for_combine.  */
6593   if (code == CALL || code == ASM_OPERANDS || code == CLOBBER)
6594     return x;
6595
6596   /* We want to perform the operation is its present mode unless we know
6597      that the operation is valid in MODE, in which case we do the operation
6598      in MODE.  */
6599   op_mode = ((GET_MODE_CLASS (mode) == GET_MODE_CLASS (GET_MODE (x))
6600               && code_to_optab[(int) code] != 0
6601               && (code_to_optab[(int) code]->handlers[(int) mode].insn_code
6602                   != CODE_FOR_nothing))
6603              ? mode : GET_MODE (x));
6604
6605   /* It is not valid to do a right-shift in a narrower mode
6606      than the one it came in with.  */
6607   if ((code == LSHIFTRT || code == ASHIFTRT)
6608       && GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (GET_MODE (x)))
6609     op_mode = GET_MODE (x);
6610
6611   /* Truncate MASK to fit OP_MODE.  */
6612   if (op_mode)
6613     mask &= GET_MODE_MASK (op_mode);
6614
6615   /* When we have an arithmetic operation, or a shift whose count we
6616      do not know, we need to assume that all bit the up to the highest-order
6617      bit in MASK will be needed.  This is how we form such a mask.  */
6618   if (op_mode)
6619     fuller_mask = (GET_MODE_BITSIZE (op_mode) >= HOST_BITS_PER_WIDE_INT
6620                    ? GET_MODE_MASK (op_mode)
6621                    : (((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mask) + 1))
6622                       - 1));
6623   else
6624     fuller_mask = ~(HOST_WIDE_INT) 0;
6625
6626   /* Determine what bits of X are guaranteed to be (non)zero.  */
6627   nonzero = nonzero_bits (x, mode);
6628
6629   /* If none of the bits in X are needed, return a zero.  */
6630   if (! just_select && (nonzero & mask) == 0)
6631     return const0_rtx;
6632
6633   /* If X is a CONST_INT, return a new one.  Do this here since the
6634      test below will fail.  */
6635   if (GET_CODE (x) == CONST_INT)
6636     {
6637       HOST_WIDE_INT cval = INTVAL (x) & mask;
6638       int width = GET_MODE_BITSIZE (mode);
6639
6640       /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6641          number, sign extend it.  */
6642       if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6643           && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6644         cval |= (HOST_WIDE_INT) -1 << width;
6645
6646       return GEN_INT (cval);
6647     }
6648
6649   /* If X is narrower than MODE and we want all the bits in X's mode, just
6650      get X in the proper mode.  */
6651   if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode)
6652       && (GET_MODE_MASK (GET_MODE (x)) & ~mask) == 0)
6653     return gen_lowpart_for_combine (mode, x);
6654
6655   /* If we aren't changing the mode, X is not a SUBREG, and all zero bits in
6656      MASK are already known to be zero in X, we need not do anything.  */
6657   if (GET_MODE (x) == mode && code != SUBREG && (~mask & nonzero) == 0)
6658     return x;
6659
6660   switch (code)
6661     {
6662     case CLOBBER:
6663       /* If X is a (clobber (const_int)), return it since we know we are
6664          generating something that won't match.  */
6665       return x;
6666
6667     case USE:
6668       /* X is a (use (mem ..)) that was made from a bit-field extraction that
6669          spanned the boundary of the MEM.  If we are now masking so it is
6670          within that boundary, we don't need the USE any more.  */
6671       if (! BITS_BIG_ENDIAN
6672           && (mask & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6673         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6674       break;
6675
6676     case SIGN_EXTEND:
6677     case ZERO_EXTEND:
6678     case ZERO_EXTRACT:
6679     case SIGN_EXTRACT:
6680       x = expand_compound_operation (x);
6681       if (GET_CODE (x) != code)
6682         return force_to_mode (x, mode, mask, reg, next_select);
6683       break;
6684
6685     case REG:
6686       if (reg != 0 && (rtx_equal_p (get_last_value (reg), x)
6687                        || rtx_equal_p (reg, get_last_value (x))))
6688         x = reg;
6689       break;
6690
6691     case SUBREG:
6692       if (subreg_lowpart_p (x)
6693           /* We can ignore the effect of this SUBREG if it narrows the mode or
6694              if the constant masks to zero all the bits the mode doesn't
6695              have.  */
6696           && ((GET_MODE_SIZE (GET_MODE (x))
6697                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
6698               || (0 == (mask
6699                         & GET_MODE_MASK (GET_MODE (x))
6700                         & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x)))))))
6701         return force_to_mode (SUBREG_REG (x), mode, mask, reg, next_select);
6702       break;
6703
6704     case AND:
6705       /* If this is an AND with a constant, convert it into an AND
6706          whose constant is the AND of that constant with MASK.  If it
6707          remains an AND of MASK, delete it since it is redundant.  */
6708
6709       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
6710         {
6711           x = simplify_and_const_int (x, op_mode, XEXP (x, 0),
6712                                       mask & INTVAL (XEXP (x, 1)));
6713
6714           /* If X is still an AND, see if it is an AND with a mask that
6715              is just some low-order bits.  If so, and it is MASK, we don't
6716              need it.  */
6717
6718           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6719               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) == mask)
6720             x = XEXP (x, 0);
6721
6722           /* If it remains an AND, try making another AND with the bits
6723              in the mode mask that aren't in MASK turned on.  If the
6724              constant in the AND is wide enough, this might make a
6725              cheaper constant.  */
6726
6727           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6728               && GET_MODE_MASK (GET_MODE (x)) != mask
6729               && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
6730             {
6731               HOST_WIDE_INT cval = (INTVAL (XEXP (x, 1))
6732                                     | (GET_MODE_MASK (GET_MODE (x)) & ~mask));
6733               int width = GET_MODE_BITSIZE (GET_MODE (x));
6734               rtx y;
6735
6736               /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6737                  number, sign extend it.  */
6738               if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6739                   && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6740                 cval |= (HOST_WIDE_INT) -1 << width;
6741
6742               y = gen_binary (AND, GET_MODE (x), XEXP (x, 0), GEN_INT (cval));
6743               if (rtx_cost (y, SET) < rtx_cost (x, SET))
6744                 x = y;
6745             }
6746
6747           break;
6748         }
6749
6750       goto binop;
6751
6752     case PLUS:
6753       /* In (and (plus FOO C1) M), if M is a mask that just turns off
6754          low-order bits (as in an alignment operation) and FOO is already
6755          aligned to that boundary, mask C1 to that boundary as well.
6756          This may eliminate that PLUS and, later, the AND.  */
6757
6758       {
6759         unsigned int width = GET_MODE_BITSIZE (mode);
6760         unsigned HOST_WIDE_INT smask = mask;
6761
6762         /* If MODE is narrower than HOST_WIDE_INT and mask is a negative
6763            number, sign extend it.  */
6764
6765         if (width < HOST_BITS_PER_WIDE_INT
6766             && (smask & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6767           smask |= (HOST_WIDE_INT) -1 << width;
6768
6769         if (GET_CODE (XEXP (x, 1)) == CONST_INT
6770             && exact_log2 (- smask) >= 0)
6771           {
6772 #ifdef STACK_BIAS
6773             if (STACK_BIAS
6774                 && (XEXP (x, 0) == stack_pointer_rtx
6775                     || XEXP (x, 0) == frame_pointer_rtx))
6776               {
6777                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
6778                 unsigned HOST_WIDE_INT sp_mask = GET_MODE_MASK (mode);
6779
6780                 sp_mask &= ~(sp_alignment - 1);
6781                 if ((sp_mask & ~smask) == 0
6782                     && ((INTVAL (XEXP (x, 1)) - STACK_BIAS) & ~smask) != 0)
6783                   return force_to_mode (plus_constant (XEXP (x, 0),
6784                                                        ((INTVAL (XEXP (x, 1)) -
6785                                                          STACK_BIAS) & smask)
6786                                                        + STACK_BIAS),
6787                                         mode, smask, reg, next_select);
6788               }
6789 #endif
6790             if ((nonzero_bits (XEXP (x, 0), mode) & ~smask) == 0
6791                 && (INTVAL (XEXP (x, 1)) & ~smask) != 0)
6792               return force_to_mode (plus_constant (XEXP (x, 0),
6793                                                    (INTVAL (XEXP (x, 1))
6794                                                     & smask)),
6795                                     mode, smask, reg, next_select);
6796           }
6797       }
6798
6799       /* ... fall through ...  */
6800
6801     case MULT:
6802       /* For PLUS, MINUS and MULT, we need any bits less significant than the
6803          most significant bit in MASK since carries from those bits will
6804          affect the bits we are interested in.  */
6805       mask = fuller_mask;
6806       goto binop;
6807
6808     case MINUS:
6809       /* If X is (minus C Y) where C's least set bit is larger than any bit
6810          in the mask, then we may replace with (neg Y).  */
6811       if (GET_CODE (XEXP (x, 0)) == CONST_INT
6812           && (((unsigned HOST_WIDE_INT) (INTVAL (XEXP (x, 0))
6813                                         & -INTVAL (XEXP (x, 0))))
6814               > mask))
6815         {
6816           x = simplify_gen_unary (NEG, GET_MODE (x), XEXP (x, 1),
6817                                   GET_MODE (x));
6818           return force_to_mode (x, mode, mask, reg, next_select);
6819         }
6820
6821       /* Similarly, if C contains every bit in the mask, then we may
6822          replace with (not Y).  */
6823       if (GET_CODE (XEXP (x, 0)) == CONST_INT
6824           && ((INTVAL (XEXP (x, 0)) | (HOST_WIDE_INT) mask)
6825               == INTVAL (XEXP (x, 0))))
6826         {
6827           x = simplify_gen_unary (NOT, GET_MODE (x),
6828                                   XEXP (x, 1), GET_MODE (x));
6829           return force_to_mode (x, mode, mask, reg, next_select);
6830         }
6831
6832       mask = fuller_mask;
6833       goto binop;
6834
6835     case IOR:
6836     case XOR:
6837       /* If X is (ior (lshiftrt FOO C1) C2), try to commute the IOR and
6838          LSHIFTRT so we end up with an (and (lshiftrt (ior ...) ...) ...)
6839          operation which may be a bitfield extraction.  Ensure that the
6840          constant we form is not wider than the mode of X.  */
6841
6842       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6843           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6844           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6845           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6846           && GET_CODE (XEXP (x, 1)) == CONST_INT
6847           && ((INTVAL (XEXP (XEXP (x, 0), 1))
6848                + floor_log2 (INTVAL (XEXP (x, 1))))
6849               < GET_MODE_BITSIZE (GET_MODE (x)))
6850           && (INTVAL (XEXP (x, 1))
6851               & ~nonzero_bits (XEXP (x, 0), GET_MODE (x))) == 0)
6852         {
6853           temp = GEN_INT ((INTVAL (XEXP (x, 1)) & mask)
6854                           << INTVAL (XEXP (XEXP (x, 0), 1)));
6855           temp = gen_binary (GET_CODE (x), GET_MODE (x),
6856                              XEXP (XEXP (x, 0), 0), temp);
6857           x = gen_binary (LSHIFTRT, GET_MODE (x), temp,
6858                           XEXP (XEXP (x, 0), 1));
6859           return force_to_mode (x, mode, mask, reg, next_select);
6860         }
6861
6862     binop:
6863       /* For most binary operations, just propagate into the operation and
6864          change the mode if we have an operation of that mode.   */
6865
6866       op0 = gen_lowpart_for_combine (op_mode,
6867                                      force_to_mode (XEXP (x, 0), mode, mask,
6868                                                     reg, next_select));
6869       op1 = gen_lowpart_for_combine (op_mode,
6870                                      force_to_mode (XEXP (x, 1), mode, mask,
6871                                                     reg, next_select));
6872
6873       /* If OP1 is a CONST_INT and X is an IOR or XOR, clear bits outside
6874          MASK since OP1 might have been sign-extended but we never want
6875          to turn on extra bits, since combine might have previously relied
6876          on them being off.  */
6877       if (GET_CODE (op1) == CONST_INT && (code == IOR || code == XOR)
6878           && (INTVAL (op1) & mask) != 0)
6879         op1 = GEN_INT (INTVAL (op1) & mask);
6880
6881       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
6882         x = gen_binary (code, op_mode, op0, op1);
6883       break;
6884
6885     case ASHIFT:
6886       /* For left shifts, do the same, but just for the first operand.
6887          However, we cannot do anything with shifts where we cannot
6888          guarantee that the counts are smaller than the size of the mode
6889          because such a count will have a different meaning in a
6890          wider mode.  */
6891
6892       if (! (GET_CODE (XEXP (x, 1)) == CONST_INT
6893              && INTVAL (XEXP (x, 1)) >= 0
6894              && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (mode))
6895           && ! (GET_MODE (XEXP (x, 1)) != VOIDmode
6896                 && (nonzero_bits (XEXP (x, 1), GET_MODE (XEXP (x, 1)))
6897                     < (unsigned HOST_WIDE_INT) GET_MODE_BITSIZE (mode))))
6898         break;
6899
6900       /* If the shift count is a constant and we can do arithmetic in
6901          the mode of the shift, refine which bits we need.  Otherwise, use the
6902          conservative form of the mask.  */
6903       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6904           && INTVAL (XEXP (x, 1)) >= 0
6905           && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (op_mode)
6906           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6907         mask >>= INTVAL (XEXP (x, 1));
6908       else
6909         mask = fuller_mask;
6910
6911       op0 = gen_lowpart_for_combine (op_mode,
6912                                      force_to_mode (XEXP (x, 0), op_mode,
6913                                                     mask, reg, next_select));
6914
6915       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
6916         x = gen_binary (code, op_mode, op0, XEXP (x, 1));
6917       break;
6918
6919     case LSHIFTRT:
6920       /* Here we can only do something if the shift count is a constant,
6921          this shift constant is valid for the host, and we can do arithmetic
6922          in OP_MODE.  */
6923
6924       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6925           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6926           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6927         {
6928           rtx inner = XEXP (x, 0);
6929           unsigned HOST_WIDE_INT inner_mask;
6930
6931           /* Select the mask of the bits we need for the shift operand.  */
6932           inner_mask = mask << INTVAL (XEXP (x, 1));
6933
6934           /* We can only change the mode of the shift if we can do arithmetic
6935              in the mode of the shift and INNER_MASK is no wider than the
6936              width of OP_MODE.  */
6937           if (GET_MODE_BITSIZE (op_mode) > HOST_BITS_PER_WIDE_INT
6938               || (inner_mask & ~GET_MODE_MASK (op_mode)) != 0)
6939             op_mode = GET_MODE (x);
6940
6941           inner = force_to_mode (inner, op_mode, inner_mask, reg, next_select);
6942
6943           if (GET_MODE (x) != op_mode || inner != XEXP (x, 0))
6944             x = gen_binary (LSHIFTRT, op_mode, inner, XEXP (x, 1));
6945         }
6946
6947       /* If we have (and (lshiftrt FOO C1) C2) where the combination of the
6948          shift and AND produces only copies of the sign bit (C2 is one less
6949          than a power of two), we can do this with just a shift.  */
6950
6951       if (GET_CODE (x) == LSHIFTRT
6952           && GET_CODE (XEXP (x, 1)) == CONST_INT
6953           /* The shift puts one of the sign bit copies in the least significant
6954              bit.  */
6955           && ((INTVAL (XEXP (x, 1))
6956                + num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0))))
6957               >= GET_MODE_BITSIZE (GET_MODE (x)))
6958           && exact_log2 (mask + 1) >= 0
6959           /* Number of bits left after the shift must be more than the mask
6960              needs.  */
6961           && ((INTVAL (XEXP (x, 1)) + exact_log2 (mask + 1))
6962               <= GET_MODE_BITSIZE (GET_MODE (x)))
6963           /* Must be more sign bit copies than the mask needs.  */
6964           && ((int) num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
6965               >= exact_log2 (mask + 1)))
6966         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0),
6967                         GEN_INT (GET_MODE_BITSIZE (GET_MODE (x))
6968                                  - exact_log2 (mask + 1)));
6969
6970       goto shiftrt;
6971
6972     case ASHIFTRT:
6973       /* If we are just looking for the sign bit, we don't need this shift at
6974          all, even if it has a variable count.  */
6975       if (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
6976           && (mask == ((unsigned HOST_WIDE_INT) 1
6977                        << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
6978         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6979
6980       /* If this is a shift by a constant, get a mask that contains those bits
6981          that are not copies of the sign bit.  We then have two cases:  If
6982          MASK only includes those bits, this can be a logical shift, which may
6983          allow simplifications.  If MASK is a single-bit field not within
6984          those bits, we are requesting a copy of the sign bit and hence can
6985          shift the sign bit to the appropriate location.  */
6986
6987       if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) >= 0
6988           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
6989         {
6990           int i = -1;
6991
6992           /* If the considered data is wider then HOST_WIDE_INT, we can't
6993              represent a mask for all its bits in a single scalar.
6994              But we only care about the lower bits, so calculate these.  */
6995
6996           if (GET_MODE_BITSIZE (GET_MODE (x)) > HOST_BITS_PER_WIDE_INT)
6997             {
6998               nonzero = ~(HOST_WIDE_INT) 0;
6999
7000               /* GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
7001                  is the number of bits a full-width mask would have set.
7002                  We need only shift if these are fewer than nonzero can
7003                  hold.  If not, we must keep all bits set in nonzero.  */
7004
7005               if (GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
7006                   < HOST_BITS_PER_WIDE_INT)
7007                 nonzero >>= INTVAL (XEXP (x, 1))
7008                             + HOST_BITS_PER_WIDE_INT
7009                             - GET_MODE_BITSIZE (GET_MODE (x)) ;
7010             }
7011           else
7012             {
7013               nonzero = GET_MODE_MASK (GET_MODE (x));
7014               nonzero >>= INTVAL (XEXP (x, 1));
7015             }
7016
7017           if ((mask & ~nonzero) == 0
7018               || (i = exact_log2 (mask)) >= 0)
7019             {
7020               x = simplify_shift_const
7021                 (x, LSHIFTRT, GET_MODE (x), XEXP (x, 0),
7022                  i < 0 ? INTVAL (XEXP (x, 1))
7023                  : GET_MODE_BITSIZE (GET_MODE (x)) - 1 - i);
7024
7025               if (GET_CODE (x) != ASHIFTRT)
7026                 return force_to_mode (x, mode, mask, reg, next_select);
7027             }
7028         }
7029
7030       /* If MASK is 1, convert this to a LSHIFTRT.  This can be done
7031          even if the shift count isn't a constant.  */
7032       if (mask == 1)
7033         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0), XEXP (x, 1));
7034
7035     shiftrt:
7036
7037       /* If this is a zero- or sign-extension operation that just affects bits
7038          we don't care about, remove it.  Be sure the call above returned
7039          something that is still a shift.  */
7040
7041       if ((GET_CODE (x) == LSHIFTRT || GET_CODE (x) == ASHIFTRT)
7042           && GET_CODE (XEXP (x, 1)) == CONST_INT
7043           && INTVAL (XEXP (x, 1)) >= 0
7044           && (INTVAL (XEXP (x, 1))
7045               <= GET_MODE_BITSIZE (GET_MODE (x)) - (floor_log2 (mask) + 1))
7046           && GET_CODE (XEXP (x, 0)) == ASHIFT
7047           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7048           && INTVAL (XEXP (XEXP (x, 0), 1)) == INTVAL (XEXP (x, 1)))
7049         return force_to_mode (XEXP (XEXP (x, 0), 0), mode, mask,
7050                               reg, next_select);
7051
7052       break;
7053
7054     case ROTATE:
7055     case ROTATERT:
7056       /* If the shift count is constant and we can do computations
7057          in the mode of X, compute where the bits we care about are.
7058          Otherwise, we can't do anything.  Don't change the mode of
7059          the shift or propagate MODE into the shift, though.  */
7060       if (GET_CODE (XEXP (x, 1)) == CONST_INT
7061           && INTVAL (XEXP (x, 1)) >= 0)
7062         {
7063           temp = simplify_binary_operation (code == ROTATE ? ROTATERT : ROTATE,
7064                                             GET_MODE (x), GEN_INT (mask),
7065                                             XEXP (x, 1));
7066           if (temp && GET_CODE(temp) == CONST_INT)
7067             SUBST (XEXP (x, 0),
7068                    force_to_mode (XEXP (x, 0), GET_MODE (x),
7069                                   INTVAL (temp), reg, next_select));
7070         }
7071       break;
7072
7073     case NEG:
7074       /* If we just want the low-order bit, the NEG isn't needed since it
7075          won't change the low-order bit.    */
7076       if (mask == 1)
7077         return force_to_mode (XEXP (x, 0), mode, mask, reg, just_select);
7078
7079       /* We need any bits less significant than the most significant bit in
7080          MASK since carries from those bits will affect the bits we are
7081          interested in.  */
7082       mask = fuller_mask;
7083       goto unop;
7084
7085     case NOT:
7086       /* (not FOO) is (xor FOO CONST), so if FOO is an LSHIFTRT, we can do the
7087          same as the XOR case above.  Ensure that the constant we form is not
7088          wider than the mode of X.  */
7089
7090       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
7091           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7092           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
7093           && (INTVAL (XEXP (XEXP (x, 0), 1)) + floor_log2 (mask)
7094               < GET_MODE_BITSIZE (GET_MODE (x)))
7095           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT)
7096         {
7097           temp = GEN_INT (mask << INTVAL (XEXP (XEXP (x, 0), 1)));
7098           temp = gen_binary (XOR, GET_MODE (x), XEXP (XEXP (x, 0), 0), temp);
7099           x = gen_binary (LSHIFTRT, GET_MODE (x), temp, XEXP (XEXP (x, 0), 1));
7100
7101           return force_to_mode (x, mode, mask, reg, next_select);
7102         }
7103
7104       /* (and (not FOO) CONST) is (not (or FOO (not CONST))), so we must
7105          use the full mask inside the NOT.  */
7106       mask = fuller_mask;
7107
7108     unop:
7109       op0 = gen_lowpart_for_combine (op_mode,
7110                                      force_to_mode (XEXP (x, 0), mode, mask,
7111                                                     reg, next_select));
7112       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
7113         x = simplify_gen_unary (code, op_mode, op0, op_mode);
7114       break;
7115
7116     case NE:
7117       /* (and (ne FOO 0) CONST) can be (and FOO CONST) if CONST is included
7118          in STORE_FLAG_VALUE and FOO has a single bit that might be nonzero,
7119          which is equal to STORE_FLAG_VALUE.  */
7120       if ((mask & ~STORE_FLAG_VALUE) == 0 && XEXP (x, 1) == const0_rtx
7121           && exact_log2 (nonzero_bits (XEXP (x, 0), mode)) >= 0
7122           && nonzero_bits (XEXP (x, 0), mode) == STORE_FLAG_VALUE)
7123         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
7124
7125       break;
7126
7127     case IF_THEN_ELSE:
7128       /* We have no way of knowing if the IF_THEN_ELSE can itself be
7129          written in a narrower mode.  We play it safe and do not do so.  */
7130
7131       SUBST (XEXP (x, 1),
7132              gen_lowpart_for_combine (GET_MODE (x),
7133                                       force_to_mode (XEXP (x, 1), mode,
7134                                                      mask, reg, next_select)));
7135       SUBST (XEXP (x, 2),
7136              gen_lowpart_for_combine (GET_MODE (x),
7137                                       force_to_mode (XEXP (x, 2), mode,
7138                                                      mask, reg,next_select)));
7139       break;
7140
7141     default:
7142       break;
7143     }
7144
7145   /* Ensure we return a value of the proper mode.  */
7146   return gen_lowpart_for_combine (mode, x);
7147 }
7148 \f
7149 /* Return nonzero if X is an expression that has one of two values depending on
7150    whether some other value is zero or nonzero.  In that case, we return the
7151    value that is being tested, *PTRUE is set to the value if the rtx being
7152    returned has a nonzero value, and *PFALSE is set to the other alternative.
7153
7154    If we return zero, we set *PTRUE and *PFALSE to X.  */
7155
7156 static rtx
7157 if_then_else_cond (x, ptrue, pfalse)
7158      rtx x;
7159      rtx *ptrue, *pfalse;
7160 {
7161   enum machine_mode mode = GET_MODE (x);
7162   enum rtx_code code = GET_CODE (x);
7163   rtx cond0, cond1, true0, true1, false0, false1;
7164   unsigned HOST_WIDE_INT nz;
7165
7166   /* If we are comparing a value against zero, we are done.  */
7167   if ((code == NE || code == EQ)
7168       && GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
7169     {
7170       *ptrue = (code == NE) ? const_true_rtx : const0_rtx;
7171       *pfalse = (code == NE) ? const0_rtx : const_true_rtx;
7172       return XEXP (x, 0);
7173     }
7174
7175   /* If this is a unary operation whose operand has one of two values, apply
7176      our opcode to compute those values.  */
7177   else if (GET_RTX_CLASS (code) == '1'
7178            && (cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0)) != 0)
7179     {
7180       *ptrue = simplify_gen_unary (code, mode, true0, GET_MODE (XEXP (x, 0)));
7181       *pfalse = simplify_gen_unary (code, mode, false0,
7182                                     GET_MODE (XEXP (x, 0)));
7183       return cond0;
7184     }
7185
7186   /* If this is a COMPARE, do nothing, since the IF_THEN_ELSE we would
7187      make can't possibly match and would suppress other optimizations.  */
7188   else if (code == COMPARE)
7189     ;
7190
7191   /* If this is a binary operation, see if either side has only one of two
7192      values.  If either one does or if both do and they are conditional on
7193      the same value, compute the new true and false values.  */
7194   else if (GET_RTX_CLASS (code) == 'c' || GET_RTX_CLASS (code) == '2'
7195            || GET_RTX_CLASS (code) == '<')
7196     {
7197       cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0);
7198       cond1 = if_then_else_cond (XEXP (x, 1), &true1, &false1);
7199
7200       if ((cond0 != 0 || cond1 != 0)
7201           && ! (cond0 != 0 && cond1 != 0 && ! rtx_equal_p (cond0, cond1)))
7202         {
7203           /* If if_then_else_cond returned zero, then true/false are the
7204              same rtl.  We must copy one of them to prevent invalid rtl
7205              sharing.  */
7206           if (cond0 == 0)
7207             true0 = copy_rtx (true0);
7208           else if (cond1 == 0)
7209             true1 = copy_rtx (true1);
7210
7211           *ptrue = gen_binary (code, mode, true0, true1);
7212           *pfalse = gen_binary (code, mode, false0, false1);
7213           return cond0 ? cond0 : cond1;
7214         }
7215
7216       /* See if we have PLUS, IOR, XOR, MINUS or UMAX, where one of the
7217          operands is zero when the other is non-zero, and vice-versa,
7218          and STORE_FLAG_VALUE is 1 or -1.  */
7219
7220       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7221           && (code == PLUS || code == IOR || code == XOR || code == MINUS
7222               || code == UMAX)
7223           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7224         {
7225           rtx op0 = XEXP (XEXP (x, 0), 1);
7226           rtx op1 = XEXP (XEXP (x, 1), 1);
7227
7228           cond0 = XEXP (XEXP (x, 0), 0);
7229           cond1 = XEXP (XEXP (x, 1), 0);
7230
7231           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7232               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7233               && ((GET_CODE (cond0) == combine_reversed_comparison_code (cond1)
7234                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7235                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7236                   || ((swap_condition (GET_CODE (cond0))
7237                        == combine_reversed_comparison_code (cond1))
7238                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7239                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7240               && ! side_effects_p (x))
7241             {
7242               *ptrue = gen_binary (MULT, mode, op0, const_true_rtx);
7243               *pfalse = gen_binary (MULT, mode,
7244                                     (code == MINUS
7245                                      ? simplify_gen_unary (NEG, mode, op1,
7246                                                            mode)
7247                                      : op1),
7248                                     const_true_rtx);
7249               return cond0;
7250             }
7251         }
7252
7253       /* Similarly for MULT, AND and UMIN, execpt that for these the result
7254          is always zero.  */
7255       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7256           && (code == MULT || code == AND || code == UMIN)
7257           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7258         {
7259           cond0 = XEXP (XEXP (x, 0), 0);
7260           cond1 = XEXP (XEXP (x, 1), 0);
7261
7262           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7263               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7264               && ((GET_CODE (cond0) == combine_reversed_comparison_code (cond1)
7265                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7266                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7267                   || ((swap_condition (GET_CODE (cond0))
7268                        == combine_reversed_comparison_code (cond1))
7269                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7270                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7271               && ! side_effects_p (x))
7272             {
7273               *ptrue = *pfalse = const0_rtx;
7274               return cond0;
7275             }
7276         }
7277     }
7278
7279   else if (code == IF_THEN_ELSE)
7280     {
7281       /* If we have IF_THEN_ELSE already, extract the condition and
7282          canonicalize it if it is NE or EQ.  */
7283       cond0 = XEXP (x, 0);
7284       *ptrue = XEXP (x, 1), *pfalse = XEXP (x, 2);
7285       if (GET_CODE (cond0) == NE && XEXP (cond0, 1) == const0_rtx)
7286         return XEXP (cond0, 0);
7287       else if (GET_CODE (cond0) == EQ && XEXP (cond0, 1) == const0_rtx)
7288         {
7289           *ptrue = XEXP (x, 2), *pfalse = XEXP (x, 1);
7290           return XEXP (cond0, 0);
7291         }
7292       else
7293         return cond0;
7294     }
7295
7296   /* If X is a normal SUBREG with both inner and outer modes integral,
7297      we can narrow both the true and false values of the inner expression,
7298      if there is a condition.  */
7299   else if (code == SUBREG && GET_MODE_CLASS (mode) == MODE_INT
7300            && GET_MODE_CLASS (GET_MODE (SUBREG_REG (x))) == MODE_INT
7301            && GET_MODE_SIZE (mode) <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))
7302            && 0 != (cond0 = if_then_else_cond (SUBREG_REG (x),
7303                                                &true0, &false0)))
7304     {
7305       if ((GET_CODE (SUBREG_REG (x)) == REG
7306            || GET_CODE (SUBREG_REG (x)) == MEM
7307            || CONSTANT_P (SUBREG_REG (x)))
7308           && GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))) > UNITS_PER_WORD
7309           && (WORDS_BIG_ENDIAN || SUBREG_BYTE (x) >= UNITS_PER_WORD))
7310         {
7311           true0 = operand_subword (true0, SUBREG_BYTE (x) / UNITS_PER_WORD, 0,
7312                                    GET_MODE (SUBREG_REG (x)));
7313           false0 = operand_subword (false0, SUBREG_BYTE (x) / UNITS_PER_WORD, 0,
7314                                     GET_MODE (SUBREG_REG (x)));
7315         }
7316       *ptrue = force_to_mode (true0, mode, ~(HOST_WIDE_INT) 0, NULL_RTX, 0);
7317       *pfalse
7318         = force_to_mode (false0, mode, ~(HOST_WIDE_INT) 0, NULL_RTX, 0);
7319
7320       return cond0;
7321     }
7322
7323   /* If X is a constant, this isn't special and will cause confusions
7324      if we treat it as such.  Likewise if it is equivalent to a constant.  */
7325   else if (CONSTANT_P (x)
7326            || ((cond0 = get_last_value (x)) != 0 && CONSTANT_P (cond0)))
7327     ;
7328
7329   /* If we're in BImode, canonicalize on 0 and STORE_FLAG_VALUE, as that
7330      will be least confusing to the rest of the compiler.  */
7331   else if (mode == BImode)
7332     {
7333       *ptrue = GEN_INT (STORE_FLAG_VALUE), *pfalse = const0_rtx;
7334       return x;
7335     }
7336
7337   /* If X is known to be either 0 or -1, those are the true and
7338      false values when testing X.  */
7339   else if (x == constm1_rtx || x == const0_rtx
7340            || (mode != VOIDmode
7341                && num_sign_bit_copies (x, mode) == GET_MODE_BITSIZE (mode)))
7342     {
7343       *ptrue = constm1_rtx, *pfalse = const0_rtx;
7344       return x;
7345     }
7346
7347   /* Likewise for 0 or a single bit.  */
7348   else if (mode != VOIDmode
7349            && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
7350            && exact_log2 (nz = nonzero_bits (x, mode)) >= 0)
7351     {
7352       *ptrue = GEN_INT (nz), *pfalse = const0_rtx;
7353       return x;
7354     }
7355
7356   /* Otherwise fail; show no condition with true and false values the same.  */
7357   *ptrue = *pfalse = x;
7358   return 0;
7359 }
7360 \f
7361 /* Return the value of expression X given the fact that condition COND
7362    is known to be true when applied to REG as its first operand and VAL
7363    as its second.  X is known to not be shared and so can be modified in
7364    place.
7365
7366    We only handle the simplest cases, and specifically those cases that
7367    arise with IF_THEN_ELSE expressions.  */
7368
7369 static rtx
7370 known_cond (x, cond, reg, val)
7371      rtx x;
7372      enum rtx_code cond;
7373      rtx reg, val;
7374 {
7375   enum rtx_code code = GET_CODE (x);
7376   rtx temp;
7377   const char *fmt;
7378   int i, j;
7379
7380   if (side_effects_p (x))
7381     return x;
7382
7383   if (cond == EQ && rtx_equal_p (x, reg) && !FLOAT_MODE_P (cond))
7384     return val;
7385   if (cond == UNEQ && rtx_equal_p (x, reg))
7386     return val;
7387
7388   /* If X is (abs REG) and we know something about REG's relationship
7389      with zero, we may be able to simplify this.  */
7390
7391   if (code == ABS && rtx_equal_p (XEXP (x, 0), reg) && val == const0_rtx)
7392     switch (cond)
7393       {
7394       case GE:  case GT:  case EQ:
7395         return XEXP (x, 0);
7396       case LT:  case LE:
7397         return simplify_gen_unary (NEG, GET_MODE (XEXP (x, 0)),
7398                                    XEXP (x, 0),
7399                                    GET_MODE (XEXP (x, 0)));
7400       default:
7401         break;
7402       }
7403
7404   /* The only other cases we handle are MIN, MAX, and comparisons if the
7405      operands are the same as REG and VAL.  */
7406
7407   else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == 'c')
7408     {
7409       if (rtx_equal_p (XEXP (x, 0), val))
7410         cond = swap_condition (cond), temp = val, val = reg, reg = temp;
7411
7412       if (rtx_equal_p (XEXP (x, 0), reg) && rtx_equal_p (XEXP (x, 1), val))
7413         {
7414           if (GET_RTX_CLASS (code) == '<')
7415             {
7416               if (comparison_dominates_p (cond, code))
7417                 return const_true_rtx;
7418
7419               code = combine_reversed_comparison_code (x);
7420               if (code != UNKNOWN
7421                   && comparison_dominates_p (cond, code))
7422                 return const0_rtx;
7423               else
7424                 return x;
7425             }
7426           else if (code == SMAX || code == SMIN
7427                    || code == UMIN || code == UMAX)
7428             {
7429               int unsignedp = (code == UMIN || code == UMAX);
7430
7431               /* Do not reverse the condition when it is NE or EQ.
7432                  This is because we cannot conclude anything about
7433                  the value of 'SMAX (x, y)' when x is not equal to y,
7434                  but we can when x equals y.  */ 
7435               if ((code == SMAX || code == UMAX)
7436                   && ! (cond == EQ || cond == NE))
7437                 cond = reverse_condition (cond);
7438
7439               switch (cond)
7440                 {
7441                 case GE:   case GT:
7442                   return unsignedp ? x : XEXP (x, 1);
7443                 case LE:   case LT:
7444                   return unsignedp ? x : XEXP (x, 0);
7445                 case GEU:  case GTU:
7446                   return unsignedp ? XEXP (x, 1) : x;
7447                 case LEU:  case LTU:
7448                   return unsignedp ? XEXP (x, 0) : x;
7449                 default:
7450                   break;
7451                 }
7452             }
7453         }
7454     }
7455
7456   fmt = GET_RTX_FORMAT (code);
7457   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7458     {
7459       if (fmt[i] == 'e')
7460         SUBST (XEXP (x, i), known_cond (XEXP (x, i), cond, reg, val));
7461       else if (fmt[i] == 'E')
7462         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
7463           SUBST (XVECEXP (x, i, j), known_cond (XVECEXP (x, i, j),
7464                                                 cond, reg, val));
7465     }
7466
7467   return x;
7468 }
7469 \f
7470 /* See if X and Y are equal for the purposes of seeing if we can rewrite an
7471    assignment as a field assignment.  */
7472
7473 static int
7474 rtx_equal_for_field_assignment_p (x, y)
7475      rtx x;
7476      rtx y;
7477 {
7478   if (x == y || rtx_equal_p (x, y))
7479     return 1;
7480
7481   if (x == 0 || y == 0 || GET_MODE (x) != GET_MODE (y))
7482     return 0;
7483
7484   /* Check for a paradoxical SUBREG of a MEM compared with the MEM.
7485      Note that all SUBREGs of MEM are paradoxical; otherwise they
7486      would have been rewritten.  */
7487   if (GET_CODE (x) == MEM && GET_CODE (y) == SUBREG
7488       && GET_CODE (SUBREG_REG (y)) == MEM
7489       && rtx_equal_p (SUBREG_REG (y),
7490                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (y)), x)))
7491     return 1;
7492
7493   if (GET_CODE (y) == MEM && GET_CODE (x) == SUBREG
7494       && GET_CODE (SUBREG_REG (x)) == MEM
7495       && rtx_equal_p (SUBREG_REG (x),
7496                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (x)), y)))
7497     return 1;
7498
7499   /* We used to see if get_last_value of X and Y were the same but that's
7500      not correct.  In one direction, we'll cause the assignment to have
7501      the wrong destination and in the case, we'll import a register into this
7502      insn that might have already have been dead.   So fail if none of the
7503      above cases are true.  */
7504   return 0;
7505 }
7506 \f
7507 /* See if X, a SET operation, can be rewritten as a bit-field assignment.
7508    Return that assignment if so.
7509
7510    We only handle the most common cases.  */
7511
7512 static rtx
7513 make_field_assignment (x)
7514      rtx x;
7515 {
7516   rtx dest = SET_DEST (x);
7517   rtx src = SET_SRC (x);
7518   rtx assign;
7519   rtx rhs, lhs;
7520   HOST_WIDE_INT c1;
7521   HOST_WIDE_INT pos;
7522   unsigned HOST_WIDE_INT len;
7523   rtx other;
7524   enum machine_mode mode;
7525
7526   /* If SRC was (and (not (ashift (const_int 1) POS)) DEST), this is
7527      a clear of a one-bit field.  We will have changed it to
7528      (and (rotate (const_int -2) POS) DEST), so check for that.  Also check
7529      for a SUBREG.  */
7530
7531   if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == ROTATE
7532       && GET_CODE (XEXP (XEXP (src, 0), 0)) == CONST_INT
7533       && INTVAL (XEXP (XEXP (src, 0), 0)) == -2
7534       && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7535     {
7536       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7537                                 1, 1, 1, 0);
7538       if (assign != 0)
7539         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7540       return x;
7541     }
7542
7543   else if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == SUBREG
7544            && subreg_lowpart_p (XEXP (src, 0))
7545            && (GET_MODE_SIZE (GET_MODE (XEXP (src, 0)))
7546                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (src, 0)))))
7547            && GET_CODE (SUBREG_REG (XEXP (src, 0))) == ROTATE
7548            && INTVAL (XEXP (SUBREG_REG (XEXP (src, 0)), 0)) == -2
7549            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7550     {
7551       assign = make_extraction (VOIDmode, dest, 0,
7552                                 XEXP (SUBREG_REG (XEXP (src, 0)), 1),
7553                                 1, 1, 1, 0);
7554       if (assign != 0)
7555         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7556       return x;
7557     }
7558
7559   /* If SRC is (ior (ashift (const_int 1) POS) DEST), this is a set of a
7560      one-bit field.  */
7561   else if (GET_CODE (src) == IOR && GET_CODE (XEXP (src, 0)) == ASHIFT
7562            && XEXP (XEXP (src, 0), 0) == const1_rtx
7563            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7564     {
7565       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7566                                 1, 1, 1, 0);
7567       if (assign != 0)
7568         return gen_rtx_SET (VOIDmode, assign, const1_rtx);
7569       return x;
7570     }
7571
7572   /* The other case we handle is assignments into a constant-position
7573      field.  They look like (ior/xor (and DEST C1) OTHER).  If C1 represents
7574      a mask that has all one bits except for a group of zero bits and
7575      OTHER is known to have zeros where C1 has ones, this is such an
7576      assignment.  Compute the position and length from C1.  Shift OTHER
7577      to the appropriate position, force it to the required mode, and
7578      make the extraction.  Check for the AND in both operands.  */
7579
7580   if (GET_CODE (src) != IOR && GET_CODE (src) != XOR)
7581     return x;
7582
7583   rhs = expand_compound_operation (XEXP (src, 0));
7584   lhs = expand_compound_operation (XEXP (src, 1));
7585
7586   if (GET_CODE (rhs) == AND
7587       && GET_CODE (XEXP (rhs, 1)) == CONST_INT
7588       && rtx_equal_for_field_assignment_p (XEXP (rhs, 0), dest))
7589     c1 = INTVAL (XEXP (rhs, 1)), other = lhs;
7590   else if (GET_CODE (lhs) == AND
7591            && GET_CODE (XEXP (lhs, 1)) == CONST_INT
7592            && rtx_equal_for_field_assignment_p (XEXP (lhs, 0), dest))
7593     c1 = INTVAL (XEXP (lhs, 1)), other = rhs;
7594   else
7595     return x;
7596
7597   pos = get_pos_from_mask ((~c1) & GET_MODE_MASK (GET_MODE (dest)), &len);
7598   if (pos < 0 || pos + len > GET_MODE_BITSIZE (GET_MODE (dest))
7599       || GET_MODE_BITSIZE (GET_MODE (dest)) > HOST_BITS_PER_WIDE_INT
7600       || (c1 & nonzero_bits (other, GET_MODE (dest))) != 0)
7601     return x;
7602
7603   assign = make_extraction (VOIDmode, dest, pos, NULL_RTX, len, 1, 1, 0);
7604   if (assign == 0)
7605     return x;
7606
7607   /* The mode to use for the source is the mode of the assignment, or of
7608      what is inside a possible STRICT_LOW_PART.  */
7609   mode = (GET_CODE (assign) == STRICT_LOW_PART
7610           ? GET_MODE (XEXP (assign, 0)) : GET_MODE (assign));
7611
7612   /* Shift OTHER right POS places and make it the source, restricting it
7613      to the proper length and mode.  */
7614
7615   src = force_to_mode (simplify_shift_const (NULL_RTX, LSHIFTRT,
7616                                              GET_MODE (src), other, pos),
7617                        mode,
7618                        GET_MODE_BITSIZE (mode) >= HOST_BITS_PER_WIDE_INT
7619                        ? ~(unsigned HOST_WIDE_INT) 0
7620                        : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
7621                        dest, 0);
7622
7623   return gen_rtx_SET (VOIDmode, assign, src);
7624 }
7625 \f
7626 /* See if X is of the form (+ (* a c) (* b c)) and convert to (* (+ a b) c)
7627    if so.  */
7628
7629 static rtx
7630 apply_distributive_law (x)
7631      rtx x;
7632 {
7633   enum rtx_code code = GET_CODE (x);
7634   rtx lhs, rhs, other;
7635   rtx tem;
7636   enum rtx_code inner_code;
7637
7638   /* Distributivity is not true for floating point.
7639      It can change the value.  So don't do it.
7640      -- rms and moshier@world.std.com.  */
7641   if (FLOAT_MODE_P (GET_MODE (x)))
7642     return x;
7643
7644   /* The outer operation can only be one of the following:  */
7645   if (code != IOR && code != AND && code != XOR
7646       && code != PLUS && code != MINUS)
7647     return x;
7648
7649   lhs = XEXP (x, 0), rhs = XEXP (x, 1);
7650
7651   /* If either operand is a primitive we can't do anything, so get out
7652      fast.  */
7653   if (GET_RTX_CLASS (GET_CODE (lhs)) == 'o'
7654       || GET_RTX_CLASS (GET_CODE (rhs)) == 'o')
7655     return x;
7656
7657   lhs = expand_compound_operation (lhs);
7658   rhs = expand_compound_operation (rhs);
7659   inner_code = GET_CODE (lhs);
7660   if (inner_code != GET_CODE (rhs))
7661     return x;
7662
7663   /* See if the inner and outer operations distribute.  */
7664   switch (inner_code)
7665     {
7666     case LSHIFTRT:
7667     case ASHIFTRT:
7668     case AND:
7669     case IOR:
7670       /* These all distribute except over PLUS.  */
7671       if (code == PLUS || code == MINUS)
7672         return x;
7673       break;
7674
7675     case MULT:
7676       if (code != PLUS && code != MINUS)
7677         return x;
7678       break;
7679
7680     case ASHIFT:
7681       /* This is also a multiply, so it distributes over everything.  */
7682       break;
7683
7684     case SUBREG:
7685       /* Non-paradoxical SUBREGs distributes over all operations, provided
7686          the inner modes and byte offsets are the same, this is an extraction
7687          of a low-order part, we don't convert an fp operation to int or
7688          vice versa, and we would not be converting a single-word
7689          operation into a multi-word operation.  The latter test is not
7690          required, but it prevents generating unneeded multi-word operations.
7691          Some of the previous tests are redundant given the latter test, but
7692          are retained because they are required for correctness.
7693
7694          We produce the result slightly differently in this case.  */
7695
7696       if (GET_MODE (SUBREG_REG (lhs)) != GET_MODE (SUBREG_REG (rhs))
7697           || SUBREG_BYTE (lhs) != SUBREG_BYTE (rhs)
7698           || ! subreg_lowpart_p (lhs)
7699           || (GET_MODE_CLASS (GET_MODE (lhs))
7700               != GET_MODE_CLASS (GET_MODE (SUBREG_REG (lhs))))
7701           || (GET_MODE_SIZE (GET_MODE (lhs))
7702               > GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))))
7703           || GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))) > UNITS_PER_WORD)
7704         return x;
7705
7706       tem = gen_binary (code, GET_MODE (SUBREG_REG (lhs)),
7707                         SUBREG_REG (lhs), SUBREG_REG (rhs));
7708       return gen_lowpart_for_combine (GET_MODE (x), tem);
7709
7710     default:
7711       return x;
7712     }
7713
7714   /* Set LHS and RHS to the inner operands (A and B in the example
7715      above) and set OTHER to the common operand (C in the example).
7716      These is only one way to do this unless the inner operation is
7717      commutative.  */
7718   if (GET_RTX_CLASS (inner_code) == 'c'
7719       && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 0)))
7720     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 1);
7721   else if (GET_RTX_CLASS (inner_code) == 'c'
7722            && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 1)))
7723     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 0);
7724   else if (GET_RTX_CLASS (inner_code) == 'c'
7725            && rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 0)))
7726     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 1);
7727   else if (rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 1)))
7728     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 0);
7729   else
7730     return x;
7731
7732   /* Form the new inner operation, seeing if it simplifies first.  */
7733   tem = gen_binary (code, GET_MODE (x), lhs, rhs);
7734
7735   /* There is one exception to the general way of distributing:
7736      (a ^ b) | (a ^ c) -> (~a) & (b ^ c)  */
7737   if (code == XOR && inner_code == IOR)
7738     {
7739       inner_code = AND;
7740       other = simplify_gen_unary (NOT, GET_MODE (x), other, GET_MODE (x));
7741     }
7742
7743   /* We may be able to continuing distributing the result, so call
7744      ourselves recursively on the inner operation before forming the
7745      outer operation, which we return.  */
7746   return gen_binary (inner_code, GET_MODE (x),
7747                      apply_distributive_law (tem), other);
7748 }
7749 \f
7750 /* We have X, a logical `and' of VAROP with the constant CONSTOP, to be done
7751    in MODE.
7752
7753    Return an equivalent form, if different from X.  Otherwise, return X.  If
7754    X is zero, we are to always construct the equivalent form.  */
7755
7756 static rtx
7757 simplify_and_const_int (x, mode, varop, constop)
7758      rtx x;
7759      enum machine_mode mode;
7760      rtx varop;
7761      unsigned HOST_WIDE_INT constop;
7762 {
7763   unsigned HOST_WIDE_INT nonzero;
7764   int i;
7765
7766   /* Simplify VAROP knowing that we will be only looking at some of the
7767      bits in it.  */
7768   varop = force_to_mode (varop, mode, constop, NULL_RTX, 0);
7769
7770   /* If VAROP is a CLOBBER, we will fail so return it; if it is a
7771      CONST_INT, we are done.  */
7772   if (GET_CODE (varop) == CLOBBER || GET_CODE (varop) == CONST_INT)
7773     return varop;
7774
7775   /* See what bits may be nonzero in VAROP.  Unlike the general case of
7776      a call to nonzero_bits, here we don't care about bits outside
7777      MODE.  */
7778
7779   nonzero = nonzero_bits (varop, mode) & GET_MODE_MASK (mode);
7780   nonzero = trunc_int_for_mode (nonzero, mode);
7781
7782   /* Turn off all bits in the constant that are known to already be zero.
7783      Thus, if the AND isn't needed at all, we will have CONSTOP == NONZERO_BITS
7784      which is tested below.  */
7785
7786   constop &= nonzero;
7787
7788   /* If we don't have any bits left, return zero.  */
7789   if (constop == 0)
7790     return const0_rtx;
7791
7792   /* If VAROP is a NEG of something known to be zero or 1 and CONSTOP is
7793      a power of two, we can replace this with a ASHIFT.  */
7794   if (GET_CODE (varop) == NEG && nonzero_bits (XEXP (varop, 0), mode) == 1
7795       && (i = exact_log2 (constop)) >= 0)
7796     return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (varop, 0), i);
7797
7798   /* If VAROP is an IOR or XOR, apply the AND to both branches of the IOR
7799      or XOR, then try to apply the distributive law.  This may eliminate
7800      operations if either branch can be simplified because of the AND.
7801      It may also make some cases more complex, but those cases probably
7802      won't match a pattern either with or without this.  */
7803
7804   if (GET_CODE (varop) == IOR || GET_CODE (varop) == XOR)
7805     return
7806       gen_lowpart_for_combine
7807         (mode,
7808          apply_distributive_law
7809          (gen_binary (GET_CODE (varop), GET_MODE (varop),
7810                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7811                                               XEXP (varop, 0), constop),
7812                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7813                                               XEXP (varop, 1), constop))));
7814
7815   /* Get VAROP in MODE.  Try to get a SUBREG if not.  Don't make a new SUBREG
7816      if we already had one (just check for the simplest cases).  */
7817   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
7818       && GET_MODE (XEXP (x, 0)) == mode
7819       && SUBREG_REG (XEXP (x, 0)) == varop)
7820     varop = XEXP (x, 0);
7821   else
7822     varop = gen_lowpart_for_combine (mode, varop);
7823
7824   /* If we can't make the SUBREG, try to return what we were given.  */
7825   if (GET_CODE (varop) == CLOBBER)
7826     return x ? x : varop;
7827
7828   /* If we are only masking insignificant bits, return VAROP.  */
7829   if (constop == nonzero)
7830     x = varop;
7831
7832   /* Otherwise, return an AND.  See how much, if any, of X we can use.  */
7833   else if (x == 0 || GET_CODE (x) != AND || GET_MODE (x) != mode)
7834     x = gen_binary (AND, mode, varop, GEN_INT (constop));
7835
7836   else
7837     {
7838       if (GET_CODE (XEXP (x, 1)) != CONST_INT
7839           || (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) != constop)
7840         SUBST (XEXP (x, 1), GEN_INT (constop));
7841
7842       SUBST (XEXP (x, 0), varop);
7843     }
7844
7845   return x;
7846 }
7847 \f
7848 /* We let num_sign_bit_copies recur into nonzero_bits as that is useful.
7849    We don't let nonzero_bits recur into num_sign_bit_copies, because that
7850    is less useful.  We can't allow both, because that results in exponential
7851    run time recursion.  There is a nullstone testcase that triggered
7852    this.  This macro avoids accidental uses of num_sign_bit_copies.  */
7853 #define num_sign_bit_copies()
7854
7855 /* Given an expression, X, compute which bits in X can be non-zero.
7856    We don't care about bits outside of those defined in MODE.
7857
7858    For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
7859    a shift, AND, or zero_extract, we can do better.  */
7860
7861 static unsigned HOST_WIDE_INT
7862 nonzero_bits (x, mode)
7863      rtx x;
7864      enum machine_mode mode;
7865 {
7866   unsigned HOST_WIDE_INT nonzero = GET_MODE_MASK (mode);
7867   unsigned HOST_WIDE_INT inner_nz;
7868   enum rtx_code code;
7869   unsigned int mode_width = GET_MODE_BITSIZE (mode);
7870   rtx tem;
7871
7872   /* For floating-point values, assume all bits are needed.  */
7873   if (FLOAT_MODE_P (GET_MODE (x)) || FLOAT_MODE_P (mode))
7874     return nonzero;
7875
7876   /* If X is wider than MODE, use its mode instead.  */
7877   if (GET_MODE_BITSIZE (GET_MODE (x)) > mode_width)
7878     {
7879       mode = GET_MODE (x);
7880       nonzero = GET_MODE_MASK (mode);
7881       mode_width = GET_MODE_BITSIZE (mode);
7882     }
7883
7884   if (mode_width > HOST_BITS_PER_WIDE_INT)
7885     /* Our only callers in this case look for single bit values.  So
7886        just return the mode mask.  Those tests will then be false.  */
7887     return nonzero;
7888
7889 #ifndef WORD_REGISTER_OPERATIONS
7890   /* If MODE is wider than X, but both are a single word for both the host
7891      and target machines, we can compute this from which bits of the
7892      object might be nonzero in its own mode, taking into account the fact
7893      that on many CISC machines, accessing an object in a wider mode
7894      causes the high-order bits to become undefined.  So they are
7895      not known to be zero.  */
7896
7897   if (GET_MODE (x) != VOIDmode && GET_MODE (x) != mode
7898       && GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD
7899       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
7900       && GET_MODE_BITSIZE (mode) > GET_MODE_BITSIZE (GET_MODE (x)))
7901     {
7902       nonzero &= nonzero_bits (x, GET_MODE (x));
7903       nonzero |= GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x));
7904       return nonzero;
7905     }
7906 #endif
7907
7908   code = GET_CODE (x);
7909   switch (code)
7910     {
7911     case REG:
7912 #ifdef POINTERS_EXTEND_UNSIGNED
7913       /* If pointers extend unsigned and this is a pointer in Pmode, say that
7914          all the bits above ptr_mode are known to be zero.  */
7915       if (POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
7916           && REG_POINTER (x))
7917         nonzero &= GET_MODE_MASK (ptr_mode);
7918 #endif
7919
7920 #ifdef STACK_BOUNDARY
7921       /* If this is the stack pointer, we may know something about its
7922          alignment.  If PUSH_ROUNDING is defined, it is possible for the
7923          stack to be momentarily aligned only to that amount, so we pick
7924          the least alignment.  */
7925
7926       /* We can't check for arg_pointer_rtx here, because it is not
7927          guaranteed to have as much alignment as the stack pointer.
7928          In particular, in the Irix6 n64 ABI, the stack has 128 bit
7929          alignment but the argument pointer has only 64 bit alignment.  */
7930
7931       if ((x == frame_pointer_rtx
7932            || x == stack_pointer_rtx
7933            || x == hard_frame_pointer_rtx
7934            || (REGNO (x) >= FIRST_VIRTUAL_REGISTER
7935                && REGNO (x) <= LAST_VIRTUAL_REGISTER))
7936 #ifdef STACK_BIAS
7937           && !STACK_BIAS
7938 #endif
7939               )
7940         {
7941           int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
7942
7943 #ifdef PUSH_ROUNDING
7944           if (REGNO (x) == STACK_POINTER_REGNUM && PUSH_ARGS)
7945             sp_alignment = MIN (PUSH_ROUNDING (1), sp_alignment);
7946 #endif
7947
7948           /* We must return here, otherwise we may get a worse result from
7949              one of the choices below.  There is nothing useful below as
7950              far as the stack pointer is concerned.  */
7951           return nonzero &= ~(sp_alignment - 1);
7952         }
7953 #endif
7954
7955       /* If X is a register whose nonzero bits value is current, use it.
7956          Otherwise, if X is a register whose value we can find, use that
7957          value.  Otherwise, use the previously-computed global nonzero bits
7958          for this register.  */
7959
7960       if (reg_last_set_value[REGNO (x)] != 0
7961           && reg_last_set_mode[REGNO (x)] == mode
7962           && (reg_last_set_label[REGNO (x)] == label_tick
7963               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
7964                   && REG_N_SETS (REGNO (x)) == 1
7965                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start,
7966                                         REGNO (x))))
7967           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
7968         return reg_last_set_nonzero_bits[REGNO (x)];
7969
7970       tem = get_last_value (x);
7971
7972       if (tem)
7973         {
7974 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
7975           /* If X is narrower than MODE and TEM is a non-negative
7976              constant that would appear negative in the mode of X,
7977              sign-extend it for use in reg_nonzero_bits because some
7978              machines (maybe most) will actually do the sign-extension
7979              and this is the conservative approach.
7980
7981              ??? For 2.5, try to tighten up the MD files in this regard
7982              instead of this kludge.  */
7983
7984           if (GET_MODE_BITSIZE (GET_MODE (x)) < mode_width
7985               && GET_CODE (tem) == CONST_INT
7986               && INTVAL (tem) > 0
7987               && 0 != (INTVAL (tem)
7988                        & ((HOST_WIDE_INT) 1
7989                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
7990             tem = GEN_INT (INTVAL (tem)
7991                            | ((HOST_WIDE_INT) (-1)
7992                               << GET_MODE_BITSIZE (GET_MODE (x))));
7993 #endif
7994           return nonzero_bits (tem, mode);
7995         }
7996       else if (nonzero_sign_valid && reg_nonzero_bits[REGNO (x)])
7997         return reg_nonzero_bits[REGNO (x)] & nonzero;
7998       else
7999         return nonzero;
8000
8001     case CONST_INT:
8002 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
8003       /* If X is negative in MODE, sign-extend the value.  */
8004       if (INTVAL (x) > 0 && mode_width < BITS_PER_WORD
8005           && 0 != (INTVAL (x) & ((HOST_WIDE_INT) 1 << (mode_width - 1))))
8006         return (INTVAL (x) | ((HOST_WIDE_INT) (-1) << mode_width));
8007 #endif
8008
8009       return INTVAL (x);
8010
8011     case MEM:
8012 #ifdef LOAD_EXTEND_OP
8013       /* In many, if not most, RISC machines, reading a byte from memory
8014          zeros the rest of the register.  Noticing that fact saves a lot
8015          of extra zero-extends.  */
8016       if (LOAD_EXTEND_OP (GET_MODE (x)) == ZERO_EXTEND)
8017         nonzero &= GET_MODE_MASK (GET_MODE (x));
8018 #endif
8019       break;
8020
8021     case EQ:  case NE:
8022     case UNEQ:  case LTGT:
8023     case GT:  case GTU:  case UNGT:
8024     case LT:  case LTU:  case UNLT:
8025     case GE:  case GEU:  case UNGE:
8026     case LE:  case LEU:  case UNLE:
8027     case UNORDERED: case ORDERED:
8028
8029       /* If this produces an integer result, we know which bits are set.
8030          Code here used to clear bits outside the mode of X, but that is
8031          now done above.  */
8032
8033       if (GET_MODE_CLASS (mode) == MODE_INT
8034           && mode_width <= HOST_BITS_PER_WIDE_INT)
8035         nonzero = STORE_FLAG_VALUE;
8036       break;
8037
8038     case NEG:
8039 #if 0
8040       /* Disabled to avoid exponential mutual recursion between nonzero_bits
8041          and num_sign_bit_copies.  */
8042       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
8043           == GET_MODE_BITSIZE (GET_MODE (x)))
8044         nonzero = 1;
8045 #endif
8046
8047       if (GET_MODE_SIZE (GET_MODE (x)) < mode_width)
8048         nonzero |= (GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x)));
8049       break;
8050
8051     case ABS:
8052 #if 0
8053       /* Disabled to avoid exponential mutual recursion between nonzero_bits
8054          and num_sign_bit_copies.  */
8055       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
8056           == GET_MODE_BITSIZE (GET_MODE (x)))
8057         nonzero = 1;
8058 #endif
8059       break;
8060
8061     case TRUNCATE:
8062       nonzero &= (nonzero_bits (XEXP (x, 0), mode) & GET_MODE_MASK (mode));
8063       break;
8064
8065     case ZERO_EXTEND:
8066       nonzero &= nonzero_bits (XEXP (x, 0), mode);
8067       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8068         nonzero &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8069       break;
8070
8071     case SIGN_EXTEND:
8072       /* If the sign bit is known clear, this is the same as ZERO_EXTEND.
8073          Otherwise, show all the bits in the outer mode but not the inner
8074          may be non-zero.  */
8075       inner_nz = nonzero_bits (XEXP (x, 0), mode);
8076       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8077         {
8078           inner_nz &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8079           if (inner_nz
8080               & (((HOST_WIDE_INT) 1
8081                   << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1))))
8082             inner_nz |= (GET_MODE_MASK (mode)
8083                          & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0))));
8084         }
8085
8086       nonzero &= inner_nz;
8087       break;
8088
8089     case AND:
8090       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8091                   & nonzero_bits (XEXP (x, 1), mode));
8092       break;
8093
8094     case XOR:   case IOR:
8095     case UMIN:  case UMAX:  case SMIN:  case SMAX:
8096       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8097                   | nonzero_bits (XEXP (x, 1), mode));
8098       break;
8099
8100     case PLUS:  case MINUS:
8101     case MULT:
8102     case DIV:   case UDIV:
8103     case MOD:   case UMOD:
8104       /* We can apply the rules of arithmetic to compute the number of
8105          high- and low-order zero bits of these operations.  We start by
8106          computing the width (position of the highest-order non-zero bit)
8107          and the number of low-order zero bits for each value.  */
8108       {
8109         unsigned HOST_WIDE_INT nz0 = nonzero_bits (XEXP (x, 0), mode);
8110         unsigned HOST_WIDE_INT nz1 = nonzero_bits (XEXP (x, 1), mode);
8111         int width0 = floor_log2 (nz0) + 1;
8112         int width1 = floor_log2 (nz1) + 1;
8113         int low0 = floor_log2 (nz0 & -nz0);
8114         int low1 = floor_log2 (nz1 & -nz1);
8115         HOST_WIDE_INT op0_maybe_minusp
8116           = (nz0 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8117         HOST_WIDE_INT op1_maybe_minusp
8118           = (nz1 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8119         unsigned int result_width = mode_width;
8120         int result_low = 0;
8121
8122         switch (code)
8123           {
8124           case PLUS:
8125 #ifdef STACK_BIAS
8126             if (STACK_BIAS
8127                 && (XEXP (x, 0) == stack_pointer_rtx
8128                     || XEXP (x, 0) == frame_pointer_rtx)
8129                 && GET_CODE (XEXP (x, 1)) == CONST_INT)
8130               {
8131                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
8132
8133                 nz0 = (GET_MODE_MASK (mode) & ~(sp_alignment - 1));
8134                 nz1 = INTVAL (XEXP (x, 1)) - STACK_BIAS;
8135                 width0 = floor_log2 (nz0) + 1;
8136                 width1 = floor_log2 (nz1) + 1;
8137                 low0 = floor_log2 (nz0 & -nz0);
8138                 low1 = floor_log2 (nz1 & -nz1);
8139               }
8140 #endif
8141             result_width = MAX (width0, width1) + 1;
8142             result_low = MIN (low0, low1);
8143             break;
8144           case MINUS:
8145             result_low = MIN (low0, low1);
8146             break;
8147           case MULT:
8148             result_width = width0 + width1;
8149             result_low = low0 + low1;
8150             break;
8151           case DIV:
8152             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8153               result_width = width0;
8154             break;
8155           case UDIV:
8156             result_width = width0;
8157             break;
8158           case MOD:
8159             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8160               result_width = MIN (width0, width1);
8161             result_low = MIN (low0, low1);
8162             break;
8163           case UMOD:
8164             result_width = MIN (width0, width1);
8165             result_low = MIN (low0, low1);
8166             break;
8167           default:
8168             abort ();
8169           }
8170
8171         if (result_width < mode_width)
8172           nonzero &= ((HOST_WIDE_INT) 1 << result_width) - 1;
8173
8174         if (result_low > 0)
8175           nonzero &= ~(((HOST_WIDE_INT) 1 << result_low) - 1);
8176
8177 #ifdef POINTERS_EXTEND_UNSIGNED
8178         /* If pointers extend unsigned and this is an addition or subtraction
8179            to a pointer in Pmode, all the bits above ptr_mode are known to be
8180            zero.  */
8181         if (POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
8182             && (code == PLUS || code == MINUS)
8183             && GET_CODE (XEXP (x, 0)) == REG && REG_POINTER (XEXP (x, 0)))
8184           nonzero &= GET_MODE_MASK (ptr_mode);
8185 #endif
8186       }
8187       break;
8188
8189     case ZERO_EXTRACT:
8190       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8191           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8192         nonzero &= ((HOST_WIDE_INT) 1 << INTVAL (XEXP (x, 1))) - 1;
8193       break;
8194
8195     case SUBREG:
8196       /* If this is a SUBREG formed for a promoted variable that has
8197          been zero-extended, we know that at least the high-order bits
8198          are zero, though others might be too.  */
8199
8200       if (SUBREG_PROMOTED_VAR_P (x) && SUBREG_PROMOTED_UNSIGNED_P (x))
8201         nonzero = (GET_MODE_MASK (GET_MODE (x))
8202                    & nonzero_bits (SUBREG_REG (x), GET_MODE (x)));
8203
8204       /* If the inner mode is a single word for both the host and target
8205          machines, we can compute this from which bits of the inner
8206          object might be nonzero.  */
8207       if (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) <= BITS_PER_WORD
8208           && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8209               <= HOST_BITS_PER_WIDE_INT))
8210         {
8211           nonzero &= nonzero_bits (SUBREG_REG (x), mode);
8212
8213 #if defined (WORD_REGISTER_OPERATIONS) && defined (LOAD_EXTEND_OP)
8214           /* If this is a typical RISC machine, we only have to worry
8215              about the way loads are extended.  */
8216           if (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND
8217               ? (((nonzero
8218                    & (((unsigned HOST_WIDE_INT) 1
8219                        << (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) - 1))))
8220                   != 0))
8221               : LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) != ZERO_EXTEND)
8222 #endif
8223             {
8224               /* On many CISC machines, accessing an object in a wider mode
8225                  causes the high-order bits to become undefined.  So they are
8226                  not known to be zero.  */
8227               if (GET_MODE_SIZE (GET_MODE (x))
8228                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8229                 nonzero |= (GET_MODE_MASK (GET_MODE (x))
8230                             & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x))));
8231             }
8232         }
8233       break;
8234
8235     case ASHIFTRT:
8236     case LSHIFTRT:
8237     case ASHIFT:
8238     case ROTATE:
8239       /* The nonzero bits are in two classes: any bits within MODE
8240          that aren't in GET_MODE (x) are always significant.  The rest of the
8241          nonzero bits are those that are significant in the operand of
8242          the shift when shifted the appropriate number of bits.  This
8243          shows that high-order bits are cleared by the right shift and
8244          low-order bits by left shifts.  */
8245       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8246           && INTVAL (XEXP (x, 1)) >= 0
8247           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8248         {
8249           enum machine_mode inner_mode = GET_MODE (x);
8250           unsigned int width = GET_MODE_BITSIZE (inner_mode);
8251           int count = INTVAL (XEXP (x, 1));
8252           unsigned HOST_WIDE_INT mode_mask = GET_MODE_MASK (inner_mode);
8253           unsigned HOST_WIDE_INT op_nonzero = nonzero_bits (XEXP (x, 0), mode);
8254           unsigned HOST_WIDE_INT inner = op_nonzero & mode_mask;
8255           unsigned HOST_WIDE_INT outer = 0;
8256
8257           if (mode_width > width)
8258             outer = (op_nonzero & nonzero & ~mode_mask);
8259
8260           if (code == LSHIFTRT)
8261             inner >>= count;
8262           else if (code == ASHIFTRT)
8263             {
8264               inner >>= count;
8265
8266               /* If the sign bit may have been nonzero before the shift, we
8267                  need to mark all the places it could have been copied to
8268                  by the shift as possibly nonzero.  */
8269               if (inner & ((HOST_WIDE_INT) 1 << (width - 1 - count)))
8270                 inner |= (((HOST_WIDE_INT) 1 << count) - 1) << (width - count);
8271             }
8272           else if (code == ASHIFT)
8273             inner <<= count;
8274           else
8275             inner = ((inner << (count % width)
8276                       | (inner >> (width - (count % width)))) & mode_mask);
8277
8278           nonzero &= (outer | inner);
8279         }
8280       break;
8281
8282     case FFS:
8283       /* This is at most the number of bits in the mode.  */
8284       nonzero = ((HOST_WIDE_INT) 1 << (floor_log2 (mode_width) + 1)) - 1;
8285       break;
8286
8287     case IF_THEN_ELSE:
8288       nonzero &= (nonzero_bits (XEXP (x, 1), mode)
8289                   | nonzero_bits (XEXP (x, 2), mode));
8290       break;
8291
8292     default:
8293       break;
8294     }
8295
8296   return nonzero;
8297 }
8298
8299 /* See the macro definition above.  */
8300 #undef num_sign_bit_copies
8301 \f
8302 /* Return the number of bits at the high-order end of X that are known to
8303    be equal to the sign bit.  X will be used in mode MODE; if MODE is
8304    VOIDmode, X will be used in its own mode.  The returned value  will always
8305    be between 1 and the number of bits in MODE.  */
8306
8307 static unsigned int
8308 num_sign_bit_copies (x, mode)
8309      rtx x;
8310      enum machine_mode mode;
8311 {
8312   enum rtx_code code = GET_CODE (x);
8313   unsigned int bitwidth;
8314   int num0, num1, result;
8315   unsigned HOST_WIDE_INT nonzero;
8316   rtx tem;
8317
8318   /* If we weren't given a mode, use the mode of X.  If the mode is still
8319      VOIDmode, we don't know anything.  Likewise if one of the modes is
8320      floating-point.  */
8321
8322   if (mode == VOIDmode)
8323     mode = GET_MODE (x);
8324
8325   if (mode == VOIDmode || FLOAT_MODE_P (mode) || FLOAT_MODE_P (GET_MODE (x)))
8326     return 1;
8327
8328   bitwidth = GET_MODE_BITSIZE (mode);
8329
8330   /* For a smaller object, just ignore the high bits.  */
8331   if (bitwidth < GET_MODE_BITSIZE (GET_MODE (x)))
8332     {
8333       num0 = num_sign_bit_copies (x, GET_MODE (x));
8334       return MAX (1,
8335                   num0 - (int) (GET_MODE_BITSIZE (GET_MODE (x)) - bitwidth));
8336     }
8337
8338   if (GET_MODE (x) != VOIDmode && bitwidth > GET_MODE_BITSIZE (GET_MODE (x)))
8339     {
8340 #ifndef WORD_REGISTER_OPERATIONS
8341   /* If this machine does not do all register operations on the entire
8342      register and MODE is wider than the mode of X, we can say nothing
8343      at all about the high-order bits.  */
8344       return 1;
8345 #else
8346       /* Likewise on machines that do, if the mode of the object is smaller
8347          than a word and loads of that size don't sign extend, we can say
8348          nothing about the high order bits.  */
8349       if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
8350 #ifdef LOAD_EXTEND_OP
8351           && LOAD_EXTEND_OP (GET_MODE (x)) != SIGN_EXTEND
8352 #endif
8353           )
8354         return 1;
8355 #endif
8356     }
8357
8358   switch (code)
8359     {
8360     case REG:
8361
8362 #ifdef POINTERS_EXTEND_UNSIGNED
8363       /* If pointers extend signed and this is a pointer in Pmode, say that
8364          all the bits above ptr_mode are known to be sign bit copies.  */
8365       if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode && mode == Pmode
8366           && REG_POINTER (x))
8367         return GET_MODE_BITSIZE (Pmode) - GET_MODE_BITSIZE (ptr_mode) + 1;
8368 #endif
8369
8370       if (reg_last_set_value[REGNO (x)] != 0
8371           && reg_last_set_mode[REGNO (x)] == mode
8372           && (reg_last_set_label[REGNO (x)] == label_tick
8373               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
8374                   && REG_N_SETS (REGNO (x)) == 1
8375                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start,
8376                                         REGNO (x))))
8377           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
8378         return reg_last_set_sign_bit_copies[REGNO (x)];
8379
8380       tem = get_last_value (x);
8381       if (tem != 0)
8382         return num_sign_bit_copies (tem, mode);
8383
8384       if (nonzero_sign_valid && reg_sign_bit_copies[REGNO (x)] != 0)
8385         return reg_sign_bit_copies[REGNO (x)];
8386       break;
8387
8388     case MEM:
8389 #ifdef LOAD_EXTEND_OP
8390       /* Some RISC machines sign-extend all loads of smaller than a word.  */
8391       if (LOAD_EXTEND_OP (GET_MODE (x)) == SIGN_EXTEND)
8392         return MAX (1, ((int) bitwidth
8393                         - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1));
8394 #endif
8395       break;
8396
8397     case CONST_INT:
8398       /* If the constant is negative, take its 1's complement and remask.
8399          Then see how many zero bits we have.  */
8400       nonzero = INTVAL (x) & GET_MODE_MASK (mode);
8401       if (bitwidth <= HOST_BITS_PER_WIDE_INT
8402           && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8403         nonzero = (~nonzero) & GET_MODE_MASK (mode);
8404
8405       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
8406
8407     case SUBREG:
8408       /* If this is a SUBREG for a promoted object that is sign-extended
8409          and we are looking at it in a wider mode, we know that at least the
8410          high-order bits are known to be sign bit copies.  */
8411
8412       if (SUBREG_PROMOTED_VAR_P (x) && ! SUBREG_PROMOTED_UNSIGNED_P (x))
8413         {
8414           num0 = num_sign_bit_copies (SUBREG_REG (x), mode);
8415           return MAX ((int) bitwidth
8416                       - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1,
8417                       num0);
8418         }
8419
8420       /* For a smaller object, just ignore the high bits.  */
8421       if (bitwidth <= GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))))
8422         {
8423           num0 = num_sign_bit_copies (SUBREG_REG (x), VOIDmode);
8424           return MAX (1, (num0
8425                           - (int) (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8426                                    - bitwidth)));
8427         }
8428
8429 #ifdef WORD_REGISTER_OPERATIONS
8430 #ifdef LOAD_EXTEND_OP
8431       /* For paradoxical SUBREGs on machines where all register operations
8432          affect the entire register, just look inside.  Note that we are
8433          passing MODE to the recursive call, so the number of sign bit copies
8434          will remain relative to that mode, not the inner mode.  */
8435
8436       /* This works only if loads sign extend.  Otherwise, if we get a
8437          reload for the inner part, it may be loaded from the stack, and
8438          then we lose all sign bit copies that existed before the store
8439          to the stack.  */
8440
8441       if ((GET_MODE_SIZE (GET_MODE (x))
8442            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8443           && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND)
8444         return num_sign_bit_copies (SUBREG_REG (x), mode);
8445 #endif
8446 #endif
8447       break;
8448
8449     case SIGN_EXTRACT:
8450       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
8451         return MAX (1, (int) bitwidth - INTVAL (XEXP (x, 1)));
8452       break;
8453
8454     case SIGN_EXTEND:
8455       return (bitwidth - GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8456               + num_sign_bit_copies (XEXP (x, 0), VOIDmode));
8457
8458     case TRUNCATE:
8459       /* For a smaller object, just ignore the high bits.  */
8460       num0 = num_sign_bit_copies (XEXP (x, 0), VOIDmode);
8461       return MAX (1, (num0 - (int) (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8462                                     - bitwidth)));
8463
8464     case NOT:
8465       return num_sign_bit_copies (XEXP (x, 0), mode);
8466
8467     case ROTATE:       case ROTATERT:
8468       /* If we are rotating left by a number of bits less than the number
8469          of sign bit copies, we can just subtract that amount from the
8470          number.  */
8471       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8472           && INTVAL (XEXP (x, 1)) >= 0 && INTVAL (XEXP (x, 1)) < bitwidth)
8473         {
8474           num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8475           return MAX (1, num0 - (code == ROTATE ? INTVAL (XEXP (x, 1))
8476                                  : (int) bitwidth - INTVAL (XEXP (x, 1))));
8477         }
8478       break;
8479
8480     case NEG:
8481       /* In general, this subtracts one sign bit copy.  But if the value
8482          is known to be positive, the number of sign bit copies is the
8483          same as that of the input.  Finally, if the input has just one bit
8484          that might be nonzero, all the bits are copies of the sign bit.  */
8485       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8486       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8487         return num0 > 1 ? num0 - 1 : 1;
8488
8489       nonzero = nonzero_bits (XEXP (x, 0), mode);
8490       if (nonzero == 1)
8491         return bitwidth;
8492
8493       if (num0 > 1
8494           && (((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero))
8495         num0--;
8496
8497       return num0;
8498
8499     case IOR:   case AND:   case XOR:
8500     case SMIN:  case SMAX:  case UMIN:  case UMAX:
8501       /* Logical operations will preserve the number of sign-bit copies.
8502          MIN and MAX operations always return one of the operands.  */
8503       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8504       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8505       return MIN (num0, num1);
8506
8507     case PLUS:  case MINUS:
8508       /* For addition and subtraction, we can have a 1-bit carry.  However,
8509          if we are subtracting 1 from a positive number, there will not
8510          be such a carry.  Furthermore, if the positive number is known to
8511          be 0 or 1, we know the result is either -1 or 0.  */
8512
8513       if (code == PLUS && XEXP (x, 1) == constm1_rtx
8514           && bitwidth <= HOST_BITS_PER_WIDE_INT)
8515         {
8516           nonzero = nonzero_bits (XEXP (x, 0), mode);
8517           if ((((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero) == 0)
8518             return (nonzero == 1 || nonzero == 0 ? bitwidth
8519                     : bitwidth - floor_log2 (nonzero) - 1);
8520         }
8521
8522       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8523       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8524       result = MAX (1, MIN (num0, num1) - 1);
8525
8526 #ifdef POINTERS_EXTEND_UNSIGNED
8527       /* If pointers extend signed and this is an addition or subtraction
8528          to a pointer in Pmode, all the bits above ptr_mode are known to be
8529          sign bit copies.  */
8530       if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
8531           && (code == PLUS || code == MINUS)
8532           && GET_CODE (XEXP (x, 0)) == REG && REG_POINTER (XEXP (x, 0)))
8533         result = MAX ((GET_MODE_BITSIZE (Pmode)
8534                        - GET_MODE_BITSIZE (ptr_mode) + 1),
8535                       result);
8536 #endif
8537       return result;
8538
8539     case MULT:
8540       /* The number of bits of the product is the sum of the number of
8541          bits of both terms.  However, unless one of the terms if known
8542          to be positive, we must allow for an additional bit since negating
8543          a negative number can remove one sign bit copy.  */
8544
8545       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8546       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8547
8548       result = bitwidth - (bitwidth - num0) - (bitwidth - num1);
8549       if (result > 0
8550           && (bitwidth > HOST_BITS_PER_WIDE_INT
8551               || (((nonzero_bits (XEXP (x, 0), mode)
8552                     & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8553                   && ((nonzero_bits (XEXP (x, 1), mode)
8554                        & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))))
8555         result--;
8556
8557       return MAX (1, result);
8558
8559     case UDIV:
8560       /* The result must be <= the first operand.  If the first operand
8561          has the high bit set, we know nothing about the number of sign
8562          bit copies.  */
8563       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8564         return 1;
8565       else if ((nonzero_bits (XEXP (x, 0), mode)
8566                 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8567         return 1;
8568       else
8569         return num_sign_bit_copies (XEXP (x, 0), mode);
8570
8571     case UMOD:
8572       /* The result must be <= the scond operand.  */
8573       return num_sign_bit_copies (XEXP (x, 1), mode);
8574
8575     case DIV:
8576       /* Similar to unsigned division, except that we have to worry about
8577          the case where the divisor is negative, in which case we have
8578          to add 1.  */
8579       result = num_sign_bit_copies (XEXP (x, 0), mode);
8580       if (result > 1
8581           && (bitwidth > HOST_BITS_PER_WIDE_INT
8582               || (nonzero_bits (XEXP (x, 1), mode)
8583                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8584         result--;
8585
8586       return result;
8587
8588     case MOD:
8589       result = num_sign_bit_copies (XEXP (x, 1), mode);
8590       if (result > 1
8591           && (bitwidth > HOST_BITS_PER_WIDE_INT
8592               || (nonzero_bits (XEXP (x, 1), mode)
8593                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8594         result--;
8595
8596       return result;
8597
8598     case ASHIFTRT:
8599       /* Shifts by a constant add to the number of bits equal to the
8600          sign bit.  */
8601       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8602       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8603           && INTVAL (XEXP (x, 1)) > 0)
8604         num0 = MIN (bitwidth, num0 + INTVAL (XEXP (x, 1)));
8605
8606       return num0;
8607
8608     case ASHIFT:
8609       /* Left shifts destroy copies.  */
8610       if (GET_CODE (XEXP (x, 1)) != CONST_INT
8611           || INTVAL (XEXP (x, 1)) < 0
8612           || INTVAL (XEXP (x, 1)) >= bitwidth)
8613         return 1;
8614
8615       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8616       return MAX (1, num0 - INTVAL (XEXP (x, 1)));
8617
8618     case IF_THEN_ELSE:
8619       num0 = num_sign_bit_copies (XEXP (x, 1), mode);
8620       num1 = num_sign_bit_copies (XEXP (x, 2), mode);
8621       return MIN (num0, num1);
8622
8623     case EQ:  case NE:  case GE:  case GT:  case LE:  case LT:
8624     case UNEQ:  case LTGT:  case UNGE:  case UNGT:  case UNLE:  case UNLT:
8625     case GEU: case GTU: case LEU: case LTU:
8626     case UNORDERED: case ORDERED:
8627       /* If the constant is negative, take its 1's complement and remask.
8628          Then see how many zero bits we have.  */
8629       nonzero = STORE_FLAG_VALUE;
8630       if (bitwidth <= HOST_BITS_PER_WIDE_INT
8631           && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8632         nonzero = (~nonzero) & GET_MODE_MASK (mode);
8633
8634       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
8635       break;
8636
8637     default:
8638       break;
8639     }
8640
8641   /* If we haven't been able to figure it out by one of the above rules,
8642      see if some of the high-order bits are known to be zero.  If so,
8643      count those bits and return one less than that amount.  If we can't
8644      safely compute the mask for this mode, always return BITWIDTH.  */
8645
8646   if (bitwidth > HOST_BITS_PER_WIDE_INT)
8647     return 1;
8648
8649   nonzero = nonzero_bits (x, mode);
8650   return (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))
8651           ? 1 : bitwidth - floor_log2 (nonzero) - 1);
8652 }
8653 \f
8654 /* Return the number of "extended" bits there are in X, when interpreted
8655    as a quantity in MODE whose signedness is indicated by UNSIGNEDP.  For
8656    unsigned quantities, this is the number of high-order zero bits.
8657    For signed quantities, this is the number of copies of the sign bit
8658    minus 1.  In both case, this function returns the number of "spare"
8659    bits.  For example, if two quantities for which this function returns
8660    at least 1 are added, the addition is known not to overflow.
8661
8662    This function will always return 0 unless called during combine, which
8663    implies that it must be called from a define_split.  */
8664
8665 unsigned int
8666 extended_count (x, mode, unsignedp)
8667      rtx x;
8668      enum machine_mode mode;
8669      int unsignedp;
8670 {
8671   if (nonzero_sign_valid == 0)
8672     return 0;
8673
8674   return (unsignedp
8675           ? (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
8676              ? (GET_MODE_BITSIZE (mode) - 1
8677                 - floor_log2 (nonzero_bits (x, mode)))
8678              : 0)
8679           : num_sign_bit_copies (x, mode) - 1);
8680 }
8681 \f
8682 /* This function is called from `simplify_shift_const' to merge two
8683    outer operations.  Specifically, we have already found that we need
8684    to perform operation *POP0 with constant *PCONST0 at the outermost
8685    position.  We would now like to also perform OP1 with constant CONST1
8686    (with *POP0 being done last).
8687
8688    Return 1 if we can do the operation and update *POP0 and *PCONST0 with
8689    the resulting operation.  *PCOMP_P is set to 1 if we would need to
8690    complement the innermost operand, otherwise it is unchanged.
8691
8692    MODE is the mode in which the operation will be done.  No bits outside
8693    the width of this mode matter.  It is assumed that the width of this mode
8694    is smaller than or equal to HOST_BITS_PER_WIDE_INT.
8695
8696    If *POP0 or OP1 are NIL, it means no operation is required.  Only NEG, PLUS,
8697    IOR, XOR, and AND are supported.  We may set *POP0 to SET if the proper
8698    result is simply *PCONST0.
8699
8700    If the resulting operation cannot be expressed as one operation, we
8701    return 0 and do not change *POP0, *PCONST0, and *PCOMP_P.  */
8702
8703 static int
8704 merge_outer_ops (pop0, pconst0, op1, const1, mode, pcomp_p)
8705      enum rtx_code *pop0;
8706      HOST_WIDE_INT *pconst0;
8707      enum rtx_code op1;
8708      HOST_WIDE_INT const1;
8709      enum machine_mode mode;
8710      int *pcomp_p;
8711 {
8712   enum rtx_code op0 = *pop0;
8713   HOST_WIDE_INT const0 = *pconst0;
8714
8715   const0 &= GET_MODE_MASK (mode);
8716   const1 &= GET_MODE_MASK (mode);
8717
8718   /* If OP0 is an AND, clear unimportant bits in CONST1.  */
8719   if (op0 == AND)
8720     const1 &= const0;
8721
8722   /* If OP0 or OP1 is NIL, this is easy.  Similarly if they are the same or
8723      if OP0 is SET.  */
8724
8725   if (op1 == NIL || op0 == SET)
8726     return 1;
8727
8728   else if (op0 == NIL)
8729     op0 = op1, const0 = const1;
8730
8731   else if (op0 == op1)
8732     {
8733       switch (op0)
8734         {
8735         case AND:
8736           const0 &= const1;
8737           break;
8738         case IOR:
8739           const0 |= const1;
8740           break;
8741         case XOR:
8742           const0 ^= const1;
8743           break;
8744         case PLUS:
8745           const0 += const1;
8746           break;
8747         case NEG:
8748           op0 = NIL;
8749           break;
8750         default:
8751           break;
8752         }
8753     }
8754
8755   /* Otherwise, if either is a PLUS or NEG, we can't do anything.  */
8756   else if (op0 == PLUS || op1 == PLUS || op0 == NEG || op1 == NEG)
8757     return 0;
8758
8759   /* If the two constants aren't the same, we can't do anything.  The
8760      remaining six cases can all be done.  */
8761   else if (const0 != const1)
8762     return 0;
8763
8764   else
8765     switch (op0)
8766       {
8767       case IOR:
8768         if (op1 == AND)
8769           /* (a & b) | b == b */
8770           op0 = SET;
8771         else /* op1 == XOR */
8772           /* (a ^ b) | b == a | b */
8773           {;}
8774         break;
8775
8776       case XOR:
8777         if (op1 == AND)
8778           /* (a & b) ^ b == (~a) & b */
8779           op0 = AND, *pcomp_p = 1;
8780         else /* op1 == IOR */
8781           /* (a | b) ^ b == a & ~b */
8782           op0 = AND, *pconst0 = ~const0;
8783         break;
8784
8785       case AND:
8786         if (op1 == IOR)
8787           /* (a | b) & b == b */
8788         op0 = SET;
8789         else /* op1 == XOR */
8790           /* (a ^ b) & b) == (~a) & b */
8791           *pcomp_p = 1;
8792         break;
8793       default:
8794         break;
8795       }
8796
8797   /* Check for NO-OP cases.  */
8798   const0 &= GET_MODE_MASK (mode);
8799   if (const0 == 0
8800       && (op0 == IOR || op0 == XOR || op0 == PLUS))
8801     op0 = NIL;
8802   else if (const0 == 0 && op0 == AND)
8803     op0 = SET;
8804   else if ((unsigned HOST_WIDE_INT) const0 == GET_MODE_MASK (mode)
8805            && op0 == AND)
8806     op0 = NIL;
8807
8808   /* ??? Slightly redundant with the above mask, but not entirely.
8809      Moving this above means we'd have to sign-extend the mode mask
8810      for the final test.  */
8811   const0 = trunc_int_for_mode (const0, mode);
8812
8813   *pop0 = op0;
8814   *pconst0 = const0;
8815
8816   return 1;
8817 }
8818 \f
8819 /* Simplify a shift of VAROP by COUNT bits.  CODE says what kind of shift.
8820    The result of the shift is RESULT_MODE.  X, if non-zero, is an expression
8821    that we started with.
8822
8823    The shift is normally computed in the widest mode we find in VAROP, as
8824    long as it isn't a different number of words than RESULT_MODE.  Exceptions
8825    are ASHIFTRT and ROTATE, which are always done in their original mode,  */
8826
8827 static rtx
8828 simplify_shift_const (x, code, result_mode, varop, input_count)
8829      rtx x;
8830      enum rtx_code code;
8831      enum machine_mode result_mode;
8832      rtx varop;
8833      int input_count;
8834 {
8835   enum rtx_code orig_code = code;
8836   int orig_count = input_count;
8837   unsigned int count;
8838   int signed_count;
8839   enum machine_mode mode = result_mode;
8840   enum machine_mode shift_mode, tmode;
8841   unsigned int mode_words
8842     = (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
8843   /* We form (outer_op (code varop count) (outer_const)).  */
8844   enum rtx_code outer_op = NIL;
8845   HOST_WIDE_INT outer_const = 0;
8846   rtx const_rtx;
8847   int complement_p = 0;
8848   rtx new;
8849
8850   /* If we were given an invalid count, don't do anything except exactly
8851      what was requested.  */
8852
8853   if (input_count < 0 || input_count > (int) GET_MODE_BITSIZE (mode))
8854     {
8855       if (x)
8856         return x;
8857
8858       return gen_rtx_fmt_ee (code, mode, varop, GEN_INT (input_count));
8859     }
8860
8861   count = input_count;
8862
8863   /* Make sure and truncate the "natural" shift on the way in.  We don't
8864      want to do this inside the loop as it makes it more difficult to
8865      combine shifts.  */
8866 #ifdef SHIFT_COUNT_TRUNCATED
8867   if (SHIFT_COUNT_TRUNCATED)
8868     count %= GET_MODE_BITSIZE (mode);
8869 #endif
8870
8871   /* Unless one of the branches of the `if' in this loop does a `continue',
8872      we will `break' the loop after the `if'.  */
8873
8874   while (count != 0)
8875     {
8876       /* If we have an operand of (clobber (const_int 0)), just return that
8877          value.  */
8878       if (GET_CODE (varop) == CLOBBER)
8879         return varop;
8880
8881       /* If we discovered we had to complement VAROP, leave.  Making a NOT
8882          here would cause an infinite loop.  */
8883       if (complement_p)
8884         break;
8885
8886       /* Convert ROTATERT to ROTATE.  */
8887       if (code == ROTATERT)
8888         code = ROTATE, count = GET_MODE_BITSIZE (result_mode) - count;
8889
8890       /* We need to determine what mode we will do the shift in.  If the
8891          shift is a right shift or a ROTATE, we must always do it in the mode
8892          it was originally done in.  Otherwise, we can do it in MODE, the
8893          widest mode encountered.  */
8894       shift_mode
8895         = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
8896            ? result_mode : mode);
8897
8898       /* Handle cases where the count is greater than the size of the mode
8899          minus 1.  For ASHIFT, use the size minus one as the count (this can
8900          occur when simplifying (lshiftrt (ashiftrt ..))).  For rotates,
8901          take the count modulo the size.  For other shifts, the result is
8902          zero.
8903
8904          Since these shifts are being produced by the compiler by combining
8905          multiple operations, each of which are defined, we know what the
8906          result is supposed to be.  */
8907
8908       if (count > GET_MODE_BITSIZE (shift_mode) - 1)
8909         {
8910           if (code == ASHIFTRT)
8911             count = GET_MODE_BITSIZE (shift_mode) - 1;
8912           else if (code == ROTATE || code == ROTATERT)
8913             count %= GET_MODE_BITSIZE (shift_mode);
8914           else
8915             {
8916               /* We can't simply return zero because there may be an
8917                  outer op.  */
8918               varop = const0_rtx;
8919               count = 0;
8920               break;
8921             }
8922         }
8923
8924       /* An arithmetic right shift of a quantity known to be -1 or 0
8925          is a no-op.  */
8926       if (code == ASHIFTRT
8927           && (num_sign_bit_copies (varop, shift_mode)
8928               == GET_MODE_BITSIZE (shift_mode)))
8929         {
8930           count = 0;
8931           break;
8932         }
8933
8934       /* If we are doing an arithmetic right shift and discarding all but
8935          the sign bit copies, this is equivalent to doing a shift by the
8936          bitsize minus one.  Convert it into that shift because it will often
8937          allow other simplifications.  */
8938
8939       if (code == ASHIFTRT
8940           && (count + num_sign_bit_copies (varop, shift_mode)
8941               >= GET_MODE_BITSIZE (shift_mode)))
8942         count = GET_MODE_BITSIZE (shift_mode) - 1;
8943
8944       /* We simplify the tests below and elsewhere by converting
8945          ASHIFTRT to LSHIFTRT if we know the sign bit is clear.
8946          `make_compound_operation' will convert it to a ASHIFTRT for
8947          those machines (such as Vax) that don't have a LSHIFTRT.  */
8948       if (GET_MODE_BITSIZE (shift_mode) <= HOST_BITS_PER_WIDE_INT
8949           && code == ASHIFTRT
8950           && ((nonzero_bits (varop, shift_mode)
8951                & ((HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (shift_mode) - 1)))
8952               == 0))
8953         code = LSHIFTRT;
8954
8955       switch (GET_CODE (varop))
8956         {
8957         case SIGN_EXTEND:
8958         case ZERO_EXTEND:
8959         case SIGN_EXTRACT:
8960         case ZERO_EXTRACT:
8961           new = expand_compound_operation (varop);
8962           if (new != varop)
8963             {
8964               varop = new;
8965               continue;
8966             }
8967           break;
8968
8969         case MEM:
8970           /* If we have (xshiftrt (mem ...) C) and C is MODE_WIDTH
8971              minus the width of a smaller mode, we can do this with a
8972              SIGN_EXTEND or ZERO_EXTEND from the narrower memory location.  */
8973           if ((code == ASHIFTRT || code == LSHIFTRT)
8974               && ! mode_dependent_address_p (XEXP (varop, 0))
8975               && ! MEM_VOLATILE_P (varop)
8976               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
8977                                          MODE_INT, 1)) != BLKmode)
8978             {
8979               if (BYTES_BIG_ENDIAN)
8980                 new = gen_rtx_MEM (tmode, XEXP (varop, 0));
8981               else
8982                 new = gen_rtx_MEM (tmode,
8983                                    plus_constant (XEXP (varop, 0),
8984                                                   count / BITS_PER_UNIT));
8985
8986               MEM_COPY_ATTRIBUTES (new, varop);
8987               varop = gen_rtx_fmt_e (code == ASHIFTRT ? SIGN_EXTEND
8988                                      : ZERO_EXTEND, mode, new);
8989               count = 0;
8990               continue;
8991             }
8992           break;
8993
8994         case USE:
8995           /* Similar to the case above, except that we can only do this if
8996              the resulting mode is the same as that of the underlying
8997              MEM and adjust the address depending on the *bits* endianness
8998              because of the way that bit-field extract insns are defined.  */
8999           if ((code == ASHIFTRT || code == LSHIFTRT)
9000               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
9001                                          MODE_INT, 1)) != BLKmode
9002               && tmode == GET_MODE (XEXP (varop, 0)))
9003             {
9004               if (BITS_BIG_ENDIAN)
9005                 new = XEXP (varop, 0);
9006               else
9007                 {
9008                   new = copy_rtx (XEXP (varop, 0));
9009                   SUBST (XEXP (new, 0),
9010                          plus_constant (XEXP (new, 0),
9011                                         count / BITS_PER_UNIT));
9012                 }
9013
9014               varop = gen_rtx_fmt_e (code == ASHIFTRT ? SIGN_EXTEND
9015                                      : ZERO_EXTEND, mode, new);
9016               count = 0;
9017               continue;
9018             }
9019           break;
9020
9021         case SUBREG:
9022           /* If VAROP is a SUBREG, strip it as long as the inner operand has
9023              the same number of words as what we've seen so far.  Then store
9024              the widest mode in MODE.  */
9025           if (subreg_lowpart_p (varop)
9026               && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9027                   > GET_MODE_SIZE (GET_MODE (varop)))
9028               && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9029                     + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
9030                   == mode_words))
9031             {
9032               varop = SUBREG_REG (varop);
9033               if (GET_MODE_SIZE (GET_MODE (varop)) > GET_MODE_SIZE (mode))
9034                 mode = GET_MODE (varop);
9035               continue;
9036             }
9037           break;
9038
9039         case MULT:
9040           /* Some machines use MULT instead of ASHIFT because MULT
9041              is cheaper.  But it is still better on those machines to
9042              merge two shifts into one.  */
9043           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9044               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
9045             {
9046               varop
9047                 = gen_binary (ASHIFT, GET_MODE (varop), XEXP (varop, 0),
9048                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
9049               continue;
9050             }
9051           break;
9052
9053         case UDIV:
9054           /* Similar, for when divides are cheaper.  */
9055           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9056               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
9057             {
9058               varop
9059                 = gen_binary (LSHIFTRT, GET_MODE (varop), XEXP (varop, 0),
9060                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
9061               continue;
9062             }
9063           break;
9064
9065         case ASHIFTRT:
9066           /* If we are extracting just the sign bit of an arithmetic
9067              right shift, that shift is not needed.  However, the sign
9068              bit of a wider mode may be different from what would be
9069              interpreted as the sign bit in a narrower mode, so, if
9070              the result is narrower, don't discard the shift.  */
9071           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9072               && (GET_MODE_BITSIZE (result_mode)
9073                   >= GET_MODE_BITSIZE (GET_MODE (varop))))
9074             {
9075               varop = XEXP (varop, 0);
9076               continue;
9077             }
9078
9079           /* ... fall through ...  */
9080
9081         case LSHIFTRT:
9082         case ASHIFT:
9083         case ROTATE:
9084           /* Here we have two nested shifts.  The result is usually the
9085              AND of a new shift with a mask.  We compute the result below.  */
9086           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9087               && INTVAL (XEXP (varop, 1)) >= 0
9088               && INTVAL (XEXP (varop, 1)) < GET_MODE_BITSIZE (GET_MODE (varop))
9089               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9090               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
9091             {
9092               enum rtx_code first_code = GET_CODE (varop);
9093               unsigned int first_count = INTVAL (XEXP (varop, 1));
9094               unsigned HOST_WIDE_INT mask;
9095               rtx mask_rtx;
9096
9097               /* We have one common special case.  We can't do any merging if
9098                  the inner code is an ASHIFTRT of a smaller mode.  However, if
9099                  we have (ashift:M1 (subreg:M1 (ashiftrt:M2 FOO C1) 0) C2)
9100                  with C2 == GET_MODE_BITSIZE (M1) - GET_MODE_BITSIZE (M2),
9101                  we can convert it to
9102                  (ashiftrt:M1 (ashift:M1 (and:M1 (subreg:M1 FOO 0 C2) C3) C1).
9103                  This simplifies certain SIGN_EXTEND operations.  */
9104               if (code == ASHIFT && first_code == ASHIFTRT
9105                   && (GET_MODE_BITSIZE (result_mode)
9106                       - GET_MODE_BITSIZE (GET_MODE (varop))) == count)
9107                 {
9108                   /* C3 has the low-order C1 bits zero.  */
9109
9110                   mask = (GET_MODE_MASK (mode)
9111                           & ~(((HOST_WIDE_INT) 1 << first_count) - 1));
9112
9113                   varop = simplify_and_const_int (NULL_RTX, result_mode,
9114                                                   XEXP (varop, 0), mask);
9115                   varop = simplify_shift_const (NULL_RTX, ASHIFT, result_mode,
9116                                                 varop, count);
9117                   count = first_count;
9118                   code = ASHIFTRT;
9119                   continue;
9120                 }
9121
9122               /* If this was (ashiftrt (ashift foo C1) C2) and FOO has more
9123                  than C1 high-order bits equal to the sign bit, we can convert
9124                  this to either an ASHIFT or a ASHIFTRT depending on the
9125                  two counts.
9126
9127                  We cannot do this if VAROP's mode is not SHIFT_MODE.  */
9128
9129               if (code == ASHIFTRT && first_code == ASHIFT
9130                   && GET_MODE (varop) == shift_mode
9131                   && (num_sign_bit_copies (XEXP (varop, 0), shift_mode)
9132                       > first_count))
9133                 {
9134                   varop = XEXP (varop, 0);
9135
9136                   signed_count = count - first_count;
9137                   if (signed_count < 0)
9138                     count = -signed_count, code = ASHIFT;
9139                   else
9140                     count = signed_count;
9141
9142                   continue;
9143                 }
9144
9145               /* There are some cases we can't do.  If CODE is ASHIFTRT,
9146                  we can only do this if FIRST_CODE is also ASHIFTRT.
9147
9148                  We can't do the case when CODE is ROTATE and FIRST_CODE is
9149                  ASHIFTRT.
9150
9151                  If the mode of this shift is not the mode of the outer shift,
9152                  we can't do this if either shift is a right shift or ROTATE.
9153
9154                  Finally, we can't do any of these if the mode is too wide
9155                  unless the codes are the same.
9156
9157                  Handle the case where the shift codes are the same
9158                  first.  */
9159
9160               if (code == first_code)
9161                 {
9162                   if (GET_MODE (varop) != result_mode
9163                       && (code == ASHIFTRT || code == LSHIFTRT
9164                           || code == ROTATE))
9165                     break;
9166
9167                   count += first_count;
9168                   varop = XEXP (varop, 0);
9169                   continue;
9170                 }
9171
9172               if (code == ASHIFTRT
9173                   || (code == ROTATE && first_code == ASHIFTRT)
9174                   || GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT
9175                   || (GET_MODE (varop) != result_mode
9176                       && (first_code == ASHIFTRT || first_code == LSHIFTRT
9177                           || first_code == ROTATE
9178                           || code == ROTATE)))
9179                 break;
9180
9181               /* To compute the mask to apply after the shift, shift the
9182                  nonzero bits of the inner shift the same way the
9183                  outer shift will.  */
9184
9185               mask_rtx = GEN_INT (nonzero_bits (varop, GET_MODE (varop)));
9186
9187               mask_rtx
9188                 = simplify_binary_operation (code, result_mode, mask_rtx,
9189                                              GEN_INT (count));
9190
9191               /* Give up if we can't compute an outer operation to use.  */
9192               if (mask_rtx == 0
9193                   || GET_CODE (mask_rtx) != CONST_INT
9194                   || ! merge_outer_ops (&outer_op, &outer_const, AND,
9195                                         INTVAL (mask_rtx),
9196                                         result_mode, &complement_p))
9197                 break;
9198
9199               /* If the shifts are in the same direction, we add the
9200                  counts.  Otherwise, we subtract them.  */
9201               signed_count = count;
9202               if ((code == ASHIFTRT || code == LSHIFTRT)
9203                   == (first_code == ASHIFTRT || first_code == LSHIFTRT))
9204                 signed_count += first_count;
9205               else
9206                 signed_count -= first_count;
9207
9208               /* If COUNT is positive, the new shift is usually CODE,
9209                  except for the two exceptions below, in which case it is
9210                  FIRST_CODE.  If the count is negative, FIRST_CODE should
9211                  always be used  */
9212               if (signed_count > 0
9213                   && ((first_code == ROTATE && code == ASHIFT)
9214                       || (first_code == ASHIFTRT && code == LSHIFTRT)))
9215                 code = first_code, count = signed_count;
9216               else if (signed_count < 0)
9217                 code = first_code, count = -signed_count;
9218               else
9219                 count = signed_count;
9220
9221               varop = XEXP (varop, 0);
9222               continue;
9223             }
9224
9225           /* If we have (A << B << C) for any shift, we can convert this to
9226              (A << C << B).  This wins if A is a constant.  Only try this if
9227              B is not a constant.  */
9228
9229           else if (GET_CODE (varop) == code
9230                    && GET_CODE (XEXP (varop, 1)) != CONST_INT
9231                    && 0 != (new
9232                             = simplify_binary_operation (code, mode,
9233                                                          XEXP (varop, 0),
9234                                                          GEN_INT (count))))
9235             {
9236               varop = gen_rtx_fmt_ee (code, mode, new, XEXP (varop, 1));
9237               count = 0;
9238               continue;
9239             }
9240           break;
9241
9242         case NOT:
9243           /* Make this fit the case below.  */
9244           varop = gen_rtx_XOR (mode, XEXP (varop, 0),
9245                                GEN_INT (GET_MODE_MASK (mode)));
9246           continue;
9247
9248         case IOR:
9249         case AND:
9250         case XOR:
9251           /* If we have (xshiftrt (ior (plus X (const_int -1)) X) C)
9252              with C the size of VAROP - 1 and the shift is logical if
9253              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9254              we have an (le X 0) operation.   If we have an arithmetic shift
9255              and STORE_FLAG_VALUE is 1 or we have a logical shift with
9256              STORE_FLAG_VALUE of -1, we have a (neg (le X 0)) operation.  */
9257
9258           if (GET_CODE (varop) == IOR && GET_CODE (XEXP (varop, 0)) == PLUS
9259               && XEXP (XEXP (varop, 0), 1) == constm1_rtx
9260               && (STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9261               && (code == LSHIFTRT || code == ASHIFTRT)
9262               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9263               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9264             {
9265               count = 0;
9266               varop = gen_rtx_LE (GET_MODE (varop), XEXP (varop, 1),
9267                                   const0_rtx);
9268
9269               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9270                 varop = gen_rtx_NEG (GET_MODE (varop), varop);
9271
9272               continue;
9273             }
9274
9275           /* If we have (shift (logical)), move the logical to the outside
9276              to allow it to possibly combine with another logical and the
9277              shift to combine with another shift.  This also canonicalizes to
9278              what a ZERO_EXTRACT looks like.  Also, some machines have
9279              (and (shift)) insns.  */
9280
9281           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9282               && (new = simplify_binary_operation (code, result_mode,
9283                                                    XEXP (varop, 1),
9284                                                    GEN_INT (count))) != 0
9285               && GET_CODE (new) == CONST_INT
9286               && merge_outer_ops (&outer_op, &outer_const, GET_CODE (varop),
9287                                   INTVAL (new), result_mode, &complement_p))
9288             {
9289               varop = XEXP (varop, 0);
9290               continue;
9291             }
9292
9293           /* If we can't do that, try to simplify the shift in each arm of the
9294              logical expression, make a new logical expression, and apply
9295              the inverse distributive law.  */
9296           {
9297             rtx lhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9298                                             XEXP (varop, 0), count);
9299             rtx rhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9300                                             XEXP (varop, 1), count);
9301
9302             varop = gen_binary (GET_CODE (varop), shift_mode, lhs, rhs);
9303             varop = apply_distributive_law (varop);
9304
9305             count = 0;
9306           }
9307           break;
9308
9309         case EQ:
9310           /* convert (lshiftrt (eq FOO 0) C) to (xor FOO 1) if STORE_FLAG_VALUE
9311              says that the sign bit can be tested, FOO has mode MODE, C is
9312              GET_MODE_BITSIZE (MODE) - 1, and FOO has only its low-order bit
9313              that may be nonzero.  */
9314           if (code == LSHIFTRT
9315               && XEXP (varop, 1) == const0_rtx
9316               && GET_MODE (XEXP (varop, 0)) == result_mode
9317               && count == GET_MODE_BITSIZE (result_mode) - 1
9318               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9319               && ((STORE_FLAG_VALUE
9320                    & ((HOST_WIDE_INT) 1
9321                       < (GET_MODE_BITSIZE (result_mode) - 1))))
9322               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9323               && merge_outer_ops (&outer_op, &outer_const, XOR,
9324                                   (HOST_WIDE_INT) 1, result_mode,
9325                                   &complement_p))
9326             {
9327               varop = XEXP (varop, 0);
9328               count = 0;
9329               continue;
9330             }
9331           break;
9332
9333         case NEG:
9334           /* (lshiftrt (neg A) C) where A is either 0 or 1 and C is one less
9335              than the number of bits in the mode is equivalent to A.  */
9336           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9337               && nonzero_bits (XEXP (varop, 0), result_mode) == 1)
9338             {
9339               varop = XEXP (varop, 0);
9340               count = 0;
9341               continue;
9342             }
9343
9344           /* NEG commutes with ASHIFT since it is multiplication.  Move the
9345              NEG outside to allow shifts to combine.  */
9346           if (code == ASHIFT
9347               && merge_outer_ops (&outer_op, &outer_const, NEG,
9348                                   (HOST_WIDE_INT) 0, result_mode,
9349                                   &complement_p))
9350             {
9351               varop = XEXP (varop, 0);
9352               continue;
9353             }
9354           break;
9355
9356         case PLUS:
9357           /* (lshiftrt (plus A -1) C) where A is either 0 or 1 and C
9358              is one less than the number of bits in the mode is
9359              equivalent to (xor A 1).  */
9360           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9361               && XEXP (varop, 1) == constm1_rtx
9362               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9363               && merge_outer_ops (&outer_op, &outer_const, XOR,
9364                                   (HOST_WIDE_INT) 1, result_mode,
9365                                   &complement_p))
9366             {
9367               count = 0;
9368               varop = XEXP (varop, 0);
9369               continue;
9370             }
9371
9372           /* If we have (xshiftrt (plus FOO BAR) C), and the only bits
9373              that might be nonzero in BAR are those being shifted out and those
9374              bits are known zero in FOO, we can replace the PLUS with FOO.
9375              Similarly in the other operand order.  This code occurs when
9376              we are computing the size of a variable-size array.  */
9377
9378           if ((code == ASHIFTRT || code == LSHIFTRT)
9379               && count < HOST_BITS_PER_WIDE_INT
9380               && nonzero_bits (XEXP (varop, 1), result_mode) >> count == 0
9381               && (nonzero_bits (XEXP (varop, 1), result_mode)
9382                   & nonzero_bits (XEXP (varop, 0), result_mode)) == 0)
9383             {
9384               varop = XEXP (varop, 0);
9385               continue;
9386             }
9387           else if ((code == ASHIFTRT || code == LSHIFTRT)
9388                    && count < HOST_BITS_PER_WIDE_INT
9389                    && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9390                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9391                             >> count)
9392                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9393                             & nonzero_bits (XEXP (varop, 1),
9394                                                  result_mode)))
9395             {
9396               varop = XEXP (varop, 1);
9397               continue;
9398             }
9399
9400           /* (ashift (plus foo C) N) is (plus (ashift foo N) C').  */
9401           if (code == ASHIFT
9402               && GET_CODE (XEXP (varop, 1)) == CONST_INT
9403               && (new = simplify_binary_operation (ASHIFT, result_mode,
9404                                                    XEXP (varop, 1),
9405                                                    GEN_INT (count))) != 0
9406               && GET_CODE (new) == CONST_INT
9407               && merge_outer_ops (&outer_op, &outer_const, PLUS,
9408                                   INTVAL (new), result_mode, &complement_p))
9409             {
9410               varop = XEXP (varop, 0);
9411               continue;
9412             }
9413           break;
9414
9415         case MINUS:
9416           /* If we have (xshiftrt (minus (ashiftrt X C)) X) C)
9417              with C the size of VAROP - 1 and the shift is logical if
9418              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9419              we have a (gt X 0) operation.  If the shift is arithmetic with
9420              STORE_FLAG_VALUE of 1 or logical with STORE_FLAG_VALUE == -1,
9421              we have a (neg (gt X 0)) operation.  */
9422
9423           if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9424               && GET_CODE (XEXP (varop, 0)) == ASHIFTRT
9425               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9426               && (code == LSHIFTRT || code == ASHIFTRT)
9427               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9428               && INTVAL (XEXP (XEXP (varop, 0), 1)) == count
9429               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9430             {
9431               count = 0;
9432               varop = gen_rtx_GT (GET_MODE (varop), XEXP (varop, 1),
9433                                   const0_rtx);
9434
9435               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9436                 varop = gen_rtx_NEG (GET_MODE (varop), varop);
9437
9438               continue;
9439             }
9440           break;
9441
9442         case TRUNCATE:
9443           /* Change (lshiftrt (truncate (lshiftrt))) to (truncate (lshiftrt))
9444              if the truncate does not affect the value.  */
9445           if (code == LSHIFTRT
9446               && GET_CODE (XEXP (varop, 0)) == LSHIFTRT
9447               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9448               && (INTVAL (XEXP (XEXP (varop, 0), 1))
9449                   >= (GET_MODE_BITSIZE (GET_MODE (XEXP (varop, 0)))
9450                       - GET_MODE_BITSIZE (GET_MODE (varop)))))
9451             {
9452               rtx varop_inner = XEXP (varop, 0);
9453
9454               varop_inner
9455                 = gen_rtx_LSHIFTRT (GET_MODE (varop_inner),
9456                                     XEXP (varop_inner, 0),
9457                                     GEN_INT
9458                                     (count + INTVAL (XEXP (varop_inner, 1))));
9459               varop = gen_rtx_TRUNCATE (GET_MODE (varop), varop_inner);
9460               count = 0;
9461               continue;
9462             }
9463           break;
9464
9465         default:
9466           break;
9467         }
9468
9469       break;
9470     }
9471
9472   /* We need to determine what mode to do the shift in.  If the shift is
9473      a right shift or ROTATE, we must always do it in the mode it was
9474      originally done in.  Otherwise, we can do it in MODE, the widest mode
9475      encountered.  The code we care about is that of the shift that will
9476      actually be done, not the shift that was originally requested.  */
9477   shift_mode
9478     = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
9479        ? result_mode : mode);
9480
9481   /* We have now finished analyzing the shift.  The result should be
9482      a shift of type CODE with SHIFT_MODE shifting VAROP COUNT places.  If
9483      OUTER_OP is non-NIL, it is an operation that needs to be applied
9484      to the result of the shift.  OUTER_CONST is the relevant constant,
9485      but we must turn off all bits turned off in the shift.
9486
9487      If we were passed a value for X, see if we can use any pieces of
9488      it.  If not, make new rtx.  */
9489
9490   if (x && GET_RTX_CLASS (GET_CODE (x)) == '2'
9491       && GET_CODE (XEXP (x, 1)) == CONST_INT
9492       && INTVAL (XEXP (x, 1)) == count)
9493     const_rtx = XEXP (x, 1);
9494   else
9495     const_rtx = GEN_INT (count);
9496
9497   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
9498       && GET_MODE (XEXP (x, 0)) == shift_mode
9499       && SUBREG_REG (XEXP (x, 0)) == varop)
9500     varop = XEXP (x, 0);
9501   else if (GET_MODE (varop) != shift_mode)
9502     varop = gen_lowpart_for_combine (shift_mode, varop);
9503
9504   /* If we can't make the SUBREG, try to return what we were given.  */
9505   if (GET_CODE (varop) == CLOBBER)
9506     return x ? x : varop;
9507
9508   new = simplify_binary_operation (code, shift_mode, varop, const_rtx);
9509   if (new != 0)
9510     x = new;
9511   else
9512     {
9513       if (x == 0 || GET_CODE (x) != code || GET_MODE (x) != shift_mode)
9514         x = gen_rtx_fmt_ee (code, shift_mode, varop, const_rtx);
9515
9516       SUBST (XEXP (x, 0), varop);
9517       SUBST (XEXP (x, 1), const_rtx);
9518     }
9519
9520   /* If we have an outer operation and we just made a shift, it is
9521      possible that we could have simplified the shift were it not
9522      for the outer operation.  So try to do the simplification
9523      recursively.  */
9524
9525   if (outer_op != NIL && GET_CODE (x) == code
9526       && GET_CODE (XEXP (x, 1)) == CONST_INT)
9527     x = simplify_shift_const (x, code, shift_mode, XEXP (x, 0),
9528                               INTVAL (XEXP (x, 1)));
9529
9530   /* If we were doing a LSHIFTRT in a wider mode than it was originally,
9531      turn off all the bits that the shift would have turned off.  */
9532   if (orig_code == LSHIFTRT && result_mode != shift_mode)
9533     x = simplify_and_const_int (NULL_RTX, shift_mode, x,
9534                                 GET_MODE_MASK (result_mode) >> orig_count);
9535
9536   /* Do the remainder of the processing in RESULT_MODE.  */
9537   x = gen_lowpart_for_combine (result_mode, x);
9538
9539   /* If COMPLEMENT_P is set, we have to complement X before doing the outer
9540      operation.  */
9541   if (complement_p)
9542     x =simplify_gen_unary (NOT, result_mode, x, result_mode);
9543
9544   if (outer_op != NIL)
9545     {
9546       if (GET_MODE_BITSIZE (result_mode) < HOST_BITS_PER_WIDE_INT)
9547         outer_const = trunc_int_for_mode (outer_const, result_mode);
9548
9549       if (outer_op == AND)
9550         x = simplify_and_const_int (NULL_RTX, result_mode, x, outer_const);
9551       else if (outer_op == SET)
9552         /* This means that we have determined that the result is
9553            equivalent to a constant.  This should be rare.  */
9554         x = GEN_INT (outer_const);
9555       else if (GET_RTX_CLASS (outer_op) == '1')
9556         x = simplify_gen_unary (outer_op, result_mode, x, result_mode);
9557       else
9558         x = gen_binary (outer_op, result_mode, x, GEN_INT (outer_const));
9559     }
9560
9561   return x;
9562 }
9563 \f
9564 /* Like recog, but we receive the address of a pointer to a new pattern.
9565    We try to match the rtx that the pointer points to.
9566    If that fails, we may try to modify or replace the pattern,
9567    storing the replacement into the same pointer object.
9568
9569    Modifications include deletion or addition of CLOBBERs.
9570
9571    PNOTES is a pointer to a location where any REG_UNUSED notes added for
9572    the CLOBBERs are placed.
9573
9574    The value is the final insn code from the pattern ultimately matched,
9575    or -1.  */
9576
9577 static int
9578 recog_for_combine (pnewpat, insn, pnotes)
9579      rtx *pnewpat;
9580      rtx insn;
9581      rtx *pnotes;
9582 {
9583   register rtx pat = *pnewpat;
9584   int insn_code_number;
9585   int num_clobbers_to_add = 0;
9586   int i;
9587   rtx notes = 0;
9588   rtx old_notes;
9589
9590   /* If PAT is a PARALLEL, check to see if it contains the CLOBBER
9591      we use to indicate that something didn't match.  If we find such a
9592      thing, force rejection.  */
9593   if (GET_CODE (pat) == PARALLEL)
9594     for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
9595       if (GET_CODE (XVECEXP (pat, 0, i)) == CLOBBER
9596           && XEXP (XVECEXP (pat, 0, i), 0) == const0_rtx)
9597         return -1;
9598
9599   /* Remove the old notes prior to trying to recognize the new pattern.  */
9600   old_notes = REG_NOTES (insn);
9601   REG_NOTES (insn) = 0;
9602
9603   /* Is the result of combination a valid instruction?  */
9604   insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9605
9606   /* If it isn't, there is the possibility that we previously had an insn
9607      that clobbered some register as a side effect, but the combined
9608      insn doesn't need to do that.  So try once more without the clobbers
9609      unless this represents an ASM insn.  */
9610
9611   if (insn_code_number < 0 && ! check_asm_operands (pat)
9612       && GET_CODE (pat) == PARALLEL)
9613     {
9614       int pos;
9615
9616       for (pos = 0, i = 0; i < XVECLEN (pat, 0); i++)
9617         if (GET_CODE (XVECEXP (pat, 0, i)) != CLOBBER)
9618           {
9619             if (i != pos)
9620               SUBST (XVECEXP (pat, 0, pos), XVECEXP (pat, 0, i));
9621             pos++;
9622           }
9623
9624       SUBST_INT (XVECLEN (pat, 0), pos);
9625
9626       if (pos == 1)
9627         pat = XVECEXP (pat, 0, 0);
9628
9629       insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9630     }
9631
9632   REG_NOTES (insn) = old_notes;
9633
9634   /* If we had any clobbers to add, make a new pattern than contains
9635      them.  Then check to make sure that all of them are dead.  */
9636   if (num_clobbers_to_add)
9637     {
9638       rtx newpat = gen_rtx_PARALLEL (VOIDmode,
9639                                      rtvec_alloc (GET_CODE (pat) == PARALLEL
9640                                                   ? (XVECLEN (pat, 0)
9641                                                      + num_clobbers_to_add)
9642                                                   : num_clobbers_to_add + 1));
9643
9644       if (GET_CODE (pat) == PARALLEL)
9645         for (i = 0; i < XVECLEN (pat, 0); i++)
9646           XVECEXP (newpat, 0, i) = XVECEXP (pat, 0, i);
9647       else
9648         XVECEXP (newpat, 0, 0) = pat;
9649
9650       add_clobbers (newpat, insn_code_number);
9651
9652       for (i = XVECLEN (newpat, 0) - num_clobbers_to_add;
9653            i < XVECLEN (newpat, 0); i++)
9654         {
9655           if (GET_CODE (XEXP (XVECEXP (newpat, 0, i), 0)) == REG
9656               && ! reg_dead_at_p (XEXP (XVECEXP (newpat, 0, i), 0), insn))
9657             return -1;
9658           notes = gen_rtx_EXPR_LIST (REG_UNUSED,
9659                                      XEXP (XVECEXP (newpat, 0, i), 0), notes);
9660         }
9661       pat = newpat;
9662     }
9663
9664   *pnewpat = pat;
9665   *pnotes = notes;
9666
9667   return insn_code_number;
9668 }
9669 \f
9670 /* Like gen_lowpart but for use by combine.  In combine it is not possible
9671    to create any new pseudoregs.  However, it is safe to create
9672    invalid memory addresses, because combine will try to recognize
9673    them and all they will do is make the combine attempt fail.
9674
9675    If for some reason this cannot do its job, an rtx
9676    (clobber (const_int 0)) is returned.
9677    An insn containing that will not be recognized.  */
9678
9679 #undef gen_lowpart
9680
9681 static rtx
9682 gen_lowpart_for_combine (mode, x)
9683      enum machine_mode mode;
9684      register rtx x;
9685 {
9686   rtx result;
9687
9688   if (GET_MODE (x) == mode)
9689     return x;
9690
9691   /* We can only support MODE being wider than a word if X is a
9692      constant integer or has a mode the same size.  */
9693
9694   if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
9695       && ! ((GET_MODE (x) == VOIDmode
9696              && (GET_CODE (x) == CONST_INT
9697                  || GET_CODE (x) == CONST_DOUBLE))
9698             || GET_MODE_SIZE (GET_MODE (x)) == GET_MODE_SIZE (mode)))
9699     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9700
9701   /* X might be a paradoxical (subreg (mem)).  In that case, gen_lowpart
9702      won't know what to do.  So we will strip off the SUBREG here and
9703      process normally.  */
9704   if (GET_CODE (x) == SUBREG && GET_CODE (SUBREG_REG (x)) == MEM)
9705     {
9706       x = SUBREG_REG (x);
9707       if (GET_MODE (x) == mode)
9708         return x;
9709     }
9710
9711   result = gen_lowpart_common (mode, x);
9712 #ifdef CLASS_CANNOT_CHANGE_MODE
9713   if (result != 0
9714       && GET_CODE (result) == SUBREG
9715       && GET_CODE (SUBREG_REG (result)) == REG
9716       && REGNO (SUBREG_REG (result)) >= FIRST_PSEUDO_REGISTER
9717       && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (result),
9718                                      GET_MODE (SUBREG_REG (result))))
9719     REG_CHANGES_MODE (REGNO (SUBREG_REG (result))) = 1;
9720 #endif
9721
9722   if (result)
9723     return result;
9724
9725   if (GET_CODE (x) == MEM)
9726     {
9727       register int offset = 0;
9728       rtx new;
9729
9730       /* Refuse to work on a volatile memory ref or one with a mode-dependent
9731          address.  */
9732       if (MEM_VOLATILE_P (x) || mode_dependent_address_p (XEXP (x, 0)))
9733         return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9734
9735       /* If we want to refer to something bigger than the original memref,
9736          generate a perverse subreg instead.  That will force a reload
9737          of the original memref X.  */
9738       if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode))
9739         return gen_rtx_SUBREG (mode, x, 0);
9740
9741       if (WORDS_BIG_ENDIAN)
9742         offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
9743                   - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
9744
9745       if (BYTES_BIG_ENDIAN)
9746         {
9747           /* Adjust the address so that the address-after-the-data is
9748              unchanged.  */
9749           offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
9750                      - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
9751         }
9752       new = gen_rtx_MEM (mode, plus_constant (XEXP (x, 0), offset));
9753       MEM_COPY_ATTRIBUTES (new, x);
9754       return new;
9755     }
9756
9757   /* If X is a comparison operator, rewrite it in a new mode.  This
9758      probably won't match, but may allow further simplifications.  */
9759   else if (GET_RTX_CLASS (GET_CODE (x)) == '<')
9760     return gen_rtx_fmt_ee (GET_CODE (x), mode, XEXP (x, 0), XEXP (x, 1));
9761
9762   /* If we couldn't simplify X any other way, just enclose it in a
9763      SUBREG.  Normally, this SUBREG won't match, but some patterns may
9764      include an explicit SUBREG or we may simplify it further in combine.  */
9765   else
9766     {
9767       int offset = 0;
9768
9769       if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
9770           && GET_MODE_SIZE (GET_MODE (x)) > GET_MODE_SIZE (mode))
9771         {
9772           int difference = (GET_MODE_SIZE (GET_MODE (x))
9773                             - GET_MODE_SIZE (mode));
9774           if (WORDS_BIG_ENDIAN)
9775             offset += (difference / UNITS_PER_WORD) * UNITS_PER_WORD;
9776           if (BYTES_BIG_ENDIAN)
9777             offset += difference % UNITS_PER_WORD;
9778         }
9779       return gen_rtx_SUBREG (mode, x, offset);
9780     }
9781 }
9782 \f
9783 /* These routines make binary and unary operations by first seeing if they
9784    fold; if not, a new expression is allocated.  */
9785
9786 static rtx
9787 gen_binary (code, mode, op0, op1)
9788      enum rtx_code code;
9789      enum machine_mode mode;
9790      rtx op0, op1;
9791 {
9792   rtx result;
9793   rtx tem;
9794
9795   if (GET_RTX_CLASS (code) == 'c'
9796       && swap_commutative_operands_p (op0, op1))
9797     tem = op0, op0 = op1, op1 = tem;
9798
9799   if (GET_RTX_CLASS (code) == '<')
9800     {
9801       enum machine_mode op_mode = GET_MODE (op0);
9802
9803       /* Strip the COMPARE from (REL_OP (compare X Y) 0) to get
9804          just (REL_OP X Y).  */
9805       if (GET_CODE (op0) == COMPARE && op1 == const0_rtx)
9806         {
9807           op1 = XEXP (op0, 1);
9808           op0 = XEXP (op0, 0);
9809           op_mode = GET_MODE (op0);
9810         }
9811
9812       if (op_mode == VOIDmode)
9813         op_mode = GET_MODE (op1);
9814       result = simplify_relational_operation (code, op_mode, op0, op1);
9815     }
9816   else
9817     result = simplify_binary_operation (code, mode, op0, op1);
9818
9819   if (result)
9820     return result;
9821
9822   /* Put complex operands first and constants second.  */
9823   if (GET_RTX_CLASS (code) == 'c'
9824       && swap_commutative_operands_p (op0, op1))
9825     return gen_rtx_fmt_ee (code, mode, op1, op0);
9826
9827   /* If we are turning off bits already known off in OP0, we need not do
9828      an AND.  */
9829   else if (code == AND && GET_CODE (op1) == CONST_INT
9830            && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
9831            && (nonzero_bits (op0, mode) & ~INTVAL (op1)) == 0)
9832     return op0;
9833
9834   return gen_rtx_fmt_ee (code, mode, op0, op1);
9835 }
9836 \f
9837 /* Simplify a comparison between *POP0 and *POP1 where CODE is the
9838    comparison code that will be tested.
9839
9840    The result is a possibly different comparison code to use.  *POP0 and
9841    *POP1 may be updated.
9842
9843    It is possible that we might detect that a comparison is either always
9844    true or always false.  However, we do not perform general constant
9845    folding in combine, so this knowledge isn't useful.  Such tautologies
9846    should have been detected earlier.  Hence we ignore all such cases.  */
9847
9848 static enum rtx_code
9849 simplify_comparison (code, pop0, pop1)
9850      enum rtx_code code;
9851      rtx *pop0;
9852      rtx *pop1;
9853 {
9854   rtx op0 = *pop0;
9855   rtx op1 = *pop1;
9856   rtx tem, tem1;
9857   int i;
9858   enum machine_mode mode, tmode;
9859
9860   /* Try a few ways of applying the same transformation to both operands.  */
9861   while (1)
9862     {
9863 #ifndef WORD_REGISTER_OPERATIONS
9864       /* The test below this one won't handle SIGN_EXTENDs on these machines,
9865          so check specially.  */
9866       if (code != GTU && code != GEU && code != LTU && code != LEU
9867           && GET_CODE (op0) == ASHIFTRT && GET_CODE (op1) == ASHIFTRT
9868           && GET_CODE (XEXP (op0, 0)) == ASHIFT
9869           && GET_CODE (XEXP (op1, 0)) == ASHIFT
9870           && GET_CODE (XEXP (XEXP (op0, 0), 0)) == SUBREG
9871           && GET_CODE (XEXP (XEXP (op1, 0), 0)) == SUBREG
9872           && (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0)))
9873               == GET_MODE (SUBREG_REG (XEXP (XEXP (op1, 0), 0))))
9874           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9875           && GET_CODE (XEXP (op1, 1)) == CONST_INT
9876           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
9877           && GET_CODE (XEXP (XEXP (op1, 0), 1)) == CONST_INT
9878           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (op1, 1))
9879           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op0, 0), 1))
9880           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op1, 0), 1))
9881           && (INTVAL (XEXP (op0, 1))
9882               == (GET_MODE_BITSIZE (GET_MODE (op0))
9883                   - (GET_MODE_BITSIZE
9884                      (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0))))))))
9885         {
9886           op0 = SUBREG_REG (XEXP (XEXP (op0, 0), 0));
9887           op1 = SUBREG_REG (XEXP (XEXP (op1, 0), 0));
9888         }
9889 #endif
9890
9891       /* If both operands are the same constant shift, see if we can ignore the
9892          shift.  We can if the shift is a rotate or if the bits shifted out of
9893          this shift are known to be zero for both inputs and if the type of
9894          comparison is compatible with the shift.  */
9895       if (GET_CODE (op0) == GET_CODE (op1)
9896           && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
9897           && ((GET_CODE (op0) == ROTATE && (code == NE || code == EQ))
9898               || ((GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFT)
9899                   && (code != GT && code != LT && code != GE && code != LE))
9900               || (GET_CODE (op0) == ASHIFTRT
9901                   && (code != GTU && code != LTU
9902                       && code != GEU && code != LEU)))
9903           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9904           && INTVAL (XEXP (op0, 1)) >= 0
9905           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
9906           && XEXP (op0, 1) == XEXP (op1, 1))
9907         {
9908           enum machine_mode mode = GET_MODE (op0);
9909           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
9910           int shift_count = INTVAL (XEXP (op0, 1));
9911
9912           if (GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFTRT)
9913             mask &= (mask >> shift_count) << shift_count;
9914           else if (GET_CODE (op0) == ASHIFT)
9915             mask = (mask & (mask << shift_count)) >> shift_count;
9916
9917           if ((nonzero_bits (XEXP (op0, 0), mode) & ~mask) == 0
9918               && (nonzero_bits (XEXP (op1, 0), mode) & ~mask) == 0)
9919             op0 = XEXP (op0, 0), op1 = XEXP (op1, 0);
9920           else
9921             break;
9922         }
9923
9924       /* If both operands are AND's of a paradoxical SUBREG by constant, the
9925          SUBREGs are of the same mode, and, in both cases, the AND would
9926          be redundant if the comparison was done in the narrower mode,
9927          do the comparison in the narrower mode (e.g., we are AND'ing with 1
9928          and the operand's possibly nonzero bits are 0xffffff01; in that case
9929          if we only care about QImode, we don't need the AND).  This case
9930          occurs if the output mode of an scc insn is not SImode and
9931          STORE_FLAG_VALUE == 1 (e.g., the 386).
9932
9933          Similarly, check for a case where the AND's are ZERO_EXTEND
9934          operations from some narrower mode even though a SUBREG is not
9935          present.  */
9936
9937       else if (GET_CODE (op0) == AND && GET_CODE (op1) == AND
9938                && GET_CODE (XEXP (op0, 1)) == CONST_INT
9939                && GET_CODE (XEXP (op1, 1)) == CONST_INT)
9940         {
9941           rtx inner_op0 = XEXP (op0, 0);
9942           rtx inner_op1 = XEXP (op1, 0);
9943           HOST_WIDE_INT c0 = INTVAL (XEXP (op0, 1));
9944           HOST_WIDE_INT c1 = INTVAL (XEXP (op1, 1));
9945           int changed = 0;
9946
9947           if (GET_CODE (inner_op0) == SUBREG && GET_CODE (inner_op1) == SUBREG
9948               && (GET_MODE_SIZE (GET_MODE (inner_op0))
9949                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (inner_op0))))
9950               && (GET_MODE (SUBREG_REG (inner_op0))
9951                   == GET_MODE (SUBREG_REG (inner_op1)))
9952               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (inner_op0)))
9953                   <= HOST_BITS_PER_WIDE_INT)
9954               && (0 == ((~c0) & nonzero_bits (SUBREG_REG (inner_op0),
9955                                              GET_MODE (SUBREG_REG (inner_op0)))))
9956               && (0 == ((~c1) & nonzero_bits (SUBREG_REG (inner_op1),
9957                                              GET_MODE (SUBREG_REG (inner_op1))))))
9958             {
9959               op0 = SUBREG_REG (inner_op0);
9960               op1 = SUBREG_REG (inner_op1);
9961
9962               /* The resulting comparison is always unsigned since we masked
9963                  off the original sign bit.  */
9964               code = unsigned_condition (code);
9965
9966               changed = 1;
9967             }
9968
9969           else if (c0 == c1)
9970             for (tmode = GET_CLASS_NARROWEST_MODE
9971                  (GET_MODE_CLASS (GET_MODE (op0)));
9972                  tmode != GET_MODE (op0); tmode = GET_MODE_WIDER_MODE (tmode))
9973               if ((unsigned HOST_WIDE_INT) c0 == GET_MODE_MASK (tmode))
9974                 {
9975                   op0 = gen_lowpart_for_combine (tmode, inner_op0);
9976                   op1 = gen_lowpart_for_combine (tmode, inner_op1);
9977                   code = unsigned_condition (code);
9978                   changed = 1;
9979                   break;
9980                 }
9981
9982           if (! changed)
9983             break;
9984         }
9985
9986       /* If both operands are NOT, we can strip off the outer operation
9987          and adjust the comparison code for swapped operands; similarly for
9988          NEG, except that this must be an equality comparison.  */
9989       else if ((GET_CODE (op0) == NOT && GET_CODE (op1) == NOT)
9990                || (GET_CODE (op0) == NEG && GET_CODE (op1) == NEG
9991                    && (code == EQ || code == NE)))
9992         op0 = XEXP (op0, 0), op1 = XEXP (op1, 0), code = swap_condition (code);
9993
9994       else
9995         break;
9996     }
9997
9998   /* If the first operand is a constant, swap the operands and adjust the
9999      comparison code appropriately, but don't do this if the second operand
10000      is already a constant integer.  */
10001   if (swap_commutative_operands_p (op0, op1))
10002     {
10003       tem = op0, op0 = op1, op1 = tem;
10004       code = swap_condition (code);
10005     }
10006
10007   /* We now enter a loop during which we will try to simplify the comparison.
10008      For the most part, we only are concerned with comparisons with zero,
10009      but some things may really be comparisons with zero but not start
10010      out looking that way.  */
10011
10012   while (GET_CODE (op1) == CONST_INT)
10013     {
10014       enum machine_mode mode = GET_MODE (op0);
10015       unsigned int mode_width = GET_MODE_BITSIZE (mode);
10016       unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
10017       int equality_comparison_p;
10018       int sign_bit_comparison_p;
10019       int unsigned_comparison_p;
10020       HOST_WIDE_INT const_op;
10021
10022       /* We only want to handle integral modes.  This catches VOIDmode,
10023          CCmode, and the floating-point modes.  An exception is that we
10024          can handle VOIDmode if OP0 is a COMPARE or a comparison
10025          operation.  */
10026
10027       if (GET_MODE_CLASS (mode) != MODE_INT
10028           && ! (mode == VOIDmode
10029                 && (GET_CODE (op0) == COMPARE
10030                     || GET_RTX_CLASS (GET_CODE (op0)) == '<')))
10031         break;
10032
10033       /* Get the constant we are comparing against and turn off all bits
10034          not on in our mode.  */
10035       const_op = trunc_int_for_mode (INTVAL (op1), mode);
10036       op1 = GEN_INT (const_op);
10037
10038       /* If we are comparing against a constant power of two and the value
10039          being compared can only have that single bit nonzero (e.g., it was
10040          `and'ed with that bit), we can replace this with a comparison
10041          with zero.  */
10042       if (const_op
10043           && (code == EQ || code == NE || code == GE || code == GEU
10044               || code == LT || code == LTU)
10045           && mode_width <= HOST_BITS_PER_WIDE_INT
10046           && exact_log2 (const_op) >= 0
10047           && nonzero_bits (op0, mode) == (unsigned HOST_WIDE_INT) const_op)
10048         {
10049           code = (code == EQ || code == GE || code == GEU ? NE : EQ);
10050           op1 = const0_rtx, const_op = 0;
10051         }
10052
10053       /* Similarly, if we are comparing a value known to be either -1 or
10054          0 with -1, change it to the opposite comparison against zero.  */
10055
10056       if (const_op == -1
10057           && (code == EQ || code == NE || code == GT || code == LE
10058               || code == GEU || code == LTU)
10059           && num_sign_bit_copies (op0, mode) == mode_width)
10060         {
10061           code = (code == EQ || code == LE || code == GEU ? NE : EQ);
10062           op1 = const0_rtx, const_op = 0;
10063         }
10064
10065       /* Do some canonicalizations based on the comparison code.  We prefer
10066          comparisons against zero and then prefer equality comparisons.
10067          If we can reduce the size of a constant, we will do that too.  */
10068
10069       switch (code)
10070         {
10071         case LT:
10072           /* < C is equivalent to <= (C - 1) */
10073           if (const_op > 0)
10074             {
10075               const_op -= 1;
10076               op1 = GEN_INT (const_op);
10077               code = LE;
10078               /* ... fall through to LE case below.  */
10079             }
10080           else
10081             break;
10082
10083         case LE:
10084           /* <= C is equivalent to < (C + 1); we do this for C < 0  */
10085           if (const_op < 0)
10086             {
10087               const_op += 1;
10088               op1 = GEN_INT (const_op);
10089               code = LT;
10090             }
10091
10092           /* If we are doing a <= 0 comparison on a value known to have
10093              a zero sign bit, we can replace this with == 0.  */
10094           else if (const_op == 0
10095                    && mode_width <= HOST_BITS_PER_WIDE_INT
10096                    && (nonzero_bits (op0, mode)
10097                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10098             code = EQ;
10099           break;
10100
10101         case GE:
10102           /* >= C is equivalent to > (C - 1).  */
10103           if (const_op > 0)
10104             {
10105               const_op -= 1;
10106               op1 = GEN_INT (const_op);
10107               code = GT;
10108               /* ... fall through to GT below.  */
10109             }
10110           else
10111             break;
10112
10113         case GT:
10114           /* > C is equivalent to >= (C + 1); we do this for C < 0.  */
10115           if (const_op < 0)
10116             {
10117               const_op += 1;
10118               op1 = GEN_INT (const_op);
10119               code = GE;
10120             }
10121
10122           /* If we are doing a > 0 comparison on a value known to have
10123              a zero sign bit, we can replace this with != 0.  */
10124           else if (const_op == 0
10125                    && mode_width <= HOST_BITS_PER_WIDE_INT
10126                    && (nonzero_bits (op0, mode)
10127                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10128             code = NE;
10129           break;
10130
10131         case LTU:
10132           /* < C is equivalent to <= (C - 1).  */
10133           if (const_op > 0)
10134             {
10135               const_op -= 1;
10136               op1 = GEN_INT (const_op);
10137               code = LEU;
10138               /* ... fall through ...  */
10139             }
10140
10141           /* (unsigned) < 0x80000000 is equivalent to >= 0.  */
10142           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10143                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10144             {
10145               const_op = 0, op1 = const0_rtx;
10146               code = GE;
10147               break;
10148             }
10149           else
10150             break;
10151
10152         case LEU:
10153           /* unsigned <= 0 is equivalent to == 0 */
10154           if (const_op == 0)
10155             code = EQ;
10156
10157           /* (unsigned) <= 0x7fffffff is equivalent to >= 0.  */
10158           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10159                    && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10160             {
10161               const_op = 0, op1 = const0_rtx;
10162               code = GE;
10163             }
10164           break;
10165
10166         case GEU:
10167           /* >= C is equivalent to < (C - 1).  */
10168           if (const_op > 1)
10169             {
10170               const_op -= 1;
10171               op1 = GEN_INT (const_op);
10172               code = GTU;
10173               /* ... fall through ...  */
10174             }
10175
10176           /* (unsigned) >= 0x80000000 is equivalent to < 0.  */
10177           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10178                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10179             {
10180               const_op = 0, op1 = const0_rtx;
10181               code = LT;
10182               break;
10183             }
10184           else
10185             break;
10186
10187         case GTU:
10188           /* unsigned > 0 is equivalent to != 0 */
10189           if (const_op == 0)
10190             code = NE;
10191
10192           /* (unsigned) > 0x7fffffff is equivalent to < 0.  */
10193           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10194                     && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10195             {
10196               const_op = 0, op1 = const0_rtx;
10197               code = LT;
10198             }
10199           break;
10200
10201         default:
10202           break;
10203         }
10204
10205       /* Compute some predicates to simplify code below.  */
10206
10207       equality_comparison_p = (code == EQ || code == NE);
10208       sign_bit_comparison_p = ((code == LT || code == GE) && const_op == 0);
10209       unsigned_comparison_p = (code == LTU || code == LEU || code == GTU
10210                                || code == GEU);
10211
10212       /* If this is a sign bit comparison and we can do arithmetic in
10213          MODE, say that we will only be needing the sign bit of OP0.  */
10214       if (sign_bit_comparison_p
10215           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10216         op0 = force_to_mode (op0, mode,
10217                              ((HOST_WIDE_INT) 1
10218                               << (GET_MODE_BITSIZE (mode) - 1)),
10219                              NULL_RTX, 0);
10220
10221       /* Now try cases based on the opcode of OP0.  If none of the cases
10222          does a "continue", we exit this loop immediately after the
10223          switch.  */
10224
10225       switch (GET_CODE (op0))
10226         {
10227         case ZERO_EXTRACT:
10228           /* If we are extracting a single bit from a variable position in
10229              a constant that has only a single bit set and are comparing it
10230              with zero, we can convert this into an equality comparison
10231              between the position and the location of the single bit.  */
10232
10233           if (GET_CODE (XEXP (op0, 0)) == CONST_INT
10234               && XEXP (op0, 1) == const1_rtx
10235               && equality_comparison_p && const_op == 0
10236               && (i = exact_log2 (INTVAL (XEXP (op0, 0)))) >= 0)
10237             {
10238               if (BITS_BIG_ENDIAN)
10239                 {
10240 #ifdef HAVE_extzv
10241                   mode = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
10242                   if (mode == VOIDmode)
10243                     mode = word_mode;
10244                   i = (GET_MODE_BITSIZE (mode) - 1 - i);
10245 #else
10246                   i = BITS_PER_WORD - 1 - i;
10247 #endif
10248                 }
10249
10250               op0 = XEXP (op0, 2);
10251               op1 = GEN_INT (i);
10252               const_op = i;
10253
10254               /* Result is nonzero iff shift count is equal to I.  */
10255               code = reverse_condition (code);
10256               continue;
10257             }
10258
10259           /* ... fall through ...  */
10260
10261         case SIGN_EXTRACT:
10262           tem = expand_compound_operation (op0);
10263           if (tem != op0)
10264             {
10265               op0 = tem;
10266               continue;
10267             }
10268           break;
10269
10270         case NOT:
10271           /* If testing for equality, we can take the NOT of the constant.  */
10272           if (equality_comparison_p
10273               && (tem = simplify_unary_operation (NOT, mode, op1, mode)) != 0)
10274             {
10275               op0 = XEXP (op0, 0);
10276               op1 = tem;
10277               continue;
10278             }
10279
10280           /* If just looking at the sign bit, reverse the sense of the
10281              comparison.  */
10282           if (sign_bit_comparison_p)
10283             {
10284               op0 = XEXP (op0, 0);
10285               code = (code == GE ? LT : GE);
10286               continue;
10287             }
10288           break;
10289
10290         case NEG:
10291           /* If testing for equality, we can take the NEG of the constant.  */
10292           if (equality_comparison_p
10293               && (tem = simplify_unary_operation (NEG, mode, op1, mode)) != 0)
10294             {
10295               op0 = XEXP (op0, 0);
10296               op1 = tem;
10297               continue;
10298             }
10299
10300           /* The remaining cases only apply to comparisons with zero.  */
10301           if (const_op != 0)
10302             break;
10303
10304           /* When X is ABS or is known positive,
10305              (neg X) is < 0 if and only if X != 0.  */
10306
10307           if (sign_bit_comparison_p
10308               && (GET_CODE (XEXP (op0, 0)) == ABS
10309                   || (mode_width <= HOST_BITS_PER_WIDE_INT
10310                       && (nonzero_bits (XEXP (op0, 0), mode)
10311                           & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)))
10312             {
10313               op0 = XEXP (op0, 0);
10314               code = (code == LT ? NE : EQ);
10315               continue;
10316             }
10317
10318           /* If we have NEG of something whose two high-order bits are the
10319              same, we know that "(-a) < 0" is equivalent to "a > 0".  */
10320           if (num_sign_bit_copies (op0, mode) >= 2)
10321             {
10322               op0 = XEXP (op0, 0);
10323               code = swap_condition (code);
10324               continue;
10325             }
10326           break;
10327
10328         case ROTATE:
10329           /* If we are testing equality and our count is a constant, we
10330              can perform the inverse operation on our RHS.  */
10331           if (equality_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10332               && (tem = simplify_binary_operation (ROTATERT, mode,
10333                                                    op1, XEXP (op0, 1))) != 0)
10334             {
10335               op0 = XEXP (op0, 0);
10336               op1 = tem;
10337               continue;
10338             }
10339
10340           /* If we are doing a < 0 or >= 0 comparison, it means we are testing
10341              a particular bit.  Convert it to an AND of a constant of that
10342              bit.  This will be converted into a ZERO_EXTRACT.  */
10343           if (const_op == 0 && sign_bit_comparison_p
10344               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10345               && mode_width <= HOST_BITS_PER_WIDE_INT)
10346             {
10347               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10348                                             ((HOST_WIDE_INT) 1
10349                                              << (mode_width - 1
10350                                                  - INTVAL (XEXP (op0, 1)))));
10351               code = (code == LT ? NE : EQ);
10352               continue;
10353             }
10354
10355           /* Fall through.  */
10356
10357         case ABS:
10358           /* ABS is ignorable inside an equality comparison with zero.  */
10359           if (const_op == 0 && equality_comparison_p)
10360             {
10361               op0 = XEXP (op0, 0);
10362               continue;
10363             }
10364           break;
10365
10366         case SIGN_EXTEND:
10367           /* Can simplify (compare (zero/sign_extend FOO) CONST)
10368              to (compare FOO CONST) if CONST fits in FOO's mode and we
10369              are either testing inequality or have an unsigned comparison
10370              with ZERO_EXTEND or a signed comparison with SIGN_EXTEND.  */
10371           if (! unsigned_comparison_p
10372               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10373                   <= HOST_BITS_PER_WIDE_INT)
10374               && ((unsigned HOST_WIDE_INT) const_op
10375                   < (((unsigned HOST_WIDE_INT) 1
10376                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0))) - 1)))))
10377             {
10378               op0 = XEXP (op0, 0);
10379               continue;
10380             }
10381           break;
10382
10383         case SUBREG:
10384           /* Check for the case where we are comparing A - C1 with C2,
10385              both constants are smaller than 1/2 the maximum positive
10386              value in MODE, and the comparison is equality or unsigned.
10387              In that case, if A is either zero-extended to MODE or has
10388              sufficient sign bits so that the high-order bit in MODE
10389              is a copy of the sign in the inner mode, we can prove that it is
10390              safe to do the operation in the wider mode.  This simplifies
10391              many range checks.  */
10392
10393           if (mode_width <= HOST_BITS_PER_WIDE_INT
10394               && subreg_lowpart_p (op0)
10395               && GET_CODE (SUBREG_REG (op0)) == PLUS
10396               && GET_CODE (XEXP (SUBREG_REG (op0), 1)) == CONST_INT
10397               && INTVAL (XEXP (SUBREG_REG (op0), 1)) < 0
10398               && (-INTVAL (XEXP (SUBREG_REG (op0), 1))
10399                   < (HOST_WIDE_INT) (GET_MODE_MASK (mode) / 2))
10400               && (unsigned HOST_WIDE_INT) const_op < GET_MODE_MASK (mode) / 2
10401               && (0 == (nonzero_bits (XEXP (SUBREG_REG (op0), 0),
10402                                       GET_MODE (SUBREG_REG (op0)))
10403                         & ~GET_MODE_MASK (mode))
10404                   || (num_sign_bit_copies (XEXP (SUBREG_REG (op0), 0),
10405                                            GET_MODE (SUBREG_REG (op0)))
10406                       > (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10407                          - GET_MODE_BITSIZE (mode)))))
10408             {
10409               op0 = SUBREG_REG (op0);
10410               continue;
10411             }
10412
10413           /* If the inner mode is narrower and we are extracting the low part,
10414              we can treat the SUBREG as if it were a ZERO_EXTEND.  */
10415           if (subreg_lowpart_p (op0)
10416               && GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0))) < mode_width)
10417             /* Fall through */ ;
10418           else
10419             break;
10420
10421           /* ... fall through ...  */
10422
10423         case ZERO_EXTEND:
10424           if ((unsigned_comparison_p || equality_comparison_p)
10425               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10426                   <= HOST_BITS_PER_WIDE_INT)
10427               && ((unsigned HOST_WIDE_INT) const_op
10428                   < GET_MODE_MASK (GET_MODE (XEXP (op0, 0)))))
10429             {
10430               op0 = XEXP (op0, 0);
10431               continue;
10432             }
10433           break;
10434
10435         case PLUS:
10436           /* (eq (plus X A) B) -> (eq X (minus B A)).  We can only do
10437              this for equality comparisons due to pathological cases involving
10438              overflows.  */
10439           if (equality_comparison_p
10440               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10441                                                         op1, XEXP (op0, 1))))
10442             {
10443               op0 = XEXP (op0, 0);
10444               op1 = tem;
10445               continue;
10446             }
10447
10448           /* (plus (abs X) (const_int -1)) is < 0 if and only if X == 0.  */
10449           if (const_op == 0 && XEXP (op0, 1) == constm1_rtx
10450               && GET_CODE (XEXP (op0, 0)) == ABS && sign_bit_comparison_p)
10451             {
10452               op0 = XEXP (XEXP (op0, 0), 0);
10453               code = (code == LT ? EQ : NE);
10454               continue;
10455             }
10456           break;
10457
10458         case MINUS:
10459           /* We used to optimize signed comparisons against zero, but that
10460              was incorrect.  Unsigned comparisons against zero (GTU, LEU)
10461              arrive here as equality comparisons, or (GEU, LTU) are
10462              optimized away.  No need to special-case them.  */
10463
10464           /* (eq (minus A B) C) -> (eq A (plus B C)) or
10465              (eq B (minus A C)), whichever simplifies.  We can only do
10466              this for equality comparisons due to pathological cases involving
10467              overflows.  */
10468           if (equality_comparison_p
10469               && 0 != (tem = simplify_binary_operation (PLUS, mode,
10470                                                         XEXP (op0, 1), op1)))
10471             {
10472               op0 = XEXP (op0, 0);
10473               op1 = tem;
10474               continue;
10475             }
10476
10477           if (equality_comparison_p
10478               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10479                                                         XEXP (op0, 0), op1)))
10480             {
10481               op0 = XEXP (op0, 1);
10482               op1 = tem;
10483               continue;
10484             }
10485
10486           /* The sign bit of (minus (ashiftrt X C) X), where C is the number
10487              of bits in X minus 1, is one iff X > 0.  */
10488           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == ASHIFTRT
10489               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10490               && INTVAL (XEXP (XEXP (op0, 0), 1)) == mode_width - 1
10491               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10492             {
10493               op0 = XEXP (op0, 1);
10494               code = (code == GE ? LE : GT);
10495               continue;
10496             }
10497           break;
10498
10499         case XOR:
10500           /* (eq (xor A B) C) -> (eq A (xor B C)).  This is a simplification
10501              if C is zero or B is a constant.  */
10502           if (equality_comparison_p
10503               && 0 != (tem = simplify_binary_operation (XOR, mode,
10504                                                         XEXP (op0, 1), op1)))
10505             {
10506               op0 = XEXP (op0, 0);
10507               op1 = tem;
10508               continue;
10509             }
10510           break;
10511
10512         case EQ:  case NE:
10513         case UNEQ:  case LTGT:
10514         case LT:  case LTU:  case UNLT:  case LE:  case LEU:  case UNLE:
10515         case GT:  case GTU:  case UNGT:  case GE:  case GEU:  case UNGE:
10516         case UNORDERED: case ORDERED:
10517           /* We can't do anything if OP0 is a condition code value, rather
10518              than an actual data value.  */
10519           if (const_op != 0
10520 #ifdef HAVE_cc0
10521               || XEXP (op0, 0) == cc0_rtx
10522 #endif
10523               || GET_MODE_CLASS (GET_MODE (XEXP (op0, 0))) == MODE_CC)
10524             break;
10525
10526           /* Get the two operands being compared.  */
10527           if (GET_CODE (XEXP (op0, 0)) == COMPARE)
10528             tem = XEXP (XEXP (op0, 0), 0), tem1 = XEXP (XEXP (op0, 0), 1);
10529           else
10530             tem = XEXP (op0, 0), tem1 = XEXP (op0, 1);
10531
10532           /* Check for the cases where we simply want the result of the
10533              earlier test or the opposite of that result.  */
10534           if (code == NE || code == EQ
10535               || (GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
10536                   && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10537                   && (STORE_FLAG_VALUE
10538                       & (((HOST_WIDE_INT) 1
10539                           << (GET_MODE_BITSIZE (GET_MODE (op0)) - 1))))
10540                   && (code == LT || code == GE)))
10541             {
10542               enum rtx_code new_code;
10543               if (code == LT || code == NE)
10544                 new_code = GET_CODE (op0);
10545               else
10546                 new_code = combine_reversed_comparison_code (op0);
10547           
10548               if (new_code != UNKNOWN)
10549                 {
10550                   code = new_code;
10551                   op0 = tem;
10552                   op1 = tem1;
10553                   continue;
10554                 }
10555             }
10556           break;
10557
10558         case IOR:
10559           /* The sign bit of (ior (plus X (const_int -1)) X) is non-zero
10560              iff X <= 0.  */
10561           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == PLUS
10562               && XEXP (XEXP (op0, 0), 1) == constm1_rtx
10563               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10564             {
10565               op0 = XEXP (op0, 1);
10566               code = (code == GE ? GT : LE);
10567               continue;
10568             }
10569           break;
10570
10571         case AND:
10572           /* Convert (and (xshift 1 X) Y) to (and (lshiftrt Y X) 1).  This
10573              will be converted to a ZERO_EXTRACT later.  */
10574           if (const_op == 0 && equality_comparison_p
10575               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10576               && XEXP (XEXP (op0, 0), 0) == const1_rtx)
10577             {
10578               op0 = simplify_and_const_int
10579                 (op0, mode, gen_rtx_LSHIFTRT (mode,
10580                                               XEXP (op0, 1),
10581                                               XEXP (XEXP (op0, 0), 1)),
10582                  (HOST_WIDE_INT) 1);
10583               continue;
10584             }
10585
10586           /* If we are comparing (and (lshiftrt X C1) C2) for equality with
10587              zero and X is a comparison and C1 and C2 describe only bits set
10588              in STORE_FLAG_VALUE, we can compare with X.  */
10589           if (const_op == 0 && equality_comparison_p
10590               && mode_width <= HOST_BITS_PER_WIDE_INT
10591               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10592               && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
10593               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10594               && INTVAL (XEXP (XEXP (op0, 0), 1)) >= 0
10595               && INTVAL (XEXP (XEXP (op0, 0), 1)) < HOST_BITS_PER_WIDE_INT)
10596             {
10597               mask = ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10598                       << INTVAL (XEXP (XEXP (op0, 0), 1)));
10599               if ((~STORE_FLAG_VALUE & mask) == 0
10600                   && (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (op0, 0), 0))) == '<'
10601                       || ((tem = get_last_value (XEXP (XEXP (op0, 0), 0))) != 0
10602                           && GET_RTX_CLASS (GET_CODE (tem)) == '<')))
10603                 {
10604                   op0 = XEXP (XEXP (op0, 0), 0);
10605                   continue;
10606                 }
10607             }
10608
10609           /* If we are doing an equality comparison of an AND of a bit equal
10610              to the sign bit, replace this with a LT or GE comparison of
10611              the underlying value.  */
10612           if (equality_comparison_p
10613               && const_op == 0
10614               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10615               && mode_width <= HOST_BITS_PER_WIDE_INT
10616               && ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10617                   == (unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
10618             {
10619               op0 = XEXP (op0, 0);
10620               code = (code == EQ ? GE : LT);
10621               continue;
10622             }
10623
10624           /* If this AND operation is really a ZERO_EXTEND from a narrower
10625              mode, the constant fits within that mode, and this is either an
10626              equality or unsigned comparison, try to do this comparison in
10627              the narrower mode.  */
10628           if ((equality_comparison_p || unsigned_comparison_p)
10629               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10630               && (i = exact_log2 ((INTVAL (XEXP (op0, 1))
10631                                    & GET_MODE_MASK (mode))
10632                                   + 1)) >= 0
10633               && const_op >> i == 0
10634               && (tmode = mode_for_size (i, MODE_INT, 1)) != BLKmode)
10635             {
10636               op0 = gen_lowpart_for_combine (tmode, XEXP (op0, 0));
10637               continue;
10638             }
10639
10640           /* If this is (and:M1 (subreg:M2 X 0) (const_int C1)) where C1 fits
10641              in both M1 and M2 and the SUBREG is either paradoxical or
10642              represents the low part, permute the SUBREG and the AND and
10643              try again.  */
10644           if (GET_CODE (XEXP (op0, 0)) == SUBREG
10645               && (0
10646 #ifdef WORD_REGISTER_OPERATIONS
10647                   || ((mode_width
10648                        > (GET_MODE_BITSIZE
10649                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10650                       && mode_width <= BITS_PER_WORD)
10651 #endif
10652                   || ((mode_width
10653                        <= (GET_MODE_BITSIZE
10654                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10655                       && subreg_lowpart_p (XEXP (op0, 0))))
10656 #ifndef WORD_REGISTER_OPERATIONS
10657               /* It is unsafe to commute the AND into the SUBREG if the SUBREG
10658                  is paradoxical and WORD_REGISTER_OPERATIONS is not defined.
10659                  As originally written the upper bits have a defined value
10660                  due to the AND operation.  However, if we commute the AND
10661                  inside the SUBREG then they no longer have defined values
10662                  and the meaning of the code has been changed.  */
10663               && (GET_MODE_SIZE (GET_MODE (XEXP (op0, 0)))
10664                   <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0)))))
10665 #endif
10666               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10667               && mode_width <= HOST_BITS_PER_WIDE_INT
10668               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10669                   <= HOST_BITS_PER_WIDE_INT)
10670               && (INTVAL (XEXP (op0, 1)) & ~mask) == 0
10671               && 0 == (~GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10672                        & INTVAL (XEXP (op0, 1)))
10673               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1)) != mask
10674               && ((unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1))
10675                   != GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10676
10677             {
10678               op0
10679                 = gen_lowpart_for_combine
10680                   (mode,
10681                    gen_binary (AND, GET_MODE (SUBREG_REG (XEXP (op0, 0))),
10682                                SUBREG_REG (XEXP (op0, 0)), XEXP (op0, 1)));
10683               continue;
10684             }
10685
10686           /* Convert (ne (and (lshiftrt (not X)) 1) 0) to
10687              (eq (and (lshiftrt X) 1) 0).  */
10688           if (const_op == 0 && equality_comparison_p
10689               && XEXP (op0, 1) == const1_rtx
10690               && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
10691               && GET_CODE (XEXP (XEXP (op0, 0), 0)) == NOT)
10692             {
10693               op0 = simplify_and_const_int
10694                 (op0, mode,
10695                  gen_rtx_LSHIFTRT (mode, XEXP (XEXP (XEXP (op0, 0), 0), 0),
10696                                    XEXP (XEXP (op0, 0), 1)),
10697                  (HOST_WIDE_INT) 1);
10698               code = (code == NE ? EQ : NE);
10699               continue;
10700             }
10701           break;
10702
10703         case ASHIFT:
10704           /* If we have (compare (ashift FOO N) (const_int C)) and
10705              the high order N bits of FOO (N+1 if an inequality comparison)
10706              are known to be zero, we can do this by comparing FOO with C
10707              shifted right N bits so long as the low-order N bits of C are
10708              zero.  */
10709           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10710               && INTVAL (XEXP (op0, 1)) >= 0
10711               && ((INTVAL (XEXP (op0, 1)) + ! equality_comparison_p)
10712                   < HOST_BITS_PER_WIDE_INT)
10713               && ((const_op
10714                    & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0)
10715               && mode_width <= HOST_BITS_PER_WIDE_INT
10716               && (nonzero_bits (XEXP (op0, 0), mode)
10717                   & ~(mask >> (INTVAL (XEXP (op0, 1))
10718                                + ! equality_comparison_p))) == 0)
10719             {
10720               /* We must perform a logical shift, not an arithmetic one,
10721                  as we want the top N bits of C to be zero.  */
10722               unsigned HOST_WIDE_INT temp = const_op & GET_MODE_MASK (mode);
10723
10724               temp >>= INTVAL (XEXP (op0, 1));
10725               op1 = GEN_INT (trunc_int_for_mode (temp, mode));
10726               op0 = XEXP (op0, 0);
10727               continue;
10728             }
10729
10730           /* If we are doing a sign bit comparison, it means we are testing
10731              a particular bit.  Convert it to the appropriate AND.  */
10732           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10733               && mode_width <= HOST_BITS_PER_WIDE_INT)
10734             {
10735               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10736                                             ((HOST_WIDE_INT) 1
10737                                              << (mode_width - 1
10738                                                  - INTVAL (XEXP (op0, 1)))));
10739               code = (code == LT ? NE : EQ);
10740               continue;
10741             }
10742
10743           /* If this an equality comparison with zero and we are shifting
10744              the low bit to the sign bit, we can convert this to an AND of the
10745              low-order bit.  */
10746           if (const_op == 0 && equality_comparison_p
10747               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10748               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10749             {
10750               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10751                                             (HOST_WIDE_INT) 1);
10752               continue;
10753             }
10754           break;
10755
10756         case ASHIFTRT:
10757           /* If this is an equality comparison with zero, we can do this
10758              as a logical shift, which might be much simpler.  */
10759           if (equality_comparison_p && const_op == 0
10760               && GET_CODE (XEXP (op0, 1)) == CONST_INT)
10761             {
10762               op0 = simplify_shift_const (NULL_RTX, LSHIFTRT, mode,
10763                                           XEXP (op0, 0),
10764                                           INTVAL (XEXP (op0, 1)));
10765               continue;
10766             }
10767
10768           /* If OP0 is a sign extension and CODE is not an unsigned comparison,
10769              do the comparison in a narrower mode.  */
10770           if (! unsigned_comparison_p
10771               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10772               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10773               && XEXP (op0, 1) == XEXP (XEXP (op0, 0), 1)
10774               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10775                                          MODE_INT, 1)) != BLKmode
10776               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10777                   || ((unsigned HOST_WIDE_INT) -const_op
10778                       <= GET_MODE_MASK (tmode))))
10779             {
10780               op0 = gen_lowpart_for_combine (tmode, XEXP (XEXP (op0, 0), 0));
10781               continue;
10782             }
10783
10784           /* Likewise if OP0 is a PLUS of a sign extension with a
10785              constant, which is usually represented with the PLUS
10786              between the shifts.  */
10787           if (! unsigned_comparison_p
10788               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10789               && GET_CODE (XEXP (op0, 0)) == PLUS
10790               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10791               && GET_CODE (XEXP (XEXP (op0, 0), 0)) == ASHIFT
10792               && XEXP (op0, 1) == XEXP (XEXP (XEXP (op0, 0), 0), 1)
10793               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10794                                          MODE_INT, 1)) != BLKmode
10795               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10796                   || ((unsigned HOST_WIDE_INT) -const_op
10797                       <= GET_MODE_MASK (tmode))))
10798             {
10799               rtx inner = XEXP (XEXP (XEXP (op0, 0), 0), 0);
10800               rtx add_const = XEXP (XEXP (op0, 0), 1);
10801               rtx new_const = gen_binary (ASHIFTRT, GET_MODE (op0), add_const,
10802                                           XEXP (op0, 1));
10803
10804               op0 = gen_binary (PLUS, tmode,
10805                                 gen_lowpart_for_combine (tmode, inner),
10806                                 new_const);
10807               continue;
10808             }
10809
10810           /* ... fall through ...  */
10811         case LSHIFTRT:
10812           /* If we have (compare (xshiftrt FOO N) (const_int C)) and
10813              the low order N bits of FOO are known to be zero, we can do this
10814              by comparing FOO with C shifted left N bits so long as no
10815              overflow occurs.  */
10816           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10817               && INTVAL (XEXP (op0, 1)) >= 0
10818               && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
10819               && mode_width <= HOST_BITS_PER_WIDE_INT
10820               && (nonzero_bits (XEXP (op0, 0), mode)
10821                   & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0
10822               && (const_op == 0
10823                   || (floor_log2 (const_op) + INTVAL (XEXP (op0, 1))
10824                       < mode_width)))
10825             {
10826               const_op <<= INTVAL (XEXP (op0, 1));
10827               op1 = GEN_INT (const_op);
10828               op0 = XEXP (op0, 0);
10829               continue;
10830             }
10831
10832           /* If we are using this shift to extract just the sign bit, we
10833              can replace this with an LT or GE comparison.  */
10834           if (const_op == 0
10835               && (equality_comparison_p || sign_bit_comparison_p)
10836               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10837               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10838             {
10839               op0 = XEXP (op0, 0);
10840               code = (code == NE || code == GT ? LT : GE);
10841               continue;
10842             }
10843           break;
10844
10845         default:
10846           break;
10847         }
10848
10849       break;
10850     }
10851
10852   /* Now make any compound operations involved in this comparison.  Then,
10853      check for an outmost SUBREG on OP0 that is not doing anything or is
10854      paradoxical.  The latter case can only occur when it is known that the
10855      "extra" bits will be zero.  Therefore, it is safe to remove the SUBREG.
10856      We can never remove a SUBREG for a non-equality comparison because the
10857      sign bit is in a different place in the underlying object.  */
10858
10859   op0 = make_compound_operation (op0, op1 == const0_rtx ? COMPARE : SET);
10860   op1 = make_compound_operation (op1, SET);
10861
10862   if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10863       && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10864       && (code == NE || code == EQ)
10865       && ((GET_MODE_SIZE (GET_MODE (op0))
10866            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0))))))
10867     {
10868       op0 = SUBREG_REG (op0);
10869       op1 = gen_lowpart_for_combine (GET_MODE (op0), op1);
10870     }
10871
10872   else if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10873            && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10874            && (code == NE || code == EQ)
10875            && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10876                <= HOST_BITS_PER_WIDE_INT)
10877            && (nonzero_bits (SUBREG_REG (op0), GET_MODE (SUBREG_REG (op0)))
10878                & ~GET_MODE_MASK (GET_MODE (op0))) == 0
10879            && (tem = gen_lowpart_for_combine (GET_MODE (SUBREG_REG (op0)),
10880                                               op1),
10881                (nonzero_bits (tem, GET_MODE (SUBREG_REG (op0)))
10882                 & ~GET_MODE_MASK (GET_MODE (op0))) == 0))
10883     op0 = SUBREG_REG (op0), op1 = tem;
10884
10885   /* We now do the opposite procedure: Some machines don't have compare
10886      insns in all modes.  If OP0's mode is an integer mode smaller than a
10887      word and we can't do a compare in that mode, see if there is a larger
10888      mode for which we can do the compare.  There are a number of cases in
10889      which we can use the wider mode.  */
10890
10891   mode = GET_MODE (op0);
10892   if (mode != VOIDmode && GET_MODE_CLASS (mode) == MODE_INT
10893       && GET_MODE_SIZE (mode) < UNITS_PER_WORD
10894       && cmp_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing)
10895     for (tmode = GET_MODE_WIDER_MODE (mode);
10896          (tmode != VOIDmode
10897           && GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT);
10898          tmode = GET_MODE_WIDER_MODE (tmode))
10899       if (cmp_optab->handlers[(int) tmode].insn_code != CODE_FOR_nothing)
10900         {
10901           /* If the only nonzero bits in OP0 and OP1 are those in the
10902              narrower mode and this is an equality or unsigned comparison,
10903              we can use the wider mode.  Similarly for sign-extended
10904              values, in which case it is true for all comparisons.  */
10905           if (((code == EQ || code == NE
10906                 || code == GEU || code == GTU || code == LEU || code == LTU)
10907                && (nonzero_bits (op0, tmode) & ~GET_MODE_MASK (mode)) == 0
10908                && (nonzero_bits (op1, tmode) & ~GET_MODE_MASK (mode)) == 0)
10909               || ((num_sign_bit_copies (op0, tmode)
10910                    > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))
10911                   && (num_sign_bit_copies (op1, tmode)
10912                       > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))))
10913             {
10914               /* If OP0 is an AND and we don't have an AND in MODE either,
10915                  make a new AND in the proper mode.  */
10916               if (GET_CODE (op0) == AND
10917                   && (add_optab->handlers[(int) mode].insn_code
10918                       == CODE_FOR_nothing))
10919                 op0 = gen_binary (AND, tmode,
10920                                   gen_lowpart_for_combine (tmode,
10921                                                            XEXP (op0, 0)),
10922                                   gen_lowpart_for_combine (tmode,
10923                                                            XEXP (op0, 1)));
10924
10925               op0 = gen_lowpart_for_combine (tmode, op0);
10926               op1 = gen_lowpart_for_combine (tmode, op1);
10927               break;
10928             }
10929
10930           /* If this is a test for negative, we can make an explicit
10931              test of the sign bit.  */
10932
10933           if (op1 == const0_rtx && (code == LT || code == GE)
10934               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10935             {
10936               op0 = gen_binary (AND, tmode,
10937                                 gen_lowpart_for_combine (tmode, op0),
10938                                 GEN_INT ((HOST_WIDE_INT) 1
10939                                          << (GET_MODE_BITSIZE (mode) - 1)));
10940               code = (code == LT) ? NE : EQ;
10941               break;
10942             }
10943         }
10944
10945 #ifdef CANONICALIZE_COMPARISON
10946   /* If this machine only supports a subset of valid comparisons, see if we
10947      can convert an unsupported one into a supported one.  */
10948   CANONICALIZE_COMPARISON (code, op0, op1);
10949 #endif
10950
10951   *pop0 = op0;
10952   *pop1 = op1;
10953
10954   return code;
10955 }
10956 \f
10957 /* Like jump.c' reversed_comparison_code, but use combine infrastructure for
10958    searching backward.  */
10959 static enum rtx_code
10960 combine_reversed_comparison_code (exp)
10961      rtx exp;
10962 {
10963    enum rtx_code code1 = reversed_comparison_code (exp, NULL);
10964    rtx x;
10965
10966    if (code1 != UNKNOWN
10967        || GET_MODE_CLASS (GET_MODE (XEXP (exp, 0))) != MODE_CC)
10968      return code1;
10969    /* Otherwise try and find where the condition codes were last set and
10970       use that.  */
10971    x = get_last_value (XEXP (exp, 0));
10972    if (!x || GET_CODE (x) != COMPARE)
10973      return UNKNOWN;
10974    return reversed_comparison_code_parts (GET_CODE (exp),
10975                                           XEXP (x, 0), XEXP (x, 1), NULL);
10976 }
10977 /* Return comparison with reversed code of EXP and operands OP0 and OP1.
10978    Return NULL_RTX in case we fail to do the reversal.  */
10979 static rtx
10980 reversed_comparison (exp, mode, op0, op1)
10981      rtx exp, op0, op1;
10982      enum machine_mode mode;
10983 {
10984   enum rtx_code reversed_code = combine_reversed_comparison_code (exp);
10985   if (reversed_code == UNKNOWN)
10986     return NULL_RTX;
10987   else
10988     return gen_binary (reversed_code, mode, op0, op1);
10989 }
10990 \f
10991 /* Utility function for following routine.  Called when X is part of a value
10992    being stored into reg_last_set_value.  Sets reg_last_set_table_tick
10993    for each register mentioned.  Similar to mention_regs in cse.c  */
10994
10995 static void
10996 update_table_tick (x)
10997      rtx x;
10998 {
10999   register enum rtx_code code = GET_CODE (x);
11000   register const char *fmt = GET_RTX_FORMAT (code);
11001   register int i;
11002
11003   if (code == REG)
11004     {
11005       unsigned int regno = REGNO (x);
11006       unsigned int endregno
11007         = regno + (regno < FIRST_PSEUDO_REGISTER
11008                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11009       unsigned int r;
11010
11011       for (r = regno; r < endregno; r++)
11012         reg_last_set_table_tick[r] = label_tick;
11013
11014       return;
11015     }
11016
11017   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11018     /* Note that we can't have an "E" in values stored; see
11019        get_last_value_validate.  */
11020     if (fmt[i] == 'e')
11021       update_table_tick (XEXP (x, i));
11022 }
11023
11024 /* Record that REG is set to VALUE in insn INSN.  If VALUE is zero, we
11025    are saying that the register is clobbered and we no longer know its
11026    value.  If INSN is zero, don't update reg_last_set; this is only permitted
11027    with VALUE also zero and is used to invalidate the register.  */
11028
11029 static void
11030 record_value_for_reg (reg, insn, value)
11031      rtx reg;
11032      rtx insn;
11033      rtx value;
11034 {
11035   unsigned int regno = REGNO (reg);
11036   unsigned int endregno
11037     = regno + (regno < FIRST_PSEUDO_REGISTER
11038                ? HARD_REGNO_NREGS (regno, GET_MODE (reg)) : 1);
11039   unsigned int i;
11040
11041   /* If VALUE contains REG and we have a previous value for REG, substitute
11042      the previous value.  */
11043   if (value && insn && reg_overlap_mentioned_p (reg, value))
11044     {
11045       rtx tem;
11046
11047       /* Set things up so get_last_value is allowed to see anything set up to
11048          our insn.  */
11049       subst_low_cuid = INSN_CUID (insn);
11050       tem = get_last_value (reg);
11051
11052       /* If TEM is simply a binary operation with two CLOBBERs as operands,
11053          it isn't going to be useful and will take a lot of time to process,
11054          so just use the CLOBBER.  */
11055
11056       if (tem)
11057         {
11058           if ((GET_RTX_CLASS (GET_CODE (tem)) == '2'
11059                || GET_RTX_CLASS (GET_CODE (tem)) == 'c')
11060               && GET_CODE (XEXP (tem, 0)) == CLOBBER
11061               && GET_CODE (XEXP (tem, 1)) == CLOBBER)
11062             tem = XEXP (tem, 0);
11063
11064           value = replace_rtx (copy_rtx (value), reg, tem);
11065         }
11066     }
11067
11068   /* For each register modified, show we don't know its value, that
11069      we don't know about its bitwise content, that its value has been
11070      updated, and that we don't know the location of the death of the
11071      register.  */
11072   for (i = regno; i < endregno; i++)
11073     {
11074       if (insn)
11075         reg_last_set[i] = insn;
11076
11077       reg_last_set_value[i] = 0;
11078       reg_last_set_mode[i] = 0;
11079       reg_last_set_nonzero_bits[i] = 0;
11080       reg_last_set_sign_bit_copies[i] = 0;
11081       reg_last_death[i] = 0;
11082     }
11083
11084   /* Mark registers that are being referenced in this value.  */
11085   if (value)
11086     update_table_tick (value);
11087
11088   /* Now update the status of each register being set.
11089      If someone is using this register in this block, set this register
11090      to invalid since we will get confused between the two lives in this
11091      basic block.  This makes using this register always invalid.  In cse, we
11092      scan the table to invalidate all entries using this register, but this
11093      is too much work for us.  */
11094
11095   for (i = regno; i < endregno; i++)
11096     {
11097       reg_last_set_label[i] = label_tick;
11098       if (value && reg_last_set_table_tick[i] == label_tick)
11099         reg_last_set_invalid[i] = 1;
11100       else
11101         reg_last_set_invalid[i] = 0;
11102     }
11103
11104   /* The value being assigned might refer to X (like in "x++;").  In that
11105      case, we must replace it with (clobber (const_int 0)) to prevent
11106      infinite loops.  */
11107   if (value && ! get_last_value_validate (&value, insn,
11108                                           reg_last_set_label[regno], 0))
11109     {
11110       value = copy_rtx (value);
11111       if (! get_last_value_validate (&value, insn,
11112                                      reg_last_set_label[regno], 1))
11113         value = 0;
11114     }
11115
11116   /* For the main register being modified, update the value, the mode, the
11117      nonzero bits, and the number of sign bit copies.  */
11118
11119   reg_last_set_value[regno] = value;
11120
11121   if (value)
11122     {
11123       subst_low_cuid = INSN_CUID (insn);
11124       reg_last_set_mode[regno] = GET_MODE (reg);
11125       reg_last_set_nonzero_bits[regno] = nonzero_bits (value, GET_MODE (reg));
11126       reg_last_set_sign_bit_copies[regno]
11127         = num_sign_bit_copies (value, GET_MODE (reg));
11128     }
11129 }
11130
11131 /* Called via note_stores from record_dead_and_set_regs to handle one
11132    SET or CLOBBER in an insn.  DATA is the instruction in which the
11133    set is occurring.  */
11134
11135 static void
11136 record_dead_and_set_regs_1 (dest, setter, data)
11137      rtx dest, setter;
11138      void *data;
11139 {
11140   rtx record_dead_insn = (rtx) data;
11141
11142   if (GET_CODE (dest) == SUBREG)
11143     dest = SUBREG_REG (dest);
11144
11145   if (GET_CODE (dest) == REG)
11146     {
11147       /* If we are setting the whole register, we know its value.  Otherwise
11148          show that we don't know the value.  We can handle SUBREG in
11149          some cases.  */
11150       if (GET_CODE (setter) == SET && dest == SET_DEST (setter))
11151         record_value_for_reg (dest, record_dead_insn, SET_SRC (setter));
11152       else if (GET_CODE (setter) == SET
11153                && GET_CODE (SET_DEST (setter)) == SUBREG
11154                && SUBREG_REG (SET_DEST (setter)) == dest
11155                && GET_MODE_BITSIZE (GET_MODE (dest)) <= BITS_PER_WORD
11156                && subreg_lowpart_p (SET_DEST (setter)))
11157         record_value_for_reg (dest, record_dead_insn,
11158                               gen_lowpart_for_combine (GET_MODE (dest),
11159                                                        SET_SRC (setter)));
11160       else
11161         record_value_for_reg (dest, record_dead_insn, NULL_RTX);
11162     }
11163   else if (GET_CODE (dest) == MEM
11164            /* Ignore pushes, they clobber nothing.  */
11165            && ! push_operand (dest, GET_MODE (dest)))
11166     mem_last_set = INSN_CUID (record_dead_insn);
11167 }
11168
11169 /* Update the records of when each REG was most recently set or killed
11170    for the things done by INSN.  This is the last thing done in processing
11171    INSN in the combiner loop.
11172
11173    We update reg_last_set, reg_last_set_value, reg_last_set_mode,
11174    reg_last_set_nonzero_bits, reg_last_set_sign_bit_copies, reg_last_death,
11175    and also the similar information mem_last_set (which insn most recently
11176    modified memory) and last_call_cuid (which insn was the most recent
11177    subroutine call).  */
11178
11179 static void
11180 record_dead_and_set_regs (insn)
11181      rtx insn;
11182 {
11183   register rtx link;
11184   unsigned int i;
11185
11186   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
11187     {
11188       if (REG_NOTE_KIND (link) == REG_DEAD
11189           && GET_CODE (XEXP (link, 0)) == REG)
11190         {
11191           unsigned int regno = REGNO (XEXP (link, 0));
11192           unsigned int endregno
11193             = regno + (regno < FIRST_PSEUDO_REGISTER
11194                        ? HARD_REGNO_NREGS (regno, GET_MODE (XEXP (link, 0)))
11195                        : 1);
11196
11197           for (i = regno; i < endregno; i++)
11198             reg_last_death[i] = insn;
11199         }
11200       else if (REG_NOTE_KIND (link) == REG_INC)
11201         record_value_for_reg (XEXP (link, 0), insn, NULL_RTX);
11202     }
11203
11204   if (GET_CODE (insn) == CALL_INSN)
11205     {
11206       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
11207         if (call_used_regs[i])
11208           {
11209             reg_last_set_value[i] = 0;
11210             reg_last_set_mode[i] = 0;
11211             reg_last_set_nonzero_bits[i] = 0;
11212             reg_last_set_sign_bit_copies[i] = 0;
11213             reg_last_death[i] = 0;
11214           }
11215
11216       last_call_cuid = mem_last_set = INSN_CUID (insn);
11217     }
11218
11219   note_stores (PATTERN (insn), record_dead_and_set_regs_1, insn);
11220 }
11221
11222 /* If a SUBREG has the promoted bit set, it is in fact a property of the
11223    register present in the SUBREG, so for each such SUBREG go back and
11224    adjust nonzero and sign bit information of the registers that are
11225    known to have some zero/sign bits set.
11226
11227    This is needed because when combine blows the SUBREGs away, the
11228    information on zero/sign bits is lost and further combines can be
11229    missed because of that.  */
11230
11231 static void
11232 record_promoted_value (insn, subreg)
11233      rtx insn;
11234      rtx subreg;
11235 {
11236   rtx links, set;
11237   unsigned int regno = REGNO (SUBREG_REG (subreg));
11238   enum machine_mode mode = GET_MODE (subreg);
11239
11240   if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
11241     return;
11242
11243   for (links = LOG_LINKS (insn); links;)
11244     {
11245       insn = XEXP (links, 0);
11246       set = single_set (insn);
11247
11248       if (! set || GET_CODE (SET_DEST (set)) != REG
11249           || REGNO (SET_DEST (set)) != regno
11250           || GET_MODE (SET_DEST (set)) != GET_MODE (SUBREG_REG (subreg)))
11251         {
11252           links = XEXP (links, 1);
11253           continue;
11254         }
11255
11256       if (reg_last_set[regno] == insn)
11257         {
11258           if (SUBREG_PROMOTED_UNSIGNED_P (subreg))
11259             reg_last_set_nonzero_bits[regno] &= GET_MODE_MASK (mode);
11260         }
11261
11262       if (GET_CODE (SET_SRC (set)) == REG)
11263         {
11264           regno = REGNO (SET_SRC (set));
11265           links = LOG_LINKS (insn);
11266         }
11267       else
11268         break;
11269     }
11270 }
11271
11272 /* Scan X for promoted SUBREGs.  For each one found,
11273    note what it implies to the registers used in it.  */
11274
11275 static void
11276 check_promoted_subreg (insn, x)
11277      rtx insn;
11278      rtx x;
11279 {
11280   if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
11281       && GET_CODE (SUBREG_REG (x)) == REG)
11282     record_promoted_value (insn, x);
11283   else
11284     {
11285       const char *format = GET_RTX_FORMAT (GET_CODE (x));
11286       int i, j;
11287
11288       for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
11289         switch (format[i])
11290           {
11291           case 'e':
11292             check_promoted_subreg (insn, XEXP (x, i));
11293             break;
11294           case 'V':
11295           case 'E':
11296             if (XVEC (x, i) != 0)
11297               for (j = 0; j < XVECLEN (x, i); j++)
11298                 check_promoted_subreg (insn, XVECEXP (x, i, j));
11299             break;
11300           }
11301     }
11302 }
11303 \f
11304 /* Utility routine for the following function.  Verify that all the registers
11305    mentioned in *LOC are valid when *LOC was part of a value set when
11306    label_tick == TICK.  Return 0 if some are not.
11307
11308    If REPLACE is non-zero, replace the invalid reference with
11309    (clobber (const_int 0)) and return 1.  This replacement is useful because
11310    we often can get useful information about the form of a value (e.g., if
11311    it was produced by a shift that always produces -1 or 0) even though
11312    we don't know exactly what registers it was produced from.  */
11313
11314 static int
11315 get_last_value_validate (loc, insn, tick, replace)
11316      rtx *loc;
11317      rtx insn;
11318      int tick;
11319      int replace;
11320 {
11321   rtx x = *loc;
11322   const char *fmt = GET_RTX_FORMAT (GET_CODE (x));
11323   int len = GET_RTX_LENGTH (GET_CODE (x));
11324   int i;
11325
11326   if (GET_CODE (x) == REG)
11327     {
11328       unsigned int regno = REGNO (x);
11329       unsigned int endregno
11330         = regno + (regno < FIRST_PSEUDO_REGISTER
11331                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11332       unsigned int j;
11333
11334       for (j = regno; j < endregno; j++)
11335         if (reg_last_set_invalid[j]
11336             /* If this is a pseudo-register that was only set once and not
11337                live at the beginning of the function, it is always valid.  */
11338             || (! (regno >= FIRST_PSEUDO_REGISTER
11339                    && REG_N_SETS (regno) == 1
11340                    && (! REGNO_REG_SET_P
11341                        (BASIC_BLOCK (0)->global_live_at_start, regno)))
11342                 && reg_last_set_label[j] > tick))
11343           {
11344             if (replace)
11345               *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11346             return replace;
11347           }
11348
11349       return 1;
11350     }
11351   /* If this is a memory reference, make sure that there were
11352      no stores after it that might have clobbered the value.  We don't
11353      have alias info, so we assume any store invalidates it.  */
11354   else if (GET_CODE (x) == MEM && ! RTX_UNCHANGING_P (x)
11355            && INSN_CUID (insn) <= mem_last_set)
11356     {
11357       if (replace)
11358         *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11359       return replace;
11360     }
11361
11362   for (i = 0; i < len; i++)
11363     if ((fmt[i] == 'e'
11364          && get_last_value_validate (&XEXP (x, i), insn, tick, replace) == 0)
11365         /* Don't bother with these.  They shouldn't occur anyway.  */
11366         || fmt[i] == 'E')
11367       return 0;
11368
11369   /* If we haven't found a reason for it to be invalid, it is valid.  */
11370   return 1;
11371 }
11372
11373 /* Get the last value assigned to X, if known.  Some registers
11374    in the value may be replaced with (clobber (const_int 0)) if their value
11375    is known longer known reliably.  */
11376
11377 static rtx
11378 get_last_value (x)
11379      rtx x;
11380 {
11381   unsigned int regno;
11382   rtx value;
11383
11384   /* If this is a non-paradoxical SUBREG, get the value of its operand and
11385      then convert it to the desired mode.  If this is a paradoxical SUBREG,
11386      we cannot predict what values the "extra" bits might have.  */
11387   if (GET_CODE (x) == SUBREG
11388       && subreg_lowpart_p (x)
11389       && (GET_MODE_SIZE (GET_MODE (x))
11390           <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
11391       && (value = get_last_value (SUBREG_REG (x))) != 0)
11392     return gen_lowpart_for_combine (GET_MODE (x), value);
11393
11394   if (GET_CODE (x) != REG)
11395     return 0;
11396
11397   regno = REGNO (x);
11398   value = reg_last_set_value[regno];
11399
11400   /* If we don't have a value, or if it isn't for this basic block and
11401      it's either a hard register, set more than once, or it's a live
11402      at the beginning of the function, return 0.
11403
11404      Because if it's not live at the beginnning of the function then the reg
11405      is always set before being used (is never used without being set).
11406      And, if it's set only once, and it's always set before use, then all
11407      uses must have the same last value, even if it's not from this basic
11408      block.  */
11409
11410   if (value == 0
11411       || (reg_last_set_label[regno] != label_tick
11412           && (regno < FIRST_PSEUDO_REGISTER
11413               || REG_N_SETS (regno) != 1
11414               || (REGNO_REG_SET_P
11415                   (BASIC_BLOCK (0)->global_live_at_start, regno)))))
11416     return 0;
11417
11418   /* If the value was set in a later insn than the ones we are processing,
11419      we can't use it even if the register was only set once.  */
11420   if (INSN_CUID (reg_last_set[regno]) >= subst_low_cuid)
11421     return 0;
11422
11423   /* If the value has all its registers valid, return it.  */
11424   if (get_last_value_validate (&value, reg_last_set[regno],
11425                                reg_last_set_label[regno], 0))
11426     return value;
11427
11428   /* Otherwise, make a copy and replace any invalid register with
11429      (clobber (const_int 0)).  If that fails for some reason, return 0.  */
11430
11431   value = copy_rtx (value);
11432   if (get_last_value_validate (&value, reg_last_set[regno],
11433                                reg_last_set_label[regno], 1))
11434     return value;
11435
11436   return 0;
11437 }
11438 \f
11439 /* Return nonzero if expression X refers to a REG or to memory
11440    that is set in an instruction more recent than FROM_CUID.  */
11441
11442 static int
11443 use_crosses_set_p (x, from_cuid)
11444      register rtx x;
11445      int from_cuid;
11446 {
11447   register const char *fmt;
11448   register int i;
11449   register enum rtx_code code = GET_CODE (x);
11450
11451   if (code == REG)
11452     {
11453       unsigned int regno = REGNO (x);
11454       unsigned endreg = regno + (regno < FIRST_PSEUDO_REGISTER
11455                                  ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11456
11457 #ifdef PUSH_ROUNDING
11458       /* Don't allow uses of the stack pointer to be moved,
11459          because we don't know whether the move crosses a push insn.  */
11460       if (regno == STACK_POINTER_REGNUM && PUSH_ARGS)
11461         return 1;
11462 #endif
11463       for (; regno < endreg; regno++)
11464         if (reg_last_set[regno]
11465             && INSN_CUID (reg_last_set[regno]) > from_cuid)
11466           return 1;
11467       return 0;
11468     }
11469
11470   if (code == MEM && mem_last_set > from_cuid)
11471     return 1;
11472
11473   fmt = GET_RTX_FORMAT (code);
11474
11475   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11476     {
11477       if (fmt[i] == 'E')
11478         {
11479           register int j;
11480           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11481             if (use_crosses_set_p (XVECEXP (x, i, j), from_cuid))
11482               return 1;
11483         }
11484       else if (fmt[i] == 'e'
11485                && use_crosses_set_p (XEXP (x, i), from_cuid))
11486         return 1;
11487     }
11488   return 0;
11489 }
11490 \f
11491 /* Define three variables used for communication between the following
11492    routines.  */
11493
11494 static unsigned int reg_dead_regno, reg_dead_endregno;
11495 static int reg_dead_flag;
11496
11497 /* Function called via note_stores from reg_dead_at_p.
11498
11499    If DEST is within [reg_dead_regno, reg_dead_endregno), set
11500    reg_dead_flag to 1 if X is a CLOBBER and to -1 it is a SET.  */
11501
11502 static void
11503 reg_dead_at_p_1 (dest, x, data)
11504      rtx dest;
11505      rtx x;
11506      void *data ATTRIBUTE_UNUSED;
11507 {
11508   unsigned int regno, endregno;
11509
11510   if (GET_CODE (dest) != REG)
11511     return;
11512
11513   regno = REGNO (dest);
11514   endregno = regno + (regno < FIRST_PSEUDO_REGISTER
11515                       ? HARD_REGNO_NREGS (regno, GET_MODE (dest)) : 1);
11516
11517   if (reg_dead_endregno > regno && reg_dead_regno < endregno)
11518     reg_dead_flag = (GET_CODE (x) == CLOBBER) ? 1 : -1;
11519 }
11520
11521 /* Return non-zero if REG is known to be dead at INSN.
11522
11523    We scan backwards from INSN.  If we hit a REG_DEAD note or a CLOBBER
11524    referencing REG, it is dead.  If we hit a SET referencing REG, it is
11525    live.  Otherwise, see if it is live or dead at the start of the basic
11526    block we are in.  Hard regs marked as being live in NEWPAT_USED_REGS
11527    must be assumed to be always live.  */
11528
11529 static int
11530 reg_dead_at_p (reg, insn)
11531      rtx reg;
11532      rtx insn;
11533 {
11534   int block;
11535   unsigned int i;
11536
11537   /* Set variables for reg_dead_at_p_1.  */
11538   reg_dead_regno = REGNO (reg);
11539   reg_dead_endregno = reg_dead_regno + (reg_dead_regno < FIRST_PSEUDO_REGISTER
11540                                         ? HARD_REGNO_NREGS (reg_dead_regno,
11541                                                             GET_MODE (reg))
11542                                         : 1);
11543
11544   reg_dead_flag = 0;
11545
11546   /* Check that reg isn't mentioned in NEWPAT_USED_REGS.  */
11547   if (reg_dead_regno < FIRST_PSEUDO_REGISTER)
11548     {
11549       for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11550         if (TEST_HARD_REG_BIT (newpat_used_regs, i))
11551           return 0;
11552     }
11553
11554   /* Scan backwards until we find a REG_DEAD note, SET, CLOBBER, label, or
11555      beginning of function.  */
11556   for (; insn && GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != BARRIER;
11557        insn = prev_nonnote_insn (insn))
11558     {
11559       note_stores (PATTERN (insn), reg_dead_at_p_1, NULL);
11560       if (reg_dead_flag)
11561         return reg_dead_flag == 1 ? 1 : 0;
11562
11563       if (find_regno_note (insn, REG_DEAD, reg_dead_regno))
11564         return 1;
11565     }
11566
11567   /* Get the basic block number that we were in.  */
11568   if (insn == 0)
11569     block = 0;
11570   else
11571     {
11572       for (block = 0; block < n_basic_blocks; block++)
11573         if (insn == BLOCK_HEAD (block))
11574           break;
11575
11576       if (block == n_basic_blocks)
11577         return 0;
11578     }
11579
11580   for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11581     if (REGNO_REG_SET_P (BASIC_BLOCK (block)->global_live_at_start, i))
11582       return 0;
11583
11584   return 1;
11585 }
11586 \f
11587 /* Note hard registers in X that are used.  This code is similar to
11588    that in flow.c, but much simpler since we don't care about pseudos.  */
11589
11590 static void
11591 mark_used_regs_combine (x)
11592      rtx x;
11593 {
11594   RTX_CODE code = GET_CODE (x);
11595   unsigned int regno;
11596   int i;
11597
11598   switch (code)
11599     {
11600     case LABEL_REF:
11601     case SYMBOL_REF:
11602     case CONST_INT:
11603     case CONST:
11604     case CONST_DOUBLE:
11605     case PC:
11606     case ADDR_VEC:
11607     case ADDR_DIFF_VEC:
11608     case ASM_INPUT:
11609 #ifdef HAVE_cc0
11610     /* CC0 must die in the insn after it is set, so we don't need to take
11611        special note of it here.  */
11612     case CC0:
11613 #endif
11614       return;
11615
11616     case CLOBBER:
11617       /* If we are clobbering a MEM, mark any hard registers inside the
11618          address as used.  */
11619       if (GET_CODE (XEXP (x, 0)) == MEM)
11620         mark_used_regs_combine (XEXP (XEXP (x, 0), 0));
11621       return;
11622
11623     case REG:
11624       regno = REGNO (x);
11625       /* A hard reg in a wide mode may really be multiple registers.
11626          If so, mark all of them just like the first.  */
11627       if (regno < FIRST_PSEUDO_REGISTER)
11628         {
11629           unsigned int endregno, r;
11630
11631           /* None of this applies to the stack, frame or arg pointers */
11632           if (regno == STACK_POINTER_REGNUM
11633 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
11634               || regno == HARD_FRAME_POINTER_REGNUM
11635 #endif
11636 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
11637               || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
11638 #endif
11639               || regno == FRAME_POINTER_REGNUM)
11640             return;
11641
11642           endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11643           for (r = regno; r < endregno; r++)
11644             SET_HARD_REG_BIT (newpat_used_regs, r);
11645         }
11646       return;
11647
11648     case SET:
11649       {
11650         /* If setting a MEM, or a SUBREG of a MEM, then note any hard regs in
11651            the address.  */
11652         register rtx testreg = SET_DEST (x);
11653
11654         while (GET_CODE (testreg) == SUBREG
11655                || GET_CODE (testreg) == ZERO_EXTRACT
11656                || GET_CODE (testreg) == SIGN_EXTRACT
11657                || GET_CODE (testreg) == STRICT_LOW_PART)
11658           testreg = XEXP (testreg, 0);
11659
11660         if (GET_CODE (testreg) == MEM)
11661           mark_used_regs_combine (XEXP (testreg, 0));
11662
11663         mark_used_regs_combine (SET_SRC (x));
11664       }
11665       return;
11666
11667     default:
11668       break;
11669     }
11670
11671   /* Recursively scan the operands of this expression.  */
11672
11673   {
11674     register const char *fmt = GET_RTX_FORMAT (code);
11675
11676     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11677       {
11678         if (fmt[i] == 'e')
11679           mark_used_regs_combine (XEXP (x, i));
11680         else if (fmt[i] == 'E')
11681           {
11682             register int j;
11683
11684             for (j = 0; j < XVECLEN (x, i); j++)
11685               mark_used_regs_combine (XVECEXP (x, i, j));
11686           }
11687       }
11688   }
11689 }
11690 \f
11691 /* Remove register number REGNO from the dead registers list of INSN.
11692
11693    Return the note used to record the death, if there was one.  */
11694
11695 rtx
11696 remove_death (regno, insn)
11697      unsigned int regno;
11698      rtx insn;
11699 {
11700   register rtx note = find_regno_note (insn, REG_DEAD, regno);
11701
11702   if (note)
11703     {
11704       REG_N_DEATHS (regno)--;
11705       remove_note (insn, note);
11706     }
11707
11708   return note;
11709 }
11710
11711 /* For each register (hardware or pseudo) used within expression X, if its
11712    death is in an instruction with cuid between FROM_CUID (inclusive) and
11713    TO_INSN (exclusive), put a REG_DEAD note for that register in the
11714    list headed by PNOTES.
11715
11716    That said, don't move registers killed by maybe_kill_insn.
11717
11718    This is done when X is being merged by combination into TO_INSN.  These
11719    notes will then be distributed as needed.  */
11720
11721 static void
11722 move_deaths (x, maybe_kill_insn, from_cuid, to_insn, pnotes)
11723      rtx x;
11724      rtx maybe_kill_insn;
11725      int from_cuid;
11726      rtx to_insn;
11727      rtx *pnotes;
11728 {
11729   register const char *fmt;
11730   register int len, i;
11731   register enum rtx_code code = GET_CODE (x);
11732
11733   if (code == REG)
11734     {
11735       unsigned int regno = REGNO (x);
11736       register rtx where_dead = reg_last_death[regno];
11737       register rtx before_dead, after_dead;
11738
11739       /* Don't move the register if it gets killed in between from and to */
11740       if (maybe_kill_insn && reg_set_p (x, maybe_kill_insn)
11741           && ! reg_referenced_p (x, maybe_kill_insn))
11742         return;
11743
11744       /* WHERE_DEAD could be a USE insn made by combine, so first we
11745          make sure that we have insns with valid INSN_CUID values.  */
11746       before_dead = where_dead;
11747       while (before_dead && INSN_UID (before_dead) > max_uid_cuid)
11748         before_dead = PREV_INSN (before_dead);
11749
11750       after_dead = where_dead;
11751       while (after_dead && INSN_UID (after_dead) > max_uid_cuid)
11752         after_dead = NEXT_INSN (after_dead);
11753
11754       if (before_dead && after_dead
11755           && INSN_CUID (before_dead) >= from_cuid
11756           && (INSN_CUID (after_dead) < INSN_CUID (to_insn)
11757               || (where_dead != after_dead
11758                   && INSN_CUID (after_dead) == INSN_CUID (to_insn))))
11759         {
11760           rtx note = remove_death (regno, where_dead);
11761
11762           /* It is possible for the call above to return 0.  This can occur
11763              when reg_last_death points to I2 or I1 that we combined with.
11764              In that case make a new note.
11765
11766              We must also check for the case where X is a hard register
11767              and NOTE is a death note for a range of hard registers
11768              including X.  In that case, we must put REG_DEAD notes for
11769              the remaining registers in place of NOTE.  */
11770
11771           if (note != 0 && regno < FIRST_PSEUDO_REGISTER
11772               && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11773                   > GET_MODE_SIZE (GET_MODE (x))))
11774             {
11775               unsigned int deadregno = REGNO (XEXP (note, 0));
11776               unsigned int deadend
11777                 = (deadregno + HARD_REGNO_NREGS (deadregno,
11778                                                  GET_MODE (XEXP (note, 0))));
11779               unsigned int ourend
11780                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11781               unsigned int i;
11782
11783               for (i = deadregno; i < deadend; i++)
11784                 if (i < regno || i >= ourend)
11785                   REG_NOTES (where_dead)
11786                     = gen_rtx_EXPR_LIST (REG_DEAD,
11787                                          gen_rtx_REG (reg_raw_mode[i], i),
11788                                          REG_NOTES (where_dead));
11789             }
11790
11791           /* If we didn't find any note, or if we found a REG_DEAD note that
11792              covers only part of the given reg, and we have a multi-reg hard
11793              register, then to be safe we must check for REG_DEAD notes
11794              for each register other than the first.  They could have
11795              their own REG_DEAD notes lying around.  */
11796           else if ((note == 0
11797                     || (note != 0
11798                         && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11799                             < GET_MODE_SIZE (GET_MODE (x)))))
11800                    && regno < FIRST_PSEUDO_REGISTER
11801                    && HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
11802             {
11803               unsigned int ourend
11804                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11805               unsigned int i, offset;
11806               rtx oldnotes = 0;
11807
11808               if (note)
11809                 offset = HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0)));
11810               else
11811                 offset = 1;
11812
11813               for (i = regno + offset; i < ourend; i++)
11814                 move_deaths (gen_rtx_REG (reg_raw_mode[i], i),
11815                              maybe_kill_insn, from_cuid, to_insn, &oldnotes);
11816             }
11817
11818           if (note != 0 && GET_MODE (XEXP (note, 0)) == GET_MODE (x))
11819             {
11820               XEXP (note, 1) = *pnotes;
11821               *pnotes = note;
11822             }
11823           else
11824             *pnotes = gen_rtx_EXPR_LIST (REG_DEAD, x, *pnotes);
11825
11826           REG_N_DEATHS (regno)++;
11827         }
11828
11829       return;
11830     }
11831
11832   else if (GET_CODE (x) == SET)
11833     {
11834       rtx dest = SET_DEST (x);
11835
11836       move_deaths (SET_SRC (x), maybe_kill_insn, from_cuid, to_insn, pnotes);
11837
11838       /* In the case of a ZERO_EXTRACT, a STRICT_LOW_PART, or a SUBREG
11839          that accesses one word of a multi-word item, some
11840          piece of everything register in the expression is used by
11841          this insn, so remove any old death.  */
11842       /* ??? So why do we test for equality of the sizes?  */
11843
11844       if (GET_CODE (dest) == ZERO_EXTRACT
11845           || GET_CODE (dest) == STRICT_LOW_PART
11846           || (GET_CODE (dest) == SUBREG
11847               && (((GET_MODE_SIZE (GET_MODE (dest))
11848                     + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
11849                   == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
11850                        + UNITS_PER_WORD - 1) / UNITS_PER_WORD))))
11851         {
11852           move_deaths (dest, maybe_kill_insn, from_cuid, to_insn, pnotes);
11853           return;
11854         }
11855
11856       /* If this is some other SUBREG, we know it replaces the entire
11857          value, so use that as the destination.  */
11858       if (GET_CODE (dest) == SUBREG)
11859         dest = SUBREG_REG (dest);
11860
11861       /* If this is a MEM, adjust deaths of anything used in the address.
11862          For a REG (the only other possibility), the entire value is
11863          being replaced so the old value is not used in this insn.  */
11864
11865       if (GET_CODE (dest) == MEM)
11866         move_deaths (XEXP (dest, 0), maybe_kill_insn, from_cuid,
11867                      to_insn, pnotes);
11868       return;
11869     }
11870
11871   else if (GET_CODE (x) == CLOBBER)
11872     return;
11873
11874   len = GET_RTX_LENGTH (code);
11875   fmt = GET_RTX_FORMAT (code);
11876
11877   for (i = 0; i < len; i++)
11878     {
11879       if (fmt[i] == 'E')
11880         {
11881           register int j;
11882           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11883             move_deaths (XVECEXP (x, i, j), maybe_kill_insn, from_cuid,
11884                          to_insn, pnotes);
11885         }
11886       else if (fmt[i] == 'e')
11887         move_deaths (XEXP (x, i), maybe_kill_insn, from_cuid, to_insn, pnotes);
11888     }
11889 }
11890 \f
11891 /* Return 1 if X is the target of a bit-field assignment in BODY, the
11892    pattern of an insn.  X must be a REG.  */
11893
11894 static int
11895 reg_bitfield_target_p (x, body)
11896      rtx x;
11897      rtx body;
11898 {
11899   int i;
11900
11901   if (GET_CODE (body) == SET)
11902     {
11903       rtx dest = SET_DEST (body);
11904       rtx target;
11905       unsigned int regno, tregno, endregno, endtregno;
11906
11907       if (GET_CODE (dest) == ZERO_EXTRACT)
11908         target = XEXP (dest, 0);
11909       else if (GET_CODE (dest) == STRICT_LOW_PART)
11910         target = SUBREG_REG (XEXP (dest, 0));
11911       else
11912         return 0;
11913
11914       if (GET_CODE (target) == SUBREG)
11915         target = SUBREG_REG (target);
11916
11917       if (GET_CODE (target) != REG)
11918         return 0;
11919
11920       tregno = REGNO (target), regno = REGNO (x);
11921       if (tregno >= FIRST_PSEUDO_REGISTER || regno >= FIRST_PSEUDO_REGISTER)
11922         return target == x;
11923
11924       endtregno = tregno + HARD_REGNO_NREGS (tregno, GET_MODE (target));
11925       endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11926
11927       return endregno > tregno && regno < endtregno;
11928     }
11929
11930   else if (GET_CODE (body) == PARALLEL)
11931     for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
11932       if (reg_bitfield_target_p (x, XVECEXP (body, 0, i)))
11933         return 1;
11934
11935   return 0;
11936 }
11937 \f
11938 /* Given a chain of REG_NOTES originally from FROM_INSN, try to place them
11939    as appropriate.  I3 and I2 are the insns resulting from the combination
11940    insns including FROM (I2 may be zero).
11941
11942    ELIM_I2 and ELIM_I1 are either zero or registers that we know will
11943    not need REG_DEAD notes because they are being substituted for.  This
11944    saves searching in the most common cases.
11945
11946    Each note in the list is either ignored or placed on some insns, depending
11947    on the type of note.  */
11948
11949 static void
11950 distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
11951      rtx notes;
11952      rtx from_insn;
11953      rtx i3, i2;
11954      rtx elim_i2, elim_i1;
11955 {
11956   rtx note, next_note;
11957   rtx tem;
11958
11959   for (note = notes; note; note = next_note)
11960     {
11961       rtx place = 0, place2 = 0;
11962
11963       /* If this NOTE references a pseudo register, ensure it references
11964          the latest copy of that register.  */
11965       if (XEXP (note, 0) && GET_CODE (XEXP (note, 0)) == REG
11966           && REGNO (XEXP (note, 0)) >= FIRST_PSEUDO_REGISTER)
11967         XEXP (note, 0) = regno_reg_rtx[REGNO (XEXP (note, 0))];
11968
11969       next_note = XEXP (note, 1);
11970       switch (REG_NOTE_KIND (note))
11971         {
11972         case REG_BR_PROB:
11973         case REG_EXEC_COUNT:
11974           /* Doesn't matter much where we put this, as long as it's somewhere.
11975              It is preferable to keep these notes on branches, which is most
11976              likely to be i3.  */
11977           place = i3;
11978           break;
11979
11980         case REG_NON_LOCAL_GOTO:
11981           if (GET_CODE (i3) == JUMP_INSN)
11982             place = i3;
11983           else if (i2 && GET_CODE (i2) == JUMP_INSN)
11984             place = i2;
11985           else
11986             abort();
11987           break;
11988
11989         case REG_EH_REGION:
11990           /* These notes must remain with the call or trapping instruction.  */
11991           if (GET_CODE (i3) == CALL_INSN)
11992             place = i3;
11993           else if (i2 && GET_CODE (i2) == CALL_INSN)
11994             place = i2;
11995           else if (flag_non_call_exceptions)
11996             {
11997               if (may_trap_p (i3))
11998                 place = i3;
11999               else if (i2 && may_trap_p (i2))
12000                 place = i2;
12001               /* ??? Otherwise assume we've combined things such that we
12002                  can now prove that the instructions can't trap.  Drop the
12003                  note in this case.  */
12004             }
12005           else
12006             abort ();
12007           break;
12008
12009         case REG_EH_RETHROW:
12010         case REG_NORETURN:
12011           /* These notes must remain with the call.  It should not be
12012              possible for both I2 and I3 to be a call.  */
12013           if (GET_CODE (i3) == CALL_INSN)
12014             place = i3;
12015           else if (i2 && GET_CODE (i2) == CALL_INSN)
12016             place = i2;
12017           else
12018             abort ();
12019           break;
12020
12021         case REG_UNUSED:
12022           /* Any clobbers for i3 may still exist, and so we must process
12023              REG_UNUSED notes from that insn.
12024
12025              Any clobbers from i2 or i1 can only exist if they were added by
12026              recog_for_combine.  In that case, recog_for_combine created the
12027              necessary REG_UNUSED notes.  Trying to keep any original
12028              REG_UNUSED notes from these insns can cause incorrect output
12029              if it is for the same register as the original i3 dest.
12030              In that case, we will notice that the register is set in i3,
12031              and then add a REG_UNUSED note for the destination of i3, which
12032              is wrong.  However, it is possible to have REG_UNUSED notes from
12033              i2 or i1 for register which were both used and clobbered, so
12034              we keep notes from i2 or i1 if they will turn into REG_DEAD
12035              notes.  */
12036
12037           /* If this register is set or clobbered in I3, put the note there
12038              unless there is one already.  */
12039           if (reg_set_p (XEXP (note, 0), PATTERN (i3)))
12040             {
12041               if (from_insn != i3)
12042                 break;
12043
12044               if (! (GET_CODE (XEXP (note, 0)) == REG
12045                      ? find_regno_note (i3, REG_UNUSED, REGNO (XEXP (note, 0)))
12046                      : find_reg_note (i3, REG_UNUSED, XEXP (note, 0))))
12047                 place = i3;
12048             }
12049           /* Otherwise, if this register is used by I3, then this register
12050              now dies here, so we must put a REG_DEAD note here unless there
12051              is one already.  */
12052           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3))
12053                    && ! (GET_CODE (XEXP (note, 0)) == REG
12054                          ? find_regno_note (i3, REG_DEAD,
12055                                             REGNO (XEXP (note, 0)))
12056                          : find_reg_note (i3, REG_DEAD, XEXP (note, 0))))
12057             {
12058               PUT_REG_NOTE_KIND (note, REG_DEAD);
12059               place = i3;
12060             }
12061           break;
12062
12063         case REG_EQUAL:
12064         case REG_EQUIV:
12065         case REG_NOALIAS:
12066           /* These notes say something about results of an insn.  We can
12067              only support them if they used to be on I3 in which case they
12068              remain on I3.  Otherwise they are ignored.
12069
12070              If the note refers to an expression that is not a constant, we
12071              must also ignore the note since we cannot tell whether the
12072              equivalence is still true.  It might be possible to do
12073              slightly better than this (we only have a problem if I2DEST
12074              or I1DEST is present in the expression), but it doesn't
12075              seem worth the trouble.  */
12076
12077           if (from_insn == i3
12078               && (XEXP (note, 0) == 0 || CONSTANT_P (XEXP (note, 0))))
12079             place = i3;
12080           break;
12081
12082         case REG_INC:
12083         case REG_NO_CONFLICT:
12084           /* These notes say something about how a register is used.  They must
12085              be present on any use of the register in I2 or I3.  */
12086           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3)))
12087             place = i3;
12088
12089           if (i2 && reg_mentioned_p (XEXP (note, 0), PATTERN (i2)))
12090             {
12091               if (place)
12092                 place2 = i2;
12093               else
12094                 place = i2;
12095             }
12096           break;
12097
12098         case REG_LABEL:
12099           /* This can show up in several ways -- either directly in the
12100              pattern, or hidden off in the constant pool with (or without?)
12101              a REG_EQUAL note.  */
12102           /* ??? Ignore the without-reg_equal-note problem for now.  */
12103           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3))
12104               || ((tem = find_reg_note (i3, REG_EQUAL, NULL_RTX))
12105                   && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12106                   && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0)))
12107             place = i3;
12108
12109           if (i2
12110               && (reg_mentioned_p (XEXP (note, 0), PATTERN (i2))
12111                   || ((tem = find_reg_note (i2, REG_EQUAL, NULL_RTX))
12112                       && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12113                       && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0))))
12114             {
12115               if (place)
12116                 place2 = i2;
12117               else
12118                 place = i2;
12119             }
12120           break;
12121
12122         case REG_NONNEG:
12123         case REG_WAS_0:
12124           /* These notes say something about the value of a register prior
12125              to the execution of an insn.  It is too much trouble to see
12126              if the note is still correct in all situations.  It is better
12127              to simply delete it.  */
12128           break;
12129
12130         case REG_RETVAL:
12131           /* If the insn previously containing this note still exists,
12132              put it back where it was.  Otherwise move it to the previous
12133              insn.  Adjust the corresponding REG_LIBCALL note.  */
12134           if (GET_CODE (from_insn) != NOTE)
12135             place = from_insn;
12136           else
12137             {
12138               tem = find_reg_note (XEXP (note, 0), REG_LIBCALL, NULL_RTX);
12139               place = prev_real_insn (from_insn);
12140               if (tem && place)
12141                 XEXP (tem, 0) = place;
12142               /* If we're deleting the last remaining instruction of a
12143                  libcall sequence, don't add the notes.  */
12144               else if (XEXP (note, 0) == from_insn)
12145                 tem = place = 0;
12146             }
12147           break;
12148
12149         case REG_LIBCALL:
12150           /* This is handled similarly to REG_RETVAL.  */
12151           if (GET_CODE (from_insn) != NOTE)
12152             place = from_insn;
12153           else
12154             {
12155               tem = find_reg_note (XEXP (note, 0), REG_RETVAL, NULL_RTX);
12156               place = next_real_insn (from_insn);
12157               if (tem && place)
12158                 XEXP (tem, 0) = place;
12159               /* If we're deleting the last remaining instruction of a
12160                  libcall sequence, don't add the notes.  */
12161               else if (XEXP (note, 0) == from_insn)
12162                 tem = place = 0;
12163             }
12164           break;
12165
12166         case REG_DEAD:
12167           /* If the register is used as an input in I3, it dies there.
12168              Similarly for I2, if it is non-zero and adjacent to I3.
12169
12170              If the register is not used as an input in either I3 or I2
12171              and it is not one of the registers we were supposed to eliminate,
12172              there are two possibilities.  We might have a non-adjacent I2
12173              or we might have somehow eliminated an additional register
12174              from a computation.  For example, we might have had A & B where
12175              we discover that B will always be zero.  In this case we will
12176              eliminate the reference to A.
12177
12178              In both cases, we must search to see if we can find a previous
12179              use of A and put the death note there.  */
12180
12181           if (from_insn
12182               && GET_CODE (from_insn) == CALL_INSN
12183               && find_reg_fusage (from_insn, USE, XEXP (note, 0)))
12184             place = from_insn;
12185           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3)))
12186             place = i3;
12187           else if (i2 != 0 && next_nonnote_insn (i2) == i3
12188                    && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12189             place = i2;
12190
12191           if (rtx_equal_p (XEXP (note, 0), elim_i2)
12192               || rtx_equal_p (XEXP (note, 0), elim_i1))
12193             break;
12194
12195           if (place == 0)
12196             {
12197               basic_block bb = BASIC_BLOCK (this_basic_block);
12198
12199               for (tem = PREV_INSN (i3); place == 0; tem = PREV_INSN (tem))
12200                 {
12201                   if (! INSN_P (tem))
12202                     {
12203                       if (tem == bb->head)
12204                         break;
12205                       continue;
12206                     }
12207
12208                   /* If the register is being set at TEM, see if that is all
12209                      TEM is doing.  If so, delete TEM.  Otherwise, make this
12210                      into a REG_UNUSED note instead.  */
12211                   if (reg_set_p (XEXP (note, 0), PATTERN (tem)))
12212                     {
12213                       rtx set = single_set (tem);
12214                       rtx inner_dest = 0;
12215 #ifdef HAVE_cc0
12216                       rtx cc0_setter = NULL_RTX;
12217 #endif
12218
12219                       if (set != 0)
12220                         for (inner_dest = SET_DEST (set);
12221                              (GET_CODE (inner_dest) == STRICT_LOW_PART
12222                               || GET_CODE (inner_dest) == SUBREG
12223                               || GET_CODE (inner_dest) == ZERO_EXTRACT);
12224                              inner_dest = XEXP (inner_dest, 0))
12225                           ;
12226
12227                       /* Verify that it was the set, and not a clobber that
12228                          modified the register.
12229
12230                          CC0 targets must be careful to maintain setter/user
12231                          pairs.  If we cannot delete the setter due to side
12232                          effects, mark the user with an UNUSED note instead
12233                          of deleting it.  */
12234
12235                       if (set != 0 && ! side_effects_p (SET_SRC (set))
12236                           && rtx_equal_p (XEXP (note, 0), inner_dest)
12237 #ifdef HAVE_cc0
12238                           && (! reg_mentioned_p (cc0_rtx, SET_SRC (set))
12239                               || ((cc0_setter = prev_cc0_setter (tem)) != NULL
12240                                   && sets_cc0_p (PATTERN (cc0_setter)) > 0))
12241 #endif
12242                           )
12243                         {
12244                           /* Move the notes and links of TEM elsewhere.
12245                              This might delete other dead insns recursively.
12246                              First set the pattern to something that won't use
12247                              any register.  */
12248
12249                           PATTERN (tem) = pc_rtx;
12250
12251                           distribute_notes (REG_NOTES (tem), tem, tem,
12252                                             NULL_RTX, NULL_RTX, NULL_RTX);
12253                           distribute_links (LOG_LINKS (tem));
12254
12255                           PUT_CODE (tem, NOTE);
12256                           NOTE_LINE_NUMBER (tem) = NOTE_INSN_DELETED;
12257                           NOTE_SOURCE_FILE (tem) = 0;
12258
12259 #ifdef HAVE_cc0
12260                           /* Delete the setter too.  */
12261                           if (cc0_setter)
12262                             {
12263                               PATTERN (cc0_setter) = pc_rtx;
12264
12265                               distribute_notes (REG_NOTES (cc0_setter),
12266                                                 cc0_setter, cc0_setter,
12267                                                 NULL_RTX, NULL_RTX, NULL_RTX);
12268                               distribute_links (LOG_LINKS (cc0_setter));
12269
12270                               PUT_CODE (cc0_setter, NOTE);
12271                               NOTE_LINE_NUMBER (cc0_setter)
12272                                 = NOTE_INSN_DELETED;
12273                               NOTE_SOURCE_FILE (cc0_setter) = 0;
12274                             }
12275 #endif
12276                         }
12277                       /* If the register is both set and used here, put the
12278                          REG_DEAD note here, but place a REG_UNUSED note
12279                          here too unless there already is one.  */
12280                       else if (reg_referenced_p (XEXP (note, 0),
12281                                                  PATTERN (tem)))
12282                         {
12283                           place = tem;
12284
12285                           if (! find_regno_note (tem, REG_UNUSED,
12286                                                  REGNO (XEXP (note, 0))))
12287                             REG_NOTES (tem)
12288                               = gen_rtx_EXPR_LIST (REG_UNUSED, XEXP (note, 0),
12289                                                    REG_NOTES (tem));
12290                         }
12291                       else
12292                         {
12293                           PUT_REG_NOTE_KIND (note, REG_UNUSED);
12294
12295                           /*  If there isn't already a REG_UNUSED note, put one
12296                               here.  */
12297                           if (! find_regno_note (tem, REG_UNUSED,
12298                                                  REGNO (XEXP (note, 0))))
12299                             place = tem;
12300                           break;
12301                         }
12302                     }
12303                   else if (reg_referenced_p (XEXP (note, 0), PATTERN (tem))
12304                            || (GET_CODE (tem) == CALL_INSN
12305                                && find_reg_fusage (tem, USE, XEXP (note, 0))))
12306                     {
12307                       place = tem;
12308
12309                       /* If we are doing a 3->2 combination, and we have a
12310                          register which formerly died in i3 and was not used
12311                          by i2, which now no longer dies in i3 and is used in
12312                          i2 but does not die in i2, and place is between i2
12313                          and i3, then we may need to move a link from place to
12314                          i2.  */
12315                       if (i2 && INSN_UID (place) <= max_uid_cuid
12316                           && INSN_CUID (place) > INSN_CUID (i2)
12317                           && from_insn
12318                           && INSN_CUID (from_insn) > INSN_CUID (i2)
12319                           && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12320                         {
12321                           rtx links = LOG_LINKS (place);
12322                           LOG_LINKS (place) = 0;
12323                           distribute_links (links);
12324                         }
12325                       break;
12326                     }
12327
12328                   if (tem == bb->head)
12329                     break;
12330                 }
12331
12332               /* We haven't found an insn for the death note and it
12333                  is still a REG_DEAD note, but we have hit the beginning
12334                  of the block.  If the existing life info says the reg
12335                  was dead, there's nothing left to do.  Otherwise, we'll
12336                  need to do a global life update after combine.  */
12337               if (REG_NOTE_KIND (note) == REG_DEAD && place == 0
12338                   && REGNO_REG_SET_P (bb->global_live_at_start,
12339                                       REGNO (XEXP (note, 0))))
12340                 {
12341                   SET_BIT (refresh_blocks, this_basic_block);
12342                   need_refresh = 1;
12343                 }
12344             }
12345
12346           /* If the register is set or already dead at PLACE, we needn't do
12347              anything with this note if it is still a REG_DEAD note.
12348              We can here if it is set at all, not if is it totally replace,
12349              which is what `dead_or_set_p' checks, so also check for it being
12350              set partially.  */
12351
12352           if (place && REG_NOTE_KIND (note) == REG_DEAD)
12353             {
12354               unsigned int regno = REGNO (XEXP (note, 0));
12355
12356               if (dead_or_set_p (place, XEXP (note, 0))
12357                   || reg_bitfield_target_p (XEXP (note, 0), PATTERN (place)))
12358                 {
12359                   /* Unless the register previously died in PLACE, clear
12360                      reg_last_death.  [I no longer understand why this is
12361                      being done.] */
12362                   if (reg_last_death[regno] != place)
12363                     reg_last_death[regno] = 0;
12364                   place = 0;
12365                 }
12366               else
12367                 reg_last_death[regno] = place;
12368
12369               /* If this is a death note for a hard reg that is occupying
12370                  multiple registers, ensure that we are still using all
12371                  parts of the object.  If we find a piece of the object
12372                  that is unused, we must arrange for an appropriate REG_DEAD
12373                  note to be added for it.  However, we can't just emit a USE
12374                  and tag the note to it, since the register might actually
12375                  be dead; so we recourse, and the recursive call then finds
12376                  the previous insn that used this register.  */
12377
12378               if (place && regno < FIRST_PSEUDO_REGISTER
12379                   && HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0))) > 1)
12380                 {
12381                   unsigned int endregno
12382                     = regno + HARD_REGNO_NREGS (regno,
12383                                                 GET_MODE (XEXP (note, 0)));
12384                   int all_used = 1;
12385                   unsigned int i;
12386
12387                   for (i = regno; i < endregno; i++)
12388                     if ((! refers_to_regno_p (i, i + 1, PATTERN (place), 0)
12389                          && ! find_regno_fusage (place, USE, i))
12390                         || dead_or_set_regno_p (place, i))
12391                       all_used = 0;
12392
12393                   if (! all_used)
12394                     {
12395                       /* Put only REG_DEAD notes for pieces that are
12396                          not already dead or set.  */
12397
12398                       for (i = regno; i < endregno;
12399                            i += HARD_REGNO_NREGS (i, reg_raw_mode[i]))
12400                         {
12401                           rtx piece = gen_rtx_REG (reg_raw_mode[i], i);
12402                           basic_block bb = BASIC_BLOCK (this_basic_block);
12403
12404                           if (! dead_or_set_p (place, piece)
12405                               && ! reg_bitfield_target_p (piece,
12406                                                           PATTERN (place)))
12407                             {
12408                               rtx new_note
12409                                 = gen_rtx_EXPR_LIST (REG_DEAD, piece, NULL_RTX);
12410
12411                               distribute_notes (new_note, place, place,
12412                                                 NULL_RTX, NULL_RTX, NULL_RTX);
12413                             }
12414                           else if (! refers_to_regno_p (i, i + 1,
12415                                                         PATTERN (place), 0)
12416                                    && ! find_regno_fusage (place, USE, i))
12417                             for (tem = PREV_INSN (place); ;
12418                                  tem = PREV_INSN (tem))
12419                               {
12420                                 if (! INSN_P (tem))
12421                                   {
12422                                     if (tem == bb->head)
12423                                       {
12424                                         SET_BIT (refresh_blocks,
12425                                                  this_basic_block);
12426                                         need_refresh = 1;
12427                                         break;
12428                                       }
12429                                     continue;
12430                                   }
12431                                 if (dead_or_set_p (tem, piece)
12432                                     || reg_bitfield_target_p (piece,
12433                                                               PATTERN (tem)))
12434                                   {
12435                                     REG_NOTES (tem)
12436                                       = gen_rtx_EXPR_LIST (REG_UNUSED, piece,
12437                                                            REG_NOTES (tem));
12438                                     break;
12439                                   }
12440                               }
12441
12442                         }
12443
12444                       place = 0;
12445                     }
12446                 }
12447             }
12448           break;
12449
12450         default:
12451           /* Any other notes should not be present at this point in the
12452              compilation.  */
12453           abort ();
12454         }
12455
12456       if (place)
12457         {
12458           XEXP (note, 1) = REG_NOTES (place);
12459           REG_NOTES (place) = note;
12460         }
12461       else if ((REG_NOTE_KIND (note) == REG_DEAD
12462                 || REG_NOTE_KIND (note) == REG_UNUSED)
12463                && GET_CODE (XEXP (note, 0)) == REG)
12464         REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
12465
12466       if (place2)
12467         {
12468           if ((REG_NOTE_KIND (note) == REG_DEAD
12469                || REG_NOTE_KIND (note) == REG_UNUSED)
12470               && GET_CODE (XEXP (note, 0)) == REG)
12471             REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
12472
12473           REG_NOTES (place2) = gen_rtx_fmt_ee (GET_CODE (note),
12474                                                REG_NOTE_KIND (note),
12475                                                XEXP (note, 0),
12476                                                REG_NOTES (place2));
12477         }
12478     }
12479 }
12480 \f
12481 /* Similarly to above, distribute the LOG_LINKS that used to be present on
12482    I3, I2, and I1 to new locations.  This is also called in one case to
12483    add a link pointing at I3 when I3's destination is changed.  */
12484
12485 static void
12486 distribute_links (links)
12487      rtx links;
12488 {
12489   rtx link, next_link;
12490
12491   for (link = links; link; link = next_link)
12492     {
12493       rtx place = 0;
12494       rtx insn;
12495       rtx set, reg;
12496
12497       next_link = XEXP (link, 1);
12498
12499       /* If the insn that this link points to is a NOTE or isn't a single
12500          set, ignore it.  In the latter case, it isn't clear what we
12501          can do other than ignore the link, since we can't tell which
12502          register it was for.  Such links wouldn't be used by combine
12503          anyway.
12504
12505          It is not possible for the destination of the target of the link to
12506          have been changed by combine.  The only potential of this is if we
12507          replace I3, I2, and I1 by I3 and I2.  But in that case the
12508          destination of I2 also remains unchanged.  */
12509
12510       if (GET_CODE (XEXP (link, 0)) == NOTE
12511           || (set = single_set (XEXP (link, 0))) == 0)
12512         continue;
12513
12514       reg = SET_DEST (set);
12515       while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
12516              || GET_CODE (reg) == SIGN_EXTRACT
12517              || GET_CODE (reg) == STRICT_LOW_PART)
12518         reg = XEXP (reg, 0);
12519
12520       /* A LOG_LINK is defined as being placed on the first insn that uses
12521          a register and points to the insn that sets the register.  Start
12522          searching at the next insn after the target of the link and stop
12523          when we reach a set of the register or the end of the basic block.
12524
12525          Note that this correctly handles the link that used to point from
12526          I3 to I2.  Also note that not much searching is typically done here
12527          since most links don't point very far away.  */
12528
12529       for (insn = NEXT_INSN (XEXP (link, 0));
12530            (insn && (this_basic_block == n_basic_blocks - 1
12531                      || BLOCK_HEAD (this_basic_block + 1) != insn));
12532            insn = NEXT_INSN (insn))
12533         if (INSN_P (insn) && reg_overlap_mentioned_p (reg, PATTERN (insn)))
12534           {
12535             if (reg_referenced_p (reg, PATTERN (insn)))
12536               place = insn;
12537             break;
12538           }
12539         else if (GET_CODE (insn) == CALL_INSN
12540                  && find_reg_fusage (insn, USE, reg))
12541           {
12542             place = insn;
12543             break;
12544           }
12545
12546       /* If we found a place to put the link, place it there unless there
12547          is already a link to the same insn as LINK at that point.  */
12548
12549       if (place)
12550         {
12551           rtx link2;
12552
12553           for (link2 = LOG_LINKS (place); link2; link2 = XEXP (link2, 1))
12554             if (XEXP (link2, 0) == XEXP (link, 0))
12555               break;
12556
12557           if (link2 == 0)
12558             {
12559               XEXP (link, 1) = LOG_LINKS (place);
12560               LOG_LINKS (place) = link;
12561
12562               /* Set added_links_insn to the earliest insn we added a
12563                  link to.  */
12564               if (added_links_insn == 0
12565                   || INSN_CUID (added_links_insn) > INSN_CUID (place))
12566                 added_links_insn = place;
12567             }
12568         }
12569     }
12570 }
12571 \f
12572 /* Compute INSN_CUID for INSN, which is an insn made by combine.  */
12573
12574 static int
12575 insn_cuid (insn)
12576      rtx insn;
12577 {
12578   while (insn != 0 && INSN_UID (insn) > max_uid_cuid
12579          && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE)
12580     insn = NEXT_INSN (insn);
12581
12582   if (INSN_UID (insn) > max_uid_cuid)
12583     abort ();
12584
12585   return INSN_CUID (insn);
12586 }
12587 \f
12588 void
12589 dump_combine_stats (file)
12590      FILE *file;
12591 {
12592   fnotice
12593     (file,
12594      ";; Combiner statistics: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n\n",
12595      combine_attempts, combine_merges, combine_extras, combine_successes);
12596 }
12597
12598 void
12599 dump_combine_total_stats (file)
12600      FILE *file;
12601 {
12602   fnotice
12603     (file,
12604      "\n;; Combiner totals: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n",
12605      total_attempts, total_merges, total_extras, total_successes);
12606 }