OSDN Git Service

* cse.c (fold_rtx): Work around bug in Sun V5.0 compilers.
[pf3gnuchains/gcc-fork.git] / gcc / cse.c
1 /* Common subexpression elimination for GNU compiler.
2    Copyright (C) 1987, 88, 89, 92-7, 1998, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21
22 #include "config.h"
23 /* stdio.h must precede rtl.h for FFS.  */
24 #include "system.h"
25 #include <setjmp.h>
26
27 #include "rtl.h"
28 #include "regs.h"
29 #include "hard-reg-set.h"
30 #include "flags.h"
31 #include "real.h"
32 #include "insn-config.h"
33 #include "recog.h"
34 #include "function.h"
35 #include "expr.h"
36 #include "toplev.h"
37 #include "output.h"
38 #include "splay-tree.h"
39
40 /* The basic idea of common subexpression elimination is to go
41    through the code, keeping a record of expressions that would
42    have the same value at the current scan point, and replacing
43    expressions encountered with the cheapest equivalent expression.
44
45    It is too complicated to keep track of the different possibilities
46    when control paths merge; so, at each label, we forget all that is
47    known and start fresh.  This can be described as processing each
48    basic block separately.  Note, however, that these are not quite
49    the same as the basic blocks found by a later pass and used for
50    data flow analysis and register packing.  We do not need to start fresh
51    after a conditional jump instruction if there is no label there.
52
53    We use two data structures to record the equivalent expressions:
54    a hash table for most expressions, and several vectors together
55    with "quantity numbers" to record equivalent (pseudo) registers.
56
57    The use of the special data structure for registers is desirable
58    because it is faster.  It is possible because registers references
59    contain a fairly small number, the register number, taken from
60    a contiguously allocated series, and two register references are
61    identical if they have the same number.  General expressions
62    do not have any such thing, so the only way to retrieve the
63    information recorded on an expression other than a register
64    is to keep it in a hash table.
65
66 Registers and "quantity numbers":
67    
68    At the start of each basic block, all of the (hardware and pseudo)
69    registers used in the function are given distinct quantity
70    numbers to indicate their contents.  During scan, when the code
71    copies one register into another, we copy the quantity number.
72    When a register is loaded in any other way, we allocate a new
73    quantity number to describe the value generated by this operation.
74    `reg_qty' records what quantity a register is currently thought
75    of as containing.
76
77    All real quantity numbers are greater than or equal to `max_reg'.
78    If register N has not been assigned a quantity, reg_qty[N] will equal N.
79
80    Quantity numbers below `max_reg' do not exist and none of the `qty_...'
81    variables should be referenced with an index below `max_reg'.
82
83    We also maintain a bidirectional chain of registers for each
84    quantity number.  `qty_first_reg', `qty_last_reg',
85    `reg_next_eqv' and `reg_prev_eqv' hold these chains.
86
87    The first register in a chain is the one whose lifespan is least local.
88    Among equals, it is the one that was seen first.
89    We replace any equivalent register with that one.
90
91    If two registers have the same quantity number, it must be true that
92    REG expressions with `qty_mode' must be in the hash table for both
93    registers and must be in the same class.
94
95    The converse is not true.  Since hard registers may be referenced in
96    any mode, two REG expressions might be equivalent in the hash table
97    but not have the same quantity number if the quantity number of one
98    of the registers is not the same mode as those expressions.
99    
100 Constants and quantity numbers
101
102    When a quantity has a known constant value, that value is stored
103    in the appropriate element of qty_const.  This is in addition to
104    putting the constant in the hash table as is usual for non-regs.
105
106    Whether a reg or a constant is preferred is determined by the configuration
107    macro CONST_COSTS and will often depend on the constant value.  In any
108    event, expressions containing constants can be simplified, by fold_rtx.
109
110    When a quantity has a known nearly constant value (such as an address
111    of a stack slot), that value is stored in the appropriate element
112    of qty_const.
113
114    Integer constants don't have a machine mode.  However, cse
115    determines the intended machine mode from the destination
116    of the instruction that moves the constant.  The machine mode
117    is recorded in the hash table along with the actual RTL
118    constant expression so that different modes are kept separate.
119
120 Other expressions:
121
122    To record known equivalences among expressions in general
123    we use a hash table called `table'.  It has a fixed number of buckets
124    that contain chains of `struct table_elt' elements for expressions.
125    These chains connect the elements whose expressions have the same
126    hash codes.
127
128    Other chains through the same elements connect the elements which
129    currently have equivalent values.
130
131    Register references in an expression are canonicalized before hashing
132    the expression.  This is done using `reg_qty' and `qty_first_reg'.
133    The hash code of a register reference is computed using the quantity
134    number, not the register number.
135
136    When the value of an expression changes, it is necessary to remove from the
137    hash table not just that expression but all expressions whose values
138    could be different as a result.
139
140      1. If the value changing is in memory, except in special cases
141      ANYTHING referring to memory could be changed.  That is because
142      nobody knows where a pointer does not point.
143      The function `invalidate_memory' removes what is necessary.
144
145      The special cases are when the address is constant or is
146      a constant plus a fixed register such as the frame pointer
147      or a static chain pointer.  When such addresses are stored in,
148      we can tell exactly which other such addresses must be invalidated
149      due to overlap.  `invalidate' does this.
150      All expressions that refer to non-constant
151      memory addresses are also invalidated.  `invalidate_memory' does this.
152
153      2. If the value changing is a register, all expressions
154      containing references to that register, and only those,
155      must be removed.
156
157    Because searching the entire hash table for expressions that contain
158    a register is very slow, we try to figure out when it isn't necessary.
159    Precisely, this is necessary only when expressions have been
160    entered in the hash table using this register, and then the value has
161    changed, and then another expression wants to be added to refer to
162    the register's new value.  This sequence of circumstances is rare
163    within any one basic block.
164
165    The vectors `reg_tick' and `reg_in_table' are used to detect this case.
166    reg_tick[i] is incremented whenever a value is stored in register i.
167    reg_in_table[i] holds -1 if no references to register i have been
168    entered in the table; otherwise, it contains the value reg_tick[i] had
169    when the references were entered.  If we want to enter a reference
170    and reg_in_table[i] != reg_tick[i], we must scan and remove old references.
171    Until we want to enter a new entry, the mere fact that the two vectors
172    don't match makes the entries be ignored if anyone tries to match them.
173
174    Registers themselves are entered in the hash table as well as in
175    the equivalent-register chains.  However, the vectors `reg_tick'
176    and `reg_in_table' do not apply to expressions which are simple
177    register references.  These expressions are removed from the table
178    immediately when they become invalid, and this can be done even if
179    we do not immediately search for all the expressions that refer to
180    the register.
181
182    A CLOBBER rtx in an instruction invalidates its operand for further
183    reuse.  A CLOBBER or SET rtx whose operand is a MEM:BLK
184    invalidates everything that resides in memory.
185
186 Related expressions:
187
188    Constant expressions that differ only by an additive integer
189    are called related.  When a constant expression is put in
190    the table, the related expression with no constant term
191    is also entered.  These are made to point at each other
192    so that it is possible to find out if there exists any
193    register equivalent to an expression related to a given expression.  */
194    
195 /* One plus largest register number used in this function.  */
196
197 static int max_reg;
198
199 /* One plus largest instruction UID used in this function at time of
200    cse_main call.  */
201
202 static int max_insn_uid;
203
204 /* Length of vectors indexed by quantity number.
205    We know in advance we will not need a quantity number this big.  */
206
207 static int max_qty;
208
209 /* Next quantity number to be allocated.
210    This is 1 + the largest number needed so far.  */
211
212 static int next_qty;
213
214 /* Indexed by quantity number, gives the first (or last) register 
215    in the chain of registers that currently contain this quantity.  */
216
217 static int *qty_first_reg;
218 static int *qty_last_reg;
219
220 /* Index by quantity number, gives the mode of the quantity.  */
221
222 static enum machine_mode *qty_mode;
223
224 /* Indexed by quantity number, gives the rtx of the constant value of the
225    quantity, or zero if it does not have a known value.
226    A sum of the frame pointer (or arg pointer) plus a constant
227    can also be entered here.  */
228
229 static rtx *qty_const;
230
231 /* Indexed by qty number, gives the insn that stored the constant value
232    recorded in `qty_const'.  */
233
234 static rtx *qty_const_insn;
235
236 /* The next three variables are used to track when a comparison between a
237    quantity and some constant or register has been passed.  In that case, we
238    know the results of the comparison in case we see it again.  These variables
239    record a comparison that is known to be true.  */
240
241 /* Indexed by qty number, gives the rtx code of a comparison with a known
242    result involving this quantity.  If none, it is UNKNOWN.  */
243 static enum rtx_code *qty_comparison_code;
244
245 /* Indexed by qty number, gives the constant being compared against in a
246    comparison of known result.  If no such comparison, it is undefined.
247    If the comparison is not with a constant, it is zero.  */
248
249 static rtx *qty_comparison_const;
250
251 /* Indexed by qty number, gives the quantity being compared against in a
252    comparison of known result.  If no such comparison, if it undefined.
253    If the comparison is not with a register, it is -1.  */
254
255 static int *qty_comparison_qty;
256
257 #ifdef HAVE_cc0
258 /* For machines that have a CC0, we do not record its value in the hash
259    table since its use is guaranteed to be the insn immediately following
260    its definition and any other insn is presumed to invalidate it.
261
262    Instead, we store below the value last assigned to CC0.  If it should
263    happen to be a constant, it is stored in preference to the actual
264    assigned value.  In case it is a constant, we store the mode in which
265    the constant should be interpreted.  */
266
267 static rtx prev_insn_cc0;
268 static enum machine_mode prev_insn_cc0_mode;
269 #endif
270
271 /* Previous actual insn.  0 if at first insn of basic block.  */
272
273 static rtx prev_insn;
274
275 /* Insn being scanned.  */
276
277 static rtx this_insn;
278
279 /* Index by register number, gives the number of the next (or
280    previous) register in the chain of registers sharing the same
281    value.
282
283    Or -1 if this register is at the end of the chain.
284
285    If reg_qty[N] == N, reg_next_eqv[N] is undefined.  */
286
287 static int *reg_next_eqv;
288 static int *reg_prev_eqv;
289
290 struct cse_reg_info {
291   union {
292     /* The number of times the register has been altered in the current
293        basic block.  */
294     int reg_tick;
295     
296     /* The next cse_reg_info structure in the free list.  */
297     struct cse_reg_info* next;
298   } variant;
299
300   /* The REG_TICK value at which rtx's containing this register are
301      valid in the hash table.  If this does not equal the current
302      reg_tick value, such expressions existing in the hash table are
303      invalid.  */
304   int reg_in_table;
305
306   /* The quantity number of the register's current contents.  */
307   int reg_qty;
308 };
309
310 /* A free list of cse_reg_info entries.  */
311 static struct cse_reg_info *cse_reg_info_free_list;
312
313 /* A mapping from registers to cse_reg_info data structures.  */
314 static splay_tree cse_reg_info_tree;
315
316 /* The last lookup we did into the cse_reg_info_tree.  This allows us
317    to cache repeated lookups.  */
318 static int cached_regno;
319 static struct cse_reg_info *cached_cse_reg_info;
320
321 /* A HARD_REG_SET containing all the hard registers for which there is 
322    currently a REG expression in the hash table.  Note the difference
323    from the above variables, which indicate if the REG is mentioned in some
324    expression in the table.  */
325
326 static HARD_REG_SET hard_regs_in_table;
327
328 /* A HARD_REG_SET containing all the hard registers that are invalidated
329    by a CALL_INSN.  */
330
331 static HARD_REG_SET regs_invalidated_by_call;
332
333 /* CUID of insn that starts the basic block currently being cse-processed.  */
334
335 static int cse_basic_block_start;
336
337 /* CUID of insn that ends the basic block currently being cse-processed.  */
338
339 static int cse_basic_block_end;
340
341 /* Vector mapping INSN_UIDs to cuids.
342    The cuids are like uids but increase monotonically always.
343    We use them to see whether a reg is used outside a given basic block.  */
344
345 static int *uid_cuid;
346
347 /* Highest UID in UID_CUID.  */
348 static int max_uid;
349
350 /* Get the cuid of an insn.  */
351
352 #define INSN_CUID(INSN) (uid_cuid[INSN_UID (INSN)])
353
354 /* Nonzero if cse has altered conditional jump insns
355    in such a way that jump optimization should be redone.  */
356
357 static int cse_jumps_altered;
358
359 /* Nonzero if we put a LABEL_REF into the hash table.  Since we may have put
360    it into an INSN without a REG_LABEL, we have to rerun jump after CSE
361    to put in the note.  */
362 static int recorded_label_ref;
363
364 /* canon_hash stores 1 in do_not_record
365    if it notices a reference to CC0, PC, or some other volatile
366    subexpression.  */
367
368 static int do_not_record;
369
370 #ifdef LOAD_EXTEND_OP
371
372 /* Scratch rtl used when looking for load-extended copy of a MEM.  */
373 static rtx memory_extend_rtx;
374 #endif
375
376 /* canon_hash stores 1 in hash_arg_in_memory
377    if it notices a reference to memory within the expression being hashed.  */
378
379 static int hash_arg_in_memory;
380
381 /* canon_hash stores 1 in hash_arg_in_struct
382    if it notices a reference to memory that's part of a structure.  */
383
384 static int hash_arg_in_struct;
385
386 /* The hash table contains buckets which are chains of `struct table_elt's,
387    each recording one expression's information.
388    That expression is in the `exp' field.
389
390    Those elements with the same hash code are chained in both directions
391    through the `next_same_hash' and `prev_same_hash' fields.
392
393    Each set of expressions with equivalent values
394    are on a two-way chain through the `next_same_value'
395    and `prev_same_value' fields, and all point with
396    the `first_same_value' field at the first element in
397    that chain.  The chain is in order of increasing cost.
398    Each element's cost value is in its `cost' field.
399
400    The `in_memory' field is nonzero for elements that
401    involve any reference to memory.  These elements are removed
402    whenever a write is done to an unidentified location in memory.
403    To be safe, we assume that a memory address is unidentified unless
404    the address is either a symbol constant or a constant plus
405    the frame pointer or argument pointer.
406
407    The `in_struct' field is nonzero for elements that
408    involve any reference to memory inside a structure or array.
409
410    The `related_value' field is used to connect related expressions
411    (that differ by adding an integer).
412    The related expressions are chained in a circular fashion.
413    `related_value' is zero for expressions for which this
414    chain is not useful.
415
416    The `cost' field stores the cost of this element's expression.
417
418    The `is_const' flag is set if the element is a constant (including
419    a fixed address).
420
421    The `flag' field is used as a temporary during some search routines.
422
423    The `mode' field is usually the same as GET_MODE (`exp'), but
424    if `exp' is a CONST_INT and has no machine mode then the `mode'
425    field is the mode it was being used as.  Each constant is
426    recorded separately for each mode it is used with.  */
427
428
429 struct table_elt
430 {
431   rtx exp;
432   struct table_elt *next_same_hash;
433   struct table_elt *prev_same_hash;
434   struct table_elt *next_same_value;
435   struct table_elt *prev_same_value;
436   struct table_elt *first_same_value;
437   struct table_elt *related_value;
438   int cost;
439   enum machine_mode mode;
440   char in_memory;
441   char in_struct;
442   char is_const;
443   char flag;
444 };
445
446 /* We don't want a lot of buckets, because we rarely have very many
447    things stored in the hash table, and a lot of buckets slows
448    down a lot of loops that happen frequently.  */
449 #define NBUCKETS 31
450
451 /* Compute hash code of X in mode M.  Special-case case where X is a pseudo
452    register (hard registers may require `do_not_record' to be set).  */
453
454 #define HASH(X, M)      \
455  (GET_CODE (X) == REG && REGNO (X) >= FIRST_PSEUDO_REGISTER     \
456   ? (((unsigned) REG << 7) + (unsigned) REG_QTY (REGNO (X))) % NBUCKETS \
457   : canon_hash (X, M) % NBUCKETS)
458
459 /* Determine whether register number N is considered a fixed register for CSE.
460    It is desirable to replace other regs with fixed regs, to reduce need for
461    non-fixed hard regs.
462    A reg wins if it is either the frame pointer or designated as fixed,
463    but not if it is an overlapping register.  */
464 #ifdef OVERLAPPING_REGNO_P
465 #define FIXED_REGNO_P(N)  \
466   (((N) == FRAME_POINTER_REGNUM || (N) == HARD_FRAME_POINTER_REGNUM \
467     || fixed_regs[N] || global_regs[N])   \
468    && ! OVERLAPPING_REGNO_P ((N)))
469 #else
470 #define FIXED_REGNO_P(N)  \
471   ((N) == FRAME_POINTER_REGNUM || (N) == HARD_FRAME_POINTER_REGNUM \
472    || fixed_regs[N] || global_regs[N])
473 #endif
474
475 /* Compute cost of X, as stored in the `cost' field of a table_elt.  Fixed
476    hard registers and pointers into the frame are the cheapest with a cost
477    of 0.  Next come pseudos with a cost of one and other hard registers with
478    a cost of 2.  Aside from these special cases, call `rtx_cost'.  */
479
480 #define CHEAP_REGNO(N) \
481   ((N) == FRAME_POINTER_REGNUM || (N) == HARD_FRAME_POINTER_REGNUM      \
482    || (N) == STACK_POINTER_REGNUM || (N) == ARG_POINTER_REGNUM          \
483    || ((N) >= FIRST_VIRTUAL_REGISTER && (N) <= LAST_VIRTUAL_REGISTER)   \
484    || ((N) < FIRST_PSEUDO_REGISTER                                      \
485        && FIXED_REGNO_P (N) && REGNO_REG_CLASS (N) != NO_REGS))
486
487 /* A register is cheap if it is a user variable assigned to the register
488    or if its register number always corresponds to a cheap register.  */
489
490 #define CHEAP_REG(N) \
491   ((REG_USERVAR_P (N) && REGNO (N) < FIRST_PSEUDO_REGISTER)     \
492    || CHEAP_REGNO (REGNO (N)))
493
494 #define COST(X)                                                         \
495   (GET_CODE (X) == REG                                                  \
496    ? (CHEAP_REG (X) ? 0                                                 \
497       : REGNO (X) >= FIRST_PSEUDO_REGISTER ? 1                          \
498       : 2)                                                              \
499    : notreg_cost(X))
500
501 /* Get the info associated with register N.  */
502
503 #define GET_CSE_REG_INFO(N)                     \
504   (((N) == cached_regno && cached_cse_reg_info) \
505    ? cached_cse_reg_info : get_cse_reg_info ((N)))
506
507 /* Get the number of times this register has been updated in this
508    basic block.  */
509
510 #define REG_TICK(N) ((GET_CSE_REG_INFO (N))->variant.reg_tick)
511
512 /* Get the point at which REG was recorded in the table.  */
513
514 #define REG_IN_TABLE(N) ((GET_CSE_REG_INFO (N))->reg_in_table)
515
516 /* Get the quantity number for REG.  */
517
518 #define REG_QTY(N) ((GET_CSE_REG_INFO (N))->reg_qty)
519
520 /* Determine if the quantity number for register X represents a valid index
521    into the `qty_...' variables.  */
522
523 #define REGNO_QTY_VALID_P(N) (REG_QTY (N) != (N))
524
525 #ifdef ADDRESS_COST
526 /* The ADDRESS_COST macro does not deal with ADDRESSOF nodes.  But,
527    during CSE, such nodes are present.  Using an ADDRESSOF node which
528    refers to the address of a REG is a good thing because we can then
529    turn (MEM (ADDRESSSOF (REG))) into just plain REG.  */
530 #define CSE_ADDRESS_COST(RTX)                                   \
531   ((GET_CODE (RTX) == ADDRESSOF && REG_P (XEXP ((RTX), 0)))     \
532    ? -1 : ADDRESS_COST(RTX))
533 #endif 
534
535 static struct table_elt *table[NBUCKETS];
536
537 /* Chain of `struct table_elt's made so far for this function
538    but currently removed from the table.  */
539
540 static struct table_elt *free_element_chain;
541
542 /* Number of `struct table_elt' structures made so far for this function.  */
543
544 static int n_elements_made;
545
546 /* Maximum value `n_elements_made' has had so far in this compilation
547    for functions previously processed.  */
548
549 static int max_elements_made;
550
551 /* Surviving equivalence class when two equivalence classes are merged 
552    by recording the effects of a jump in the last insn.  Zero if the
553    last insn was not a conditional jump.  */
554
555 static struct table_elt *last_jump_equiv_class;
556
557 /* Set to the cost of a constant pool reference if one was found for a
558    symbolic constant.  If this was found, it means we should try to
559    convert constants into constant pool entries if they don't fit in
560    the insn.  */
561
562 static int constant_pool_entries_cost;
563
564 /* Define maximum length of a branch path.  */
565
566 #define PATHLENGTH      10
567
568 /* This data describes a block that will be processed by cse_basic_block.  */
569
570 struct cse_basic_block_data {
571   /* Lowest CUID value of insns in block.  */
572   int low_cuid;
573   /* Highest CUID value of insns in block.  */
574   int high_cuid;
575   /* Total number of SETs in block.  */
576   int nsets;
577   /* Last insn in the block.  */
578   rtx last;
579   /* Size of current branch path, if any.  */
580   int path_size;
581   /* Current branch path, indicating which branches will be taken.  */
582   struct branch_path {
583     /* The branch insn.  */
584     rtx branch;
585     /* Whether it should be taken or not.  AROUND is the same as taken
586        except that it is used when the destination label is not preceded
587        by a BARRIER.  */
588     enum taken {TAKEN, NOT_TAKEN, AROUND} status;
589   } path[PATHLENGTH];
590 };
591
592 /* Nonzero if X has the form (PLUS frame-pointer integer).  We check for
593    virtual regs here because the simplify_*_operation routines are called
594    by integrate.c, which is called before virtual register instantiation.  */
595
596 #define FIXED_BASE_PLUS_P(X)                                    \
597   ((X) == frame_pointer_rtx || (X) == hard_frame_pointer_rtx    \
598    || (X) == arg_pointer_rtx                                    \
599    || (X) == virtual_stack_vars_rtx                             \
600    || (X) == virtual_incoming_args_rtx                          \
601    || (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT \
602        && (XEXP (X, 0) == frame_pointer_rtx                     \
603            || XEXP (X, 0) == hard_frame_pointer_rtx             \
604            || XEXP (X, 0) == arg_pointer_rtx                    \
605            || XEXP (X, 0) == virtual_stack_vars_rtx             \
606            || XEXP (X, 0) == virtual_incoming_args_rtx))        \
607    || GET_CODE (X) == ADDRESSOF)
608
609 /* Similar, but also allows reference to the stack pointer.
610
611    This used to include FIXED_BASE_PLUS_P, however, we can't assume that
612    arg_pointer_rtx by itself is nonzero, because on at least one machine,
613    the i960, the arg pointer is zero when it is unused.  */
614
615 #define NONZERO_BASE_PLUS_P(X)                                  \
616   ((X) == frame_pointer_rtx || (X) == hard_frame_pointer_rtx    \
617    || (X) == virtual_stack_vars_rtx                             \
618    || (X) == virtual_incoming_args_rtx                          \
619    || (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT \
620        && (XEXP (X, 0) == frame_pointer_rtx                     \
621            || XEXP (X, 0) == hard_frame_pointer_rtx             \
622            || XEXP (X, 0) == arg_pointer_rtx                    \
623            || XEXP (X, 0) == virtual_stack_vars_rtx             \
624            || XEXP (X, 0) == virtual_incoming_args_rtx))        \
625    || (X) == stack_pointer_rtx                                  \
626    || (X) == virtual_stack_dynamic_rtx                          \
627    || (X) == virtual_outgoing_args_rtx                          \
628    || (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT \
629        && (XEXP (X, 0) == stack_pointer_rtx                     \
630            || XEXP (X, 0) == virtual_stack_dynamic_rtx          \
631            || XEXP (X, 0) == virtual_outgoing_args_rtx))        \
632    || GET_CODE (X) == ADDRESSOF)
633
634 static int notreg_cost          PROTO((rtx));
635 static void new_basic_block     PROTO((void));
636 static void make_new_qty        PROTO((int));
637 static void make_regs_eqv       PROTO((int, int));
638 static void delete_reg_equiv    PROTO((int));
639 static int mention_regs         PROTO((rtx));
640 static int insert_regs          PROTO((rtx, struct table_elt *, int));
641 static void free_element        PROTO((struct table_elt *));
642 static void remove_from_table   PROTO((struct table_elt *, unsigned));
643 static struct table_elt *get_element PROTO((void));
644 static struct table_elt *lookup PROTO((rtx, unsigned, enum machine_mode)),
645        *lookup_for_remove PROTO((rtx, unsigned, enum machine_mode));
646 static rtx lookup_as_function   PROTO((rtx, enum rtx_code));
647 static struct table_elt *insert PROTO((rtx, struct table_elt *, unsigned,
648                                        enum machine_mode));
649 static void merge_equiv_classes PROTO((struct table_elt *,
650                                        struct table_elt *));
651 static void invalidate          PROTO((rtx, enum machine_mode));
652 static int cse_rtx_varies_p     PROTO((rtx));
653 static void remove_invalid_refs PROTO((int));
654 static void remove_invalid_subreg_refs  PROTO((int, int, enum machine_mode));
655 static void rehash_using_reg    PROTO((rtx));
656 static void invalidate_memory   PROTO((void));
657 static void invalidate_for_call PROTO((void));
658 static rtx use_related_value    PROTO((rtx, struct table_elt *));
659 static unsigned canon_hash      PROTO((rtx, enum machine_mode));
660 static unsigned safe_hash       PROTO((rtx, enum machine_mode));
661 static int exp_equiv_p          PROTO((rtx, rtx, int, int));
662 static void set_nonvarying_address_components PROTO((rtx, int, rtx *,
663                                                      HOST_WIDE_INT *,
664                                                      HOST_WIDE_INT *));
665 static int refers_to_p          PROTO((rtx, rtx));
666 static rtx canon_reg            PROTO((rtx, rtx));
667 static void find_best_addr      PROTO((rtx, rtx *));
668 static enum rtx_code find_comparison_args PROTO((enum rtx_code, rtx *, rtx *,
669                                                  enum machine_mode *,
670                                                  enum machine_mode *));
671 static rtx cse_gen_binary       PROTO((enum rtx_code, enum machine_mode,
672                                        rtx, rtx));
673 static rtx simplify_plus_minus  PROTO((enum rtx_code, enum machine_mode,
674                                        rtx, rtx));
675 static rtx fold_rtx             PROTO((rtx, rtx));
676 static rtx equiv_constant       PROTO((rtx));
677 static void record_jump_equiv   PROTO((rtx, int));
678 static void record_jump_cond    PROTO((enum rtx_code, enum machine_mode,
679                                        rtx, rtx, int));
680 static void cse_insn            PROTO((rtx, rtx));
681 static int note_mem_written     PROTO((rtx));
682 static void invalidate_from_clobbers PROTO((rtx));
683 static rtx cse_process_notes    PROTO((rtx, rtx));
684 static void cse_around_loop     PROTO((rtx));
685 static void invalidate_skipped_set PROTO((rtx, rtx));
686 static void invalidate_skipped_block PROTO((rtx));
687 static void cse_check_loop_start PROTO((rtx, rtx));
688 static void cse_set_around_loop PROTO((rtx, rtx, rtx));
689 static rtx cse_basic_block      PROTO((rtx, rtx, struct branch_path *, int));
690 static void count_reg_usage     PROTO((rtx, int *, rtx, int));
691 extern void dump_class          PROTO((struct table_elt*));
692 static void check_fold_consts   PROTO((PTR));
693 static struct cse_reg_info* get_cse_reg_info PROTO((int));
694 static void free_cse_reg_info   PROTO((splay_tree_value));
695 static void flush_hash_table    PROTO((void));
696 \f
697 /* Dump the expressions in the equivalence class indicated by CLASSP.
698    This function is used only for debugging.  */
699 void
700 dump_class (classp)
701      struct table_elt *classp;
702 {
703   struct table_elt *elt;
704
705   fprintf (stderr, "Equivalence chain for ");
706   print_rtl (stderr, classp->exp);
707   fprintf (stderr, ": \n");
708   
709   for (elt = classp->first_same_value; elt; elt = elt->next_same_value)
710     {
711       print_rtl (stderr, elt->exp);
712       fprintf (stderr, "\n");
713     }
714 }
715
716 /* Return an estimate of the cost of computing rtx X.
717    One use is in cse, to decide which expression to keep in the hash table.
718    Another is in rtl generation, to pick the cheapest way to multiply.
719    Other uses like the latter are expected in the future.  */
720
721 /* Internal function, to compute cost when X is not a register; called
722    from COST macro to keep it simple.  */
723
724 static int
725 notreg_cost (x)
726      rtx x;
727 {
728   return ((GET_CODE (x) == SUBREG
729            && GET_CODE (SUBREG_REG (x)) == REG
730            && GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
731            && GET_MODE_CLASS (GET_MODE (SUBREG_REG (x))) == MODE_INT
732            && (GET_MODE_SIZE (GET_MODE (x))
733                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
734            && subreg_lowpart_p (x)
735            && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (GET_MODE (x)),
736                                      GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))))
737           ? (CHEAP_REG (SUBREG_REG (x)) ? 0
738              : (REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER ? 1
739                 : 2))
740           : rtx_cost (x, SET) * 2);
741 }
742
743 /* Return the right cost to give to an operation
744    to make the cost of the corresponding register-to-register instruction
745    N times that of a fast register-to-register instruction.  */
746
747 #define COSTS_N_INSNS(N) ((N) * 4 - 2)
748
749 int
750 rtx_cost (x, outer_code)
751      rtx x;
752      enum rtx_code outer_code ATTRIBUTE_UNUSED;
753 {
754   register int i, j;
755   register enum rtx_code code;
756   register const char *fmt;
757   register int total;
758
759   if (x == 0)
760     return 0;
761
762   /* Compute the default costs of certain things.
763      Note that RTX_COSTS can override the defaults.  */
764
765   code = GET_CODE (x);
766   switch (code)
767     {
768     case MULT:
769       /* Count multiplication by 2**n as a shift,
770          because if we are considering it, we would output it as a shift.  */
771       if (GET_CODE (XEXP (x, 1)) == CONST_INT
772           && exact_log2 (INTVAL (XEXP (x, 1))) >= 0)
773         total = 2;
774       else
775         total = COSTS_N_INSNS (5);
776       break;
777     case DIV:
778     case UDIV:
779     case MOD:
780     case UMOD:
781       total = COSTS_N_INSNS (7);
782       break;
783     case USE:
784       /* Used in loop.c and combine.c as a marker.  */
785       total = 0;
786       break;
787     case ASM_OPERANDS:
788       /* We don't want these to be used in substitutions because
789          we have no way of validating the resulting insn.  So assign
790          anything containing an ASM_OPERANDS a very high cost.  */
791       total = 1000;
792       break;
793     default:
794       total = 2;
795     }
796
797   switch (code)
798     {
799     case REG:
800       return ! CHEAP_REG (x);
801
802     case SUBREG:
803       /* If we can't tie these modes, make this expensive.  The larger
804          the mode, the more expensive it is.  */
805       if (! MODES_TIEABLE_P (GET_MODE (x), GET_MODE (SUBREG_REG (x))))
806         return COSTS_N_INSNS (2
807                               + GET_MODE_SIZE (GET_MODE (x)) / UNITS_PER_WORD);
808       return 2;
809 #ifdef RTX_COSTS
810       RTX_COSTS (x, code, outer_code);
811 #endif 
812 #ifdef CONST_COSTS
813       CONST_COSTS (x, code, outer_code);
814 #endif
815
816     default:
817 #ifdef DEFAULT_RTX_COSTS
818       DEFAULT_RTX_COSTS(x, code, outer_code);
819 #endif
820       break;
821     }
822
823   /* Sum the costs of the sub-rtx's, plus cost of this operation,
824      which is already in total.  */
825
826   fmt = GET_RTX_FORMAT (code);
827   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
828     if (fmt[i] == 'e')
829       total += rtx_cost (XEXP (x, i), code);
830     else if (fmt[i] == 'E')
831       for (j = 0; j < XVECLEN (x, i); j++)
832         total += rtx_cost (XVECEXP (x, i, j), code);
833
834   return total;
835 }
836 \f
837 static struct cse_reg_info *
838 get_cse_reg_info (regno)
839      int regno;
840 {
841   struct cse_reg_info *cri;
842   splay_tree_node n;
843
844   /* See if we already have this entry.  */
845   n = splay_tree_lookup (cse_reg_info_tree, 
846                         (splay_tree_key) regno);
847   if (n)
848     cri = (struct cse_reg_info *) (n->value);
849   else 
850     {
851       /* Get a new cse_reg_info structure.  */
852       if (cse_reg_info_free_list) 
853         {
854           cri = cse_reg_info_free_list;
855           cse_reg_info_free_list = cri->variant.next;
856         }
857       else
858         cri = (struct cse_reg_info *) xmalloc (sizeof (struct cse_reg_info));
859
860       /* Initialize it.  */
861       cri->variant.reg_tick = 0;
862       cri->reg_in_table = -1;
863       cri->reg_qty = regno;
864
865       splay_tree_insert (cse_reg_info_tree, 
866                          (splay_tree_key) regno, 
867                          (splay_tree_value) cri);
868     }
869
870   /* Cache this lookup; we tend to be looking up information about the
871      same register several times in a row.  */
872   cached_regno = regno;
873   cached_cse_reg_info = cri;
874
875   return cri;
876 }
877
878 static void
879 free_cse_reg_info (v)
880      splay_tree_value v;
881 {
882   struct cse_reg_info *cri = (struct cse_reg_info *) v;
883   
884   cri->variant.next = cse_reg_info_free_list;
885   cse_reg_info_free_list = cri;
886 }
887
888 /* Clear the hash table and initialize each register with its own quantity,
889    for a new basic block.  */
890
891 static void
892 new_basic_block ()
893 {
894   register int i;
895
896   next_qty = max_reg;
897
898   if (cse_reg_info_tree) 
899     {
900       splay_tree_delete (cse_reg_info_tree);
901       cached_cse_reg_info = 0;
902     }
903
904   cse_reg_info_tree = splay_tree_new (splay_tree_compare_ints, 0, 
905                                       free_cse_reg_info);
906
907   CLEAR_HARD_REG_SET (hard_regs_in_table);
908
909   /* The per-quantity values used to be initialized here, but it is
910      much faster to initialize each as it is made in `make_new_qty'.  */
911
912   for (i = 0; i < NBUCKETS; i++)
913     {
914       register struct table_elt *this, *next;
915       for (this = table[i]; this; this = next)
916         {
917           next = this->next_same_hash;
918           free_element (this);
919         }
920     }
921
922   bzero ((char *) table, sizeof table);
923
924   prev_insn = 0;
925
926 #ifdef HAVE_cc0
927   prev_insn_cc0 = 0;
928 #endif
929 }
930
931 /* Say that register REG contains a quantity not in any register before
932    and initialize that quantity.  */
933
934 static void
935 make_new_qty (reg)
936      register int reg;
937 {
938   register int q;
939
940   if (next_qty >= max_qty)
941     abort ();
942
943   q = REG_QTY (reg) = next_qty++;
944   qty_first_reg[q] = reg;
945   qty_last_reg[q] = reg;
946   qty_const[q] = qty_const_insn[q] = 0;
947   qty_comparison_code[q] = UNKNOWN;
948
949   reg_next_eqv[reg] = reg_prev_eqv[reg] = -1;
950 }
951
952 /* Make reg NEW equivalent to reg OLD.
953    OLD is not changing; NEW is.  */
954
955 static void
956 make_regs_eqv (new, old)
957      register int new, old;
958 {
959   register int lastr, firstr;
960   register int q = REG_QTY (old);
961
962   /* Nothing should become eqv until it has a "non-invalid" qty number.  */
963   if (! REGNO_QTY_VALID_P (old))
964     abort ();
965
966   REG_QTY (new) = q;
967   firstr = qty_first_reg[q];
968   lastr = qty_last_reg[q];
969
970   /* Prefer fixed hard registers to anything.  Prefer pseudo regs to other
971      hard regs.  Among pseudos, if NEW will live longer than any other reg
972      of the same qty, and that is beyond the current basic block,
973      make it the new canonical replacement for this qty.  */
974   if (! (firstr < FIRST_PSEUDO_REGISTER && FIXED_REGNO_P (firstr))
975       /* Certain fixed registers might be of the class NO_REGS.  This means
976          that not only can they not be allocated by the compiler, but
977          they cannot be used in substitutions or canonicalizations
978          either.  */
979       && (new >= FIRST_PSEUDO_REGISTER || REGNO_REG_CLASS (new) != NO_REGS)
980       && ((new < FIRST_PSEUDO_REGISTER && FIXED_REGNO_P (new))
981           || (new >= FIRST_PSEUDO_REGISTER
982               && (firstr < FIRST_PSEUDO_REGISTER
983                   || ((uid_cuid[REGNO_LAST_UID (new)] > cse_basic_block_end
984                        || (uid_cuid[REGNO_FIRST_UID (new)]
985                            < cse_basic_block_start))
986                       && (uid_cuid[REGNO_LAST_UID (new)]
987                           > uid_cuid[REGNO_LAST_UID (firstr)]))))))
988     {
989       reg_prev_eqv[firstr] = new;
990       reg_next_eqv[new] = firstr;
991       reg_prev_eqv[new] = -1;
992       qty_first_reg[q] = new;
993     }
994   else
995     {
996       /* If NEW is a hard reg (known to be non-fixed), insert at end.
997          Otherwise, insert before any non-fixed hard regs that are at the
998          end.  Registers of class NO_REGS cannot be used as an
999          equivalent for anything.  */
1000       while (lastr < FIRST_PSEUDO_REGISTER && reg_prev_eqv[lastr] >= 0
1001              && (REGNO_REG_CLASS (lastr) == NO_REGS || ! FIXED_REGNO_P (lastr))
1002              && new >= FIRST_PSEUDO_REGISTER)
1003         lastr = reg_prev_eqv[lastr];
1004       reg_next_eqv[new] = reg_next_eqv[lastr];
1005       if (reg_next_eqv[lastr] >= 0)
1006         reg_prev_eqv[reg_next_eqv[lastr]] = new;
1007       else
1008         qty_last_reg[q] = new;
1009       reg_next_eqv[lastr] = new;
1010       reg_prev_eqv[new] = lastr;
1011     }
1012 }
1013
1014 /* Remove REG from its equivalence class.  */
1015
1016 static void
1017 delete_reg_equiv (reg)
1018      register int reg;
1019 {
1020   register int q = REG_QTY (reg);
1021   register int p, n;
1022
1023   /* If invalid, do nothing.  */
1024   if (q == reg)
1025     return;
1026
1027   p = reg_prev_eqv[reg];
1028   n = reg_next_eqv[reg];
1029
1030   if (n != -1)
1031     reg_prev_eqv[n] = p;
1032   else
1033     qty_last_reg[q] = p;
1034   if (p != -1)
1035     reg_next_eqv[p] = n;
1036   else
1037     qty_first_reg[q] = n;
1038
1039   REG_QTY (reg) = reg;
1040 }
1041
1042 /* Remove any invalid expressions from the hash table
1043    that refer to any of the registers contained in expression X.
1044
1045    Make sure that newly inserted references to those registers
1046    as subexpressions will be considered valid.
1047
1048    mention_regs is not called when a register itself
1049    is being stored in the table.
1050
1051    Return 1 if we have done something that may have changed the hash code
1052    of X.  */
1053
1054 static int
1055 mention_regs (x)
1056      rtx x;
1057 {
1058   register enum rtx_code code;
1059   register int i, j;
1060   register const char *fmt;
1061   register int changed = 0;
1062
1063   if (x == 0)
1064     return 0;
1065
1066   code = GET_CODE (x);
1067   if (code == REG)
1068     {
1069       register int regno = REGNO (x);
1070       register int endregno
1071         = regno + (regno >= FIRST_PSEUDO_REGISTER ? 1
1072                    : HARD_REGNO_NREGS (regno, GET_MODE (x)));
1073       int i;
1074
1075       for (i = regno; i < endregno; i++)
1076         {
1077           if (REG_IN_TABLE (i) >= 0 && REG_IN_TABLE (i) != REG_TICK (i))
1078             remove_invalid_refs (i);
1079
1080           REG_IN_TABLE (i) = REG_TICK (i);
1081         }
1082
1083       return 0;
1084     }
1085
1086   /* If this is a SUBREG, we don't want to discard other SUBREGs of the same
1087      pseudo if they don't use overlapping words.  We handle only pseudos
1088      here for simplicity.  */
1089   if (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG
1090       && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER)
1091     {
1092       int i = REGNO (SUBREG_REG (x));
1093
1094       if (REG_IN_TABLE (i) >= 0 && REG_IN_TABLE (i) != REG_TICK (i))
1095         {
1096           /* If reg_tick has been incremented more than once since
1097              reg_in_table was last set, that means that the entire
1098              register has been set before, so discard anything memorized
1099              for the entrire register, including all SUBREG expressions.  */
1100           if (REG_IN_TABLE (i) != REG_TICK (i) - 1)
1101             remove_invalid_refs (i);
1102           else
1103             remove_invalid_subreg_refs (i, SUBREG_WORD (x), GET_MODE (x));
1104         }
1105
1106       REG_IN_TABLE (i) = REG_TICK (i);
1107       return 0;
1108     }
1109
1110   /* If X is a comparison or a COMPARE and either operand is a register
1111      that does not have a quantity, give it one.  This is so that a later
1112      call to record_jump_equiv won't cause X to be assigned a different
1113      hash code and not found in the table after that call.
1114
1115      It is not necessary to do this here, since rehash_using_reg can
1116      fix up the table later, but doing this here eliminates the need to
1117      call that expensive function in the most common case where the only
1118      use of the register is in the comparison.  */
1119
1120   if (code == COMPARE || GET_RTX_CLASS (code) == '<')
1121     {
1122       if (GET_CODE (XEXP (x, 0)) == REG
1123           && ! REGNO_QTY_VALID_P (REGNO (XEXP (x, 0))))
1124         if (insert_regs (XEXP (x, 0), NULL_PTR, 0))
1125           {
1126             rehash_using_reg (XEXP (x, 0));
1127             changed = 1;
1128           }
1129
1130       if (GET_CODE (XEXP (x, 1)) == REG
1131           && ! REGNO_QTY_VALID_P (REGNO (XEXP (x, 1))))
1132         if (insert_regs (XEXP (x, 1), NULL_PTR, 0))
1133           {
1134             rehash_using_reg (XEXP (x, 1));
1135             changed = 1;
1136           }
1137     }
1138
1139   fmt = GET_RTX_FORMAT (code);
1140   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1141     if (fmt[i] == 'e')
1142       changed |= mention_regs (XEXP (x, i));
1143     else if (fmt[i] == 'E')
1144       for (j = 0; j < XVECLEN (x, i); j++)
1145         changed |= mention_regs (XVECEXP (x, i, j));
1146
1147   return changed;
1148 }
1149
1150 /* Update the register quantities for inserting X into the hash table
1151    with a value equivalent to CLASSP.
1152    (If the class does not contain a REG, it is irrelevant.)
1153    If MODIFIED is nonzero, X is a destination; it is being modified.
1154    Note that delete_reg_equiv should be called on a register
1155    before insert_regs is done on that register with MODIFIED != 0.
1156
1157    Nonzero value means that elements of reg_qty have changed
1158    so X's hash code may be different.  */
1159
1160 static int
1161 insert_regs (x, classp, modified)
1162      rtx x;
1163      struct table_elt *classp;
1164      int modified;
1165 {
1166   if (GET_CODE (x) == REG)
1167     {
1168       register int regno = REGNO (x);
1169
1170       /* If REGNO is in the equivalence table already but is of the
1171          wrong mode for that equivalence, don't do anything here.  */
1172
1173       if (REGNO_QTY_VALID_P (regno)
1174           && qty_mode[REG_QTY (regno)] != GET_MODE (x))
1175         return 0;
1176
1177       if (modified || ! REGNO_QTY_VALID_P (regno))
1178         {
1179           if (classp)
1180             for (classp = classp->first_same_value;
1181                  classp != 0;
1182                  classp = classp->next_same_value)
1183               if (GET_CODE (classp->exp) == REG
1184                   && GET_MODE (classp->exp) == GET_MODE (x))
1185                 {
1186                   make_regs_eqv (regno, REGNO (classp->exp));
1187                   return 1;
1188                 }
1189
1190           make_new_qty (regno);
1191           qty_mode[REG_QTY (regno)] = GET_MODE (x);
1192           return 1;
1193         }
1194
1195       return 0;
1196     }
1197
1198   /* If X is a SUBREG, we will likely be inserting the inner register in the
1199      table.  If that register doesn't have an assigned quantity number at
1200      this point but does later, the insertion that we will be doing now will
1201      not be accessible because its hash code will have changed.  So assign
1202      a quantity number now.  */
1203
1204   else if (GET_CODE (x) == SUBREG && GET_CODE (SUBREG_REG (x)) == REG
1205            && ! REGNO_QTY_VALID_P (REGNO (SUBREG_REG (x))))
1206     {
1207       int regno = REGNO (SUBREG_REG (x));
1208
1209       insert_regs (SUBREG_REG (x), NULL_PTR, 0);
1210       /* Mention_regs checks if REG_TICK is exactly one larger than
1211          REG_IN_TABLE to find out if there was only a single preceding
1212          invalidation - for the SUBREG - or another one, which would be
1213          for the full register.  Since we don't invalidate the SUBREG
1214          here first, we might have to bump up REG_TICK so that mention_regs
1215          will do the right thing.  */
1216       if (REG_IN_TABLE (regno) >= 0
1217           && REG_TICK (regno) == REG_IN_TABLE (regno) + 1)
1218         REG_TICK (regno)++;
1219       mention_regs (x);
1220       return 1;
1221     }
1222   else
1223     return mention_regs (x);
1224 }
1225 \f
1226 /* Look in or update the hash table.  */
1227
1228 /* Put the element ELT on the list of free elements.  */
1229
1230 static void
1231 free_element (elt)
1232      struct table_elt *elt;
1233 {
1234   elt->next_same_hash = free_element_chain;
1235   free_element_chain = elt;
1236 }
1237
1238 /* Return an element that is free for use.  */
1239
1240 static struct table_elt *
1241 get_element ()
1242 {
1243   struct table_elt *elt = free_element_chain;
1244   if (elt)
1245     {
1246       free_element_chain = elt->next_same_hash;
1247       return elt;
1248     }
1249   n_elements_made++;
1250   return (struct table_elt *) oballoc (sizeof (struct table_elt));
1251 }
1252
1253 /* Remove table element ELT from use in the table.
1254    HASH is its hash code, made using the HASH macro.
1255    It's an argument because often that is known in advance
1256    and we save much time not recomputing it.  */
1257
1258 static void
1259 remove_from_table (elt, hash)
1260      register struct table_elt *elt;
1261      unsigned hash;
1262 {
1263   if (elt == 0)
1264     return;
1265
1266   /* Mark this element as removed.  See cse_insn.  */
1267   elt->first_same_value = 0;
1268
1269   /* Remove the table element from its equivalence class.  */
1270      
1271   {
1272     register struct table_elt *prev = elt->prev_same_value;
1273     register struct table_elt *next = elt->next_same_value;
1274
1275     if (next) next->prev_same_value = prev;
1276
1277     if (prev)
1278       prev->next_same_value = next;
1279     else
1280       {
1281         register struct table_elt *newfirst = next;
1282         while (next)
1283           {
1284             next->first_same_value = newfirst;
1285             next = next->next_same_value;
1286           }
1287       }
1288   }
1289
1290   /* Remove the table element from its hash bucket.  */
1291
1292   {
1293     register struct table_elt *prev = elt->prev_same_hash;
1294     register struct table_elt *next = elt->next_same_hash;
1295
1296     if (next) next->prev_same_hash = prev;
1297
1298     if (prev)
1299       prev->next_same_hash = next;
1300     else if (table[hash] == elt)
1301       table[hash] = next;
1302     else
1303       {
1304         /* This entry is not in the proper hash bucket.  This can happen
1305            when two classes were merged by `merge_equiv_classes'.  Search
1306            for the hash bucket that it heads.  This happens only very
1307            rarely, so the cost is acceptable.  */
1308         for (hash = 0; hash < NBUCKETS; hash++)
1309           if (table[hash] == elt)
1310             table[hash] = next;
1311       }
1312   }
1313
1314   /* Remove the table element from its related-value circular chain.  */
1315
1316   if (elt->related_value != 0 && elt->related_value != elt)
1317     {
1318       register struct table_elt *p = elt->related_value;
1319       while (p->related_value != elt)
1320         p = p->related_value;
1321       p->related_value = elt->related_value;
1322       if (p->related_value == p)
1323         p->related_value = 0;
1324     }
1325
1326   free_element (elt);
1327 }
1328
1329 /* Look up X in the hash table and return its table element,
1330    or 0 if X is not in the table.
1331
1332    MODE is the machine-mode of X, or if X is an integer constant
1333    with VOIDmode then MODE is the mode with which X will be used.
1334
1335    Here we are satisfied to find an expression whose tree structure
1336    looks like X.  */
1337
1338 static struct table_elt *
1339 lookup (x, hash, mode)
1340      rtx x;
1341      unsigned hash;
1342      enum machine_mode mode;
1343 {
1344   register struct table_elt *p;
1345
1346   for (p = table[hash]; p; p = p->next_same_hash)
1347     if (mode == p->mode && ((x == p->exp && GET_CODE (x) == REG)
1348                             || exp_equiv_p (x, p->exp, GET_CODE (x) != REG, 0)))
1349       return p;
1350
1351   return 0;
1352 }
1353
1354 /* Like `lookup' but don't care whether the table element uses invalid regs.
1355    Also ignore discrepancies in the machine mode of a register.  */
1356
1357 static struct table_elt *
1358 lookup_for_remove (x, hash, mode)
1359      rtx x;
1360      unsigned hash;
1361      enum machine_mode mode;
1362 {
1363   register struct table_elt *p;
1364
1365   if (GET_CODE (x) == REG)
1366     {
1367       int regno = REGNO (x);
1368       /* Don't check the machine mode when comparing registers;
1369          invalidating (REG:SI 0) also invalidates (REG:DF 0).  */
1370       for (p = table[hash]; p; p = p->next_same_hash)
1371         if (GET_CODE (p->exp) == REG
1372             && REGNO (p->exp) == regno)
1373           return p;
1374     }
1375   else
1376     {
1377       for (p = table[hash]; p; p = p->next_same_hash)
1378         if (mode == p->mode && (x == p->exp || exp_equiv_p (x, p->exp, 0, 0)))
1379           return p;
1380     }
1381
1382   return 0;
1383 }
1384
1385 /* Look for an expression equivalent to X and with code CODE.
1386    If one is found, return that expression.  */
1387
1388 static rtx
1389 lookup_as_function (x, code)
1390      rtx x;
1391      enum rtx_code code;
1392 {
1393   register struct table_elt *p = lookup (x, safe_hash (x, VOIDmode) % NBUCKETS,
1394                                          GET_MODE (x));
1395   /* If we are looking for a CONST_INT, the mode doesn't really matter, as
1396      long as we are narrowing.  So if we looked in vain for a mode narrower
1397      than word_mode before, look for word_mode now.  */
1398   if (p == 0 && code == CONST_INT
1399       && GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (word_mode))
1400     {
1401       x = copy_rtx (x);
1402       PUT_MODE (x, word_mode);
1403       p = lookup (x, safe_hash (x, VOIDmode) % NBUCKETS, word_mode);
1404     }
1405
1406   if (p == 0)
1407     return 0;
1408
1409   for (p = p->first_same_value; p; p = p->next_same_value)
1410     {
1411       if (GET_CODE (p->exp) == code
1412           /* Make sure this is a valid entry in the table.  */
1413           && exp_equiv_p (p->exp, p->exp, 1, 0))
1414         return p->exp;
1415     }
1416   
1417   return 0;
1418 }
1419
1420 /* Insert X in the hash table, assuming HASH is its hash code
1421    and CLASSP is an element of the class it should go in
1422    (or 0 if a new class should be made).
1423    It is inserted at the proper position to keep the class in
1424    the order cheapest first.
1425
1426    MODE is the machine-mode of X, or if X is an integer constant
1427    with VOIDmode then MODE is the mode with which X will be used.
1428
1429    For elements of equal cheapness, the most recent one
1430    goes in front, except that the first element in the list
1431    remains first unless a cheaper element is added.  The order of
1432    pseudo-registers does not matter, as canon_reg will be called to
1433    find the cheapest when a register is retrieved from the table.
1434
1435    The in_memory field in the hash table element is set to 0.
1436    The caller must set it nonzero if appropriate.
1437
1438    You should call insert_regs (X, CLASSP, MODIFY) before calling here,
1439    and if insert_regs returns a nonzero value
1440    you must then recompute its hash code before calling here.
1441
1442    If necessary, update table showing constant values of quantities.  */
1443
1444 #define CHEAPER(X,Y)   ((X)->cost < (Y)->cost)
1445
1446 static struct table_elt *
1447 insert (x, classp, hash, mode)
1448      register rtx x;
1449      register struct table_elt *classp;
1450      unsigned hash;
1451      enum machine_mode mode;
1452 {
1453   register struct table_elt *elt;
1454
1455   /* If X is a register and we haven't made a quantity for it,
1456      something is wrong.  */
1457   if (GET_CODE (x) == REG && ! REGNO_QTY_VALID_P (REGNO (x)))
1458     abort ();
1459
1460   /* If X is a hard register, show it is being put in the table.  */
1461   if (GET_CODE (x) == REG && REGNO (x) < FIRST_PSEUDO_REGISTER)
1462     {
1463       int regno = REGNO (x);
1464       int endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
1465       int i;
1466
1467       for (i = regno; i < endregno; i++)
1468             SET_HARD_REG_BIT (hard_regs_in_table, i);
1469     }
1470
1471   /* If X is a label, show we recorded it.  */
1472   if (GET_CODE (x) == LABEL_REF
1473       || (GET_CODE (x) == CONST && GET_CODE (XEXP (x, 0)) == PLUS
1474           && GET_CODE (XEXP (XEXP (x, 0), 0)) == LABEL_REF))
1475     recorded_label_ref = 1;
1476
1477   /* Put an element for X into the right hash bucket.  */
1478
1479   elt = get_element ();
1480   elt->exp = x;
1481   elt->cost = COST (x);
1482   elt->next_same_value = 0;
1483   elt->prev_same_value = 0;
1484   elt->next_same_hash = table[hash];
1485   elt->prev_same_hash = 0;
1486   elt->related_value = 0;
1487   elt->in_memory = 0;
1488   elt->mode = mode;
1489   elt->is_const = (CONSTANT_P (x)
1490                    /* GNU C++ takes advantage of this for `this'
1491                       (and other const values).  */
1492                    || (RTX_UNCHANGING_P (x)
1493                        && GET_CODE (x) == REG
1494                        && REGNO (x) >= FIRST_PSEUDO_REGISTER)
1495                    || FIXED_BASE_PLUS_P (x));
1496
1497   if (table[hash])
1498     table[hash]->prev_same_hash = elt;
1499   table[hash] = elt;
1500
1501   /* Put it into the proper value-class.  */
1502   if (classp)
1503     {
1504       classp = classp->first_same_value;
1505       if (CHEAPER (elt, classp))
1506         /* Insert at the head of the class */
1507         {
1508           register struct table_elt *p;
1509           elt->next_same_value = classp;
1510           classp->prev_same_value = elt;
1511           elt->first_same_value = elt;
1512
1513           for (p = classp; p; p = p->next_same_value)
1514             p->first_same_value = elt;
1515         }
1516       else
1517         {
1518           /* Insert not at head of the class.  */
1519           /* Put it after the last element cheaper than X.  */
1520           register struct table_elt *p, *next;
1521           for (p = classp; (next = p->next_same_value) && CHEAPER (next, elt);
1522                p = next);
1523           /* Put it after P and before NEXT.  */
1524           elt->next_same_value = next;
1525           if (next)
1526             next->prev_same_value = elt;
1527           elt->prev_same_value = p;
1528           p->next_same_value = elt;
1529           elt->first_same_value = classp;
1530         }
1531     }
1532   else
1533     elt->first_same_value = elt;
1534
1535   /* If this is a constant being set equivalent to a register or a register
1536      being set equivalent to a constant, note the constant equivalence.
1537
1538      If this is a constant, it cannot be equivalent to a different constant,
1539      and a constant is the only thing that can be cheaper than a register.  So
1540      we know the register is the head of the class (before the constant was
1541      inserted).
1542
1543      If this is a register that is not already known equivalent to a
1544      constant, we must check the entire class.
1545
1546      If this is a register that is already known equivalent to an insn,
1547      update `qty_const_insn' to show that `this_insn' is the latest
1548      insn making that quantity equivalent to the constant.  */
1549
1550   if (elt->is_const && classp && GET_CODE (classp->exp) == REG
1551       && GET_CODE (x) != REG)
1552     {
1553       qty_const[REG_QTY (REGNO (classp->exp))]
1554         = gen_lowpart_if_possible (qty_mode[REG_QTY (REGNO (classp->exp))], x);
1555       qty_const_insn[REG_QTY (REGNO (classp->exp))] = this_insn;
1556     }
1557
1558   else if (GET_CODE (x) == REG && classp && ! qty_const[REG_QTY (REGNO (x))]
1559            && ! elt->is_const)
1560     {
1561       register struct table_elt *p;
1562
1563       for (p = classp; p != 0; p = p->next_same_value)
1564         {
1565           if (p->is_const && GET_CODE (p->exp) != REG)
1566             {
1567               qty_const[REG_QTY (REGNO (x))]
1568                 = gen_lowpart_if_possible (GET_MODE (x), p->exp);
1569               qty_const_insn[REG_QTY (REGNO (x))] = this_insn;
1570               break;
1571             }
1572         }
1573     }
1574
1575   else if (GET_CODE (x) == REG && qty_const[REG_QTY (REGNO (x))]
1576            && GET_MODE (x) == qty_mode[REG_QTY (REGNO (x))])
1577     qty_const_insn[REG_QTY (REGNO (x))] = this_insn;
1578
1579   /* If this is a constant with symbolic value,
1580      and it has a term with an explicit integer value,
1581      link it up with related expressions.  */
1582   if (GET_CODE (x) == CONST)
1583     {
1584       rtx subexp = get_related_value (x);
1585       unsigned subhash;
1586       struct table_elt *subelt, *subelt_prev;
1587
1588       if (subexp != 0)
1589         {
1590           /* Get the integer-free subexpression in the hash table.  */
1591           subhash = safe_hash (subexp, mode) % NBUCKETS;
1592           subelt = lookup (subexp, subhash, mode);
1593           if (subelt == 0)
1594             subelt = insert (subexp, NULL_PTR, subhash, mode);
1595           /* Initialize SUBELT's circular chain if it has none.  */
1596           if (subelt->related_value == 0)
1597             subelt->related_value = subelt;
1598           /* Find the element in the circular chain that precedes SUBELT.  */
1599           subelt_prev = subelt;
1600           while (subelt_prev->related_value != subelt)
1601             subelt_prev = subelt_prev->related_value;
1602           /* Put new ELT into SUBELT's circular chain just before SUBELT.
1603              This way the element that follows SUBELT is the oldest one.  */
1604           elt->related_value = subelt_prev->related_value;
1605           subelt_prev->related_value = elt;
1606         }
1607     }
1608
1609   return elt;
1610 }
1611 \f
1612 /* Given two equivalence classes, CLASS1 and CLASS2, put all the entries from
1613    CLASS2 into CLASS1.  This is done when we have reached an insn which makes
1614    the two classes equivalent.
1615
1616    CLASS1 will be the surviving class; CLASS2 should not be used after this
1617    call.
1618
1619    Any invalid entries in CLASS2 will not be copied.  */
1620
1621 static void
1622 merge_equiv_classes (class1, class2)
1623      struct table_elt *class1, *class2;
1624 {
1625   struct table_elt *elt, *next, *new;
1626
1627   /* Ensure we start with the head of the classes.  */
1628   class1 = class1->first_same_value;
1629   class2 = class2->first_same_value;
1630
1631   /* If they were already equal, forget it.  */
1632   if (class1 == class2)
1633     return;
1634
1635   for (elt = class2; elt; elt = next)
1636     {
1637       unsigned hash;
1638       rtx exp = elt->exp;
1639       enum machine_mode mode = elt->mode;
1640
1641       next = elt->next_same_value;
1642
1643       /* Remove old entry, make a new one in CLASS1's class.
1644          Don't do this for invalid entries as we cannot find their
1645          hash code (it also isn't necessary).  */
1646       if (GET_CODE (exp) == REG || exp_equiv_p (exp, exp, 1, 0))
1647         {
1648           hash_arg_in_memory = 0;
1649           hash_arg_in_struct = 0;
1650           hash = HASH (exp, mode);
1651               
1652           if (GET_CODE (exp) == REG)
1653             delete_reg_equiv (REGNO (exp));
1654               
1655           remove_from_table (elt, hash);
1656
1657           if (insert_regs (exp, class1, 0))
1658             {
1659               rehash_using_reg (exp);
1660               hash = HASH (exp, mode);
1661             }
1662           new = insert (exp, class1, hash, mode);
1663           new->in_memory = hash_arg_in_memory;
1664           new->in_struct = hash_arg_in_struct;
1665         }
1666     }
1667 }
1668 \f
1669
1670 /* Flush the entire hash table.  */
1671
1672 static void
1673 flush_hash_table ()
1674 {
1675   int i;
1676   struct table_elt *p;
1677
1678   for (i = 0; i < NBUCKETS; i++)
1679     for (p = table[i]; p; p = table[i])
1680       {
1681         /* Note that invalidate can remove elements
1682            after P in the current hash chain.  */
1683         if (GET_CODE (p->exp) == REG)
1684           invalidate (p->exp, p->mode);
1685         else
1686           remove_from_table (p, i);
1687       }
1688 }
1689
1690
1691 /* Remove from the hash table, or mark as invalid,
1692    all expressions whose values could be altered by storing in X.
1693    X is a register, a subreg, or a memory reference with nonvarying address
1694    (because, when a memory reference with a varying address is stored in,
1695    all memory references are removed by invalidate_memory
1696    so specific invalidation is superfluous).
1697    FULL_MODE, if not VOIDmode, indicates that this much should be invalidated
1698    instead of just the amount indicated by the mode of X.  This is only used
1699    for bitfield stores into memory.
1700
1701    A nonvarying address may be just a register or just
1702    a symbol reference, or it may be either of those plus
1703    a numeric offset.  */
1704
1705 static void
1706 invalidate (x, full_mode)
1707      rtx x;
1708      enum machine_mode full_mode;
1709 {
1710   register int i;
1711   register struct table_elt *p;
1712
1713   /* If X is a register, dependencies on its contents
1714      are recorded through the qty number mechanism.
1715      Just change the qty number of the register,
1716      mark it as invalid for expressions that refer to it,
1717      and remove it itself.  */
1718
1719   if (GET_CODE (x) == REG)
1720     {
1721       register int regno = REGNO (x);
1722       register unsigned hash = HASH (x, GET_MODE (x));
1723
1724       /* Remove REGNO from any quantity list it might be on and indicate
1725          that its value might have changed.  If it is a pseudo, remove its
1726          entry from the hash table.
1727
1728          For a hard register, we do the first two actions above for any
1729          additional hard registers corresponding to X.  Then, if any of these
1730          registers are in the table, we must remove any REG entries that
1731          overlap these registers.  */
1732
1733       delete_reg_equiv (regno);
1734       REG_TICK (regno)++;
1735
1736       if (regno >= FIRST_PSEUDO_REGISTER)
1737         {
1738           /* Because a register can be referenced in more than one mode,
1739              we might have to remove more than one table entry.  */
1740
1741           struct table_elt *elt;
1742
1743           while ((elt = lookup_for_remove (x, hash, GET_MODE (x))))
1744             remove_from_table (elt, hash);
1745         }
1746       else
1747         {
1748           HOST_WIDE_INT in_table
1749             = TEST_HARD_REG_BIT (hard_regs_in_table, regno);
1750           int endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
1751           int tregno, tendregno;
1752           register struct table_elt *p, *next;
1753
1754           CLEAR_HARD_REG_BIT (hard_regs_in_table, regno);
1755
1756           for (i = regno + 1; i < endregno; i++)
1757             {
1758               in_table |= TEST_HARD_REG_BIT (hard_regs_in_table, i);
1759               CLEAR_HARD_REG_BIT (hard_regs_in_table, i);
1760               delete_reg_equiv (i);
1761               REG_TICK (i)++;
1762             }
1763
1764           if (in_table)
1765             for (hash = 0; hash < NBUCKETS; hash++)
1766               for (p = table[hash]; p; p = next)
1767                 {
1768                   next = p->next_same_hash;
1769
1770                   if (GET_CODE (p->exp) != REG
1771                       || REGNO (p->exp) >= FIRST_PSEUDO_REGISTER)
1772                     continue;
1773
1774                   tregno = REGNO (p->exp);
1775                   tendregno
1776                     = tregno + HARD_REGNO_NREGS (tregno, GET_MODE (p->exp));
1777                   if (tendregno > regno && tregno < endregno)
1778                     remove_from_table (p, hash);
1779                 }
1780         }
1781
1782       return;
1783     }
1784
1785   if (GET_CODE (x) == SUBREG)
1786     {
1787       if (GET_CODE (SUBREG_REG (x)) != REG)
1788         abort ();
1789       invalidate (SUBREG_REG (x), VOIDmode);
1790       return;
1791     }
1792
1793   /* If X is a parallel, invalidate all of its elements.  */
1794
1795   if (GET_CODE (x) == PARALLEL)
1796     {
1797       for (i = XVECLEN (x, 0) - 1; i >= 0 ; --i)
1798         invalidate (XVECEXP (x, 0, i), VOIDmode);
1799       return;
1800     }
1801
1802   /* If X is an expr_list, this is part of a disjoint return value;
1803      extract the location in question ignoring the offset.  */
1804
1805   if (GET_CODE (x) == EXPR_LIST)
1806     {
1807       invalidate (XEXP (x, 0), VOIDmode);
1808       return;
1809     }
1810
1811   /* X is not a register; it must be a memory reference with
1812      a nonvarying address.  Remove all hash table elements
1813      that refer to overlapping pieces of memory.  */
1814
1815   if (GET_CODE (x) != MEM)
1816     abort ();
1817
1818   if (full_mode == VOIDmode)
1819     full_mode = GET_MODE (x);
1820
1821   for (i = 0; i < NBUCKETS; i++)
1822     {
1823       register struct table_elt *next;
1824       for (p = table[i]; p; p = next)
1825         {
1826           next = p->next_same_hash;
1827           /* Invalidate ASM_OPERANDS which reference memory (this is easier
1828              than checking all the aliases).  */
1829           if (p->in_memory
1830               && (GET_CODE (p->exp) != MEM
1831                   || true_dependence (x, full_mode, p->exp, cse_rtx_varies_p)))
1832             remove_from_table (p, i);
1833         }
1834     }
1835 }
1836
1837 /* Remove all expressions that refer to register REGNO,
1838    since they are already invalid, and we are about to
1839    mark that register valid again and don't want the old
1840    expressions to reappear as valid.  */
1841
1842 static void
1843 remove_invalid_refs (regno)
1844      int regno;
1845 {
1846   register int i;
1847   register struct table_elt *p, *next;
1848
1849   for (i = 0; i < NBUCKETS; i++)
1850     for (p = table[i]; p; p = next)
1851       {
1852         next = p->next_same_hash;
1853         if (GET_CODE (p->exp) != REG
1854             && refers_to_regno_p (regno, regno + 1, p->exp, NULL_PTR))
1855           remove_from_table (p, i);
1856       }
1857 }
1858
1859 /* Likewise for a subreg with subreg_reg WORD and mode MODE.  */
1860 static void
1861 remove_invalid_subreg_refs (regno, word, mode)
1862      int regno;
1863      int word;
1864      enum machine_mode mode;
1865 {
1866   register int i;
1867   register struct table_elt *p, *next;
1868   int end = word + (GET_MODE_SIZE (mode) - 1) / UNITS_PER_WORD;
1869
1870   for (i = 0; i < NBUCKETS; i++)
1871     for (p = table[i]; p; p = next)
1872       {
1873         rtx exp;
1874         next = p->next_same_hash;
1875         
1876         exp = p->exp;
1877         if (GET_CODE (p->exp) != REG
1878             && (GET_CODE (exp) != SUBREG
1879                 || GET_CODE (SUBREG_REG (exp)) != REG
1880                 || REGNO (SUBREG_REG (exp)) != regno
1881                 || (((SUBREG_WORD (exp)
1882                       + (GET_MODE_SIZE (GET_MODE (exp)) - 1) / UNITS_PER_WORD)
1883                      >= word)
1884                  && SUBREG_WORD (exp) <= end))
1885             && refers_to_regno_p (regno, regno + 1, p->exp, NULL_PTR))
1886           remove_from_table (p, i);
1887       }
1888 }
1889 \f
1890 /* Recompute the hash codes of any valid entries in the hash table that
1891    reference X, if X is a register, or SUBREG_REG (X) if X is a SUBREG.
1892
1893    This is called when we make a jump equivalence.  */
1894
1895 static void
1896 rehash_using_reg (x)
1897      rtx x;
1898 {
1899   unsigned int i;
1900   struct table_elt *p, *next;
1901   unsigned hash;
1902
1903   if (GET_CODE (x) == SUBREG)
1904     x = SUBREG_REG (x);
1905
1906   /* If X is not a register or if the register is known not to be in any
1907      valid entries in the table, we have no work to do.  */
1908
1909   if (GET_CODE (x) != REG
1910       || REG_IN_TABLE (REGNO (x)) < 0
1911       || REG_IN_TABLE (REGNO (x)) != REG_TICK (REGNO (x)))
1912     return;
1913
1914   /* Scan all hash chains looking for valid entries that mention X.
1915      If we find one and it is in the wrong hash chain, move it.  We can skip
1916      objects that are registers, since they are handled specially.  */
1917
1918   for (i = 0; i < NBUCKETS; i++)
1919     for (p = table[i]; p; p = next)
1920       {
1921         next = p->next_same_hash;
1922         if (GET_CODE (p->exp) != REG && reg_mentioned_p (x, p->exp)
1923             && exp_equiv_p (p->exp, p->exp, 1, 0)
1924             && i != (hash = safe_hash (p->exp, p->mode) % NBUCKETS))
1925           {
1926             if (p->next_same_hash)
1927               p->next_same_hash->prev_same_hash = p->prev_same_hash;
1928
1929             if (p->prev_same_hash)
1930               p->prev_same_hash->next_same_hash = p->next_same_hash;
1931             else
1932               table[i] = p->next_same_hash;
1933
1934             p->next_same_hash = table[hash];
1935             p->prev_same_hash = 0;
1936             if (table[hash])
1937               table[hash]->prev_same_hash = p;
1938             table[hash] = p;
1939           }
1940       }
1941 }
1942 \f
1943 /* Remove from the hash table any expression that is a call-clobbered
1944    register.  Also update their TICK values.  */
1945
1946 static void
1947 invalidate_for_call ()
1948 {
1949   int regno, endregno;
1950   int i;
1951   unsigned hash;
1952   struct table_elt *p, *next;
1953   int in_table = 0;
1954
1955   /* Go through all the hard registers.  For each that is clobbered in
1956      a CALL_INSN, remove the register from quantity chains and update
1957      reg_tick if defined.  Also see if any of these registers is currently
1958      in the table.  */
1959
1960   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1961     if (TEST_HARD_REG_BIT (regs_invalidated_by_call, regno))
1962       {
1963         delete_reg_equiv (regno);
1964         if (REG_TICK (regno) >= 0)
1965           REG_TICK (regno)++;
1966
1967         in_table |= (TEST_HARD_REG_BIT (hard_regs_in_table, regno) != 0);
1968       }
1969
1970   /* In the case where we have no call-clobbered hard registers in the
1971      table, we are done.  Otherwise, scan the table and remove any
1972      entry that overlaps a call-clobbered register.  */
1973
1974   if (in_table)
1975     for (hash = 0; hash < NBUCKETS; hash++)
1976       for (p = table[hash]; p; p = next)
1977         {
1978           next = p->next_same_hash;
1979
1980           if (p->in_memory)
1981             {
1982               remove_from_table (p, hash);
1983               continue;
1984             }
1985
1986           if (GET_CODE (p->exp) != REG
1987               || REGNO (p->exp) >= FIRST_PSEUDO_REGISTER)
1988             continue;
1989
1990           regno = REGNO (p->exp);
1991           endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (p->exp));
1992
1993           for (i = regno; i < endregno; i++)
1994             if (TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
1995               {
1996                 remove_from_table (p, hash);
1997                 break;
1998               }
1999         }
2000 }
2001 \f
2002 /* Given an expression X of type CONST,
2003    and ELT which is its table entry (or 0 if it
2004    is not in the hash table),
2005    return an alternate expression for X as a register plus integer.
2006    If none can be found, return 0.  */
2007
2008 static rtx
2009 use_related_value (x, elt)
2010      rtx x;
2011      struct table_elt *elt;
2012 {
2013   register struct table_elt *relt = 0;
2014   register struct table_elt *p, *q;
2015   HOST_WIDE_INT offset;
2016
2017   /* First, is there anything related known?
2018      If we have a table element, we can tell from that.
2019      Otherwise, must look it up.  */
2020
2021   if (elt != 0 && elt->related_value != 0)
2022     relt = elt;
2023   else if (elt == 0 && GET_CODE (x) == CONST)
2024     {
2025       rtx subexp = get_related_value (x);
2026       if (subexp != 0)
2027         relt = lookup (subexp,
2028                        safe_hash (subexp, GET_MODE (subexp)) % NBUCKETS,
2029                        GET_MODE (subexp));
2030     }
2031
2032   if (relt == 0)
2033     return 0;
2034
2035   /* Search all related table entries for one that has an
2036      equivalent register.  */
2037
2038   p = relt;
2039   while (1)
2040     {
2041       /* This loop is strange in that it is executed in two different cases.
2042          The first is when X is already in the table.  Then it is searching
2043          the RELATED_VALUE list of X's class (RELT).  The second case is when
2044          X is not in the table.  Then RELT points to a class for the related
2045          value.
2046
2047          Ensure that, whatever case we are in, that we ignore classes that have
2048          the same value as X.  */
2049
2050       if (rtx_equal_p (x, p->exp))
2051         q = 0;
2052       else
2053         for (q = p->first_same_value; q; q = q->next_same_value)
2054           if (GET_CODE (q->exp) == REG)
2055             break;
2056
2057       if (q)
2058         break;
2059
2060       p = p->related_value;
2061
2062       /* We went all the way around, so there is nothing to be found.
2063          Alternatively, perhaps RELT was in the table for some other reason
2064          and it has no related values recorded.  */
2065       if (p == relt || p == 0)
2066         break;
2067     }
2068
2069   if (q == 0)
2070     return 0;
2071
2072   offset = (get_integer_term (x) - get_integer_term (p->exp));
2073   /* Note: OFFSET may be 0 if P->xexp and X are related by commutativity.  */
2074   return plus_constant (q->exp, offset);
2075 }
2076 \f
2077 /* Hash an rtx.  We are careful to make sure the value is never negative.
2078    Equivalent registers hash identically.
2079    MODE is used in hashing for CONST_INTs only;
2080    otherwise the mode of X is used.
2081
2082    Store 1 in do_not_record if any subexpression is volatile.
2083
2084    Store 1 in hash_arg_in_memory if X contains a MEM rtx
2085    which does not have the RTX_UNCHANGING_P bit set.
2086    In this case, also store 1 in hash_arg_in_struct
2087    if there is a MEM rtx which has the MEM_IN_STRUCT_P bit set.
2088
2089    Note that cse_insn knows that the hash code of a MEM expression
2090    is just (int) MEM plus the hash code of the address.  */
2091
2092 static unsigned
2093 canon_hash (x, mode)
2094      rtx x;
2095      enum machine_mode mode;
2096 {
2097   register int i, j;
2098   register unsigned hash = 0;
2099   register enum rtx_code code;
2100   register const char *fmt;
2101
2102   /* repeat is used to turn tail-recursion into iteration.  */
2103  repeat:
2104   if (x == 0)
2105     return hash;
2106
2107   code = GET_CODE (x);
2108   switch (code)
2109     {
2110     case REG:
2111       {
2112         register int regno = REGNO (x);
2113
2114         /* On some machines, we can't record any non-fixed hard register,
2115            because extending its life will cause reload problems.  We
2116            consider ap, fp, and sp to be fixed for this purpose. 
2117
2118            We also consider CCmode registers to be fixed for this purpose;
2119            failure to do so leads to failure to simplify 0<100 type of
2120            conditionals.
2121
2122            On all machines, we can't record any global registers.  */
2123
2124         if (regno < FIRST_PSEUDO_REGISTER
2125             && (global_regs[regno]
2126                 || (SMALL_REGISTER_CLASSES
2127                     && ! fixed_regs[regno]
2128                     && regno != FRAME_POINTER_REGNUM
2129                     && regno != HARD_FRAME_POINTER_REGNUM
2130                     && regno != ARG_POINTER_REGNUM
2131                     && regno != STACK_POINTER_REGNUM
2132                     && GET_MODE_CLASS (GET_MODE (x)) != MODE_CC)))
2133           {
2134             do_not_record = 1;
2135             return 0;
2136           }
2137         hash += ((unsigned) REG << 7) + (unsigned) REG_QTY (regno);
2138         return hash;
2139       }
2140
2141     /* We handle SUBREG of a REG specially because the underlying
2142        reg changes its hash value with every value change; we don't
2143        want to have to forget unrelated subregs when one subreg changes.  */
2144     case SUBREG:
2145       {
2146         if (GET_CODE (SUBREG_REG (x)) == REG)
2147           {
2148             hash += (((unsigned) SUBREG << 7)
2149                      + REGNO (SUBREG_REG (x)) + SUBREG_WORD (x));
2150             return hash;
2151           }
2152         break;
2153       }
2154
2155     case CONST_INT:
2156       {
2157         unsigned HOST_WIDE_INT tem = INTVAL (x);
2158         hash += ((unsigned) CONST_INT << 7) + (unsigned) mode + tem;
2159         return hash;
2160       }
2161
2162     case CONST_DOUBLE:
2163       /* This is like the general case, except that it only counts
2164          the integers representing the constant.  */
2165       hash += (unsigned) code + (unsigned) GET_MODE (x);
2166       if (GET_MODE (x) != VOIDmode)
2167         for (i = 2; i < GET_RTX_LENGTH (CONST_DOUBLE); i++)
2168           {
2169             unsigned tem = XINT (x, i);
2170             hash += tem;
2171           }
2172       else
2173         hash += ((unsigned) CONST_DOUBLE_LOW (x)
2174                  + (unsigned) CONST_DOUBLE_HIGH (x));
2175       return hash;
2176
2177       /* Assume there is only one rtx object for any given label.  */
2178     case LABEL_REF:
2179       hash
2180         += ((unsigned) LABEL_REF << 7) + (unsigned long) XEXP (x, 0);
2181       return hash;
2182
2183     case SYMBOL_REF:
2184       hash
2185         += ((unsigned) SYMBOL_REF << 7) + (unsigned long) XSTR (x, 0);
2186       return hash;
2187
2188     case MEM:
2189       if (MEM_VOLATILE_P (x))
2190         {
2191           do_not_record = 1;
2192           return 0;
2193         }
2194       if (! RTX_UNCHANGING_P (x) || FIXED_BASE_PLUS_P (XEXP (x, 0)))
2195         {
2196           hash_arg_in_memory = 1;
2197           if (MEM_IN_STRUCT_P (x)) hash_arg_in_struct = 1;
2198         }
2199       /* Now that we have already found this special case,
2200          might as well speed it up as much as possible.  */
2201       hash += (unsigned) MEM;
2202       x = XEXP (x, 0);
2203       goto repeat;
2204
2205     case PRE_DEC:
2206     case PRE_INC:
2207     case POST_DEC:
2208     case POST_INC:
2209     case PC:
2210     case CC0:
2211     case CALL:
2212     case UNSPEC_VOLATILE:
2213       do_not_record = 1;
2214       return 0;
2215
2216     case ASM_OPERANDS:
2217       if (MEM_VOLATILE_P (x))
2218         {
2219           do_not_record = 1;
2220           return 0;
2221         }
2222       break;
2223       
2224     default:
2225       break;
2226     }
2227
2228   i = GET_RTX_LENGTH (code) - 1;
2229   hash += (unsigned) code + (unsigned) GET_MODE (x);
2230   fmt = GET_RTX_FORMAT (code);
2231   for (; i >= 0; i--)
2232     {
2233       if (fmt[i] == 'e')
2234         {
2235           rtx tem = XEXP (x, i);
2236
2237           /* If we are about to do the last recursive call
2238              needed at this level, change it into iteration.
2239              This function  is called enough to be worth it.  */
2240           if (i == 0)
2241             {
2242               x = tem;
2243               goto repeat;
2244             }
2245           hash += canon_hash (tem, 0);
2246         }
2247       else if (fmt[i] == 'E')
2248         for (j = 0; j < XVECLEN (x, i); j++)
2249           hash += canon_hash (XVECEXP (x, i, j), 0);
2250       else if (fmt[i] == 's')
2251         {
2252           register unsigned char *p = (unsigned char *) XSTR (x, i);
2253           if (p)
2254             while (*p)
2255               hash += *p++;
2256         }
2257       else if (fmt[i] == 'i')
2258         {
2259           register unsigned tem = XINT (x, i);
2260           hash += tem;
2261         }
2262       else if (fmt[i] == '0' || fmt[i] == 't')
2263         /* unused */;
2264       else
2265         abort ();
2266     }
2267   return hash;
2268 }
2269
2270 /* Like canon_hash but with no side effects.  */
2271
2272 static unsigned
2273 safe_hash (x, mode)
2274      rtx x;
2275      enum machine_mode mode;
2276 {
2277   int save_do_not_record = do_not_record;
2278   int save_hash_arg_in_memory = hash_arg_in_memory;
2279   int save_hash_arg_in_struct = hash_arg_in_struct;
2280   unsigned hash = canon_hash (x, mode);
2281   hash_arg_in_memory = save_hash_arg_in_memory;
2282   hash_arg_in_struct = save_hash_arg_in_struct;
2283   do_not_record = save_do_not_record;
2284   return hash;
2285 }
2286 \f
2287 /* Return 1 iff X and Y would canonicalize into the same thing,
2288    without actually constructing the canonicalization of either one.
2289    If VALIDATE is nonzero,
2290    we assume X is an expression being processed from the rtl
2291    and Y was found in the hash table.  We check register refs
2292    in Y for being marked as valid.
2293
2294    If EQUAL_VALUES is nonzero, we allow a register to match a constant value
2295    that is known to be in the register.  Ordinarily, we don't allow them
2296    to match, because letting them match would cause unpredictable results
2297    in all the places that search a hash table chain for an equivalent
2298    for a given value.  A possible equivalent that has different structure
2299    has its hash code computed from different data.  Whether the hash code
2300    is the same as that of the given value is pure luck.  */
2301
2302 static int
2303 exp_equiv_p (x, y, validate, equal_values)
2304      rtx x, y;
2305      int validate;
2306      int equal_values;
2307 {
2308   register int i, j;
2309   register enum rtx_code code;
2310   register const char *fmt;
2311
2312   /* Note: it is incorrect to assume an expression is equivalent to itself
2313      if VALIDATE is nonzero.  */
2314   if (x == y && !validate)
2315     return 1;
2316   if (x == 0 || y == 0)
2317     return x == y;
2318
2319   code = GET_CODE (x);
2320   if (code != GET_CODE (y))
2321     {
2322       if (!equal_values)
2323         return 0;
2324
2325       /* If X is a constant and Y is a register or vice versa, they may be
2326          equivalent.  We only have to validate if Y is a register.  */
2327       if (CONSTANT_P (x) && GET_CODE (y) == REG
2328           && REGNO_QTY_VALID_P (REGNO (y))
2329           && GET_MODE (y) == qty_mode[REG_QTY (REGNO (y))]
2330           && rtx_equal_p (x, qty_const[REG_QTY (REGNO (y))])
2331           && (! validate || REG_IN_TABLE (REGNO (y)) == REG_TICK (REGNO (y))))
2332         return 1;
2333
2334       if (CONSTANT_P (y) && code == REG
2335           && REGNO_QTY_VALID_P (REGNO (x))
2336           && GET_MODE (x) == qty_mode[REG_QTY (REGNO (x))]
2337           && rtx_equal_p (y, qty_const[REG_QTY (REGNO (x))]))
2338         return 1;
2339
2340       return 0;
2341     }
2342
2343   /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.  */
2344   if (GET_MODE (x) != GET_MODE (y))
2345     return 0;
2346
2347   switch (code)
2348     {
2349     case PC:
2350     case CC0:
2351       return x == y;
2352
2353     case CONST_INT:
2354       return INTVAL (x) == INTVAL (y);
2355
2356     case LABEL_REF:
2357       return XEXP (x, 0) == XEXP (y, 0);
2358
2359     case SYMBOL_REF:
2360       return XSTR (x, 0) == XSTR (y, 0);
2361
2362     case REG:
2363       {
2364         int regno = REGNO (y);
2365         int endregno
2366           = regno + (regno >= FIRST_PSEUDO_REGISTER ? 1
2367                      : HARD_REGNO_NREGS (regno, GET_MODE (y)));
2368         int i;
2369
2370         /* If the quantities are not the same, the expressions are not
2371            equivalent.  If there are and we are not to validate, they
2372            are equivalent.  Otherwise, ensure all regs are up-to-date.  */
2373
2374         if (REG_QTY (REGNO (x)) != REG_QTY (regno))
2375           return 0;
2376
2377         if (! validate)
2378           return 1;
2379
2380         for (i = regno; i < endregno; i++)
2381           if (REG_IN_TABLE (i) != REG_TICK (i))
2382             return 0;
2383
2384         return 1;
2385       }
2386
2387     /*  For commutative operations, check both orders.  */
2388     case PLUS:
2389     case MULT:
2390     case AND:
2391     case IOR:
2392     case XOR:
2393     case NE:
2394     case EQ:
2395       return ((exp_equiv_p (XEXP (x, 0), XEXP (y, 0), validate, equal_values)
2396                && exp_equiv_p (XEXP (x, 1), XEXP (y, 1),
2397                                validate, equal_values))
2398               || (exp_equiv_p (XEXP (x, 0), XEXP (y, 1),
2399                                validate, equal_values)
2400                   && exp_equiv_p (XEXP (x, 1), XEXP (y, 0),
2401                                   validate, equal_values)));
2402       
2403     default:
2404       break;
2405     }
2406
2407   /* Compare the elements.  If any pair of corresponding elements
2408      fail to match, return 0 for the whole things.  */
2409
2410   fmt = GET_RTX_FORMAT (code);
2411   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2412     {
2413       switch (fmt[i])
2414         {
2415         case 'e':
2416           if (! exp_equiv_p (XEXP (x, i), XEXP (y, i), validate, equal_values))
2417             return 0;
2418           break;
2419
2420         case 'E':
2421           if (XVECLEN (x, i) != XVECLEN (y, i))
2422             return 0;
2423           for (j = 0; j < XVECLEN (x, i); j++)
2424             if (! exp_equiv_p (XVECEXP (x, i, j), XVECEXP (y, i, j),
2425                                validate, equal_values))
2426               return 0;
2427           break;
2428
2429         case 's':
2430           if (strcmp (XSTR (x, i), XSTR (y, i)))
2431             return 0;
2432           break;
2433
2434         case 'i':
2435           if (XINT (x, i) != XINT (y, i))
2436             return 0;
2437           break;
2438
2439         case 'w':
2440           if (XWINT (x, i) != XWINT (y, i))
2441             return 0;
2442         break;
2443
2444         case '0':
2445         case 't':
2446           break;
2447
2448         default:
2449           abort ();
2450         }
2451       }
2452
2453   return 1;
2454 }
2455 \f
2456 /* Return 1 iff any subexpression of X matches Y.
2457    Here we do not require that X or Y be valid (for registers referred to)
2458    for being in the hash table.  */
2459
2460 static int
2461 refers_to_p (x, y)
2462      rtx x, y;
2463 {
2464   register int i;
2465   register enum rtx_code code;
2466   register const char *fmt;
2467
2468  repeat:
2469   if (x == y)
2470     return 1;
2471   if (x == 0 || y == 0)
2472     return 0;
2473
2474   code = GET_CODE (x);
2475   /* If X as a whole has the same code as Y, they may match.
2476      If so, return 1.  */
2477   if (code == GET_CODE (y))
2478     {
2479       if (exp_equiv_p (x, y, 0, 1))
2480         return 1;
2481     }
2482
2483   /* X does not match, so try its subexpressions.  */
2484
2485   fmt = GET_RTX_FORMAT (code);
2486   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2487     if (fmt[i] == 'e')
2488       {
2489         if (i == 0)
2490           {
2491             x = XEXP (x, 0);
2492             goto repeat;
2493           }
2494         else
2495           if (refers_to_p (XEXP (x, i), y))
2496             return 1;
2497       }
2498     else if (fmt[i] == 'E')
2499       {
2500         int j;
2501         for (j = 0; j < XVECLEN (x, i); j++)
2502           if (refers_to_p (XVECEXP (x, i, j), y))
2503             return 1;
2504       }
2505
2506   return 0;
2507 }
2508 \f
2509 /* Given ADDR and SIZE (a memory address, and the size of the memory reference),
2510    set PBASE, PSTART, and PEND which correspond to the base of the address,
2511    the starting offset, and ending offset respectively.
2512
2513    ADDR is known to be a nonvarying address.  */
2514
2515 /* ??? Despite what the comments say, this function is in fact frequently
2516    passed varying addresses.  This does not appear to cause any problems.  */
2517
2518 static void
2519 set_nonvarying_address_components (addr, size, pbase, pstart, pend)
2520      rtx addr;
2521      int size;
2522      rtx *pbase;
2523      HOST_WIDE_INT *pstart, *pend;
2524 {
2525   rtx base;
2526   HOST_WIDE_INT start, end;
2527
2528   base = addr;
2529   start = 0;
2530   end = 0;
2531
2532   if (flag_pic && GET_CODE (base) == PLUS
2533       && XEXP (base, 0) == pic_offset_table_rtx)
2534     base = XEXP (base, 1);
2535
2536   /* Registers with nonvarying addresses usually have constant equivalents;
2537      but the frame pointer register is also possible.  */
2538   if (GET_CODE (base) == REG
2539       && qty_const != 0
2540       && REGNO_QTY_VALID_P (REGNO (base))
2541       && qty_mode[REG_QTY (REGNO (base))] == GET_MODE (base)
2542       && qty_const[REG_QTY (REGNO (base))] != 0)
2543     base = qty_const[REG_QTY (REGNO (base))];
2544   else if (GET_CODE (base) == PLUS
2545            && GET_CODE (XEXP (base, 1)) == CONST_INT
2546            && GET_CODE (XEXP (base, 0)) == REG
2547            && qty_const != 0
2548            && REGNO_QTY_VALID_P (REGNO (XEXP (base, 0)))
2549            && (qty_mode[REG_QTY (REGNO (XEXP (base, 0)))]
2550                == GET_MODE (XEXP (base, 0)))
2551            && qty_const[REG_QTY (REGNO (XEXP (base, 0)))])
2552     {
2553       start = INTVAL (XEXP (base, 1));
2554       base = qty_const[REG_QTY (REGNO (XEXP (base, 0)))];
2555     }
2556   /* This can happen as the result of virtual register instantiation,
2557      if the initial offset is too large to be a valid address.  */
2558   else if (GET_CODE (base) == PLUS
2559            && GET_CODE (XEXP (base, 0)) == REG
2560            && GET_CODE (XEXP (base, 1)) == REG
2561            && qty_const != 0
2562            && REGNO_QTY_VALID_P (REGNO (XEXP (base, 0)))
2563            && (qty_mode[REG_QTY (REGNO (XEXP (base, 0)))]
2564                == GET_MODE (XEXP (base, 0)))
2565            && qty_const[REG_QTY (REGNO (XEXP (base, 0)))]
2566            && REGNO_QTY_VALID_P (REGNO (XEXP (base, 1)))
2567            && (qty_mode[REG_QTY (REGNO (XEXP (base, 1)))]
2568                == GET_MODE (XEXP (base, 1)))
2569            && qty_const[REG_QTY (REGNO (XEXP (base, 1)))])
2570     {
2571       rtx tem = qty_const[REG_QTY (REGNO (XEXP (base, 1)))];
2572       base = qty_const[REG_QTY (REGNO (XEXP (base, 0)))];
2573
2574       /* One of the two values must be a constant.  */
2575       if (GET_CODE (base) != CONST_INT)
2576         {
2577           if (GET_CODE (tem) != CONST_INT)
2578             abort ();
2579           start = INTVAL (tem);
2580         }
2581       else
2582         {
2583           start = INTVAL (base);
2584           base = tem;
2585         }
2586     }
2587
2588   /* Handle everything that we can find inside an address that has been
2589      viewed as constant.  */
2590
2591   while (1)
2592     {
2593       /* If no part of this switch does a "continue", the code outside
2594          will exit this loop.  */
2595
2596       switch (GET_CODE (base))
2597         {
2598         case LO_SUM:
2599           /* By definition, operand1 of a LO_SUM is the associated constant
2600              address.  Use the associated constant address as the base
2601              instead.  */
2602           base = XEXP (base, 1);
2603           continue;
2604
2605         case CONST:
2606           /* Strip off CONST.  */
2607           base = XEXP (base, 0);
2608           continue;
2609
2610         case PLUS:
2611           if (GET_CODE (XEXP (base, 1)) == CONST_INT)
2612             {
2613               start += INTVAL (XEXP (base, 1));
2614               base = XEXP (base, 0);
2615               continue;
2616             }
2617           break;
2618
2619         case AND:
2620           /* Handle the case of an AND which is the negative of a power of
2621              two.  This is used to represent unaligned memory operations.  */
2622           if (GET_CODE (XEXP (base, 1)) == CONST_INT
2623               && exact_log2 (- INTVAL (XEXP (base, 1))) > 0)
2624             {
2625               set_nonvarying_address_components (XEXP (base, 0), size,
2626                                                  pbase, pstart, pend);
2627
2628               /* Assume the worst misalignment.  START is affected, but not
2629                  END, so compensate but adjusting SIZE.  Don't lose any
2630                  constant we already had.  */
2631
2632               size = *pend - *pstart - INTVAL (XEXP (base, 1)) - 1;
2633               start += *pstart + INTVAL (XEXP (base, 1)) + 1;
2634               end += *pend;
2635               base = *pbase;
2636             }
2637           break;
2638
2639         default:
2640           break;
2641         }
2642
2643       break;
2644     }
2645
2646   if (GET_CODE (base) == CONST_INT)
2647     {
2648       start += INTVAL (base);
2649       base = const0_rtx;
2650     }
2651
2652   end = start + size;
2653
2654   /* Set the return values.  */
2655   *pbase = base;
2656   *pstart = start;
2657   *pend = end;
2658 }
2659
2660 /* Return 1 if X has a value that can vary even between two
2661    executions of the program.  0 means X can be compared reliably
2662    against certain constants or near-constants.  */
2663
2664 static int
2665 cse_rtx_varies_p (x)
2666      register rtx x;
2667 {
2668   /* We need not check for X and the equivalence class being of the same
2669      mode because if X is equivalent to a constant in some mode, it
2670      doesn't vary in any mode.  */
2671
2672   if (GET_CODE (x) == REG
2673       && REGNO_QTY_VALID_P (REGNO (x))
2674       && GET_MODE (x) == qty_mode[REG_QTY (REGNO (x))]
2675       && qty_const[REG_QTY (REGNO (x))] != 0)
2676     return 0;
2677
2678   if (GET_CODE (x) == PLUS
2679       && GET_CODE (XEXP (x, 1)) == CONST_INT
2680       && GET_CODE (XEXP (x, 0)) == REG
2681       && REGNO_QTY_VALID_P (REGNO (XEXP (x, 0)))
2682       && (GET_MODE (XEXP (x, 0))
2683           == qty_mode[REG_QTY (REGNO (XEXP (x, 0)))])
2684       && qty_const[REG_QTY (REGNO (XEXP (x, 0)))])
2685     return 0;
2686
2687   /* This can happen as the result of virtual register instantiation, if
2688      the initial constant is too large to be a valid address.  This gives
2689      us a three instruction sequence, load large offset into a register,
2690      load fp minus a constant into a register, then a MEM which is the
2691      sum of the two `constant' registers.  */
2692   if (GET_CODE (x) == PLUS
2693       && GET_CODE (XEXP (x, 0)) == REG
2694       && GET_CODE (XEXP (x, 1)) == REG
2695       && REGNO_QTY_VALID_P (REGNO (XEXP (x, 0)))
2696       && (GET_MODE (XEXP (x, 0))
2697           == qty_mode[REG_QTY (REGNO (XEXP (x, 0)))])
2698       && qty_const[REG_QTY (REGNO (XEXP (x, 0)))]
2699       && REGNO_QTY_VALID_P (REGNO (XEXP (x, 1)))
2700       && (GET_MODE (XEXP (x, 1))
2701           == qty_mode[REG_QTY (REGNO (XEXP (x, 1)))])
2702       && qty_const[REG_QTY (REGNO (XEXP (x, 1)))])
2703     return 0;
2704
2705   return rtx_varies_p (x);
2706 }
2707 \f
2708 /* Canonicalize an expression:
2709    replace each register reference inside it
2710    with the "oldest" equivalent register.
2711
2712    If INSN is non-zero and we are replacing a pseudo with a hard register
2713    or vice versa, validate_change is used to ensure that INSN remains valid
2714    after we make our substitution.  The calls are made with IN_GROUP non-zero
2715    so apply_change_group must be called upon the outermost return from this
2716    function (unless INSN is zero).  The result of apply_change_group can
2717    generally be discarded since the changes we are making are optional.  */
2718
2719 static rtx
2720 canon_reg (x, insn)
2721      rtx x;
2722      rtx insn;
2723 {
2724   register int i;
2725   register enum rtx_code code;
2726   register const char *fmt;
2727
2728   if (x == 0)
2729     return x;
2730
2731   code = GET_CODE (x);
2732   switch (code)
2733     {
2734     case PC:
2735     case CC0:
2736     case CONST:
2737     case CONST_INT:
2738     case CONST_DOUBLE:
2739     case SYMBOL_REF:
2740     case LABEL_REF:
2741     case ADDR_VEC:
2742     case ADDR_DIFF_VEC:
2743       return x;
2744
2745     case REG:
2746       {
2747         register int first;
2748
2749         /* Never replace a hard reg, because hard regs can appear
2750            in more than one machine mode, and we must preserve the mode
2751            of each occurrence.  Also, some hard regs appear in
2752            MEMs that are shared and mustn't be altered.  Don't try to
2753            replace any reg that maps to a reg of class NO_REGS.  */
2754         if (REGNO (x) < FIRST_PSEUDO_REGISTER
2755             || ! REGNO_QTY_VALID_P (REGNO (x)))
2756           return x;
2757
2758         first = qty_first_reg[REG_QTY (REGNO (x))];
2759         return (first >= FIRST_PSEUDO_REGISTER ? regno_reg_rtx[first]
2760                 : REGNO_REG_CLASS (first) == NO_REGS ? x
2761                 : gen_rtx_REG (qty_mode[REG_QTY (REGNO (x))], first));
2762       }
2763       
2764     default:
2765       break;
2766     }
2767
2768   fmt = GET_RTX_FORMAT (code);
2769   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2770     {
2771       register int j;
2772
2773       if (fmt[i] == 'e')
2774         {
2775           rtx new = canon_reg (XEXP (x, i), insn);
2776           int insn_code;
2777
2778           /* If replacing pseudo with hard reg or vice versa, ensure the
2779              insn remains valid.  Likewise if the insn has MATCH_DUPs.  */
2780           if (insn != 0 && new != 0
2781               && GET_CODE (new) == REG && GET_CODE (XEXP (x, i)) == REG
2782               && (((REGNO (new) < FIRST_PSEUDO_REGISTER)
2783                    != (REGNO (XEXP (x, i)) < FIRST_PSEUDO_REGISTER))
2784                   || (insn_code = recog_memoized (insn)) < 0
2785                   || insn_n_dups[insn_code] > 0))
2786             validate_change (insn, &XEXP (x, i), new, 1);
2787           else
2788             XEXP (x, i) = new;
2789         }
2790       else if (fmt[i] == 'E')
2791         for (j = 0; j < XVECLEN (x, i); j++)
2792           XVECEXP (x, i, j) = canon_reg (XVECEXP (x, i, j), insn);
2793     }
2794
2795   return x;
2796 }
2797 \f
2798 /* LOC is a location within INSN that is an operand address (the contents of
2799    a MEM).  Find the best equivalent address to use that is valid for this
2800    insn.
2801
2802    On most CISC machines, complicated address modes are costly, and rtx_cost
2803    is a good approximation for that cost.  However, most RISC machines have
2804    only a few (usually only one) memory reference formats.  If an address is
2805    valid at all, it is often just as cheap as any other address.  Hence, for
2806    RISC machines, we use the configuration macro `ADDRESS_COST' to compare the
2807    costs of various addresses.  For two addresses of equal cost, choose the one
2808    with the highest `rtx_cost' value as that has the potential of eliminating
2809    the most insns.  For equal costs, we choose the first in the equivalence
2810    class.  Note that we ignore the fact that pseudo registers are cheaper
2811    than hard registers here because we would also prefer the pseudo registers.
2812   */
2813
2814 static void
2815 find_best_addr (insn, loc)
2816      rtx insn;
2817      rtx *loc;
2818 {
2819   struct table_elt *elt;
2820   rtx addr = *loc;
2821 #ifdef ADDRESS_COST
2822   struct table_elt *p;
2823   int found_better = 1;
2824 #endif
2825   int save_do_not_record = do_not_record;
2826   int save_hash_arg_in_memory = hash_arg_in_memory;
2827   int save_hash_arg_in_struct = hash_arg_in_struct;
2828   int addr_volatile;
2829   int regno;
2830   unsigned hash;
2831
2832   /* Do not try to replace constant addresses or addresses of local and
2833      argument slots.  These MEM expressions are made only once and inserted
2834      in many instructions, as well as being used to control symbol table
2835      output.  It is not safe to clobber them.
2836
2837      There are some uncommon cases where the address is already in a register
2838      for some reason, but we cannot take advantage of that because we have
2839      no easy way to unshare the MEM.  In addition, looking up all stack
2840      addresses is costly.  */
2841   if ((GET_CODE (addr) == PLUS
2842        && GET_CODE (XEXP (addr, 0)) == REG
2843        && GET_CODE (XEXP (addr, 1)) == CONST_INT
2844        && (regno = REGNO (XEXP (addr, 0)),
2845            regno == FRAME_POINTER_REGNUM || regno == HARD_FRAME_POINTER_REGNUM
2846            || regno == ARG_POINTER_REGNUM))
2847       || (GET_CODE (addr) == REG
2848           && (regno = REGNO (addr), regno == FRAME_POINTER_REGNUM
2849               || regno == HARD_FRAME_POINTER_REGNUM
2850               || regno == ARG_POINTER_REGNUM))
2851       || GET_CODE (addr) == ADDRESSOF
2852       || CONSTANT_ADDRESS_P (addr))
2853     return;
2854
2855   /* If this address is not simply a register, try to fold it.  This will
2856      sometimes simplify the expression.  Many simplifications
2857      will not be valid, but some, usually applying the associative rule, will
2858      be valid and produce better code.  */
2859   if (GET_CODE (addr) != REG)
2860     {
2861       rtx folded = fold_rtx (copy_rtx (addr), NULL_RTX);
2862
2863       if (1
2864 #ifdef ADDRESS_COST
2865           && (CSE_ADDRESS_COST (folded) < CSE_ADDRESS_COST (addr)
2866               || (CSE_ADDRESS_COST (folded) == CSE_ADDRESS_COST (addr)
2867                   && rtx_cost (folded, MEM) > rtx_cost (addr, MEM)))
2868 #else
2869           && rtx_cost (folded, MEM) < rtx_cost (addr, MEM)
2870 #endif
2871           && validate_change (insn, loc, folded, 0))
2872         addr = folded;
2873     }
2874         
2875   /* If this address is not in the hash table, we can't look for equivalences
2876      of the whole address.  Also, ignore if volatile.  */
2877
2878   do_not_record = 0;
2879   hash = HASH (addr, Pmode);
2880   addr_volatile = do_not_record;
2881   do_not_record = save_do_not_record;
2882   hash_arg_in_memory = save_hash_arg_in_memory;
2883   hash_arg_in_struct = save_hash_arg_in_struct;
2884
2885   if (addr_volatile)
2886     return;
2887
2888   elt = lookup (addr, hash, Pmode);
2889
2890 #ifndef ADDRESS_COST
2891   if (elt)
2892     {
2893       int our_cost = elt->cost;
2894
2895       /* Find the lowest cost below ours that works.  */
2896       for (elt = elt->first_same_value; elt; elt = elt->next_same_value)
2897         if (elt->cost < our_cost
2898             && (GET_CODE (elt->exp) == REG
2899                 || exp_equiv_p (elt->exp, elt->exp, 1, 0))
2900             && validate_change (insn, loc,
2901                                 canon_reg (copy_rtx (elt->exp), NULL_RTX), 0))
2902           return;
2903     }
2904 #else
2905
2906   if (elt)
2907     {
2908       /* We need to find the best (under the criteria documented above) entry
2909          in the class that is valid.  We use the `flag' field to indicate
2910          choices that were invalid and iterate until we can't find a better
2911          one that hasn't already been tried.  */
2912
2913       for (p = elt->first_same_value; p; p = p->next_same_value)
2914         p->flag = 0;
2915
2916       while (found_better)
2917         {
2918           int best_addr_cost = CSE_ADDRESS_COST (*loc);
2919           int best_rtx_cost = (elt->cost + 1) >> 1;
2920           struct table_elt *best_elt = elt; 
2921
2922           found_better = 0;
2923           for (p = elt->first_same_value; p; p = p->next_same_value)
2924             if (! p->flag)
2925               {
2926                 if ((GET_CODE (p->exp) == REG
2927                      || exp_equiv_p (p->exp, p->exp, 1, 0))
2928                     && (CSE_ADDRESS_COST (p->exp) < best_addr_cost
2929                         || (CSE_ADDRESS_COST (p->exp) == best_addr_cost
2930                             && (p->cost + 1) >> 1 > best_rtx_cost)))
2931                   {
2932                     found_better = 1;
2933                     best_addr_cost = CSE_ADDRESS_COST (p->exp);
2934                     best_rtx_cost = (p->cost + 1) >> 1;
2935                     best_elt = p;
2936                   }
2937               }
2938
2939           if (found_better)
2940             {
2941               if (validate_change (insn, loc,
2942                                    canon_reg (copy_rtx (best_elt->exp),
2943                                               NULL_RTX), 0))
2944                 return;
2945               else
2946                 best_elt->flag = 1;
2947             }
2948         }
2949     }
2950
2951   /* If the address is a binary operation with the first operand a register
2952      and the second a constant, do the same as above, but looking for
2953      equivalences of the register.  Then try to simplify before checking for
2954      the best address to use.  This catches a few cases:  First is when we
2955      have REG+const and the register is another REG+const.  We can often merge
2956      the constants and eliminate one insn and one register.  It may also be
2957      that a machine has a cheap REG+REG+const.  Finally, this improves the
2958      code on the Alpha for unaligned byte stores.  */
2959
2960   if (flag_expensive_optimizations
2961       && (GET_RTX_CLASS (GET_CODE (*loc)) == '2'
2962           || GET_RTX_CLASS (GET_CODE (*loc)) == 'c')
2963       && GET_CODE (XEXP (*loc, 0)) == REG
2964       && GET_CODE (XEXP (*loc, 1)) == CONST_INT)
2965     {
2966       rtx c = XEXP (*loc, 1);
2967
2968       do_not_record = 0;
2969       hash = HASH (XEXP (*loc, 0), Pmode);
2970       do_not_record = save_do_not_record;
2971       hash_arg_in_memory = save_hash_arg_in_memory;
2972       hash_arg_in_struct = save_hash_arg_in_struct;
2973
2974       elt = lookup (XEXP (*loc, 0), hash, Pmode);
2975       if (elt == 0)
2976         return;
2977
2978       /* We need to find the best (under the criteria documented above) entry
2979          in the class that is valid.  We use the `flag' field to indicate
2980          choices that were invalid and iterate until we can't find a better
2981          one that hasn't already been tried.  */
2982
2983       for (p = elt->first_same_value; p; p = p->next_same_value)
2984         p->flag = 0;
2985
2986       while (found_better)
2987         {
2988           int best_addr_cost = CSE_ADDRESS_COST (*loc);
2989           int best_rtx_cost = (COST (*loc) + 1) >> 1;
2990           struct table_elt *best_elt = elt; 
2991           rtx best_rtx = *loc;
2992           int count;
2993
2994           /* This is at worst case an O(n^2) algorithm, so limit our search
2995              to the first 32 elements on the list.  This avoids trouble
2996              compiling code with very long basic blocks that can easily
2997              call cse_gen_binary so many times that we run out of memory.  */
2998
2999           found_better = 0;
3000           for (p = elt->first_same_value, count = 0;
3001                p && count < 32;
3002                p = p->next_same_value, count++)
3003             if (! p->flag
3004                 && (GET_CODE (p->exp) == REG
3005                     || exp_equiv_p (p->exp, p->exp, 1, 0)))
3006               {
3007                 rtx new = cse_gen_binary (GET_CODE (*loc), Pmode, p->exp, c);
3008
3009                 if ((CSE_ADDRESS_COST (new) < best_addr_cost
3010                     || (CSE_ADDRESS_COST (new) == best_addr_cost
3011                         && (COST (new) + 1) >> 1 > best_rtx_cost)))
3012                   {
3013                     found_better = 1;
3014                     best_addr_cost = CSE_ADDRESS_COST (new);
3015                     best_rtx_cost = (COST (new) + 1) >> 1;
3016                     best_elt = p;
3017                     best_rtx = new;
3018                   }
3019               }
3020
3021           if (found_better)
3022             {
3023               if (validate_change (insn, loc,
3024                                    canon_reg (copy_rtx (best_rtx),
3025                                               NULL_RTX), 0))
3026                 return;
3027               else
3028                 best_elt->flag = 1;
3029             }
3030         }
3031     }
3032 #endif
3033 }
3034 \f
3035 /* Given an operation (CODE, *PARG1, *PARG2), where code is a comparison
3036    operation (EQ, NE, GT, etc.), follow it back through the hash table and
3037    what values are being compared.
3038
3039    *PARG1 and *PARG2 are updated to contain the rtx representing the values
3040    actually being compared.  For example, if *PARG1 was (cc0) and *PARG2
3041    was (const_int 0), *PARG1 and *PARG2 will be set to the objects that were
3042    compared to produce cc0.
3043
3044    The return value is the comparison operator and is either the code of
3045    A or the code corresponding to the inverse of the comparison.  */
3046
3047 static enum rtx_code
3048 find_comparison_args (code, parg1, parg2, pmode1, pmode2)
3049      enum rtx_code code;
3050      rtx *parg1, *parg2;
3051      enum machine_mode *pmode1, *pmode2;
3052 {
3053   rtx arg1, arg2;
3054
3055   arg1 = *parg1, arg2 = *parg2;
3056
3057   /* If ARG2 is const0_rtx, see what ARG1 is equivalent to.  */
3058
3059   while (arg2 == CONST0_RTX (GET_MODE (arg1)))
3060     {
3061       /* Set non-zero when we find something of interest.  */
3062       rtx x = 0;
3063       int reverse_code = 0;
3064       struct table_elt *p = 0;
3065
3066       /* If arg1 is a COMPARE, extract the comparison arguments from it.
3067          On machines with CC0, this is the only case that can occur, since
3068          fold_rtx will return the COMPARE or item being compared with zero
3069          when given CC0.  */
3070
3071       if (GET_CODE (arg1) == COMPARE && arg2 == const0_rtx)
3072         x = arg1;
3073
3074       /* If ARG1 is a comparison operator and CODE is testing for
3075          STORE_FLAG_VALUE, get the inner arguments.  */
3076
3077       else if (GET_RTX_CLASS (GET_CODE (arg1)) == '<')
3078         {
3079           if (code == NE
3080               || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_INT
3081                   && code == LT && STORE_FLAG_VALUE == -1)
3082 #ifdef FLOAT_STORE_FLAG_VALUE
3083               || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_FLOAT
3084                   && FLOAT_STORE_FLAG_VALUE < 0)
3085 #endif
3086               )
3087             x = arg1;
3088           else if (code == EQ
3089                    || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_INT
3090                        && code == GE && STORE_FLAG_VALUE == -1)
3091 #ifdef FLOAT_STORE_FLAG_VALUE
3092                    || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_FLOAT
3093                        && FLOAT_STORE_FLAG_VALUE < 0)
3094 #endif
3095                    )
3096             x = arg1, reverse_code = 1;
3097         }
3098
3099       /* ??? We could also check for
3100
3101          (ne (and (eq (...) (const_int 1))) (const_int 0))
3102
3103          and related forms, but let's wait until we see them occurring.  */
3104
3105       if (x == 0)
3106         /* Look up ARG1 in the hash table and see if it has an equivalence
3107            that lets us see what is being compared.  */
3108         p = lookup (arg1, safe_hash (arg1, GET_MODE (arg1)) % NBUCKETS,
3109                     GET_MODE (arg1));
3110       if (p) p = p->first_same_value;
3111
3112       for (; p; p = p->next_same_value)
3113         {
3114           enum machine_mode inner_mode = GET_MODE (p->exp);
3115
3116           /* If the entry isn't valid, skip it.  */
3117           if (! exp_equiv_p (p->exp, p->exp, 1, 0))
3118             continue;
3119
3120           if (GET_CODE (p->exp) == COMPARE
3121               /* Another possibility is that this machine has a compare insn
3122                  that includes the comparison code.  In that case, ARG1 would
3123                  be equivalent to a comparison operation that would set ARG1 to
3124                  either STORE_FLAG_VALUE or zero.  If this is an NE operation,
3125                  ORIG_CODE is the actual comparison being done; if it is an EQ,
3126                  we must reverse ORIG_CODE.  On machine with a negative value
3127                  for STORE_FLAG_VALUE, also look at LT and GE operations.  */
3128               || ((code == NE
3129                    || (code == LT
3130                        && GET_MODE_CLASS (inner_mode) == MODE_INT
3131                        && (GET_MODE_BITSIZE (inner_mode)
3132                            <= HOST_BITS_PER_WIDE_INT)
3133                        && (STORE_FLAG_VALUE
3134                            & ((HOST_WIDE_INT) 1
3135                               << (GET_MODE_BITSIZE (inner_mode) - 1))))
3136 #ifdef FLOAT_STORE_FLAG_VALUE
3137                    || (code == LT
3138                        && GET_MODE_CLASS (inner_mode) == MODE_FLOAT
3139                        && FLOAT_STORE_FLAG_VALUE < 0)
3140 #endif
3141                    )
3142                   && GET_RTX_CLASS (GET_CODE (p->exp)) == '<'))
3143             {
3144               x = p->exp;
3145               break;
3146             }
3147           else if ((code == EQ
3148                     || (code == GE
3149                         && GET_MODE_CLASS (inner_mode) == MODE_INT
3150                         && (GET_MODE_BITSIZE (inner_mode)
3151                             <= HOST_BITS_PER_WIDE_INT)
3152                         && (STORE_FLAG_VALUE
3153                             & ((HOST_WIDE_INT) 1
3154                                << (GET_MODE_BITSIZE (inner_mode) - 1))))
3155 #ifdef FLOAT_STORE_FLAG_VALUE
3156                     || (code == GE
3157                         && GET_MODE_CLASS (inner_mode) == MODE_FLOAT
3158                         && FLOAT_STORE_FLAG_VALUE < 0)
3159 #endif
3160                     )
3161                    && GET_RTX_CLASS (GET_CODE (p->exp)) == '<')
3162             {
3163               reverse_code = 1;
3164               x = p->exp;
3165               break;
3166             }
3167
3168           /* If this is fp + constant, the equivalent is a better operand since
3169              it may let us predict the value of the comparison.  */
3170           else if (NONZERO_BASE_PLUS_P (p->exp))
3171             {
3172               arg1 = p->exp;
3173               continue;
3174             }
3175         }
3176
3177       /* If we didn't find a useful equivalence for ARG1, we are done.
3178          Otherwise, set up for the next iteration.  */
3179       if (x == 0)
3180         break;
3181
3182       arg1 = XEXP (x, 0),  arg2 = XEXP (x, 1);
3183       if (GET_RTX_CLASS (GET_CODE (x)) == '<')
3184         code = GET_CODE (x);
3185
3186       if (reverse_code)
3187         code = reverse_condition (code);
3188     }
3189
3190   /* Return our results.  Return the modes from before fold_rtx
3191      because fold_rtx might produce const_int, and then it's too late.  */
3192   *pmode1 = GET_MODE (arg1), *pmode2 = GET_MODE (arg2);
3193   *parg1 = fold_rtx (arg1, 0), *parg2 = fold_rtx (arg2, 0);
3194
3195   return code;
3196 }
3197 \f
3198 /* Try to simplify a unary operation CODE whose output mode is to be
3199    MODE with input operand OP whose mode was originally OP_MODE.
3200    Return zero if no simplification can be made.  */
3201
3202 rtx
3203 simplify_unary_operation (code, mode, op, op_mode)
3204      enum rtx_code code;
3205      enum machine_mode mode;
3206      rtx op;
3207      enum machine_mode op_mode;
3208 {
3209   register int width = GET_MODE_BITSIZE (mode);
3210
3211   /* The order of these tests is critical so that, for example, we don't
3212      check the wrong mode (input vs. output) for a conversion operation,
3213      such as FIX.  At some point, this should be simplified.  */
3214
3215 #if !defined(REAL_IS_NOT_DOUBLE) || defined(REAL_ARITHMETIC)
3216
3217   if (code == FLOAT && GET_MODE (op) == VOIDmode
3218       && (GET_CODE (op) == CONST_DOUBLE || GET_CODE (op) == CONST_INT))
3219     {
3220       HOST_WIDE_INT hv, lv;
3221       REAL_VALUE_TYPE d;
3222
3223       if (GET_CODE (op) == CONST_INT)
3224         lv = INTVAL (op), hv = INTVAL (op) < 0 ? -1 : 0;
3225       else
3226         lv = CONST_DOUBLE_LOW (op),  hv = CONST_DOUBLE_HIGH (op);
3227
3228 #ifdef REAL_ARITHMETIC
3229       REAL_VALUE_FROM_INT (d, lv, hv, mode);
3230 #else
3231       if (hv < 0)
3232         {
3233           d = (double) (~ hv);
3234           d *= ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
3235                 * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
3236           d += (double) (unsigned HOST_WIDE_INT) (~ lv);
3237           d = (- d - 1.0);
3238         }
3239       else
3240         {
3241           d = (double) hv;
3242           d *= ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
3243                 * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
3244           d += (double) (unsigned HOST_WIDE_INT) lv;
3245         }
3246 #endif  /* REAL_ARITHMETIC */
3247       d = real_value_truncate (mode, d);
3248       return CONST_DOUBLE_FROM_REAL_VALUE (d, mode);
3249     }
3250   else if (code == UNSIGNED_FLOAT && GET_MODE (op) == VOIDmode
3251            && (GET_CODE (op) == CONST_DOUBLE || GET_CODE (op) == CONST_INT))
3252     {
3253       HOST_WIDE_INT hv, lv;
3254       REAL_VALUE_TYPE d;
3255
3256       if (GET_CODE (op) == CONST_INT)
3257         lv = INTVAL (op), hv = INTVAL (op) < 0 ? -1 : 0;
3258       else
3259         lv = CONST_DOUBLE_LOW (op),  hv = CONST_DOUBLE_HIGH (op);
3260
3261       if (op_mode == VOIDmode)
3262         {
3263           /* We don't know how to interpret negative-looking numbers in
3264              this case, so don't try to fold those.  */
3265           if (hv < 0)
3266             return 0;
3267         }
3268       else if (GET_MODE_BITSIZE (op_mode) >= HOST_BITS_PER_WIDE_INT * 2)
3269         ;
3270       else
3271         hv = 0, lv &= GET_MODE_MASK (op_mode);
3272
3273 #ifdef REAL_ARITHMETIC
3274       REAL_VALUE_FROM_UNSIGNED_INT (d, lv, hv, mode);
3275 #else
3276
3277       d = (double) (unsigned HOST_WIDE_INT) hv;
3278       d *= ((double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2))
3279             * (double) ((HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)));
3280       d += (double) (unsigned HOST_WIDE_INT) lv;
3281 #endif  /* REAL_ARITHMETIC */
3282       d = real_value_truncate (mode, d);
3283       return CONST_DOUBLE_FROM_REAL_VALUE (d, mode);
3284     }
3285 #endif
3286
3287   if (GET_CODE (op) == CONST_INT
3288       && width <= HOST_BITS_PER_WIDE_INT && width > 0)
3289     {
3290       register HOST_WIDE_INT arg0 = INTVAL (op);
3291       register HOST_WIDE_INT val;
3292
3293       switch (code)
3294         {
3295         case NOT:
3296           val = ~ arg0;
3297           break;
3298
3299         case NEG:
3300           val = - arg0;
3301           break;
3302
3303         case ABS:
3304           val = (arg0 >= 0 ? arg0 : - arg0);
3305           break;
3306
3307         case FFS:
3308           /* Don't use ffs here.  Instead, get low order bit and then its
3309              number.  If arg0 is zero, this will return 0, as desired.  */
3310           arg0 &= GET_MODE_MASK (mode);
3311           val = exact_log2 (arg0 & (- arg0)) + 1;
3312           break;
3313
3314         case TRUNCATE:
3315           val = arg0;
3316           break;
3317
3318         case ZERO_EXTEND:
3319           if (op_mode == VOIDmode)
3320             op_mode = mode;
3321           if (GET_MODE_BITSIZE (op_mode) == HOST_BITS_PER_WIDE_INT)
3322             {
3323               /* If we were really extending the mode,
3324                  we would have to distinguish between zero-extension
3325                  and sign-extension.  */
3326               if (width != GET_MODE_BITSIZE (op_mode))
3327                 abort ();
3328               val = arg0;
3329             }
3330           else if (GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_WIDE_INT)
3331             val = arg0 & ~((HOST_WIDE_INT) (-1) << GET_MODE_BITSIZE (op_mode));
3332           else
3333             return 0;
3334           break;
3335
3336         case SIGN_EXTEND:
3337           if (op_mode == VOIDmode)
3338             op_mode = mode;
3339           if (GET_MODE_BITSIZE (op_mode) == HOST_BITS_PER_WIDE_INT)
3340             {
3341               /* If we were really extending the mode,
3342                  we would have to distinguish between zero-extension
3343                  and sign-extension.  */
3344               if (width != GET_MODE_BITSIZE (op_mode))
3345                 abort ();
3346               val = arg0;
3347             }
3348           else if (GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_WIDE_INT)
3349             {
3350               val
3351                 = arg0 & ~((HOST_WIDE_INT) (-1) << GET_MODE_BITSIZE (op_mode));
3352               if (val
3353                   & ((HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (op_mode) - 1)))
3354                 val -= (HOST_WIDE_INT) 1 << GET_MODE_BITSIZE (op_mode);
3355             }
3356           else
3357             return 0;
3358           break;
3359
3360         case SQRT:
3361           return 0;
3362
3363         default:
3364           abort ();
3365         }
3366
3367       val = trunc_int_for_mode (val, mode);
3368
3369       return GEN_INT (val);
3370     }
3371
3372   /* We can do some operations on integer CONST_DOUBLEs.  Also allow
3373      for a DImode operation on a CONST_INT.  */
3374   else if (GET_MODE (op) == VOIDmode && width <= HOST_BITS_PER_INT * 2
3375            && (GET_CODE (op) == CONST_DOUBLE || GET_CODE (op) == CONST_INT))
3376     {
3377       HOST_WIDE_INT l1, h1, lv, hv;
3378
3379       if (GET_CODE (op) == CONST_DOUBLE)
3380         l1 = CONST_DOUBLE_LOW (op), h1 = CONST_DOUBLE_HIGH (op);
3381       else
3382         l1 = INTVAL (op), h1 = l1 < 0 ? -1 : 0;
3383
3384       switch (code)
3385         {
3386         case NOT:
3387           lv = ~ l1;
3388           hv = ~ h1;
3389           break;
3390
3391         case NEG:
3392           neg_double (l1, h1, &lv, &hv);
3393           break;
3394
3395         case ABS:
3396           if (h1 < 0)
3397             neg_double (l1, h1, &lv, &hv);
3398           else
3399             lv = l1, hv = h1;
3400           break;
3401
3402         case FFS:
3403           hv = 0;
3404           if (l1 == 0)
3405             lv = HOST_BITS_PER_WIDE_INT + exact_log2 (h1 & (-h1)) + 1;
3406           else
3407             lv = exact_log2 (l1 & (-l1)) + 1;
3408           break;
3409
3410         case TRUNCATE:
3411           /* This is just a change-of-mode, so do nothing.  */
3412           lv = l1, hv = h1;
3413           break;
3414
3415         case ZERO_EXTEND:
3416           if (op_mode == VOIDmode
3417               || GET_MODE_BITSIZE (op_mode) > HOST_BITS_PER_WIDE_INT)
3418             return 0;
3419
3420           hv = 0;
3421           lv = l1 & GET_MODE_MASK (op_mode);
3422           break;
3423
3424         case SIGN_EXTEND:
3425           if (op_mode == VOIDmode
3426               || GET_MODE_BITSIZE (op_mode) > HOST_BITS_PER_WIDE_INT)
3427             return 0;
3428           else
3429             {
3430               lv = l1 & GET_MODE_MASK (op_mode);
3431               if (GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_WIDE_INT
3432                   && (lv & ((HOST_WIDE_INT) 1
3433                             << (GET_MODE_BITSIZE (op_mode) - 1))) != 0)
3434                 lv -= (HOST_WIDE_INT) 1 << GET_MODE_BITSIZE (op_mode);
3435
3436               hv = (lv < 0) ? ~ (HOST_WIDE_INT) 0 : 0;
3437             }
3438           break;
3439
3440         case SQRT:
3441           return 0;
3442
3443         default:
3444           return 0;
3445         }
3446
3447       return immed_double_const (lv, hv, mode);
3448     }
3449
3450 #if ! defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
3451   else if (GET_CODE (op) == CONST_DOUBLE
3452            && GET_MODE_CLASS (mode) == MODE_FLOAT)
3453     {
3454       REAL_VALUE_TYPE d;
3455       jmp_buf handler;
3456       rtx x;
3457
3458       if (setjmp (handler))
3459         /* There used to be a warning here, but that is inadvisable.
3460            People may want to cause traps, and the natural way
3461            to do it should not get a warning.  */
3462         return 0;
3463
3464       set_float_handler (handler);
3465
3466       REAL_VALUE_FROM_CONST_DOUBLE (d, op);
3467
3468       switch (code)
3469         {
3470         case NEG:
3471           d = REAL_VALUE_NEGATE (d);
3472           break;
3473
3474         case ABS:
3475           if (REAL_VALUE_NEGATIVE (d))
3476             d = REAL_VALUE_NEGATE (d);
3477           break;
3478
3479         case FLOAT_TRUNCATE:
3480           d = real_value_truncate (mode, d);
3481           break;
3482
3483         case FLOAT_EXTEND:
3484           /* All this does is change the mode.  */
3485           break;
3486
3487         case FIX:
3488           d = REAL_VALUE_RNDZINT (d);
3489           break;
3490
3491         case UNSIGNED_FIX:
3492           d = REAL_VALUE_UNSIGNED_RNDZINT (d);
3493           break;
3494
3495         case SQRT:
3496           return 0;
3497
3498         default:
3499           abort ();
3500         }
3501
3502       x = CONST_DOUBLE_FROM_REAL_VALUE (d, mode);
3503       set_float_handler (NULL_PTR);
3504       return x;
3505     }
3506
3507   else if (GET_CODE (op) == CONST_DOUBLE
3508            && GET_MODE_CLASS (GET_MODE (op)) == MODE_FLOAT
3509            && GET_MODE_CLASS (mode) == MODE_INT
3510            && width <= HOST_BITS_PER_WIDE_INT && width > 0)
3511     {
3512       REAL_VALUE_TYPE d;
3513       jmp_buf handler;
3514       HOST_WIDE_INT val;
3515
3516       if (setjmp (handler))
3517         return 0;
3518
3519       set_float_handler (handler);
3520
3521       REAL_VALUE_FROM_CONST_DOUBLE (d, op);
3522
3523       switch (code)
3524         {
3525         case FIX:
3526           val = REAL_VALUE_FIX (d);
3527           break;
3528
3529         case UNSIGNED_FIX:
3530           val = REAL_VALUE_UNSIGNED_FIX (d);
3531           break;
3532
3533         default:
3534           abort ();
3535         }
3536
3537       set_float_handler (NULL_PTR);
3538
3539       val = trunc_int_for_mode (val, mode);
3540
3541       return GEN_INT (val);
3542     }
3543 #endif
3544   /* This was formerly used only for non-IEEE float.
3545      eggert@twinsun.com says it is safe for IEEE also.  */
3546   else
3547     {
3548       /* There are some simplifications we can do even if the operands
3549          aren't constant.  */
3550       switch (code)
3551         {
3552         case NEG:
3553         case NOT:
3554           /* (not (not X)) == X, similarly for NEG.  */
3555           if (GET_CODE (op) == code)
3556             return XEXP (op, 0);
3557           break;
3558
3559         case SIGN_EXTEND:
3560           /* (sign_extend (truncate (minus (label_ref L1) (label_ref L2))))
3561              becomes just the MINUS if its mode is MODE.  This allows
3562              folding switch statements on machines using casesi (such as
3563              the Vax).  */
3564           if (GET_CODE (op) == TRUNCATE
3565               && GET_MODE (XEXP (op, 0)) == mode
3566               && GET_CODE (XEXP (op, 0)) == MINUS
3567               && GET_CODE (XEXP (XEXP (op, 0), 0)) == LABEL_REF
3568               && GET_CODE (XEXP (XEXP (op, 0), 1)) == LABEL_REF)
3569             return XEXP (op, 0);
3570
3571 #ifdef POINTERS_EXTEND_UNSIGNED
3572           if (! POINTERS_EXTEND_UNSIGNED
3573               && mode == Pmode && GET_MODE (op) == ptr_mode
3574               && CONSTANT_P (op))
3575             return convert_memory_address (Pmode, op);
3576 #endif
3577           break;
3578
3579 #ifdef POINTERS_EXTEND_UNSIGNED
3580         case ZERO_EXTEND:
3581           if (POINTERS_EXTEND_UNSIGNED
3582               && mode == Pmode && GET_MODE (op) == ptr_mode
3583               && CONSTANT_P (op))
3584             return convert_memory_address (Pmode, op);
3585           break;
3586 #endif
3587           
3588         default:
3589           break;
3590         }
3591
3592       return 0;
3593     }
3594 }
3595 \f
3596 /* Simplify a binary operation CODE with result mode MODE, operating on OP0
3597    and OP1.  Return 0 if no simplification is possible.
3598
3599    Don't use this for relational operations such as EQ or LT.
3600    Use simplify_relational_operation instead.  */
3601
3602 rtx
3603 simplify_binary_operation (code, mode, op0, op1)
3604      enum rtx_code code;
3605      enum machine_mode mode;
3606      rtx op0, op1;
3607 {
3608   register HOST_WIDE_INT arg0, arg1, arg0s, arg1s;
3609   HOST_WIDE_INT val;
3610   int width = GET_MODE_BITSIZE (mode);
3611   rtx tem;
3612
3613   /* Relational operations don't work here.  We must know the mode
3614      of the operands in order to do the comparison correctly.
3615      Assuming a full word can give incorrect results.
3616      Consider comparing 128 with -128 in QImode.  */
3617
3618   if (GET_RTX_CLASS (code) == '<')
3619     abort ();
3620
3621 #if ! defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
3622   if (GET_MODE_CLASS (mode) == MODE_FLOAT
3623       && GET_CODE (op0) == CONST_DOUBLE && GET_CODE (op1) == CONST_DOUBLE
3624       && mode == GET_MODE (op0) && mode == GET_MODE (op1))
3625     {
3626       REAL_VALUE_TYPE f0, f1, value;
3627       jmp_buf handler;
3628
3629       if (setjmp (handler))
3630         return 0;
3631
3632       set_float_handler (handler);
3633
3634       REAL_VALUE_FROM_CONST_DOUBLE (f0, op0);
3635       REAL_VALUE_FROM_CONST_DOUBLE (f1, op1);
3636       f0 = real_value_truncate (mode, f0);
3637       f1 = real_value_truncate (mode, f1);
3638
3639 #ifdef REAL_ARITHMETIC
3640 #ifndef REAL_INFINITY
3641       if (code == DIV && REAL_VALUES_EQUAL (f1, dconst0))
3642         return 0;
3643 #endif
3644       REAL_ARITHMETIC (value, rtx_to_tree_code (code), f0, f1);
3645 #else
3646       switch (code)
3647         {
3648         case PLUS:
3649           value = f0 + f1;
3650           break;
3651         case MINUS:
3652           value = f0 - f1;
3653           break;
3654         case MULT:
3655           value = f0 * f1;
3656           break;
3657         case DIV:
3658 #ifndef REAL_INFINITY
3659           if (f1 == 0)
3660             return 0;
3661 #endif
3662           value = f0 / f1;
3663           break;
3664         case SMIN:
3665           value = MIN (f0, f1);
3666           break;
3667         case SMAX:
3668           value = MAX (f0, f1);
3669           break;
3670         default:
3671           abort ();
3672         }
3673 #endif
3674
3675       value = real_value_truncate (mode, value);
3676       set_float_handler (NULL_PTR);
3677       return CONST_DOUBLE_FROM_REAL_VALUE (value, mode);
3678     }
3679 #endif  /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
3680
3681   /* We can fold some multi-word operations.  */
3682   if (GET_MODE_CLASS (mode) == MODE_INT
3683       && width == HOST_BITS_PER_WIDE_INT * 2
3684       && (GET_CODE (op0) == CONST_DOUBLE || GET_CODE (op0) == CONST_INT)
3685       && (GET_CODE (op1) == CONST_DOUBLE || GET_CODE (op1) == CONST_INT))
3686     {
3687       HOST_WIDE_INT l1, l2, h1, h2, lv, hv;
3688
3689       if (GET_CODE (op0) == CONST_DOUBLE)
3690         l1 = CONST_DOUBLE_LOW (op0), h1 = CONST_DOUBLE_HIGH (op0);
3691       else
3692         l1 = INTVAL (op0), h1 = l1 < 0 ? -1 : 0;
3693
3694       if (GET_CODE (op1) == CONST_DOUBLE)
3695         l2 = CONST_DOUBLE_LOW (op1), h2 = CONST_DOUBLE_HIGH (op1);
3696       else
3697         l2 = INTVAL (op1), h2 = l2 < 0 ? -1 : 0;
3698
3699       switch (code)
3700         {
3701         case MINUS:
3702           /* A - B == A + (-B).  */
3703           neg_double (l2, h2, &lv, &hv);
3704           l2 = lv, h2 = hv;
3705
3706           /* .. fall through ...  */
3707
3708         case PLUS:
3709           add_double (l1, h1, l2, h2, &lv, &hv);
3710           break;
3711
3712         case MULT:
3713           mul_double (l1, h1, l2, h2, &lv, &hv);
3714           break;
3715
3716         case DIV:  case MOD:   case UDIV:  case UMOD:
3717           /* We'd need to include tree.h to do this and it doesn't seem worth
3718              it.  */
3719           return 0;
3720
3721         case AND:
3722           lv = l1 & l2, hv = h1 & h2;
3723           break;
3724
3725         case IOR:
3726           lv = l1 | l2, hv = h1 | h2;
3727           break;
3728
3729         case XOR:
3730           lv = l1 ^ l2, hv = h1 ^ h2;
3731           break;
3732
3733         case SMIN:
3734           if (h1 < h2
3735               || (h1 == h2
3736                   && ((unsigned HOST_WIDE_INT) l1
3737                       < (unsigned HOST_WIDE_INT) l2)))
3738             lv = l1, hv = h1;
3739           else
3740             lv = l2, hv = h2;
3741           break;
3742
3743         case SMAX:
3744           if (h1 > h2
3745               || (h1 == h2
3746                   && ((unsigned HOST_WIDE_INT) l1
3747                       > (unsigned HOST_WIDE_INT) l2)))
3748             lv = l1, hv = h1;
3749           else
3750             lv = l2, hv = h2;
3751           break;
3752
3753         case UMIN:
3754           if ((unsigned HOST_WIDE_INT) h1 < (unsigned HOST_WIDE_INT) h2
3755               || (h1 == h2
3756                   && ((unsigned HOST_WIDE_INT) l1
3757                       < (unsigned HOST_WIDE_INT) l2)))
3758             lv = l1, hv = h1;
3759           else
3760             lv = l2, hv = h2;
3761           break;
3762
3763         case UMAX:
3764           if ((unsigned HOST_WIDE_INT) h1 > (unsigned HOST_WIDE_INT) h2
3765               || (h1 == h2
3766                   && ((unsigned HOST_WIDE_INT) l1
3767                       > (unsigned HOST_WIDE_INT) l2)))
3768             lv = l1, hv = h1;
3769           else
3770             lv = l2, hv = h2;
3771           break;
3772
3773         case LSHIFTRT:   case ASHIFTRT:
3774         case ASHIFT:
3775         case ROTATE:     case ROTATERT:
3776 #ifdef SHIFT_COUNT_TRUNCATED
3777           if (SHIFT_COUNT_TRUNCATED)
3778             l2 &= (GET_MODE_BITSIZE (mode) - 1), h2 = 0;
3779 #endif
3780
3781           if (h2 != 0 || l2 < 0 || l2 >= GET_MODE_BITSIZE (mode))
3782             return 0;
3783
3784           if (code == LSHIFTRT || code == ASHIFTRT)
3785             rshift_double (l1, h1, l2, GET_MODE_BITSIZE (mode), &lv, &hv,
3786                            code == ASHIFTRT);
3787           else if (code == ASHIFT)
3788             lshift_double (l1, h1, l2, GET_MODE_BITSIZE (mode), &lv, &hv, 1);
3789           else if (code == ROTATE)
3790             lrotate_double (l1, h1, l2, GET_MODE_BITSIZE (mode), &lv, &hv);
3791           else /* code == ROTATERT */
3792             rrotate_double (l1, h1, l2, GET_MODE_BITSIZE (mode), &lv, &hv);
3793           break;
3794
3795         default:
3796           return 0;
3797         }
3798
3799       return immed_double_const (lv, hv, mode);
3800     }
3801
3802   if (GET_CODE (op0) != CONST_INT || GET_CODE (op1) != CONST_INT
3803       || width > HOST_BITS_PER_WIDE_INT || width == 0)
3804     {
3805       /* Even if we can't compute a constant result,
3806          there are some cases worth simplifying.  */
3807
3808       switch (code)
3809         {
3810         case PLUS:
3811           /* In IEEE floating point, x+0 is not the same as x.  Similarly
3812              for the other optimizations below.  */
3813           if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
3814               && FLOAT_MODE_P (mode) && ! flag_fast_math)
3815             break;
3816
3817           if (op1 == CONST0_RTX (mode))
3818             return op0;
3819
3820           /* ((-a) + b) -> (b - a) and similarly for (a + (-b)) */
3821           if (GET_CODE (op0) == NEG)
3822             return cse_gen_binary (MINUS, mode, op1, XEXP (op0, 0));
3823           else if (GET_CODE (op1) == NEG)
3824             return cse_gen_binary (MINUS, mode, op0, XEXP (op1, 0));
3825
3826           /* Handle both-operands-constant cases.  We can only add
3827              CONST_INTs to constants since the sum of relocatable symbols
3828              can't be handled by most assemblers.  Don't add CONST_INT
3829              to CONST_INT since overflow won't be computed properly if wider
3830              than HOST_BITS_PER_WIDE_INT.  */
3831
3832           if (CONSTANT_P (op0) && GET_MODE (op0) != VOIDmode
3833               && GET_CODE (op1) == CONST_INT)
3834             return plus_constant (op0, INTVAL (op1));
3835           else if (CONSTANT_P (op1) && GET_MODE (op1) != VOIDmode
3836                    && GET_CODE (op0) == CONST_INT)
3837             return plus_constant (op1, INTVAL (op0));
3838
3839           /* See if this is something like X * C - X or vice versa or
3840              if the multiplication is written as a shift.  If so, we can
3841              distribute and make a new multiply, shift, or maybe just
3842              have X (if C is 2 in the example above).  But don't make
3843              real multiply if we didn't have one before.  */
3844
3845           if (! FLOAT_MODE_P (mode))
3846             {
3847               HOST_WIDE_INT coeff0 = 1, coeff1 = 1;
3848               rtx lhs = op0, rhs = op1;
3849               int had_mult = 0;
3850
3851               if (GET_CODE (lhs) == NEG)
3852                 coeff0 = -1, lhs = XEXP (lhs, 0);
3853               else if (GET_CODE (lhs) == MULT
3854                        && GET_CODE (XEXP (lhs, 1)) == CONST_INT)
3855                 {
3856                   coeff0 = INTVAL (XEXP (lhs, 1)), lhs = XEXP (lhs, 0);
3857                   had_mult = 1;
3858                 }
3859               else if (GET_CODE (lhs) == ASHIFT
3860                        && GET_CODE (XEXP (lhs, 1)) == CONST_INT
3861                        && INTVAL (XEXP (lhs, 1)) >= 0
3862                        && INTVAL (XEXP (lhs, 1)) < HOST_BITS_PER_WIDE_INT)
3863                 {
3864                   coeff0 = ((HOST_WIDE_INT) 1) << INTVAL (XEXP (lhs, 1));
3865                   lhs = XEXP (lhs, 0);
3866                 }
3867
3868               if (GET_CODE (rhs) == NEG)
3869                 coeff1 = -1, rhs = XEXP (rhs, 0);
3870               else if (GET_CODE (rhs) == MULT
3871                        && GET_CODE (XEXP (rhs, 1)) == CONST_INT)
3872                 {
3873                   coeff1 = INTVAL (XEXP (rhs, 1)), rhs = XEXP (rhs, 0);
3874                   had_mult = 1;
3875                 }
3876               else if (GET_CODE (rhs) == ASHIFT
3877                        && GET_CODE (XEXP (rhs, 1)) == CONST_INT
3878                        && INTVAL (XEXP (rhs, 1)) >= 0
3879                        && INTVAL (XEXP (rhs, 1)) < HOST_BITS_PER_WIDE_INT)
3880                 {
3881                   coeff1 = ((HOST_WIDE_INT) 1) << INTVAL (XEXP (rhs, 1));
3882                   rhs = XEXP (rhs, 0);
3883                 }
3884
3885               if (rtx_equal_p (lhs, rhs))
3886                 {
3887                   tem = cse_gen_binary (MULT, mode, lhs,
3888                                         GEN_INT (coeff0 + coeff1));
3889                   return (GET_CODE (tem) == MULT && ! had_mult) ? 0 : tem;
3890                 }
3891             }
3892
3893           /* If one of the operands is a PLUS or a MINUS, see if we can
3894              simplify this by the associative law. 
3895              Don't use the associative law for floating point.
3896              The inaccuracy makes it nonassociative,
3897              and subtle programs can break if operations are associated.  */
3898
3899           if (INTEGRAL_MODE_P (mode)
3900               && (GET_CODE (op0) == PLUS || GET_CODE (op0) == MINUS
3901                   || GET_CODE (op1) == PLUS || GET_CODE (op1) == MINUS)
3902               && (tem = simplify_plus_minus (code, mode, op0, op1)) != 0)
3903             return tem;
3904           break;
3905
3906         case COMPARE:
3907 #ifdef HAVE_cc0
3908           /* Convert (compare FOO (const_int 0)) to FOO unless we aren't
3909              using cc0, in which case we want to leave it as a COMPARE
3910              so we can distinguish it from a register-register-copy.
3911
3912              In IEEE floating point, x-0 is not the same as x.  */
3913
3914           if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
3915                || ! FLOAT_MODE_P (mode) || flag_fast_math)
3916               && op1 == CONST0_RTX (mode))
3917             return op0;
3918 #else
3919           /* Do nothing here.  */
3920 #endif
3921           break;
3922               
3923         case MINUS:
3924           /* None of these optimizations can be done for IEEE
3925              floating point.  */
3926           if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
3927               && FLOAT_MODE_P (mode) && ! flag_fast_math)
3928             break;
3929
3930           /* We can't assume x-x is 0 even with non-IEEE floating point,
3931              but since it is zero except in very strange circumstances, we
3932              will treat it as zero with -ffast-math.  */
3933           if (rtx_equal_p (op0, op1)
3934               && ! side_effects_p (op0)
3935               && (! FLOAT_MODE_P (mode) || flag_fast_math))
3936             return CONST0_RTX (mode);
3937
3938           /* Change subtraction from zero into negation.  */
3939           if (op0 == CONST0_RTX (mode))
3940             return gen_rtx_NEG (mode, op1);
3941
3942           /* (-1 - a) is ~a.  */
3943           if (op0 == constm1_rtx)
3944             return gen_rtx_NOT (mode, op1);
3945
3946           /* Subtracting 0 has no effect.  */
3947           if (op1 == CONST0_RTX (mode))
3948             return op0;
3949
3950           /* See if this is something like X * C - X or vice versa or
3951              if the multiplication is written as a shift.  If so, we can
3952              distribute and make a new multiply, shift, or maybe just
3953              have X (if C is 2 in the example above).  But don't make
3954              real multiply if we didn't have one before.  */
3955
3956           if (! FLOAT_MODE_P (mode))
3957             {
3958               HOST_WIDE_INT coeff0 = 1, coeff1 = 1;
3959               rtx lhs = op0, rhs = op1;
3960               int had_mult = 0;
3961
3962               if (GET_CODE (lhs) == NEG)
3963                 coeff0 = -1, lhs = XEXP (lhs, 0);
3964               else if (GET_CODE (lhs) == MULT
3965                        && GET_CODE (XEXP (lhs, 1)) == CONST_INT)
3966                 {
3967                   coeff0 = INTVAL (XEXP (lhs, 1)), lhs = XEXP (lhs, 0);
3968                   had_mult = 1;
3969                 }
3970               else if (GET_CODE (lhs) == ASHIFT
3971                        && GET_CODE (XEXP (lhs, 1)) == CONST_INT
3972                        && INTVAL (XEXP (lhs, 1)) >= 0
3973                        && INTVAL (XEXP (lhs, 1)) < HOST_BITS_PER_WIDE_INT)
3974                 {
3975                   coeff0 = ((HOST_WIDE_INT) 1) << INTVAL (XEXP (lhs, 1));
3976                   lhs = XEXP (lhs, 0);
3977                 }
3978
3979               if (GET_CODE (rhs) == NEG)
3980                 coeff1 = - 1, rhs = XEXP (rhs, 0);
3981               else if (GET_CODE (rhs) == MULT
3982                        && GET_CODE (XEXP (rhs, 1)) == CONST_INT)
3983                 {
3984                   coeff1 = INTVAL (XEXP (rhs, 1)), rhs = XEXP (rhs, 0);
3985                   had_mult = 1;
3986                 }
3987               else if (GET_CODE (rhs) == ASHIFT
3988                        && GET_CODE (XEXP (rhs, 1)) == CONST_INT
3989                        && INTVAL (XEXP (rhs, 1)) >= 0
3990                        && INTVAL (XEXP (rhs, 1)) < HOST_BITS_PER_WIDE_INT)
3991                 {
3992                   coeff1 = ((HOST_WIDE_INT) 1) << INTVAL (XEXP (rhs, 1));
3993                   rhs = XEXP (rhs, 0);
3994                 }
3995
3996               if (rtx_equal_p (lhs, rhs))
3997                 {
3998                   tem = cse_gen_binary (MULT, mode, lhs,
3999                                         GEN_INT (coeff0 - coeff1));
4000                   return (GET_CODE (tem) == MULT && ! had_mult) ? 0 : tem;
4001                 }
4002             }
4003
4004           /* (a - (-b)) -> (a + b).  */
4005           if (GET_CODE (op1) == NEG)
4006             return cse_gen_binary (PLUS, mode, op0, XEXP (op1, 0));
4007
4008           /* If one of the operands is a PLUS or a MINUS, see if we can
4009              simplify this by the associative law. 
4010              Don't use the associative law for floating point.
4011              The inaccuracy makes it nonassociative,
4012              and subtle programs can break if operations are associated.  */
4013
4014           if (INTEGRAL_MODE_P (mode)
4015               && (GET_CODE (op0) == PLUS || GET_CODE (op0) == MINUS
4016                   || GET_CODE (op1) == PLUS || GET_CODE (op1) == MINUS)
4017               && (tem = simplify_plus_minus (code, mode, op0, op1)) != 0)
4018             return tem;
4019
4020           /* Don't let a relocatable value get a negative coeff.  */
4021           if (GET_CODE (op1) == CONST_INT && GET_MODE (op0) != VOIDmode)
4022             return plus_constant (op0, - INTVAL (op1));
4023
4024           /* (x - (x & y)) -> (x & ~y) */
4025           if (GET_CODE (op1) == AND)
4026             {
4027              if (rtx_equal_p (op0, XEXP (op1, 0)))
4028                return cse_gen_binary (AND, mode, op0, gen_rtx_NOT (mode, XEXP (op1, 1)));
4029              if (rtx_equal_p (op0, XEXP (op1, 1)))
4030                return cse_gen_binary (AND, mode, op0, gen_rtx_NOT (mode, XEXP (op1, 0)));
4031            }
4032           break;
4033
4034         case MULT:
4035           if (op1 == constm1_rtx)
4036             {
4037               tem = simplify_unary_operation (NEG, mode, op0, mode);
4038
4039               return tem ? tem : gen_rtx_NEG (mode, op0);
4040             }
4041
4042           /* In IEEE floating point, x*0 is not always 0.  */
4043           if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
4044                || ! FLOAT_MODE_P (mode) || flag_fast_math)
4045               && op1 == CONST0_RTX (mode)
4046               && ! side_effects_p (op0))
4047             return op1;
4048
4049           /* In IEEE floating point, x*1 is not equivalent to x for nans.
4050              However, ANSI says we can drop signals,
4051              so we can do this anyway.  */
4052           if (op1 == CONST1_RTX (mode))
4053             return op0;
4054
4055           /* Convert multiply by constant power of two into shift unless
4056              we are still generating RTL.  This test is a kludge.  */
4057           if (GET_CODE (op1) == CONST_INT
4058               && (val = exact_log2 (INTVAL (op1))) >= 0
4059               /* If the mode is larger than the host word size, and the
4060                  uppermost bit is set, then this isn't a power of two due
4061                  to implicit sign extension.  */
4062               && (width <= HOST_BITS_PER_WIDE_INT
4063                   || val != HOST_BITS_PER_WIDE_INT - 1)
4064               && ! rtx_equal_function_value_matters)
4065             return gen_rtx_ASHIFT (mode, op0, GEN_INT (val));
4066
4067           if (GET_CODE (op1) == CONST_DOUBLE
4068               && GET_MODE_CLASS (GET_MODE (op1)) == MODE_FLOAT)
4069             {
4070               REAL_VALUE_TYPE d;
4071               jmp_buf handler;
4072               int op1is2, op1ism1;
4073
4074               if (setjmp (handler))
4075                 return 0;
4076
4077               set_float_handler (handler);
4078               REAL_VALUE_FROM_CONST_DOUBLE (d, op1);
4079               op1is2 = REAL_VALUES_EQUAL (d, dconst2);
4080               op1ism1 = REAL_VALUES_EQUAL (d, dconstm1);
4081               set_float_handler (NULL_PTR);
4082
4083               /* x*2 is x+x and x*(-1) is -x */
4084               if (op1is2 && GET_MODE (op0) == mode)
4085                 return gen_rtx_PLUS (mode, op0, copy_rtx (op0));
4086
4087               else if (op1ism1 && GET_MODE (op0) == mode)
4088                 return gen_rtx_NEG (mode, op0);
4089             }
4090           break;
4091
4092         case IOR:
4093           if (op1 == const0_rtx)
4094             return op0;
4095           if (GET_CODE (op1) == CONST_INT
4096               && (INTVAL (op1) & GET_MODE_MASK (mode)) == GET_MODE_MASK (mode))
4097             return op1;
4098           if (rtx_equal_p (op0, op1) && ! side_effects_p (op0))
4099             return op0;
4100           /* A | (~A) -> -1 */
4101           if (((GET_CODE (op0) == NOT && rtx_equal_p (XEXP (op0, 0), op1))
4102                || (GET_CODE (op1) == NOT && rtx_equal_p (XEXP (op1, 0), op0)))
4103               && ! side_effects_p (op0)
4104               && GET_MODE_CLASS (mode) != MODE_CC)
4105             return constm1_rtx;
4106           break;
4107
4108         case XOR:
4109           if (op1 == const0_rtx)
4110             return op0;
4111           if (GET_CODE (op1) == CONST_INT
4112               && (INTVAL (op1) & GET_MODE_MASK (mode)) == GET_MODE_MASK (mode))
4113             return gen_rtx_NOT (mode, op0);
4114           if (op0 == op1 && ! side_effects_p (op0)
4115               && GET_MODE_CLASS (mode) != MODE_CC)
4116             return const0_rtx;
4117           break;
4118
4119         case AND:
4120           if (op1 == const0_rtx && ! side_effects_p (op0))
4121             return const0_rtx;
4122           if (GET_CODE (op1) == CONST_INT
4123               && (INTVAL (op1) & GET_MODE_MASK (mode)) == GET_MODE_MASK (mode))
4124             return op0;
4125           if (op0 == op1 && ! side_effects_p (op0)
4126               && GET_MODE_CLASS (mode) != MODE_CC)
4127             return op0;
4128           /* A & (~A) -> 0 */
4129           if (((GET_CODE (op0) == NOT && rtx_equal_p (XEXP (op0, 0), op1))
4130                || (GET_CODE (op1) == NOT && rtx_equal_p (XEXP (op1, 0), op0)))
4131               && ! side_effects_p (op0)
4132               && GET_MODE_CLASS (mode) != MODE_CC)
4133             return const0_rtx;
4134           break;
4135
4136         case UDIV:
4137           /* Convert divide by power of two into shift (divide by 1 handled
4138              below).  */
4139           if (GET_CODE (op1) == CONST_INT
4140               && (arg1 = exact_log2 (INTVAL (op1))) > 0)
4141             return gen_rtx_LSHIFTRT (mode, op0, GEN_INT (arg1));
4142
4143           /* ... fall through ...  */
4144
4145         case DIV:
4146           if (op1 == CONST1_RTX (mode))
4147             return op0;
4148
4149           /* In IEEE floating point, 0/x is not always 0.  */
4150           if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
4151                || ! FLOAT_MODE_P (mode) || flag_fast_math)
4152               && op0 == CONST0_RTX (mode)
4153               && ! side_effects_p (op1))
4154             return op0;
4155
4156 #if ! defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
4157           /* Change division by a constant into multiplication.  Only do
4158              this with -ffast-math until an expert says it is safe in
4159              general.  */
4160           else if (GET_CODE (op1) == CONST_DOUBLE
4161                    && GET_MODE_CLASS (GET_MODE (op1)) == MODE_FLOAT
4162                    && op1 != CONST0_RTX (mode)
4163                    && flag_fast_math)
4164             {
4165               REAL_VALUE_TYPE d;
4166               REAL_VALUE_FROM_CONST_DOUBLE (d, op1);
4167
4168               if (! REAL_VALUES_EQUAL (d, dconst0))
4169                 {
4170 #if defined (REAL_ARITHMETIC)
4171                   REAL_ARITHMETIC (d, rtx_to_tree_code (DIV), dconst1, d);
4172                   return gen_rtx_MULT (mode, op0, 
4173                                        CONST_DOUBLE_FROM_REAL_VALUE (d, mode));
4174 #else
4175                   return gen_rtx_MULT (mode, op0, 
4176                                        CONST_DOUBLE_FROM_REAL_VALUE (1./d, mode));
4177 #endif
4178                 }
4179             }
4180 #endif
4181           break;
4182
4183         case UMOD:
4184           /* Handle modulus by power of two (mod with 1 handled below).  */
4185           if (GET_CODE (op1) == CONST_INT
4186               && exact_log2 (INTVAL (op1)) > 0)
4187             return gen_rtx_AND (mode, op0, GEN_INT (INTVAL (op1) - 1));
4188
4189           /* ... fall through ...  */
4190
4191         case MOD:
4192           if ((op0 == const0_rtx || op1 == const1_rtx)
4193               && ! side_effects_p (op0) && ! side_effects_p (op1))
4194             return const0_rtx;
4195           break;
4196
4197         case ROTATERT:
4198         case ROTATE:
4199           /* Rotating ~0 always results in ~0.  */
4200           if (GET_CODE (op0) == CONST_INT && width <= HOST_BITS_PER_WIDE_INT
4201               && (unsigned HOST_WIDE_INT) INTVAL (op0) == GET_MODE_MASK (mode)
4202               && ! side_effects_p (op1))
4203             return op0;
4204
4205           /* ... fall through ...  */
4206
4207         case ASHIFT:
4208         case ASHIFTRT:
4209         case LSHIFTRT:
4210           if (op1 == const0_rtx)
4211             return op0;
4212           if (op0 == const0_rtx && ! side_effects_p (op1))
4213             return op0;
4214           break;
4215
4216         case SMIN:
4217           if (width <= HOST_BITS_PER_WIDE_INT && GET_CODE (op1) == CONST_INT 
4218               && INTVAL (op1) == (HOST_WIDE_INT) 1 << (width -1)
4219               && ! side_effects_p (op0))
4220             return op1;
4221           else if (rtx_equal_p (op0, op1) && ! side_effects_p (op0))
4222             return op0;
4223           break;
4224            
4225         case SMAX:
4226           if (width <= HOST_BITS_PER_WIDE_INT && GET_CODE (op1) == CONST_INT
4227               && ((unsigned HOST_WIDE_INT) INTVAL (op1)
4228                   == (unsigned HOST_WIDE_INT) GET_MODE_MASK (mode) >> 1)
4229               && ! side_effects_p (op0))
4230             return op1;
4231           else if (rtx_equal_p (op0, op1) && ! side_effects_p (op0))
4232             return op0;
4233           break;
4234
4235         case UMIN:
4236           if (op1 == const0_rtx && ! side_effects_p (op0))
4237             return op1;
4238           else if (rtx_equal_p (op0, op1) && ! side_effects_p (op0))
4239             return op0;
4240           break;
4241             
4242         case UMAX:
4243           if (op1 == constm1_rtx && ! side_effects_p (op0))
4244             return op1;
4245           else if (rtx_equal_p (op0, op1) && ! side_effects_p (op0))
4246             return op0;
4247           break;
4248
4249         default:
4250           abort ();
4251         }
4252       
4253       return 0;
4254     }
4255
4256   /* Get the integer argument values in two forms:
4257      zero-extended in ARG0, ARG1 and sign-extended in ARG0S, ARG1S.  */
4258
4259   arg0 = INTVAL (op0);
4260   arg1 = INTVAL (op1);
4261
4262   if (width < HOST_BITS_PER_WIDE_INT)
4263     {
4264       arg0 &= ((HOST_WIDE_INT) 1 << width) - 1;
4265       arg1 &= ((HOST_WIDE_INT) 1 << width) - 1;
4266
4267       arg0s = arg0;
4268       if (arg0s & ((HOST_WIDE_INT) 1 << (width - 1)))
4269         arg0s |= ((HOST_WIDE_INT) (-1) << width);
4270
4271       arg1s = arg1;
4272       if (arg1s & ((HOST_WIDE_INT) 1 << (width - 1)))
4273         arg1s |= ((HOST_WIDE_INT) (-1) << width);
4274     }
4275   else
4276     {
4277       arg0s = arg0;
4278       arg1s = arg1;
4279     }
4280
4281   /* Compute the value of the arithmetic.  */
4282
4283   switch (code)
4284     {
4285     case PLUS:
4286       val = arg0s + arg1s;
4287       break;
4288
4289     case MINUS:
4290       val = arg0s - arg1s;
4291       break;
4292
4293     case MULT:
4294       val = arg0s * arg1s;
4295       break;
4296
4297     case DIV:
4298       if (arg1s == 0)
4299         return 0;
4300       val = arg0s / arg1s;
4301       break;
4302
4303     case MOD:
4304       if (arg1s == 0)
4305         return 0;
4306       val = arg0s % arg1s;
4307       break;
4308
4309     case UDIV:
4310       if (arg1 == 0)
4311         return 0;
4312       val = (unsigned HOST_WIDE_INT) arg0 / arg1;
4313       break;
4314
4315     case UMOD:
4316       if (arg1 == 0)
4317         return 0;
4318       val = (unsigned HOST_WIDE_INT) arg0 % arg1;
4319       break;
4320
4321     case AND:
4322       val = arg0 & arg1;
4323       break;
4324
4325     case IOR:
4326       val = arg0 | arg1;
4327       break;
4328
4329     case XOR:
4330       val = arg0 ^ arg1;
4331       break;
4332
4333     case LSHIFTRT:
4334       /* If shift count is undefined, don't fold it; let the machine do
4335          what it wants.  But truncate it if the machine will do that.  */
4336       if (arg1 < 0)
4337         return 0;
4338
4339 #ifdef SHIFT_COUNT_TRUNCATED
4340       if (SHIFT_COUNT_TRUNCATED)
4341         arg1 %= width;
4342 #endif
4343
4344       val = ((unsigned HOST_WIDE_INT) arg0) >> arg1;
4345       break;
4346
4347     case ASHIFT:
4348       if (arg1 < 0)
4349         return 0;
4350
4351 #ifdef SHIFT_COUNT_TRUNCATED
4352       if (SHIFT_COUNT_TRUNCATED)
4353         arg1 %= width;
4354 #endif
4355
4356       val = ((unsigned HOST_WIDE_INT) arg0) << arg1;
4357       break;
4358
4359     case ASHIFTRT:
4360       if (arg1 < 0)
4361         return 0;
4362
4363 #ifdef SHIFT_COUNT_TRUNCATED
4364       if (SHIFT_COUNT_TRUNCATED)
4365         arg1 %= width;
4366 #endif
4367
4368       val = arg0s >> arg1;
4369
4370       /* Bootstrap compiler may not have sign extended the right shift.
4371          Manually extend the sign to insure bootstrap cc matches gcc.  */
4372       if (arg0s < 0 && arg1 > 0)
4373         val |= ((HOST_WIDE_INT) -1) << (HOST_BITS_PER_WIDE_INT - arg1);
4374
4375       break;
4376
4377     case ROTATERT:
4378       if (arg1 < 0)
4379         return 0;
4380
4381       arg1 %= width;
4382       val = ((((unsigned HOST_WIDE_INT) arg0) << (width - arg1))
4383              | (((unsigned HOST_WIDE_INT) arg0) >> arg1));
4384       break;
4385
4386     case ROTATE:
4387       if (arg1 < 0)
4388         return 0;
4389
4390       arg1 %= width;
4391       val = ((((unsigned HOST_WIDE_INT) arg0) << arg1)
4392              | (((unsigned HOST_WIDE_INT) arg0) >> (width - arg1)));
4393       break;
4394
4395     case COMPARE:
4396       /* Do nothing here.  */
4397       return 0;
4398
4399     case SMIN:
4400       val = arg0s <= arg1s ? arg0s : arg1s;
4401       break;
4402
4403     case UMIN:
4404       val = ((unsigned HOST_WIDE_INT) arg0
4405              <= (unsigned HOST_WIDE_INT) arg1 ? arg0 : arg1);
4406       break;
4407
4408     case SMAX:
4409       val = arg0s > arg1s ? arg0s : arg1s;
4410       break;
4411
4412     case UMAX:
4413       val = ((unsigned HOST_WIDE_INT) arg0
4414              > (unsigned HOST_WIDE_INT) arg1 ? arg0 : arg1);
4415       break;
4416
4417     default:
4418       abort ();
4419     }
4420
4421   val = trunc_int_for_mode (val, mode);
4422
4423   return GEN_INT (val);
4424 }
4425 \f
4426 /* Simplify a PLUS or MINUS, at least one of whose operands may be another
4427    PLUS or MINUS.
4428
4429    Rather than test for specific case, we do this by a brute-force method
4430    and do all possible simplifications until no more changes occur.  Then
4431    we rebuild the operation.  */
4432
4433 static rtx
4434 simplify_plus_minus (code, mode, op0, op1)
4435      enum rtx_code code;
4436      enum machine_mode mode;
4437      rtx op0, op1;
4438 {
4439   rtx ops[8];
4440   int negs[8];
4441   rtx result, tem;
4442   int n_ops = 2, input_ops = 2, input_consts = 0, n_consts = 0;
4443   int first = 1, negate = 0, changed;
4444   int i, j;
4445
4446   bzero ((char *) ops, sizeof ops);
4447   
4448   /* Set up the two operands and then expand them until nothing has been
4449      changed.  If we run out of room in our array, give up; this should
4450      almost never happen.  */
4451
4452   ops[0] = op0, ops[1] = op1, negs[0] = 0, negs[1] = (code == MINUS);
4453
4454   changed = 1;
4455   while (changed)
4456     {
4457       changed = 0;
4458
4459       for (i = 0; i < n_ops; i++)
4460         switch (GET_CODE (ops[i]))
4461           {
4462           case PLUS:
4463           case MINUS:
4464             if (n_ops == 7)
4465               return 0;
4466
4467             ops[n_ops] = XEXP (ops[i], 1);
4468             negs[n_ops++] = GET_CODE (ops[i]) == MINUS ? !negs[i] : negs[i];
4469             ops[i] = XEXP (ops[i], 0);
4470             input_ops++;
4471             changed = 1;
4472             break;
4473
4474           case NEG:
4475             ops[i] = XEXP (ops[i], 0);
4476             negs[i] = ! negs[i];
4477             changed = 1;
4478             break;
4479
4480           case CONST:
4481             ops[i] = XEXP (ops[i], 0);
4482             input_consts++;
4483             changed = 1;
4484             break;
4485
4486           case NOT:
4487             /* ~a -> (-a - 1) */
4488             if (n_ops != 7)
4489               {
4490                 ops[n_ops] = constm1_rtx;
4491                 negs[n_ops++] = negs[i];
4492                 ops[i] = XEXP (ops[i], 0);
4493                 negs[i] = ! negs[i];
4494                 changed = 1;
4495               }
4496             break;
4497
4498           case CONST_INT:
4499             if (negs[i])
4500               ops[i] = GEN_INT (- INTVAL (ops[i])), negs[i] = 0, changed = 1;
4501             break;
4502
4503           default:
4504             break;
4505           }
4506     }
4507
4508   /* If we only have two operands, we can't do anything.  */
4509   if (n_ops <= 2)
4510     return 0;
4511
4512   /* Now simplify each pair of operands until nothing changes.  The first
4513      time through just simplify constants against each other.  */
4514
4515   changed = 1;
4516   while (changed)
4517     {
4518       changed = first;
4519
4520       for (i = 0; i < n_ops - 1; i++)
4521         for (j = i + 1; j < n_ops; j++)
4522           if (ops[i] != 0 && ops[j] != 0
4523               && (! first || (CONSTANT_P (ops[i]) && CONSTANT_P (ops[j]))))
4524             {
4525               rtx lhs = ops[i], rhs = ops[j];
4526               enum rtx_code ncode = PLUS;
4527
4528               if (negs[i] && ! negs[j])
4529                 lhs = ops[j], rhs = ops[i], ncode = MINUS;
4530               else if (! negs[i] && negs[j])
4531                 ncode = MINUS;
4532
4533               tem = simplify_binary_operation (ncode, mode, lhs, rhs);
4534               if (tem)
4535                 {
4536                   ops[i] = tem, ops[j] = 0;
4537                   negs[i] = negs[i] && negs[j];
4538                   if (GET_CODE (tem) == NEG)
4539                     ops[i] = XEXP (tem, 0), negs[i] = ! negs[i];
4540
4541                   if (GET_CODE (ops[i]) == CONST_INT && negs[i])
4542                     ops[i] = GEN_INT (- INTVAL (ops[i])), negs[i] = 0;
4543                   changed = 1;
4544                 }
4545             }
4546
4547       first = 0;
4548     }
4549
4550   /* Pack all the operands to the lower-numbered entries and give up if
4551      we didn't reduce the number of operands we had.  Make sure we
4552      count a CONST as two operands.  If we have the same number of
4553      operands, but have made more CONSTs than we had, this is also
4554      an improvement, so accept it.  */
4555
4556   for (i = 0, j = 0; j < n_ops; j++)
4557     if (ops[j] != 0)
4558       {
4559         ops[i] = ops[j], negs[i++] = negs[j];
4560         if (GET_CODE (ops[j]) == CONST)
4561           n_consts++;
4562       }
4563
4564   if (i + n_consts > input_ops
4565       || (i + n_consts == input_ops && n_consts <= input_consts))
4566     return 0;
4567
4568   n_ops = i;
4569
4570   /* If we have a CONST_INT, put it last.  */
4571   for (i = 0; i < n_ops - 1; i++)
4572     if (GET_CODE (ops[i]) == CONST_INT)
4573       {
4574         tem = ops[n_ops - 1], ops[n_ops - 1] = ops[i] , ops[i] = tem;
4575         j = negs[n_ops - 1], negs[n_ops - 1] = negs[i], negs[i] = j;
4576       }
4577
4578   /* Put a non-negated operand first.  If there aren't any, make all
4579      operands positive and negate the whole thing later.  */
4580   for (i = 0; i < n_ops && negs[i]; i++)
4581     ;
4582
4583   if (i == n_ops)
4584     {
4585       for (i = 0; i < n_ops; i++)
4586         negs[i] = 0;
4587       negate = 1;
4588     }
4589   else if (i != 0)
4590     {
4591       tem = ops[0], ops[0] = ops[i], ops[i] = tem;
4592       j = negs[0], negs[0] = negs[i], negs[i] = j;
4593     }
4594
4595   /* Now make the result by performing the requested operations.  */
4596   result = ops[0];
4597   for (i = 1; i < n_ops; i++)
4598     result = cse_gen_binary (negs[i] ? MINUS : PLUS, mode, result, ops[i]);
4599
4600   return negate ? gen_rtx_NEG (mode, result) : result;
4601 }
4602 \f
4603 /* Make a binary operation by properly ordering the operands and 
4604    seeing if the expression folds.  */
4605
4606 static rtx
4607 cse_gen_binary (code, mode, op0, op1)
4608      enum rtx_code code;
4609      enum machine_mode mode;
4610      rtx op0, op1;
4611 {
4612   rtx tem;
4613
4614   /* Put complex operands first and constants second if commutative.  */
4615   if (GET_RTX_CLASS (code) == 'c'
4616       && ((CONSTANT_P (op0) && GET_CODE (op1) != CONST_INT)
4617           || (GET_RTX_CLASS (GET_CODE (op0)) == 'o'
4618               && GET_RTX_CLASS (GET_CODE (op1)) != 'o')
4619           || (GET_CODE (op0) == SUBREG
4620               && GET_RTX_CLASS (GET_CODE (SUBREG_REG (op0))) == 'o'
4621               && GET_RTX_CLASS (GET_CODE (op1)) != 'o')))
4622     tem = op0, op0 = op1, op1 = tem;
4623
4624   /* If this simplifies, do it.  */
4625   tem = simplify_binary_operation (code, mode, op0, op1);
4626
4627   if (tem)
4628     return tem;
4629
4630   /* Handle addition and subtraction of CONST_INT specially.  Otherwise,
4631      just form the operation.  */
4632
4633   if (code == PLUS && GET_CODE (op1) == CONST_INT
4634       && GET_MODE (op0) != VOIDmode)
4635     return plus_constant (op0, INTVAL (op1));
4636   else if (code == MINUS && GET_CODE (op1) == CONST_INT
4637            && GET_MODE (op0) != VOIDmode)
4638     return plus_constant (op0, - INTVAL (op1));
4639   else
4640     return gen_rtx_fmt_ee (code, mode, op0, op1);
4641 }
4642 \f
4643 struct cfc_args
4644 {
4645   /* Input */
4646   rtx op0, op1;
4647   /* Output */
4648   int equal, op0lt, op1lt;
4649 };
4650
4651 static void
4652 check_fold_consts (data)
4653   PTR data;
4654 {
4655   struct cfc_args * args = (struct cfc_args *) data;
4656   REAL_VALUE_TYPE d0, d1;
4657
4658   REAL_VALUE_FROM_CONST_DOUBLE (d0, args->op0);
4659   REAL_VALUE_FROM_CONST_DOUBLE (d1, args->op1);
4660   args->equal = REAL_VALUES_EQUAL (d0, d1);
4661   args->op0lt = REAL_VALUES_LESS (d0, d1);
4662   args->op1lt = REAL_VALUES_LESS (d1, d0);
4663 }
4664
4665 /* Like simplify_binary_operation except used for relational operators.
4666    MODE is the mode of the operands, not that of the result.  If MODE
4667    is VOIDmode, both operands must also be VOIDmode and we compare the
4668    operands in "infinite precision".
4669
4670    If no simplification is possible, this function returns zero.  Otherwise,
4671    it returns either const_true_rtx or const0_rtx.  */
4672
4673 rtx
4674 simplify_relational_operation (code, mode, op0, op1)
4675      enum rtx_code code;
4676      enum machine_mode mode;
4677      rtx op0, op1;
4678 {
4679   int equal, op0lt, op0ltu, op1lt, op1ltu;
4680   rtx tem;
4681
4682   /* If op0 is a compare, extract the comparison arguments from it.  */
4683   if (GET_CODE (op0) == COMPARE && op1 == const0_rtx)
4684     op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
4685
4686   /* We can't simplify MODE_CC values since we don't know what the
4687      actual comparison is.  */
4688   if (GET_MODE_CLASS (GET_MODE (op0)) == MODE_CC
4689 #ifdef HAVE_cc0
4690       || op0 == cc0_rtx
4691 #endif
4692       )
4693     return 0;
4694
4695   /* For integer comparisons of A and B maybe we can simplify A - B and can
4696      then simplify a comparison of that with zero.  If A and B are both either
4697      a register or a CONST_INT, this can't help; testing for these cases will
4698      prevent infinite recursion here and speed things up.
4699
4700      If CODE is an unsigned comparison, then we can never do this optimization,
4701      because it gives an incorrect result if the subtraction wraps around zero.
4702      ANSI C defines unsigned operations such that they never overflow, and
4703      thus such cases can not be ignored.  */
4704
4705   if (INTEGRAL_MODE_P (mode) && op1 != const0_rtx
4706       && ! ((GET_CODE (op0) == REG || GET_CODE (op0) == CONST_INT)
4707             && (GET_CODE (op1) == REG || GET_CODE (op1) == CONST_INT))
4708       && 0 != (tem = simplify_binary_operation (MINUS, mode, op0, op1))
4709       && code != GTU && code != GEU && code != LTU && code != LEU)
4710     return simplify_relational_operation (signed_condition (code),
4711                                           mode, tem, const0_rtx);
4712
4713   /* For non-IEEE floating-point, if the two operands are equal, we know the
4714      result.  */
4715   if (rtx_equal_p (op0, op1)
4716       && (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
4717           || ! FLOAT_MODE_P (GET_MODE (op0)) || flag_fast_math))
4718     equal = 1, op0lt = 0, op0ltu = 0, op1lt = 0, op1ltu = 0;
4719
4720   /* If the operands are floating-point constants, see if we can fold
4721      the result.  */
4722 #if ! defined (REAL_IS_NOT_DOUBLE) || defined (REAL_ARITHMETIC)
4723   else if (GET_CODE (op0) == CONST_DOUBLE && GET_CODE (op1) == CONST_DOUBLE
4724            && GET_MODE_CLASS (GET_MODE (op0)) == MODE_FLOAT)
4725     {
4726       struct cfc_args args;
4727
4728       /* Setup input for check_fold_consts() */
4729       args.op0 = op0;
4730       args.op1 = op1;
4731       
4732       if (do_float_handler(check_fold_consts, (PTR) &args) == 0)
4733         /* We got an exception from check_fold_consts() */
4734         return 0;
4735
4736       /* Receive output from check_fold_consts() */
4737       equal = args.equal;
4738       op0lt = op0ltu = args.op0lt;
4739       op1lt = op1ltu = args.op1lt;
4740     }
4741 #endif  /* not REAL_IS_NOT_DOUBLE, or REAL_ARITHMETIC */
4742
4743   /* Otherwise, see if the operands are both integers.  */
4744   else if ((GET_MODE_CLASS (mode) == MODE_INT || mode == VOIDmode)
4745            && (GET_CODE (op0) == CONST_DOUBLE || GET_CODE (op0) == CONST_INT)
4746            && (GET_CODE (op1) == CONST_DOUBLE || GET_CODE (op1) == CONST_INT))
4747     {
4748       int width = GET_MODE_BITSIZE (mode);
4749       HOST_WIDE_INT l0s, h0s, l1s, h1s;
4750       unsigned HOST_WIDE_INT l0u, h0u, l1u, h1u;
4751
4752       /* Get the two words comprising each integer constant.  */
4753       if (GET_CODE (op0) == CONST_DOUBLE)
4754         {
4755           l0u = l0s = CONST_DOUBLE_LOW (op0);
4756           h0u = h0s = CONST_DOUBLE_HIGH (op0);
4757         }
4758       else
4759         {
4760           l0u = l0s = INTVAL (op0);
4761           h0u = h0s = l0s < 0 ? -1 : 0;
4762         }
4763           
4764       if (GET_CODE (op1) == CONST_DOUBLE)
4765         {
4766           l1u = l1s = CONST_DOUBLE_LOW (op1);
4767           h1u = h1s = CONST_DOUBLE_HIGH (op1);
4768         }
4769       else
4770         {
4771           l1u = l1s = INTVAL (op1);
4772           h1u = h1s = l1s < 0 ? -1 : 0;
4773         }
4774
4775       /* If WIDTH is nonzero and smaller than HOST_BITS_PER_WIDE_INT,
4776          we have to sign or zero-extend the values.  */
4777       if (width != 0 && width <= HOST_BITS_PER_WIDE_INT)
4778         h0u = h1u = 0, h0s = l0s < 0 ? -1 : 0, h1s = l1s < 0 ? -1 : 0;
4779
4780       if (width != 0 && width < HOST_BITS_PER_WIDE_INT)
4781         {
4782           l0u &= ((HOST_WIDE_INT) 1 << width) - 1;
4783           l1u &= ((HOST_WIDE_INT) 1 << width) - 1;
4784
4785           if (l0s & ((HOST_WIDE_INT) 1 << (width - 1)))
4786             l0s |= ((HOST_WIDE_INT) (-1) << width);
4787
4788           if (l1s & ((HOST_WIDE_INT) 1 << (width - 1)))
4789             l1s |= ((HOST_WIDE_INT) (-1) << width);
4790         }
4791
4792       equal = (h0u == h1u && l0u == l1u);
4793       op0lt = (h0s < h1s || (h0s == h1s && l0s < l1s));
4794       op1lt = (h1s < h0s || (h1s == h0s && l1s < l0s));
4795       op0ltu = (h0u < h1u || (h0u == h1u && l0u < l1u));
4796       op1ltu = (h1u < h0u || (h1u == h0u && l1u < l0u));
4797     }
4798
4799   /* Otherwise, there are some code-specific tests we can make.  */
4800   else
4801     {
4802       switch (code)
4803         {
4804         case EQ:
4805           /* References to the frame plus a constant or labels cannot
4806              be zero, but a SYMBOL_REF can due to #pragma weak.  */
4807           if (((NONZERO_BASE_PLUS_P (op0) && op1 == const0_rtx)
4808                || GET_CODE (op0) == LABEL_REF)
4809 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4810               /* On some machines, the ap reg can be 0 sometimes.  */
4811               && op0 != arg_pointer_rtx
4812 #endif
4813                 )
4814             return const0_rtx;
4815           break;
4816
4817         case NE:
4818           if (((NONZERO_BASE_PLUS_P (op0) && op1 == const0_rtx)
4819                || GET_CODE (op0) == LABEL_REF)
4820 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4821               && op0 != arg_pointer_rtx
4822 #endif
4823               )
4824             return const_true_rtx;
4825           break;
4826
4827         case GEU:
4828           /* Unsigned values are never negative.  */
4829           if (op1 == const0_rtx)
4830             return const_true_rtx;
4831           break;
4832
4833         case LTU:
4834           if (op1 == const0_rtx)
4835             return const0_rtx;
4836           break;
4837
4838         case LEU:
4839           /* Unsigned values are never greater than the largest
4840              unsigned value.  */
4841           if (GET_CODE (op1) == CONST_INT
4842               && (unsigned HOST_WIDE_INT) INTVAL (op1) == GET_MODE_MASK (mode)
4843             && INTEGRAL_MODE_P (mode))
4844           return const_true_rtx;
4845           break;
4846
4847         case GTU:
4848           if (GET_CODE (op1) == CONST_INT
4849               && (unsigned HOST_WIDE_INT) INTVAL (op1) == GET_MODE_MASK (mode)
4850               && INTEGRAL_MODE_P (mode))
4851             return const0_rtx;
4852           break;
4853           
4854         default:
4855           break;
4856         }
4857
4858       return 0;
4859     }
4860
4861   /* If we reach here, EQUAL, OP0LT, OP0LTU, OP1LT, and OP1LTU are set
4862      as appropriate.  */
4863   switch (code)
4864     {
4865     case EQ:
4866       return equal ? const_true_rtx : const0_rtx;
4867     case NE:
4868       return ! equal ? const_true_rtx : const0_rtx;
4869     case LT:
4870       return op0lt ? const_true_rtx : const0_rtx;
4871     case GT:
4872       return op1lt ? const_true_rtx : const0_rtx;
4873     case LTU:
4874       return op0ltu ? const_true_rtx : const0_rtx;
4875     case GTU:
4876       return op1ltu ? const_true_rtx : const0_rtx;
4877     case LE:
4878       return equal || op0lt ? const_true_rtx : const0_rtx;
4879     case GE:
4880       return equal || op1lt ? const_true_rtx : const0_rtx;
4881     case LEU:
4882       return equal || op0ltu ? const_true_rtx : const0_rtx;
4883     case GEU:
4884       return equal || op1ltu ? const_true_rtx : const0_rtx;
4885     default:
4886       abort ();
4887     }
4888 }
4889 \f
4890 /* Simplify CODE, an operation with result mode MODE and three operands,
4891    OP0, OP1, and OP2.  OP0_MODE was the mode of OP0 before it became
4892    a constant.  Return 0 if no simplifications is possible.  */
4893
4894 rtx
4895 simplify_ternary_operation (code, mode, op0_mode, op0, op1, op2)
4896      enum rtx_code code;
4897      enum machine_mode mode, op0_mode;
4898      rtx op0, op1, op2;
4899 {
4900   int width = GET_MODE_BITSIZE (mode);
4901
4902   /* VOIDmode means "infinite" precision.  */
4903   if (width == 0)
4904     width = HOST_BITS_PER_WIDE_INT;
4905
4906   switch (code)
4907     {
4908     case SIGN_EXTRACT:
4909     case ZERO_EXTRACT:
4910       if (GET_CODE (op0) == CONST_INT
4911           && GET_CODE (op1) == CONST_INT
4912           && GET_CODE (op2) == CONST_INT
4913           && INTVAL (op1) + INTVAL (op2) <= GET_MODE_BITSIZE (op0_mode)
4914           && width <= HOST_BITS_PER_WIDE_INT)
4915         {
4916           /* Extracting a bit-field from a constant */
4917           HOST_WIDE_INT val = INTVAL (op0);
4918
4919           if (BITS_BIG_ENDIAN)
4920             val >>= (GET_MODE_BITSIZE (op0_mode)
4921                      - INTVAL (op2) - INTVAL (op1));
4922           else
4923             val >>= INTVAL (op2);
4924
4925           if (HOST_BITS_PER_WIDE_INT != INTVAL (op1))
4926             {
4927               /* First zero-extend.  */
4928               val &= ((HOST_WIDE_INT) 1 << INTVAL (op1)) - 1;
4929               /* If desired, propagate sign bit.  */
4930               if (code == SIGN_EXTRACT
4931                   && (val & ((HOST_WIDE_INT) 1 << (INTVAL (op1) - 1))))
4932                 val |= ~ (((HOST_WIDE_INT) 1 << INTVAL (op1)) - 1);
4933             }
4934
4935           /* Clear the bits that don't belong in our mode,
4936              unless they and our sign bit are all one.
4937              So we get either a reasonable negative value or a reasonable
4938              unsigned value for this mode.  */
4939           if (width < HOST_BITS_PER_WIDE_INT
4940               && ((val & ((HOST_WIDE_INT) (-1) << (width - 1)))
4941                   != ((HOST_WIDE_INT) (-1) << (width - 1))))
4942             val &= ((HOST_WIDE_INT) 1 << width) - 1;
4943
4944           return GEN_INT (val);
4945         }
4946       break;
4947
4948     case IF_THEN_ELSE:
4949       if (GET_CODE (op0) == CONST_INT)
4950         return op0 != const0_rtx ? op1 : op2;
4951
4952       /* Convert a == b ? b : a to "a".  */
4953       if (GET_CODE (op0) == NE && ! side_effects_p (op0)
4954           && rtx_equal_p (XEXP (op0, 0), op1)
4955           && rtx_equal_p (XEXP (op0, 1), op2))
4956         return op1;
4957       else if (GET_CODE (op0) == EQ && ! side_effects_p (op0)
4958           && rtx_equal_p (XEXP (op0, 1), op1)
4959           && rtx_equal_p (XEXP (op0, 0), op2))
4960         return op2;
4961       else if (GET_RTX_CLASS (GET_CODE (op0)) == '<' && ! side_effects_p (op0))
4962         {
4963           rtx temp;
4964           temp = simplify_relational_operation (GET_CODE (op0), op0_mode,
4965                                                 XEXP (op0, 0), XEXP (op0, 1));
4966           /* See if any simplifications were possible.  */
4967           if (temp == const0_rtx)
4968             return op2;
4969           else if (temp == const1_rtx)
4970             return op1;
4971         }
4972       break;
4973
4974     default:
4975       abort ();
4976     }
4977
4978   return 0;
4979 }
4980 \f
4981 /* If X is a nontrivial arithmetic operation on an argument
4982    for which a constant value can be determined, return
4983    the result of operating on that value, as a constant.
4984    Otherwise, return X, possibly with one or more operands
4985    modified by recursive calls to this function.
4986
4987    If X is a register whose contents are known, we do NOT
4988    return those contents here.  equiv_constant is called to
4989    perform that task.
4990
4991    INSN is the insn that we may be modifying.  If it is 0, make a copy
4992    of X before modifying it.  */
4993
4994 static rtx
4995 fold_rtx (x, insn)
4996      rtx x;
4997      rtx insn;    
4998 {
4999   register enum rtx_code code;
5000   register enum machine_mode mode;
5001   register const char *fmt;
5002   register int i;
5003   rtx new = 0;
5004   int copied = 0;
5005   int must_swap = 0;
5006
5007   /* Folded equivalents of first two operands of X.  */
5008   rtx folded_arg0;
5009   rtx folded_arg1;
5010
5011   /* Constant equivalents of first three operands of X;
5012      0 when no such equivalent is known.  */
5013   rtx const_arg0;
5014   rtx const_arg1;
5015   rtx const_arg2;
5016
5017   /* The mode of the first operand of X.  We need this for sign and zero
5018      extends.  */
5019   enum machine_mode mode_arg0;
5020
5021   if (x == 0)
5022     return x;
5023
5024   mode = GET_MODE (x);
5025   code = GET_CODE (x);
5026   switch (code)
5027     {
5028     case CONST:
5029     case CONST_INT:
5030     case CONST_DOUBLE:
5031     case SYMBOL_REF:
5032     case LABEL_REF:
5033     case REG:
5034       /* No use simplifying an EXPR_LIST
5035          since they are used only for lists of args
5036          in a function call's REG_EQUAL note.  */
5037     case EXPR_LIST:
5038       /* Changing anything inside an ADDRESSOF is incorrect; we don't
5039          want to (e.g.,) make (addressof (const_int 0)) just because
5040          the location is known to be zero.  */
5041     case ADDRESSOF:
5042       return x;
5043
5044 #ifdef HAVE_cc0
5045     case CC0:
5046       return prev_insn_cc0;
5047 #endif
5048
5049     case PC:
5050       /* If the next insn is a CODE_LABEL followed by a jump table,
5051          PC's value is a LABEL_REF pointing to that label.  That
5052          lets us fold switch statements on the Vax.  */
5053       if (insn && GET_CODE (insn) == JUMP_INSN)
5054         {
5055           rtx next = next_nonnote_insn (insn);
5056
5057           if (next && GET_CODE (next) == CODE_LABEL
5058               && NEXT_INSN (next) != 0
5059               && GET_CODE (NEXT_INSN (next)) == JUMP_INSN
5060               && (GET_CODE (PATTERN (NEXT_INSN (next))) == ADDR_VEC
5061                   || GET_CODE (PATTERN (NEXT_INSN (next))) == ADDR_DIFF_VEC))
5062             return gen_rtx_LABEL_REF (Pmode, next);
5063         }
5064       break;
5065
5066     case SUBREG:
5067       /* See if we previously assigned a constant value to this SUBREG.  */
5068       if ((new = lookup_as_function (x, CONST_INT)) != 0
5069           || (new = lookup_as_function (x, CONST_DOUBLE)) != 0)
5070         return new;
5071
5072       /* If this is a paradoxical SUBREG, we have no idea what value the
5073          extra bits would have.  However, if the operand is equivalent
5074          to a SUBREG whose operand is the same as our mode, and all the
5075          modes are within a word, we can just use the inner operand
5076          because these SUBREGs just say how to treat the register.
5077
5078          Similarly if we find an integer constant.  */
5079
5080       if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
5081         {
5082           enum machine_mode imode = GET_MODE (SUBREG_REG (x));
5083           struct table_elt *elt;
5084
5085           if (GET_MODE_SIZE (mode) <= UNITS_PER_WORD
5086               && GET_MODE_SIZE (imode) <= UNITS_PER_WORD
5087               && (elt = lookup (SUBREG_REG (x), HASH (SUBREG_REG (x), imode),
5088                                 imode)) != 0)
5089             for (elt = elt->first_same_value;
5090                  elt; elt = elt->next_same_value)
5091               {
5092                 if (CONSTANT_P (elt->exp)
5093                     && GET_MODE (elt->exp) == VOIDmode)
5094                   return elt->exp;
5095
5096                 if (GET_CODE (elt->exp) == SUBREG
5097                     && GET_MODE (SUBREG_REG (elt->exp)) == mode
5098                     && exp_equiv_p (elt->exp, elt->exp, 1, 0))
5099                   return copy_rtx (SUBREG_REG (elt->exp));
5100             }
5101
5102           return x;
5103         }
5104
5105       /* Fold SUBREG_REG.  If it changed, see if we can simplify the SUBREG.
5106          We might be able to if the SUBREG is extracting a single word in an
5107          integral mode or extracting the low part.  */
5108
5109       folded_arg0 = fold_rtx (SUBREG_REG (x), insn);
5110       const_arg0 = equiv_constant (folded_arg0);
5111       if (const_arg0)
5112         folded_arg0 = const_arg0;
5113
5114       if (folded_arg0 != SUBREG_REG (x))
5115         {
5116           new = 0;
5117
5118           if (GET_MODE_CLASS (mode) == MODE_INT
5119               && GET_MODE_SIZE (mode) == UNITS_PER_WORD
5120               && GET_MODE (SUBREG_REG (x)) != VOIDmode)
5121             new = operand_subword (folded_arg0, SUBREG_WORD (x), 0,
5122                                    GET_MODE (SUBREG_REG (x)));
5123           if (new == 0 && subreg_lowpart_p (x))
5124             new = gen_lowpart_if_possible (mode, folded_arg0);
5125           if (new)
5126             return new;
5127         }
5128
5129       /* If this is a narrowing SUBREG and our operand is a REG, see if
5130          we can find an equivalence for REG that is an arithmetic operation
5131          in a wider mode where both operands are paradoxical SUBREGs
5132          from objects of our result mode.  In that case, we couldn't report
5133          an equivalent value for that operation, since we don't know what the
5134          extra bits will be.  But we can find an equivalence for this SUBREG
5135          by folding that operation is the narrow mode.  This allows us to
5136          fold arithmetic in narrow modes when the machine only supports
5137          word-sized arithmetic.  
5138
5139          Also look for a case where we have a SUBREG whose operand is the
5140          same as our result.  If both modes are smaller than a word, we
5141          are simply interpreting a register in different modes and we
5142          can use the inner value.  */
5143
5144       if (GET_CODE (folded_arg0) == REG
5145           && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (folded_arg0))
5146           && subreg_lowpart_p (x))
5147         {
5148           struct table_elt *elt;
5149
5150           /* We can use HASH here since we know that canon_hash won't be
5151              called.  */
5152           elt = lookup (folded_arg0,
5153                         HASH (folded_arg0, GET_MODE (folded_arg0)),
5154                         GET_MODE (folded_arg0));
5155
5156           if (elt)
5157             elt = elt->first_same_value;
5158
5159           for (; elt; elt = elt->next_same_value)
5160             {
5161               enum rtx_code eltcode = GET_CODE (elt->exp);
5162
5163               /* Just check for unary and binary operations.  */
5164               if (GET_RTX_CLASS (GET_CODE (elt->exp)) == '1'
5165                   && GET_CODE (elt->exp) != SIGN_EXTEND
5166                   && GET_CODE (elt->exp) != ZERO_EXTEND
5167                   && GET_CODE (XEXP (elt->exp, 0)) == SUBREG
5168                   && GET_MODE (SUBREG_REG (XEXP (elt->exp, 0))) == mode)
5169                 {
5170                   rtx op0 = SUBREG_REG (XEXP (elt->exp, 0));
5171
5172                   if (GET_CODE (op0) != REG && ! CONSTANT_P (op0))
5173                     op0 = fold_rtx (op0, NULL_RTX);
5174
5175                   op0 = equiv_constant (op0);
5176                   if (op0)
5177                     new = simplify_unary_operation (GET_CODE (elt->exp), mode,
5178                                                     op0, mode);
5179                 }
5180               else if ((GET_RTX_CLASS (GET_CODE (elt->exp)) == '2'
5181                         || GET_RTX_CLASS (GET_CODE (elt->exp)) == 'c')
5182                        && eltcode != DIV && eltcode != MOD
5183                        && eltcode != UDIV && eltcode != UMOD
5184                        && eltcode != ASHIFTRT && eltcode != LSHIFTRT
5185                        && eltcode != ROTATE && eltcode != ROTATERT
5186                        && ((GET_CODE (XEXP (elt->exp, 0)) == SUBREG
5187                             && (GET_MODE (SUBREG_REG (XEXP (elt->exp, 0)))
5188                                 == mode))
5189                            || CONSTANT_P (XEXP (elt->exp, 0)))
5190                        && ((GET_CODE (XEXP (elt->exp, 1)) == SUBREG
5191                             && (GET_MODE (SUBREG_REG (XEXP (elt->exp, 1)))
5192                                 == mode))
5193                            || CONSTANT_P (XEXP (elt->exp, 1))))
5194                 {
5195                   rtx op0 = gen_lowpart_common (mode, XEXP (elt->exp, 0));
5196                   rtx op1 = gen_lowpart_common (mode, XEXP (elt->exp, 1));
5197
5198                   if (op0 && GET_CODE (op0) != REG && ! CONSTANT_P (op0))
5199                     op0 = fold_rtx (op0, NULL_RTX);
5200
5201                   if (op0)
5202                     op0 = equiv_constant (op0);
5203
5204                   if (op1 && GET_CODE (op1) != REG && ! CONSTANT_P (op1))
5205                     op1 = fold_rtx (op1, NULL_RTX);
5206
5207                   if (op1)
5208                     op1 = equiv_constant (op1);
5209
5210                   /* If we are looking for the low SImode part of 
5211                      (ashift:DI c (const_int 32)), it doesn't work
5212                      to compute that in SImode, because a 32-bit shift
5213                      in SImode is unpredictable.  We know the value is 0.  */
5214                   if (op0 && op1
5215                       && GET_CODE (elt->exp) == ASHIFT
5216                       && GET_CODE (op1) == CONST_INT
5217                       && INTVAL (op1) >= GET_MODE_BITSIZE (mode))
5218                     {
5219                       if (INTVAL (op1) < GET_MODE_BITSIZE (GET_MODE (elt->exp)))
5220                         
5221                         /* If the count fits in the inner mode's width,
5222                            but exceeds the outer mode's width,
5223                            the value will get truncated to 0
5224                            by the subreg.  */
5225                         new = const0_rtx;
5226                       else
5227                         /* If the count exceeds even the inner mode's width,
5228                            don't fold this expression.  */
5229                         new = 0;
5230                     }
5231                   else if (op0 && op1)
5232                     new = simplify_binary_operation (GET_CODE (elt->exp), mode,
5233                                                      op0, op1);
5234                 }
5235
5236               else if (GET_CODE (elt->exp) == SUBREG
5237                        && GET_MODE (SUBREG_REG (elt->exp)) == mode
5238                        && (GET_MODE_SIZE (GET_MODE (folded_arg0))
5239                            <= UNITS_PER_WORD)
5240                        && exp_equiv_p (elt->exp, elt->exp, 1, 0))
5241                 new = copy_rtx (SUBREG_REG (elt->exp));
5242
5243               if (new)
5244                 return new;
5245             }
5246         }
5247
5248       return x;
5249
5250     case NOT:
5251     case NEG:
5252       /* If we have (NOT Y), see if Y is known to be (NOT Z).
5253          If so, (NOT Y) simplifies to Z.  Similarly for NEG.  */
5254       new = lookup_as_function (XEXP (x, 0), code);
5255       if (new)
5256         return fold_rtx (copy_rtx (XEXP (new, 0)), insn);
5257       break;
5258
5259     case MEM:
5260       /* If we are not actually processing an insn, don't try to find the
5261          best address.  Not only don't we care, but we could modify the
5262          MEM in an invalid way since we have no insn to validate against.  */
5263       if (insn != 0)
5264         find_best_addr (insn, &XEXP (x, 0));
5265
5266       {
5267         /* Even if we don't fold in the insn itself,
5268            we can safely do so here, in hopes of getting a constant.  */
5269         rtx addr = fold_rtx (XEXP (x, 0), NULL_RTX);
5270         rtx base = 0;
5271         HOST_WIDE_INT offset = 0;
5272
5273         if (GET_CODE (addr) == REG
5274             && REGNO_QTY_VALID_P (REGNO (addr))
5275             && GET_MODE (addr) == qty_mode[REG_QTY (REGNO (addr))]
5276             && qty_const[REG_QTY (REGNO (addr))] != 0)
5277           addr = qty_const[REG_QTY (REGNO (addr))];
5278
5279         /* If address is constant, split it into a base and integer offset.  */
5280         if (GET_CODE (addr) == SYMBOL_REF || GET_CODE (addr) == LABEL_REF)
5281           base = addr;
5282         else if (GET_CODE (addr) == CONST && GET_CODE (XEXP (addr, 0)) == PLUS
5283                  && GET_CODE (XEXP (XEXP (addr, 0), 1)) == CONST_INT)
5284           {
5285             base = XEXP (XEXP (addr, 0), 0);
5286             offset = INTVAL (XEXP (XEXP (addr, 0), 1));
5287           }
5288         else if (GET_CODE (addr) == LO_SUM
5289                  && GET_CODE (XEXP (addr, 1)) == SYMBOL_REF)
5290           base = XEXP (addr, 1);
5291         else if (GET_CODE (addr) == ADDRESSOF)
5292           return change_address (x, VOIDmode, addr);
5293
5294         /* If this is a constant pool reference, we can fold it into its
5295            constant to allow better value tracking.  */
5296         if (base && GET_CODE (base) == SYMBOL_REF
5297             && CONSTANT_POOL_ADDRESS_P (base))
5298           {
5299             rtx constant = get_pool_constant (base);
5300             enum machine_mode const_mode = get_pool_mode (base);
5301             rtx new;
5302
5303             if (CONSTANT_P (constant) && GET_CODE (constant) != CONST_INT)
5304               constant_pool_entries_cost = COST (constant);
5305
5306             /* If we are loading the full constant, we have an equivalence.  */
5307             if (offset == 0 && mode == const_mode)
5308               return constant;
5309
5310             /* If this actually isn't a constant (weird!), we can't do
5311                anything.  Otherwise, handle the two most common cases:
5312                extracting a word from a multi-word constant, and extracting
5313                the low-order bits.  Other cases don't seem common enough to
5314                worry about.  */
5315             if (! CONSTANT_P (constant))
5316               return x;
5317
5318             if (GET_MODE_CLASS (mode) == MODE_INT
5319                 && GET_MODE_SIZE (mode) == UNITS_PER_WORD
5320                 && offset % UNITS_PER_WORD == 0
5321                 && (new = operand_subword (constant,
5322                                            offset / UNITS_PER_WORD,
5323                                            0, const_mode)) != 0)
5324               return new;
5325
5326             if (((BYTES_BIG_ENDIAN
5327                   && offset == GET_MODE_SIZE (GET_MODE (constant)) - 1)
5328                  || (! BYTES_BIG_ENDIAN && offset == 0))
5329                 && (new = gen_lowpart_if_possible (mode, constant)) != 0)
5330               return new;
5331           }
5332
5333         /* If this is a reference to a label at a known position in a jump
5334            table, we also know its value.  */
5335         if (base && GET_CODE (base) == LABEL_REF)
5336           {
5337             rtx label = XEXP (base, 0);
5338             rtx table_insn = NEXT_INSN (label);
5339             
5340             if (table_insn && GET_CODE (table_insn) == JUMP_INSN
5341                 && GET_CODE (PATTERN (table_insn)) == ADDR_VEC)
5342               {
5343                 rtx table = PATTERN (table_insn);
5344
5345                 if (offset >= 0
5346                     && (offset / GET_MODE_SIZE (GET_MODE (table))
5347                         < XVECLEN (table, 0)))
5348                   return XVECEXP (table, 0,
5349                                   offset / GET_MODE_SIZE (GET_MODE (table)));
5350               }
5351             if (table_insn && GET_CODE (table_insn) == JUMP_INSN
5352                 && GET_CODE (PATTERN (table_insn)) == ADDR_DIFF_VEC)
5353               {
5354                 rtx table = PATTERN (table_insn);
5355
5356                 if (offset >= 0
5357                     && (offset / GET_MODE_SIZE (GET_MODE (table))
5358                         < XVECLEN (table, 1)))
5359                   {
5360                     offset /= GET_MODE_SIZE (GET_MODE (table));
5361                     new = gen_rtx_MINUS (Pmode, XVECEXP (table, 1, offset),
5362                                          XEXP (table, 0));
5363
5364                     if (GET_MODE (table) != Pmode)
5365                       new = gen_rtx_TRUNCATE (GET_MODE (table), new);
5366
5367                     /* Indicate this is a constant.  This isn't a 
5368                        valid form of CONST, but it will only be used
5369                        to fold the next insns and then discarded, so
5370                        it should be safe.
5371
5372                        Note this expression must be explicitly discarded,
5373                        by cse_insn, else it may end up in a REG_EQUAL note
5374                        and "escape" to cause problems elsewhere.  */
5375                     return gen_rtx_CONST (GET_MODE (new), new);
5376                   }
5377               }
5378           }
5379
5380         return x;
5381       }
5382
5383     case ASM_OPERANDS:
5384       for (i = XVECLEN (x, 3) - 1; i >= 0; i--)
5385         validate_change (insn, &XVECEXP (x, 3, i),
5386                          fold_rtx (XVECEXP (x, 3, i), insn), 0);
5387       break;
5388       
5389     default:
5390       break;
5391     }
5392
5393   const_arg0 = 0;
5394   const_arg1 = 0;
5395   const_arg2 = 0;
5396   mode_arg0 = VOIDmode;
5397
5398   /* Try folding our operands.
5399      Then see which ones have constant values known.  */
5400
5401   fmt = GET_RTX_FORMAT (code);
5402   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5403     if (fmt[i] == 'e')
5404       {
5405         rtx arg = XEXP (x, i);
5406         rtx folded_arg = arg, const_arg = 0;
5407         enum machine_mode mode_arg = GET_MODE (arg);
5408         rtx cheap_arg, expensive_arg;
5409         rtx replacements[2];
5410         int j;
5411
5412         /* Most arguments are cheap, so handle them specially.  */
5413         switch (GET_CODE (arg))
5414           {
5415           case REG:
5416             /* This is the same as calling equiv_constant; it is duplicated
5417                here for speed.  */
5418             if (REGNO_QTY_VALID_P (REGNO (arg))
5419                 && qty_const[REG_QTY (REGNO (arg))] != 0
5420                 && GET_CODE (qty_const[REG_QTY (REGNO (arg))]) != REG
5421                 && GET_CODE (qty_const[REG_QTY (REGNO (arg))]) != PLUS)
5422               const_arg
5423                 = gen_lowpart_if_possible (GET_MODE (arg),
5424                                            qty_const[REG_QTY (REGNO (arg))]);
5425             break;
5426
5427           case CONST:
5428           case CONST_INT:
5429           case SYMBOL_REF:
5430           case LABEL_REF:
5431           case CONST_DOUBLE:
5432             const_arg = arg;
5433             break;
5434
5435 #ifdef HAVE_cc0
5436           case CC0:
5437             folded_arg = prev_insn_cc0;
5438             mode_arg = prev_insn_cc0_mode;
5439             const_arg = equiv_constant (folded_arg);
5440             break;
5441 #endif
5442
5443           default:
5444             folded_arg = fold_rtx (arg, insn);
5445             const_arg = equiv_constant (folded_arg);
5446           }
5447
5448         /* For the first three operands, see if the operand
5449            is constant or equivalent to a constant.  */
5450         switch (i)
5451           {
5452           case 0:
5453             folded_arg0 = folded_arg;
5454             const_arg0 = const_arg;
5455             mode_arg0 = mode_arg;
5456             break;
5457           case 1:
5458             folded_arg1 = folded_arg;
5459             const_arg1 = const_arg;
5460             break;
5461           case 2:
5462             const_arg2 = const_arg;
5463             break;
5464           }
5465
5466         /* Pick the least expensive of the folded argument and an
5467            equivalent constant argument.  */
5468         if (const_arg == 0 || const_arg == folded_arg
5469             || COST (const_arg) > COST (folded_arg))
5470           cheap_arg = folded_arg, expensive_arg = const_arg;
5471         else
5472           cheap_arg = const_arg, expensive_arg = folded_arg;
5473
5474         /* Try to replace the operand with the cheapest of the two
5475            possibilities.  If it doesn't work and this is either of the first
5476            two operands of a commutative operation, try swapping them.
5477            If THAT fails, try the more expensive, provided it is cheaper
5478            than what is already there.  */
5479
5480         if (cheap_arg == XEXP (x, i))
5481           continue;
5482
5483         if (insn == 0 && ! copied)
5484           {
5485             x = copy_rtx (x);
5486             copied = 1;
5487           }
5488
5489         replacements[0] = cheap_arg, replacements[1] = expensive_arg;
5490         for (j = 0;
5491              j < 2 && replacements[j]
5492              && COST (replacements[j]) < COST (XEXP (x, i));
5493              j++)
5494           {
5495             if (validate_change (insn, &XEXP (x, i), replacements[j], 0))
5496               break;
5497
5498             if (code == NE || code == EQ || GET_RTX_CLASS (code) == 'c')
5499               {
5500                 validate_change (insn, &XEXP (x, i), XEXP (x, 1 - i), 1);
5501                 validate_change (insn, &XEXP (x, 1 - i), replacements[j], 1);
5502
5503                 if (apply_change_group ())
5504                   {
5505                     /* Swap them back to be invalid so that this loop can
5506                        continue and flag them to be swapped back later.  */
5507                     rtx tem;
5508
5509                     tem = XEXP (x, 0); XEXP (x, 0) = XEXP (x, 1);
5510                                        XEXP (x, 1) = tem;
5511                     must_swap = 1;
5512                     break;
5513                   }
5514               }
5515           }
5516       }
5517
5518     else
5519       {
5520         if (fmt[i] == 'E')
5521           /* Don't try to fold inside of a vector of expressions.
5522              Doing nothing is harmless.  */
5523           {;}   
5524       }
5525
5526   /* If a commutative operation, place a constant integer as the second
5527      operand unless the first operand is also a constant integer.  Otherwise,
5528      place any constant second unless the first operand is also a constant.  */
5529
5530   if (code == EQ || code == NE || GET_RTX_CLASS (code) == 'c')
5531     {
5532       if (must_swap || (const_arg0
5533                         && (const_arg1 == 0
5534                             || (GET_CODE (const_arg0) == CONST_INT
5535                                 && GET_CODE (const_arg1) != CONST_INT))))
5536         {
5537           register rtx tem = XEXP (x, 0);
5538
5539           if (insn == 0 && ! copied)
5540             {
5541               x = copy_rtx (x);
5542               copied = 1;
5543             }
5544
5545           validate_change (insn, &XEXP (x, 0), XEXP (x, 1), 1);
5546           validate_change (insn, &XEXP (x, 1), tem, 1);
5547           if (apply_change_group ())
5548             {
5549               tem = const_arg0, const_arg0 = const_arg1, const_arg1 = tem;
5550               tem = folded_arg0, folded_arg0 = folded_arg1, folded_arg1 = tem;
5551             }
5552         }
5553     }
5554
5555   /* If X is an arithmetic operation, see if we can simplify it.  */
5556
5557   switch (GET_RTX_CLASS (code))
5558     {
5559     case '1':
5560       {
5561         int is_const = 0;
5562
5563         /* We can't simplify extension ops unless we know the
5564            original mode.  */
5565         if ((code == ZERO_EXTEND || code == SIGN_EXTEND)
5566             && mode_arg0 == VOIDmode)
5567           break;
5568
5569         /* If we had a CONST, strip it off and put it back later if we
5570            fold.  */
5571         if (const_arg0 != 0 && GET_CODE (const_arg0) == CONST)
5572           is_const = 1, const_arg0 = XEXP (const_arg0, 0);
5573
5574         new = simplify_unary_operation (code, mode,
5575                                         const_arg0 ? const_arg0 : folded_arg0,
5576                                         mode_arg0);
5577         if (new != 0 && is_const)
5578           new = gen_rtx_CONST (mode, new);
5579       }
5580       break;
5581       
5582     case '<':
5583       /* See what items are actually being compared and set FOLDED_ARG[01]
5584          to those values and CODE to the actual comparison code.  If any are
5585          constant, set CONST_ARG0 and CONST_ARG1 appropriately.  We needn't
5586          do anything if both operands are already known to be constant.  */
5587
5588       if (const_arg0 == 0 || const_arg1 == 0)
5589         {
5590           struct table_elt *p0, *p1;
5591           rtx true = const_true_rtx, false = const0_rtx;
5592           enum machine_mode mode_arg1;
5593
5594 #ifdef FLOAT_STORE_FLAG_VALUE
5595           if (GET_MODE_CLASS (mode) == MODE_FLOAT)
5596             {
5597               true = CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALUE,
5598                                                    mode);
5599               false = CONST0_RTX (mode);
5600             }
5601 #endif
5602
5603           code = find_comparison_args (code, &folded_arg0, &folded_arg1,
5604                                        &mode_arg0, &mode_arg1);
5605           const_arg0 = equiv_constant (folded_arg0);
5606           const_arg1 = equiv_constant (folded_arg1);
5607
5608           /* If the mode is VOIDmode or a MODE_CC mode, we don't know
5609              what kinds of things are being compared, so we can't do
5610              anything with this comparison.  */
5611
5612           if (mode_arg0 == VOIDmode || GET_MODE_CLASS (mode_arg0) == MODE_CC)
5613             break;
5614
5615           /* If we do not now have two constants being compared, see
5616              if we can nevertheless deduce some things about the
5617              comparison.  */
5618           if (const_arg0 == 0 || const_arg1 == 0)
5619             {
5620               /* Is FOLDED_ARG0 frame-pointer plus a constant?  Or
5621                  non-explicit constant?  These aren't zero, but we
5622                  don't know their sign.  */
5623               if (const_arg1 == const0_rtx
5624                   && (NONZERO_BASE_PLUS_P (folded_arg0)
5625 #if 0  /* Sad to say, on sysvr4, #pragma weak can make a symbol address
5626           come out as 0.  */
5627                       || GET_CODE (folded_arg0) == SYMBOL_REF
5628 #endif
5629                       || GET_CODE (folded_arg0) == LABEL_REF
5630                       || GET_CODE (folded_arg0) == CONST))
5631                 {
5632                   if (code == EQ)
5633                     return false;
5634                   else if (code == NE)
5635                     return true;
5636                 }
5637
5638               /* See if the two operands are the same.  We don't do this
5639                  for IEEE floating-point since we can't assume x == x
5640                  since x might be a NaN.  */
5641
5642               if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
5643                    || ! FLOAT_MODE_P (mode_arg0) || flag_fast_math)
5644                   && (folded_arg0 == folded_arg1
5645                       || (GET_CODE (folded_arg0) == REG
5646                           && GET_CODE (folded_arg1) == REG
5647                           && (REG_QTY (REGNO (folded_arg0))
5648                               == REG_QTY (REGNO (folded_arg1))))
5649                       || ((p0 = lookup (folded_arg0,
5650                                         (safe_hash (folded_arg0, mode_arg0)
5651                                          % NBUCKETS), mode_arg0))
5652                           && (p1 = lookup (folded_arg1,
5653                                            (safe_hash (folded_arg1, mode_arg0)
5654                                             % NBUCKETS), mode_arg0))
5655                           && p0->first_same_value == p1->first_same_value)))
5656                 return ((code == EQ || code == LE || code == GE
5657                          || code == LEU || code == GEU)
5658                         ? true : false);
5659
5660               /* If FOLDED_ARG0 is a register, see if the comparison we are
5661                  doing now is either the same as we did before or the reverse
5662                  (we only check the reverse if not floating-point).  */
5663               else if (GET_CODE (folded_arg0) == REG)
5664                 {
5665                   int qty = REG_QTY (REGNO (folded_arg0));
5666
5667                   if (REGNO_QTY_VALID_P (REGNO (folded_arg0))
5668                       && (comparison_dominates_p (qty_comparison_code[qty], code)
5669                           || (comparison_dominates_p (qty_comparison_code[qty],
5670                                                       reverse_condition (code))
5671                               && ! FLOAT_MODE_P (mode_arg0)))
5672                       && (rtx_equal_p (qty_comparison_const[qty], folded_arg1)
5673                           || (const_arg1
5674                               && rtx_equal_p (qty_comparison_const[qty],
5675                                               const_arg1))
5676                           || (GET_CODE (folded_arg1) == REG
5677                               && (REG_QTY (REGNO (folded_arg1))
5678                                   == qty_comparison_qty[qty]))))
5679                     return (comparison_dominates_p (qty_comparison_code[qty],
5680                                                     code)
5681                             ? true : false);
5682                 }
5683             }
5684         }
5685
5686       /* If we are comparing against zero, see if the first operand is
5687          equivalent to an IOR with a constant.  If so, we may be able to
5688          determine the result of this comparison.  */
5689
5690       if (const_arg1 == const0_rtx)
5691         {
5692           rtx y = lookup_as_function (folded_arg0, IOR);
5693           rtx inner_const;
5694
5695           if (y != 0
5696               && (inner_const = equiv_constant (XEXP (y, 1))) != 0
5697               && GET_CODE (inner_const) == CONST_INT
5698               && INTVAL (inner_const) != 0)
5699             {
5700               int sign_bitnum = GET_MODE_BITSIZE (mode_arg0) - 1;
5701               int has_sign = (HOST_BITS_PER_WIDE_INT >= sign_bitnum
5702                               && (INTVAL (inner_const)
5703                                   & ((HOST_WIDE_INT) 1 << sign_bitnum)));
5704               rtx true = const_true_rtx, false = const0_rtx;
5705
5706 #ifdef FLOAT_STORE_FLAG_VALUE
5707               if (GET_MODE_CLASS (mode) == MODE_FLOAT)
5708                 {
5709                   true = CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALUE,
5710                                                        mode);
5711                   false = CONST0_RTX (mode);
5712                 }
5713 #endif
5714
5715               switch (code)
5716                 {
5717                 case EQ:
5718                   return false;
5719                 case NE:
5720                   return true;
5721                 case LT:  case LE:
5722                   if (has_sign)
5723                     return true;
5724                   break;
5725                 case GT:  case GE:
5726                   if (has_sign)
5727                     return false;
5728                   break;
5729                 default:
5730                   break;
5731                 }
5732             }
5733         }
5734
5735       new = simplify_relational_operation (code, mode_arg0,
5736                                            const_arg0 ? const_arg0 : folded_arg0,
5737                                            const_arg1 ? const_arg1 : folded_arg1);
5738 #ifdef FLOAT_STORE_FLAG_VALUE
5739       if (new != 0 && GET_MODE_CLASS (mode) == MODE_FLOAT)
5740         new = ((new == const0_rtx) ? CONST0_RTX (mode)
5741                : CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALUE, mode));
5742 #endif
5743       break;
5744
5745     case '2':
5746     case 'c':
5747       switch (code)
5748         {
5749         case PLUS:
5750           /* If the second operand is a LABEL_REF, see if the first is a MINUS
5751              with that LABEL_REF as its second operand.  If so, the result is
5752              the first operand of that MINUS.  This handles switches with an
5753              ADDR_DIFF_VEC table.  */
5754           if (const_arg1 && GET_CODE (const_arg1) == LABEL_REF)
5755             {
5756               rtx y
5757                 = GET_CODE (folded_arg0) == MINUS ? folded_arg0
5758                   : lookup_as_function (folded_arg0, MINUS);
5759
5760               if (y != 0 && GET_CODE (XEXP (y, 1)) == LABEL_REF
5761                   && XEXP (XEXP (y, 1), 0) == XEXP (const_arg1, 0))
5762                 return XEXP (y, 0);
5763
5764               /* Now try for a CONST of a MINUS like the above.  */
5765               if ((y = (GET_CODE (folded_arg0) == CONST ? folded_arg0
5766                         : lookup_as_function (folded_arg0, CONST))) != 0
5767                   && GET_CODE (XEXP (y, 0)) == MINUS
5768                   && GET_CODE (XEXP (XEXP (y, 0), 1)) == LABEL_REF
5769                   && XEXP (XEXP (XEXP (y, 0),1), 0) == XEXP (const_arg1, 0))
5770                 return XEXP (XEXP (y, 0), 0);
5771             }
5772
5773           /* Likewise if the operands are in the other order.  */
5774           if (const_arg0 && GET_CODE (const_arg0) == LABEL_REF)
5775             {
5776               rtx y
5777                 = GET_CODE (folded_arg1) == MINUS ? folded_arg1
5778                   : lookup_as_function (folded_arg1, MINUS);
5779
5780               if (y != 0 && GET_CODE (XEXP (y, 1)) == LABEL_REF
5781                   && XEXP (XEXP (y, 1), 0) == XEXP (const_arg0, 0))
5782                 return XEXP (y, 0);
5783
5784               /* Now try for a CONST of a MINUS like the above.  */
5785               if ((y = (GET_CODE (folded_arg1) == CONST ? folded_arg1
5786                         : lookup_as_function (folded_arg1, CONST))) != 0
5787                   && GET_CODE (XEXP (y, 0)) == MINUS
5788                   && GET_CODE (XEXP (XEXP (y, 0), 1)) == LABEL_REF
5789                   && XEXP (XEXP (XEXP (y, 0),1), 0) == XEXP (const_arg0, 0))
5790                 return XEXP (XEXP (y, 0), 0);
5791             }
5792
5793           /* If second operand is a register equivalent to a negative
5794              CONST_INT, see if we can find a register equivalent to the
5795              positive constant.  Make a MINUS if so.  Don't do this for
5796              a non-negative constant since we might then alternate between
5797              chosing positive and negative constants.  Having the positive
5798              constant previously-used is the more common case.  Be sure
5799              the resulting constant is non-negative; if const_arg1 were
5800              the smallest negative number this would overflow: depending
5801              on the mode, this would either just be the same value (and
5802              hence not save anything) or be incorrect.  */
5803           if (const_arg1 != 0 && GET_CODE (const_arg1) == CONST_INT
5804               && INTVAL (const_arg1) < 0
5805               /* This used to test
5806
5807                  - INTVAL (const_arg1) >= 0
5808
5809                  But The Sun V5.0 compilers mis-compiled that test.  So
5810                  instead we test for the problematic value in a more direct
5811                  manner and hope the Sun compilers get it correct.  */
5812               && INTVAL (const_arg1) != (1 << (HOST_BITS_PER_WIDE_INT - 1))
5813               && GET_CODE (folded_arg1) == REG)
5814             {
5815               rtx new_const = GEN_INT (- INTVAL (const_arg1));
5816               struct table_elt *p
5817                 = lookup (new_const, safe_hash (new_const, mode) % NBUCKETS,
5818                           mode);
5819
5820               if (p)
5821                 for (p = p->first_same_value; p; p = p->next_same_value)
5822                   if (GET_CODE (p->exp) == REG)
5823                     return cse_gen_binary (MINUS, mode, folded_arg0,
5824                                            canon_reg (p->exp, NULL_RTX));
5825             }
5826           goto from_plus;
5827
5828         case MINUS:
5829           /* If we have (MINUS Y C), see if Y is known to be (PLUS Z C2).
5830              If so, produce (PLUS Z C2-C).  */
5831           if (const_arg1 != 0 && GET_CODE (const_arg1) == CONST_INT)
5832             {
5833               rtx y = lookup_as_function (XEXP (x, 0), PLUS);
5834               if (y && GET_CODE (XEXP (y, 1)) == CONST_INT)
5835                 return fold_rtx (plus_constant (copy_rtx (y),
5836                                                 -INTVAL (const_arg1)),
5837                                  NULL_RTX);
5838             }
5839
5840           /* ... fall through ...  */
5841
5842         from_plus:
5843         case SMIN:    case SMAX:      case UMIN:    case UMAX:
5844         case IOR:     case AND:       case XOR:
5845         case MULT:    case DIV:       case UDIV:
5846         case ASHIFT:  case LSHIFTRT:  case ASHIFTRT:
5847           /* If we have (<op> <reg> <const_int>) for an associative OP and REG
5848              is known to be of similar form, we may be able to replace the
5849              operation with a combined operation.  This may eliminate the
5850              intermediate operation if every use is simplified in this way.
5851              Note that the similar optimization done by combine.c only works
5852              if the intermediate operation's result has only one reference.  */
5853
5854           if (GET_CODE (folded_arg0) == REG
5855               && const_arg1 && GET_CODE (const_arg1) == CONST_INT)
5856             {
5857               int is_shift
5858                 = (code == ASHIFT || code == ASHIFTRT || code == LSHIFTRT);
5859               rtx y = lookup_as_function (folded_arg0, code);
5860               rtx inner_const;
5861               enum rtx_code associate_code;
5862               rtx new_const;
5863
5864               if (y == 0
5865                   || 0 == (inner_const
5866                            = equiv_constant (fold_rtx (XEXP (y, 1), 0)))
5867                   || GET_CODE (inner_const) != CONST_INT
5868                   /* If we have compiled a statement like
5869                      "if (x == (x & mask1))", and now are looking at
5870                      "x & mask2", we will have a case where the first operand
5871                      of Y is the same as our first operand.  Unless we detect
5872                      this case, an infinite loop will result.  */
5873                   || XEXP (y, 0) == folded_arg0)
5874                 break;
5875
5876               /* Don't associate these operations if they are a PLUS with the
5877                  same constant and it is a power of two.  These might be doable
5878                  with a pre- or post-increment.  Similarly for two subtracts of
5879                  identical powers of two with post decrement.  */
5880
5881               if (code == PLUS && INTVAL (const_arg1) == INTVAL (inner_const)
5882                   && ((HAVE_PRE_INCREMENT
5883                           && exact_log2 (INTVAL (const_arg1)) >= 0)
5884                       || (HAVE_POST_INCREMENT
5885                           && exact_log2 (INTVAL (const_arg1)) >= 0)
5886                       || (HAVE_PRE_DECREMENT
5887                           && exact_log2 (- INTVAL (const_arg1)) >= 0)
5888                       || (HAVE_POST_DECREMENT
5889                           && exact_log2 (- INTVAL (const_arg1)) >= 0)))
5890                 break;
5891
5892               /* Compute the code used to compose the constants.  For example,
5893                  A/C1/C2 is A/(C1 * C2), so if CODE == DIV, we want MULT.  */
5894
5895               associate_code
5896                 = (code == MULT || code == DIV || code == UDIV ? MULT
5897                    : is_shift || code == PLUS || code == MINUS ? PLUS : code);
5898
5899               new_const = simplify_binary_operation (associate_code, mode,
5900                                                      const_arg1, inner_const);
5901
5902               if (new_const == 0)
5903                 break;
5904
5905               /* If we are associating shift operations, don't let this
5906                  produce a shift of the size of the object or larger.
5907                  This could occur when we follow a sign-extend by a right
5908                  shift on a machine that does a sign-extend as a pair
5909                  of shifts.  */
5910
5911               if (is_shift && GET_CODE (new_const) == CONST_INT
5912                   && INTVAL (new_const) >= GET_MODE_BITSIZE (mode))
5913                 {
5914                   /* As an exception, we can turn an ASHIFTRT of this
5915                      form into a shift of the number of bits - 1.  */
5916                   if (code == ASHIFTRT)
5917                     new_const = GEN_INT (GET_MODE_BITSIZE (mode) - 1);
5918                   else
5919                     break;
5920                 }
5921
5922               y = copy_rtx (XEXP (y, 0));
5923
5924               /* If Y contains our first operand (the most common way this
5925                  can happen is if Y is a MEM), we would do into an infinite
5926                  loop if we tried to fold it.  So don't in that case.  */
5927
5928               if (! reg_mentioned_p (folded_arg0, y))
5929                 y = fold_rtx (y, insn);
5930
5931               return cse_gen_binary (code, mode, y, new_const);
5932             }
5933           break;
5934
5935         default:
5936           break;
5937         }
5938
5939       new = simplify_binary_operation (code, mode,
5940                                        const_arg0 ? const_arg0 : folded_arg0,
5941                                        const_arg1 ? const_arg1 : folded_arg1);
5942       break;
5943
5944     case 'o':
5945       /* (lo_sum (high X) X) is simply X.  */
5946       if (code == LO_SUM && const_arg0 != 0
5947           && GET_CODE (const_arg0) == HIGH
5948           && rtx_equal_p (XEXP (const_arg0, 0), const_arg1))
5949         return const_arg1;
5950       break;
5951
5952     case '3':
5953     case 'b':
5954       new = simplify_ternary_operation (code, mode, mode_arg0,
5955                                         const_arg0 ? const_arg0 : folded_arg0,
5956                                         const_arg1 ? const_arg1 : folded_arg1,
5957                                         const_arg2 ? const_arg2 : XEXP (x, 2));
5958       break;
5959
5960     case 'x':
5961       /* Always eliminate CONSTANT_P_RTX at this stage. */
5962       if (code == CONSTANT_P_RTX)
5963         return (const_arg0 ? const1_rtx : const0_rtx);
5964       break;
5965     }
5966
5967   return new ? new : x;
5968 }
5969 \f
5970 /* Return a constant value currently equivalent to X.
5971    Return 0 if we don't know one.  */
5972
5973 static rtx
5974 equiv_constant (x)
5975      rtx x;
5976 {
5977   if (GET_CODE (x) == REG
5978       && REGNO_QTY_VALID_P (REGNO (x))
5979       && qty_const[REG_QTY (REGNO (x))])
5980     x = gen_lowpart_if_possible (GET_MODE (x), qty_const[REG_QTY (REGNO (x))]);
5981
5982   if (x == 0 || CONSTANT_P (x))
5983     return x;
5984
5985   /* If X is a MEM, try to fold it outside the context of any insn to see if
5986      it might be equivalent to a constant.  That handles the case where it
5987      is a constant-pool reference.  Then try to look it up in the hash table
5988      in case it is something whose value we have seen before.  */
5989
5990   if (GET_CODE (x) == MEM)
5991     {
5992       struct table_elt *elt;
5993
5994       x = fold_rtx (x, NULL_RTX);
5995       if (CONSTANT_P (x))
5996         return x;
5997
5998       elt = lookup (x, safe_hash (x, GET_MODE (x)) % NBUCKETS, GET_MODE (x));
5999       if (elt == 0)
6000         return 0;
6001
6002       for (elt = elt->first_same_value; elt; elt = elt->next_same_value)
6003         if (elt->is_const && CONSTANT_P (elt->exp))
6004           return elt->exp;
6005     }
6006
6007   return 0;
6008 }
6009 \f
6010 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a fixed-point
6011    number, return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
6012    least-significant part of X.
6013    MODE specifies how big a part of X to return.  
6014
6015    If the requested operation cannot be done, 0 is returned.
6016
6017    This is similar to gen_lowpart in emit-rtl.c.  */
6018
6019 rtx
6020 gen_lowpart_if_possible (mode, x)
6021      enum machine_mode mode;
6022      register rtx x;
6023 {
6024   rtx result = gen_lowpart_common (mode, x);
6025
6026   if (result)
6027     return result;
6028   else if (GET_CODE (x) == MEM)
6029     {
6030       /* This is the only other case we handle.  */
6031       register int offset = 0;
6032       rtx new;
6033
6034       if (WORDS_BIG_ENDIAN)
6035         offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
6036                   - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
6037       if (BYTES_BIG_ENDIAN)
6038         /* Adjust the address so that the address-after-the-data is
6039            unchanged.  */
6040         offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
6041                    - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
6042       new = gen_rtx_MEM (mode, plus_constant (XEXP (x, 0), offset));
6043       if (! memory_address_p (mode, XEXP (new, 0)))
6044         return 0;
6045       RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (x);
6046       MEM_COPY_ATTRIBUTES (new, x);
6047       return new;
6048     }
6049   else
6050     return 0;
6051 }
6052 \f
6053 /* Given INSN, a jump insn, TAKEN indicates if we are following the "taken"
6054    branch.  It will be zero if not.
6055
6056    In certain cases, this can cause us to add an equivalence.  For example,
6057    if we are following the taken case of 
6058         if (i == 2)
6059    we can add the fact that `i' and '2' are now equivalent.
6060
6061    In any case, we can record that this comparison was passed.  If the same
6062    comparison is seen later, we will know its value.  */
6063
6064 static void
6065 record_jump_equiv (insn, taken)
6066      rtx insn;
6067      int taken;
6068 {
6069   int cond_known_true;
6070   rtx op0, op1;
6071   enum machine_mode mode, mode0, mode1;
6072   int reversed_nonequality = 0;
6073   enum rtx_code code;
6074
6075   /* Ensure this is the right kind of insn.  */
6076   if (! condjump_p (insn) || simplejump_p (insn))
6077     return;
6078
6079   /* See if this jump condition is known true or false.  */
6080   if (taken)
6081     cond_known_true = (XEXP (SET_SRC (PATTERN (insn)), 2) == pc_rtx);
6082   else
6083     cond_known_true = (XEXP (SET_SRC (PATTERN (insn)), 1) == pc_rtx);
6084
6085   /* Get the type of comparison being done and the operands being compared.
6086      If we had to reverse a non-equality condition, record that fact so we
6087      know that it isn't valid for floating-point.  */
6088   code = GET_CODE (XEXP (SET_SRC (PATTERN (insn)), 0));
6089   op0 = fold_rtx (XEXP (XEXP (SET_SRC (PATTERN (insn)), 0), 0), insn);
6090   op1 = fold_rtx (XEXP (XEXP (SET_SRC (PATTERN (insn)), 0), 1), insn);
6091
6092   code = find_comparison_args (code, &op0, &op1, &mode0, &mode1);
6093   if (! cond_known_true)
6094     {
6095       reversed_nonequality = (code != EQ && code != NE);
6096       code = reverse_condition (code);
6097     }
6098
6099   /* The mode is the mode of the non-constant.  */
6100   mode = mode0;
6101   if (mode1 != VOIDmode)
6102     mode = mode1;
6103
6104   record_jump_cond (code, mode, op0, op1, reversed_nonequality);
6105 }
6106
6107 /* We know that comparison CODE applied to OP0 and OP1 in MODE is true.
6108    REVERSED_NONEQUALITY is nonzero if CODE had to be swapped.
6109    Make any useful entries we can with that information.  Called from
6110    above function and called recursively.  */
6111
6112 static void
6113 record_jump_cond (code, mode, op0, op1, reversed_nonequality)
6114      enum rtx_code code;
6115      enum machine_mode mode;
6116      rtx op0, op1;
6117      int reversed_nonequality;
6118 {
6119   unsigned op0_hash, op1_hash;
6120   int op0_in_memory, op0_in_struct, op1_in_memory, op1_in_struct;
6121   struct table_elt *op0_elt, *op1_elt;
6122
6123   /* If OP0 and OP1 are known equal, and either is a paradoxical SUBREG,
6124      we know that they are also equal in the smaller mode (this is also
6125      true for all smaller modes whether or not there is a SUBREG, but
6126      is not worth testing for with no SUBREG).  */
6127
6128   /* Note that GET_MODE (op0) may not equal MODE.  */
6129   if (code == EQ && GET_CODE (op0) == SUBREG
6130       && (GET_MODE_SIZE (GET_MODE (op0))
6131           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0)))))
6132     {
6133       enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op0));
6134       rtx tem = gen_lowpart_if_possible (inner_mode, op1);
6135
6136       record_jump_cond (code, mode, SUBREG_REG (op0),
6137                         tem ? tem : gen_rtx_SUBREG (inner_mode, op1, 0),
6138                         reversed_nonequality);
6139     }
6140
6141   if (code == EQ && GET_CODE (op1) == SUBREG
6142       && (GET_MODE_SIZE (GET_MODE (op1))
6143           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op1)))))
6144     {
6145       enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op1));
6146       rtx tem = gen_lowpart_if_possible (inner_mode, op0);
6147
6148       record_jump_cond (code, mode, SUBREG_REG (op1),
6149                         tem ? tem : gen_rtx_SUBREG (inner_mode, op0, 0),
6150                         reversed_nonequality);
6151     }
6152
6153   /* Similarly, if this is an NE comparison, and either is a SUBREG 
6154      making a smaller mode, we know the whole thing is also NE.  */
6155
6156   /* Note that GET_MODE (op0) may not equal MODE;
6157      if we test MODE instead, we can get an infinite recursion
6158      alternating between two modes each wider than MODE.  */
6159
6160   if (code == NE && GET_CODE (op0) == SUBREG
6161       && subreg_lowpart_p (op0)
6162       && (GET_MODE_SIZE (GET_MODE (op0))
6163           < GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0)))))
6164     {
6165       enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op0));
6166       rtx tem = gen_lowpart_if_possible (inner_mode, op1);
6167
6168       record_jump_cond (code, mode, SUBREG_REG (op0),
6169                         tem ? tem : gen_rtx_SUBREG (inner_mode, op1, 0),
6170                         reversed_nonequality);
6171     }
6172
6173   if (code == NE && GET_CODE (op1) == SUBREG
6174       && subreg_lowpart_p (op1)
6175       && (GET_MODE_SIZE (GET_MODE (op1))
6176           < GET_MODE_SIZE (GET_MODE (SUBREG_REG (op1)))))
6177     {
6178       enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op1));
6179       rtx tem = gen_lowpart_if_possible (inner_mode, op0);
6180
6181       record_jump_cond (code, mode, SUBREG_REG (op1),
6182                         tem ? tem : gen_rtx_SUBREG (inner_mode, op0, 0),
6183                         reversed_nonequality);
6184     }
6185
6186   /* Hash both operands.  */
6187
6188   do_not_record = 0;
6189   hash_arg_in_memory = 0;
6190   hash_arg_in_struct = 0;
6191   op0_hash = HASH (op0, mode);
6192   op0_in_memory = hash_arg_in_memory;
6193   op0_in_struct = hash_arg_in_struct;
6194
6195   if (do_not_record)
6196     return;
6197
6198   do_not_record = 0;
6199   hash_arg_in_memory = 0;
6200   hash_arg_in_struct = 0;
6201   op1_hash = HASH (op1, mode);
6202   op1_in_memory = hash_arg_in_memory;
6203   op1_in_struct = hash_arg_in_struct;
6204   
6205   if (do_not_record)
6206     return;
6207
6208   /* Look up both operands.  */
6209   op0_elt = lookup (op0, op0_hash, mode);
6210   op1_elt = lookup (op1, op1_hash, mode);
6211
6212   /* If both operands are already equivalent or if they are not in the
6213      table but are identical, do nothing.  */
6214   if ((op0_elt != 0 && op1_elt != 0
6215        && op0_elt->first_same_value == op1_elt->first_same_value)
6216       || op0 == op1 || rtx_equal_p (op0, op1))
6217     return;
6218
6219   /* If we aren't setting two things equal all we can do is save this
6220      comparison.   Similarly if this is floating-point.  In the latter
6221      case, OP1 might be zero and both -0.0 and 0.0 are equal to it.
6222      If we record the equality, we might inadvertently delete code
6223      whose intent was to change -0 to +0.  */
6224
6225   if (code != EQ || FLOAT_MODE_P (GET_MODE (op0)))
6226     {
6227       /* If we reversed a floating-point comparison, if OP0 is not a
6228          register, or if OP1 is neither a register or constant, we can't
6229          do anything.  */
6230
6231       if (GET_CODE (op1) != REG)
6232         op1 = equiv_constant (op1);
6233
6234       if ((reversed_nonequality && FLOAT_MODE_P (mode))
6235           || GET_CODE (op0) != REG || op1 == 0)
6236         return;
6237
6238       /* Put OP0 in the hash table if it isn't already.  This gives it a
6239          new quantity number.  */
6240       if (op0_elt == 0)
6241         {
6242           if (insert_regs (op0, NULL_PTR, 0))
6243             {
6244               rehash_using_reg (op0);
6245               op0_hash = HASH (op0, mode);
6246
6247               /* If OP0 is contained in OP1, this changes its hash code
6248                  as well.  Faster to rehash than to check, except
6249                  for the simple case of a constant.  */
6250               if (! CONSTANT_P (op1))
6251                 op1_hash = HASH (op1,mode);
6252             }
6253
6254           op0_elt = insert (op0, NULL_PTR, op0_hash, mode);
6255           op0_elt->in_memory = op0_in_memory;
6256           op0_elt->in_struct = op0_in_struct;
6257         }
6258
6259       qty_comparison_code[REG_QTY (REGNO (op0))] = code;
6260       if (GET_CODE (op1) == REG)
6261         {
6262           /* Look it up again--in case op0 and op1 are the same.  */
6263           op1_elt = lookup (op1, op1_hash, mode);
6264
6265           /* Put OP1 in the hash table so it gets a new quantity number.  */
6266           if (op1_elt == 0)
6267             {
6268               if (insert_regs (op1, NULL_PTR, 0))
6269                 {
6270                   rehash_using_reg (op1);
6271                   op1_hash = HASH (op1, mode);
6272                 }
6273
6274               op1_elt = insert (op1, NULL_PTR, op1_hash, mode);
6275               op1_elt->in_memory = op1_in_memory;
6276               op1_elt->in_struct = op1_in_struct;
6277             }
6278
6279           qty_comparison_qty[REG_QTY (REGNO (op0))] = REG_QTY (REGNO (op1));
6280           qty_comparison_const[REG_QTY (REGNO (op0))] = 0;
6281         }
6282       else
6283         {
6284           qty_comparison_qty[REG_QTY (REGNO (op0))] = -1;
6285           qty_comparison_const[REG_QTY (REGNO (op0))] = op1;
6286         }
6287
6288       return;
6289     }
6290
6291   /* If either side is still missing an equivalence, make it now,
6292      then merge the equivalences.  */
6293
6294   if (op0_elt == 0)
6295     {
6296       if (insert_regs (op0, NULL_PTR, 0))
6297         {
6298           rehash_using_reg (op0);
6299           op0_hash = HASH (op0, mode);
6300         }
6301
6302       op0_elt = insert (op0, NULL_PTR, op0_hash, mode);
6303       op0_elt->in_memory = op0_in_memory;
6304       op0_elt->in_struct = op0_in_struct;
6305     }
6306
6307   if (op1_elt == 0)
6308     {
6309       if (insert_regs (op1, NULL_PTR, 0))
6310         {
6311           rehash_using_reg (op1);
6312           op1_hash = HASH (op1, mode);
6313         }
6314
6315       op1_elt = insert (op1, NULL_PTR, op1_hash, mode);
6316       op1_elt->in_memory = op1_in_memory;
6317       op1_elt->in_struct = op1_in_struct;
6318     }
6319
6320   merge_equiv_classes (op0_elt, op1_elt);
6321   last_jump_equiv_class = op0_elt;
6322 }
6323 \f
6324 /* CSE processing for one instruction.
6325    First simplify sources and addresses of all assignments
6326    in the instruction, using previously-computed equivalents values.
6327    Then install the new sources and destinations in the table
6328    of available values. 
6329
6330    If LIBCALL_INSN is nonzero, don't record any equivalence made in
6331    the insn.  It means that INSN is inside libcall block.  In this
6332    case LIBCALL_INSN is the corresponding insn with REG_LIBCALL. */
6333
6334 /* Data on one SET contained in the instruction.  */
6335
6336 struct set
6337 {
6338   /* The SET rtx itself.  */
6339   rtx rtl;
6340   /* The SET_SRC of the rtx (the original value, if it is changing).  */
6341   rtx src;
6342   /* The hash-table element for the SET_SRC of the SET.  */
6343   struct table_elt *src_elt;
6344   /* Hash value for the SET_SRC.  */
6345   unsigned src_hash;
6346   /* Hash value for the SET_DEST.  */
6347   unsigned dest_hash;
6348   /* The SET_DEST, with SUBREG, etc., stripped.  */
6349   rtx inner_dest;
6350   /* Place where the pointer to the INNER_DEST was found.  */
6351   rtx *inner_dest_loc;
6352   /* Nonzero if the SET_SRC is in memory.  */ 
6353   char src_in_memory;
6354   /* Nonzero if the SET_SRC is in a structure.  */ 
6355   char src_in_struct;
6356   /* Nonzero if the SET_SRC contains something
6357      whose value cannot be predicted and understood.  */
6358   char src_volatile;
6359   /* Original machine mode, in case it becomes a CONST_INT.  */
6360   enum machine_mode mode;
6361   /* A constant equivalent for SET_SRC, if any.  */
6362   rtx src_const;
6363   /* Hash value of constant equivalent for SET_SRC.  */
6364   unsigned src_const_hash;
6365   /* Table entry for constant equivalent for SET_SRC, if any.  */
6366   struct table_elt *src_const_elt;
6367 };
6368
6369 static void
6370 cse_insn (insn, libcall_insn)
6371      rtx insn;
6372      rtx libcall_insn;
6373 {
6374   register rtx x = PATTERN (insn);
6375   register int i;
6376   rtx tem;
6377   register int n_sets = 0;
6378
6379 #ifdef HAVE_cc0
6380   /* Records what this insn does to set CC0.  */
6381   rtx this_insn_cc0 = 0;
6382   enum machine_mode this_insn_cc0_mode = VOIDmode;
6383 #endif
6384
6385   rtx src_eqv = 0;
6386   struct table_elt *src_eqv_elt = 0;
6387   int src_eqv_volatile = 0;
6388   int src_eqv_in_memory = 0;
6389   int src_eqv_in_struct = 0;
6390   unsigned src_eqv_hash = 0;
6391
6392   struct set *sets = NULL_PTR;
6393
6394   this_insn = insn;
6395
6396   /* Find all the SETs and CLOBBERs in this instruction.
6397      Record all the SETs in the array `set' and count them.
6398      Also determine whether there is a CLOBBER that invalidates
6399      all memory references, or all references at varying addresses.  */
6400
6401   if (GET_CODE (insn) == CALL_INSN)
6402     {
6403       for (tem = CALL_INSN_FUNCTION_USAGE (insn); tem; tem = XEXP (tem, 1))
6404         if (GET_CODE (XEXP (tem, 0)) == CLOBBER)
6405           invalidate (SET_DEST (XEXP (tem, 0)), VOIDmode);
6406     }
6407
6408   if (GET_CODE (x) == SET)
6409     {
6410       sets = (struct set *) alloca (sizeof (struct set));
6411       sets[0].rtl = x;
6412
6413       /* Ignore SETs that are unconditional jumps.
6414          They never need cse processing, so this does not hurt.
6415          The reason is not efficiency but rather
6416          so that we can test at the end for instructions
6417          that have been simplified to unconditional jumps
6418          and not be misled by unchanged instructions
6419          that were unconditional jumps to begin with.  */
6420       if (SET_DEST (x) == pc_rtx
6421           && GET_CODE (SET_SRC (x)) == LABEL_REF)
6422         ;
6423
6424       /* Don't count call-insns, (set (reg 0) (call ...)), as a set.
6425          The hard function value register is used only once, to copy to
6426          someplace else, so it isn't worth cse'ing (and on 80386 is unsafe)!
6427          Ensure we invalidate the destination register.  On the 80386 no
6428          other code would invalidate it since it is a fixed_reg.
6429          We need not check the return of apply_change_group; see canon_reg.  */
6430
6431       else if (GET_CODE (SET_SRC (x)) == CALL)
6432         {
6433           canon_reg (SET_SRC (x), insn);
6434           apply_change_group ();
6435           fold_rtx (SET_SRC (x), insn);
6436           invalidate (SET_DEST (x), VOIDmode);
6437         }
6438       else
6439         n_sets = 1;
6440     }
6441   else if (GET_CODE (x) == PARALLEL)
6442     {
6443       register int lim = XVECLEN (x, 0);
6444
6445       sets = (struct set *) alloca (lim * sizeof (struct set));
6446
6447       /* Find all regs explicitly clobbered in this insn,
6448          and ensure they are not replaced with any other regs
6449          elsewhere in this insn.
6450          When a reg that is clobbered is also used for input,
6451          we should presume that that is for a reason,
6452          and we should not substitute some other register
6453          which is not supposed to be clobbered.
6454          Therefore, this loop cannot be merged into the one below
6455          because a CALL may precede a CLOBBER and refer to the
6456          value clobbered.  We must not let a canonicalization do
6457          anything in that case.  */
6458       for (i = 0; i < lim; i++)
6459         {
6460           register rtx y = XVECEXP (x, 0, i);
6461           if (GET_CODE (y) == CLOBBER)
6462             {
6463               rtx clobbered = XEXP (y, 0);
6464
6465               if (GET_CODE (clobbered) == REG
6466                   || GET_CODE (clobbered) == SUBREG)
6467                 invalidate (clobbered, VOIDmode);
6468               else if (GET_CODE (clobbered) == STRICT_LOW_PART
6469                        || GET_CODE (clobbered) == ZERO_EXTRACT)
6470                 invalidate (XEXP (clobbered, 0), GET_MODE (clobbered));
6471             }
6472         }
6473             
6474       for (i = 0; i < lim; i++)
6475         {
6476           register rtx y = XVECEXP (x, 0, i);
6477           if (GET_CODE (y) == SET)
6478             {
6479               /* As above, we ignore unconditional jumps and call-insns and
6480                  ignore the result of apply_change_group.  */
6481               if (GET_CODE (SET_SRC (y)) == CALL)
6482                 {
6483                   canon_reg (SET_SRC (y), insn);
6484                   apply_change_group ();
6485                   fold_rtx (SET_SRC (y), insn);
6486                   invalidate (SET_DEST (y), VOIDmode);
6487                 }
6488               else if (SET_DEST (y) == pc_rtx
6489                        && GET_CODE (SET_SRC (y)) == LABEL_REF)
6490                 ;
6491               else
6492                 sets[n_sets++].rtl = y;
6493             }
6494           else if (GET_CODE (y) == CLOBBER)
6495             {
6496               /* If we clobber memory, canon the address.
6497                  This does nothing when a register is clobbered
6498                  because we have already invalidated the reg.  */
6499               if (GET_CODE (XEXP (y, 0)) == MEM)
6500                 canon_reg (XEXP (y, 0), NULL_RTX);
6501             }
6502           else if (GET_CODE (y) == USE
6503                    && ! (GET_CODE (XEXP (y, 0)) == REG
6504                          && REGNO (XEXP (y, 0)) < FIRST_PSEUDO_REGISTER))
6505             canon_reg (y, NULL_RTX);
6506           else if (GET_CODE (y) == CALL)
6507             {
6508               /* The result of apply_change_group can be ignored; see
6509                  canon_reg.  */
6510               canon_reg (y, insn);
6511               apply_change_group ();
6512               fold_rtx (y, insn);
6513             }
6514         }
6515     }
6516   else if (GET_CODE (x) == CLOBBER)
6517     {
6518       if (GET_CODE (XEXP (x, 0)) == MEM)
6519         canon_reg (XEXP (x, 0), NULL_RTX);
6520     }
6521
6522   /* Canonicalize a USE of a pseudo register or memory location.  */
6523   else if (GET_CODE (x) == USE
6524            && ! (GET_CODE (XEXP (x, 0)) == REG
6525                  && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER))
6526     canon_reg (XEXP (x, 0), NULL_RTX);
6527   else if (GET_CODE (x) == CALL)
6528     {
6529       /* The result of apply_change_group can be ignored; see canon_reg.  */
6530       canon_reg (x, insn);
6531       apply_change_group ();
6532       fold_rtx (x, insn);
6533     }
6534
6535   /* Store the equivalent value in SRC_EQV, if different, or if the DEST
6536      is a STRICT_LOW_PART.  The latter condition is necessary because SRC_EQV
6537      is handled specially for this case, and if it isn't set, then there will
6538      be no equivalence for the destination.  */
6539   if (n_sets == 1 && REG_NOTES (insn) != 0
6540       && (tem = find_reg_note (insn, REG_EQUAL, NULL_RTX)) != 0
6541       && (! rtx_equal_p (XEXP (tem, 0), SET_SRC (sets[0].rtl))
6542           || GET_CODE (SET_DEST (sets[0].rtl)) == STRICT_LOW_PART))
6543     src_eqv = canon_reg (XEXP (tem, 0), NULL_RTX);
6544
6545   /* Canonicalize sources and addresses of destinations.
6546      We do this in a separate pass to avoid problems when a MATCH_DUP is
6547      present in the insn pattern.  In that case, we want to ensure that
6548      we don't break the duplicate nature of the pattern.  So we will replace
6549      both operands at the same time.  Otherwise, we would fail to find an
6550      equivalent substitution in the loop calling validate_change below.
6551
6552      We used to suppress canonicalization of DEST if it appears in SRC,
6553      but we don't do this any more.  */
6554
6555   for (i = 0; i < n_sets; i++)
6556     {
6557       rtx dest = SET_DEST (sets[i].rtl);
6558       rtx src = SET_SRC (sets[i].rtl);
6559       rtx new = canon_reg (src, insn);
6560       int insn_code;
6561
6562       if ((GET_CODE (new) == REG && GET_CODE (src) == REG
6563            && ((REGNO (new) < FIRST_PSEUDO_REGISTER)
6564                != (REGNO (src) < FIRST_PSEUDO_REGISTER)))
6565           || (insn_code = recog_memoized (insn)) < 0
6566           || insn_n_dups[insn_code] > 0)
6567         validate_change (insn, &SET_SRC (sets[i].rtl), new, 1);
6568       else
6569         SET_SRC (sets[i].rtl) = new;
6570
6571       if (GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == SIGN_EXTRACT)
6572         {
6573           validate_change (insn, &XEXP (dest, 1),
6574                            canon_reg (XEXP (dest, 1), insn), 1);
6575           validate_change (insn, &XEXP (dest, 2),
6576                            canon_reg (XEXP (dest, 2), insn), 1);
6577         }
6578
6579       while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART
6580              || GET_CODE (dest) == ZERO_EXTRACT
6581              || GET_CODE (dest) == SIGN_EXTRACT)
6582         dest = XEXP (dest, 0);
6583
6584       if (GET_CODE (dest) == MEM)
6585         canon_reg (dest, insn);
6586     }
6587
6588   /* Now that we have done all the replacements, we can apply the change
6589      group and see if they all work.  Note that this will cause some
6590      canonicalizations that would have worked individually not to be applied
6591      because some other canonicalization didn't work, but this should not
6592      occur often. 
6593
6594      The result of apply_change_group can be ignored; see canon_reg.  */
6595
6596   apply_change_group ();
6597
6598   /* Set sets[i].src_elt to the class each source belongs to.
6599      Detect assignments from or to volatile things
6600      and set set[i] to zero so they will be ignored
6601      in the rest of this function.
6602
6603      Nothing in this loop changes the hash table or the register chains.  */
6604
6605   for (i = 0; i < n_sets; i++)
6606     {
6607       register rtx src, dest;
6608       register rtx src_folded;
6609       register struct table_elt *elt = 0, *p;
6610       enum machine_mode mode;
6611       rtx src_eqv_here;
6612       rtx src_const = 0;
6613       rtx src_related = 0;
6614       struct table_elt *src_const_elt = 0;
6615       int src_cost = 10000, src_eqv_cost = 10000, src_folded_cost = 10000;
6616       int src_related_cost = 10000, src_elt_cost = 10000;
6617       /* Set non-zero if we need to call force_const_mem on with the
6618          contents of src_folded before using it.  */
6619       int src_folded_force_flag = 0;
6620
6621       dest = SET_DEST (sets[i].rtl);
6622       src = SET_SRC (sets[i].rtl);
6623
6624       /* If SRC is a constant that has no machine mode,
6625          hash it with the destination's machine mode.
6626          This way we can keep different modes separate.  */
6627
6628       mode = GET_MODE (src) == VOIDmode ? GET_MODE (dest) : GET_MODE (src);
6629       sets[i].mode = mode;
6630
6631       if (src_eqv)
6632         {
6633           enum machine_mode eqvmode = mode;
6634           if (GET_CODE (dest) == STRICT_LOW_PART)
6635             eqvmode = GET_MODE (SUBREG_REG (XEXP (dest, 0)));
6636           do_not_record = 0;
6637           hash_arg_in_memory = 0;
6638           hash_arg_in_struct = 0;
6639           src_eqv = fold_rtx (src_eqv, insn);
6640           src_eqv_hash = HASH (src_eqv, eqvmode);
6641
6642           /* Find the equivalence class for the equivalent expression.  */
6643
6644           if (!do_not_record)
6645             src_eqv_elt = lookup (src_eqv, src_eqv_hash, eqvmode);
6646
6647           src_eqv_volatile = do_not_record;
6648           src_eqv_in_memory = hash_arg_in_memory;
6649           src_eqv_in_struct = hash_arg_in_struct;
6650         }
6651
6652       /* If this is a STRICT_LOW_PART assignment, src_eqv corresponds to the
6653          value of the INNER register, not the destination.  So it is not
6654          a valid substitution for the source.  But save it for later.  */
6655       if (GET_CODE (dest) == STRICT_LOW_PART)
6656         src_eqv_here = 0;
6657       else
6658         src_eqv_here = src_eqv;
6659
6660       /* Simplify and foldable subexpressions in SRC.  Then get the fully-
6661          simplified result, which may not necessarily be valid.  */
6662       src_folded = fold_rtx (src, insn);
6663
6664 #if 0
6665       /* ??? This caused bad code to be generated for the m68k port with -O2.
6666          Suppose src is (CONST_INT -1), and that after truncation src_folded
6667          is (CONST_INT 3).  Suppose src_folded is then used for src_const.
6668          At the end we will add src and src_const to the same equivalence
6669          class.  We now have 3 and -1 on the same equivalence class.  This
6670          causes later instructions to be mis-optimized.  */
6671       /* If storing a constant in a bitfield, pre-truncate the constant
6672          so we will be able to record it later.  */
6673       if (GET_CODE (SET_DEST (sets[i].rtl)) == ZERO_EXTRACT
6674           || GET_CODE (SET_DEST (sets[i].rtl)) == SIGN_EXTRACT)
6675         {
6676           rtx width = XEXP (SET_DEST (sets[i].rtl), 1);
6677
6678           if (GET_CODE (src) == CONST_INT
6679               && GET_CODE (width) == CONST_INT
6680               && INTVAL (width) < HOST_BITS_PER_WIDE_INT
6681               && (INTVAL (src) & ((HOST_WIDE_INT) (-1) << INTVAL (width))))
6682             src_folded
6683               = GEN_INT (INTVAL (src) & (((HOST_WIDE_INT) 1
6684                                           << INTVAL (width)) - 1));
6685         }
6686 #endif
6687
6688       /* Compute SRC's hash code, and also notice if it
6689          should not be recorded at all.  In that case,
6690          prevent any further processing of this assignment.  */
6691       do_not_record = 0;
6692       hash_arg_in_memory = 0;
6693       hash_arg_in_struct = 0;
6694
6695       sets[i].src = src;
6696       sets[i].src_hash = HASH (src, mode);
6697       sets[i].src_volatile = do_not_record;
6698       sets[i].src_in_memory = hash_arg_in_memory;
6699       sets[i].src_in_struct = hash_arg_in_struct;
6700
6701       /* If SRC is a MEM, there is a REG_EQUIV note for SRC, and DEST is
6702          a pseudo that is set more than once, do not record SRC.  Using
6703          SRC as a replacement for anything else will be incorrect in that
6704          situation.  Note that this usually occurs only for stack slots,
6705          in which case all the RTL would be referring to SRC, so we don't
6706          lose any optimization opportunities by not having SRC in the
6707          hash table.  */
6708
6709       if (GET_CODE (src) == MEM
6710           && find_reg_note (insn, REG_EQUIV, src) != 0
6711           && GET_CODE (dest) == REG
6712           && REGNO (dest) >= FIRST_PSEUDO_REGISTER
6713           && REG_N_SETS (REGNO (dest)) != 1)
6714         sets[i].src_volatile = 1;
6715
6716 #if 0
6717       /* It is no longer clear why we used to do this, but it doesn't
6718          appear to still be needed.  So let's try without it since this
6719          code hurts cse'ing widened ops.  */
6720       /* If source is a perverse subreg (such as QI treated as an SI),
6721          treat it as volatile.  It may do the work of an SI in one context
6722          where the extra bits are not being used, but cannot replace an SI
6723          in general.  */
6724       if (GET_CODE (src) == SUBREG
6725           && (GET_MODE_SIZE (GET_MODE (src))
6726               > GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))))
6727         sets[i].src_volatile = 1;
6728 #endif
6729
6730       /* Locate all possible equivalent forms for SRC.  Try to replace
6731          SRC in the insn with each cheaper equivalent.
6732
6733          We have the following types of equivalents: SRC itself, a folded
6734          version, a value given in a REG_EQUAL note, or a value related
6735          to a constant.
6736
6737          Each of these equivalents may be part of an additional class
6738          of equivalents (if more than one is in the table, they must be in
6739          the same class; we check for this).
6740
6741          If the source is volatile, we don't do any table lookups.
6742
6743          We note any constant equivalent for possible later use in a
6744          REG_NOTE.  */
6745
6746       if (!sets[i].src_volatile)
6747         elt = lookup (src, sets[i].src_hash, mode);
6748
6749       sets[i].src_elt = elt;
6750
6751       if (elt && src_eqv_here && src_eqv_elt)
6752         {
6753           if (elt->first_same_value != src_eqv_elt->first_same_value)
6754             {
6755               /* The REG_EQUAL is indicating that two formerly distinct
6756                  classes are now equivalent.  So merge them.  */
6757               merge_equiv_classes (elt, src_eqv_elt);
6758               src_eqv_hash = HASH (src_eqv, elt->mode);
6759               src_eqv_elt = lookup (src_eqv, src_eqv_hash, elt->mode);
6760             }
6761
6762           src_eqv_here = 0;
6763         }
6764
6765       else if (src_eqv_elt)
6766         elt = src_eqv_elt;
6767
6768       /* Try to find a constant somewhere and record it in `src_const'.
6769          Record its table element, if any, in `src_const_elt'.  Look in
6770          any known equivalences first.  (If the constant is not in the
6771          table, also set `sets[i].src_const_hash').  */
6772       if (elt)
6773         for (p = elt->first_same_value; p; p = p->next_same_value)
6774           if (p->is_const)
6775             {
6776               src_const = p->exp;
6777               src_const_elt = elt;
6778               break;
6779             }
6780
6781       if (src_const == 0
6782           && (CONSTANT_P (src_folded)
6783               /* Consider (minus (label_ref L1) (label_ref L2)) as 
6784                  "constant" here so we will record it. This allows us
6785                  to fold switch statements when an ADDR_DIFF_VEC is used.  */
6786               || (GET_CODE (src_folded) == MINUS
6787                   && GET_CODE (XEXP (src_folded, 0)) == LABEL_REF
6788                   && GET_CODE (XEXP (src_folded, 1)) == LABEL_REF)))
6789         src_const = src_folded, src_const_elt = elt;
6790       else if (src_const == 0 && src_eqv_here && CONSTANT_P (src_eqv_here))
6791         src_const = src_eqv_here, src_const_elt = src_eqv_elt;
6792
6793       /* If we don't know if the constant is in the table, get its
6794          hash code and look it up.  */
6795       if (src_const && src_const_elt == 0)
6796         {
6797           sets[i].src_const_hash = HASH (src_const, mode);
6798           src_const_elt = lookup (src_const, sets[i].src_const_hash, mode);
6799         }
6800
6801       sets[i].src_const = src_const;
6802       sets[i].src_const_elt = src_const_elt;
6803
6804       /* If the constant and our source are both in the table, mark them as
6805          equivalent.  Otherwise, if a constant is in the table but the source
6806          isn't, set ELT to it.  */
6807       if (src_const_elt && elt
6808           && src_const_elt->first_same_value != elt->first_same_value)
6809         merge_equiv_classes (elt, src_const_elt);
6810       else if (src_const_elt && elt == 0)
6811         elt = src_const_elt;
6812
6813       /* See if there is a register linearly related to a constant
6814          equivalent of SRC.  */
6815       if (src_const
6816           && (GET_CODE (src_const) == CONST
6817               || (src_const_elt && src_const_elt->related_value != 0)))
6818         {
6819           src_related = use_related_value (src_const, src_const_elt);
6820           if (src_related)
6821             {
6822               struct table_elt *src_related_elt
6823                     = lookup (src_related, HASH (src_related, mode), mode);
6824               if (src_related_elt && elt)
6825                 {
6826                   if (elt->first_same_value
6827                       != src_related_elt->first_same_value)
6828                     /* This can occur when we previously saw a CONST 
6829                        involving a SYMBOL_REF and then see the SYMBOL_REF
6830                        twice.  Merge the involved classes.  */
6831                     merge_equiv_classes (elt, src_related_elt);
6832
6833                   src_related = 0;
6834                   src_related_elt = 0;
6835                 }
6836               else if (src_related_elt && elt == 0)
6837                 elt = src_related_elt;
6838             }
6839         }
6840
6841       /* See if we have a CONST_INT that is already in a register in a
6842          wider mode.  */
6843
6844       if (src_const && src_related == 0 && GET_CODE (src_const) == CONST_INT
6845           && GET_MODE_CLASS (mode) == MODE_INT
6846           && GET_MODE_BITSIZE (mode) < BITS_PER_WORD)
6847         {
6848           enum machine_mode wider_mode;
6849
6850           for (wider_mode = GET_MODE_WIDER_MODE (mode);
6851                GET_MODE_BITSIZE (wider_mode) <= BITS_PER_WORD
6852                && src_related == 0;
6853                wider_mode = GET_MODE_WIDER_MODE (wider_mode))
6854             {
6855               struct table_elt *const_elt
6856                 = lookup (src_const, HASH (src_const, wider_mode), wider_mode);
6857
6858               if (const_elt == 0)
6859                 continue;
6860
6861               for (const_elt = const_elt->first_same_value;
6862                    const_elt; const_elt = const_elt->next_same_value)
6863                 if (GET_CODE (const_elt->exp) == REG)
6864                   {
6865                     src_related = gen_lowpart_if_possible (mode,
6866                                                            const_elt->exp);
6867                     break;
6868                   }
6869             }
6870         }
6871
6872       /* Another possibility is that we have an AND with a constant in
6873          a mode narrower than a word.  If so, it might have been generated
6874          as part of an "if" which would narrow the AND.  If we already
6875          have done the AND in a wider mode, we can use a SUBREG of that
6876          value.  */
6877
6878       if (flag_expensive_optimizations && ! src_related
6879           && GET_CODE (src) == AND && GET_CODE (XEXP (src, 1)) == CONST_INT
6880           && GET_MODE_SIZE (mode) < UNITS_PER_WORD)
6881         {
6882           enum machine_mode tmode;
6883           rtx new_and = gen_rtx_AND (VOIDmode, NULL_RTX, XEXP (src, 1));
6884
6885           for (tmode = GET_MODE_WIDER_MODE (mode);
6886                GET_MODE_SIZE (tmode) <= UNITS_PER_WORD;
6887                tmode = GET_MODE_WIDER_MODE (tmode))
6888             {
6889               rtx inner = gen_lowpart_if_possible (tmode, XEXP (src, 0));
6890               struct table_elt *larger_elt;
6891
6892               if (inner)
6893                 {
6894                   PUT_MODE (new_and, tmode);
6895                   XEXP (new_and, 0) = inner;
6896                   larger_elt = lookup (new_and, HASH (new_and, tmode), tmode);
6897                   if (larger_elt == 0)
6898                     continue;
6899
6900                   for (larger_elt = larger_elt->first_same_value;
6901                        larger_elt; larger_elt = larger_elt->next_same_value)
6902                     if (GET_CODE (larger_elt->exp) == REG)
6903                       {
6904                         src_related
6905                           = gen_lowpart_if_possible (mode, larger_elt->exp);
6906                         break;
6907                       }
6908
6909                   if (src_related)
6910                     break;
6911                 }
6912             }
6913         }
6914
6915 #ifdef LOAD_EXTEND_OP
6916       /* See if a MEM has already been loaded with a widening operation;
6917          if it has, we can use a subreg of that.  Many CISC machines
6918          also have such operations, but this is only likely to be
6919          beneficial these machines.  */
6920       
6921       if (flag_expensive_optimizations &&  src_related == 0
6922           && (GET_MODE_SIZE (mode) < UNITS_PER_WORD)
6923           && GET_MODE_CLASS (mode) == MODE_INT
6924           && GET_CODE (src) == MEM && ! do_not_record
6925           && LOAD_EXTEND_OP (mode) != NIL)
6926         {
6927           enum machine_mode tmode;
6928           
6929           /* Set what we are trying to extend and the operation it might
6930              have been extended with.  */
6931           PUT_CODE (memory_extend_rtx, LOAD_EXTEND_OP (mode));
6932           XEXP (memory_extend_rtx, 0) = src;
6933           
6934           for (tmode = GET_MODE_WIDER_MODE (mode);
6935                GET_MODE_SIZE (tmode) <= UNITS_PER_WORD;
6936                tmode = GET_MODE_WIDER_MODE (tmode))
6937             {
6938               struct table_elt *larger_elt;
6939               
6940               PUT_MODE (memory_extend_rtx, tmode);
6941               larger_elt = lookup (memory_extend_rtx, 
6942                                    HASH (memory_extend_rtx, tmode), tmode);
6943               if (larger_elt == 0)
6944                 continue;
6945               
6946               for (larger_elt = larger_elt->first_same_value;
6947                    larger_elt; larger_elt = larger_elt->next_same_value)
6948                 if (GET_CODE (larger_elt->exp) == REG)
6949                   {
6950                     src_related = gen_lowpart_if_possible (mode, 
6951                                                            larger_elt->exp);
6952                     break;
6953                   }
6954               
6955               if (src_related)
6956                 break;
6957             }
6958         }
6959 #endif /* LOAD_EXTEND_OP */
6960  
6961       if (src == src_folded)
6962         src_folded = 0;
6963
6964       /* At this point, ELT, if non-zero, points to a class of expressions
6965          equivalent to the source of this SET and SRC, SRC_EQV, SRC_FOLDED,
6966          and SRC_RELATED, if non-zero, each contain additional equivalent
6967          expressions.  Prune these latter expressions by deleting expressions
6968          already in the equivalence class.
6969
6970          Check for an equivalent identical to the destination.  If found,
6971          this is the preferred equivalent since it will likely lead to
6972          elimination of the insn.  Indicate this by placing it in
6973          `src_related'.  */
6974
6975       if (elt) elt = elt->first_same_value;
6976       for (p = elt; p; p = p->next_same_value)
6977         {
6978           enum rtx_code code = GET_CODE (p->exp);
6979
6980           /* If the expression is not valid, ignore it.  Then we do not
6981              have to check for validity below.  In most cases, we can use
6982              `rtx_equal_p', since canonicalization has already been done.  */
6983           if (code != REG && ! exp_equiv_p (p->exp, p->exp, 1, 0))
6984             continue;
6985
6986           /* Also skip paradoxical subregs, unless that's what we're
6987              looking for.  */
6988           if (code == SUBREG
6989               && (GET_MODE_SIZE (GET_MODE (p->exp))
6990                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (p->exp))))
6991               && ! (src != 0
6992                     && GET_CODE (src) == SUBREG
6993                     && GET_MODE (src) == GET_MODE (p->exp)
6994                     && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))
6995                         < GET_MODE_SIZE (GET_MODE (SUBREG_REG (p->exp))))))
6996             continue;
6997
6998           if (src && GET_CODE (src) == code && rtx_equal_p (src, p->exp))
6999             src = 0;
7000           else if (src_folded && GET_CODE (src_folded) == code
7001                    && rtx_equal_p (src_folded, p->exp))
7002             src_folded = 0;
7003           else if (src_eqv_here && GET_CODE (src_eqv_here) == code
7004                    && rtx_equal_p (src_eqv_here, p->exp))
7005             src_eqv_here = 0;
7006           else if (src_related && GET_CODE (src_related) == code
7007                    && rtx_equal_p (src_related, p->exp))
7008             src_related = 0;
7009
7010           /* This is the same as the destination of the insns, we want
7011              to prefer it.  Copy it to src_related.  The code below will
7012              then give it a negative cost.  */
7013           if (GET_CODE (dest) == code && rtx_equal_p (p->exp, dest))
7014             src_related = dest;
7015
7016         }
7017
7018       /* Find the cheapest valid equivalent, trying all the available
7019          possibilities.  Prefer items not in the hash table to ones
7020          that are when they are equal cost.  Note that we can never
7021          worsen an insn as the current contents will also succeed.
7022          If we find an equivalent identical to the destination, use it as best,
7023          since this insn will probably be eliminated in that case.  */
7024       if (src)
7025         {
7026           if (rtx_equal_p (src, dest))
7027             src_cost = -1;
7028           else
7029             src_cost = COST (src);
7030         }
7031
7032       if (src_eqv_here)
7033         {
7034           if (rtx_equal_p (src_eqv_here, dest))
7035             src_eqv_cost = -1;
7036           else
7037             src_eqv_cost = COST (src_eqv_here);
7038         }
7039
7040       if (src_folded)
7041         {
7042           if (rtx_equal_p (src_folded, dest))
7043             src_folded_cost = -1;
7044           else
7045             src_folded_cost = COST (src_folded);
7046         }
7047
7048       if (src_related)
7049         {
7050           if (rtx_equal_p (src_related, dest))
7051             src_related_cost = -1;
7052           else
7053             src_related_cost = COST (src_related);
7054         }
7055
7056       /* If this was an indirect jump insn, a known label will really be
7057          cheaper even though it looks more expensive.  */
7058       if (dest == pc_rtx && src_const && GET_CODE (src_const) == LABEL_REF)
7059         src_folded = src_const, src_folded_cost = -1;
7060           
7061       /* Terminate loop when replacement made.  This must terminate since
7062          the current contents will be tested and will always be valid.  */
7063       while (1)
7064         {
7065           rtx trial, old_src;
7066
7067           /* Skip invalid entries.  */
7068           while (elt && GET_CODE (elt->exp) != REG
7069                  && ! exp_equiv_p (elt->exp, elt->exp, 1, 0))
7070             elt = elt->next_same_value;      
7071
7072           /* A paradoxical subreg would be bad here: it'll be the right
7073              size, but later may be adjusted so that the upper bits aren't
7074              what we want.  So reject it.  */
7075           if (elt != 0
7076               && GET_CODE (elt->exp) == SUBREG
7077               && (GET_MODE_SIZE (GET_MODE (elt->exp))
7078                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (elt->exp))))
7079               /* It is okay, though, if the rtx we're trying to match
7080                  will ignore any of the bits we can't predict.  */
7081               && ! (src != 0
7082                     && GET_CODE (src) == SUBREG
7083                     && GET_MODE (src) == GET_MODE (elt->exp)
7084                     && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))
7085                         < GET_MODE_SIZE (GET_MODE (SUBREG_REG (elt->exp))))))
7086             {
7087               elt = elt->next_same_value;
7088               continue;
7089             }
7090               
7091           if (elt) src_elt_cost = elt->cost;
7092
7093           /* Find cheapest and skip it for the next time.   For items
7094              of equal cost, use this order:
7095              src_folded, src, src_eqv, src_related and hash table entry.  */
7096           if (src_folded_cost <= src_cost
7097               && src_folded_cost <= src_eqv_cost
7098               && src_folded_cost <= src_related_cost
7099               && src_folded_cost <= src_elt_cost)
7100             {
7101               trial = src_folded, src_folded_cost = 10000;
7102               if (src_folded_force_flag)
7103                 trial = force_const_mem (mode, trial);
7104             }
7105           else if (src_cost <= src_eqv_cost
7106                    && src_cost <= src_related_cost
7107                    && src_cost <= src_elt_cost)
7108             trial = src, src_cost = 10000;
7109           else if (src_eqv_cost <= src_related_cost
7110                    && src_eqv_cost <= src_elt_cost)
7111             trial = copy_rtx (src_eqv_here), src_eqv_cost = 10000;
7112           else if (src_related_cost <= src_elt_cost)
7113             trial = copy_rtx (src_related), src_related_cost = 10000;
7114           else
7115             {
7116               trial = copy_rtx (elt->exp);
7117               elt = elt->next_same_value;
7118               src_elt_cost = 10000;
7119             }
7120
7121           /* We don't normally have an insn matching (set (pc) (pc)), so
7122              check for this separately here.  We will delete such an
7123              insn below.
7124
7125              Tablejump insns contain a USE of the table, so simply replacing
7126              the operand with the constant won't match.  This is simply an
7127              unconditional branch, however, and is therefore valid.  Just
7128              insert the substitution here and we will delete and re-emit
7129              the insn later.  */
7130
7131           /* Keep track of the original SET_SRC so that we can fix notes
7132              on libcall instructions.  */
7133           old_src = SET_SRC (sets[i].rtl);
7134
7135           if (n_sets == 1 && dest == pc_rtx
7136               && (trial == pc_rtx
7137                   || (GET_CODE (trial) == LABEL_REF
7138                       && ! condjump_p (insn))))
7139             {
7140               /* If TRIAL is a label in front of a jump table, we are
7141                  really falling through the switch (this is how casesi
7142                  insns work), so we must branch around the table.  */
7143               if (GET_CODE (trial) == CODE_LABEL
7144                   && NEXT_INSN (trial) != 0
7145                   && GET_CODE (NEXT_INSN (trial)) == JUMP_INSN
7146                   && (GET_CODE (PATTERN (NEXT_INSN (trial))) == ADDR_DIFF_VEC
7147                       || GET_CODE (PATTERN (NEXT_INSN (trial))) == ADDR_VEC))
7148
7149                 trial = gen_rtx_LABEL_REF (Pmode, get_label_after (trial));
7150
7151               SET_SRC (sets[i].rtl) = trial;
7152               cse_jumps_altered = 1;
7153               break;
7154             }
7155            
7156           /* Look for a substitution that makes a valid insn.  */
7157           else if (validate_change (insn, &SET_SRC (sets[i].rtl), trial, 0))
7158             {
7159               /* If we just made a substitution inside a libcall, then we
7160                  need to make the same substitution in any notes attached
7161                  to the RETVAL insn.  */
7162               if (libcall_insn
7163                   && (GET_CODE (old_src) == REG
7164                       || GET_CODE (old_src) == SUBREG
7165                       ||  GET_CODE (old_src) == MEM))
7166                 replace_rtx (REG_NOTES (libcall_insn), old_src, 
7167                              canon_reg (SET_SRC (sets[i].rtl), insn));
7168
7169               /* The result of apply_change_group can be ignored; see
7170                  canon_reg.  */
7171
7172               validate_change (insn, &SET_SRC (sets[i].rtl),
7173                                canon_reg (SET_SRC (sets[i].rtl), insn),
7174                                1);
7175               apply_change_group ();
7176               break;
7177             }
7178
7179           /* If we previously found constant pool entries for 
7180              constants and this is a constant, try making a
7181              pool entry.  Put it in src_folded unless we already have done
7182              this since that is where it likely came from.  */
7183
7184           else if (constant_pool_entries_cost
7185                    && CONSTANT_P (trial)
7186                    && ! (GET_CODE (trial) == CONST
7187                          && GET_CODE (XEXP (trial, 0)) == TRUNCATE)
7188                    && (src_folded == 0
7189                        || (GET_CODE (src_folded) != MEM
7190                            && ! src_folded_force_flag))
7191                    && GET_MODE_CLASS (mode) != MODE_CC
7192                    && mode != VOIDmode)
7193             {
7194               src_folded_force_flag = 1;
7195               src_folded = trial;
7196               src_folded_cost = constant_pool_entries_cost;
7197             }
7198         }
7199
7200       src = SET_SRC (sets[i].rtl);
7201
7202       /* In general, it is good to have a SET with SET_SRC == SET_DEST.
7203          However, there is an important exception:  If both are registers
7204          that are not the head of their equivalence class, replace SET_SRC
7205          with the head of the class.  If we do not do this, we will have
7206          both registers live over a portion of the basic block.  This way,
7207          their lifetimes will likely abut instead of overlapping.  */
7208       if (GET_CODE (dest) == REG
7209           && REGNO_QTY_VALID_P (REGNO (dest))
7210           && qty_mode[REG_QTY (REGNO (dest))] == GET_MODE (dest)
7211           && qty_first_reg[REG_QTY (REGNO (dest))] != REGNO (dest)
7212           && GET_CODE (src) == REG && REGNO (src) == REGNO (dest)
7213           /* Don't do this if the original insn had a hard reg as
7214              SET_SRC.  */
7215           && (GET_CODE (sets[i].src) != REG
7216               || REGNO (sets[i].src) >= FIRST_PSEUDO_REGISTER))
7217         /* We can't call canon_reg here because it won't do anything if
7218            SRC is a hard register.  */
7219         {
7220           int first = qty_first_reg[REG_QTY (REGNO (src))];
7221           rtx new_src
7222             = (first >= FIRST_PSEUDO_REGISTER
7223                ? regno_reg_rtx[first] : gen_rtx_REG (GET_MODE (src), first));
7224
7225           /* We must use validate-change even for this, because this
7226              might be a special no-op instruction, suitable only to
7227              tag notes onto.  */
7228           if (validate_change (insn, &SET_SRC (sets[i].rtl), new_src, 0))
7229             {
7230               src = new_src;
7231               /* If we had a constant that is cheaper than what we are now
7232                  setting SRC to, use that constant.  We ignored it when we
7233                  thought we could make this into a no-op.  */
7234               if (src_const && COST (src_const) < COST (src)
7235                   && validate_change (insn, &SET_SRC (sets[i].rtl), src_const,
7236                                       0))
7237                 src = src_const;
7238             }
7239         }
7240
7241       /* If we made a change, recompute SRC values.  */
7242       if (src != sets[i].src)
7243         {
7244           do_not_record = 0;
7245           hash_arg_in_memory = 0;
7246           hash_arg_in_struct = 0;
7247           sets[i].src = src;
7248           sets[i].src_hash = HASH (src, mode);
7249           sets[i].src_volatile = do_not_record;
7250           sets[i].src_in_memory = hash_arg_in_memory;
7251           sets[i].src_in_struct = hash_arg_in_struct;
7252           sets[i].src_elt = lookup (src, sets[i].src_hash, mode);
7253         }
7254
7255       /* If this is a single SET, we are setting a register, and we have an
7256          equivalent constant, we want to add a REG_NOTE.   We don't want
7257          to write a REG_EQUAL note for a constant pseudo since verifying that
7258          that pseudo hasn't been eliminated is a pain.  Such a note also
7259          won't help anything. 
7260
7261          Avoid a REG_EQUAL note for (CONST (MINUS (LABEL_REF) (LABEL_REF)))
7262          which can be created for a reference to a compile time computable
7263          entry in a jump table.  */
7264
7265       if (n_sets == 1 && src_const && GET_CODE (dest) == REG
7266           && GET_CODE (src_const) != REG
7267           && ! (GET_CODE (src_const) == CONST
7268                 && GET_CODE (XEXP (src_const, 0)) == MINUS
7269                 && GET_CODE (XEXP (XEXP (src_const, 0), 0)) == LABEL_REF
7270                 && GET_CODE (XEXP (XEXP (src_const, 0), 1)) == LABEL_REF))
7271         {
7272           tem = find_reg_note (insn, REG_EQUAL, NULL_RTX);
7273           
7274           /* Make sure that the rtx is not shared with any other insn.  */
7275           src_const = copy_rtx (src_const);
7276
7277           /* Record the actual constant value in a REG_EQUAL note, making
7278              a new one if one does not already exist.  */
7279           if (tem)
7280             XEXP (tem, 0) = src_const;
7281           else
7282             REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_EQUAL,
7283                                                   src_const, REG_NOTES (insn));
7284
7285           /* If storing a constant value in a register that
7286              previously held the constant value 0,
7287              record this fact with a REG_WAS_0 note on this insn.
7288
7289              Note that the *register* is required to have previously held 0,
7290              not just any register in the quantity and we must point to the
7291              insn that set that register to zero.
7292
7293              Rather than track each register individually, we just see if
7294              the last set for this quantity was for this register.  */
7295
7296           if (REGNO_QTY_VALID_P (REGNO (dest))
7297               && qty_const[REG_QTY (REGNO (dest))] == const0_rtx)
7298             {
7299               /* See if we previously had a REG_WAS_0 note.  */
7300               rtx note = find_reg_note (insn, REG_WAS_0, NULL_RTX);
7301               rtx const_insn = qty_const_insn[REG_QTY (REGNO (dest))];
7302
7303               if ((tem = single_set (const_insn)) != 0
7304                   && rtx_equal_p (SET_DEST (tem), dest))
7305                 {
7306                   if (note)
7307                     XEXP (note, 0) = const_insn;
7308                   else
7309                     REG_NOTES (insn) = gen_rtx_INSN_LIST (REG_WAS_0,
7310                                                           const_insn,
7311                                                           REG_NOTES (insn));
7312                 }
7313             }
7314         }
7315
7316       /* Now deal with the destination.  */
7317       do_not_record = 0;
7318       sets[i].inner_dest_loc = &SET_DEST (sets[0].rtl);
7319
7320       /* Look within any SIGN_EXTRACT or ZERO_EXTRACT
7321          to the MEM or REG within it.  */
7322       while (GET_CODE (dest) == SIGN_EXTRACT
7323              || GET_CODE (dest) == ZERO_EXTRACT
7324              || GET_CODE (dest) == SUBREG
7325              || GET_CODE (dest) == STRICT_LOW_PART)
7326         {
7327           sets[i].inner_dest_loc = &XEXP (dest, 0);
7328           dest = XEXP (dest, 0);
7329         }
7330
7331       sets[i].inner_dest = dest;
7332
7333       if (GET_CODE (dest) == MEM)
7334         {
7335 #ifdef PUSH_ROUNDING
7336           /* Stack pushes invalidate the stack pointer.  */
7337           rtx addr = XEXP (dest, 0);
7338           if ((GET_CODE (addr) == PRE_DEC || GET_CODE (addr) == PRE_INC
7339                || GET_CODE (addr) == POST_DEC || GET_CODE (addr) == POST_INC)
7340               && XEXP (addr, 0) == stack_pointer_rtx)
7341             invalidate (stack_pointer_rtx, Pmode);
7342 #endif
7343           dest = fold_rtx (dest, insn);
7344         }
7345
7346       /* Compute the hash code of the destination now,
7347          before the effects of this instruction are recorded,
7348          since the register values used in the address computation
7349          are those before this instruction.  */
7350       sets[i].dest_hash = HASH (dest, mode);
7351
7352       /* Don't enter a bit-field in the hash table
7353          because the value in it after the store
7354          may not equal what was stored, due to truncation.  */
7355
7356       if (GET_CODE (SET_DEST (sets[i].rtl)) == ZERO_EXTRACT
7357           || GET_CODE (SET_DEST (sets[i].rtl)) == SIGN_EXTRACT)
7358         {
7359           rtx width = XEXP (SET_DEST (sets[i].rtl), 1);
7360
7361           if (src_const != 0 && GET_CODE (src_const) == CONST_INT
7362               && GET_CODE (width) == CONST_INT
7363               && INTVAL (width) < HOST_BITS_PER_WIDE_INT
7364               && ! (INTVAL (src_const)
7365                     & ((HOST_WIDE_INT) (-1) << INTVAL (width))))
7366             /* Exception: if the value is constant,
7367                and it won't be truncated, record it.  */
7368             ;
7369           else
7370             {
7371               /* This is chosen so that the destination will be invalidated
7372                  but no new value will be recorded.
7373                  We must invalidate because sometimes constant
7374                  values can be recorded for bitfields.  */
7375               sets[i].src_elt = 0;
7376               sets[i].src_volatile = 1;
7377               src_eqv = 0;
7378               src_eqv_elt = 0;
7379             }
7380         }
7381
7382       /* If only one set in a JUMP_INSN and it is now a no-op, we can delete
7383          the insn.  */
7384       else if (n_sets == 1 && dest == pc_rtx && src == pc_rtx)
7385         {
7386           PUT_CODE (insn, NOTE);
7387           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
7388           NOTE_SOURCE_FILE (insn) = 0;
7389           cse_jumps_altered = 1;
7390           /* One less use of the label this insn used to jump to.  */
7391           if (JUMP_LABEL (insn) != 0)
7392             --LABEL_NUSES (JUMP_LABEL (insn));
7393           /* No more processing for this set.  */
7394           sets[i].rtl = 0;
7395         }
7396
7397       /* If this SET is now setting PC to a label, we know it used to
7398          be a conditional or computed branch.  So we see if we can follow
7399          it.  If it was a computed branch, delete it and re-emit.  */
7400       else if (dest == pc_rtx && GET_CODE (src) == LABEL_REF)
7401         {
7402           rtx p;
7403
7404           /* If this is not in the format for a simple branch and
7405              we are the only SET in it, re-emit it.  */
7406           if (! simplejump_p (insn) && n_sets == 1)
7407             {
7408               rtx new = emit_jump_insn_before (gen_jump (XEXP (src, 0)), insn);
7409               JUMP_LABEL (new) = XEXP (src, 0);
7410               LABEL_NUSES (XEXP (src, 0))++;
7411               delete_insn (insn);
7412               insn = new;
7413             }
7414           else
7415             /* Otherwise, force rerecognition, since it probably had
7416                a different pattern before.
7417                This shouldn't really be necessary, since whatever
7418                changed the source value above should have done this.
7419                Until the right place is found, might as well do this here.  */
7420             INSN_CODE (insn) = -1;
7421
7422           /* Now that we've converted this jump to an unconditional jump,
7423              there is dead code after it.  Delete the dead code until we
7424              reach a BARRIER, the end of the function, or a label.  Do
7425              not delete NOTEs except for NOTE_INSN_DELETED since later
7426              phases assume these notes are retained.  */
7427
7428           never_reached_warning (insn);
7429
7430           p = insn;
7431
7432           while (NEXT_INSN (p) != 0
7433                  && GET_CODE (NEXT_INSN (p)) != BARRIER
7434                  && GET_CODE (NEXT_INSN (p)) != CODE_LABEL)
7435             {
7436               /* Note, we must update P with the return value from
7437                  delete_insn, otherwise we could get an infinite loop
7438                  if NEXT_INSN (p) had INSN_DELETED_P set.  */
7439               if (GET_CODE (NEXT_INSN (p)) != NOTE
7440                   || NOTE_LINE_NUMBER (NEXT_INSN (p)) == NOTE_INSN_DELETED)
7441                 p = PREV_INSN (delete_insn (NEXT_INSN (p)));
7442               else
7443                 p = NEXT_INSN (p);
7444             }
7445
7446           /* If we don't have a BARRIER immediately after INSN, put one there.
7447              Much code assumes that there are no NOTEs between a JUMP_INSN and
7448              BARRIER.  */
7449
7450           if (NEXT_INSN (insn) == 0
7451               || GET_CODE (NEXT_INSN (insn)) != BARRIER)
7452             emit_barrier_before (NEXT_INSN (insn));
7453
7454           /* We might have two BARRIERs separated by notes.  Delete the second
7455              one if so.  */
7456
7457           if (p != insn && NEXT_INSN (p) != 0
7458               && GET_CODE (NEXT_INSN (p)) == BARRIER)
7459             delete_insn (NEXT_INSN (p));
7460
7461           cse_jumps_altered = 1;
7462           sets[i].rtl = 0;
7463         }
7464
7465       /* If destination is volatile, invalidate it and then do no further
7466          processing for this assignment.  */
7467
7468       else if (do_not_record)
7469         {
7470           if (GET_CODE (dest) == REG || GET_CODE (dest) == SUBREG
7471               || GET_CODE (dest) == MEM)
7472             invalidate (dest, VOIDmode);
7473           else if (GET_CODE (dest) == STRICT_LOW_PART
7474                    || GET_CODE (dest) == ZERO_EXTRACT)
7475             invalidate (XEXP (dest, 0), GET_MODE (dest));
7476           sets[i].rtl = 0;
7477         }
7478
7479       if (sets[i].rtl != 0 && dest != SET_DEST (sets[i].rtl))
7480         sets[i].dest_hash = HASH (SET_DEST (sets[i].rtl), mode);
7481
7482 #ifdef HAVE_cc0
7483       /* If setting CC0, record what it was set to, or a constant, if it
7484          is equivalent to a constant.  If it is being set to a floating-point
7485          value, make a COMPARE with the appropriate constant of 0.  If we
7486          don't do this, later code can interpret this as a test against
7487          const0_rtx, which can cause problems if we try to put it into an
7488          insn as a floating-point operand.  */
7489       if (dest == cc0_rtx)
7490         {
7491           this_insn_cc0 = src_const && mode != VOIDmode ? src_const : src;
7492           this_insn_cc0_mode = mode;
7493           if (FLOAT_MODE_P (mode))
7494             this_insn_cc0 = gen_rtx_COMPARE (VOIDmode, this_insn_cc0,
7495                                              CONST0_RTX (mode));
7496         }
7497 #endif
7498     }
7499
7500   /* Now enter all non-volatile source expressions in the hash table
7501      if they are not already present.
7502      Record their equivalence classes in src_elt.
7503      This way we can insert the corresponding destinations into
7504      the same classes even if the actual sources are no longer in them
7505      (having been invalidated).  */
7506
7507   if (src_eqv && src_eqv_elt == 0 && sets[0].rtl != 0 && ! src_eqv_volatile
7508       && ! rtx_equal_p (src_eqv, SET_DEST (sets[0].rtl)))
7509     {
7510       register struct table_elt *elt;
7511       register struct table_elt *classp = sets[0].src_elt;
7512       rtx dest = SET_DEST (sets[0].rtl);
7513       enum machine_mode eqvmode = GET_MODE (dest);
7514
7515       if (GET_CODE (dest) == STRICT_LOW_PART)
7516         {
7517           eqvmode = GET_MODE (SUBREG_REG (XEXP (dest, 0)));
7518           classp = 0;
7519         }
7520       if (insert_regs (src_eqv, classp, 0))
7521         {
7522           rehash_using_reg (src_eqv);
7523           src_eqv_hash = HASH (src_eqv, eqvmode);
7524         }
7525       elt = insert (src_eqv, classp, src_eqv_hash, eqvmode);
7526       elt->in_memory = src_eqv_in_memory;
7527       elt->in_struct = src_eqv_in_struct;
7528       src_eqv_elt = elt;
7529
7530       /* Check to see if src_eqv_elt is the same as a set source which
7531          does not yet have an elt, and if so set the elt of the set source
7532          to src_eqv_elt.  */
7533       for (i = 0; i < n_sets; i++)
7534         if (sets[i].rtl && sets[i].src_elt == 0
7535             && rtx_equal_p (SET_SRC (sets[i].rtl), src_eqv))
7536           sets[i].src_elt = src_eqv_elt;
7537     }
7538
7539   for (i = 0; i < n_sets; i++)
7540     if (sets[i].rtl && ! sets[i].src_volatile
7541         && ! rtx_equal_p (SET_SRC (sets[i].rtl), SET_DEST (sets[i].rtl)))
7542       {
7543         if (GET_CODE (SET_DEST (sets[i].rtl)) == STRICT_LOW_PART)
7544           {
7545             /* REG_EQUAL in setting a STRICT_LOW_PART
7546                gives an equivalent for the entire destination register,
7547                not just for the subreg being stored in now.
7548                This is a more interesting equivalence, so we arrange later
7549                to treat the entire reg as the destination.  */
7550             sets[i].src_elt = src_eqv_elt;
7551             sets[i].src_hash = src_eqv_hash;
7552           }
7553         else
7554           {
7555             /* Insert source and constant equivalent into hash table, if not
7556                already present.  */
7557             register struct table_elt *classp = src_eqv_elt;
7558             register rtx src = sets[i].src;
7559             register rtx dest = SET_DEST (sets[i].rtl);
7560             enum machine_mode mode
7561               = GET_MODE (src) == VOIDmode ? GET_MODE (dest) : GET_MODE (src);
7562
7563             /* Don't put a hard register source into the table if this is
7564                the last insn of a libcall.  */
7565             if (sets[i].src_elt == 0
7566                 && (GET_CODE (src) != REG
7567                     || REGNO (src) >= FIRST_PSEUDO_REGISTER
7568                     || ! find_reg_note (insn, REG_RETVAL, NULL_RTX)))
7569               {
7570                 register struct table_elt *elt;
7571
7572                 /* Note that these insert_regs calls cannot remove
7573                    any of the src_elt's, because they would have failed to
7574                    match if not still valid.  */
7575                 if (insert_regs (src, classp, 0))
7576                   {
7577                     rehash_using_reg (src);
7578                     sets[i].src_hash = HASH (src, mode);
7579                   }
7580                 elt = insert (src, classp, sets[i].src_hash, mode);
7581                 elt->in_memory = sets[i].src_in_memory;
7582                 elt->in_struct = sets[i].src_in_struct;
7583                 sets[i].src_elt = classp = elt;
7584               }
7585
7586             if (sets[i].src_const && sets[i].src_const_elt == 0
7587                 && src != sets[i].src_const
7588                 && ! rtx_equal_p (sets[i].src_const, src))
7589               sets[i].src_elt = insert (sets[i].src_const, classp,
7590                                         sets[i].src_const_hash, mode);
7591           }
7592       }
7593     else if (sets[i].src_elt == 0)
7594       /* If we did not insert the source into the hash table (e.g., it was
7595          volatile), note the equivalence class for the REG_EQUAL value, if any,
7596          so that the destination goes into that class.  */
7597       sets[i].src_elt = src_eqv_elt;
7598
7599   invalidate_from_clobbers (x);
7600
7601   /* Some registers are invalidated by subroutine calls.  Memory is 
7602      invalidated by non-constant calls.  */
7603
7604   if (GET_CODE (insn) == CALL_INSN)
7605     {
7606       if (! CONST_CALL_P (insn))
7607         invalidate_memory ();
7608       invalidate_for_call ();
7609     }
7610
7611   /* Now invalidate everything set by this instruction.
7612      If a SUBREG or other funny destination is being set,
7613      sets[i].rtl is still nonzero, so here we invalidate the reg
7614      a part of which is being set.  */
7615
7616   for (i = 0; i < n_sets; i++)
7617     if (sets[i].rtl)
7618       {
7619         /* We can't use the inner dest, because the mode associated with
7620            a ZERO_EXTRACT is significant.  */
7621         register rtx dest = SET_DEST (sets[i].rtl);
7622
7623         /* Needed for registers to remove the register from its
7624            previous quantity's chain.
7625            Needed for memory if this is a nonvarying address, unless
7626            we have just done an invalidate_memory that covers even those.  */
7627         if (GET_CODE (dest) == REG || GET_CODE (dest) == SUBREG
7628             || GET_CODE (dest) == MEM)
7629           invalidate (dest, VOIDmode);
7630         else if (GET_CODE (dest) == STRICT_LOW_PART
7631                  || GET_CODE (dest) == ZERO_EXTRACT)
7632           invalidate (XEXP (dest, 0), GET_MODE (dest));
7633       }
7634
7635   /* A volatile ASM invalidates everything.  */
7636   if (GET_CODE (insn) == INSN
7637       && GET_CODE (PATTERN (insn)) == ASM_OPERANDS
7638       && MEM_VOLATILE_P (PATTERN (insn)))
7639     flush_hash_table ();
7640
7641   /* Make sure registers mentioned in destinations
7642      are safe for use in an expression to be inserted.
7643      This removes from the hash table
7644      any invalid entry that refers to one of these registers.
7645
7646      We don't care about the return value from mention_regs because
7647      we are going to hash the SET_DEST values unconditionally.  */
7648
7649   for (i = 0; i < n_sets; i++)
7650     {
7651       if (sets[i].rtl)
7652         {
7653           rtx x = SET_DEST (sets[i].rtl);
7654
7655           if (GET_CODE (x) != REG)
7656             mention_regs (x);
7657           else
7658             {
7659               /* We used to rely on all references to a register becoming
7660                  inaccessible when a register changes to a new quantity,
7661                  since that changes the hash code.  However, that is not
7662                  safe, since after NBUCKETS new quantities we get a
7663                  hash 'collision' of a register with its own invalid
7664                  entries.  And since SUBREGs have been changed not to
7665                  change their hash code with the hash code of the register,
7666                  it wouldn't work any longer at all.  So we have to check
7667                  for any invalid references lying around now.
7668                  This code is similar to the REG case in mention_regs,
7669                  but it knows that reg_tick has been incremented, and
7670                  it leaves reg_in_table as -1 .  */
7671               register int regno = REGNO (x);
7672               register int endregno
7673                 = regno + (regno >= FIRST_PSEUDO_REGISTER ? 1
7674                            : HARD_REGNO_NREGS (regno, GET_MODE (x)));
7675               int i;
7676
7677               for (i = regno; i < endregno; i++)
7678                 {
7679                   if (REG_IN_TABLE (i) >= 0)
7680                     {
7681                       remove_invalid_refs (i);
7682                       REG_IN_TABLE (i) = -1;
7683                     }
7684                 }
7685             }
7686         }
7687     }
7688
7689   /* We may have just removed some of the src_elt's from the hash table.
7690      So replace each one with the current head of the same class.  */
7691
7692   for (i = 0; i < n_sets; i++)
7693     if (sets[i].rtl)
7694       {
7695         if (sets[i].src_elt && sets[i].src_elt->first_same_value == 0)
7696           /* If elt was removed, find current head of same class,
7697              or 0 if nothing remains of that class.  */
7698           {
7699             register struct table_elt *elt = sets[i].src_elt;
7700
7701             while (elt && elt->prev_same_value)
7702               elt = elt->prev_same_value;
7703
7704             while (elt && elt->first_same_value == 0)
7705               elt = elt->next_same_value;
7706             sets[i].src_elt = elt ? elt->first_same_value : 0;
7707           }
7708       }
7709
7710   /* Now insert the destinations into their equivalence classes.  */
7711
7712   for (i = 0; i < n_sets; i++)
7713     if (sets[i].rtl)
7714       {
7715         register rtx dest = SET_DEST (sets[i].rtl);
7716         rtx inner_dest = sets[i].inner_dest;
7717         register struct table_elt *elt;
7718
7719         /* Don't record value if we are not supposed to risk allocating
7720            floating-point values in registers that might be wider than
7721            memory.  */
7722         if ((flag_float_store
7723              && GET_CODE (dest) == MEM
7724              && FLOAT_MODE_P (GET_MODE (dest)))
7725             /* Don't record BLKmode values, because we don't know the
7726                size of it, and can't be sure that other BLKmode values
7727                have the same or smaller size.  */
7728             || GET_MODE (dest) == BLKmode
7729             /* Don't record values of destinations set inside a libcall block
7730                since we might delete the libcall.  Things should have been set
7731                up so we won't want to reuse such a value, but we play it safe
7732                here.  */
7733             || libcall_insn
7734             /* If we didn't put a REG_EQUAL value or a source into the hash
7735                table, there is no point is recording DEST.  */
7736             || sets[i].src_elt == 0
7737             /* If DEST is a paradoxical SUBREG and SRC is a ZERO_EXTEND
7738                or SIGN_EXTEND, don't record DEST since it can cause
7739                some tracking to be wrong.
7740
7741                ??? Think about this more later.  */
7742             || (GET_CODE (dest) == SUBREG
7743                 && (GET_MODE_SIZE (GET_MODE (dest))
7744                     > GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest))))
7745                 && (GET_CODE (sets[i].src) == SIGN_EXTEND
7746                     || GET_CODE (sets[i].src) == ZERO_EXTEND)))
7747           continue;
7748
7749         /* STRICT_LOW_PART isn't part of the value BEING set,
7750            and neither is the SUBREG inside it.
7751            Note that in this case SETS[I].SRC_ELT is really SRC_EQV_ELT.  */
7752         if (GET_CODE (dest) == STRICT_LOW_PART)
7753           dest = SUBREG_REG (XEXP (dest, 0));
7754
7755         if (GET_CODE (dest) == REG || GET_CODE (dest) == SUBREG)
7756           /* Registers must also be inserted into chains for quantities.  */
7757           if (insert_regs (dest, sets[i].src_elt, 1))
7758             {
7759               /* If `insert_regs' changes something, the hash code must be
7760                  recalculated.  */
7761               rehash_using_reg (dest);
7762               sets[i].dest_hash = HASH (dest, GET_MODE (dest));
7763             }
7764
7765         if (GET_CODE (inner_dest) == MEM
7766             && GET_CODE (XEXP (inner_dest, 0)) == ADDRESSOF)
7767           /* Given (SET (MEM (ADDRESSOF (X))) Y) we don't want to say
7768              that (MEM (ADDRESSOF (X))) is equivalent to Y. 
7769              Consider the case in which the address of the MEM is
7770              passed to a function, which alters the MEM.  Then, if we
7771              later use Y instead of the MEM we'll miss the update.  */
7772           elt = insert (dest, 0, sets[i].dest_hash, GET_MODE (dest));
7773         else
7774           elt = insert (dest, sets[i].src_elt,
7775                         sets[i].dest_hash, GET_MODE (dest));
7776
7777         elt->in_memory = (GET_CODE (sets[i].inner_dest) == MEM
7778                           && (! RTX_UNCHANGING_P (sets[i].inner_dest)
7779                               || FIXED_BASE_PLUS_P (XEXP (sets[i].inner_dest,
7780                                                           0))));
7781
7782         if (elt->in_memory)
7783           {
7784             /* This implicitly assumes a whole struct
7785                need not have MEM_IN_STRUCT_P.
7786                But a whole struct is *supposed* to have MEM_IN_STRUCT_P.  */
7787             elt->in_struct = (MEM_IN_STRUCT_P (sets[i].inner_dest)
7788                               || sets[i].inner_dest != SET_DEST (sets[i].rtl));
7789           }
7790
7791         /* If we have (set (subreg:m1 (reg:m2 foo) 0) (bar:m1)), M1 is no
7792            narrower than M2, and both M1 and M2 are the same number of words,
7793            we are also doing (set (reg:m2 foo) (subreg:m2 (bar:m1) 0)) so
7794            make that equivalence as well.
7795
7796            However, BAR may have equivalences for which gen_lowpart_if_possible
7797            will produce a simpler value than gen_lowpart_if_possible applied to
7798            BAR (e.g., if BAR was ZERO_EXTENDed from M2), so we will scan all
7799            BAR's equivalences.  If we don't get a simplified form, make 
7800            the SUBREG.  It will not be used in an equivalence, but will
7801            cause two similar assignments to be detected.
7802
7803            Note the loop below will find SUBREG_REG (DEST) since we have
7804            already entered SRC and DEST of the SET in the table.  */
7805
7806         if (GET_CODE (dest) == SUBREG
7807             && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest))) - 1)
7808                  / UNITS_PER_WORD)
7809                 == (GET_MODE_SIZE (GET_MODE (dest)) - 1)/ UNITS_PER_WORD)
7810             && (GET_MODE_SIZE (GET_MODE (dest))
7811                 >= GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest))))
7812             && sets[i].src_elt != 0)
7813           {
7814             enum machine_mode new_mode = GET_MODE (SUBREG_REG (dest));
7815             struct table_elt *elt, *classp = 0;
7816
7817             for (elt = sets[i].src_elt->first_same_value; elt;
7818                  elt = elt->next_same_value)
7819               {
7820                 rtx new_src = 0;
7821                 unsigned src_hash;
7822                 struct table_elt *src_elt;
7823
7824                 /* Ignore invalid entries.  */
7825                 if (GET_CODE (elt->exp) != REG
7826                     && ! exp_equiv_p (elt->exp, elt->exp, 1, 0))
7827                   continue;
7828
7829                 new_src = gen_lowpart_if_possible (new_mode, elt->exp);
7830                 if (new_src == 0)
7831                   new_src = gen_rtx_SUBREG (new_mode, elt->exp, 0);
7832
7833                 src_hash = HASH (new_src, new_mode);
7834                 src_elt = lookup (new_src, src_hash, new_mode);
7835
7836                 /* Put the new source in the hash table is if isn't
7837                    already.  */
7838                 if (src_elt == 0)
7839                   {
7840                     if (insert_regs (new_src, classp, 0))
7841                       {
7842                         rehash_using_reg (new_src);
7843                         src_hash = HASH (new_src, new_mode);
7844                       }
7845                     src_elt = insert (new_src, classp, src_hash, new_mode);
7846                     src_elt->in_memory = elt->in_memory;
7847                     src_elt->in_struct = elt->in_struct;
7848                   }
7849                 else if (classp && classp != src_elt->first_same_value)
7850                   /* Show that two things that we've seen before are 
7851                      actually the same.  */
7852                   merge_equiv_classes (src_elt, classp);
7853
7854                 classp = src_elt->first_same_value;
7855                 /* Ignore invalid entries.  */
7856                 while (classp
7857                        && GET_CODE (classp->exp) != REG
7858                        && ! exp_equiv_p (classp->exp, classp->exp, 1, 0))
7859                   classp = classp->next_same_value;
7860               }
7861           }
7862       }
7863
7864   /* Special handling for (set REG0 REG1)
7865      where REG0 is the "cheapest", cheaper than REG1.
7866      After cse, REG1 will probably not be used in the sequel, 
7867      so (if easily done) change this insn to (set REG1 REG0) and
7868      replace REG1 with REG0 in the previous insn that computed their value.
7869      Then REG1 will become a dead store and won't cloud the situation
7870      for later optimizations.
7871
7872      Do not make this change if REG1 is a hard register, because it will
7873      then be used in the sequel and we may be changing a two-operand insn
7874      into a three-operand insn.
7875
7876      Also do not do this if we are operating on a copy of INSN.
7877
7878      Also don't do this if INSN ends a libcall; this would cause an unrelated
7879      register to be set in the middle of a libcall, and we then get bad code
7880      if the libcall is deleted.  */
7881
7882   if (n_sets == 1 && sets[0].rtl && GET_CODE (SET_DEST (sets[0].rtl)) == REG
7883       && NEXT_INSN (PREV_INSN (insn)) == insn
7884       && GET_CODE (SET_SRC (sets[0].rtl)) == REG
7885       && REGNO (SET_SRC (sets[0].rtl)) >= FIRST_PSEUDO_REGISTER
7886       && REGNO_QTY_VALID_P (REGNO (SET_SRC (sets[0].rtl)))
7887       && (qty_first_reg[REG_QTY (REGNO (SET_SRC (sets[0].rtl)))]
7888           == REGNO (SET_DEST (sets[0].rtl)))
7889       && ! find_reg_note (insn, REG_RETVAL, NULL_RTX))
7890     {
7891       rtx prev = PREV_INSN (insn);
7892       while (prev && GET_CODE (prev) == NOTE)
7893         prev = PREV_INSN (prev);
7894
7895       if (prev && GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SET
7896           && SET_DEST (PATTERN (prev)) == SET_SRC (sets[0].rtl))
7897         {
7898           rtx dest = SET_DEST (sets[0].rtl);
7899           rtx note = find_reg_note (prev, REG_EQUIV, NULL_RTX);
7900
7901           validate_change (prev, & SET_DEST (PATTERN (prev)), dest, 1);
7902           validate_change (insn, & SET_DEST (sets[0].rtl),
7903                            SET_SRC (sets[0].rtl), 1);
7904           validate_change (insn, & SET_SRC (sets[0].rtl), dest, 1);
7905           apply_change_group ();
7906
7907           /* If REG1 was equivalent to a constant, REG0 is not.  */
7908           if (note)
7909             PUT_REG_NOTE_KIND (note, REG_EQUAL);
7910
7911           /* If there was a REG_WAS_0 note on PREV, remove it.  Move
7912              any REG_WAS_0 note on INSN to PREV.  */
7913           note = find_reg_note (prev, REG_WAS_0, NULL_RTX);
7914           if (note)
7915             remove_note (prev, note);
7916
7917           note = find_reg_note (insn, REG_WAS_0, NULL_RTX);
7918           if (note)
7919             {
7920               remove_note (insn, note);
7921               XEXP (note, 1) = REG_NOTES (prev);
7922               REG_NOTES (prev) = note;
7923             }
7924
7925           /* If INSN has a REG_EQUAL note, and this note mentions REG0,
7926              then we must delete it, because the value in REG0 has changed.  */
7927           note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
7928           if (note && reg_mentioned_p (dest, XEXP (note, 0)))
7929             remove_note (insn, note);
7930         }
7931     }
7932
7933   /* If this is a conditional jump insn, record any known equivalences due to
7934      the condition being tested.  */
7935
7936   last_jump_equiv_class = 0;
7937   if (GET_CODE (insn) == JUMP_INSN
7938       && n_sets == 1 && GET_CODE (x) == SET
7939       && GET_CODE (SET_SRC (x)) == IF_THEN_ELSE)
7940     record_jump_equiv (insn, 0);
7941
7942 #ifdef HAVE_cc0
7943   /* If the previous insn set CC0 and this insn no longer references CC0,
7944      delete the previous insn.  Here we use the fact that nothing expects CC0
7945      to be valid over an insn, which is true until the final pass.  */
7946   if (prev_insn && GET_CODE (prev_insn) == INSN
7947       && (tem = single_set (prev_insn)) != 0
7948       && SET_DEST (tem) == cc0_rtx
7949       && ! reg_mentioned_p (cc0_rtx, x))
7950     {
7951       PUT_CODE (prev_insn, NOTE);
7952       NOTE_LINE_NUMBER (prev_insn) = NOTE_INSN_DELETED;
7953       NOTE_SOURCE_FILE (prev_insn) = 0;
7954     }
7955
7956   prev_insn_cc0 = this_insn_cc0;
7957   prev_insn_cc0_mode = this_insn_cc0_mode;
7958 #endif
7959
7960   prev_insn = insn;
7961 }
7962 \f
7963 /* Remove from the hash table all expressions that reference memory.  */
7964 static void
7965 invalidate_memory ()
7966 {
7967   register int i;
7968   register struct table_elt *p, *next;
7969
7970   for (i = 0; i < NBUCKETS; i++)
7971     for (p = table[i]; p; p = next)
7972       {
7973         next = p->next_same_hash;
7974         if (p->in_memory)
7975           remove_from_table (p, i);
7976       }
7977 }
7978
7979 /* XXX ??? The name of this function bears little resemblance to
7980    what this function actually does.  FIXME.  */
7981 static int
7982 note_mem_written (addr)
7983      register rtx addr;
7984 {
7985   /* Pushing or popping the stack invalidates just the stack pointer.  */
7986   if ((GET_CODE (addr) == PRE_DEC || GET_CODE (addr) == PRE_INC
7987        || GET_CODE (addr) == POST_DEC || GET_CODE (addr) == POST_INC)
7988       && GET_CODE (XEXP (addr, 0)) == REG
7989       && REGNO (XEXP (addr, 0)) == STACK_POINTER_REGNUM)
7990     {
7991       if (REG_TICK (STACK_POINTER_REGNUM) >= 0)
7992         REG_TICK (STACK_POINTER_REGNUM)++;
7993
7994       /* This should be *very* rare.  */
7995       if (TEST_HARD_REG_BIT (hard_regs_in_table, STACK_POINTER_REGNUM))
7996         invalidate (stack_pointer_rtx, VOIDmode);
7997       return 1;
7998     }
7999   return 0;
8000 }
8001
8002 /* Perform invalidation on the basis of everything about an insn
8003    except for invalidating the actual places that are SET in it.
8004    This includes the places CLOBBERed, and anything that might
8005    alias with something that is SET or CLOBBERed.
8006
8007    X is the pattern of the insn.  */
8008
8009 static void
8010 invalidate_from_clobbers (x)
8011      rtx x;
8012 {
8013   if (GET_CODE (x) == CLOBBER)
8014     {
8015       rtx ref = XEXP (x, 0);
8016       if (ref)
8017         {
8018           if (GET_CODE (ref) == REG || GET_CODE (ref) == SUBREG
8019               || GET_CODE (ref) == MEM)
8020             invalidate (ref, VOIDmode);
8021           else if (GET_CODE (ref) == STRICT_LOW_PART
8022                    || GET_CODE (ref) == ZERO_EXTRACT)
8023             invalidate (XEXP (ref, 0), GET_MODE (ref));
8024         }
8025     }
8026   else if (GET_CODE (x) == PARALLEL)
8027     {
8028       register int i;
8029       for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
8030         {
8031           register rtx y = XVECEXP (x, 0, i);
8032           if (GET_CODE (y) == CLOBBER)
8033             {
8034               rtx ref = XEXP (y, 0);
8035               if (GET_CODE (ref) == REG || GET_CODE (ref) == SUBREG
8036                   || GET_CODE (ref) == MEM)
8037                 invalidate (ref, VOIDmode);
8038               else if (GET_CODE (ref) == STRICT_LOW_PART
8039                        || GET_CODE (ref) == ZERO_EXTRACT)
8040                 invalidate (XEXP (ref, 0), GET_MODE (ref));
8041             }
8042         }
8043     }
8044 }
8045 \f
8046 /* Process X, part of the REG_NOTES of an insn.  Look at any REG_EQUAL notes
8047    and replace any registers in them with either an equivalent constant
8048    or the canonical form of the register.  If we are inside an address,
8049    only do this if the address remains valid.
8050
8051    OBJECT is 0 except when within a MEM in which case it is the MEM.
8052
8053    Return the replacement for X.  */
8054
8055 static rtx
8056 cse_process_notes (x, object)
8057      rtx x;
8058      rtx object;
8059 {
8060   enum rtx_code code = GET_CODE (x);
8061   const char *fmt = GET_RTX_FORMAT (code);
8062   int i;
8063
8064   switch (code)
8065     {
8066     case CONST_INT:
8067     case CONST:
8068     case SYMBOL_REF:
8069     case LABEL_REF:
8070     case CONST_DOUBLE:
8071     case PC:
8072     case CC0:
8073     case LO_SUM:
8074       return x;
8075
8076     case MEM:
8077       XEXP (x, 0) = cse_process_notes (XEXP (x, 0), x);
8078       return x;
8079
8080     case EXPR_LIST:
8081     case INSN_LIST:
8082       if (REG_NOTE_KIND (x) == REG_EQUAL)
8083         XEXP (x, 0) = cse_process_notes (XEXP (x, 0), NULL_RTX);
8084       if (XEXP (x, 1))
8085         XEXP (x, 1) = cse_process_notes (XEXP (x, 1), NULL_RTX);
8086       return x;
8087
8088     case SIGN_EXTEND:
8089     case ZERO_EXTEND:
8090     case SUBREG:
8091       {
8092         rtx new = cse_process_notes (XEXP (x, 0), object);
8093         /* We don't substitute VOIDmode constants into these rtx,
8094            since they would impede folding.  */
8095         if (GET_MODE (new) != VOIDmode)
8096           validate_change (object, &XEXP (x, 0), new, 0);
8097         return x;
8098       }
8099
8100     case REG:
8101       i = REG_QTY (REGNO (x));
8102
8103       /* Return a constant or a constant register.  */
8104       if (REGNO_QTY_VALID_P (REGNO (x))
8105           && qty_const[i] != 0
8106           && (CONSTANT_P (qty_const[i])
8107               || GET_CODE (qty_const[i]) == REG))
8108         {
8109           rtx new = gen_lowpart_if_possible (GET_MODE (x), qty_const[i]);
8110           if (new)
8111             return new;
8112         }
8113
8114       /* Otherwise, canonicalize this register.  */
8115       return canon_reg (x, NULL_RTX);
8116       
8117     default:
8118       break;
8119     }
8120
8121   for (i = 0; i < GET_RTX_LENGTH (code); i++)
8122     if (fmt[i] == 'e')
8123       validate_change (object, &XEXP (x, i),
8124                        cse_process_notes (XEXP (x, i), object), 0);
8125
8126   return x;
8127 }
8128 \f
8129 /* Find common subexpressions between the end test of a loop and the beginning
8130    of the loop.  LOOP_START is the CODE_LABEL at the start of a loop.
8131
8132    Often we have a loop where an expression in the exit test is used
8133    in the body of the loop.  For example "while (*p) *q++ = *p++;".
8134    Because of the way we duplicate the loop exit test in front of the loop,
8135    however, we don't detect that common subexpression.  This will be caught
8136    when global cse is implemented, but this is a quite common case.
8137
8138    This function handles the most common cases of these common expressions.
8139    It is called after we have processed the basic block ending with the
8140    NOTE_INSN_LOOP_END note that ends a loop and the previous JUMP_INSN
8141    jumps to a label used only once.  */
8142
8143 static void
8144 cse_around_loop (loop_start)
8145      rtx loop_start;
8146 {
8147   rtx insn;
8148   int i;
8149   struct table_elt *p;
8150
8151   /* If the jump at the end of the loop doesn't go to the start, we don't
8152      do anything.  */
8153   for (insn = PREV_INSN (loop_start);
8154        insn && (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) >= 0);
8155        insn = PREV_INSN (insn))
8156     ;
8157
8158   if (insn == 0
8159       || GET_CODE (insn) != NOTE
8160       || NOTE_LINE_NUMBER (insn) != NOTE_INSN_LOOP_BEG)
8161     return;
8162
8163   /* If the last insn of the loop (the end test) was an NE comparison,
8164      we will interpret it as an EQ comparison, since we fell through
8165      the loop.  Any equivalences resulting from that comparison are
8166      therefore not valid and must be invalidated.  */
8167   if (last_jump_equiv_class)
8168     for (p = last_jump_equiv_class->first_same_value; p;
8169          p = p->next_same_value)
8170       {
8171         if (GET_CODE (p->exp) == MEM || GET_CODE (p->exp) == REG
8172             || (GET_CODE (p->exp) == SUBREG
8173                 && GET_CODE (SUBREG_REG (p->exp)) == REG))
8174           invalidate (p->exp, VOIDmode);
8175         else if (GET_CODE (p->exp) == STRICT_LOW_PART
8176                  || GET_CODE (p->exp) == ZERO_EXTRACT)
8177           invalidate (XEXP (p->exp, 0), GET_MODE (p->exp));
8178       }
8179
8180   /* Process insns starting after LOOP_START until we hit a CALL_INSN or
8181      a CODE_LABEL (we could handle a CALL_INSN, but it isn't worth it).
8182
8183      The only thing we do with SET_DEST is invalidate entries, so we
8184      can safely process each SET in order.  It is slightly less efficient
8185      to do so, but we only want to handle the most common cases.
8186
8187      The gen_move_insn call in cse_set_around_loop may create new pseudos.
8188      These pseudos won't have valid entries in any of the tables indexed
8189      by register number, such as reg_qty.  We avoid out-of-range array
8190      accesses by not processing any instructions created after cse started.  */
8191
8192   for (insn = NEXT_INSN (loop_start);
8193        GET_CODE (insn) != CALL_INSN && GET_CODE (insn) != CODE_LABEL
8194        && INSN_UID (insn) < max_insn_uid
8195        && ! (GET_CODE (insn) == NOTE
8196              && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END);
8197        insn = NEXT_INSN (insn))
8198     {
8199       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
8200           && (GET_CODE (PATTERN (insn)) == SET
8201               || GET_CODE (PATTERN (insn)) == CLOBBER))
8202         cse_set_around_loop (PATTERN (insn), insn, loop_start);
8203       else if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
8204                && GET_CODE (PATTERN (insn)) == PARALLEL)
8205         for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
8206           if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET
8207               || GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == CLOBBER)
8208             cse_set_around_loop (XVECEXP (PATTERN (insn), 0, i), insn,
8209                                  loop_start);
8210     }
8211 }
8212 \f
8213 /* Process one SET of an insn that was skipped.  We ignore CLOBBERs
8214    since they are done elsewhere.  This function is called via note_stores.  */
8215
8216 static void
8217 invalidate_skipped_set (dest, set)
8218      rtx set;
8219      rtx dest;
8220 {
8221   enum rtx_code code = GET_CODE (dest);
8222
8223   if (code == MEM
8224       && ! note_mem_written (dest)      /* If this is not a stack push ... */
8225       /* There are times when an address can appear varying and be a PLUS
8226          during this scan when it would be a fixed address were we to know
8227          the proper equivalences.  So invalidate all memory if there is
8228          a BLKmode or nonscalar memory reference or a reference to a
8229          variable address.  */
8230       && (MEM_IN_STRUCT_P (dest) || GET_MODE (dest) == BLKmode
8231           || cse_rtx_varies_p (XEXP (dest, 0))))
8232     {
8233       invalidate_memory ();
8234       return;
8235     }
8236
8237   if (GET_CODE (set) == CLOBBER
8238 #ifdef HAVE_cc0
8239       || dest == cc0_rtx
8240 #endif
8241       || dest == pc_rtx)
8242     return;
8243
8244   if (code == STRICT_LOW_PART || code == ZERO_EXTRACT)
8245     invalidate (XEXP (dest, 0), GET_MODE (dest));
8246   else if (code == REG || code == SUBREG || code == MEM)
8247     invalidate (dest, VOIDmode);
8248 }
8249
8250 /* Invalidate all insns from START up to the end of the function or the
8251    next label.  This called when we wish to CSE around a block that is
8252    conditionally executed.  */
8253
8254 static void
8255 invalidate_skipped_block (start)
8256      rtx start;
8257 {
8258   rtx insn;
8259
8260   for (insn = start; insn && GET_CODE (insn) != CODE_LABEL;
8261        insn = NEXT_INSN (insn))
8262     {
8263       if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
8264         continue;
8265
8266       if (GET_CODE (insn) == CALL_INSN)
8267         {
8268           if (! CONST_CALL_P (insn))
8269             invalidate_memory ();
8270           invalidate_for_call ();
8271         }
8272
8273       invalidate_from_clobbers (PATTERN (insn));
8274       note_stores (PATTERN (insn), invalidate_skipped_set);
8275     }
8276 }
8277 \f
8278 /* Used for communication between the following two routines; contains a
8279    value to be checked for modification.  */
8280
8281 static rtx cse_check_loop_start_value;
8282
8283 /* If modifying X will modify the value in CSE_CHECK_LOOP_START_VALUE,
8284    indicate that fact by setting CSE_CHECK_LOOP_START_VALUE to 0.  */
8285
8286 static void
8287 cse_check_loop_start (x, set)
8288      rtx x;
8289      rtx set ATTRIBUTE_UNUSED;
8290 {
8291   if (cse_check_loop_start_value == 0
8292       || GET_CODE (x) == CC0 || GET_CODE (x) == PC)
8293     return;
8294
8295   if ((GET_CODE (x) == MEM && GET_CODE (cse_check_loop_start_value) == MEM)
8296       || reg_overlap_mentioned_p (x, cse_check_loop_start_value))
8297     cse_check_loop_start_value = 0;
8298 }
8299
8300 /* X is a SET or CLOBBER contained in INSN that was found near the start of
8301    a loop that starts with the label at LOOP_START.
8302
8303    If X is a SET, we see if its SET_SRC is currently in our hash table.
8304    If so, we see if it has a value equal to some register used only in the
8305    loop exit code (as marked by jump.c).
8306
8307    If those two conditions are true, we search backwards from the start of
8308    the loop to see if that same value was loaded into a register that still
8309    retains its value at the start of the loop.
8310
8311    If so, we insert an insn after the load to copy the destination of that
8312    load into the equivalent register and (try to) replace our SET_SRC with that
8313    register.
8314
8315    In any event, we invalidate whatever this SET or CLOBBER modifies.  */
8316
8317 static void
8318 cse_set_around_loop (x, insn, loop_start)
8319      rtx x;
8320      rtx insn;
8321      rtx loop_start;
8322 {
8323   struct table_elt *src_elt;
8324
8325   /* If this is a SET, see if we can replace SET_SRC, but ignore SETs that
8326      are setting PC or CC0 or whose SET_SRC is already a register.  */
8327   if (GET_CODE (x) == SET
8328       && GET_CODE (SET_DEST (x)) != PC && GET_CODE (SET_DEST (x)) != CC0
8329       && GET_CODE (SET_SRC (x)) != REG)
8330     {
8331       src_elt = lookup (SET_SRC (x),
8332                         HASH (SET_SRC (x), GET_MODE (SET_DEST (x))),
8333                         GET_MODE (SET_DEST (x)));
8334
8335       if (src_elt)
8336         for (src_elt = src_elt->first_same_value; src_elt;
8337              src_elt = src_elt->next_same_value)
8338           if (GET_CODE (src_elt->exp) == REG && REG_LOOP_TEST_P (src_elt->exp)
8339               && COST (src_elt->exp) < COST (SET_SRC (x)))
8340             {
8341               rtx p, set;
8342
8343               /* Look for an insn in front of LOOP_START that sets
8344                  something in the desired mode to SET_SRC (x) before we hit
8345                  a label or CALL_INSN.  */
8346
8347               for (p = prev_nonnote_insn (loop_start);
8348                    p && GET_CODE (p) != CALL_INSN
8349                    && GET_CODE (p) != CODE_LABEL;
8350                    p = prev_nonnote_insn  (p))
8351                 if ((set = single_set (p)) != 0
8352                     && GET_CODE (SET_DEST (set)) == REG
8353                     && GET_MODE (SET_DEST (set)) == src_elt->mode
8354                     && rtx_equal_p (SET_SRC (set), SET_SRC (x)))
8355                   {
8356                     /* We now have to ensure that nothing between P
8357                        and LOOP_START modified anything referenced in
8358                        SET_SRC (x).  We know that nothing within the loop
8359                        can modify it, or we would have invalidated it in
8360                        the hash table.  */
8361                     rtx q;
8362
8363                     cse_check_loop_start_value = SET_SRC (x);
8364                     for (q = p; q != loop_start; q = NEXT_INSN (q))
8365                       if (GET_RTX_CLASS (GET_CODE (q)) == 'i')
8366                         note_stores (PATTERN (q), cse_check_loop_start);
8367
8368                     /* If nothing was changed and we can replace our
8369                        SET_SRC, add an insn after P to copy its destination
8370                        to what we will be replacing SET_SRC with.  */
8371                     if (cse_check_loop_start_value
8372                         && validate_change (insn, &SET_SRC (x),
8373                                             src_elt->exp, 0))
8374                       {
8375                         /* If this creates new pseudos, this is unsafe,
8376                            because the regno of new pseudo is unsuitable
8377                            to index into reg_qty when cse_insn processes
8378                            the new insn.  Therefore, if a new pseudo was
8379                            created, discard this optimization.  */
8380                         int nregs = max_reg_num ();
8381                         rtx move
8382                           = gen_move_insn (src_elt->exp, SET_DEST (set));
8383                         if (nregs != max_reg_num ())
8384                           {
8385                             if (! validate_change (insn, &SET_SRC (x),
8386                                                    SET_SRC (set), 0))
8387                               abort ();
8388                           }
8389                         else
8390                           emit_insn_after (move, p);
8391                       }
8392                     break;
8393                   }
8394             }
8395     }
8396
8397   /* Now invalidate anything modified by X.  */
8398   note_mem_written (SET_DEST (x));
8399
8400   /* See comment on similar code in cse_insn for explanation of these tests.  */
8401   if (GET_CODE (SET_DEST (x)) == REG || GET_CODE (SET_DEST (x)) == SUBREG
8402       || GET_CODE (SET_DEST (x)) == MEM)
8403     invalidate (SET_DEST (x), VOIDmode);
8404   else if (GET_CODE (SET_DEST (x)) == STRICT_LOW_PART
8405            || GET_CODE (SET_DEST (x)) == ZERO_EXTRACT)
8406     invalidate (XEXP (SET_DEST (x), 0), GET_MODE (SET_DEST (x)));
8407 }
8408 \f
8409 /* Find the end of INSN's basic block and return its range,
8410    the total number of SETs in all the insns of the block, the last insn of the
8411    block, and the branch path.
8412
8413    The branch path indicates which branches should be followed.  If a non-zero
8414    path size is specified, the block should be rescanned and a different set
8415    of branches will be taken.  The branch path is only used if
8416    FLAG_CSE_FOLLOW_JUMPS or FLAG_CSE_SKIP_BLOCKS is non-zero.
8417
8418    DATA is a pointer to a struct cse_basic_block_data, defined below, that is
8419    used to describe the block.  It is filled in with the information about
8420    the current block.  The incoming structure's branch path, if any, is used
8421    to construct the output branch path.  */
8422
8423 void
8424 cse_end_of_basic_block (insn, data, follow_jumps, after_loop, skip_blocks)
8425      rtx insn;
8426      struct cse_basic_block_data *data;
8427      int follow_jumps;
8428      int after_loop;
8429      int skip_blocks;
8430 {
8431   rtx p = insn, q;
8432   int nsets = 0;
8433   int low_cuid = INSN_CUID (insn), high_cuid = INSN_CUID (insn);
8434   rtx next = GET_RTX_CLASS (GET_CODE (insn)) == 'i' ? insn : next_real_insn (insn);
8435   int path_size = data->path_size;
8436   int path_entry = 0;
8437   int i;
8438
8439   /* Update the previous branch path, if any.  If the last branch was
8440      previously TAKEN, mark it NOT_TAKEN.  If it was previously NOT_TAKEN,
8441      shorten the path by one and look at the previous branch.  We know that
8442      at least one branch must have been taken if PATH_SIZE is non-zero.  */
8443   while (path_size > 0)
8444     {
8445       if (data->path[path_size - 1].status != NOT_TAKEN)
8446         {
8447           data->path[path_size - 1].status = NOT_TAKEN;
8448           break;
8449         }
8450       else
8451         path_size--;
8452     }
8453
8454   /* Scan to end of this basic block.  */
8455   while (p && GET_CODE (p) != CODE_LABEL)
8456     {
8457       /* Don't cse out the end of a loop.  This makes a difference
8458          only for the unusual loops that always execute at least once;
8459          all other loops have labels there so we will stop in any case.
8460          Cse'ing out the end of the loop is dangerous because it
8461          might cause an invariant expression inside the loop
8462          to be reused after the end of the loop.  This would make it
8463          hard to move the expression out of the loop in loop.c,
8464          especially if it is one of several equivalent expressions
8465          and loop.c would like to eliminate it.
8466
8467          If we are running after loop.c has finished, we can ignore
8468          the NOTE_INSN_LOOP_END.  */
8469
8470       if (! after_loop && GET_CODE (p) == NOTE
8471           && NOTE_LINE_NUMBER (p) == NOTE_INSN_LOOP_END)
8472         break;
8473
8474       /* Don't cse over a call to setjmp; on some machines (eg vax)
8475          the regs restored by the longjmp come from
8476          a later time than the setjmp.  */
8477       if (GET_CODE (p) == NOTE
8478           && NOTE_LINE_NUMBER (p) == NOTE_INSN_SETJMP)
8479         break;
8480
8481       /* A PARALLEL can have lots of SETs in it,
8482          especially if it is really an ASM_OPERANDS.  */
8483       if (GET_RTX_CLASS (GET_CODE (p)) == 'i'
8484           && GET_CODE (PATTERN (p)) == PARALLEL)
8485         nsets += XVECLEN (PATTERN (p), 0);
8486       else if (GET_CODE (p) != NOTE)
8487         nsets += 1;
8488         
8489       /* Ignore insns made by CSE; they cannot affect the boundaries of
8490          the basic block.  */
8491
8492       if (INSN_UID (p) <= max_uid && INSN_CUID (p) > high_cuid)
8493         high_cuid = INSN_CUID (p);
8494       if (INSN_UID (p) <= max_uid && INSN_CUID (p) < low_cuid)
8495         low_cuid = INSN_CUID (p);
8496
8497       /* See if this insn is in our branch path.  If it is and we are to
8498          take it, do so.  */
8499       if (path_entry < path_size && data->path[path_entry].branch == p)
8500         {
8501           if (data->path[path_entry].status != NOT_TAKEN)
8502             p = JUMP_LABEL (p);
8503           
8504           /* Point to next entry in path, if any.  */
8505           path_entry++;
8506         }
8507
8508       /* If this is a conditional jump, we can follow it if -fcse-follow-jumps
8509          was specified, we haven't reached our maximum path length, there are
8510          insns following the target of the jump, this is the only use of the
8511          jump label, and the target label is preceded by a BARRIER.
8512
8513          Alternatively, we can follow the jump if it branches around a
8514          block of code and there are no other branches into the block.
8515          In this case invalidate_skipped_block will be called to invalidate any
8516          registers set in the block when following the jump.  */
8517
8518       else if ((follow_jumps || skip_blocks) && path_size < PATHLENGTH - 1
8519                && GET_CODE (p) == JUMP_INSN
8520                && GET_CODE (PATTERN (p)) == SET
8521                && GET_CODE (SET_SRC (PATTERN (p))) == IF_THEN_ELSE
8522                && JUMP_LABEL (p) != 0
8523                && LABEL_NUSES (JUMP_LABEL (p)) == 1
8524                && NEXT_INSN (JUMP_LABEL (p)) != 0)
8525         {
8526           for (q = PREV_INSN (JUMP_LABEL (p)); q; q = PREV_INSN (q))
8527             if ((GET_CODE (q) != NOTE
8528                  || NOTE_LINE_NUMBER (q) == NOTE_INSN_LOOP_END
8529                  || NOTE_LINE_NUMBER (q) == NOTE_INSN_SETJMP)
8530                 && (GET_CODE (q) != CODE_LABEL || LABEL_NUSES (q) != 0))
8531               break;
8532
8533           /* If we ran into a BARRIER, this code is an extension of the
8534              basic block when the branch is taken.  */
8535           if (follow_jumps && q != 0 && GET_CODE (q) == BARRIER)
8536             {
8537               /* Don't allow ourself to keep walking around an
8538                  always-executed loop.  */
8539               if (next_real_insn (q) == next)
8540                 {
8541                   p = NEXT_INSN (p);
8542                   continue;
8543                 }
8544
8545               /* Similarly, don't put a branch in our path more than once.  */
8546               for (i = 0; i < path_entry; i++)
8547                 if (data->path[i].branch == p)
8548                   break;
8549
8550               if (i != path_entry)
8551                 break;
8552
8553               data->path[path_entry].branch = p;
8554               data->path[path_entry++].status = TAKEN;
8555
8556               /* This branch now ends our path.  It was possible that we
8557                  didn't see this branch the last time around (when the
8558                  insn in front of the target was a JUMP_INSN that was
8559                  turned into a no-op).  */
8560               path_size = path_entry;
8561
8562               p = JUMP_LABEL (p);
8563               /* Mark block so we won't scan it again later.  */
8564               PUT_MODE (NEXT_INSN (p), QImode);
8565             }
8566           /* Detect a branch around a block of code.  */
8567           else if (skip_blocks && q != 0 && GET_CODE (q) != CODE_LABEL)
8568             {
8569               register rtx tmp;
8570
8571               if (next_real_insn (q) == next)
8572                 {
8573                   p = NEXT_INSN (p);
8574                   continue;
8575                 }
8576
8577               for (i = 0; i < path_entry; i++)
8578                 if (data->path[i].branch == p)
8579                   break;
8580
8581               if (i != path_entry)
8582                 break;
8583
8584               /* This is no_labels_between_p (p, q) with an added check for
8585                  reaching the end of a function (in case Q precedes P).  */
8586               for (tmp = NEXT_INSN (p); tmp && tmp != q; tmp = NEXT_INSN (tmp))
8587                 if (GET_CODE (tmp) == CODE_LABEL)
8588                   break;
8589               
8590               if (tmp == q)
8591                 {
8592                   data->path[path_entry].branch = p;
8593                   data->path[path_entry++].status = AROUND;
8594
8595                   path_size = path_entry;
8596
8597                   p = JUMP_LABEL (p);
8598                   /* Mark block so we won't scan it again later.  */
8599                   PUT_MODE (NEXT_INSN (p), QImode);
8600                 }
8601             }
8602         }
8603       p = NEXT_INSN (p);
8604     }
8605
8606   data->low_cuid = low_cuid;
8607   data->high_cuid = high_cuid;
8608   data->nsets = nsets;
8609   data->last = p;
8610
8611   /* If all jumps in the path are not taken, set our path length to zero
8612      so a rescan won't be done.  */
8613   for (i = path_size - 1; i >= 0; i--)
8614     if (data->path[i].status != NOT_TAKEN)
8615       break;
8616
8617   if (i == -1)
8618     data->path_size = 0;
8619   else
8620     data->path_size = path_size;
8621
8622   /* End the current branch path.  */
8623   data->path[path_size].branch = 0;
8624 }
8625 \f
8626 /* Perform cse on the instructions of a function.
8627    F is the first instruction.
8628    NREGS is one plus the highest pseudo-reg number used in the instruction.
8629
8630    AFTER_LOOP is 1 if this is the cse call done after loop optimization
8631    (only if -frerun-cse-after-loop).
8632
8633    Returns 1 if jump_optimize should be redone due to simplifications
8634    in conditional jump instructions.  */
8635
8636 int
8637 cse_main (f, nregs, after_loop, file)
8638      rtx f;
8639      int nregs;
8640      int after_loop;
8641      FILE *file;
8642 {
8643   struct cse_basic_block_data val;
8644   register rtx insn = f;
8645   register int i;
8646
8647   cse_jumps_altered = 0;
8648   recorded_label_ref = 0;
8649   constant_pool_entries_cost = 0;
8650   val.path_size = 0;
8651
8652   init_recog ();
8653   init_alias_analysis ();
8654
8655   max_reg = nregs;
8656
8657   max_insn_uid = get_max_uid ();
8658
8659   reg_next_eqv = (int *) alloca (nregs * sizeof (int));
8660   reg_prev_eqv = (int *) alloca (nregs * sizeof (int));
8661
8662 #ifdef LOAD_EXTEND_OP
8663
8664   /* Allocate scratch rtl here.  cse_insn will fill in the memory reference
8665      and change the code and mode as appropriate.  */
8666   memory_extend_rtx = gen_rtx_ZERO_EXTEND (VOIDmode, NULL_RTX);
8667 #endif
8668
8669   /* Discard all the free elements of the previous function
8670      since they are allocated in the temporarily obstack.  */
8671   bzero ((char *) table, sizeof table);
8672   free_element_chain = 0;
8673   n_elements_made = 0;
8674
8675   /* Find the largest uid.  */
8676
8677   max_uid = get_max_uid ();
8678   uid_cuid = (int *) alloca ((max_uid + 1) * sizeof (int));
8679   bzero ((char *) uid_cuid, (max_uid + 1) * sizeof (int));
8680
8681   /* Compute the mapping from uids to cuids.
8682      CUIDs are numbers assigned to insns, like uids,
8683      except that cuids increase monotonically through the code.
8684      Don't assign cuids to line-number NOTEs, so that the distance in cuids
8685      between two insns is not affected by -g.  */
8686
8687   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
8688     {
8689       if (GET_CODE (insn) != NOTE
8690           || NOTE_LINE_NUMBER (insn) < 0)
8691         INSN_CUID (insn) = ++i;
8692       else
8693         /* Give a line number note the same cuid as preceding insn.  */
8694         INSN_CUID (insn) = i;
8695     }
8696
8697   /* Initialize which registers are clobbered by calls.  */
8698
8699   CLEAR_HARD_REG_SET (regs_invalidated_by_call);
8700
8701   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
8702     if ((call_used_regs[i]
8703          /* Used to check !fixed_regs[i] here, but that isn't safe;
8704             fixed regs are still call-clobbered, and sched can get
8705             confused if they can "live across calls".
8706
8707             The frame pointer is always preserved across calls.  The arg
8708             pointer is if it is fixed.  The stack pointer usually is, unless
8709             RETURN_POPS_ARGS, in which case an explicit CLOBBER
8710             will be present.  If we are generating PIC code, the PIC offset
8711             table register is preserved across calls.  */
8712
8713          && i != STACK_POINTER_REGNUM
8714          && i != FRAME_POINTER_REGNUM
8715 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
8716          && i != HARD_FRAME_POINTER_REGNUM
8717 #endif
8718 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
8719          && ! (i == ARG_POINTER_REGNUM && fixed_regs[i])
8720 #endif
8721 #if defined (PIC_OFFSET_TABLE_REGNUM) && !defined (PIC_OFFSET_TABLE_REG_CALL_CLOBBERED)
8722          && ! (i == PIC_OFFSET_TABLE_REGNUM && flag_pic)
8723 #endif
8724          )
8725         || global_regs[i])
8726       SET_HARD_REG_BIT (regs_invalidated_by_call, i);
8727
8728   /* Loop over basic blocks.
8729      Compute the maximum number of qty's needed for each basic block
8730      (which is 2 for each SET).  */
8731   insn = f;
8732   while (insn)
8733     {
8734       cse_end_of_basic_block (insn, &val, flag_cse_follow_jumps, after_loop,
8735                               flag_cse_skip_blocks);
8736
8737       /* If this basic block was already processed or has no sets, skip it.  */
8738       if (val.nsets == 0 || GET_MODE (insn) == QImode)
8739         {
8740           PUT_MODE (insn, VOIDmode);
8741           insn = (val.last ? NEXT_INSN (val.last) : 0);
8742           val.path_size = 0;
8743           continue;
8744         }
8745
8746       cse_basic_block_start = val.low_cuid;
8747       cse_basic_block_end = val.high_cuid;
8748       max_qty = val.nsets * 2;
8749       
8750       if (file)
8751         fnotice (file, ";; Processing block from %d to %d, %d sets.\n",
8752                  INSN_UID (insn), val.last ? INSN_UID (val.last) : 0,
8753                  val.nsets);
8754
8755       /* Make MAX_QTY bigger to give us room to optimize
8756          past the end of this basic block, if that should prove useful.  */
8757       if (max_qty < 500)
8758         max_qty = 500;
8759
8760       max_qty += max_reg;
8761
8762       /* If this basic block is being extended by following certain jumps,
8763          (see `cse_end_of_basic_block'), we reprocess the code from the start.
8764          Otherwise, we start after this basic block.  */
8765       if (val.path_size > 0)
8766         cse_basic_block (insn, val.last, val.path, 0);
8767       else
8768         {
8769           int old_cse_jumps_altered = cse_jumps_altered;
8770           rtx temp;
8771
8772           /* When cse changes a conditional jump to an unconditional
8773              jump, we want to reprocess the block, since it will give
8774              us a new branch path to investigate.  */
8775           cse_jumps_altered = 0;
8776           temp = cse_basic_block (insn, val.last, val.path, ! after_loop);
8777           if (cse_jumps_altered == 0
8778               || (flag_cse_follow_jumps == 0 && flag_cse_skip_blocks == 0))
8779             insn = temp;
8780
8781           cse_jumps_altered |= old_cse_jumps_altered;
8782         }
8783
8784 #ifdef USE_C_ALLOCA
8785       alloca (0);
8786 #endif
8787     }
8788
8789   /* Tell refers_to_mem_p that qty_const info is not available.  */
8790   qty_const = 0;
8791
8792   if (max_elements_made < n_elements_made)
8793     max_elements_made = n_elements_made;
8794
8795   return cse_jumps_altered || recorded_label_ref;
8796 }
8797
8798 /* Process a single basic block.  FROM and TO and the limits of the basic
8799    block.  NEXT_BRANCH points to the branch path when following jumps or
8800    a null path when not following jumps.
8801
8802    AROUND_LOOP is non-zero if we are to try to cse around to the start of a
8803    loop.  This is true when we are being called for the last time on a
8804    block and this CSE pass is before loop.c.  */
8805
8806 static rtx
8807 cse_basic_block (from, to, next_branch, around_loop)
8808      register rtx from, to;
8809      struct branch_path *next_branch;
8810      int around_loop;
8811 {
8812   register rtx insn;
8813   int to_usage = 0;
8814   rtx libcall_insn = NULL_RTX;
8815   int num_insns = 0;
8816
8817   /* Each of these arrays is undefined before max_reg, so only allocate
8818      the space actually needed and adjust the start below.  */
8819
8820   qty_first_reg = (int *) alloca ((max_qty - max_reg) * sizeof (int));
8821   qty_last_reg = (int *) alloca ((max_qty - max_reg) * sizeof (int));
8822   qty_mode= (enum machine_mode *) alloca ((max_qty - max_reg) * sizeof (enum machine_mode));
8823   qty_const = (rtx *) alloca ((max_qty - max_reg) * sizeof (rtx));
8824   qty_const_insn = (rtx *) alloca ((max_qty - max_reg) * sizeof (rtx));
8825   qty_comparison_code
8826     = (enum rtx_code *) alloca ((max_qty - max_reg) * sizeof (enum rtx_code));
8827   qty_comparison_qty = (int *) alloca ((max_qty - max_reg) * sizeof (int));
8828   qty_comparison_const = (rtx *) alloca ((max_qty - max_reg) * sizeof (rtx));
8829
8830   qty_first_reg -= max_reg;
8831   qty_last_reg -= max_reg;
8832   qty_mode -= max_reg;
8833   qty_const -= max_reg;
8834   qty_const_insn -= max_reg;
8835   qty_comparison_code -= max_reg;
8836   qty_comparison_qty -= max_reg;
8837   qty_comparison_const -= max_reg;
8838
8839   new_basic_block ();
8840
8841   /* TO might be a label.  If so, protect it from being deleted.  */
8842   if (to != 0 && GET_CODE (to) == CODE_LABEL)
8843     ++LABEL_NUSES (to);
8844
8845   for (insn = from; insn != to; insn = NEXT_INSN (insn))
8846     {
8847       register enum rtx_code code = GET_CODE (insn);
8848
8849       /* If we have processed 1,000 insns, flush the hash table to
8850          avoid extreme quadratic behavior.  We must not include NOTEs
8851          in the count since there may be more or them when generating
8852          debugging information.  If we clear the table at different
8853          times, code generated with -g -O might be different than code
8854          generated with -O but not -g.
8855
8856          ??? This is a real kludge and needs to be done some other way.
8857          Perhaps for 2.9.  */
8858       if (code != NOTE && num_insns++ > 1000)
8859         {
8860           flush_hash_table ();
8861           num_insns = 0;
8862         }
8863
8864       /* See if this is a branch that is part of the path.  If so, and it is
8865          to be taken, do so.  */
8866       if (next_branch->branch == insn)
8867         {
8868           enum taken status = next_branch++->status;
8869           if (status != NOT_TAKEN)
8870             {
8871               if (status == TAKEN)
8872                 record_jump_equiv (insn, 1);
8873               else
8874                 invalidate_skipped_block (NEXT_INSN (insn));
8875
8876               /* Set the last insn as the jump insn; it doesn't affect cc0.
8877                  Then follow this branch.  */
8878 #ifdef HAVE_cc0
8879               prev_insn_cc0 = 0;
8880 #endif
8881               prev_insn = insn;
8882               insn = JUMP_LABEL (insn);
8883               continue;
8884             }
8885         }
8886         
8887       if (GET_MODE (insn) == QImode)
8888         PUT_MODE (insn, VOIDmode);
8889
8890       if (GET_RTX_CLASS (code) == 'i')
8891         {
8892           rtx p;
8893
8894           /* Process notes first so we have all notes in canonical forms when
8895              looking for duplicate operations.  */
8896
8897           if (REG_NOTES (insn))
8898             REG_NOTES (insn) = cse_process_notes (REG_NOTES (insn), NULL_RTX);
8899
8900           /* Track when we are inside in LIBCALL block.  Inside such a block,
8901              we do not want to record destinations.  The last insn of a
8902              LIBCALL block is not considered to be part of the block, since
8903              its destination is the result of the block and hence should be
8904              recorded.  */
8905
8906           if ((p = find_reg_note (insn, REG_LIBCALL, NULL_RTX)))
8907             libcall_insn = XEXP (p, 0);
8908           else if (find_reg_note (insn, REG_RETVAL, NULL_RTX))
8909             libcall_insn = NULL_RTX;
8910
8911           cse_insn (insn, libcall_insn);
8912         }
8913
8914       /* If INSN is now an unconditional jump, skip to the end of our
8915          basic block by pretending that we just did the last insn in the
8916          basic block.  If we are jumping to the end of our block, show
8917          that we can have one usage of TO.  */
8918
8919       if (simplejump_p (insn))
8920         {
8921           if (to == 0)
8922             return 0;
8923
8924           if (JUMP_LABEL (insn) == to)
8925             to_usage = 1;
8926
8927           /* Maybe TO was deleted because the jump is unconditional.
8928              If so, there is nothing left in this basic block.  */
8929           /* ??? Perhaps it would be smarter to set TO
8930              to whatever follows this insn, 
8931              and pretend the basic block had always ended here.  */
8932           if (INSN_DELETED_P (to))
8933             break;
8934
8935           insn = PREV_INSN (to);
8936         }
8937
8938       /* See if it is ok to keep on going past the label
8939          which used to end our basic block.  Remember that we incremented
8940          the count of that label, so we decrement it here.  If we made
8941          a jump unconditional, TO_USAGE will be one; in that case, we don't
8942          want to count the use in that jump.  */
8943
8944       if (to != 0 && NEXT_INSN (insn) == to
8945           && GET_CODE (to) == CODE_LABEL && --LABEL_NUSES (to) == to_usage)
8946         {
8947           struct cse_basic_block_data val;
8948           rtx prev;
8949
8950           insn = NEXT_INSN (to);
8951
8952           if (LABEL_NUSES (to) == 0)
8953             insn = delete_insn (to);
8954
8955           /* If TO was the last insn in the function, we are done.  */
8956           if (insn == 0)
8957             return 0;
8958
8959           /* If TO was preceded by a BARRIER we are done with this block
8960              because it has no continuation.  */
8961           prev = prev_nonnote_insn (to);
8962           if (prev && GET_CODE (prev) == BARRIER)
8963             return insn;
8964
8965           /* Find the end of the following block.  Note that we won't be
8966              following branches in this case.  */
8967           to_usage = 0;
8968           val.path_size = 0;
8969           cse_end_of_basic_block (insn, &val, 0, 0, 0);
8970
8971           /* If the tables we allocated have enough space left
8972              to handle all the SETs in the next basic block,
8973              continue through it.  Otherwise, return,
8974              and that block will be scanned individually.  */
8975           if (val.nsets * 2 + next_qty > max_qty)
8976             break;
8977
8978           cse_basic_block_start = val.low_cuid;
8979           cse_basic_block_end = val.high_cuid;
8980           to = val.last;
8981
8982           /* Prevent TO from being deleted if it is a label.  */
8983           if (to != 0 && GET_CODE (to) == CODE_LABEL)
8984             ++LABEL_NUSES (to);
8985
8986           /* Back up so we process the first insn in the extension.  */
8987           insn = PREV_INSN (insn);
8988         }
8989     }
8990
8991   if (next_qty > max_qty)
8992     abort ();
8993
8994   /* If we are running before loop.c, we stopped on a NOTE_INSN_LOOP_END, and
8995      the previous insn is the only insn that branches to the head of a loop,
8996      we can cse into the loop.  Don't do this if we changed the jump
8997      structure of a loop unless we aren't going to be following jumps.  */
8998
8999   if ((cse_jumps_altered == 0
9000        || (flag_cse_follow_jumps == 0 && flag_cse_skip_blocks == 0))
9001       && around_loop && to != 0
9002       && GET_CODE (to) == NOTE && NOTE_LINE_NUMBER (to) == NOTE_INSN_LOOP_END
9003       && GET_CODE (PREV_INSN (to)) == JUMP_INSN
9004       && JUMP_LABEL (PREV_INSN (to)) != 0
9005       && LABEL_NUSES (JUMP_LABEL (PREV_INSN (to))) == 1)
9006     cse_around_loop (JUMP_LABEL (PREV_INSN (to)));
9007
9008   return to ? NEXT_INSN (to) : 0;
9009 }
9010 \f
9011 /* Count the number of times registers are used (not set) in X.
9012    COUNTS is an array in which we accumulate the count, INCR is how much
9013    we count each register usage.  
9014
9015    Don't count a usage of DEST, which is the SET_DEST of a SET which 
9016    contains X in its SET_SRC.  This is because such a SET does not
9017    modify the liveness of DEST.  */
9018
9019 static void
9020 count_reg_usage (x, counts, dest, incr)
9021      rtx x;
9022      int *counts;
9023      rtx dest;
9024      int incr;
9025 {
9026   enum rtx_code code;
9027   const char *fmt;
9028   int i, j;
9029
9030   if (x == 0)
9031     return;
9032
9033   switch (code = GET_CODE (x))
9034     {
9035     case REG:
9036       if (x != dest)
9037         counts[REGNO (x)] += incr;
9038       return;
9039
9040     case PC:
9041     case CC0:
9042     case CONST:
9043     case CONST_INT:
9044     case CONST_DOUBLE:
9045     case SYMBOL_REF:
9046     case LABEL_REF:
9047       return;
9048
9049     case CLOBBER:                                                        
9050       /* If we are clobbering a MEM, mark any registers inside the address
9051          as being used.  */
9052       if (GET_CODE (XEXP (x, 0)) == MEM)
9053         count_reg_usage (XEXP (XEXP (x, 0), 0), counts, NULL_RTX, incr);
9054       return;
9055
9056     case SET:
9057       /* Unless we are setting a REG, count everything in SET_DEST.  */
9058       if (GET_CODE (SET_DEST (x)) != REG)
9059         count_reg_usage (SET_DEST (x), counts, NULL_RTX, incr);
9060
9061       /* If SRC has side-effects, then we can't delete this insn, so the
9062          usage of SET_DEST inside SRC counts.
9063
9064          ??? Strictly-speaking, we might be preserving this insn
9065          because some other SET has side-effects, but that's hard
9066          to do and can't happen now.  */
9067       count_reg_usage (SET_SRC (x), counts,
9068                        side_effects_p (SET_SRC (x)) ? NULL_RTX : SET_DEST (x),
9069                        incr);
9070       return;
9071
9072     case CALL_INSN:
9073       count_reg_usage (CALL_INSN_FUNCTION_USAGE (x), counts, NULL_RTX, incr);
9074
9075       /* ... falls through ...  */
9076     case INSN:
9077     case JUMP_INSN:
9078       count_reg_usage (PATTERN (x), counts, NULL_RTX, incr);
9079
9080       /* Things used in a REG_EQUAL note aren't dead since loop may try to
9081          use them.  */
9082
9083       count_reg_usage (REG_NOTES (x), counts, NULL_RTX, incr);
9084       return;
9085
9086     case EXPR_LIST:
9087     case INSN_LIST:
9088       if (REG_NOTE_KIND (x) == REG_EQUAL
9089           || (REG_NOTE_KIND (x) != REG_NONNEG && GET_CODE (XEXP (x,0)) == USE))
9090         count_reg_usage (XEXP (x, 0), counts, NULL_RTX, incr);
9091       count_reg_usage (XEXP (x, 1), counts, NULL_RTX, incr);
9092       return;
9093       
9094     default:
9095       break;
9096     }
9097
9098   fmt = GET_RTX_FORMAT (code);
9099   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
9100     {
9101       if (fmt[i] == 'e')
9102         count_reg_usage (XEXP (x, i), counts, dest, incr);
9103       else if (fmt[i] == 'E')
9104         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
9105           count_reg_usage (XVECEXP (x, i, j), counts, dest, incr);
9106     }
9107 }
9108 \f
9109 /* Scan all the insns and delete any that are dead; i.e., they store a register
9110    that is never used or they copy a register to itself.
9111
9112    This is used to remove insns made obviously dead by cse, loop or other
9113    optimizations.  It improves the heuristics in loop since it won't try to
9114    move dead invariants out of loops or make givs for dead quantities.  The
9115    remaining passes of the compilation are also sped up.  */
9116
9117 void
9118 delete_trivially_dead_insns (insns, nreg)
9119      rtx insns;
9120      int nreg;
9121 {
9122   int *counts = (int *) alloca (nreg * sizeof (int));
9123   rtx insn, prev;
9124 #ifdef HAVE_cc0
9125   rtx tem;
9126 #endif
9127   int i;
9128   int in_libcall = 0, dead_libcall = 0;
9129
9130   /* First count the number of times each register is used.  */
9131   bzero ((char *) counts, sizeof (int) * nreg);
9132   for (insn = next_real_insn (insns); insn; insn = next_real_insn (insn))
9133     count_reg_usage (insn, counts, NULL_RTX, 1);
9134
9135   /* Go from the last insn to the first and delete insns that only set unused
9136      registers or copy a register to itself.  As we delete an insn, remove
9137      usage counts for registers it uses.  */
9138   for (insn = prev_real_insn (get_last_insn ()); insn; insn = prev)
9139     {
9140       int live_insn = 0;
9141       rtx note;
9142
9143       prev = prev_real_insn (insn);
9144
9145       /* Don't delete any insns that are part of a libcall block unless
9146          we can delete the whole libcall block.
9147
9148          Flow or loop might get confused if we did that.  Remember
9149          that we are scanning backwards.  */
9150       if (find_reg_note (insn, REG_RETVAL, NULL_RTX))
9151         {
9152           in_libcall = 1;
9153           live_insn = 1;
9154           dead_libcall = 0;
9155
9156           /* See if there's a REG_EQUAL note on this insn and try to
9157              replace the source with the REG_EQUAL expression.
9158         
9159              We assume that insns with REG_RETVALs can only be reg->reg
9160              copies at this point.  */
9161           note = find_reg_note (insn, REG_EQUAL, NULL_RTX);
9162           if (note)
9163             {
9164               rtx set = single_set (insn);
9165               if (set
9166                   && validate_change (insn, &SET_SRC (set), XEXP (note, 0), 0))
9167                 {
9168                   remove_note (insn,
9169                                find_reg_note (insn, REG_RETVAL, NULL_RTX));
9170                   dead_libcall = 1;
9171                 }
9172             }
9173         }
9174       else if (in_libcall)
9175         live_insn = ! dead_libcall;
9176       else if (GET_CODE (PATTERN (insn)) == SET)
9177         {
9178           if (GET_CODE (SET_DEST (PATTERN (insn))) == REG
9179               && SET_DEST (PATTERN (insn)) == SET_SRC (PATTERN (insn)))
9180             ;
9181
9182 #ifdef HAVE_cc0
9183           else if (GET_CODE (SET_DEST (PATTERN (insn))) == CC0
9184                    && ! side_effects_p (SET_SRC (PATTERN (insn)))
9185                    && ((tem = next_nonnote_insn (insn)) == 0
9186                        || GET_RTX_CLASS (GET_CODE (tem)) != 'i'
9187                        || ! reg_referenced_p (cc0_rtx, PATTERN (tem))))
9188             ;
9189 #endif
9190           else if (GET_CODE (SET_DEST (PATTERN (insn))) != REG
9191                    || REGNO (SET_DEST (PATTERN (insn))) < FIRST_PSEUDO_REGISTER
9192                    || counts[REGNO (SET_DEST (PATTERN (insn)))] != 0
9193                    || side_effects_p (SET_SRC (PATTERN (insn))))
9194             live_insn = 1;
9195         }
9196       else if (GET_CODE (PATTERN (insn)) == PARALLEL)
9197         for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
9198           {
9199             rtx elt = XVECEXP (PATTERN (insn), 0, i);
9200
9201             if (GET_CODE (elt) == SET)
9202               {
9203                 if (GET_CODE (SET_DEST (elt)) == REG
9204                     && SET_DEST (elt) == SET_SRC (elt))
9205                   ;
9206
9207 #ifdef HAVE_cc0
9208                 else if (GET_CODE (SET_DEST (elt)) == CC0
9209                          && ! side_effects_p (SET_SRC (elt))
9210                          && ((tem = next_nonnote_insn (insn)) == 0
9211                              || GET_RTX_CLASS (GET_CODE (tem)) != 'i'
9212                              || ! reg_referenced_p (cc0_rtx, PATTERN (tem))))
9213                   ;
9214 #endif
9215                 else if (GET_CODE (SET_DEST (elt)) != REG
9216                          || REGNO (SET_DEST (elt)) < FIRST_PSEUDO_REGISTER
9217                          || counts[REGNO (SET_DEST (elt))] != 0
9218                          || side_effects_p (SET_SRC (elt)))
9219                   live_insn = 1;
9220               }
9221             else if (GET_CODE (elt) != CLOBBER && GET_CODE (elt) != USE)
9222               live_insn = 1;
9223           }
9224       else
9225         live_insn = 1;
9226
9227       /* If this is a dead insn, delete it and show registers in it aren't
9228          being used.  */
9229
9230       if (! live_insn)
9231         {
9232           count_reg_usage (insn, counts, NULL_RTX, -1);
9233           delete_insn (insn);
9234         }
9235
9236       if (find_reg_note (insn, REG_LIBCALL, NULL_RTX))
9237         {
9238           in_libcall = 0;
9239           dead_libcall = 0;
9240         }
9241     }
9242 }