1 /* Common subexpression elimination for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
28 #include "hard-reg-set.h"
30 #include "basic-block.h"
32 #include "insn-config.h"
36 #include "diagnostic-core.h"
44 #include "rtlhooks-def.h"
45 #include "tree-pass.h"
49 /* The basic idea of common subexpression elimination is to go
50 through the code, keeping a record of expressions that would
51 have the same value at the current scan point, and replacing
52 expressions encountered with the cheapest equivalent expression.
54 It is too complicated to keep track of the different possibilities
55 when control paths merge in this code; so, at each label, we forget all
56 that is known and start fresh. This can be described as processing each
57 extended basic block separately. We have a separate pass to perform
60 Note CSE can turn a conditional or computed jump into a nop or
61 an unconditional jump. When this occurs we arrange to run the jump
62 optimizer after CSE to delete the unreachable code.
64 We use two data structures to record the equivalent expressions:
65 a hash table for most expressions, and a vector of "quantity
66 numbers" to record equivalent (pseudo) registers.
68 The use of the special data structure for registers is desirable
69 because it is faster. It is possible because registers references
70 contain a fairly small number, the register number, taken from
71 a contiguously allocated series, and two register references are
72 identical if they have the same number. General expressions
73 do not have any such thing, so the only way to retrieve the
74 information recorded on an expression other than a register
75 is to keep it in a hash table.
77 Registers and "quantity numbers":
79 At the start of each basic block, all of the (hardware and pseudo)
80 registers used in the function are given distinct quantity
81 numbers to indicate their contents. During scan, when the code
82 copies one register into another, we copy the quantity number.
83 When a register is loaded in any other way, we allocate a new
84 quantity number to describe the value generated by this operation.
85 `REG_QTY (N)' records what quantity register N is currently thought
88 All real quantity numbers are greater than or equal to zero.
89 If register N has not been assigned a quantity, `REG_QTY (N)' will
90 equal -N - 1, which is always negative.
92 Quantity numbers below zero do not exist and none of the `qty_table'
93 entries should be referenced with a negative index.
95 We also maintain a bidirectional chain of registers for each
96 quantity number. The `qty_table` members `first_reg' and `last_reg',
97 and `reg_eqv_table' members `next' and `prev' hold these chains.
99 The first register in a chain is the one whose lifespan is least local.
100 Among equals, it is the one that was seen first.
101 We replace any equivalent register with that one.
103 If two registers have the same quantity number, it must be true that
104 REG expressions with qty_table `mode' must be in the hash table for both
105 registers and must be in the same class.
107 The converse is not true. Since hard registers may be referenced in
108 any mode, two REG expressions might be equivalent in the hash table
109 but not have the same quantity number if the quantity number of one
110 of the registers is not the same mode as those expressions.
112 Constants and quantity numbers
114 When a quantity has a known constant value, that value is stored
115 in the appropriate qty_table `const_rtx'. This is in addition to
116 putting the constant in the hash table as is usual for non-regs.
118 Whether a reg or a constant is preferred is determined by the configuration
119 macro CONST_COSTS and will often depend on the constant value. In any
120 event, expressions containing constants can be simplified, by fold_rtx.
122 When a quantity has a known nearly constant value (such as an address
123 of a stack slot), that value is stored in the appropriate qty_table
126 Integer constants don't have a machine mode. However, cse
127 determines the intended machine mode from the destination
128 of the instruction that moves the constant. The machine mode
129 is recorded in the hash table along with the actual RTL
130 constant expression so that different modes are kept separate.
134 To record known equivalences among expressions in general
135 we use a hash table called `table'. It has a fixed number of buckets
136 that contain chains of `struct table_elt' elements for expressions.
137 These chains connect the elements whose expressions have the same
140 Other chains through the same elements connect the elements which
141 currently have equivalent values.
143 Register references in an expression are canonicalized before hashing
144 the expression. This is done using `reg_qty' and qty_table `first_reg'.
145 The hash code of a register reference is computed using the quantity
146 number, not the register number.
148 When the value of an expression changes, it is necessary to remove from the
149 hash table not just that expression but all expressions whose values
150 could be different as a result.
152 1. If the value changing is in memory, except in special cases
153 ANYTHING referring to memory could be changed. That is because
154 nobody knows where a pointer does not point.
155 The function `invalidate_memory' removes what is necessary.
157 The special cases are when the address is constant or is
158 a constant plus a fixed register such as the frame pointer
159 or a static chain pointer. When such addresses are stored in,
160 we can tell exactly which other such addresses must be invalidated
161 due to overlap. `invalidate' does this.
162 All expressions that refer to non-constant
163 memory addresses are also invalidated. `invalidate_memory' does this.
165 2. If the value changing is a register, all expressions
166 containing references to that register, and only those,
169 Because searching the entire hash table for expressions that contain
170 a register is very slow, we try to figure out when it isn't necessary.
171 Precisely, this is necessary only when expressions have been
172 entered in the hash table using this register, and then the value has
173 changed, and then another expression wants to be added to refer to
174 the register's new value. This sequence of circumstances is rare
175 within any one basic block.
177 `REG_TICK' and `REG_IN_TABLE', accessors for members of
178 cse_reg_info, are used to detect this case. REG_TICK (i) is
179 incremented whenever a value is stored in register i.
180 REG_IN_TABLE (i) holds -1 if no references to register i have been
181 entered in the table; otherwise, it contains the value REG_TICK (i)
182 had when the references were entered. If we want to enter a
183 reference and REG_IN_TABLE (i) != REG_TICK (i), we must scan and
184 remove old references. Until we want to enter a new entry, the
185 mere fact that the two vectors don't match makes the entries be
186 ignored if anyone tries to match them.
188 Registers themselves are entered in the hash table as well as in
189 the equivalent-register chains. However, `REG_TICK' and
190 `REG_IN_TABLE' do not apply to expressions which are simple
191 register references. These expressions are removed from the table
192 immediately when they become invalid, and this can be done even if
193 we do not immediately search for all the expressions that refer to
196 A CLOBBER rtx in an instruction invalidates its operand for further
197 reuse. A CLOBBER or SET rtx whose operand is a MEM:BLK
198 invalidates everything that resides in memory.
202 Constant expressions that differ only by an additive integer
203 are called related. When a constant expression is put in
204 the table, the related expression with no constant term
205 is also entered. These are made to point at each other
206 so that it is possible to find out if there exists any
207 register equivalent to an expression related to a given expression. */
209 /* Length of qty_table vector. We know in advance we will not need
210 a quantity number this big. */
214 /* Next quantity number to be allocated.
215 This is 1 + the largest number needed so far. */
219 /* Per-qty information tracking.
221 `first_reg' and `last_reg' track the head and tail of the
222 chain of registers which currently contain this quantity.
224 `mode' contains the machine mode of this quantity.
226 `const_rtx' holds the rtx of the constant value of this
227 quantity, if known. A summations of the frame/arg pointer
228 and a constant can also be entered here. When this holds
229 a known value, `const_insn' is the insn which stored the
232 `comparison_{code,const,qty}' are used to track when a
233 comparison between a quantity and some constant or register has
234 been passed. In such a case, we know the results of the comparison
235 in case we see it again. These members record a comparison that
236 is known to be true. `comparison_code' holds the rtx code of such
237 a comparison, else it is set to UNKNOWN and the other two
238 comparison members are undefined. `comparison_const' holds
239 the constant being compared against, or zero if the comparison
240 is not against a constant. `comparison_qty' holds the quantity
241 being compared against when the result is known. If the comparison
242 is not with a register, `comparison_qty' is -1. */
244 struct qty_table_elem
248 rtx comparison_const;
250 unsigned int first_reg, last_reg;
251 /* The sizes of these fields should match the sizes of the
252 code and mode fields of struct rtx_def (see rtl.h). */
253 ENUM_BITFIELD(rtx_code) comparison_code : 16;
254 ENUM_BITFIELD(machine_mode) mode : 8;
257 /* The table of all qtys, indexed by qty number. */
258 static struct qty_table_elem *qty_table;
260 /* Structure used to pass arguments via for_each_rtx to function
261 cse_change_cc_mode. */
262 struct change_cc_mode_args
269 /* For machines that have a CC0, we do not record its value in the hash
270 table since its use is guaranteed to be the insn immediately following
271 its definition and any other insn is presumed to invalidate it.
273 Instead, we store below the current and last value assigned to CC0.
274 If it should happen to be a constant, it is stored in preference
275 to the actual assigned value. In case it is a constant, we store
276 the mode in which the constant should be interpreted. */
278 static rtx this_insn_cc0, prev_insn_cc0;
279 static enum machine_mode this_insn_cc0_mode, prev_insn_cc0_mode;
282 /* Insn being scanned. */
284 static rtx this_insn;
285 static bool optimize_this_for_speed_p;
287 /* Index by register number, gives the number of the next (or
288 previous) register in the chain of registers sharing the same
291 Or -1 if this register is at the end of the chain.
293 If REG_QTY (N) == -N - 1, reg_eqv_table[N].next is undefined. */
295 /* Per-register equivalence chain. */
301 /* The table of all register equivalence chains. */
302 static struct reg_eqv_elem *reg_eqv_table;
306 /* The timestamp at which this register is initialized. */
307 unsigned int timestamp;
309 /* The quantity number of the register's current contents. */
312 /* The number of times the register has been altered in the current
316 /* The REG_TICK value at which rtx's containing this register are
317 valid in the hash table. If this does not equal the current
318 reg_tick value, such expressions existing in the hash table are
322 /* The SUBREG that was set when REG_TICK was last incremented. Set
323 to -1 if the last store was to the whole register, not a subreg. */
324 unsigned int subreg_ticked;
327 /* A table of cse_reg_info indexed by register numbers. */
328 static struct cse_reg_info *cse_reg_info_table;
330 /* The size of the above table. */
331 static unsigned int cse_reg_info_table_size;
333 /* The index of the first entry that has not been initialized. */
334 static unsigned int cse_reg_info_table_first_uninitialized;
336 /* The timestamp at the beginning of the current run of
337 cse_extended_basic_block. We increment this variable at the beginning of
338 the current run of cse_extended_basic_block. The timestamp field of a
339 cse_reg_info entry matches the value of this variable if and only
340 if the entry has been initialized during the current run of
341 cse_extended_basic_block. */
342 static unsigned int cse_reg_info_timestamp;
344 /* A HARD_REG_SET containing all the hard registers for which there is
345 currently a REG expression in the hash table. Note the difference
346 from the above variables, which indicate if the REG is mentioned in some
347 expression in the table. */
349 static HARD_REG_SET hard_regs_in_table;
351 /* True if CSE has altered the CFG. */
352 static bool cse_cfg_altered;
354 /* True if CSE has altered conditional jump insns in such a way
355 that jump optimization should be redone. */
356 static bool cse_jumps_altered;
358 /* True if we put a LABEL_REF into the hash table for an INSN
359 without a REG_LABEL_OPERAND, we have to rerun jump after CSE
360 to put in the note. */
361 static bool recorded_label_ref;
363 /* canon_hash stores 1 in do_not_record
364 if it notices a reference to CC0, PC, or some other volatile
367 static int do_not_record;
369 /* canon_hash stores 1 in hash_arg_in_memory
370 if it notices a reference to memory within the expression being hashed. */
372 static int hash_arg_in_memory;
374 /* The hash table contains buckets which are chains of `struct table_elt's,
375 each recording one expression's information.
376 That expression is in the `exp' field.
378 The canon_exp field contains a canonical (from the point of view of
379 alias analysis) version of the `exp' field.
381 Those elements with the same hash code are chained in both directions
382 through the `next_same_hash' and `prev_same_hash' fields.
384 Each set of expressions with equivalent values
385 are on a two-way chain through the `next_same_value'
386 and `prev_same_value' fields, and all point with
387 the `first_same_value' field at the first element in
388 that chain. The chain is in order of increasing cost.
389 Each element's cost value is in its `cost' field.
391 The `in_memory' field is nonzero for elements that
392 involve any reference to memory. These elements are removed
393 whenever a write is done to an unidentified location in memory.
394 To be safe, we assume that a memory address is unidentified unless
395 the address is either a symbol constant or a constant plus
396 the frame pointer or argument pointer.
398 The `related_value' field is used to connect related expressions
399 (that differ by adding an integer).
400 The related expressions are chained in a circular fashion.
401 `related_value' is zero for expressions for which this
404 The `cost' field stores the cost of this element's expression.
405 The `regcost' field stores the value returned by approx_reg_cost for
406 this element's expression.
408 The `is_const' flag is set if the element is a constant (including
411 The `flag' field is used as a temporary during some search routines.
413 The `mode' field is usually the same as GET_MODE (`exp'), but
414 if `exp' is a CONST_INT and has no machine mode then the `mode'
415 field is the mode it was being used as. Each constant is
416 recorded separately for each mode it is used with. */
422 struct table_elt *next_same_hash;
423 struct table_elt *prev_same_hash;
424 struct table_elt *next_same_value;
425 struct table_elt *prev_same_value;
426 struct table_elt *first_same_value;
427 struct table_elt *related_value;
430 /* The size of this field should match the size
431 of the mode field of struct rtx_def (see rtl.h). */
432 ENUM_BITFIELD(machine_mode) mode : 8;
438 /* We don't want a lot of buckets, because we rarely have very many
439 things stored in the hash table, and a lot of buckets slows
440 down a lot of loops that happen frequently. */
442 #define HASH_SIZE (1 << HASH_SHIFT)
443 #define HASH_MASK (HASH_SIZE - 1)
445 /* Compute hash code of X in mode M. Special-case case where X is a pseudo
446 register (hard registers may require `do_not_record' to be set). */
449 ((REG_P (X) && REGNO (X) >= FIRST_PSEUDO_REGISTER \
450 ? (((unsigned) REG << 7) + (unsigned) REG_QTY (REGNO (X))) \
451 : canon_hash (X, M)) & HASH_MASK)
453 /* Like HASH, but without side-effects. */
454 #define SAFE_HASH(X, M) \
455 ((REG_P (X) && REGNO (X) >= FIRST_PSEUDO_REGISTER \
456 ? (((unsigned) REG << 7) + (unsigned) REG_QTY (REGNO (X))) \
457 : safe_hash (X, M)) & HASH_MASK)
459 /* Determine whether register number N is considered a fixed register for the
460 purpose of approximating register costs.
461 It is desirable to replace other regs with fixed regs, to reduce need for
463 A reg wins if it is either the frame pointer or designated as fixed. */
464 #define FIXED_REGNO_P(N) \
465 ((N) == FRAME_POINTER_REGNUM || (N) == HARD_FRAME_POINTER_REGNUM \
466 || fixed_regs[N] || global_regs[N])
468 /* Compute cost of X, as stored in the `cost' field of a table_elt. Fixed
469 hard registers and pointers into the frame are the cheapest with a cost
470 of 0. Next come pseudos with a cost of one and other hard registers with
471 a cost of 2. Aside from these special cases, call `rtx_cost'. */
473 #define CHEAP_REGNO(N) \
474 (REGNO_PTR_FRAME_P(N) \
475 || (HARD_REGISTER_NUM_P (N) \
476 && FIXED_REGNO_P (N) && REGNO_REG_CLASS (N) != NO_REGS))
478 #define COST(X) (REG_P (X) ? 0 : notreg_cost (X, SET, 1))
479 #define COST_IN(X, OUTER, OPNO) (REG_P (X) ? 0 : notreg_cost (X, OUTER, OPNO))
481 /* Get the number of times this register has been updated in this
484 #define REG_TICK(N) (get_cse_reg_info (N)->reg_tick)
486 /* Get the point at which REG was recorded in the table. */
488 #define REG_IN_TABLE(N) (get_cse_reg_info (N)->reg_in_table)
490 /* Get the SUBREG set at the last increment to REG_TICK (-1 if not a
493 #define SUBREG_TICKED(N) (get_cse_reg_info (N)->subreg_ticked)
495 /* Get the quantity number for REG. */
497 #define REG_QTY(N) (get_cse_reg_info (N)->reg_qty)
499 /* Determine if the quantity number for register X represents a valid index
500 into the qty_table. */
502 #define REGNO_QTY_VALID_P(N) (REG_QTY (N) >= 0)
504 /* Compare table_elt X and Y and return true iff X is cheaper than Y. */
506 #define CHEAPER(X, Y) \
507 (preferable ((X)->cost, (X)->regcost, (Y)->cost, (Y)->regcost) < 0)
509 static struct table_elt *table[HASH_SIZE];
511 /* Chain of `struct table_elt's made so far for this function
512 but currently removed from the table. */
514 static struct table_elt *free_element_chain;
516 /* Set to the cost of a constant pool reference if one was found for a
517 symbolic constant. If this was found, it means we should try to
518 convert constants into constant pool entries if they don't fit in
521 static int constant_pool_entries_cost;
522 static int constant_pool_entries_regcost;
524 /* Trace a patch through the CFG. */
528 /* The basic block for this path entry. */
532 /* This data describes a block that will be processed by
533 cse_extended_basic_block. */
535 struct cse_basic_block_data
537 /* Total number of SETs in block. */
539 /* Size of current branch path, if any. */
541 /* Current path, indicating which basic_blocks will be processed. */
542 struct branch_path *path;
546 /* Pointers to the live in/live out bitmaps for the boundaries of the
548 static bitmap cse_ebb_live_in, cse_ebb_live_out;
550 /* A simple bitmap to track which basic blocks have been visited
551 already as part of an already processed extended basic block. */
552 static sbitmap cse_visited_basic_blocks;
554 static bool fixed_base_plus_p (rtx x);
555 static int notreg_cost (rtx, enum rtx_code, int);
556 static int approx_reg_cost_1 (rtx *, void *);
557 static int approx_reg_cost (rtx);
558 static int preferable (int, int, int, int);
559 static void new_basic_block (void);
560 static void make_new_qty (unsigned int, enum machine_mode);
561 static void make_regs_eqv (unsigned int, unsigned int);
562 static void delete_reg_equiv (unsigned int);
563 static int mention_regs (rtx);
564 static int insert_regs (rtx, struct table_elt *, int);
565 static void remove_from_table (struct table_elt *, unsigned);
566 static void remove_pseudo_from_table (rtx, unsigned);
567 static struct table_elt *lookup (rtx, unsigned, enum machine_mode);
568 static struct table_elt *lookup_for_remove (rtx, unsigned, enum machine_mode);
569 static rtx lookup_as_function (rtx, enum rtx_code);
570 static struct table_elt *insert_with_costs (rtx, struct table_elt *, unsigned,
571 enum machine_mode, int, int);
572 static struct table_elt *insert (rtx, struct table_elt *, unsigned,
574 static void merge_equiv_classes (struct table_elt *, struct table_elt *);
575 static void invalidate (rtx, enum machine_mode);
576 static void remove_invalid_refs (unsigned int);
577 static void remove_invalid_subreg_refs (unsigned int, unsigned int,
579 static void rehash_using_reg (rtx);
580 static void invalidate_memory (void);
581 static void invalidate_for_call (void);
582 static rtx use_related_value (rtx, struct table_elt *);
584 static inline unsigned canon_hash (rtx, enum machine_mode);
585 static inline unsigned safe_hash (rtx, enum machine_mode);
586 static inline unsigned hash_rtx_string (const char *);
588 static rtx canon_reg (rtx, rtx);
589 static enum rtx_code find_comparison_args (enum rtx_code, rtx *, rtx *,
591 enum machine_mode *);
592 static rtx fold_rtx (rtx, rtx);
593 static rtx equiv_constant (rtx);
594 static void record_jump_equiv (rtx, bool);
595 static void record_jump_cond (enum rtx_code, enum machine_mode, rtx, rtx,
597 static void cse_insn (rtx);
598 static void cse_prescan_path (struct cse_basic_block_data *);
599 static void invalidate_from_clobbers (rtx);
600 static rtx cse_process_notes (rtx, rtx, bool *);
601 static void cse_extended_basic_block (struct cse_basic_block_data *);
602 static void count_reg_usage (rtx, int *, rtx, int);
603 static int check_for_label_ref (rtx *, void *);
604 extern void dump_class (struct table_elt*);
605 static void get_cse_reg_info_1 (unsigned int regno);
606 static struct cse_reg_info * get_cse_reg_info (unsigned int regno);
607 static int check_dependence (rtx *, void *);
609 static void flush_hash_table (void);
610 static bool insn_live_p (rtx, int *);
611 static bool set_live_p (rtx, rtx, int *);
612 static int cse_change_cc_mode (rtx *, void *);
613 static void cse_change_cc_mode_insn (rtx, rtx);
614 static void cse_change_cc_mode_insns (rtx, rtx, rtx);
615 static enum machine_mode cse_cc_succs (basic_block, basic_block, rtx, rtx,
619 #undef RTL_HOOKS_GEN_LOWPART
620 #define RTL_HOOKS_GEN_LOWPART gen_lowpart_if_possible
622 static const struct rtl_hooks cse_rtl_hooks = RTL_HOOKS_INITIALIZER;
624 /* Nonzero if X has the form (PLUS frame-pointer integer). We check for
625 virtual regs here because the simplify_*_operation routines are called
626 by integrate.c, which is called before virtual register instantiation. */
629 fixed_base_plus_p (rtx x)
631 switch (GET_CODE (x))
634 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx)
636 if (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM])
638 if (REGNO (x) >= FIRST_VIRTUAL_REGISTER
639 && REGNO (x) <= LAST_VIRTUAL_REGISTER)
644 if (!CONST_INT_P (XEXP (x, 1)))
646 return fixed_base_plus_p (XEXP (x, 0));
653 /* Dump the expressions in the equivalence class indicated by CLASSP.
654 This function is used only for debugging. */
656 dump_class (struct table_elt *classp)
658 struct table_elt *elt;
660 fprintf (stderr, "Equivalence chain for ");
661 print_rtl (stderr, classp->exp);
662 fprintf (stderr, ": \n");
664 for (elt = classp->first_same_value; elt; elt = elt->next_same_value)
666 print_rtl (stderr, elt->exp);
667 fprintf (stderr, "\n");
671 /* Subroutine of approx_reg_cost; called through for_each_rtx. */
674 approx_reg_cost_1 (rtx *xp, void *data)
677 int *cost_p = (int *) data;
681 unsigned int regno = REGNO (x);
683 if (! CHEAP_REGNO (regno))
685 if (regno < FIRST_PSEUDO_REGISTER)
687 if (targetm.small_register_classes_for_mode_p (GET_MODE (x)))
699 /* Return an estimate of the cost of the registers used in an rtx.
700 This is mostly the number of different REG expressions in the rtx;
701 however for some exceptions like fixed registers we use a cost of
702 0. If any other hard register reference occurs, return MAX_COST. */
705 approx_reg_cost (rtx x)
709 if (for_each_rtx (&x, approx_reg_cost_1, (void *) &cost))
715 /* Return a negative value if an rtx A, whose costs are given by COST_A
716 and REGCOST_A, is more desirable than an rtx B.
717 Return a positive value if A is less desirable, or 0 if the two are
720 preferable (int cost_a, int regcost_a, int cost_b, int regcost_b)
722 /* First, get rid of cases involving expressions that are entirely
724 if (cost_a != cost_b)
726 if (cost_a == MAX_COST)
728 if (cost_b == MAX_COST)
732 /* Avoid extending lifetimes of hardregs. */
733 if (regcost_a != regcost_b)
735 if (regcost_a == MAX_COST)
737 if (regcost_b == MAX_COST)
741 /* Normal operation costs take precedence. */
742 if (cost_a != cost_b)
743 return cost_a - cost_b;
744 /* Only if these are identical consider effects on register pressure. */
745 if (regcost_a != regcost_b)
746 return regcost_a - regcost_b;
750 /* Internal function, to compute cost when X is not a register; called
751 from COST macro to keep it simple. */
754 notreg_cost (rtx x, enum rtx_code outer, int opno)
756 return ((GET_CODE (x) == SUBREG
757 && REG_P (SUBREG_REG (x))
758 && GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
759 && GET_MODE_CLASS (GET_MODE (SUBREG_REG (x))) == MODE_INT
760 && (GET_MODE_SIZE (GET_MODE (x))
761 < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
762 && subreg_lowpart_p (x)
763 && TRULY_NOOP_TRUNCATION_MODES_P (GET_MODE (x),
764 GET_MODE (SUBREG_REG (x))))
766 : rtx_cost (x, outer, opno, optimize_this_for_speed_p) * 2);
770 /* Initialize CSE_REG_INFO_TABLE. */
773 init_cse_reg_info (unsigned int nregs)
775 /* Do we need to grow the table? */
776 if (nregs > cse_reg_info_table_size)
778 unsigned int new_size;
780 if (cse_reg_info_table_size < 2048)
782 /* Compute a new size that is a power of 2 and no smaller
783 than the large of NREGS and 64. */
784 new_size = (cse_reg_info_table_size
785 ? cse_reg_info_table_size : 64);
787 while (new_size < nregs)
792 /* If we need a big table, allocate just enough to hold
797 /* Reallocate the table with NEW_SIZE entries. */
798 free (cse_reg_info_table);
799 cse_reg_info_table = XNEWVEC (struct cse_reg_info, new_size);
800 cse_reg_info_table_size = new_size;
801 cse_reg_info_table_first_uninitialized = 0;
804 /* Do we have all of the first NREGS entries initialized? */
805 if (cse_reg_info_table_first_uninitialized < nregs)
807 unsigned int old_timestamp = cse_reg_info_timestamp - 1;
810 /* Put the old timestamp on newly allocated entries so that they
811 will all be considered out of date. We do not touch those
812 entries beyond the first NREGS entries to be nice to the
814 for (i = cse_reg_info_table_first_uninitialized; i < nregs; i++)
815 cse_reg_info_table[i].timestamp = old_timestamp;
817 cse_reg_info_table_first_uninitialized = nregs;
821 /* Given REGNO, initialize the cse_reg_info entry for REGNO. */
824 get_cse_reg_info_1 (unsigned int regno)
826 /* Set TIMESTAMP field to CSE_REG_INFO_TIMESTAMP so that this
827 entry will be considered to have been initialized. */
828 cse_reg_info_table[regno].timestamp = cse_reg_info_timestamp;
830 /* Initialize the rest of the entry. */
831 cse_reg_info_table[regno].reg_tick = 1;
832 cse_reg_info_table[regno].reg_in_table = -1;
833 cse_reg_info_table[regno].subreg_ticked = -1;
834 cse_reg_info_table[regno].reg_qty = -regno - 1;
837 /* Find a cse_reg_info entry for REGNO. */
839 static inline struct cse_reg_info *
840 get_cse_reg_info (unsigned int regno)
842 struct cse_reg_info *p = &cse_reg_info_table[regno];
844 /* If this entry has not been initialized, go ahead and initialize
846 if (p->timestamp != cse_reg_info_timestamp)
847 get_cse_reg_info_1 (regno);
852 /* Clear the hash table and initialize each register with its own quantity,
853 for a new basic block. */
856 new_basic_block (void)
862 /* Invalidate cse_reg_info_table. */
863 cse_reg_info_timestamp++;
865 /* Clear out hash table state for this pass. */
866 CLEAR_HARD_REG_SET (hard_regs_in_table);
868 /* The per-quantity values used to be initialized here, but it is
869 much faster to initialize each as it is made in `make_new_qty'. */
871 for (i = 0; i < HASH_SIZE; i++)
873 struct table_elt *first;
878 struct table_elt *last = first;
882 while (last->next_same_hash != NULL)
883 last = last->next_same_hash;
885 /* Now relink this hash entire chain into
886 the free element list. */
888 last->next_same_hash = free_element_chain;
889 free_element_chain = first;
898 /* Say that register REG contains a quantity in mode MODE not in any
899 register before and initialize that quantity. */
902 make_new_qty (unsigned int reg, enum machine_mode mode)
905 struct qty_table_elem *ent;
906 struct reg_eqv_elem *eqv;
908 gcc_assert (next_qty < max_qty);
910 q = REG_QTY (reg) = next_qty++;
912 ent->first_reg = reg;
915 ent->const_rtx = ent->const_insn = NULL_RTX;
916 ent->comparison_code = UNKNOWN;
918 eqv = ®_eqv_table[reg];
919 eqv->next = eqv->prev = -1;
922 /* Make reg NEW equivalent to reg OLD.
923 OLD is not changing; NEW is. */
926 make_regs_eqv (unsigned int new_reg, unsigned int old_reg)
928 unsigned int lastr, firstr;
929 int q = REG_QTY (old_reg);
930 struct qty_table_elem *ent;
934 /* Nothing should become eqv until it has a "non-invalid" qty number. */
935 gcc_assert (REGNO_QTY_VALID_P (old_reg));
937 REG_QTY (new_reg) = q;
938 firstr = ent->first_reg;
939 lastr = ent->last_reg;
941 /* Prefer fixed hard registers to anything. Prefer pseudo regs to other
942 hard regs. Among pseudos, if NEW will live longer than any other reg
943 of the same qty, and that is beyond the current basic block,
944 make it the new canonical replacement for this qty. */
945 if (! (firstr < FIRST_PSEUDO_REGISTER && FIXED_REGNO_P (firstr))
946 /* Certain fixed registers might be of the class NO_REGS. This means
947 that not only can they not be allocated by the compiler, but
948 they cannot be used in substitutions or canonicalizations
950 && (new_reg >= FIRST_PSEUDO_REGISTER || REGNO_REG_CLASS (new_reg) != NO_REGS)
951 && ((new_reg < FIRST_PSEUDO_REGISTER && FIXED_REGNO_P (new_reg))
952 || (new_reg >= FIRST_PSEUDO_REGISTER
953 && (firstr < FIRST_PSEUDO_REGISTER
954 || (bitmap_bit_p (cse_ebb_live_out, new_reg)
955 && !bitmap_bit_p (cse_ebb_live_out, firstr))
956 || (bitmap_bit_p (cse_ebb_live_in, new_reg)
957 && !bitmap_bit_p (cse_ebb_live_in, firstr))))))
959 reg_eqv_table[firstr].prev = new_reg;
960 reg_eqv_table[new_reg].next = firstr;
961 reg_eqv_table[new_reg].prev = -1;
962 ent->first_reg = new_reg;
966 /* If NEW is a hard reg (known to be non-fixed), insert at end.
967 Otherwise, insert before any non-fixed hard regs that are at the
968 end. Registers of class NO_REGS cannot be used as an
969 equivalent for anything. */
970 while (lastr < FIRST_PSEUDO_REGISTER && reg_eqv_table[lastr].prev >= 0
971 && (REGNO_REG_CLASS (lastr) == NO_REGS || ! FIXED_REGNO_P (lastr))
972 && new_reg >= FIRST_PSEUDO_REGISTER)
973 lastr = reg_eqv_table[lastr].prev;
974 reg_eqv_table[new_reg].next = reg_eqv_table[lastr].next;
975 if (reg_eqv_table[lastr].next >= 0)
976 reg_eqv_table[reg_eqv_table[lastr].next].prev = new_reg;
978 qty_table[q].last_reg = new_reg;
979 reg_eqv_table[lastr].next = new_reg;
980 reg_eqv_table[new_reg].prev = lastr;
984 /* Remove REG from its equivalence class. */
987 delete_reg_equiv (unsigned int reg)
989 struct qty_table_elem *ent;
990 int q = REG_QTY (reg);
993 /* If invalid, do nothing. */
994 if (! REGNO_QTY_VALID_P (reg))
999 p = reg_eqv_table[reg].prev;
1000 n = reg_eqv_table[reg].next;
1003 reg_eqv_table[n].prev = p;
1007 reg_eqv_table[p].next = n;
1011 REG_QTY (reg) = -reg - 1;
1014 /* Remove any invalid expressions from the hash table
1015 that refer to any of the registers contained in expression X.
1017 Make sure that newly inserted references to those registers
1018 as subexpressions will be considered valid.
1020 mention_regs is not called when a register itself
1021 is being stored in the table.
1023 Return 1 if we have done something that may have changed the hash code
1027 mention_regs (rtx x)
1037 code = GET_CODE (x);
1040 unsigned int regno = REGNO (x);
1041 unsigned int endregno = END_REGNO (x);
1044 for (i = regno; i < endregno; i++)
1046 if (REG_IN_TABLE (i) >= 0 && REG_IN_TABLE (i) != REG_TICK (i))
1047 remove_invalid_refs (i);
1049 REG_IN_TABLE (i) = REG_TICK (i);
1050 SUBREG_TICKED (i) = -1;
1056 /* If this is a SUBREG, we don't want to discard other SUBREGs of the same
1057 pseudo if they don't use overlapping words. We handle only pseudos
1058 here for simplicity. */
1059 if (code == SUBREG && REG_P (SUBREG_REG (x))
1060 && REGNO (SUBREG_REG (x)) >= FIRST_PSEUDO_REGISTER)
1062 unsigned int i = REGNO (SUBREG_REG (x));
1064 if (REG_IN_TABLE (i) >= 0 && REG_IN_TABLE (i) != REG_TICK (i))
1066 /* If REG_IN_TABLE (i) differs from REG_TICK (i) by one, and
1067 the last store to this register really stored into this
1068 subreg, then remove the memory of this subreg.
1069 Otherwise, remove any memory of the entire register and
1070 all its subregs from the table. */
1071 if (REG_TICK (i) - REG_IN_TABLE (i) > 1
1072 || SUBREG_TICKED (i) != REGNO (SUBREG_REG (x)))
1073 remove_invalid_refs (i);
1075 remove_invalid_subreg_refs (i, SUBREG_BYTE (x), GET_MODE (x));
1078 REG_IN_TABLE (i) = REG_TICK (i);
1079 SUBREG_TICKED (i) = REGNO (SUBREG_REG (x));
1083 /* If X is a comparison or a COMPARE and either operand is a register
1084 that does not have a quantity, give it one. This is so that a later
1085 call to record_jump_equiv won't cause X to be assigned a different
1086 hash code and not found in the table after that call.
1088 It is not necessary to do this here, since rehash_using_reg can
1089 fix up the table later, but doing this here eliminates the need to
1090 call that expensive function in the most common case where the only
1091 use of the register is in the comparison. */
1093 if (code == COMPARE || COMPARISON_P (x))
1095 if (REG_P (XEXP (x, 0))
1096 && ! REGNO_QTY_VALID_P (REGNO (XEXP (x, 0))))
1097 if (insert_regs (XEXP (x, 0), NULL, 0))
1099 rehash_using_reg (XEXP (x, 0));
1103 if (REG_P (XEXP (x, 1))
1104 && ! REGNO_QTY_VALID_P (REGNO (XEXP (x, 1))))
1105 if (insert_regs (XEXP (x, 1), NULL, 0))
1107 rehash_using_reg (XEXP (x, 1));
1112 fmt = GET_RTX_FORMAT (code);
1113 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1115 changed |= mention_regs (XEXP (x, i));
1116 else if (fmt[i] == 'E')
1117 for (j = 0; j < XVECLEN (x, i); j++)
1118 changed |= mention_regs (XVECEXP (x, i, j));
1123 /* Update the register quantities for inserting X into the hash table
1124 with a value equivalent to CLASSP.
1125 (If the class does not contain a REG, it is irrelevant.)
1126 If MODIFIED is nonzero, X is a destination; it is being modified.
1127 Note that delete_reg_equiv should be called on a register
1128 before insert_regs is done on that register with MODIFIED != 0.
1130 Nonzero value means that elements of reg_qty have changed
1131 so X's hash code may be different. */
1134 insert_regs (rtx x, struct table_elt *classp, int modified)
1138 unsigned int regno = REGNO (x);
1141 /* If REGNO is in the equivalence table already but is of the
1142 wrong mode for that equivalence, don't do anything here. */
1144 qty_valid = REGNO_QTY_VALID_P (regno);
1147 struct qty_table_elem *ent = &qty_table[REG_QTY (regno)];
1149 if (ent->mode != GET_MODE (x))
1153 if (modified || ! qty_valid)
1156 for (classp = classp->first_same_value;
1158 classp = classp->next_same_value)
1159 if (REG_P (classp->exp)
1160 && GET_MODE (classp->exp) == GET_MODE (x))
1162 unsigned c_regno = REGNO (classp->exp);
1164 gcc_assert (REGNO_QTY_VALID_P (c_regno));
1166 /* Suppose that 5 is hard reg and 100 and 101 are
1169 (set (reg:si 100) (reg:si 5))
1170 (set (reg:si 5) (reg:si 100))
1171 (set (reg:di 101) (reg:di 5))
1173 We would now set REG_QTY (101) = REG_QTY (5), but the
1174 entry for 5 is in SImode. When we use this later in
1175 copy propagation, we get the register in wrong mode. */
1176 if (qty_table[REG_QTY (c_regno)].mode != GET_MODE (x))
1179 make_regs_eqv (regno, c_regno);
1183 /* Mention_regs for a SUBREG checks if REG_TICK is exactly one larger
1184 than REG_IN_TABLE to find out if there was only a single preceding
1185 invalidation - for the SUBREG - or another one, which would be
1186 for the full register. However, if we find here that REG_TICK
1187 indicates that the register is invalid, it means that it has
1188 been invalidated in a separate operation. The SUBREG might be used
1189 now (then this is a recursive call), or we might use the full REG
1190 now and a SUBREG of it later. So bump up REG_TICK so that
1191 mention_regs will do the right thing. */
1193 && REG_IN_TABLE (regno) >= 0
1194 && REG_TICK (regno) == REG_IN_TABLE (regno) + 1)
1196 make_new_qty (regno, GET_MODE (x));
1203 /* If X is a SUBREG, we will likely be inserting the inner register in the
1204 table. If that register doesn't have an assigned quantity number at
1205 this point but does later, the insertion that we will be doing now will
1206 not be accessible because its hash code will have changed. So assign
1207 a quantity number now. */
1209 else if (GET_CODE (x) == SUBREG && REG_P (SUBREG_REG (x))
1210 && ! REGNO_QTY_VALID_P (REGNO (SUBREG_REG (x))))
1212 insert_regs (SUBREG_REG (x), NULL, 0);
1217 return mention_regs (x);
1221 /* Compute upper and lower anchors for CST. Also compute the offset of CST
1222 from these anchors/bases such that *_BASE + *_OFFS = CST. Return false iff
1223 CST is equal to an anchor. */
1226 compute_const_anchors (rtx cst,
1227 HOST_WIDE_INT *lower_base, HOST_WIDE_INT *lower_offs,
1228 HOST_WIDE_INT *upper_base, HOST_WIDE_INT *upper_offs)
1230 HOST_WIDE_INT n = INTVAL (cst);
1232 *lower_base = n & ~(targetm.const_anchor - 1);
1233 if (*lower_base == n)
1237 (n + (targetm.const_anchor - 1)) & ~(targetm.const_anchor - 1);
1238 *upper_offs = n - *upper_base;
1239 *lower_offs = n - *lower_base;
1243 /* Insert the equivalence between ANCHOR and (REG + OFF) in mode MODE. */
1246 insert_const_anchor (HOST_WIDE_INT anchor, rtx reg, HOST_WIDE_INT offs,
1247 enum machine_mode mode)
1249 struct table_elt *elt;
1254 anchor_exp = GEN_INT (anchor);
1255 hash = HASH (anchor_exp, mode);
1256 elt = lookup (anchor_exp, hash, mode);
1258 elt = insert (anchor_exp, NULL, hash, mode);
1260 exp = plus_constant (reg, offs);
1261 /* REG has just been inserted and the hash codes recomputed. */
1263 hash = HASH (exp, mode);
1265 /* Use the cost of the register rather than the whole expression. When
1266 looking up constant anchors we will further offset the corresponding
1267 expression therefore it does not make sense to prefer REGs over
1268 reg-immediate additions. Prefer instead the oldest expression. Also
1269 don't prefer pseudos over hard regs so that we derive constants in
1270 argument registers from other argument registers rather than from the
1271 original pseudo that was used to synthesize the constant. */
1272 insert_with_costs (exp, elt, hash, mode, COST (reg), 1);
1275 /* The constant CST is equivalent to the register REG. Create
1276 equivalences between the two anchors of CST and the corresponding
1277 register-offset expressions using REG. */
1280 insert_const_anchors (rtx reg, rtx cst, enum machine_mode mode)
1282 HOST_WIDE_INT lower_base, lower_offs, upper_base, upper_offs;
1284 if (!compute_const_anchors (cst, &lower_base, &lower_offs,
1285 &upper_base, &upper_offs))
1288 /* Ignore anchors of value 0. Constants accessible from zero are
1290 if (lower_base != 0)
1291 insert_const_anchor (lower_base, reg, -lower_offs, mode);
1293 if (upper_base != 0)
1294 insert_const_anchor (upper_base, reg, -upper_offs, mode);
1297 /* We need to express ANCHOR_ELT->exp + OFFS. Walk the equivalence list of
1298 ANCHOR_ELT and see if offsetting any of the entries by OFFS would create a
1299 valid expression. Return the cheapest and oldest of such expressions. In
1300 *OLD, return how old the resulting expression is compared to the other
1301 equivalent expressions. */
1304 find_reg_offset_for_const (struct table_elt *anchor_elt, HOST_WIDE_INT offs,
1307 struct table_elt *elt;
1309 struct table_elt *match_elt;
1312 /* Find the cheapest and *oldest* expression to maximize the chance of
1313 reusing the same pseudo. */
1317 for (elt = anchor_elt->first_same_value, idx = 0;
1319 elt = elt->next_same_value, idx++)
1321 if (match_elt && CHEAPER (match_elt, elt))
1324 if (REG_P (elt->exp)
1325 || (GET_CODE (elt->exp) == PLUS
1326 && REG_P (XEXP (elt->exp, 0))
1327 && GET_CODE (XEXP (elt->exp, 1)) == CONST_INT))
1331 /* Ignore expressions that are no longer valid. */
1332 if (!REG_P (elt->exp) && !exp_equiv_p (elt->exp, elt->exp, 1, false))
1335 x = plus_constant (elt->exp, offs);
1337 || (GET_CODE (x) == PLUS
1338 && IN_RANGE (INTVAL (XEXP (x, 1)),
1339 -targetm.const_anchor,
1340 targetm.const_anchor - 1)))
1352 /* Try to express the constant SRC_CONST using a register+offset expression
1353 derived from a constant anchor. Return it if successful or NULL_RTX,
1357 try_const_anchors (rtx src_const, enum machine_mode mode)
1359 struct table_elt *lower_elt, *upper_elt;
1360 HOST_WIDE_INT lower_base, lower_offs, upper_base, upper_offs;
1361 rtx lower_anchor_rtx, upper_anchor_rtx;
1362 rtx lower_exp = NULL_RTX, upper_exp = NULL_RTX;
1363 unsigned lower_old, upper_old;
1365 if (!compute_const_anchors (src_const, &lower_base, &lower_offs,
1366 &upper_base, &upper_offs))
1369 lower_anchor_rtx = GEN_INT (lower_base);
1370 upper_anchor_rtx = GEN_INT (upper_base);
1371 lower_elt = lookup (lower_anchor_rtx, HASH (lower_anchor_rtx, mode), mode);
1372 upper_elt = lookup (upper_anchor_rtx, HASH (upper_anchor_rtx, mode), mode);
1375 lower_exp = find_reg_offset_for_const (lower_elt, lower_offs, &lower_old);
1377 upper_exp = find_reg_offset_for_const (upper_elt, upper_offs, &upper_old);
1384 /* Return the older expression. */
1385 return (upper_old > lower_old ? upper_exp : lower_exp);
1388 /* Look in or update the hash table. */
1390 /* Remove table element ELT from use in the table.
1391 HASH is its hash code, made using the HASH macro.
1392 It's an argument because often that is known in advance
1393 and we save much time not recomputing it. */
1396 remove_from_table (struct table_elt *elt, unsigned int hash)
1401 /* Mark this element as removed. See cse_insn. */
1402 elt->first_same_value = 0;
1404 /* Remove the table element from its equivalence class. */
1407 struct table_elt *prev = elt->prev_same_value;
1408 struct table_elt *next = elt->next_same_value;
1411 next->prev_same_value = prev;
1414 prev->next_same_value = next;
1417 struct table_elt *newfirst = next;
1420 next->first_same_value = newfirst;
1421 next = next->next_same_value;
1426 /* Remove the table element from its hash bucket. */
1429 struct table_elt *prev = elt->prev_same_hash;
1430 struct table_elt *next = elt->next_same_hash;
1433 next->prev_same_hash = prev;
1436 prev->next_same_hash = next;
1437 else if (table[hash] == elt)
1441 /* This entry is not in the proper hash bucket. This can happen
1442 when two classes were merged by `merge_equiv_classes'. Search
1443 for the hash bucket that it heads. This happens only very
1444 rarely, so the cost is acceptable. */
1445 for (hash = 0; hash < HASH_SIZE; hash++)
1446 if (table[hash] == elt)
1451 /* Remove the table element from its related-value circular chain. */
1453 if (elt->related_value != 0 && elt->related_value != elt)
1455 struct table_elt *p = elt->related_value;
1457 while (p->related_value != elt)
1458 p = p->related_value;
1459 p->related_value = elt->related_value;
1460 if (p->related_value == p)
1461 p->related_value = 0;
1464 /* Now add it to the free element chain. */
1465 elt->next_same_hash = free_element_chain;
1466 free_element_chain = elt;
1469 /* Same as above, but X is a pseudo-register. */
1472 remove_pseudo_from_table (rtx x, unsigned int hash)
1474 struct table_elt *elt;
1476 /* Because a pseudo-register can be referenced in more than one
1477 mode, we might have to remove more than one table entry. */
1478 while ((elt = lookup_for_remove (x, hash, VOIDmode)))
1479 remove_from_table (elt, hash);
1482 /* Look up X in the hash table and return its table element,
1483 or 0 if X is not in the table.
1485 MODE is the machine-mode of X, or if X is an integer constant
1486 with VOIDmode then MODE is the mode with which X will be used.
1488 Here we are satisfied to find an expression whose tree structure
1491 static struct table_elt *
1492 lookup (rtx x, unsigned int hash, enum machine_mode mode)
1494 struct table_elt *p;
1496 for (p = table[hash]; p; p = p->next_same_hash)
1497 if (mode == p->mode && ((x == p->exp && REG_P (x))
1498 || exp_equiv_p (x, p->exp, !REG_P (x), false)))
1504 /* Like `lookup' but don't care whether the table element uses invalid regs.
1505 Also ignore discrepancies in the machine mode of a register. */
1507 static struct table_elt *
1508 lookup_for_remove (rtx x, unsigned int hash, enum machine_mode mode)
1510 struct table_elt *p;
1514 unsigned int regno = REGNO (x);
1516 /* Don't check the machine mode when comparing registers;
1517 invalidating (REG:SI 0) also invalidates (REG:DF 0). */
1518 for (p = table[hash]; p; p = p->next_same_hash)
1520 && REGNO (p->exp) == regno)
1525 for (p = table[hash]; p; p = p->next_same_hash)
1527 && (x == p->exp || exp_equiv_p (x, p->exp, 0, false)))
1534 /* Look for an expression equivalent to X and with code CODE.
1535 If one is found, return that expression. */
1538 lookup_as_function (rtx x, enum rtx_code code)
1541 = lookup (x, SAFE_HASH (x, VOIDmode), GET_MODE (x));
1546 for (p = p->first_same_value; p; p = p->next_same_value)
1547 if (GET_CODE (p->exp) == code
1548 /* Make sure this is a valid entry in the table. */
1549 && exp_equiv_p (p->exp, p->exp, 1, false))
1555 /* Insert X in the hash table, assuming HASH is its hash code and
1556 CLASSP is an element of the class it should go in (or 0 if a new
1557 class should be made). COST is the code of X and reg_cost is the
1558 cost of registers in X. It is inserted at the proper position to
1559 keep the class in the order cheapest first.
1561 MODE is the machine-mode of X, or if X is an integer constant
1562 with VOIDmode then MODE is the mode with which X will be used.
1564 For elements of equal cheapness, the most recent one
1565 goes in front, except that the first element in the list
1566 remains first unless a cheaper element is added. The order of
1567 pseudo-registers does not matter, as canon_reg will be called to
1568 find the cheapest when a register is retrieved from the table.
1570 The in_memory field in the hash table element is set to 0.
1571 The caller must set it nonzero if appropriate.
1573 You should call insert_regs (X, CLASSP, MODIFY) before calling here,
1574 and if insert_regs returns a nonzero value
1575 you must then recompute its hash code before calling here.
1577 If necessary, update table showing constant values of quantities. */
1579 static struct table_elt *
1580 insert_with_costs (rtx x, struct table_elt *classp, unsigned int hash,
1581 enum machine_mode mode, int cost, int reg_cost)
1583 struct table_elt *elt;
1585 /* If X is a register and we haven't made a quantity for it,
1586 something is wrong. */
1587 gcc_assert (!REG_P (x) || REGNO_QTY_VALID_P (REGNO (x)));
1589 /* If X is a hard register, show it is being put in the table. */
1590 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
1591 add_to_hard_reg_set (&hard_regs_in_table, GET_MODE (x), REGNO (x));
1593 /* Put an element for X into the right hash bucket. */
1595 elt = free_element_chain;
1597 free_element_chain = elt->next_same_hash;
1599 elt = XNEW (struct table_elt);
1602 elt->canon_exp = NULL_RTX;
1604 elt->regcost = reg_cost;
1605 elt->next_same_value = 0;
1606 elt->prev_same_value = 0;
1607 elt->next_same_hash = table[hash];
1608 elt->prev_same_hash = 0;
1609 elt->related_value = 0;
1612 elt->is_const = (CONSTANT_P (x) || fixed_base_plus_p (x));
1615 table[hash]->prev_same_hash = elt;
1618 /* Put it into the proper value-class. */
1621 classp = classp->first_same_value;
1622 if (CHEAPER (elt, classp))
1623 /* Insert at the head of the class. */
1625 struct table_elt *p;
1626 elt->next_same_value = classp;
1627 classp->prev_same_value = elt;
1628 elt->first_same_value = elt;
1630 for (p = classp; p; p = p->next_same_value)
1631 p->first_same_value = elt;
1635 /* Insert not at head of the class. */
1636 /* Put it after the last element cheaper than X. */
1637 struct table_elt *p, *next;
1640 (next = p->next_same_value) && CHEAPER (next, elt);
1644 /* Put it after P and before NEXT. */
1645 elt->next_same_value = next;
1647 next->prev_same_value = elt;
1649 elt->prev_same_value = p;
1650 p->next_same_value = elt;
1651 elt->first_same_value = classp;
1655 elt->first_same_value = elt;
1657 /* If this is a constant being set equivalent to a register or a register
1658 being set equivalent to a constant, note the constant equivalence.
1660 If this is a constant, it cannot be equivalent to a different constant,
1661 and a constant is the only thing that can be cheaper than a register. So
1662 we know the register is the head of the class (before the constant was
1665 If this is a register that is not already known equivalent to a
1666 constant, we must check the entire class.
1668 If this is a register that is already known equivalent to an insn,
1669 update the qtys `const_insn' to show that `this_insn' is the latest
1670 insn making that quantity equivalent to the constant. */
1672 if (elt->is_const && classp && REG_P (classp->exp)
1675 int exp_q = REG_QTY (REGNO (classp->exp));
1676 struct qty_table_elem *exp_ent = &qty_table[exp_q];
1678 exp_ent->const_rtx = gen_lowpart (exp_ent->mode, x);
1679 exp_ent->const_insn = this_insn;
1684 && ! qty_table[REG_QTY (REGNO (x))].const_rtx
1687 struct table_elt *p;
1689 for (p = classp; p != 0; p = p->next_same_value)
1691 if (p->is_const && !REG_P (p->exp))
1693 int x_q = REG_QTY (REGNO (x));
1694 struct qty_table_elem *x_ent = &qty_table[x_q];
1697 = gen_lowpart (GET_MODE (x), p->exp);
1698 x_ent->const_insn = this_insn;
1705 && qty_table[REG_QTY (REGNO (x))].const_rtx
1706 && GET_MODE (x) == qty_table[REG_QTY (REGNO (x))].mode)
1707 qty_table[REG_QTY (REGNO (x))].const_insn = this_insn;
1709 /* If this is a constant with symbolic value,
1710 and it has a term with an explicit integer value,
1711 link it up with related expressions. */
1712 if (GET_CODE (x) == CONST)
1714 rtx subexp = get_related_value (x);
1716 struct table_elt *subelt, *subelt_prev;
1720 /* Get the integer-free subexpression in the hash table. */
1721 subhash = SAFE_HASH (subexp, mode);
1722 subelt = lookup (subexp, subhash, mode);
1724 subelt = insert (subexp, NULL, subhash, mode);
1725 /* Initialize SUBELT's circular chain if it has none. */
1726 if (subelt->related_value == 0)
1727 subelt->related_value = subelt;
1728 /* Find the element in the circular chain that precedes SUBELT. */
1729 subelt_prev = subelt;
1730 while (subelt_prev->related_value != subelt)
1731 subelt_prev = subelt_prev->related_value;
1732 /* Put new ELT into SUBELT's circular chain just before SUBELT.
1733 This way the element that follows SUBELT is the oldest one. */
1734 elt->related_value = subelt_prev->related_value;
1735 subelt_prev->related_value = elt;
1742 /* Wrap insert_with_costs by passing the default costs. */
1744 static struct table_elt *
1745 insert (rtx x, struct table_elt *classp, unsigned int hash,
1746 enum machine_mode mode)
1749 insert_with_costs (x, classp, hash, mode, COST (x), approx_reg_cost (x));
1753 /* Given two equivalence classes, CLASS1 and CLASS2, put all the entries from
1754 CLASS2 into CLASS1. This is done when we have reached an insn which makes
1755 the two classes equivalent.
1757 CLASS1 will be the surviving class; CLASS2 should not be used after this
1760 Any invalid entries in CLASS2 will not be copied. */
1763 merge_equiv_classes (struct table_elt *class1, struct table_elt *class2)
1765 struct table_elt *elt, *next, *new_elt;
1767 /* Ensure we start with the head of the classes. */
1768 class1 = class1->first_same_value;
1769 class2 = class2->first_same_value;
1771 /* If they were already equal, forget it. */
1772 if (class1 == class2)
1775 for (elt = class2; elt; elt = next)
1779 enum machine_mode mode = elt->mode;
1781 next = elt->next_same_value;
1783 /* Remove old entry, make a new one in CLASS1's class.
1784 Don't do this for invalid entries as we cannot find their
1785 hash code (it also isn't necessary). */
1786 if (REG_P (exp) || exp_equiv_p (exp, exp, 1, false))
1788 bool need_rehash = false;
1790 hash_arg_in_memory = 0;
1791 hash = HASH (exp, mode);
1795 need_rehash = REGNO_QTY_VALID_P (REGNO (exp));
1796 delete_reg_equiv (REGNO (exp));
1799 if (REG_P (exp) && REGNO (exp) >= FIRST_PSEUDO_REGISTER)
1800 remove_pseudo_from_table (exp, hash);
1802 remove_from_table (elt, hash);
1804 if (insert_regs (exp, class1, 0) || need_rehash)
1806 rehash_using_reg (exp);
1807 hash = HASH (exp, mode);
1809 new_elt = insert (exp, class1, hash, mode);
1810 new_elt->in_memory = hash_arg_in_memory;
1815 /* Flush the entire hash table. */
1818 flush_hash_table (void)
1821 struct table_elt *p;
1823 for (i = 0; i < HASH_SIZE; i++)
1824 for (p = table[i]; p; p = table[i])
1826 /* Note that invalidate can remove elements
1827 after P in the current hash chain. */
1829 invalidate (p->exp, VOIDmode);
1831 remove_from_table (p, i);
1835 /* Function called for each rtx to check whether true dependence exist. */
1836 struct check_dependence_data
1838 enum machine_mode mode;
1844 check_dependence (rtx *x, void *data)
1846 struct check_dependence_data *d = (struct check_dependence_data *) data;
1847 if (*x && MEM_P (*x))
1848 return canon_true_dependence (d->exp, d->mode, d->addr, *x, NULL_RTX);
1853 /* Remove from the hash table, or mark as invalid, all expressions whose
1854 values could be altered by storing in X. X is a register, a subreg, or
1855 a memory reference with nonvarying address (because, when a memory
1856 reference with a varying address is stored in, all memory references are
1857 removed by invalidate_memory so specific invalidation is superfluous).
1858 FULL_MODE, if not VOIDmode, indicates that this much should be
1859 invalidated instead of just the amount indicated by the mode of X. This
1860 is only used for bitfield stores into memory.
1862 A nonvarying address may be just a register or just a symbol reference,
1863 or it may be either of those plus a numeric offset. */
1866 invalidate (rtx x, enum machine_mode full_mode)
1869 struct table_elt *p;
1872 switch (GET_CODE (x))
1876 /* If X is a register, dependencies on its contents are recorded
1877 through the qty number mechanism. Just change the qty number of
1878 the register, mark it as invalid for expressions that refer to it,
1879 and remove it itself. */
1880 unsigned int regno = REGNO (x);
1881 unsigned int hash = HASH (x, GET_MODE (x));
1883 /* Remove REGNO from any quantity list it might be on and indicate
1884 that its value might have changed. If it is a pseudo, remove its
1885 entry from the hash table.
1887 For a hard register, we do the first two actions above for any
1888 additional hard registers corresponding to X. Then, if any of these
1889 registers are in the table, we must remove any REG entries that
1890 overlap these registers. */
1892 delete_reg_equiv (regno);
1894 SUBREG_TICKED (regno) = -1;
1896 if (regno >= FIRST_PSEUDO_REGISTER)
1897 remove_pseudo_from_table (x, hash);
1900 HOST_WIDE_INT in_table
1901 = TEST_HARD_REG_BIT (hard_regs_in_table, regno);
1902 unsigned int endregno = END_HARD_REGNO (x);
1903 unsigned int tregno, tendregno, rn;
1904 struct table_elt *p, *next;
1906 CLEAR_HARD_REG_BIT (hard_regs_in_table, regno);
1908 for (rn = regno + 1; rn < endregno; rn++)
1910 in_table |= TEST_HARD_REG_BIT (hard_regs_in_table, rn);
1911 CLEAR_HARD_REG_BIT (hard_regs_in_table, rn);
1912 delete_reg_equiv (rn);
1914 SUBREG_TICKED (rn) = -1;
1918 for (hash = 0; hash < HASH_SIZE; hash++)
1919 for (p = table[hash]; p; p = next)
1921 next = p->next_same_hash;
1924 || REGNO (p->exp) >= FIRST_PSEUDO_REGISTER)
1927 tregno = REGNO (p->exp);
1928 tendregno = END_HARD_REGNO (p->exp);
1929 if (tendregno > regno && tregno < endregno)
1930 remove_from_table (p, hash);
1937 invalidate (SUBREG_REG (x), VOIDmode);
1941 for (i = XVECLEN (x, 0) - 1; i >= 0; --i)
1942 invalidate (XVECEXP (x, 0, i), VOIDmode);
1946 /* This is part of a disjoint return value; extract the location in
1947 question ignoring the offset. */
1948 invalidate (XEXP (x, 0), VOIDmode);
1952 addr = canon_rtx (get_addr (XEXP (x, 0)));
1953 /* Calculate the canonical version of X here so that
1954 true_dependence doesn't generate new RTL for X on each call. */
1957 /* Remove all hash table elements that refer to overlapping pieces of
1959 if (full_mode == VOIDmode)
1960 full_mode = GET_MODE (x);
1962 for (i = 0; i < HASH_SIZE; i++)
1964 struct table_elt *next;
1966 for (p = table[i]; p; p = next)
1968 next = p->next_same_hash;
1971 struct check_dependence_data d;
1973 /* Just canonicalize the expression once;
1974 otherwise each time we call invalidate
1975 true_dependence will canonicalize the
1976 expression again. */
1978 p->canon_exp = canon_rtx (p->exp);
1982 if (for_each_rtx (&p->canon_exp, check_dependence, &d))
1983 remove_from_table (p, i);
1994 /* Remove all expressions that refer to register REGNO,
1995 since they are already invalid, and we are about to
1996 mark that register valid again and don't want the old
1997 expressions to reappear as valid. */
2000 remove_invalid_refs (unsigned int regno)
2003 struct table_elt *p, *next;
2005 for (i = 0; i < HASH_SIZE; i++)
2006 for (p = table[i]; p; p = next)
2008 next = p->next_same_hash;
2010 && refers_to_regno_p (regno, regno + 1, p->exp, (rtx *) 0))
2011 remove_from_table (p, i);
2015 /* Likewise for a subreg with subreg_reg REGNO, subreg_byte OFFSET,
2018 remove_invalid_subreg_refs (unsigned int regno, unsigned int offset,
2019 enum machine_mode mode)
2022 struct table_elt *p, *next;
2023 unsigned int end = offset + (GET_MODE_SIZE (mode) - 1);
2025 for (i = 0; i < HASH_SIZE; i++)
2026 for (p = table[i]; p; p = next)
2029 next = p->next_same_hash;
2032 && (GET_CODE (exp) != SUBREG
2033 || !REG_P (SUBREG_REG (exp))
2034 || REGNO (SUBREG_REG (exp)) != regno
2035 || (((SUBREG_BYTE (exp)
2036 + (GET_MODE_SIZE (GET_MODE (exp)) - 1)) >= offset)
2037 && SUBREG_BYTE (exp) <= end))
2038 && refers_to_regno_p (regno, regno + 1, p->exp, (rtx *) 0))
2039 remove_from_table (p, i);
2043 /* Recompute the hash codes of any valid entries in the hash table that
2044 reference X, if X is a register, or SUBREG_REG (X) if X is a SUBREG.
2046 This is called when we make a jump equivalence. */
2049 rehash_using_reg (rtx x)
2052 struct table_elt *p, *next;
2055 if (GET_CODE (x) == SUBREG)
2058 /* If X is not a register or if the register is known not to be in any
2059 valid entries in the table, we have no work to do. */
2062 || REG_IN_TABLE (REGNO (x)) < 0
2063 || REG_IN_TABLE (REGNO (x)) != REG_TICK (REGNO (x)))
2066 /* Scan all hash chains looking for valid entries that mention X.
2067 If we find one and it is in the wrong hash chain, move it. */
2069 for (i = 0; i < HASH_SIZE; i++)
2070 for (p = table[i]; p; p = next)
2072 next = p->next_same_hash;
2073 if (reg_mentioned_p (x, p->exp)
2074 && exp_equiv_p (p->exp, p->exp, 1, false)
2075 && i != (hash = SAFE_HASH (p->exp, p->mode)))
2077 if (p->next_same_hash)
2078 p->next_same_hash->prev_same_hash = p->prev_same_hash;
2080 if (p->prev_same_hash)
2081 p->prev_same_hash->next_same_hash = p->next_same_hash;
2083 table[i] = p->next_same_hash;
2085 p->next_same_hash = table[hash];
2086 p->prev_same_hash = 0;
2088 table[hash]->prev_same_hash = p;
2094 /* Remove from the hash table any expression that is a call-clobbered
2095 register. Also update their TICK values. */
2098 invalidate_for_call (void)
2100 unsigned int regno, endregno;
2103 struct table_elt *p, *next;
2106 /* Go through all the hard registers. For each that is clobbered in
2107 a CALL_INSN, remove the register from quantity chains and update
2108 reg_tick if defined. Also see if any of these registers is currently
2111 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
2112 if (TEST_HARD_REG_BIT (regs_invalidated_by_call, regno))
2114 delete_reg_equiv (regno);
2115 if (REG_TICK (regno) >= 0)
2118 SUBREG_TICKED (regno) = -1;
2121 in_table |= (TEST_HARD_REG_BIT (hard_regs_in_table, regno) != 0);
2124 /* In the case where we have no call-clobbered hard registers in the
2125 table, we are done. Otherwise, scan the table and remove any
2126 entry that overlaps a call-clobbered register. */
2129 for (hash = 0; hash < HASH_SIZE; hash++)
2130 for (p = table[hash]; p; p = next)
2132 next = p->next_same_hash;
2135 || REGNO (p->exp) >= FIRST_PSEUDO_REGISTER)
2138 regno = REGNO (p->exp);
2139 endregno = END_HARD_REGNO (p->exp);
2141 for (i = regno; i < endregno; i++)
2142 if (TEST_HARD_REG_BIT (regs_invalidated_by_call, i))
2144 remove_from_table (p, hash);
2150 /* Given an expression X of type CONST,
2151 and ELT which is its table entry (or 0 if it
2152 is not in the hash table),
2153 return an alternate expression for X as a register plus integer.
2154 If none can be found, return 0. */
2157 use_related_value (rtx x, struct table_elt *elt)
2159 struct table_elt *relt = 0;
2160 struct table_elt *p, *q;
2161 HOST_WIDE_INT offset;
2163 /* First, is there anything related known?
2164 If we have a table element, we can tell from that.
2165 Otherwise, must look it up. */
2167 if (elt != 0 && elt->related_value != 0)
2169 else if (elt == 0 && GET_CODE (x) == CONST)
2171 rtx subexp = get_related_value (x);
2173 relt = lookup (subexp,
2174 SAFE_HASH (subexp, GET_MODE (subexp)),
2181 /* Search all related table entries for one that has an
2182 equivalent register. */
2187 /* This loop is strange in that it is executed in two different cases.
2188 The first is when X is already in the table. Then it is searching
2189 the RELATED_VALUE list of X's class (RELT). The second case is when
2190 X is not in the table. Then RELT points to a class for the related
2193 Ensure that, whatever case we are in, that we ignore classes that have
2194 the same value as X. */
2196 if (rtx_equal_p (x, p->exp))
2199 for (q = p->first_same_value; q; q = q->next_same_value)
2206 p = p->related_value;
2208 /* We went all the way around, so there is nothing to be found.
2209 Alternatively, perhaps RELT was in the table for some other reason
2210 and it has no related values recorded. */
2211 if (p == relt || p == 0)
2218 offset = (get_integer_term (x) - get_integer_term (p->exp));
2219 /* Note: OFFSET may be 0 if P->xexp and X are related by commutativity. */
2220 return plus_constant (q->exp, offset);
2224 /* Hash a string. Just add its bytes up. */
2225 static inline unsigned
2226 hash_rtx_string (const char *ps)
2229 const unsigned char *p = (const unsigned char *) ps;
2238 /* Same as hash_rtx, but call CB on each rtx if it is not NULL.
2239 When the callback returns true, we continue with the new rtx. */
2242 hash_rtx_cb (const_rtx x, enum machine_mode mode,
2243 int *do_not_record_p, int *hash_arg_in_memory_p,
2244 bool have_reg_qty, hash_rtx_callback_function cb)
2250 enum machine_mode newmode;
2253 /* Used to turn recursion into iteration. We can't rely on GCC's
2254 tail-recursion elimination since we need to keep accumulating values
2260 /* Invoke the callback first. */
2262 && ((*cb) (x, mode, &newx, &newmode)))
2264 hash += hash_rtx_cb (newx, newmode, do_not_record_p,
2265 hash_arg_in_memory_p, have_reg_qty, cb);
2269 code = GET_CODE (x);
2274 unsigned int regno = REGNO (x);
2276 if (do_not_record_p && !reload_completed)
2278 /* On some machines, we can't record any non-fixed hard register,
2279 because extending its life will cause reload problems. We
2280 consider ap, fp, sp, gp to be fixed for this purpose.
2282 We also consider CCmode registers to be fixed for this purpose;
2283 failure to do so leads to failure to simplify 0<100 type of
2286 On all machines, we can't record any global registers.
2287 Nor should we record any register that is in a small
2288 class, as defined by TARGET_CLASS_LIKELY_SPILLED_P. */
2291 if (regno >= FIRST_PSEUDO_REGISTER)
2293 else if (x == frame_pointer_rtx
2294 || x == hard_frame_pointer_rtx
2295 || x == arg_pointer_rtx
2296 || x == stack_pointer_rtx
2297 || x == pic_offset_table_rtx)
2299 else if (global_regs[regno])
2301 else if (fixed_regs[regno])
2303 else if (GET_MODE_CLASS (GET_MODE (x)) == MODE_CC)
2305 else if (targetm.small_register_classes_for_mode_p (GET_MODE (x)))
2307 else if (targetm.class_likely_spilled_p (REGNO_REG_CLASS (regno)))
2314 *do_not_record_p = 1;
2319 hash += ((unsigned int) REG << 7);
2320 hash += (have_reg_qty ? (unsigned) REG_QTY (regno) : regno);
2324 /* We handle SUBREG of a REG specially because the underlying
2325 reg changes its hash value with every value change; we don't
2326 want to have to forget unrelated subregs when one subreg changes. */
2329 if (REG_P (SUBREG_REG (x)))
2331 hash += (((unsigned int) SUBREG << 7)
2332 + REGNO (SUBREG_REG (x))
2333 + (SUBREG_BYTE (x) / UNITS_PER_WORD));
2340 hash += (((unsigned int) CONST_INT << 7) + (unsigned int) mode
2341 + (unsigned int) INTVAL (x));
2345 /* This is like the general case, except that it only counts
2346 the integers representing the constant. */
2347 hash += (unsigned int) code + (unsigned int) GET_MODE (x);
2348 if (GET_MODE (x) != VOIDmode)
2349 hash += real_hash (CONST_DOUBLE_REAL_VALUE (x));
2351 hash += ((unsigned int) CONST_DOUBLE_LOW (x)
2352 + (unsigned int) CONST_DOUBLE_HIGH (x));
2356 hash += (unsigned int) code + (unsigned int) GET_MODE (x);
2357 hash += fixed_hash (CONST_FIXED_VALUE (x));
2365 units = CONST_VECTOR_NUNITS (x);
2367 for (i = 0; i < units; ++i)
2369 elt = CONST_VECTOR_ELT (x, i);
2370 hash += hash_rtx_cb (elt, GET_MODE (elt),
2371 do_not_record_p, hash_arg_in_memory_p,
2378 /* Assume there is only one rtx object for any given label. */
2380 /* We don't hash on the address of the CODE_LABEL to avoid bootstrap
2381 differences and differences between each stage's debugging dumps. */
2382 hash += (((unsigned int) LABEL_REF << 7)
2383 + CODE_LABEL_NUMBER (XEXP (x, 0)));
2388 /* Don't hash on the symbol's address to avoid bootstrap differences.
2389 Different hash values may cause expressions to be recorded in
2390 different orders and thus different registers to be used in the
2391 final assembler. This also avoids differences in the dump files
2392 between various stages. */
2394 const unsigned char *p = (const unsigned char *) XSTR (x, 0);
2397 h += (h << 7) + *p++; /* ??? revisit */
2399 hash += ((unsigned int) SYMBOL_REF << 7) + h;
2404 /* We don't record if marked volatile or if BLKmode since we don't
2405 know the size of the move. */
2406 if (do_not_record_p && (MEM_VOLATILE_P (x) || GET_MODE (x) == BLKmode))
2408 *do_not_record_p = 1;
2411 if (hash_arg_in_memory_p && !MEM_READONLY_P (x))
2412 *hash_arg_in_memory_p = 1;
2414 /* Now that we have already found this special case,
2415 might as well speed it up as much as possible. */
2416 hash += (unsigned) MEM;
2421 /* A USE that mentions non-volatile memory needs special
2422 handling since the MEM may be BLKmode which normally
2423 prevents an entry from being made. Pure calls are
2424 marked by a USE which mentions BLKmode memory.
2425 See calls.c:emit_call_1. */
2426 if (MEM_P (XEXP (x, 0))
2427 && ! MEM_VOLATILE_P (XEXP (x, 0)))
2429 hash += (unsigned) USE;
2432 if (hash_arg_in_memory_p && !MEM_READONLY_P (x))
2433 *hash_arg_in_memory_p = 1;
2435 /* Now that we have already found this special case,
2436 might as well speed it up as much as possible. */
2437 hash += (unsigned) MEM;
2452 case UNSPEC_VOLATILE:
2453 if (do_not_record_p) {
2454 *do_not_record_p = 1;
2462 if (do_not_record_p && MEM_VOLATILE_P (x))
2464 *do_not_record_p = 1;
2469 /* We don't want to take the filename and line into account. */
2470 hash += (unsigned) code + (unsigned) GET_MODE (x)
2471 + hash_rtx_string (ASM_OPERANDS_TEMPLATE (x))
2472 + hash_rtx_string (ASM_OPERANDS_OUTPUT_CONSTRAINT (x))
2473 + (unsigned) ASM_OPERANDS_OUTPUT_IDX (x);
2475 if (ASM_OPERANDS_INPUT_LENGTH (x))
2477 for (i = 1; i < ASM_OPERANDS_INPUT_LENGTH (x); i++)
2479 hash += (hash_rtx_cb (ASM_OPERANDS_INPUT (x, i),
2480 GET_MODE (ASM_OPERANDS_INPUT (x, i)),
2481 do_not_record_p, hash_arg_in_memory_p,
2484 (ASM_OPERANDS_INPUT_CONSTRAINT (x, i)));
2487 hash += hash_rtx_string (ASM_OPERANDS_INPUT_CONSTRAINT (x, 0));
2488 x = ASM_OPERANDS_INPUT (x, 0);
2489 mode = GET_MODE (x);
2501 i = GET_RTX_LENGTH (code) - 1;
2502 hash += (unsigned) code + (unsigned) GET_MODE (x);
2503 fmt = GET_RTX_FORMAT (code);
2509 /* If we are about to do the last recursive call
2510 needed at this level, change it into iteration.
2511 This function is called enough to be worth it. */
2518 hash += hash_rtx_cb (XEXP (x, i), VOIDmode, do_not_record_p,
2519 hash_arg_in_memory_p,
2524 for (j = 0; j < XVECLEN (x, i); j++)
2525 hash += hash_rtx_cb (XVECEXP (x, i, j), VOIDmode, do_not_record_p,
2526 hash_arg_in_memory_p,
2531 hash += hash_rtx_string (XSTR (x, i));
2535 hash += (unsigned int) XINT (x, i);
2550 /* Hash an rtx. We are careful to make sure the value is never negative.
2551 Equivalent registers hash identically.
2552 MODE is used in hashing for CONST_INTs only;
2553 otherwise the mode of X is used.
2555 Store 1 in DO_NOT_RECORD_P if any subexpression is volatile.
2557 If HASH_ARG_IN_MEMORY_P is not NULL, store 1 in it if X contains
2558 a MEM rtx which does not have the RTX_UNCHANGING_P bit set.
2560 Note that cse_insn knows that the hash code of a MEM expression
2561 is just (int) MEM plus the hash code of the address. */
2564 hash_rtx (const_rtx x, enum machine_mode mode, int *do_not_record_p,
2565 int *hash_arg_in_memory_p, bool have_reg_qty)
2567 return hash_rtx_cb (x, mode, do_not_record_p,
2568 hash_arg_in_memory_p, have_reg_qty, NULL);
2571 /* Hash an rtx X for cse via hash_rtx.
2572 Stores 1 in do_not_record if any subexpression is volatile.
2573 Stores 1 in hash_arg_in_memory if X contains a mem rtx which
2574 does not have the RTX_UNCHANGING_P bit set. */
2576 static inline unsigned
2577 canon_hash (rtx x, enum machine_mode mode)
2579 return hash_rtx (x, mode, &do_not_record, &hash_arg_in_memory, true);
2582 /* Like canon_hash but with no side effects, i.e. do_not_record
2583 and hash_arg_in_memory are not changed. */
2585 static inline unsigned
2586 safe_hash (rtx x, enum machine_mode mode)
2588 int dummy_do_not_record;
2589 return hash_rtx (x, mode, &dummy_do_not_record, NULL, true);
2592 /* Return 1 iff X and Y would canonicalize into the same thing,
2593 without actually constructing the canonicalization of either one.
2594 If VALIDATE is nonzero,
2595 we assume X is an expression being processed from the rtl
2596 and Y was found in the hash table. We check register refs
2597 in Y for being marked as valid.
2599 If FOR_GCSE is true, we compare X and Y for equivalence for GCSE. */
2602 exp_equiv_p (const_rtx x, const_rtx y, int validate, bool for_gcse)
2608 /* Note: it is incorrect to assume an expression is equivalent to itself
2609 if VALIDATE is nonzero. */
2610 if (x == y && !validate)
2613 if (x == 0 || y == 0)
2616 code = GET_CODE (x);
2617 if (code != GET_CODE (y))
2620 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */
2621 if (GET_MODE (x) != GET_MODE (y))
2624 /* MEMs refering to different address space are not equivalent. */
2625 if (code == MEM && MEM_ADDR_SPACE (x) != MEM_ADDR_SPACE (y))
2638 return XEXP (x, 0) == XEXP (y, 0);
2641 return XSTR (x, 0) == XSTR (y, 0);
2645 return REGNO (x) == REGNO (y);
2648 unsigned int regno = REGNO (y);
2650 unsigned int endregno = END_REGNO (y);
2652 /* If the quantities are not the same, the expressions are not
2653 equivalent. If there are and we are not to validate, they
2654 are equivalent. Otherwise, ensure all regs are up-to-date. */
2656 if (REG_QTY (REGNO (x)) != REG_QTY (regno))
2662 for (i = regno; i < endregno; i++)
2663 if (REG_IN_TABLE (i) != REG_TICK (i))
2672 /* A volatile mem should not be considered equivalent to any
2674 if (MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y))
2677 /* Can't merge two expressions in different alias sets, since we
2678 can decide that the expression is transparent in a block when
2679 it isn't, due to it being set with the different alias set.
2681 Also, can't merge two expressions with different MEM_ATTRS.
2682 They could e.g. be two different entities allocated into the
2683 same space on the stack (see e.g. PR25130). In that case, the
2684 MEM addresses can be the same, even though the two MEMs are
2685 absolutely not equivalent.
2687 But because really all MEM attributes should be the same for
2688 equivalent MEMs, we just use the invariant that MEMs that have
2689 the same attributes share the same mem_attrs data structure. */
2690 if (MEM_ATTRS (x) != MEM_ATTRS (y))
2695 /* For commutative operations, check both orders. */
2703 return ((exp_equiv_p (XEXP (x, 0), XEXP (y, 0),
2705 && exp_equiv_p (XEXP (x, 1), XEXP (y, 1),
2706 validate, for_gcse))
2707 || (exp_equiv_p (XEXP (x, 0), XEXP (y, 1),
2709 && exp_equiv_p (XEXP (x, 1), XEXP (y, 0),
2710 validate, for_gcse)));
2713 /* We don't use the generic code below because we want to
2714 disregard filename and line numbers. */
2716 /* A volatile asm isn't equivalent to any other. */
2717 if (MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y))
2720 if (GET_MODE (x) != GET_MODE (y)
2721 || strcmp (ASM_OPERANDS_TEMPLATE (x), ASM_OPERANDS_TEMPLATE (y))
2722 || strcmp (ASM_OPERANDS_OUTPUT_CONSTRAINT (x),
2723 ASM_OPERANDS_OUTPUT_CONSTRAINT (y))
2724 || ASM_OPERANDS_OUTPUT_IDX (x) != ASM_OPERANDS_OUTPUT_IDX (y)
2725 || ASM_OPERANDS_INPUT_LENGTH (x) != ASM_OPERANDS_INPUT_LENGTH (y))
2728 if (ASM_OPERANDS_INPUT_LENGTH (x))
2730 for (i = ASM_OPERANDS_INPUT_LENGTH (x) - 1; i >= 0; i--)
2731 if (! exp_equiv_p (ASM_OPERANDS_INPUT (x, i),
2732 ASM_OPERANDS_INPUT (y, i),
2734 || strcmp (ASM_OPERANDS_INPUT_CONSTRAINT (x, i),
2735 ASM_OPERANDS_INPUT_CONSTRAINT (y, i)))
2745 /* Compare the elements. If any pair of corresponding elements
2746 fail to match, return 0 for the whole thing. */
2748 fmt = GET_RTX_FORMAT (code);
2749 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2754 if (! exp_equiv_p (XEXP (x, i), XEXP (y, i),
2755 validate, for_gcse))
2760 if (XVECLEN (x, i) != XVECLEN (y, i))
2762 for (j = 0; j < XVECLEN (x, i); j++)
2763 if (! exp_equiv_p (XVECEXP (x, i, j), XVECEXP (y, i, j),
2764 validate, for_gcse))
2769 if (strcmp (XSTR (x, i), XSTR (y, i)))
2774 if (XINT (x, i) != XINT (y, i))
2779 if (XWINT (x, i) != XWINT (y, i))
2795 /* Subroutine of canon_reg. Pass *XLOC through canon_reg, and validate
2796 the result if necessary. INSN is as for canon_reg. */
2799 validate_canon_reg (rtx *xloc, rtx insn)
2803 rtx new_rtx = canon_reg (*xloc, insn);
2805 /* If replacing pseudo with hard reg or vice versa, ensure the
2806 insn remains valid. Likewise if the insn has MATCH_DUPs. */
2807 gcc_assert (insn && new_rtx);
2808 validate_change (insn, xloc, new_rtx, 1);
2812 /* Canonicalize an expression:
2813 replace each register reference inside it
2814 with the "oldest" equivalent register.
2816 If INSN is nonzero validate_change is used to ensure that INSN remains valid
2817 after we make our substitution. The calls are made with IN_GROUP nonzero
2818 so apply_change_group must be called upon the outermost return from this
2819 function (unless INSN is zero). The result of apply_change_group can
2820 generally be discarded since the changes we are making are optional. */
2823 canon_reg (rtx x, rtx insn)
2832 code = GET_CODE (x);
2852 struct qty_table_elem *ent;
2854 /* Never replace a hard reg, because hard regs can appear
2855 in more than one machine mode, and we must preserve the mode
2856 of each occurrence. Also, some hard regs appear in
2857 MEMs that are shared and mustn't be altered. Don't try to
2858 replace any reg that maps to a reg of class NO_REGS. */
2859 if (REGNO (x) < FIRST_PSEUDO_REGISTER
2860 || ! REGNO_QTY_VALID_P (REGNO (x)))
2863 q = REG_QTY (REGNO (x));
2864 ent = &qty_table[q];
2865 first = ent->first_reg;
2866 return (first >= FIRST_PSEUDO_REGISTER ? regno_reg_rtx[first]
2867 : REGNO_REG_CLASS (first) == NO_REGS ? x
2868 : gen_rtx_REG (ent->mode, first));
2875 fmt = GET_RTX_FORMAT (code);
2876 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2881 validate_canon_reg (&XEXP (x, i), insn);
2882 else if (fmt[i] == 'E')
2883 for (j = 0; j < XVECLEN (x, i); j++)
2884 validate_canon_reg (&XVECEXP (x, i, j), insn);
2890 /* Given an operation (CODE, *PARG1, *PARG2), where code is a comparison
2891 operation (EQ, NE, GT, etc.), follow it back through the hash table and
2892 what values are being compared.
2894 *PARG1 and *PARG2 are updated to contain the rtx representing the values
2895 actually being compared. For example, if *PARG1 was (cc0) and *PARG2
2896 was (const_int 0), *PARG1 and *PARG2 will be set to the objects that were
2897 compared to produce cc0.
2899 The return value is the comparison operator and is either the code of
2900 A or the code corresponding to the inverse of the comparison. */
2902 static enum rtx_code
2903 find_comparison_args (enum rtx_code code, rtx *parg1, rtx *parg2,
2904 enum machine_mode *pmode1, enum machine_mode *pmode2)
2908 arg1 = *parg1, arg2 = *parg2;
2910 /* If ARG2 is const0_rtx, see what ARG1 is equivalent to. */
2912 while (arg2 == CONST0_RTX (GET_MODE (arg1)))
2914 /* Set nonzero when we find something of interest. */
2916 int reverse_code = 0;
2917 struct table_elt *p = 0;
2919 /* If arg1 is a COMPARE, extract the comparison arguments from it.
2920 On machines with CC0, this is the only case that can occur, since
2921 fold_rtx will return the COMPARE or item being compared with zero
2924 if (GET_CODE (arg1) == COMPARE && arg2 == const0_rtx)
2927 /* If ARG1 is a comparison operator and CODE is testing for
2928 STORE_FLAG_VALUE, get the inner arguments. */
2930 else if (COMPARISON_P (arg1))
2932 #ifdef FLOAT_STORE_FLAG_VALUE
2933 REAL_VALUE_TYPE fsfv;
2937 || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_INT
2938 && code == LT && STORE_FLAG_VALUE == -1)
2939 #ifdef FLOAT_STORE_FLAG_VALUE
2940 || (SCALAR_FLOAT_MODE_P (GET_MODE (arg1))
2941 && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)),
2942 REAL_VALUE_NEGATIVE (fsfv)))
2947 || (GET_MODE_CLASS (GET_MODE (arg1)) == MODE_INT
2948 && code == GE && STORE_FLAG_VALUE == -1)
2949 #ifdef FLOAT_STORE_FLAG_VALUE
2950 || (SCALAR_FLOAT_MODE_P (GET_MODE (arg1))
2951 && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)),
2952 REAL_VALUE_NEGATIVE (fsfv)))
2955 x = arg1, reverse_code = 1;
2958 /* ??? We could also check for
2960 (ne (and (eq (...) (const_int 1))) (const_int 0))
2962 and related forms, but let's wait until we see them occurring. */
2965 /* Look up ARG1 in the hash table and see if it has an equivalence
2966 that lets us see what is being compared. */
2967 p = lookup (arg1, SAFE_HASH (arg1, GET_MODE (arg1)), GET_MODE (arg1));
2970 p = p->first_same_value;
2972 /* If what we compare is already known to be constant, that is as
2974 We need to break the loop in this case, because otherwise we
2975 can have an infinite loop when looking at a reg that is known
2976 to be a constant which is the same as a comparison of a reg
2977 against zero which appears later in the insn stream, which in
2978 turn is constant and the same as the comparison of the first reg
2984 for (; p; p = p->next_same_value)
2986 enum machine_mode inner_mode = GET_MODE (p->exp);
2987 #ifdef FLOAT_STORE_FLAG_VALUE
2988 REAL_VALUE_TYPE fsfv;
2991 /* If the entry isn't valid, skip it. */
2992 if (! exp_equiv_p (p->exp, p->exp, 1, false))
2995 /* If it's the same comparison we're already looking at, skip it. */
2996 if (COMPARISON_P (p->exp)
2997 && XEXP (p->exp, 0) == arg1
2998 && XEXP (p->exp, 1) == arg2)
3001 if (GET_CODE (p->exp) == COMPARE
3002 /* Another possibility is that this machine has a compare insn
3003 that includes the comparison code. In that case, ARG1 would
3004 be equivalent to a comparison operation that would set ARG1 to
3005 either STORE_FLAG_VALUE or zero. If this is an NE operation,
3006 ORIG_CODE is the actual comparison being done; if it is an EQ,
3007 we must reverse ORIG_CODE. On machine with a negative value
3008 for STORE_FLAG_VALUE, also look at LT and GE operations. */
3011 && val_signbit_known_set_p (inner_mode,
3013 #ifdef FLOAT_STORE_FLAG_VALUE
3015 && SCALAR_FLOAT_MODE_P (inner_mode)
3016 && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)),
3017 REAL_VALUE_NEGATIVE (fsfv)))
3020 && COMPARISON_P (p->exp)))
3025 else if ((code == EQ
3027 && val_signbit_known_set_p (inner_mode,
3029 #ifdef FLOAT_STORE_FLAG_VALUE
3031 && SCALAR_FLOAT_MODE_P (inner_mode)
3032 && (fsfv = FLOAT_STORE_FLAG_VALUE (GET_MODE (arg1)),
3033 REAL_VALUE_NEGATIVE (fsfv)))
3036 && COMPARISON_P (p->exp))
3043 /* If this non-trapping address, e.g. fp + constant, the
3044 equivalent is a better operand since it may let us predict
3045 the value of the comparison. */
3046 else if (!rtx_addr_can_trap_p (p->exp))
3053 /* If we didn't find a useful equivalence for ARG1, we are done.
3054 Otherwise, set up for the next iteration. */
3058 /* If we need to reverse the comparison, make sure that that is
3059 possible -- we can't necessarily infer the value of GE from LT
3060 with floating-point operands. */
3063 enum rtx_code reversed = reversed_comparison_code (x, NULL_RTX);
3064 if (reversed == UNKNOWN)
3069 else if (COMPARISON_P (x))
3070 code = GET_CODE (x);
3071 arg1 = XEXP (x, 0), arg2 = XEXP (x, 1);
3074 /* Return our results. Return the modes from before fold_rtx
3075 because fold_rtx might produce const_int, and then it's too late. */
3076 *pmode1 = GET_MODE (arg1), *pmode2 = GET_MODE (arg2);
3077 *parg1 = fold_rtx (arg1, 0), *parg2 = fold_rtx (arg2, 0);
3082 /* If X is a nontrivial arithmetic operation on an argument for which
3083 a constant value can be determined, return the result of operating
3084 on that value, as a constant. Otherwise, return X, possibly with
3085 one or more operands changed to a forward-propagated constant.
3087 If X is a register whose contents are known, we do NOT return
3088 those contents here; equiv_constant is called to perform that task.
3089 For SUBREGs and MEMs, we do that both here and in equiv_constant.
3091 INSN is the insn that we may be modifying. If it is 0, make a copy
3092 of X before modifying it. */
3095 fold_rtx (rtx x, rtx insn)
3098 enum machine_mode mode;
3104 /* Operands of X. */
3108 /* Constant equivalents of first three operands of X;
3109 0 when no such equivalent is known. */
3114 /* The mode of the first operand of X. We need this for sign and zero
3116 enum machine_mode mode_arg0;
3121 /* Try to perform some initial simplifications on X. */
3122 code = GET_CODE (x);
3127 if ((new_rtx = equiv_constant (x)) != NULL_RTX)
3140 /* No use simplifying an EXPR_LIST
3141 since they are used only for lists of args
3142 in a function call's REG_EQUAL note. */
3148 return prev_insn_cc0;
3154 for (i = ASM_OPERANDS_INPUT_LENGTH (x) - 1; i >= 0; i--)
3155 validate_change (insn, &ASM_OPERANDS_INPUT (x, i),
3156 fold_rtx (ASM_OPERANDS_INPUT (x, i), insn), 0);
3160 #ifdef NO_FUNCTION_CSE
3162 if (CONSTANT_P (XEXP (XEXP (x, 0), 0)))
3167 /* Anything else goes through the loop below. */
3172 mode = GET_MODE (x);
3176 mode_arg0 = VOIDmode;
3178 /* Try folding our operands.
3179 Then see which ones have constant values known. */
3181 fmt = GET_RTX_FORMAT (code);
3182 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3185 rtx folded_arg = XEXP (x, i), const_arg;
3186 enum machine_mode mode_arg = GET_MODE (folded_arg);
3188 switch (GET_CODE (folded_arg))
3193 const_arg = equiv_constant (folded_arg);
3203 const_arg = folded_arg;
3208 folded_arg = prev_insn_cc0;
3209 mode_arg = prev_insn_cc0_mode;
3210 const_arg = equiv_constant (folded_arg);
3215 folded_arg = fold_rtx (folded_arg, insn);
3216 const_arg = equiv_constant (folded_arg);
3220 /* For the first three operands, see if the operand
3221 is constant or equivalent to a constant. */
3225 folded_arg0 = folded_arg;
3226 const_arg0 = const_arg;
3227 mode_arg0 = mode_arg;
3230 folded_arg1 = folded_arg;
3231 const_arg1 = const_arg;
3234 const_arg2 = const_arg;
3238 /* Pick the least expensive of the argument and an equivalent constant
3241 && const_arg != folded_arg
3242 && COST_IN (const_arg, code, i) <= COST_IN (folded_arg, code, i)
3244 /* It's not safe to substitute the operand of a conversion
3245 operator with a constant, as the conversion's identity
3246 depends upon the mode of its operand. This optimization
3247 is handled by the call to simplify_unary_operation. */
3248 && (GET_RTX_CLASS (code) != RTX_UNARY
3249 || GET_MODE (const_arg) == mode_arg0
3250 || (code != ZERO_EXTEND
3251 && code != SIGN_EXTEND
3253 && code != FLOAT_TRUNCATE
3254 && code != FLOAT_EXTEND
3257 && code != UNSIGNED_FLOAT
3258 && code != UNSIGNED_FIX)))
3259 folded_arg = const_arg;
3261 if (folded_arg == XEXP (x, i))
3264 if (insn == NULL_RTX && !changed)
3267 validate_unshare_change (insn, &XEXP (x, i), folded_arg, 1);
3272 /* Canonicalize X if necessary, and keep const_argN and folded_argN
3273 consistent with the order in X. */
3274 if (canonicalize_change_group (insn, x))
3277 tem = const_arg0, const_arg0 = const_arg1, const_arg1 = tem;
3278 tem = folded_arg0, folded_arg0 = folded_arg1, folded_arg1 = tem;
3281 apply_change_group ();
3284 /* If X is an arithmetic operation, see if we can simplify it. */
3286 switch (GET_RTX_CLASS (code))
3290 /* We can't simplify extension ops unless we know the
3292 if ((code == ZERO_EXTEND || code == SIGN_EXTEND)
3293 && mode_arg0 == VOIDmode)
3296 new_rtx = simplify_unary_operation (code, mode,
3297 const_arg0 ? const_arg0 : folded_arg0,
3303 case RTX_COMM_COMPARE:
3304 /* See what items are actually being compared and set FOLDED_ARG[01]
3305 to those values and CODE to the actual comparison code. If any are
3306 constant, set CONST_ARG0 and CONST_ARG1 appropriately. We needn't
3307 do anything if both operands are already known to be constant. */
3309 /* ??? Vector mode comparisons are not supported yet. */
3310 if (VECTOR_MODE_P (mode))
3313 if (const_arg0 == 0 || const_arg1 == 0)
3315 struct table_elt *p0, *p1;
3316 rtx true_rtx, false_rtx;
3317 enum machine_mode mode_arg1;
3319 if (SCALAR_FLOAT_MODE_P (mode))
3321 #ifdef FLOAT_STORE_FLAG_VALUE
3322 true_rtx = (CONST_DOUBLE_FROM_REAL_VALUE
3323 (FLOAT_STORE_FLAG_VALUE (mode), mode));
3325 true_rtx = NULL_RTX;
3327 false_rtx = CONST0_RTX (mode);
3331 true_rtx = const_true_rtx;
3332 false_rtx = const0_rtx;
3335 code = find_comparison_args (code, &folded_arg0, &folded_arg1,
3336 &mode_arg0, &mode_arg1);
3338 /* If the mode is VOIDmode or a MODE_CC mode, we don't know
3339 what kinds of things are being compared, so we can't do
3340 anything with this comparison. */
3342 if (mode_arg0 == VOIDmode || GET_MODE_CLASS (mode_arg0) == MODE_CC)
3345 const_arg0 = equiv_constant (folded_arg0);
3346 const_arg1 = equiv_constant (folded_arg1);
3348 /* If we do not now have two constants being compared, see
3349 if we can nevertheless deduce some things about the
3351 if (const_arg0 == 0 || const_arg1 == 0)
3353 if (const_arg1 != NULL)
3355 rtx cheapest_simplification;
3358 struct table_elt *p;
3360 /* See if we can find an equivalent of folded_arg0
3361 that gets us a cheaper expression, possibly a
3362 constant through simplifications. */
3363 p = lookup (folded_arg0, SAFE_HASH (folded_arg0, mode_arg0),
3368 cheapest_simplification = x;
3369 cheapest_cost = COST (x);
3371 for (p = p->first_same_value; p != NULL; p = p->next_same_value)
3375 /* If the entry isn't valid, skip it. */
3376 if (! exp_equiv_p (p->exp, p->exp, 1, false))
3379 /* Try to simplify using this equivalence. */
3381 = simplify_relational_operation (code, mode,
3386 if (simp_result == NULL)
3389 cost = COST (simp_result);
3390 if (cost < cheapest_cost)
3392 cheapest_cost = cost;
3393 cheapest_simplification = simp_result;
3397 /* If we have a cheaper expression now, use that
3398 and try folding it further, from the top. */
3399 if (cheapest_simplification != x)
3400 return fold_rtx (copy_rtx (cheapest_simplification),
3405 /* See if the two operands are the same. */
3407 if ((REG_P (folded_arg0)
3408 && REG_P (folded_arg1)
3409 && (REG_QTY (REGNO (folded_arg0))
3410 == REG_QTY (REGNO (folded_arg1))))
3411 || ((p0 = lookup (folded_arg0,
3412 SAFE_HASH (folded_arg0, mode_arg0),
3414 && (p1 = lookup (folded_arg1,
3415 SAFE_HASH (folded_arg1, mode_arg0),
3417 && p0->first_same_value == p1->first_same_value))
3418 folded_arg1 = folded_arg0;
3420 /* If FOLDED_ARG0 is a register, see if the comparison we are
3421 doing now is either the same as we did before or the reverse
3422 (we only check the reverse if not floating-point). */
3423 else if (REG_P (folded_arg0))
3425 int qty = REG_QTY (REGNO (folded_arg0));
3427 if (REGNO_QTY_VALID_P (REGNO (folded_arg0)))
3429 struct qty_table_elem *ent = &qty_table[qty];
3431 if ((comparison_dominates_p (ent->comparison_code, code)
3432 || (! FLOAT_MODE_P (mode_arg0)
3433 && comparison_dominates_p (ent->comparison_code,
3434 reverse_condition (code))))
3435 && (rtx_equal_p (ent->comparison_const, folded_arg1)
3437 && rtx_equal_p (ent->comparison_const,
3439 || (REG_P (folded_arg1)
3440 && (REG_QTY (REGNO (folded_arg1)) == ent->comparison_qty))))
3442 if (comparison_dominates_p (ent->comparison_code, code))
3457 /* If we are comparing against zero, see if the first operand is
3458 equivalent to an IOR with a constant. If so, we may be able to
3459 determine the result of this comparison. */
3460 if (const_arg1 == const0_rtx && !const_arg0)
3462 rtx y = lookup_as_function (folded_arg0, IOR);
3466 && (inner_const = equiv_constant (XEXP (y, 1))) != 0
3467 && CONST_INT_P (inner_const)
3468 && INTVAL (inner_const) != 0)
3469 folded_arg0 = gen_rtx_IOR (mode_arg0, XEXP (y, 0), inner_const);
3473 rtx op0 = const_arg0 ? const_arg0 : folded_arg0;
3474 rtx op1 = const_arg1 ? const_arg1 : folded_arg1;
3475 new_rtx = simplify_relational_operation (code, mode, mode_arg0, op0, op1);
3480 case RTX_COMM_ARITH:
3484 /* If the second operand is a LABEL_REF, see if the first is a MINUS
3485 with that LABEL_REF as its second operand. If so, the result is
3486 the first operand of that MINUS. This handles switches with an
3487 ADDR_DIFF_VEC table. */
3488 if (const_arg1 && GET_CODE (const_arg1) == LABEL_REF)
3491 = GET_CODE (folded_arg0) == MINUS ? folded_arg0
3492 : lookup_as_function (folded_arg0, MINUS);
3494 if (y != 0 && GET_CODE (XEXP (y, 1)) == LABEL_REF
3495 && XEXP (XEXP (y, 1), 0) == XEXP (const_arg1, 0))
3498 /* Now try for a CONST of a MINUS like the above. */
3499 if ((y = (GET_CODE (folded_arg0) == CONST ? folded_arg0
3500 : lookup_as_function (folded_arg0, CONST))) != 0
3501 && GET_CODE (XEXP (y, 0)) == MINUS
3502 && GET_CODE (XEXP (XEXP (y, 0), 1)) == LABEL_REF
3503 && XEXP (XEXP (XEXP (y, 0), 1), 0) == XEXP (const_arg1, 0))
3504 return XEXP (XEXP (y, 0), 0);
3507 /* Likewise if the operands are in the other order. */
3508 if (const_arg0 && GET_CODE (const_arg0) == LABEL_REF)
3511 = GET_CODE (folded_arg1) == MINUS ? folded_arg1
3512 : lookup_as_function (folded_arg1, MINUS);
3514 if (y != 0 && GET_CODE (XEXP (y, 1)) == LABEL_REF
3515 && XEXP (XEXP (y, 1), 0) == XEXP (const_arg0, 0))
3518 /* Now try for a CONST of a MINUS like the above. */
3519 if ((y = (GET_CODE (folded_arg1) == CONST ? folded_arg1
3520 : lookup_as_function (folded_arg1, CONST))) != 0
3521 && GET_CODE (XEXP (y, 0)) == MINUS
3522 && GET_CODE (XEXP (XEXP (y, 0), 1)) == LABEL_REF
3523 && XEXP (XEXP (XEXP (y, 0), 1), 0) == XEXP (const_arg0, 0))
3524 return XEXP (XEXP (y, 0), 0);
3527 /* If second operand is a register equivalent to a negative
3528 CONST_INT, see if we can find a register equivalent to the
3529 positive constant. Make a MINUS if so. Don't do this for
3530 a non-negative constant since we might then alternate between
3531 choosing positive and negative constants. Having the positive
3532 constant previously-used is the more common case. Be sure
3533 the resulting constant is non-negative; if const_arg1 were
3534 the smallest negative number this would overflow: depending
3535 on the mode, this would either just be the same value (and
3536 hence not save anything) or be incorrect. */
3537 if (const_arg1 != 0 && CONST_INT_P (const_arg1)
3538 && INTVAL (const_arg1) < 0
3539 /* This used to test
3541 -INTVAL (const_arg1) >= 0