d3a3e0277b408b3262bda9c15227b86324b5920f
[platform/upstream/gcc.git] / gcc / rtlanal.c
1 /* Analyze RTL for GNU compiler.
2    Copyright (C) 1987-2014 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3.  If not see
18 <http://www.gnu.org/licenses/>.  */
19
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "diagnostic-core.h"
26 #include "hard-reg-set.h"
27 #include "rtl.h"
28 #include "insn-config.h"
29 #include "recog.h"
30 #include "target.h"
31 #include "output.h"
32 #include "tm_p.h"
33 #include "flags.h"
34 #include "regs.h"
35 #include "function.h"
36 #include "df.h"
37 #include "tree.h"
38 #include "emit-rtl.h"  /* FIXME: Can go away once crtl is moved to rtl.h.  */
39 #include "addresses.h"
40 #include "rtl-iter.h"
41
42 /* Forward declarations */
43 static void set_of_1 (rtx, const_rtx, void *);
44 static bool covers_regno_p (const_rtx, unsigned int);
45 static bool covers_regno_no_parallel_p (const_rtx, unsigned int);
46 static int computed_jump_p_1 (const_rtx);
47 static void parms_set (rtx, const_rtx, void *);
48
49 static unsigned HOST_WIDE_INT cached_nonzero_bits (const_rtx, enum machine_mode,
50                                                    const_rtx, enum machine_mode,
51                                                    unsigned HOST_WIDE_INT);
52 static unsigned HOST_WIDE_INT nonzero_bits1 (const_rtx, enum machine_mode,
53                                              const_rtx, enum machine_mode,
54                                              unsigned HOST_WIDE_INT);
55 static unsigned int cached_num_sign_bit_copies (const_rtx, enum machine_mode, const_rtx,
56                                                 enum machine_mode,
57                                                 unsigned int);
58 static unsigned int num_sign_bit_copies1 (const_rtx, enum machine_mode, const_rtx,
59                                           enum machine_mode, unsigned int);
60
61 /* Offset of the first 'e', 'E' or 'V' operand for each rtx code, or
62    -1 if a code has no such operand.  */
63 static int non_rtx_starting_operands[NUM_RTX_CODE];
64
65 rtx_subrtx_bound_info rtx_all_subrtx_bounds[NUM_RTX_CODE];
66 rtx_subrtx_bound_info rtx_nonconst_subrtx_bounds[NUM_RTX_CODE];
67
68 /* Truncation narrows the mode from SOURCE mode to DESTINATION mode.
69    If TARGET_MODE_REP_EXTENDED (DESTINATION, DESTINATION_REP) is
70    SIGN_EXTEND then while narrowing we also have to enforce the
71    representation and sign-extend the value to mode DESTINATION_REP.
72
73    If the value is already sign-extended to DESTINATION_REP mode we
74    can just switch to DESTINATION mode on it.  For each pair of
75    integral modes SOURCE and DESTINATION, when truncating from SOURCE
76    to DESTINATION, NUM_SIGN_BIT_COPIES_IN_REP[SOURCE][DESTINATION]
77    contains the number of high-order bits in SOURCE that have to be
78    copies of the sign-bit so that we can do this mode-switch to
79    DESTINATION.  */
80
81 static unsigned int
82 num_sign_bit_copies_in_rep[MAX_MODE_INT + 1][MAX_MODE_INT + 1];
83 \f
84 /* Store X into index I of ARRAY.  ARRAY is known to have at least I
85    elements.  Return the new base of ARRAY.  */
86
87 template <typename T>
88 typename T::value_type *
89 generic_subrtx_iterator <T>::add_single_to_queue (array_type &array,
90                                                   value_type *base,
91                                                   size_t i, value_type x)
92 {
93   if (base == array.stack)
94     {
95       if (i < LOCAL_ELEMS)
96         {
97           base[i] = x;
98           return base;
99         }
100       gcc_checking_assert (i == LOCAL_ELEMS);
101       vec_safe_grow (array.heap, i + 1);
102       base = array.heap->address ();
103       memcpy (base, array.stack, sizeof (array.stack));
104       base[LOCAL_ELEMS] = x;
105       return base;
106     }
107   unsigned int length = array.heap->length ();
108   if (length > i)
109     {
110       gcc_checking_assert (base == array.heap->address ());
111       base[i] = x;
112       return base;
113     }
114   else
115     {
116       gcc_checking_assert (i == length);
117       vec_safe_push (array.heap, x);
118       return array.heap->address ();
119     }
120 }
121
122 /* Add the subrtxes of X to worklist ARRAY, starting at END.  Return the
123    number of elements added to the worklist.  */
124
125 template <typename T>
126 size_t
127 generic_subrtx_iterator <T>::add_subrtxes_to_queue (array_type &array,
128                                                     value_type *base,
129                                                     size_t end, rtx_type x)
130 {
131   const char *format = GET_RTX_FORMAT (GET_CODE (x));
132   size_t orig_end = end;
133   for (int i = 0; format[i]; ++i)
134     if (format[i] == 'e')
135       {
136         value_type subx = T::get_value (x->u.fld[i].rt_rtx);
137         if (__builtin_expect (end < LOCAL_ELEMS, true))
138           base[end++] = subx;
139         else
140           base = add_single_to_queue (array, base, end++, subx);
141       }
142     else if (format[i] == 'E')
143       {
144         int length = GET_NUM_ELEM (x->u.fld[i].rt_rtvec);
145         rtx *vec = x->u.fld[i].rt_rtvec->elem;
146         if (__builtin_expect (end + length <= LOCAL_ELEMS, true))
147           for (int j = 0; j < length; j++)
148             base[end++] = T::get_value (vec[j]);
149         else
150           for (int j = 0; j < length; j++)
151             base = add_single_to_queue (array, base, end++,
152                                         T::get_value (vec[j]));
153       }
154   return end - orig_end;
155 }
156
157 template <typename T>
158 void
159 generic_subrtx_iterator <T>::free_array (array_type &array)
160 {
161   vec_free (array.heap);
162 }
163
164 template <typename T>
165 const size_t generic_subrtx_iterator <T>::LOCAL_ELEMS;
166
167 template class generic_subrtx_iterator <const_rtx_accessor>;
168 template class generic_subrtx_iterator <rtx_var_accessor>;
169 template class generic_subrtx_iterator <rtx_ptr_accessor>;
170
171 /* Return 1 if the value of X is unstable
172    (would be different at a different point in the program).
173    The frame pointer, arg pointer, etc. are considered stable
174    (within one function) and so is anything marked `unchanging'.  */
175
176 int
177 rtx_unstable_p (const_rtx x)
178 {
179   const RTX_CODE code = GET_CODE (x);
180   int i;
181   const char *fmt;
182
183   switch (code)
184     {
185     case MEM:
186       return !MEM_READONLY_P (x) || rtx_unstable_p (XEXP (x, 0));
187
188     case CONST:
189     CASE_CONST_ANY:
190     case SYMBOL_REF:
191     case LABEL_REF:
192       return 0;
193
194     case REG:
195       /* As in rtx_varies_p, we have to use the actual rtx, not reg number.  */
196       if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
197           /* The arg pointer varies if it is not a fixed register.  */
198           || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
199         return 0;
200       /* ??? When call-clobbered, the value is stable modulo the restore
201          that must happen after a call.  This currently screws up local-alloc
202          into believing that the restore is not needed.  */
203       if (!PIC_OFFSET_TABLE_REG_CALL_CLOBBERED && x == pic_offset_table_rtx)
204         return 0;
205       return 1;
206
207     case ASM_OPERANDS:
208       if (MEM_VOLATILE_P (x))
209         return 1;
210
211       /* Fall through.  */
212
213     default:
214       break;
215     }
216
217   fmt = GET_RTX_FORMAT (code);
218   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
219     if (fmt[i] == 'e')
220       {
221         if (rtx_unstable_p (XEXP (x, i)))
222           return 1;
223       }
224     else if (fmt[i] == 'E')
225       {
226         int j;
227         for (j = 0; j < XVECLEN (x, i); j++)
228           if (rtx_unstable_p (XVECEXP (x, i, j)))
229             return 1;
230       }
231
232   return 0;
233 }
234
235 /* Return 1 if X has a value that can vary even between two
236    executions of the program.  0 means X can be compared reliably
237    against certain constants or near-constants.
238    FOR_ALIAS is nonzero if we are called from alias analysis; if it is
239    zero, we are slightly more conservative.
240    The frame pointer and the arg pointer are considered constant.  */
241
242 bool
243 rtx_varies_p (const_rtx x, bool for_alias)
244 {
245   RTX_CODE code;
246   int i;
247   const char *fmt;
248
249   if (!x)
250     return 0;
251
252   code = GET_CODE (x);
253   switch (code)
254     {
255     case MEM:
256       return !MEM_READONLY_P (x) || rtx_varies_p (XEXP (x, 0), for_alias);
257
258     case CONST:
259     CASE_CONST_ANY:
260     case SYMBOL_REF:
261     case LABEL_REF:
262       return 0;
263
264     case REG:
265       /* Note that we have to test for the actual rtx used for the frame
266          and arg pointers and not just the register number in case we have
267          eliminated the frame and/or arg pointer and are using it
268          for pseudos.  */
269       if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
270           /* The arg pointer varies if it is not a fixed register.  */
271           || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
272         return 0;
273       if (x == pic_offset_table_rtx
274           /* ??? When call-clobbered, the value is stable modulo the restore
275              that must happen after a call.  This currently screws up
276              local-alloc into believing that the restore is not needed, so we
277              must return 0 only if we are called from alias analysis.  */
278           && (!PIC_OFFSET_TABLE_REG_CALL_CLOBBERED || for_alias))
279         return 0;
280       return 1;
281
282     case LO_SUM:
283       /* The operand 0 of a LO_SUM is considered constant
284          (in fact it is related specifically to operand 1)
285          during alias analysis.  */
286       return (! for_alias && rtx_varies_p (XEXP (x, 0), for_alias))
287              || rtx_varies_p (XEXP (x, 1), for_alias);
288
289     case ASM_OPERANDS:
290       if (MEM_VOLATILE_P (x))
291         return 1;
292
293       /* Fall through.  */
294
295     default:
296       break;
297     }
298
299   fmt = GET_RTX_FORMAT (code);
300   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
301     if (fmt[i] == 'e')
302       {
303         if (rtx_varies_p (XEXP (x, i), for_alias))
304           return 1;
305       }
306     else if (fmt[i] == 'E')
307       {
308         int j;
309         for (j = 0; j < XVECLEN (x, i); j++)
310           if (rtx_varies_p (XVECEXP (x, i, j), for_alias))
311             return 1;
312       }
313
314   return 0;
315 }
316
317 /* Return nonzero if the use of X+OFFSET as an address in a MEM with SIZE
318    bytes can cause a trap.  MODE is the mode of the MEM (not that of X) and
319    UNALIGNED_MEMS controls whether nonzero is returned for unaligned memory
320    references on strict alignment machines.  */
321
322 static int
323 rtx_addr_can_trap_p_1 (const_rtx x, HOST_WIDE_INT offset, HOST_WIDE_INT size,
324                        enum machine_mode mode, bool unaligned_mems)
325 {
326   enum rtx_code code = GET_CODE (x);
327
328   /* The offset must be a multiple of the mode size if we are considering
329      unaligned memory references on strict alignment machines.  */
330   if (STRICT_ALIGNMENT && unaligned_mems && GET_MODE_SIZE (mode) != 0)
331     {
332       HOST_WIDE_INT actual_offset = offset;
333
334 #ifdef SPARC_STACK_BOUNDARY_HACK
335       /* ??? The SPARC port may claim a STACK_BOUNDARY higher than
336              the real alignment of %sp.  However, when it does this, the
337              alignment of %sp+STACK_POINTER_OFFSET is STACK_BOUNDARY.  */
338       if (SPARC_STACK_BOUNDARY_HACK
339           && (x == stack_pointer_rtx || x == hard_frame_pointer_rtx))
340         actual_offset -= STACK_POINTER_OFFSET;
341 #endif
342
343       if (actual_offset % GET_MODE_SIZE (mode) != 0)
344         return 1;
345     }
346
347   switch (code)
348     {
349     case SYMBOL_REF:
350       if (SYMBOL_REF_WEAK (x))
351         return 1;
352       if (!CONSTANT_POOL_ADDRESS_P (x))
353         {
354           tree decl;
355           HOST_WIDE_INT decl_size;
356
357           if (offset < 0)
358             return 1;
359           if (size == 0)
360             size = GET_MODE_SIZE (mode);
361           if (size == 0)
362             return offset != 0;
363
364           /* If the size of the access or of the symbol is unknown,
365              assume the worst.  */
366           decl = SYMBOL_REF_DECL (x);
367
368           /* Else check that the access is in bounds.  TODO: restructure
369              expr_size/tree_expr_size/int_expr_size and just use the latter.  */
370           if (!decl)
371             decl_size = -1;
372           else if (DECL_P (decl) && DECL_SIZE_UNIT (decl))
373             decl_size = (tree_fits_shwi_p (DECL_SIZE_UNIT (decl))
374                          ? tree_to_shwi (DECL_SIZE_UNIT (decl))
375                          : -1);
376           else if (TREE_CODE (decl) == STRING_CST)
377             decl_size = TREE_STRING_LENGTH (decl);
378           else if (TYPE_SIZE_UNIT (TREE_TYPE (decl)))
379             decl_size = int_size_in_bytes (TREE_TYPE (decl));
380           else
381             decl_size = -1;
382
383           return (decl_size <= 0 ? offset != 0 : offset + size > decl_size);
384         }
385
386       return 0;
387
388     case LABEL_REF:
389       return 0;
390
391     case REG:
392       /* Stack references are assumed not to trap, but we need to deal with
393          nonsensical offsets.  */
394       if (x == frame_pointer_rtx)
395         {
396           HOST_WIDE_INT adj_offset = offset - STARTING_FRAME_OFFSET;
397           if (size == 0)
398             size = GET_MODE_SIZE (mode);
399           if (FRAME_GROWS_DOWNWARD)
400             {
401               if (adj_offset < frame_offset || adj_offset + size - 1 >= 0)
402                 return 1;
403             }
404           else
405             {
406               if (adj_offset < 0 || adj_offset + size - 1 >= frame_offset)
407                 return 1;
408             }
409           return 0;
410         }
411       /* ??? Need to add a similar guard for nonsensical offsets.  */
412       if (x == hard_frame_pointer_rtx
413           || x == stack_pointer_rtx
414           /* The arg pointer varies if it is not a fixed register.  */
415           || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
416         return 0;
417       /* All of the virtual frame registers are stack references.  */
418       if (REGNO (x) >= FIRST_VIRTUAL_REGISTER
419           && REGNO (x) <= LAST_VIRTUAL_REGISTER)
420         return 0;
421       return 1;
422
423     case CONST:
424       return rtx_addr_can_trap_p_1 (XEXP (x, 0), offset, size,
425                                     mode, unaligned_mems);
426
427     case PLUS:
428       /* An address is assumed not to trap if:
429          - it is the pic register plus a constant.  */
430       if (XEXP (x, 0) == pic_offset_table_rtx && CONSTANT_P (XEXP (x, 1)))
431         return 0;
432
433       /* - or it is an address that can't trap plus a constant integer.  */
434       if (CONST_INT_P (XEXP (x, 1))
435           && !rtx_addr_can_trap_p_1 (XEXP (x, 0), offset + INTVAL (XEXP (x, 1)),
436                                      size, mode, unaligned_mems))
437         return 0;
438
439       return 1;
440
441     case LO_SUM:
442     case PRE_MODIFY:
443       return rtx_addr_can_trap_p_1 (XEXP (x, 1), offset, size,
444                                     mode, unaligned_mems);
445
446     case PRE_DEC:
447     case PRE_INC:
448     case POST_DEC:
449     case POST_INC:
450     case POST_MODIFY:
451       return rtx_addr_can_trap_p_1 (XEXP (x, 0), offset, size,
452                                     mode, unaligned_mems);
453
454     default:
455       break;
456     }
457
458   /* If it isn't one of the case above, it can cause a trap.  */
459   return 1;
460 }
461
462 /* Return nonzero if the use of X as an address in a MEM can cause a trap.  */
463
464 int
465 rtx_addr_can_trap_p (const_rtx x)
466 {
467   return rtx_addr_can_trap_p_1 (x, 0, 0, VOIDmode, false);
468 }
469
470 /* Return true if X is an address that is known to not be zero.  */
471
472 bool
473 nonzero_address_p (const_rtx x)
474 {
475   const enum rtx_code code = GET_CODE (x);
476
477   switch (code)
478     {
479     case SYMBOL_REF:
480       return !SYMBOL_REF_WEAK (x);
481
482     case LABEL_REF:
483       return true;
484
485     case REG:
486       /* As in rtx_varies_p, we have to use the actual rtx, not reg number.  */
487       if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
488           || x == stack_pointer_rtx
489           || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
490         return true;
491       /* All of the virtual frame registers are stack references.  */
492       if (REGNO (x) >= FIRST_VIRTUAL_REGISTER
493           && REGNO (x) <= LAST_VIRTUAL_REGISTER)
494         return true;
495       return false;
496
497     case CONST:
498       return nonzero_address_p (XEXP (x, 0));
499
500     case PLUS:
501       /* Handle PIC references.  */
502       if (XEXP (x, 0) == pic_offset_table_rtx
503                && CONSTANT_P (XEXP (x, 1)))
504         return true;
505       return false;
506
507     case PRE_MODIFY:
508       /* Similar to the above; allow positive offsets.  Further, since
509          auto-inc is only allowed in memories, the register must be a
510          pointer.  */
511       if (CONST_INT_P (XEXP (x, 1))
512           && INTVAL (XEXP (x, 1)) > 0)
513         return true;
514       return nonzero_address_p (XEXP (x, 0));
515
516     case PRE_INC:
517       /* Similarly.  Further, the offset is always positive.  */
518       return true;
519
520     case PRE_DEC:
521     case POST_DEC:
522     case POST_INC:
523     case POST_MODIFY:
524       return nonzero_address_p (XEXP (x, 0));
525
526     case LO_SUM:
527       return nonzero_address_p (XEXP (x, 1));
528
529     default:
530       break;
531     }
532
533   /* If it isn't one of the case above, might be zero.  */
534   return false;
535 }
536
537 /* Return 1 if X refers to a memory location whose address
538    cannot be compared reliably with constant addresses,
539    or if X refers to a BLKmode memory object.
540    FOR_ALIAS is nonzero if we are called from alias analysis; if it is
541    zero, we are slightly more conservative.  */
542
543 bool
544 rtx_addr_varies_p (const_rtx x, bool for_alias)
545 {
546   enum rtx_code code;
547   int i;
548   const char *fmt;
549
550   if (x == 0)
551     return 0;
552
553   code = GET_CODE (x);
554   if (code == MEM)
555     return GET_MODE (x) == BLKmode || rtx_varies_p (XEXP (x, 0), for_alias);
556
557   fmt = GET_RTX_FORMAT (code);
558   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
559     if (fmt[i] == 'e')
560       {
561         if (rtx_addr_varies_p (XEXP (x, i), for_alias))
562           return 1;
563       }
564     else if (fmt[i] == 'E')
565       {
566         int j;
567         for (j = 0; j < XVECLEN (x, i); j++)
568           if (rtx_addr_varies_p (XVECEXP (x, i, j), for_alias))
569             return 1;
570       }
571   return 0;
572 }
573 \f
574 /* Return the CALL in X if there is one.  */
575
576 rtx
577 get_call_rtx_from (rtx x)
578 {
579   if (INSN_P (x))
580     x = PATTERN (x);
581   if (GET_CODE (x) == PARALLEL)
582     x = XVECEXP (x, 0, 0);
583   if (GET_CODE (x) == SET)
584     x = SET_SRC (x);
585   if (GET_CODE (x) == CALL && MEM_P (XEXP (x, 0)))
586     return x;
587   return NULL_RTX;
588 }
589 \f
590 /* Return the value of the integer term in X, if one is apparent;
591    otherwise return 0.
592    Only obvious integer terms are detected.
593    This is used in cse.c with the `related_value' field.  */
594
595 HOST_WIDE_INT
596 get_integer_term (const_rtx x)
597 {
598   if (GET_CODE (x) == CONST)
599     x = XEXP (x, 0);
600
601   if (GET_CODE (x) == MINUS
602       && CONST_INT_P (XEXP (x, 1)))
603     return - INTVAL (XEXP (x, 1));
604   if (GET_CODE (x) == PLUS
605       && CONST_INT_P (XEXP (x, 1)))
606     return INTVAL (XEXP (x, 1));
607   return 0;
608 }
609
610 /* If X is a constant, return the value sans apparent integer term;
611    otherwise return 0.
612    Only obvious integer terms are detected.  */
613
614 rtx
615 get_related_value (const_rtx x)
616 {
617   if (GET_CODE (x) != CONST)
618     return 0;
619   x = XEXP (x, 0);
620   if (GET_CODE (x) == PLUS
621       && CONST_INT_P (XEXP (x, 1)))
622     return XEXP (x, 0);
623   else if (GET_CODE (x) == MINUS
624            && CONST_INT_P (XEXP (x, 1)))
625     return XEXP (x, 0);
626   return 0;
627 }
628 \f
629 /* Return true if SYMBOL is a SYMBOL_REF and OFFSET + SYMBOL points
630    to somewhere in the same object or object_block as SYMBOL.  */
631
632 bool
633 offset_within_block_p (const_rtx symbol, HOST_WIDE_INT offset)
634 {
635   tree decl;
636
637   if (GET_CODE (symbol) != SYMBOL_REF)
638     return false;
639
640   if (offset == 0)
641     return true;
642
643   if (offset > 0)
644     {
645       if (CONSTANT_POOL_ADDRESS_P (symbol)
646           && offset < (int) GET_MODE_SIZE (get_pool_mode (symbol)))
647         return true;
648
649       decl = SYMBOL_REF_DECL (symbol);
650       if (decl && offset < int_size_in_bytes (TREE_TYPE (decl)))
651         return true;
652     }
653
654   if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol)
655       && SYMBOL_REF_BLOCK (symbol)
656       && SYMBOL_REF_BLOCK_OFFSET (symbol) >= 0
657       && ((unsigned HOST_WIDE_INT) offset + SYMBOL_REF_BLOCK_OFFSET (symbol)
658           < (unsigned HOST_WIDE_INT) SYMBOL_REF_BLOCK (symbol)->size))
659     return true;
660
661   return false;
662 }
663
664 /* Split X into a base and a constant offset, storing them in *BASE_OUT
665    and *OFFSET_OUT respectively.  */
666
667 void
668 split_const (rtx x, rtx *base_out, rtx *offset_out)
669 {
670   if (GET_CODE (x) == CONST)
671     {
672       x = XEXP (x, 0);
673       if (GET_CODE (x) == PLUS && CONST_INT_P (XEXP (x, 1)))
674         {
675           *base_out = XEXP (x, 0);
676           *offset_out = XEXP (x, 1);
677           return;
678         }
679     }
680   *base_out = x;
681   *offset_out = const0_rtx;
682 }
683 \f
684 /* Return the number of places FIND appears within X.  If COUNT_DEST is
685    zero, we do not count occurrences inside the destination of a SET.  */
686
687 int
688 count_occurrences (const_rtx x, const_rtx find, int count_dest)
689 {
690   int i, j;
691   enum rtx_code code;
692   const char *format_ptr;
693   int count;
694
695   if (x == find)
696     return 1;
697
698   code = GET_CODE (x);
699
700   switch (code)
701     {
702     case REG:
703     CASE_CONST_ANY:
704     case SYMBOL_REF:
705     case CODE_LABEL:
706     case PC:
707     case CC0:
708       return 0;
709
710     case EXPR_LIST:
711       count = count_occurrences (XEXP (x, 0), find, count_dest);
712       if (XEXP (x, 1))
713         count += count_occurrences (XEXP (x, 1), find, count_dest);
714       return count;
715
716     case MEM:
717       if (MEM_P (find) && rtx_equal_p (x, find))
718         return 1;
719       break;
720
721     case SET:
722       if (SET_DEST (x) == find && ! count_dest)
723         return count_occurrences (SET_SRC (x), find, count_dest);
724       break;
725
726     default:
727       break;
728     }
729
730   format_ptr = GET_RTX_FORMAT (code);
731   count = 0;
732
733   for (i = 0; i < GET_RTX_LENGTH (code); i++)
734     {
735       switch (*format_ptr++)
736         {
737         case 'e':
738           count += count_occurrences (XEXP (x, i), find, count_dest);
739           break;
740
741         case 'E':
742           for (j = 0; j < XVECLEN (x, i); j++)
743             count += count_occurrences (XVECEXP (x, i, j), find, count_dest);
744           break;
745         }
746     }
747   return count;
748 }
749
750 \f
751 /* Return TRUE if OP is a register or subreg of a register that
752    holds an unsigned quantity.  Otherwise, return FALSE.  */
753
754 bool
755 unsigned_reg_p (rtx op)
756 {
757   if (REG_P (op)
758       && REG_EXPR (op)
759       && TYPE_UNSIGNED (TREE_TYPE (REG_EXPR (op))))
760     return true;
761
762   if (GET_CODE (op) == SUBREG
763       && SUBREG_PROMOTED_SIGN (op))
764     return true;
765
766   return false;
767 }
768
769 \f
770 /* Nonzero if register REG appears somewhere within IN.
771    Also works if REG is not a register; in this case it checks
772    for a subexpression of IN that is Lisp "equal" to REG.  */
773
774 int
775 reg_mentioned_p (const_rtx reg, const_rtx in)
776 {
777   const char *fmt;
778   int i;
779   enum rtx_code code;
780
781   if (in == 0)
782     return 0;
783
784   if (reg == in)
785     return 1;
786
787   if (GET_CODE (in) == LABEL_REF)
788     return reg == XEXP (in, 0);
789
790   code = GET_CODE (in);
791
792   switch (code)
793     {
794       /* Compare registers by number.  */
795     case REG:
796       return REG_P (reg) && REGNO (in) == REGNO (reg);
797
798       /* These codes have no constituent expressions
799          and are unique.  */
800     case SCRATCH:
801     case CC0:
802     case PC:
803       return 0;
804
805     CASE_CONST_ANY:
806       /* These are kept unique for a given value.  */
807       return 0;
808
809     default:
810       break;
811     }
812
813   if (GET_CODE (reg) == code && rtx_equal_p (reg, in))
814     return 1;
815
816   fmt = GET_RTX_FORMAT (code);
817
818   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
819     {
820       if (fmt[i] == 'E')
821         {
822           int j;
823           for (j = XVECLEN (in, i) - 1; j >= 0; j--)
824             if (reg_mentioned_p (reg, XVECEXP (in, i, j)))
825               return 1;
826         }
827       else if (fmt[i] == 'e'
828                && reg_mentioned_p (reg, XEXP (in, i)))
829         return 1;
830     }
831   return 0;
832 }
833 \f
834 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
835    no CODE_LABEL insn.  */
836
837 int
838 no_labels_between_p (const rtx_insn *beg, const rtx_insn *end)
839 {
840   rtx_insn *p;
841   if (beg == end)
842     return 0;
843   for (p = NEXT_INSN (beg); p != end; p = NEXT_INSN (p))
844     if (LABEL_P (p))
845       return 0;
846   return 1;
847 }
848
849 /* Nonzero if register REG is used in an insn between
850    FROM_INSN and TO_INSN (exclusive of those two).  */
851
852 int
853 reg_used_between_p (const_rtx reg, const rtx_insn *from_insn,
854                     const rtx_insn *to_insn)
855 {
856   rtx_insn *insn;
857
858   if (from_insn == to_insn)
859     return 0;
860
861   for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
862     if (NONDEBUG_INSN_P (insn)
863         && (reg_overlap_mentioned_p (reg, PATTERN (insn))
864            || (CALL_P (insn) && find_reg_fusage (insn, USE, reg))))
865       return 1;
866   return 0;
867 }
868 \f
869 /* Nonzero if the old value of X, a register, is referenced in BODY.  If X
870    is entirely replaced by a new value and the only use is as a SET_DEST,
871    we do not consider it a reference.  */
872
873 int
874 reg_referenced_p (const_rtx x, const_rtx body)
875 {
876   int i;
877
878   switch (GET_CODE (body))
879     {
880     case SET:
881       if (reg_overlap_mentioned_p (x, SET_SRC (body)))
882         return 1;
883
884       /* If the destination is anything other than CC0, PC, a REG or a SUBREG
885          of a REG that occupies all of the REG, the insn references X if
886          it is mentioned in the destination.  */
887       if (GET_CODE (SET_DEST (body)) != CC0
888           && GET_CODE (SET_DEST (body)) != PC
889           && !REG_P (SET_DEST (body))
890           && ! (GET_CODE (SET_DEST (body)) == SUBREG
891                 && REG_P (SUBREG_REG (SET_DEST (body)))
892                 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (body))))
893                       + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
894                     == ((GET_MODE_SIZE (GET_MODE (SET_DEST (body)))
895                          + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
896           && reg_overlap_mentioned_p (x, SET_DEST (body)))
897         return 1;
898       return 0;
899
900     case ASM_OPERANDS:
901       for (i = ASM_OPERANDS_INPUT_LENGTH (body) - 1; i >= 0; i--)
902         if (reg_overlap_mentioned_p (x, ASM_OPERANDS_INPUT (body, i)))
903           return 1;
904       return 0;
905
906     case CALL:
907     case USE:
908     case IF_THEN_ELSE:
909       return reg_overlap_mentioned_p (x, body);
910
911     case TRAP_IF:
912       return reg_overlap_mentioned_p (x, TRAP_CONDITION (body));
913
914     case PREFETCH:
915       return reg_overlap_mentioned_p (x, XEXP (body, 0));
916
917     case UNSPEC:
918     case UNSPEC_VOLATILE:
919       for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
920         if (reg_overlap_mentioned_p (x, XVECEXP (body, 0, i)))
921           return 1;
922       return 0;
923
924     case PARALLEL:
925       for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
926         if (reg_referenced_p (x, XVECEXP (body, 0, i)))
927           return 1;
928       return 0;
929
930     case CLOBBER:
931       if (MEM_P (XEXP (body, 0)))
932         if (reg_overlap_mentioned_p (x, XEXP (XEXP (body, 0), 0)))
933           return 1;
934       return 0;
935
936     case COND_EXEC:
937       if (reg_overlap_mentioned_p (x, COND_EXEC_TEST (body)))
938         return 1;
939       return reg_referenced_p (x, COND_EXEC_CODE (body));
940
941     default:
942       return 0;
943     }
944 }
945 \f
946 /* Nonzero if register REG is set or clobbered in an insn between
947    FROM_INSN and TO_INSN (exclusive of those two).  */
948
949 int
950 reg_set_between_p (const_rtx reg, const_rtx uncast_from_insn, const_rtx to_insn)
951 {
952   const rtx_insn *from_insn =
953     safe_as_a <const rtx_insn *> (uncast_from_insn);
954   const rtx_insn *insn;
955
956   if (from_insn == to_insn)
957     return 0;
958
959   for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
960     if (INSN_P (insn) && reg_set_p (reg, insn))
961       return 1;
962   return 0;
963 }
964
965 /* Internals of reg_set_between_p.  */
966 int
967 reg_set_p (const_rtx reg, const_rtx insn)
968 {
969   /* We can be passed an insn or part of one.  If we are passed an insn,
970      check if a side-effect of the insn clobbers REG.  */
971   if (INSN_P (insn)
972       && (FIND_REG_INC_NOTE (insn, reg)
973           || (CALL_P (insn)
974               && ((REG_P (reg)
975                    && REGNO (reg) < FIRST_PSEUDO_REGISTER
976                    && overlaps_hard_reg_set_p (regs_invalidated_by_call,
977                                                GET_MODE (reg), REGNO (reg)))
978                   || MEM_P (reg)
979                   || find_reg_fusage (insn, CLOBBER, reg)))))
980     return 1;
981
982   return set_of (reg, insn) != NULL_RTX;
983 }
984
985 /* Similar to reg_set_between_p, but check all registers in X.  Return 0
986    only if none of them are modified between START and END.  Return 1 if
987    X contains a MEM; this routine does use memory aliasing.  */
988
989 int
990 modified_between_p (const_rtx x, const rtx_insn *start, const rtx_insn *end)
991 {
992   const enum rtx_code code = GET_CODE (x);
993   const char *fmt;
994   int i, j;
995   rtx_insn *insn;
996
997   if (start == end)
998     return 0;
999
1000   switch (code)
1001     {
1002     CASE_CONST_ANY:
1003     case CONST:
1004     case SYMBOL_REF:
1005     case LABEL_REF:
1006       return 0;
1007
1008     case PC:
1009     case CC0:
1010       return 1;
1011
1012     case MEM:
1013       if (modified_between_p (XEXP (x, 0), start, end))
1014         return 1;
1015       if (MEM_READONLY_P (x))
1016         return 0;
1017       for (insn = NEXT_INSN (start); insn != end; insn = NEXT_INSN (insn))
1018         if (memory_modified_in_insn_p (x, insn))
1019           return 1;
1020       return 0;
1021       break;
1022
1023     case REG:
1024       return reg_set_between_p (x, start, end);
1025
1026     default:
1027       break;
1028     }
1029
1030   fmt = GET_RTX_FORMAT (code);
1031   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1032     {
1033       if (fmt[i] == 'e' && modified_between_p (XEXP (x, i), start, end))
1034         return 1;
1035
1036       else if (fmt[i] == 'E')
1037         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1038           if (modified_between_p (XVECEXP (x, i, j), start, end))
1039             return 1;
1040     }
1041
1042   return 0;
1043 }
1044
1045 /* Similar to reg_set_p, but check all registers in X.  Return 0 only if none
1046    of them are modified in INSN.  Return 1 if X contains a MEM; this routine
1047    does use memory aliasing.  */
1048
1049 int
1050 modified_in_p (const_rtx x, const_rtx insn)
1051 {
1052   const enum rtx_code code = GET_CODE (x);
1053   const char *fmt;
1054   int i, j;
1055
1056   switch (code)
1057     {
1058     CASE_CONST_ANY:
1059     case CONST:
1060     case SYMBOL_REF:
1061     case LABEL_REF:
1062       return 0;
1063
1064     case PC:
1065     case CC0:
1066       return 1;
1067
1068     case MEM:
1069       if (modified_in_p (XEXP (x, 0), insn))
1070         return 1;
1071       if (MEM_READONLY_P (x))
1072         return 0;
1073       if (memory_modified_in_insn_p (x, insn))
1074         return 1;
1075       return 0;
1076       break;
1077
1078     case REG:
1079       return reg_set_p (x, insn);
1080
1081     default:
1082       break;
1083     }
1084
1085   fmt = GET_RTX_FORMAT (code);
1086   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1087     {
1088       if (fmt[i] == 'e' && modified_in_p (XEXP (x, i), insn))
1089         return 1;
1090
1091       else if (fmt[i] == 'E')
1092         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1093           if (modified_in_p (XVECEXP (x, i, j), insn))
1094             return 1;
1095     }
1096
1097   return 0;
1098 }
1099 \f
1100 /* Helper function for set_of.  */
1101 struct set_of_data
1102   {
1103     const_rtx found;
1104     const_rtx pat;
1105   };
1106
1107 static void
1108 set_of_1 (rtx x, const_rtx pat, void *data1)
1109 {
1110   struct set_of_data *const data = (struct set_of_data *) (data1);
1111   if (rtx_equal_p (x, data->pat)
1112       || (!MEM_P (x) && reg_overlap_mentioned_p (data->pat, x)))
1113     data->found = pat;
1114 }
1115
1116 /* Give an INSN, return a SET or CLOBBER expression that does modify PAT
1117    (either directly or via STRICT_LOW_PART and similar modifiers).  */
1118 const_rtx
1119 set_of (const_rtx pat, const_rtx insn)
1120 {
1121   struct set_of_data data;
1122   data.found = NULL_RTX;
1123   data.pat = pat;
1124   note_stores (INSN_P (insn) ? PATTERN (insn) : insn, set_of_1, &data);
1125   return data.found;
1126 }
1127
1128 /* Add all hard register in X to *PSET.  */
1129 void
1130 find_all_hard_regs (const_rtx x, HARD_REG_SET *pset)
1131 {
1132   subrtx_iterator::array_type array;
1133   FOR_EACH_SUBRTX (iter, array, x, NONCONST)
1134     {
1135       const_rtx x = *iter;
1136       if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
1137         add_to_hard_reg_set (pset, GET_MODE (x), REGNO (x));
1138     }
1139 }
1140
1141 /* This function, called through note_stores, collects sets and
1142    clobbers of hard registers in a HARD_REG_SET, which is pointed to
1143    by DATA.  */
1144 void
1145 record_hard_reg_sets (rtx x, const_rtx pat ATTRIBUTE_UNUSED, void *data)
1146 {
1147   HARD_REG_SET *pset = (HARD_REG_SET *)data;
1148   if (REG_P (x) && HARD_REGISTER_P (x))
1149     add_to_hard_reg_set (pset, GET_MODE (x), REGNO (x));
1150 }
1151
1152 /* Examine INSN, and compute the set of hard registers written by it.
1153    Store it in *PSET.  Should only be called after reload.  */
1154 void
1155 find_all_hard_reg_sets (const_rtx insn, HARD_REG_SET *pset, bool implicit)
1156 {
1157   rtx link;
1158
1159   CLEAR_HARD_REG_SET (*pset);
1160   note_stores (PATTERN (insn), record_hard_reg_sets, pset);
1161   if (CALL_P (insn))
1162     {
1163       if (implicit)
1164         IOR_HARD_REG_SET (*pset, call_used_reg_set);
1165
1166       for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
1167         record_hard_reg_sets (XEXP (link, 0), NULL, pset);
1168     }
1169   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1170     if (REG_NOTE_KIND (link) == REG_INC)
1171       record_hard_reg_sets (XEXP (link, 0), NULL, pset);
1172 }
1173
1174 /* Like record_hard_reg_sets, but called through note_uses.  */
1175 void
1176 record_hard_reg_uses (rtx *px, void *data)
1177 {
1178   find_all_hard_regs (*px, (HARD_REG_SET *) data);
1179 }
1180 \f
1181 /* Given an INSN, return a SET expression if this insn has only a single SET.
1182    It may also have CLOBBERs, USEs, or SET whose output
1183    will not be used, which we ignore.  */
1184
1185 rtx
1186 single_set_2 (const rtx_insn *insn, const_rtx pat)
1187 {
1188   rtx set = NULL;
1189   int set_verified = 1;
1190   int i;
1191
1192   if (GET_CODE (pat) == PARALLEL)
1193     {
1194       for (i = 0; i < XVECLEN (pat, 0); i++)
1195         {
1196           rtx sub = XVECEXP (pat, 0, i);
1197           switch (GET_CODE (sub))
1198             {
1199             case USE:
1200             case CLOBBER:
1201               break;
1202
1203             case SET:
1204               /* We can consider insns having multiple sets, where all
1205                  but one are dead as single set insns.  In common case
1206                  only single set is present in the pattern so we want
1207                  to avoid checking for REG_UNUSED notes unless necessary.
1208
1209                  When we reach set first time, we just expect this is
1210                  the single set we are looking for and only when more
1211                  sets are found in the insn, we check them.  */
1212               if (!set_verified)
1213                 {
1214                   if (find_reg_note (insn, REG_UNUSED, SET_DEST (set))
1215                       && !side_effects_p (set))
1216                     set = NULL;
1217                   else
1218                     set_verified = 1;
1219                 }
1220               if (!set)
1221                 set = sub, set_verified = 0;
1222               else if (!find_reg_note (insn, REG_UNUSED, SET_DEST (sub))
1223                        || side_effects_p (sub))
1224                 return NULL_RTX;
1225               break;
1226
1227             default:
1228               return NULL_RTX;
1229             }
1230         }
1231     }
1232   return set;
1233 }
1234
1235 /* Given an INSN, return nonzero if it has more than one SET, else return
1236    zero.  */
1237
1238 int
1239 multiple_sets (const_rtx insn)
1240 {
1241   int found;
1242   int i;
1243
1244   /* INSN must be an insn.  */
1245   if (! INSN_P (insn))
1246     return 0;
1247
1248   /* Only a PARALLEL can have multiple SETs.  */
1249   if (GET_CODE (PATTERN (insn)) == PARALLEL)
1250     {
1251       for (i = 0, found = 0; i < XVECLEN (PATTERN (insn), 0); i++)
1252         if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1253           {
1254             /* If we have already found a SET, then return now.  */
1255             if (found)
1256               return 1;
1257             else
1258               found = 1;
1259           }
1260     }
1261
1262   /* Either zero or one SET.  */
1263   return 0;
1264 }
1265 \f
1266 /* Return nonzero if the destination of SET equals the source
1267    and there are no side effects.  */
1268
1269 int
1270 set_noop_p (const_rtx set)
1271 {
1272   rtx src = SET_SRC (set);
1273   rtx dst = SET_DEST (set);
1274
1275   if (dst == pc_rtx && src == pc_rtx)
1276     return 1;
1277
1278   if (MEM_P (dst) && MEM_P (src))
1279     return rtx_equal_p (dst, src) && !side_effects_p (dst);
1280
1281   if (GET_CODE (dst) == ZERO_EXTRACT)
1282     return rtx_equal_p (XEXP (dst, 0), src)
1283            && ! BYTES_BIG_ENDIAN && XEXP (dst, 2) == const0_rtx
1284            && !side_effects_p (src);
1285
1286   if (GET_CODE (dst) == STRICT_LOW_PART)
1287     dst = XEXP (dst, 0);
1288
1289   if (GET_CODE (src) == SUBREG && GET_CODE (dst) == SUBREG)
1290     {
1291       if (SUBREG_BYTE (src) != SUBREG_BYTE (dst))
1292         return 0;
1293       src = SUBREG_REG (src);
1294       dst = SUBREG_REG (dst);
1295     }
1296
1297   /* It is a NOOP if destination overlaps with selected src vector
1298      elements.  */
1299   if (GET_CODE (src) == VEC_SELECT
1300       && REG_P (XEXP (src, 0)) && REG_P (dst)
1301       && HARD_REGISTER_P (XEXP (src, 0))
1302       && HARD_REGISTER_P (dst))
1303     {
1304       int i;
1305       rtx par = XEXP (src, 1);
1306       rtx src0 = XEXP (src, 0);
1307       int c0 = INTVAL (XVECEXP (par, 0, 0));
1308       HOST_WIDE_INT offset = GET_MODE_UNIT_SIZE (GET_MODE (src0)) * c0;
1309
1310       for (i = 1; i < XVECLEN (par, 0); i++)
1311         if (INTVAL (XVECEXP (par, 0, i)) != c0 + i)
1312           return 0;
1313       return
1314         simplify_subreg_regno (REGNO (src0), GET_MODE (src0),
1315                                offset, GET_MODE (dst)) == (int) REGNO (dst);
1316     }
1317
1318   return (REG_P (src) && REG_P (dst)
1319           && REGNO (src) == REGNO (dst));
1320 }
1321 \f
1322 /* Return nonzero if an insn consists only of SETs, each of which only sets a
1323    value to itself.  */
1324
1325 int
1326 noop_move_p (const_rtx insn)
1327 {
1328   rtx pat = PATTERN (insn);
1329
1330   if (INSN_CODE (insn) == NOOP_MOVE_INSN_CODE)
1331     return 1;
1332
1333   /* Insns carrying these notes are useful later on.  */
1334   if (find_reg_note (insn, REG_EQUAL, NULL_RTX))
1335     return 0;
1336
1337   /* Check the code to be executed for COND_EXEC.  */
1338   if (GET_CODE (pat) == COND_EXEC)
1339     pat = COND_EXEC_CODE (pat);
1340
1341   if (GET_CODE (pat) == SET && set_noop_p (pat))
1342     return 1;
1343
1344   if (GET_CODE (pat) == PARALLEL)
1345     {
1346       int i;
1347       /* If nothing but SETs of registers to themselves,
1348          this insn can also be deleted.  */
1349       for (i = 0; i < XVECLEN (pat, 0); i++)
1350         {
1351           rtx tem = XVECEXP (pat, 0, i);
1352
1353           if (GET_CODE (tem) == USE
1354               || GET_CODE (tem) == CLOBBER)
1355             continue;
1356
1357           if (GET_CODE (tem) != SET || ! set_noop_p (tem))
1358             return 0;
1359         }
1360
1361       return 1;
1362     }
1363   return 0;
1364 }
1365 \f
1366
1367 /* Return nonzero if register in range [REGNO, ENDREGNO)
1368    appears either explicitly or implicitly in X
1369    other than being stored into.
1370
1371    References contained within the substructure at LOC do not count.
1372    LOC may be zero, meaning don't ignore anything.  */
1373
1374 int
1375 refers_to_regno_p (unsigned int regno, unsigned int endregno, const_rtx x,
1376                    rtx *loc)
1377 {
1378   int i;
1379   unsigned int x_regno;
1380   RTX_CODE code;
1381   const char *fmt;
1382
1383  repeat:
1384   /* The contents of a REG_NONNEG note is always zero, so we must come here
1385      upon repeat in case the last REG_NOTE is a REG_NONNEG note.  */
1386   if (x == 0)
1387     return 0;
1388
1389   code = GET_CODE (x);
1390
1391   switch (code)
1392     {
1393     case REG:
1394       x_regno = REGNO (x);
1395
1396       /* If we modifying the stack, frame, or argument pointer, it will
1397          clobber a virtual register.  In fact, we could be more precise,
1398          but it isn't worth it.  */
1399       if ((x_regno == STACK_POINTER_REGNUM
1400 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1401            || x_regno == ARG_POINTER_REGNUM
1402 #endif
1403            || x_regno == FRAME_POINTER_REGNUM)
1404           && regno >= FIRST_VIRTUAL_REGISTER && regno <= LAST_VIRTUAL_REGISTER)
1405         return 1;
1406
1407       return endregno > x_regno && regno < END_REGNO (x);
1408
1409     case SUBREG:
1410       /* If this is a SUBREG of a hard reg, we can see exactly which
1411          registers are being modified.  Otherwise, handle normally.  */
1412       if (REG_P (SUBREG_REG (x))
1413           && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
1414         {
1415           unsigned int inner_regno = subreg_regno (x);
1416           unsigned int inner_endregno
1417             = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
1418                              ? subreg_nregs (x) : 1);
1419
1420           return endregno > inner_regno && regno < inner_endregno;
1421         }
1422       break;
1423
1424     case CLOBBER:
1425     case SET:
1426       if (&SET_DEST (x) != loc
1427           /* Note setting a SUBREG counts as referring to the REG it is in for
1428              a pseudo but not for hard registers since we can
1429              treat each word individually.  */
1430           && ((GET_CODE (SET_DEST (x)) == SUBREG
1431                && loc != &SUBREG_REG (SET_DEST (x))
1432                && REG_P (SUBREG_REG (SET_DEST (x)))
1433                && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
1434                && refers_to_regno_p (regno, endregno,
1435                                      SUBREG_REG (SET_DEST (x)), loc))
1436               || (!REG_P (SET_DEST (x))
1437                   && refers_to_regno_p (regno, endregno, SET_DEST (x), loc))))
1438         return 1;
1439
1440       if (code == CLOBBER || loc == &SET_SRC (x))
1441         return 0;
1442       x = SET_SRC (x);
1443       goto repeat;
1444
1445     default:
1446       break;
1447     }
1448
1449   /* X does not match, so try its subexpressions.  */
1450
1451   fmt = GET_RTX_FORMAT (code);
1452   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1453     {
1454       if (fmt[i] == 'e' && loc != &XEXP (x, i))
1455         {
1456           if (i == 0)
1457             {
1458               x = XEXP (x, 0);
1459               goto repeat;
1460             }
1461           else
1462             if (refers_to_regno_p (regno, endregno, XEXP (x, i), loc))
1463               return 1;
1464         }
1465       else if (fmt[i] == 'E')
1466         {
1467           int j;
1468           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1469             if (loc != &XVECEXP (x, i, j)
1470                 && refers_to_regno_p (regno, endregno, XVECEXP (x, i, j), loc))
1471               return 1;
1472         }
1473     }
1474   return 0;
1475 }
1476
1477 /* Nonzero if modifying X will affect IN.  If X is a register or a SUBREG,
1478    we check if any register number in X conflicts with the relevant register
1479    numbers.  If X is a constant, return 0.  If X is a MEM, return 1 iff IN
1480    contains a MEM (we don't bother checking for memory addresses that can't
1481    conflict because we expect this to be a rare case.  */
1482
1483 int
1484 reg_overlap_mentioned_p (const_rtx x, const_rtx in)
1485 {
1486   unsigned int regno, endregno;
1487
1488   /* If either argument is a constant, then modifying X can not
1489      affect IN.  Here we look at IN, we can profitably combine
1490      CONSTANT_P (x) with the switch statement below.  */
1491   if (CONSTANT_P (in))
1492     return 0;
1493
1494  recurse:
1495   switch (GET_CODE (x))
1496     {
1497     case STRICT_LOW_PART:
1498     case ZERO_EXTRACT:
1499     case SIGN_EXTRACT:
1500       /* Overly conservative.  */
1501       x = XEXP (x, 0);
1502       goto recurse;
1503
1504     case SUBREG:
1505       regno = REGNO (SUBREG_REG (x));
1506       if (regno < FIRST_PSEUDO_REGISTER)
1507         regno = subreg_regno (x);
1508       endregno = regno + (regno < FIRST_PSEUDO_REGISTER
1509                           ? subreg_nregs (x) : 1);
1510       goto do_reg;
1511
1512     case REG:
1513       regno = REGNO (x);
1514       endregno = END_REGNO (x);
1515     do_reg:
1516       return refers_to_regno_p (regno, endregno, in, (rtx*) 0);
1517
1518     case MEM:
1519       {
1520         const char *fmt;
1521         int i;
1522
1523         if (MEM_P (in))
1524           return 1;
1525
1526         fmt = GET_RTX_FORMAT (GET_CODE (in));
1527         for (i = GET_RTX_LENGTH (GET_CODE (in)) - 1; i >= 0; i--)
1528           if (fmt[i] == 'e')
1529             {
1530               if (reg_overlap_mentioned_p (x, XEXP (in, i)))
1531                 return 1;
1532             }
1533           else if (fmt[i] == 'E')
1534             {
1535               int j;
1536               for (j = XVECLEN (in, i) - 1; j >= 0; --j)
1537                 if (reg_overlap_mentioned_p (x, XVECEXP (in, i, j)))
1538                   return 1;
1539             }
1540
1541         return 0;
1542       }
1543
1544     case SCRATCH:
1545     case PC:
1546     case CC0:
1547       return reg_mentioned_p (x, in);
1548
1549     case PARALLEL:
1550       {
1551         int i;
1552
1553         /* If any register in here refers to it we return true.  */
1554         for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1555           if (XEXP (XVECEXP (x, 0, i), 0) != 0
1556               && reg_overlap_mentioned_p (XEXP (XVECEXP (x, 0, i), 0), in))
1557             return 1;
1558         return 0;
1559       }
1560
1561     default:
1562       gcc_assert (CONSTANT_P (x));
1563       return 0;
1564     }
1565 }
1566 \f
1567 /* Call FUN on each register or MEM that is stored into or clobbered by X.
1568    (X would be the pattern of an insn).  DATA is an arbitrary pointer,
1569    ignored by note_stores, but passed to FUN.
1570
1571    FUN receives three arguments:
1572    1. the REG, MEM, CC0 or PC being stored in or clobbered,
1573    2. the SET or CLOBBER rtx that does the store,
1574    3. the pointer DATA provided to note_stores.
1575
1576   If the item being stored in or clobbered is a SUBREG of a hard register,
1577   the SUBREG will be passed.  */
1578
1579 void
1580 note_stores (const_rtx x, void (*fun) (rtx, const_rtx, void *), void *data)
1581 {
1582   int i;
1583
1584   if (GET_CODE (x) == COND_EXEC)
1585     x = COND_EXEC_CODE (x);
1586
1587   if (GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
1588     {
1589       rtx dest = SET_DEST (x);
1590
1591       while ((GET_CODE (dest) == SUBREG
1592               && (!REG_P (SUBREG_REG (dest))
1593                   || REGNO (SUBREG_REG (dest)) >= FIRST_PSEUDO_REGISTER))
1594              || GET_CODE (dest) == ZERO_EXTRACT
1595              || GET_CODE (dest) == STRICT_LOW_PART)
1596         dest = XEXP (dest, 0);
1597
1598       /* If we have a PARALLEL, SET_DEST is a list of EXPR_LIST expressions,
1599          each of whose first operand is a register.  */
1600       if (GET_CODE (dest) == PARALLEL)
1601         {
1602           for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1603             if (XEXP (XVECEXP (dest, 0, i), 0) != 0)
1604               (*fun) (XEXP (XVECEXP (dest, 0, i), 0), x, data);
1605         }
1606       else
1607         (*fun) (dest, x, data);
1608     }
1609
1610   else if (GET_CODE (x) == PARALLEL)
1611     for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1612       note_stores (XVECEXP (x, 0, i), fun, data);
1613 }
1614 \f
1615 /* Like notes_stores, but call FUN for each expression that is being
1616    referenced in PBODY, a pointer to the PATTERN of an insn.  We only call
1617    FUN for each expression, not any interior subexpressions.  FUN receives a
1618    pointer to the expression and the DATA passed to this function.
1619
1620    Note that this is not quite the same test as that done in reg_referenced_p
1621    since that considers something as being referenced if it is being
1622    partially set, while we do not.  */
1623
1624 void
1625 note_uses (rtx *pbody, void (*fun) (rtx *, void *), void *data)
1626 {
1627   rtx body = *pbody;
1628   int i;
1629
1630   switch (GET_CODE (body))
1631     {
1632     case COND_EXEC:
1633       (*fun) (&COND_EXEC_TEST (body), data);
1634       note_uses (&COND_EXEC_CODE (body), fun, data);
1635       return;
1636
1637     case PARALLEL:
1638       for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
1639         note_uses (&XVECEXP (body, 0, i), fun, data);
1640       return;
1641
1642     case SEQUENCE:
1643       for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
1644         note_uses (&PATTERN (XVECEXP (body, 0, i)), fun, data);
1645       return;
1646
1647     case USE:
1648       (*fun) (&XEXP (body, 0), data);
1649       return;
1650
1651     case ASM_OPERANDS:
1652       for (i = ASM_OPERANDS_INPUT_LENGTH (body) - 1; i >= 0; i--)
1653         (*fun) (&ASM_OPERANDS_INPUT (body, i), data);
1654       return;
1655
1656     case TRAP_IF:
1657       (*fun) (&TRAP_CONDITION (body), data);
1658       return;
1659
1660     case PREFETCH:
1661       (*fun) (&XEXP (body, 0), data);
1662       return;
1663
1664     case UNSPEC:
1665     case UNSPEC_VOLATILE:
1666       for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
1667         (*fun) (&XVECEXP (body, 0, i), data);
1668       return;
1669
1670     case CLOBBER:
1671       if (MEM_P (XEXP (body, 0)))
1672         (*fun) (&XEXP (XEXP (body, 0), 0), data);
1673       return;
1674
1675     case SET:
1676       {
1677         rtx dest = SET_DEST (body);
1678
1679         /* For sets we replace everything in source plus registers in memory
1680            expression in store and operands of a ZERO_EXTRACT.  */
1681         (*fun) (&SET_SRC (body), data);
1682
1683         if (GET_CODE (dest) == ZERO_EXTRACT)
1684           {
1685             (*fun) (&XEXP (dest, 1), data);
1686             (*fun) (&XEXP (dest, 2), data);
1687           }
1688
1689         while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART)
1690           dest = XEXP (dest, 0);
1691
1692         if (MEM_P (dest))
1693           (*fun) (&XEXP (dest, 0), data);
1694       }
1695       return;
1696
1697     default:
1698       /* All the other possibilities never store.  */
1699       (*fun) (pbody, data);
1700       return;
1701     }
1702 }
1703 \f
1704 /* Return nonzero if X's old contents don't survive after INSN.
1705    This will be true if X is (cc0) or if X is a register and
1706    X dies in INSN or because INSN entirely sets X.
1707
1708    "Entirely set" means set directly and not through a SUBREG, or
1709    ZERO_EXTRACT, so no trace of the old contents remains.
1710    Likewise, REG_INC does not count.
1711
1712    REG may be a hard or pseudo reg.  Renumbering is not taken into account,
1713    but for this use that makes no difference, since regs don't overlap
1714    during their lifetimes.  Therefore, this function may be used
1715    at any time after deaths have been computed.
1716
1717    If REG is a hard reg that occupies multiple machine registers, this
1718    function will only return 1 if each of those registers will be replaced
1719    by INSN.  */
1720
1721 int
1722 dead_or_set_p (const_rtx insn, const_rtx x)
1723 {
1724   unsigned int regno, end_regno;
1725   unsigned int i;
1726
1727   /* Can't use cc0_rtx below since this file is used by genattrtab.c.  */
1728   if (GET_CODE (x) == CC0)
1729     return 1;
1730
1731   gcc_assert (REG_P (x));
1732
1733   regno = REGNO (x);
1734   end_regno = END_REGNO (x);
1735   for (i = regno; i < end_regno; i++)
1736     if (! dead_or_set_regno_p (insn, i))
1737       return 0;
1738
1739   return 1;
1740 }
1741
1742 /* Return TRUE iff DEST is a register or subreg of a register and
1743    doesn't change the number of words of the inner register, and any
1744    part of the register is TEST_REGNO.  */
1745
1746 static bool
1747 covers_regno_no_parallel_p (const_rtx dest, unsigned int test_regno)
1748 {
1749   unsigned int regno, endregno;
1750
1751   if (GET_CODE (dest) == SUBREG
1752       && (((GET_MODE_SIZE (GET_MODE (dest))
1753             + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1754           == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1755                + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1756     dest = SUBREG_REG (dest);
1757
1758   if (!REG_P (dest))
1759     return false;
1760
1761   regno = REGNO (dest);
1762   endregno = END_REGNO (dest);
1763   return (test_regno >= regno && test_regno < endregno);
1764 }
1765
1766 /* Like covers_regno_no_parallel_p, but also handles PARALLELs where
1767    any member matches the covers_regno_no_parallel_p criteria.  */
1768
1769 static bool
1770 covers_regno_p (const_rtx dest, unsigned int test_regno)
1771 {
1772   if (GET_CODE (dest) == PARALLEL)
1773     {
1774       /* Some targets place small structures in registers for return
1775          values of functions, and those registers are wrapped in
1776          PARALLELs that we may see as the destination of a SET.  */
1777       int i;
1778
1779       for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1780         {
1781           rtx inner = XEXP (XVECEXP (dest, 0, i), 0);
1782           if (inner != NULL_RTX
1783               && covers_regno_no_parallel_p (inner, test_regno))
1784             return true;
1785         }
1786
1787       return false;
1788     }
1789   else
1790     return covers_regno_no_parallel_p (dest, test_regno);
1791 }
1792
1793 /* Utility function for dead_or_set_p to check an individual register. */
1794
1795 int
1796 dead_or_set_regno_p (const_rtx insn, unsigned int test_regno)
1797 {
1798   const_rtx pattern;
1799
1800   /* See if there is a death note for something that includes TEST_REGNO.  */
1801   if (find_regno_note (insn, REG_DEAD, test_regno))
1802     return 1;
1803
1804   if (CALL_P (insn)
1805       && find_regno_fusage (insn, CLOBBER, test_regno))
1806     return 1;
1807
1808   pattern = PATTERN (insn);
1809
1810   /* If a COND_EXEC is not executed, the value survives.  */
1811   if (GET_CODE (pattern) == COND_EXEC)
1812     return 0;
1813
1814   if (GET_CODE (pattern) == SET)
1815     return covers_regno_p (SET_DEST (pattern), test_regno);
1816   else if (GET_CODE (pattern) == PARALLEL)
1817     {
1818       int i;
1819
1820       for (i = XVECLEN (pattern, 0) - 1; i >= 0; i--)
1821         {
1822           rtx body = XVECEXP (pattern, 0, i);
1823
1824           if (GET_CODE (body) == COND_EXEC)
1825             body = COND_EXEC_CODE (body);
1826
1827           if ((GET_CODE (body) == SET || GET_CODE (body) == CLOBBER)
1828               && covers_regno_p (SET_DEST (body), test_regno))
1829             return 1;
1830         }
1831     }
1832
1833   return 0;
1834 }
1835
1836 /* Return the reg-note of kind KIND in insn INSN, if there is one.
1837    If DATUM is nonzero, look for one whose datum is DATUM.  */
1838
1839 rtx
1840 find_reg_note (const_rtx insn, enum reg_note kind, const_rtx datum)
1841 {
1842   rtx link;
1843
1844   gcc_checking_assert (insn);
1845
1846   /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN.  */
1847   if (! INSN_P (insn))
1848     return 0;
1849   if (datum == 0)
1850     {
1851       for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1852         if (REG_NOTE_KIND (link) == kind)
1853           return link;
1854       return 0;
1855     }
1856
1857   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1858     if (REG_NOTE_KIND (link) == kind && datum == XEXP (link, 0))
1859       return link;
1860   return 0;
1861 }
1862
1863 /* Return the reg-note of kind KIND in insn INSN which applies to register
1864    number REGNO, if any.  Return 0 if there is no such reg-note.  Note that
1865    the REGNO of this NOTE need not be REGNO if REGNO is a hard register;
1866    it might be the case that the note overlaps REGNO.  */
1867
1868 rtx
1869 find_regno_note (const_rtx insn, enum reg_note kind, unsigned int regno)
1870 {
1871   rtx link;
1872
1873   /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN.  */
1874   if (! INSN_P (insn))
1875     return 0;
1876
1877   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1878     if (REG_NOTE_KIND (link) == kind
1879         /* Verify that it is a register, so that scratch and MEM won't cause a
1880            problem here.  */
1881         && REG_P (XEXP (link, 0))
1882         && REGNO (XEXP (link, 0)) <= regno
1883         && END_REGNO (XEXP (link, 0)) > regno)
1884       return link;
1885   return 0;
1886 }
1887
1888 /* Return a REG_EQUIV or REG_EQUAL note if insn has only a single set and
1889    has such a note.  */
1890
1891 rtx
1892 find_reg_equal_equiv_note (const_rtx insn)
1893 {
1894   rtx link;
1895
1896   if (!INSN_P (insn))
1897     return 0;
1898
1899   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1900     if (REG_NOTE_KIND (link) == REG_EQUAL
1901         || REG_NOTE_KIND (link) == REG_EQUIV)
1902       {
1903         /* FIXME: We should never have REG_EQUAL/REG_EQUIV notes on
1904            insns that have multiple sets.  Checking single_set to
1905            make sure of this is not the proper check, as explained
1906            in the comment in set_unique_reg_note.
1907
1908            This should be changed into an assert.  */
1909         if (GET_CODE (PATTERN (insn)) == PARALLEL && multiple_sets (insn))
1910           return 0;
1911         return link;
1912       }
1913   return NULL;
1914 }
1915
1916 /* Check whether INSN is a single_set whose source is known to be
1917    equivalent to a constant.  Return that constant if so, otherwise
1918    return null.  */
1919
1920 rtx
1921 find_constant_src (const rtx_insn *insn)
1922 {
1923   rtx note, set, x;
1924
1925   set = single_set (insn);
1926   if (set)
1927     {
1928       x = avoid_constant_pool_reference (SET_SRC (set));
1929       if (CONSTANT_P (x))
1930         return x;
1931     }
1932
1933   note = find_reg_equal_equiv_note (insn);
1934   if (note && CONSTANT_P (XEXP (note, 0)))
1935     return XEXP (note, 0);
1936
1937   return NULL_RTX;
1938 }
1939
1940 /* Return true if DATUM, or any overlap of DATUM, of kind CODE is found
1941    in the CALL_INSN_FUNCTION_USAGE information of INSN.  */
1942
1943 int
1944 find_reg_fusage (const_rtx insn, enum rtx_code code, const_rtx datum)
1945 {
1946   /* If it's not a CALL_INSN, it can't possibly have a
1947      CALL_INSN_FUNCTION_USAGE field, so don't bother checking.  */
1948   if (!CALL_P (insn))
1949     return 0;
1950
1951   gcc_assert (datum);
1952
1953   if (!REG_P (datum))
1954     {
1955       rtx link;
1956
1957       for (link = CALL_INSN_FUNCTION_USAGE (insn);
1958            link;
1959            link = XEXP (link, 1))
1960         if (GET_CODE (XEXP (link, 0)) == code
1961             && rtx_equal_p (datum, XEXP (XEXP (link, 0), 0)))
1962           return 1;
1963     }
1964   else
1965     {
1966       unsigned int regno = REGNO (datum);
1967
1968       /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1969          to pseudo registers, so don't bother checking.  */
1970
1971       if (regno < FIRST_PSEUDO_REGISTER)
1972         {
1973           unsigned int end_regno = END_HARD_REGNO (datum);
1974           unsigned int i;
1975
1976           for (i = regno; i < end_regno; i++)
1977             if (find_regno_fusage (insn, code, i))
1978               return 1;
1979         }
1980     }
1981
1982   return 0;
1983 }
1984
1985 /* Return true if REGNO, or any overlap of REGNO, of kind CODE is found
1986    in the CALL_INSN_FUNCTION_USAGE information of INSN.  */
1987
1988 int
1989 find_regno_fusage (const_rtx insn, enum rtx_code code, unsigned int regno)
1990 {
1991   rtx link;
1992
1993   /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1994      to pseudo registers, so don't bother checking.  */
1995
1996   if (regno >= FIRST_PSEUDO_REGISTER
1997       || !CALL_P (insn) )
1998     return 0;
1999
2000   for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
2001     {
2002       rtx op, reg;
2003
2004       if (GET_CODE (op = XEXP (link, 0)) == code
2005           && REG_P (reg = XEXP (op, 0))
2006           && REGNO (reg) <= regno
2007           && END_HARD_REGNO (reg) > regno)
2008         return 1;
2009     }
2010
2011   return 0;
2012 }
2013
2014 \f
2015 /* Return true if KIND is an integer REG_NOTE.  */
2016
2017 static bool
2018 int_reg_note_p (enum reg_note kind)
2019 {
2020   return kind == REG_BR_PROB;
2021 }
2022
2023 /* Allocate a register note with kind KIND and datum DATUM.  LIST is
2024    stored as the pointer to the next register note.  */
2025
2026 rtx
2027 alloc_reg_note (enum reg_note kind, rtx datum, rtx list)
2028 {
2029   rtx note;
2030
2031   gcc_checking_assert (!int_reg_note_p (kind));
2032   switch (kind)
2033     {
2034     case REG_CC_SETTER:
2035     case REG_CC_USER:
2036     case REG_LABEL_TARGET:
2037     case REG_LABEL_OPERAND:
2038     case REG_TM:
2039       /* These types of register notes use an INSN_LIST rather than an
2040          EXPR_LIST, so that copying is done right and dumps look
2041          better.  */
2042       note = alloc_INSN_LIST (datum, list);
2043       PUT_REG_NOTE_KIND (note, kind);
2044       break;
2045
2046     default:
2047       note = alloc_EXPR_LIST (kind, datum, list);
2048       break;
2049     }
2050
2051   return note;
2052 }
2053
2054 /* Add register note with kind KIND and datum DATUM to INSN.  */
2055
2056 void
2057 add_reg_note (rtx insn, enum reg_note kind, rtx datum)
2058 {
2059   REG_NOTES (insn) = alloc_reg_note (kind, datum, REG_NOTES (insn));
2060 }
2061
2062 /* Add an integer register note with kind KIND and datum DATUM to INSN.  */
2063
2064 void
2065 add_int_reg_note (rtx insn, enum reg_note kind, int datum)
2066 {
2067   gcc_checking_assert (int_reg_note_p (kind));
2068   REG_NOTES (insn) = gen_rtx_INT_LIST ((enum machine_mode) kind,
2069                                        datum, REG_NOTES (insn));
2070 }
2071
2072 /* Add a register note like NOTE to INSN.  */
2073
2074 void
2075 add_shallow_copy_of_reg_note (rtx insn, rtx note)
2076 {
2077   if (GET_CODE (note) == INT_LIST)
2078     add_int_reg_note (insn, REG_NOTE_KIND (note), XINT (note, 0));
2079   else
2080     add_reg_note (insn, REG_NOTE_KIND (note), XEXP (note, 0));
2081 }
2082
2083 /* Remove register note NOTE from the REG_NOTES of INSN.  */
2084
2085 void
2086 remove_note (rtx insn, const_rtx note)
2087 {
2088   rtx link;
2089
2090   if (note == NULL_RTX)
2091     return;
2092
2093   if (REG_NOTES (insn) == note)
2094     REG_NOTES (insn) = XEXP (note, 1);
2095   else
2096     for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
2097       if (XEXP (link, 1) == note)
2098         {
2099           XEXP (link, 1) = XEXP (note, 1);
2100           break;
2101         }
2102
2103   switch (REG_NOTE_KIND (note))
2104     {
2105     case REG_EQUAL:
2106     case REG_EQUIV:
2107       df_notes_rescan (as_a <rtx_insn *> (insn));
2108       break;
2109     default:
2110       break;
2111     }
2112 }
2113
2114 /* Remove REG_EQUAL and/or REG_EQUIV notes if INSN has such notes.  */
2115
2116 void
2117 remove_reg_equal_equiv_notes (rtx insn)
2118 {
2119   rtx *loc;
2120
2121   loc = &REG_NOTES (insn);
2122   while (*loc)
2123     {
2124       enum reg_note kind = REG_NOTE_KIND (*loc);
2125       if (kind == REG_EQUAL || kind == REG_EQUIV)
2126         *loc = XEXP (*loc, 1);
2127       else
2128         loc = &XEXP (*loc, 1);
2129     }
2130 }
2131
2132 /* Remove all REG_EQUAL and REG_EQUIV notes referring to REGNO.  */
2133
2134 void
2135 remove_reg_equal_equiv_notes_for_regno (unsigned int regno)
2136 {
2137   df_ref eq_use;
2138
2139   if (!df)
2140     return;
2141
2142   /* This loop is a little tricky.  We cannot just go down the chain because
2143      it is being modified by some actions in the loop.  So we just iterate
2144      over the head.  We plan to drain the list anyway.  */
2145   while ((eq_use = DF_REG_EQ_USE_CHAIN (regno)) != NULL)
2146     {
2147       rtx_insn *insn = DF_REF_INSN (eq_use);
2148       rtx note = find_reg_equal_equiv_note (insn);
2149
2150       /* This assert is generally triggered when someone deletes a REG_EQUAL
2151          or REG_EQUIV note by hacking the list manually rather than calling
2152          remove_note.  */
2153       gcc_assert (note);
2154
2155       remove_note (insn, note);
2156     }
2157 }
2158
2159 /* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
2160    return 1 if it is found.  A simple equality test is used to determine if
2161    NODE matches.  */
2162
2163 int
2164 in_expr_list_p (const_rtx listp, const_rtx node)
2165 {
2166   const_rtx x;
2167
2168   for (x = listp; x; x = XEXP (x, 1))
2169     if (node == XEXP (x, 0))
2170       return 1;
2171
2172   return 0;
2173 }
2174
2175 /* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
2176    remove that entry from the list if it is found.
2177
2178    A simple equality test is used to determine if NODE matches.  */
2179
2180 void
2181 remove_node_from_expr_list (const_rtx node, rtx_expr_list **listp)
2182 {
2183   rtx_expr_list *temp = *listp;
2184   rtx prev = NULL_RTX;
2185
2186   while (temp)
2187     {
2188       if (node == temp->element ())
2189         {
2190           /* Splice the node out of the list.  */
2191           if (prev)
2192             XEXP (prev, 1) = temp->next ();
2193           else
2194             *listp = temp->next ();
2195
2196           return;
2197         }
2198
2199       prev = temp;
2200       temp = temp->next ();
2201     }
2202 }
2203
2204 /* Search LISTP (an INSN_LIST) for an entry whose first operand is NODE and
2205    remove that entry from the list if it is found.
2206
2207    A simple equality test is used to determine if NODE matches.  */
2208
2209 void
2210 remove_node_from_insn_list (const rtx_insn *node, rtx_insn_list **listp)
2211 {
2212   rtx_insn_list *temp = *listp;
2213   rtx prev = NULL;
2214
2215   while (temp)
2216     {
2217       if (node == temp->insn ())
2218         {
2219           /* Splice the node out of the list.  */
2220           if (prev)
2221             XEXP (prev, 1) = temp->next ();
2222           else
2223             *listp = temp->next ();
2224
2225           return;
2226         }
2227
2228       prev = temp;
2229       temp = temp->next ();
2230     }
2231 }
2232 \f
2233 /* Nonzero if X contains any volatile instructions.  These are instructions
2234    which may cause unpredictable machine state instructions, and thus no
2235    instructions or register uses should be moved or combined across them.
2236    This includes only volatile asms and UNSPEC_VOLATILE instructions.  */
2237
2238 int
2239 volatile_insn_p (const_rtx x)
2240 {
2241   const RTX_CODE code = GET_CODE (x);
2242   switch (code)
2243     {
2244     case LABEL_REF:
2245     case SYMBOL_REF:
2246     case CONST:
2247     CASE_CONST_ANY:
2248     case CC0:
2249     case PC:
2250     case REG:
2251     case SCRATCH:
2252     case CLOBBER:
2253     case ADDR_VEC:
2254     case ADDR_DIFF_VEC:
2255     case CALL:
2256     case MEM:
2257       return 0;
2258
2259     case UNSPEC_VOLATILE:
2260       return 1;
2261
2262     case ASM_INPUT:
2263     case ASM_OPERANDS:
2264       if (MEM_VOLATILE_P (x))
2265         return 1;
2266
2267     default:
2268       break;
2269     }
2270
2271   /* Recursively scan the operands of this expression.  */
2272
2273   {
2274     const char *const fmt = GET_RTX_FORMAT (code);
2275     int i;
2276
2277     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2278       {
2279         if (fmt[i] == 'e')
2280           {
2281             if (volatile_insn_p (XEXP (x, i)))
2282               return 1;
2283           }
2284         else if (fmt[i] == 'E')
2285           {
2286             int j;
2287             for (j = 0; j < XVECLEN (x, i); j++)
2288               if (volatile_insn_p (XVECEXP (x, i, j)))
2289                 return 1;
2290           }
2291       }
2292   }
2293   return 0;
2294 }
2295
2296 /* Nonzero if X contains any volatile memory references
2297    UNSPEC_VOLATILE operations or volatile ASM_OPERANDS expressions.  */
2298
2299 int
2300 volatile_refs_p (const_rtx x)
2301 {
2302   const RTX_CODE code = GET_CODE (x);
2303   switch (code)
2304     {
2305     case LABEL_REF:
2306     case SYMBOL_REF:
2307     case CONST:
2308     CASE_CONST_ANY:
2309     case CC0:
2310     case PC:
2311     case REG:
2312     case SCRATCH:
2313     case CLOBBER:
2314     case ADDR_VEC:
2315     case ADDR_DIFF_VEC:
2316       return 0;
2317
2318     case UNSPEC_VOLATILE:
2319       return 1;
2320
2321     case MEM:
2322     case ASM_INPUT:
2323     case ASM_OPERANDS:
2324       if (MEM_VOLATILE_P (x))
2325         return 1;
2326
2327     default:
2328       break;
2329     }
2330
2331   /* Recursively scan the operands of this expression.  */
2332
2333   {
2334     const char *const fmt = GET_RTX_FORMAT (code);
2335     int i;
2336
2337     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2338       {
2339         if (fmt[i] == 'e')
2340           {
2341             if (volatile_refs_p (XEXP (x, i)))
2342               return 1;
2343           }
2344         else if (fmt[i] == 'E')
2345           {
2346             int j;
2347             for (j = 0; j < XVECLEN (x, i); j++)
2348               if (volatile_refs_p (XVECEXP (x, i, j)))
2349                 return 1;
2350           }
2351       }
2352   }
2353   return 0;
2354 }
2355
2356 /* Similar to above, except that it also rejects register pre- and post-
2357    incrementing.  */
2358
2359 int
2360 side_effects_p (const_rtx x)
2361 {
2362   const RTX_CODE code = GET_CODE (x);
2363   switch (code)
2364     {
2365     case LABEL_REF:
2366     case SYMBOL_REF:
2367     case CONST:
2368     CASE_CONST_ANY:
2369     case CC0:
2370     case PC:
2371     case REG:
2372     case SCRATCH:
2373     case ADDR_VEC:
2374     case ADDR_DIFF_VEC:
2375     case VAR_LOCATION:
2376       return 0;
2377
2378     case CLOBBER:
2379       /* Reject CLOBBER with a non-VOID mode.  These are made by combine.c
2380          when some combination can't be done.  If we see one, don't think
2381          that we can simplify the expression.  */
2382       return (GET_MODE (x) != VOIDmode);
2383
2384     case PRE_INC:
2385     case PRE_DEC:
2386     case POST_INC:
2387     case POST_DEC:
2388     case PRE_MODIFY:
2389     case POST_MODIFY:
2390     case CALL:
2391     case UNSPEC_VOLATILE:
2392       return 1;
2393
2394     case MEM:
2395     case ASM_INPUT:
2396     case ASM_OPERANDS:
2397       if (MEM_VOLATILE_P (x))
2398         return 1;
2399
2400     default:
2401       break;
2402     }
2403
2404   /* Recursively scan the operands of this expression.  */
2405
2406   {
2407     const char *fmt = GET_RTX_FORMAT (code);
2408     int i;
2409
2410     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2411       {
2412         if (fmt[i] == 'e')
2413           {
2414             if (side_effects_p (XEXP (x, i)))
2415               return 1;
2416           }
2417         else if (fmt[i] == 'E')
2418           {
2419             int j;
2420             for (j = 0; j < XVECLEN (x, i); j++)
2421               if (side_effects_p (XVECEXP (x, i, j)))
2422                 return 1;
2423           }
2424       }
2425   }
2426   return 0;
2427 }
2428 \f
2429 /* Return nonzero if evaluating rtx X might cause a trap.
2430    FLAGS controls how to consider MEMs.  A nonzero means the context
2431    of the access may have changed from the original, such that the
2432    address may have become invalid.  */
2433
2434 int
2435 may_trap_p_1 (const_rtx x, unsigned flags)
2436 {
2437   int i;
2438   enum rtx_code code;
2439   const char *fmt;
2440
2441   /* We make no distinction currently, but this function is part of
2442      the internal target-hooks ABI so we keep the parameter as
2443      "unsigned flags".  */
2444   bool code_changed = flags != 0;
2445
2446   if (x == 0)
2447     return 0;
2448   code = GET_CODE (x);
2449   switch (code)
2450     {
2451       /* Handle these cases quickly.  */
2452     CASE_CONST_ANY:
2453     case SYMBOL_REF:
2454     case LABEL_REF:
2455     case CONST:
2456     case PC:
2457     case CC0:
2458     case REG:
2459     case SCRATCH:
2460       return 0;
2461
2462     case UNSPEC:
2463       return targetm.unspec_may_trap_p (x, flags);
2464
2465     case UNSPEC_VOLATILE:
2466     case ASM_INPUT:
2467     case TRAP_IF:
2468       return 1;
2469
2470     case ASM_OPERANDS:
2471       return MEM_VOLATILE_P (x);
2472
2473       /* Memory ref can trap unless it's a static var or a stack slot.  */
2474     case MEM:
2475       /* Recognize specific pattern of stack checking probes.  */
2476       if (flag_stack_check
2477           && MEM_VOLATILE_P (x)
2478           && XEXP (x, 0) == stack_pointer_rtx)
2479         return 1;
2480       if (/* MEM_NOTRAP_P only relates to the actual position of the memory
2481              reference; moving it out of context such as when moving code
2482              when optimizing, might cause its address to become invalid.  */
2483           code_changed
2484           || !MEM_NOTRAP_P (x))
2485         {
2486           HOST_WIDE_INT size = MEM_SIZE_KNOWN_P (x) ? MEM_SIZE (x) : 0;
2487           return rtx_addr_can_trap_p_1 (XEXP (x, 0), 0, size,
2488                                         GET_MODE (x), code_changed);
2489         }
2490
2491       return 0;
2492
2493       /* Division by a non-constant might trap.  */
2494     case DIV:
2495     case MOD:
2496     case UDIV:
2497     case UMOD:
2498       if (HONOR_SNANS (GET_MODE (x)))
2499         return 1;
2500       if (SCALAR_FLOAT_MODE_P (GET_MODE (x)))
2501         return flag_trapping_math;
2502       if (!CONSTANT_P (XEXP (x, 1)) || (XEXP (x, 1) == const0_rtx))
2503         return 1;
2504       break;
2505
2506     case EXPR_LIST:
2507       /* An EXPR_LIST is used to represent a function call.  This
2508          certainly may trap.  */
2509       return 1;
2510
2511     case GE:
2512     case GT:
2513     case LE:
2514     case LT:
2515     case LTGT:
2516     case COMPARE:
2517       /* Some floating point comparisons may trap.  */
2518       if (!flag_trapping_math)
2519         break;
2520       /* ??? There is no machine independent way to check for tests that trap
2521          when COMPARE is used, though many targets do make this distinction.
2522          For instance, sparc uses CCFPE for compares which generate exceptions
2523          and CCFP for compares which do not generate exceptions.  */
2524       if (HONOR_NANS (GET_MODE (x)))
2525         return 1;
2526       /* But often the compare has some CC mode, so check operand
2527          modes as well.  */
2528       if (HONOR_NANS (GET_MODE (XEXP (x, 0)))
2529           || HONOR_NANS (GET_MODE (XEXP (x, 1))))
2530         return 1;
2531       break;
2532
2533     case EQ:
2534     case NE:
2535       if (HONOR_SNANS (GET_MODE (x)))
2536         return 1;
2537       /* Often comparison is CC mode, so check operand modes.  */
2538       if (HONOR_SNANS (GET_MODE (XEXP (x, 0)))
2539           || HONOR_SNANS (GET_MODE (XEXP (x, 1))))
2540         return 1;
2541       break;
2542
2543     case FIX:
2544       /* Conversion of floating point might trap.  */
2545       if (flag_trapping_math && HONOR_NANS (GET_MODE (XEXP (x, 0))))
2546         return 1;
2547       break;
2548
2549     case NEG:
2550     case ABS:
2551     case SUBREG:
2552       /* These operations don't trap even with floating point.  */
2553       break;
2554
2555     default:
2556       /* Any floating arithmetic may trap.  */
2557       if (SCALAR_FLOAT_MODE_P (GET_MODE (x)) && flag_trapping_math)
2558         return 1;
2559     }
2560
2561   fmt = GET_RTX_FORMAT (code);
2562   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2563     {
2564       if (fmt[i] == 'e')
2565         {
2566           if (may_trap_p_1 (XEXP (x, i), flags))
2567             return 1;
2568         }
2569       else if (fmt[i] == 'E')
2570         {
2571           int j;
2572           for (j = 0; j < XVECLEN (x, i); j++)
2573             if (may_trap_p_1 (XVECEXP (x, i, j), flags))
2574               return 1;
2575         }
2576     }
2577   return 0;
2578 }
2579
2580 /* Return nonzero if evaluating rtx X might cause a trap.  */
2581
2582 int
2583 may_trap_p (const_rtx x)
2584 {
2585   return may_trap_p_1 (x, 0);
2586 }
2587
2588 /* Same as above, but additionally return nonzero if evaluating rtx X might
2589    cause a fault.  We define a fault for the purpose of this function as a
2590    erroneous execution condition that cannot be encountered during the normal
2591    execution of a valid program; the typical example is an unaligned memory
2592    access on a strict alignment machine.  The compiler guarantees that it
2593    doesn't generate code that will fault from a valid program, but this
2594    guarantee doesn't mean anything for individual instructions.  Consider
2595    the following example:
2596
2597       struct S { int d; union { char *cp; int *ip; }; };
2598
2599       int foo(struct S *s)
2600       {
2601         if (s->d == 1)
2602           return *s->ip;
2603         else
2604           return *s->cp;
2605       }
2606
2607    on a strict alignment machine.  In a valid program, foo will never be
2608    invoked on a structure for which d is equal to 1 and the underlying
2609    unique field of the union not aligned on a 4-byte boundary, but the
2610    expression *s->ip might cause a fault if considered individually.
2611
2612    At the RTL level, potentially problematic expressions will almost always
2613    verify may_trap_p; for example, the above dereference can be emitted as
2614    (mem:SI (reg:P)) and this expression is may_trap_p for a generic register.
2615    However, suppose that foo is inlined in a caller that causes s->cp to
2616    point to a local character variable and guarantees that s->d is not set
2617    to 1; foo may have been effectively translated into pseudo-RTL as:
2618
2619       if ((reg:SI) == 1)
2620         (set (reg:SI) (mem:SI (%fp - 7)))
2621       else
2622         (set (reg:QI) (mem:QI (%fp - 7)))
2623
2624    Now (mem:SI (%fp - 7)) is considered as not may_trap_p since it is a
2625    memory reference to a stack slot, but it will certainly cause a fault
2626    on a strict alignment machine.  */
2627
2628 int
2629 may_trap_or_fault_p (const_rtx x)
2630 {
2631   return may_trap_p_1 (x, 1);
2632 }
2633 \f
2634 /* Return nonzero if X contains a comparison that is not either EQ or NE,
2635    i.e., an inequality.  */
2636
2637 int
2638 inequality_comparisons_p (const_rtx x)
2639 {
2640   const char *fmt;
2641   int len, i;
2642   const enum rtx_code code = GET_CODE (x);
2643
2644   switch (code)
2645     {
2646     case REG:
2647     case SCRATCH:
2648     case PC:
2649     case CC0:
2650     CASE_CONST_ANY:
2651     case CONST:
2652     case LABEL_REF:
2653     case SYMBOL_REF:
2654       return 0;
2655
2656     case LT:
2657     case LTU:
2658     case GT:
2659     case GTU:
2660     case LE:
2661     case LEU:
2662     case GE:
2663     case GEU:
2664       return 1;
2665
2666     default:
2667       break;
2668     }
2669
2670   len = GET_RTX_LENGTH (code);
2671   fmt = GET_RTX_FORMAT (code);
2672
2673   for (i = 0; i < len; i++)
2674     {
2675       if (fmt[i] == 'e')
2676         {
2677           if (inequality_comparisons_p (XEXP (x, i)))
2678             return 1;
2679         }
2680       else if (fmt[i] == 'E')
2681         {
2682           int j;
2683           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2684             if (inequality_comparisons_p (XVECEXP (x, i, j)))
2685               return 1;
2686         }
2687     }
2688
2689   return 0;
2690 }
2691 \f
2692 /* Replace any occurrence of FROM in X with TO.  The function does
2693    not enter into CONST_DOUBLE for the replace.
2694
2695    Note that copying is not done so X must not be shared unless all copies
2696    are to be modified.  */
2697
2698 rtx
2699 replace_rtx (rtx x, rtx from, rtx to)
2700 {
2701   int i, j;
2702   const char *fmt;
2703
2704   if (x == from)
2705     return to;
2706
2707   /* Allow this function to make replacements in EXPR_LISTs.  */
2708   if (x == 0)
2709     return 0;
2710
2711   if (GET_CODE (x) == SUBREG)
2712     {
2713       rtx new_rtx = replace_rtx (SUBREG_REG (x), from, to);
2714
2715       if (CONST_INT_P (new_rtx))
2716         {
2717           x = simplify_subreg (GET_MODE (x), new_rtx,
2718                                GET_MODE (SUBREG_REG (x)),
2719                                SUBREG_BYTE (x));
2720           gcc_assert (x);
2721         }
2722       else
2723         SUBREG_REG (x) = new_rtx;
2724
2725       return x;
2726     }
2727   else if (GET_CODE (x) == ZERO_EXTEND)
2728     {
2729       rtx new_rtx = replace_rtx (XEXP (x, 0), from, to);
2730
2731       if (CONST_INT_P (new_rtx))
2732         {
2733           x = simplify_unary_operation (ZERO_EXTEND, GET_MODE (x),
2734                                         new_rtx, GET_MODE (XEXP (x, 0)));
2735           gcc_assert (x);
2736         }
2737       else
2738         XEXP (x, 0) = new_rtx;
2739
2740       return x;
2741     }
2742
2743   fmt = GET_RTX_FORMAT (GET_CODE (x));
2744   for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
2745     {
2746       if (fmt[i] == 'e')
2747         XEXP (x, i) = replace_rtx (XEXP (x, i), from, to);
2748       else if (fmt[i] == 'E')
2749         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2750           XVECEXP (x, i, j) = replace_rtx (XVECEXP (x, i, j), from, to);
2751     }
2752
2753   return x;
2754 }
2755 \f
2756 /* Replace occurrences of the OLD_LABEL in *LOC with NEW_LABEL.  Also track
2757    the change in LABEL_NUSES if UPDATE_LABEL_NUSES.  */
2758
2759 void
2760 replace_label (rtx *loc, rtx old_label, rtx new_label, bool update_label_nuses)
2761 {
2762   /* Handle jump tables specially, since ADDR_{DIFF_,}VECs can be long.  */
2763   rtx x = *loc;
2764   if (JUMP_TABLE_DATA_P (x))
2765     {
2766       x = PATTERN (x);
2767       rtvec vec = XVEC (x, GET_CODE (x) == ADDR_DIFF_VEC);
2768       int len = GET_NUM_ELEM (vec);
2769       for (int i = 0; i < len; ++i)
2770         {
2771           rtx ref = RTVEC_ELT (vec, i);
2772           if (XEXP (ref, 0) == old_label)
2773             {
2774               XEXP (ref, 0) = new_label;
2775               if (update_label_nuses)
2776                 {
2777                   ++LABEL_NUSES (new_label);
2778                   --LABEL_NUSES (old_label);
2779                 }
2780             }
2781         }
2782       return;
2783     }
2784
2785   /* If this is a JUMP_INSN, then we also need to fix the JUMP_LABEL
2786      field.  This is not handled by the iterator because it doesn't
2787      handle unprinted ('0') fields.  */
2788   if (JUMP_P (x) && JUMP_LABEL (x) == old_label)
2789     JUMP_LABEL (x) = new_label;
2790
2791   subrtx_ptr_iterator::array_type array;
2792   FOR_EACH_SUBRTX_PTR (iter, array, loc, ALL)
2793     {
2794       rtx *loc = *iter;
2795       if (rtx x = *loc)
2796         {
2797           if (GET_CODE (x) == SYMBOL_REF
2798               && CONSTANT_POOL_ADDRESS_P (x))
2799             {
2800               rtx c = get_pool_constant (x);
2801               if (rtx_referenced_p (old_label, c))
2802                 {
2803                   /* Create a copy of constant C; replace the label inside
2804                      but do not update LABEL_NUSES because uses in constant pool
2805                      are not counted.  */
2806                   rtx new_c = copy_rtx (c);
2807                   replace_label (&new_c, old_label, new_label, false);
2808
2809                   /* Add the new constant NEW_C to constant pool and replace
2810                      the old reference to constant by new reference.  */
2811                   rtx new_mem = force_const_mem (get_pool_mode (x), new_c);
2812                   *loc = replace_rtx (x, x, XEXP (new_mem, 0));
2813                 }
2814             }
2815
2816           if ((GET_CODE (x) == LABEL_REF
2817                || GET_CODE (x) == INSN_LIST)
2818               && XEXP (x, 0) == old_label)
2819             {
2820               XEXP (x, 0) = new_label;
2821               if (update_label_nuses)
2822                 {
2823                   ++LABEL_NUSES (new_label);
2824                   --LABEL_NUSES (old_label);
2825                 }
2826             }
2827         }
2828     }
2829 }
2830
2831 void
2832 replace_label_in_insn (rtx_insn *insn, rtx old_label, rtx new_label,
2833                        bool update_label_nuses)
2834 {
2835   rtx insn_as_rtx = insn;
2836   replace_label (&insn_as_rtx, old_label, new_label, update_label_nuses);
2837   gcc_checking_assert (insn_as_rtx == insn);
2838 }
2839
2840 /* Return true if X is referenced in BODY.  */
2841
2842 bool
2843 rtx_referenced_p (const_rtx x, const_rtx body)
2844 {
2845   subrtx_iterator::array_type array;
2846   FOR_EACH_SUBRTX (iter, array, body, ALL)
2847     if (const_rtx y = *iter)
2848       {
2849         /* Check if a label_ref Y refers to label X.  */
2850         if (GET_CODE (y) == LABEL_REF && LABEL_P (x) && XEXP (y, 0) == x)
2851           return true;
2852
2853         if (rtx_equal_p (x, y))
2854           return true;
2855
2856         /* If Y is a reference to pool constant traverse the constant.  */
2857         if (GET_CODE (y) == SYMBOL_REF
2858             && CONSTANT_POOL_ADDRESS_P (y))
2859           iter.substitute (get_pool_constant (y));
2860       }
2861   return false;
2862 }
2863
2864 /* If INSN is a tablejump return true and store the label (before jump table) to
2865    *LABELP and the jump table to *TABLEP.  LABELP and TABLEP may be NULL.  */
2866
2867 bool
2868 tablejump_p (const rtx_insn *insn, rtx *labelp, rtx_jump_table_data **tablep)
2869 {
2870   rtx label, table;
2871
2872   if (!JUMP_P (insn))
2873     return false;
2874
2875   label = JUMP_LABEL (insn);
2876   if (label != NULL_RTX && !ANY_RETURN_P (label)
2877       && (table = NEXT_INSN (as_a <rtx_insn *> (label))) != NULL_RTX
2878       && JUMP_TABLE_DATA_P (table))
2879     {
2880       if (labelp)
2881         *labelp = label;
2882       if (tablep)
2883         *tablep = as_a <rtx_jump_table_data *> (table);
2884       return true;
2885     }
2886   return false;
2887 }
2888
2889 /* A subroutine of computed_jump_p, return 1 if X contains a REG or MEM or
2890    constant that is not in the constant pool and not in the condition
2891    of an IF_THEN_ELSE.  */
2892
2893 static int
2894 computed_jump_p_1 (const_rtx x)
2895 {
2896   const enum rtx_code code = GET_CODE (x);
2897   int i, j;
2898   const char *fmt;
2899
2900   switch (code)
2901     {
2902     case LABEL_REF:
2903     case PC:
2904       return 0;
2905
2906     case CONST:
2907     CASE_CONST_ANY:
2908     case SYMBOL_REF:
2909     case REG:
2910       return 1;
2911
2912     case MEM:
2913       return ! (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
2914                 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)));
2915
2916     case IF_THEN_ELSE:
2917       return (computed_jump_p_1 (XEXP (x, 1))
2918               || computed_jump_p_1 (XEXP (x, 2)));
2919
2920     default:
2921       break;
2922     }
2923
2924   fmt = GET_RTX_FORMAT (code);
2925   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2926     {
2927       if (fmt[i] == 'e'
2928           && computed_jump_p_1 (XEXP (x, i)))
2929         return 1;
2930
2931       else if (fmt[i] == 'E')
2932         for (j = 0; j < XVECLEN (x, i); j++)
2933           if (computed_jump_p_1 (XVECEXP (x, i, j)))
2934             return 1;
2935     }
2936
2937   return 0;
2938 }
2939
2940 /* Return nonzero if INSN is an indirect jump (aka computed jump).
2941
2942    Tablejumps and casesi insns are not considered indirect jumps;
2943    we can recognize them by a (use (label_ref)).  */
2944
2945 int
2946 computed_jump_p (const_rtx insn)
2947 {
2948   int i;
2949   if (JUMP_P (insn))
2950     {
2951       rtx pat = PATTERN (insn);
2952
2953       /* If we have a JUMP_LABEL set, we're not a computed jump.  */
2954       if (JUMP_LABEL (insn) != NULL)
2955         return 0;
2956
2957       if (GET_CODE (pat) == PARALLEL)
2958         {
2959           int len = XVECLEN (pat, 0);
2960           int has_use_labelref = 0;
2961
2962           for (i = len - 1; i >= 0; i--)
2963             if (GET_CODE (XVECEXP (pat, 0, i)) == USE
2964                 && (GET_CODE (XEXP (XVECEXP (pat, 0, i), 0))
2965                     == LABEL_REF))
2966               {
2967                 has_use_labelref = 1;
2968                 break;
2969               }
2970
2971           if (! has_use_labelref)
2972             for (i = len - 1; i >= 0; i--)
2973               if (GET_CODE (XVECEXP (pat, 0, i)) == SET
2974                   && SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx
2975                   && computed_jump_p_1 (SET_SRC (XVECEXP (pat, 0, i))))
2976                 return 1;
2977         }
2978       else if (GET_CODE (pat) == SET
2979                && SET_DEST (pat) == pc_rtx
2980                && computed_jump_p_1 (SET_SRC (pat)))
2981         return 1;
2982     }
2983   return 0;
2984 }
2985
2986 /* Optimized loop of for_each_rtx, trying to avoid useless recursive
2987    calls.  Processes the subexpressions of EXP and passes them to F.  */
2988 static int
2989 for_each_rtx_1 (rtx exp, int n, rtx_function f, void *data)
2990 {
2991   int result, i, j;
2992   const char *format = GET_RTX_FORMAT (GET_CODE (exp));
2993   rtx *x;
2994
2995   for (; format[n] != '\0'; n++)
2996     {
2997       switch (format[n])
2998         {
2999         case 'e':
3000           /* Call F on X.  */
3001           x = &XEXP (exp, n);
3002           result = (*f) (x, data);
3003           if (result == -1)
3004             /* Do not traverse sub-expressions.  */
3005             continue;
3006           else if (result != 0)
3007             /* Stop the traversal.  */
3008             return result;
3009
3010           if (*x == NULL_RTX)
3011             /* There are no sub-expressions.  */
3012             continue;
3013
3014           i = non_rtx_starting_operands[GET_CODE (*x)];
3015           if (i >= 0)
3016             {
3017               result = for_each_rtx_1 (*x, i, f, data);
3018               if (result != 0)
3019                 return result;
3020             }
3021           break;
3022
3023         case 'V':
3024         case 'E':
3025           if (XVEC (exp, n) == 0)
3026             continue;
3027           for (j = 0; j < XVECLEN (exp, n); ++j)
3028             {
3029               /* Call F on X.  */
3030               x = &XVECEXP (exp, n, j);
3031               result = (*f) (x, data);
3032               if (result == -1)
3033                 /* Do not traverse sub-expressions.  */
3034                 continue;
3035               else if (result != 0)
3036                 /* Stop the traversal.  */
3037                 return result;
3038
3039               if (*x == NULL_RTX)
3040                 /* There are no sub-expressions.  */
3041                 continue;
3042
3043               i = non_rtx_starting_operands[GET_CODE (*x)];
3044               if (i >= 0)
3045                 {
3046                   result = for_each_rtx_1 (*x, i, f, data);
3047                   if (result != 0)
3048                     return result;
3049                 }
3050             }
3051           break;
3052
3053         default:
3054           /* Nothing to do.  */
3055           break;
3056         }
3057     }
3058
3059   return 0;
3060 }
3061
3062 /* Traverse X via depth-first search, calling F for each
3063    sub-expression (including X itself).  F is also passed the DATA.
3064    If F returns -1, do not traverse sub-expressions, but continue
3065    traversing the rest of the tree.  If F ever returns any other
3066    nonzero value, stop the traversal, and return the value returned
3067    by F.  Otherwise, return 0.  This function does not traverse inside
3068    tree structure that contains RTX_EXPRs, or into sub-expressions
3069    whose format code is `0' since it is not known whether or not those
3070    codes are actually RTL.
3071
3072    This routine is very general, and could (should?) be used to
3073    implement many of the other routines in this file.  */
3074
3075 int
3076 for_each_rtx (rtx *x, rtx_function f, void *data)
3077 {
3078   int result;
3079   int i;
3080
3081   /* Call F on X.  */
3082   result = (*f) (x, data);
3083   if (result == -1)
3084     /* Do not traverse sub-expressions.  */
3085     return 0;
3086   else if (result != 0)
3087     /* Stop the traversal.  */
3088     return result;
3089
3090   if (*x == NULL_RTX)
3091     /* There are no sub-expressions.  */
3092     return 0;
3093
3094   i = non_rtx_starting_operands[GET_CODE (*x)];
3095   if (i < 0)
3096     return 0;
3097
3098   return for_each_rtx_1 (*x, i, f, data);
3099 }
3100
3101 /* Like "for_each_rtx", but for calling on an rtx_insn **.  */
3102
3103 int
3104 for_each_rtx_in_insn (rtx_insn **insn, rtx_function f, void *data)
3105 {
3106   rtx insn_as_rtx = *insn;
3107   int result;
3108
3109   result = for_each_rtx (&insn_as_rtx, f, data);
3110
3111   if (insn_as_rtx != *insn)
3112     *insn = safe_as_a <rtx_insn *> (insn_as_rtx);
3113
3114   return result;
3115 }
3116
3117 \f
3118
3119 /* MEM has a PRE/POST-INC/DEC/MODIFY address X.  Extract the operands of
3120    the equivalent add insn and pass the result to FN, using DATA as the
3121    final argument.  */
3122
3123 static int
3124 for_each_inc_dec_find_inc_dec (rtx mem, for_each_inc_dec_fn fn, void *data)
3125 {
3126   rtx x = XEXP (mem, 0);
3127   switch (GET_CODE (x))
3128     {
3129     case PRE_INC:
3130     case POST_INC:
3131       {
3132         int size = GET_MODE_SIZE (GET_MODE (mem));
3133         rtx r1 = XEXP (x, 0);
3134         rtx c = gen_int_mode (size, GET_MODE (r1));
3135         return fn (mem, x, r1, r1, c, data);
3136       }
3137
3138     case PRE_DEC:
3139     case POST_DEC:
3140       {
3141         int size = GET_MODE_SIZE (GET_MODE (mem));
3142         rtx r1 = XEXP (x, 0);
3143         rtx c = gen_int_mode (-size, GET_MODE (r1));
3144         return fn (mem, x, r1, r1, c, data);
3145       }
3146
3147     case PRE_MODIFY:
3148     case POST_MODIFY:
3149       {
3150         rtx r1 = XEXP (x, 0);
3151         rtx add = XEXP (x, 1);
3152         return fn (mem, x, r1, add, NULL, data);
3153       }
3154
3155     default:
3156       gcc_unreachable ();
3157     }
3158 }
3159
3160 /* Traverse *LOC looking for MEMs that have autoinc addresses.
3161    For each such autoinc operation found, call FN, passing it
3162    the innermost enclosing MEM, the operation itself, the RTX modified
3163    by the operation, two RTXs (the second may be NULL) that, once
3164    added, represent the value to be held by the modified RTX
3165    afterwards, and DATA.  FN is to return 0 to continue the
3166    traversal or any other value to have it returned to the caller of
3167    for_each_inc_dec.  */
3168
3169 int
3170 for_each_inc_dec (rtx x,
3171                   for_each_inc_dec_fn fn,
3172                   void *data)
3173 {
3174   subrtx_var_iterator::array_type array;
3175   FOR_EACH_SUBRTX_VAR (iter, array, x, NONCONST)
3176     {
3177       rtx mem = *iter;
3178       if (mem
3179           && MEM_P (mem)
3180           && GET_RTX_CLASS (GET_CODE (XEXP (mem, 0))) == RTX_AUTOINC)
3181         {
3182           int res = for_each_inc_dec_find_inc_dec (mem, fn, data);
3183           if (res != 0)
3184             return res;
3185           iter.skip_subrtxes ();
3186         }
3187     }
3188   return 0;
3189 }
3190
3191 \f
3192 /* Searches X for any reference to REGNO, returning the rtx of the
3193    reference found if any.  Otherwise, returns NULL_RTX.  */
3194
3195 rtx
3196 regno_use_in (unsigned int regno, rtx x)
3197 {
3198   const char *fmt;
3199   int i, j;
3200   rtx tem;
3201
3202   if (REG_P (x) && REGNO (x) == regno)
3203     return x;
3204
3205   fmt = GET_RTX_FORMAT (GET_CODE (x));
3206   for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
3207     {
3208       if (fmt[i] == 'e')
3209         {
3210           if ((tem = regno_use_in (regno, XEXP (x, i))))
3211             return tem;
3212         }
3213       else if (fmt[i] == 'E')
3214         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3215           if ((tem = regno_use_in (regno , XVECEXP (x, i, j))))
3216             return tem;
3217     }
3218
3219   return NULL_RTX;
3220 }
3221
3222 /* Return a value indicating whether OP, an operand of a commutative
3223    operation, is preferred as the first or second operand.  The higher
3224    the value, the stronger the preference for being the first operand.
3225    We use negative values to indicate a preference for the first operand
3226    and positive values for the second operand.  */
3227
3228 int
3229 commutative_operand_precedence (rtx op)
3230 {
3231   enum rtx_code code = GET_CODE (op);
3232
3233   /* Constants always come the second operand.  Prefer "nice" constants.  */
3234   if (code == CONST_INT)
3235     return -8;
3236   if (code == CONST_WIDE_INT)
3237     return -8;
3238   if (code == CONST_DOUBLE)
3239     return -7;
3240   if (code == CONST_FIXED)
3241     return -7;
3242   op = avoid_constant_pool_reference (op);
3243   code = GET_CODE (op);
3244
3245   switch (GET_RTX_CLASS (code))
3246     {
3247     case RTX_CONST_OBJ:
3248       if (code == CONST_INT)
3249         return -6;
3250       if (code == CONST_WIDE_INT)
3251         return -6;
3252       if (code == CONST_DOUBLE)
3253         return -5;
3254       if (code == CONST_FIXED)
3255         return -5;
3256       return -4;
3257
3258     case RTX_EXTRA:
3259       /* SUBREGs of objects should come second.  */
3260       if (code == SUBREG && OBJECT_P (SUBREG_REG (op)))
3261         return -3;
3262       return 0;
3263
3264     case RTX_OBJ:
3265       /* Complex expressions should be the first, so decrease priority
3266          of objects.  Prefer pointer objects over non pointer objects.  */
3267       if ((REG_P (op) && REG_POINTER (op))
3268           || (MEM_P (op) && MEM_POINTER (op)))
3269         return -1;
3270       return -2;
3271
3272     case RTX_COMM_ARITH:
3273       /* Prefer operands that are themselves commutative to be first.
3274          This helps to make things linear.  In particular,
3275          (and (and (reg) (reg)) (not (reg))) is canonical.  */
3276       return 4;
3277
3278     case RTX_BIN_ARITH:
3279       /* If only one operand is a binary expression, it will be the first
3280          operand.  In particular,  (plus (minus (reg) (reg)) (neg (reg)))
3281          is canonical, although it will usually be further simplified.  */
3282       return 2;
3283
3284     case RTX_UNARY:
3285       /* Then prefer NEG and NOT.  */
3286       if (code == NEG || code == NOT)
3287         return 1;
3288
3289     default:
3290       return 0;
3291     }
3292 }
3293
3294 /* Return 1 iff it is necessary to swap operands of commutative operation
3295    in order to canonicalize expression.  */
3296
3297 bool
3298 swap_commutative_operands_p (rtx x, rtx y)
3299 {
3300   return (commutative_operand_precedence (x)
3301           < commutative_operand_precedence (y));
3302 }
3303
3304 /* Return 1 if X is an autoincrement side effect and the register is
3305    not the stack pointer.  */
3306 int
3307 auto_inc_p (const_rtx x)
3308 {
3309   switch (GET_CODE (x))
3310     {
3311     case PRE_INC:
3312     case POST_INC:
3313     case PRE_DEC:
3314     case POST_DEC:
3315     case PRE_MODIFY:
3316     case POST_MODIFY:
3317       /* There are no REG_INC notes for SP.  */
3318       if (XEXP (x, 0) != stack_pointer_rtx)
3319         return 1;
3320     default:
3321       break;
3322     }
3323   return 0;
3324 }
3325
3326 /* Return nonzero if IN contains a piece of rtl that has the address LOC.  */
3327 int
3328 loc_mentioned_in_p (rtx *loc, const_rtx in)
3329 {
3330   enum rtx_code code;
3331   const char *fmt;
3332   int i, j;
3333
3334   if (!in)
3335     return 0;
3336
3337   code = GET_CODE (in);
3338   fmt = GET_RTX_FORMAT (code);
3339   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3340     {
3341       if (fmt[i] == 'e')
3342         {
3343           if (loc == &XEXP (in, i) || loc_mentioned_in_p (loc, XEXP (in, i)))
3344             return 1;
3345         }
3346       else if (fmt[i] == 'E')
3347         for (j = XVECLEN (in, i) - 1; j >= 0; j--)
3348           if (loc == &XVECEXP (in, i, j)
3349               || loc_mentioned_in_p (loc, XVECEXP (in, i, j)))
3350             return 1;
3351     }
3352   return 0;
3353 }
3354
3355 /* Helper function for subreg_lsb.  Given a subreg's OUTER_MODE, INNER_MODE,
3356    and SUBREG_BYTE, return the bit offset where the subreg begins
3357    (counting from the least significant bit of the operand).  */
3358
3359 unsigned int
3360 subreg_lsb_1 (enum machine_mode outer_mode,
3361               enum machine_mode inner_mode,
3362               unsigned int subreg_byte)
3363 {
3364   unsigned int bitpos;
3365   unsigned int byte;
3366   unsigned int word;
3367
3368   /* A paradoxical subreg begins at bit position 0.  */
3369   if (GET_MODE_PRECISION (outer_mode) > GET_MODE_PRECISION (inner_mode))
3370     return 0;
3371
3372   if (WORDS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
3373     /* If the subreg crosses a word boundary ensure that
3374        it also begins and ends on a word boundary.  */
3375     gcc_assert (!((subreg_byte % UNITS_PER_WORD
3376                   + GET_MODE_SIZE (outer_mode)) > UNITS_PER_WORD
3377                   && (subreg_byte % UNITS_PER_WORD
3378                       || GET_MODE_SIZE (outer_mode) % UNITS_PER_WORD)));
3379
3380   if (WORDS_BIG_ENDIAN)
3381     word = (GET_MODE_SIZE (inner_mode)
3382             - (subreg_byte + GET_MODE_SIZE (outer_mode))) / UNITS_PER_WORD;
3383   else
3384     word = subreg_byte / UNITS_PER_WORD;
3385   bitpos = word * BITS_PER_WORD;
3386
3387   if (BYTES_BIG_ENDIAN)
3388     byte = (GET_MODE_SIZE (inner_mode)
3389             - (subreg_byte + GET_MODE_SIZE (outer_mode))) % UNITS_PER_WORD;
3390   else
3391     byte = subreg_byte % UNITS_PER_WORD;
3392   bitpos += byte * BITS_PER_UNIT;
3393
3394   return bitpos;
3395 }
3396
3397 /* Given a subreg X, return the bit offset where the subreg begins
3398    (counting from the least significant bit of the reg).  */
3399
3400 unsigned int
3401 subreg_lsb (const_rtx x)
3402 {
3403   return subreg_lsb_1 (GET_MODE (x), GET_MODE (SUBREG_REG (x)),
3404                        SUBREG_BYTE (x));
3405 }
3406
3407 /* Fill in information about a subreg of a hard register.
3408    xregno - A regno of an inner hard subreg_reg (or what will become one).
3409    xmode  - The mode of xregno.
3410    offset - The byte offset.
3411    ymode  - The mode of a top level SUBREG (or what may become one).
3412    info   - Pointer to structure to fill in.  */
3413 void
3414 subreg_get_info (unsigned int xregno, enum machine_mode xmode,
3415                  unsigned int offset, enum machine_mode ymode,
3416                  struct subreg_info *info)
3417 {
3418   int nregs_xmode, nregs_ymode;
3419   int mode_multiple, nregs_multiple;
3420   int offset_adj, y_offset, y_offset_adj;
3421   int regsize_xmode, regsize_ymode;
3422   bool rknown;
3423
3424   gcc_assert (xregno < FIRST_PSEUDO_REGISTER);
3425
3426   rknown = false;
3427
3428   /* If there are holes in a non-scalar mode in registers, we expect
3429      that it is made up of its units concatenated together.  */
3430   if (HARD_REGNO_NREGS_HAS_PADDING (xregno, xmode))
3431     {
3432       enum machine_mode xmode_unit;
3433
3434       nregs_xmode = HARD_REGNO_NREGS_WITH_PADDING (xregno, xmode);
3435       if (GET_MODE_INNER (xmode) == VOIDmode)
3436         xmode_unit = xmode;
3437       else
3438         xmode_unit = GET_MODE_INNER (xmode);
3439       gcc_assert (HARD_REGNO_NREGS_HAS_PADDING (xregno, xmode_unit));
3440       gcc_assert (nregs_xmode
3441                   == (GET_MODE_NUNITS (xmode)
3442                       * HARD_REGNO_NREGS_WITH_PADDING (xregno, xmode_unit)));
3443       gcc_assert (hard_regno_nregs[xregno][xmode]
3444                   == (hard_regno_nregs[xregno][xmode_unit]
3445                       * GET_MODE_NUNITS (xmode)));
3446
3447       /* You can only ask for a SUBREG of a value with holes in the middle
3448          if you don't cross the holes.  (Such a SUBREG should be done by
3449          picking a different register class, or doing it in memory if
3450          necessary.)  An example of a value with holes is XCmode on 32-bit
3451          x86 with -m128bit-long-double; it's represented in 6 32-bit registers,
3452          3 for each part, but in memory it's two 128-bit parts.
3453          Padding is assumed to be at the end (not necessarily the 'high part')
3454          of each unit.  */
3455       if ((offset / GET_MODE_SIZE (xmode_unit) + 1
3456            < GET_MODE_NUNITS (xmode))
3457           && (offset / GET_MODE_SIZE (xmode_unit)
3458               != ((offset + GET_MODE_SIZE (ymode) - 1)
3459                   / GET_MODE_SIZE (xmode_unit))))
3460         {
3461           info->representable_p = false;
3462           rknown = true;
3463         }
3464     }
3465   else
3466     nregs_xmode = hard_regno_nregs[xregno][xmode];
3467
3468   nregs_ymode = hard_regno_nregs[xregno][ymode];
3469
3470   /* Paradoxical subregs are otherwise valid.  */
3471   if (!rknown
3472       && offset == 0
3473       && GET_MODE_PRECISION (ymode) > GET_MODE_PRECISION (xmode))
3474     {
3475       info->representable_p = true;
3476       /* If this is a big endian paradoxical subreg, which uses more
3477          actual hard registers than the original register, we must
3478          return a negative offset so that we find the proper highpart
3479          of the register.  */
3480       if (GET_MODE_SIZE (ymode) > UNITS_PER_WORD
3481           ? REG_WORDS_BIG_ENDIAN : BYTES_BIG_ENDIAN)
3482         info->offset = nregs_xmode - nregs_ymode;
3483       else
3484         info->offset = 0;
3485       info->nregs = nregs_ymode;
3486       return;
3487     }
3488
3489   /* If registers store different numbers of bits in the different
3490      modes, we cannot generally form this subreg.  */
3491   if (!HARD_REGNO_NREGS_HAS_PADDING (xregno, xmode)
3492       && !HARD_REGNO_NREGS_HAS_PADDING (xregno, ymode)
3493       && (GET_MODE_SIZE (xmode) % nregs_xmode) == 0
3494       && (GET_MODE_SIZE (ymode) % nregs_ymode) == 0)
3495     {
3496       regsize_xmode = GET_MODE_SIZE (xmode) / nregs_xmode;
3497       regsize_ymode = GET_MODE_SIZE (ymode) / nregs_ymode;
3498       if (!rknown && regsize_xmode > regsize_ymode && nregs_ymode > 1)
3499         {
3500           info->representable_p = false;
3501           info->nregs
3502             = (GET_MODE_SIZE (ymode) + regsize_xmode - 1) / regsize_xmode;
3503           info->offset = offset / regsize_xmode;
3504           return;
3505         }
3506       if (!rknown && regsize_ymode > regsize_xmode && nregs_xmode > 1)
3507         {
3508           info->representable_p = false;
3509           info->nregs
3510             = (GET_MODE_SIZE (ymode) + regsize_xmode - 1) / regsize_xmode;
3511           info->offset = offset / regsize_xmode;
3512           return;
3513         }
3514     }
3515
3516   /* Lowpart subregs are otherwise valid.  */
3517   if (!rknown && offset == subreg_lowpart_offset (ymode, xmode))
3518     {
3519       info->representable_p = true;
3520       rknown = true;
3521
3522       if (offset == 0 || nregs_xmode == nregs_ymode)
3523         {
3524           info->offset = 0;
3525           info->nregs = nregs_ymode;
3526           return;
3527         }
3528     }
3529
3530   /* This should always pass, otherwise we don't know how to verify
3531      the constraint.  These conditions may be relaxed but
3532      subreg_regno_offset would need to be redesigned.  */
3533   gcc_assert ((GET_MODE_SIZE (xmode) % GET_MODE_SIZE (ymode)) == 0);
3534   gcc_assert ((nregs_xmode % nregs_ymode) == 0);
3535
3536   if (WORDS_BIG_ENDIAN != REG_WORDS_BIG_ENDIAN
3537       && GET_MODE_SIZE (xmode) > UNITS_PER_WORD)
3538     {
3539       HOST_WIDE_INT xsize = GET_MODE_SIZE (xmode);
3540       HOST_WIDE_INT ysize = GET_MODE_SIZE (ymode);
3541       HOST_WIDE_INT off_low = offset & (ysize - 1);
3542       HOST_WIDE_INT off_high = offset & ~(ysize - 1);
3543       offset = (xsize - ysize - off_high) | off_low;
3544     }
3545   /* The XMODE value can be seen as a vector of NREGS_XMODE
3546      values.  The subreg must represent a lowpart of given field.
3547      Compute what field it is.  */
3548   offset_adj = offset;
3549   offset_adj -= subreg_lowpart_offset (ymode,
3550                                        mode_for_size (GET_MODE_BITSIZE (xmode)
3551                                                       / nregs_xmode,
3552                                                       MODE_INT, 0));
3553
3554   /* Size of ymode must not be greater than the size of xmode.  */
3555   mode_multiple = GET_MODE_SIZE (xmode) / GET_MODE_SIZE (ymode);
3556   gcc_assert (mode_multiple != 0);
3557
3558   y_offset = offset / GET_MODE_SIZE (ymode);
3559   y_offset_adj = offset_adj / GET_MODE_SIZE (ymode);
3560   nregs_multiple = nregs_xmode / nregs_ymode;
3561
3562   gcc_assert ((offset_adj % GET_MODE_SIZE (ymode)) == 0);
3563   gcc_assert ((mode_multiple % nregs_multiple) == 0);
3564
3565   if (!rknown)
3566     {
3567       info->representable_p = (!(y_offset_adj % (mode_multiple / nregs_multiple)));
3568       rknown = true;
3569     }
3570   info->offset = (y_offset / (mode_multiple / nregs_multiple)) * nregs_ymode;
3571   info->nregs = nregs_ymode;
3572 }
3573
3574 /* This function returns the regno offset of a subreg expression.
3575    xregno - A regno of an inner hard subreg_reg (or what will become one).
3576    xmode  - The mode of xregno.
3577    offset - The byte offset.
3578    ymode  - The mode of a top level SUBREG (or what may become one).
3579    RETURN - The regno offset which would be used.  */
3580 unsigned int
3581 subreg_regno_offset (unsigned int xregno, enum machine_mode xmode,
3582                      unsigned int offset, enum machine_mode ymode)
3583 {
3584   struct subreg_info info;
3585   subreg_get_info (xregno, xmode, offset, ymode, &info);
3586   return info.offset;
3587 }
3588
3589 /* This function returns true when the offset is representable via
3590    subreg_offset in the given regno.
3591    xregno - A regno of an inner hard subreg_reg (or what will become one).
3592    xmode  - The mode of xregno.
3593    offset - The byte offset.
3594    ymode  - The mode of a top level SUBREG (or what may become one).
3595    RETURN - Whether the offset is representable.  */
3596 bool
3597 subreg_offset_representable_p (unsigned int xregno, enum machine_mode xmode,
3598                                unsigned int offset, enum machine_mode ymode)
3599 {
3600   struct subreg_info info;
3601   subreg_get_info (xregno, xmode, offset, ymode, &info);
3602   return info.representable_p;
3603 }
3604
3605 /* Return the number of a YMODE register to which
3606
3607        (subreg:YMODE (reg:XMODE XREGNO) OFFSET)
3608
3609    can be simplified.  Return -1 if the subreg can't be simplified.
3610
3611    XREGNO is a hard register number.  */
3612
3613 int
3614 simplify_subreg_regno (unsigned int xregno, enum machine_mode xmode,
3615                        unsigned int offset, enum machine_mode ymode)
3616 {
3617   struct subreg_info info;
3618   unsigned int yregno;
3619
3620 #ifdef CANNOT_CHANGE_MODE_CLASS
3621   /* Give the backend a chance to disallow the mode change.  */
3622   if (GET_MODE_CLASS (xmode) != MODE_COMPLEX_INT
3623       && GET_MODE_CLASS (xmode) != MODE_COMPLEX_FLOAT
3624       && REG_CANNOT_CHANGE_MODE_P (xregno, xmode, ymode)
3625       /* We can use mode change in LRA for some transformations.  */
3626       && ! lra_in_progress)
3627     return -1;
3628 #endif
3629
3630   /* We shouldn't simplify stack-related registers.  */
3631   if ((!reload_completed || frame_pointer_needed)
3632       && xregno == FRAME_POINTER_REGNUM)
3633     return -1;
3634
3635   if (FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3636       && xregno == ARG_POINTER_REGNUM)
3637     return -1;
3638
3639   if (xregno == STACK_POINTER_REGNUM
3640       /* We should convert hard stack register in LRA if it is
3641          possible.  */
3642       && ! lra_in_progress)
3643     return -1;
3644
3645   /* Try to get the register offset.  */
3646   subreg_get_info (xregno, xmode, offset, ymode, &info);
3647   if (!info.representable_p)
3648     return -1;
3649
3650   /* Make sure that the offsetted register value is in range.  */
3651   yregno = xregno + info.offset;
3652   if (!HARD_REGISTER_NUM_P (yregno))
3653     return -1;
3654
3655   /* See whether (reg:YMODE YREGNO) is valid.
3656
3657      ??? We allow invalid registers if (reg:XMODE XREGNO) is also invalid.
3658      This is a kludge to work around how complex FP arguments are passed
3659      on IA-64 and should be fixed.  See PR target/49226.  */
3660   if (!HARD_REGNO_MODE_OK (yregno, ymode)
3661       && HARD_REGNO_MODE_OK (xregno, xmode))
3662     return -1;
3663
3664   return (int) yregno;
3665 }
3666
3667 /* Return the final regno that a subreg expression refers to.  */
3668 unsigned int
3669 subreg_regno (const_rtx x)
3670 {
3671   unsigned int ret;
3672   rtx subreg = SUBREG_REG (x);
3673   int regno = REGNO (subreg);
3674
3675   ret = regno + subreg_regno_offset (regno,
3676                                      GET_MODE (subreg),
3677                                      SUBREG_BYTE (x),
3678                                      GET_MODE (x));
3679   return ret;
3680
3681 }
3682
3683 /* Return the number of registers that a subreg expression refers
3684    to.  */
3685 unsigned int
3686 subreg_nregs (const_rtx x)
3687 {
3688   return subreg_nregs_with_regno (REGNO (SUBREG_REG (x)), x);
3689 }
3690
3691 /* Return the number of registers that a subreg REG with REGNO
3692    expression refers to.  This is a copy of the rtlanal.c:subreg_nregs
3693    changed so that the regno can be passed in. */
3694
3695 unsigned int
3696 subreg_nregs_with_regno (unsigned int regno, const_rtx x)
3697 {
3698   struct subreg_info info;
3699   rtx subreg = SUBREG_REG (x);
3700
3701   subreg_get_info (regno, GET_MODE (subreg), SUBREG_BYTE (x), GET_MODE (x),
3702                    &info);
3703   return info.nregs;
3704 }
3705
3706
3707 struct parms_set_data
3708 {
3709   int nregs;
3710   HARD_REG_SET regs;
3711 };
3712
3713 /* Helper function for noticing stores to parameter registers.  */
3714 static void
3715 parms_set (rtx x, const_rtx pat ATTRIBUTE_UNUSED, void *data)
3716 {
3717   struct parms_set_data *const d = (struct parms_set_data *) data;
3718   if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
3719       && TEST_HARD_REG_BIT (d->regs, REGNO (x)))
3720     {
3721       CLEAR_HARD_REG_BIT (d->regs, REGNO (x));
3722       d->nregs--;
3723     }
3724 }
3725
3726 /* Look backward for first parameter to be loaded.
3727    Note that loads of all parameters will not necessarily be
3728    found if CSE has eliminated some of them (e.g., an argument
3729    to the outer function is passed down as a parameter).
3730    Do not skip BOUNDARY.  */
3731 rtx_insn *
3732 find_first_parameter_load (rtx_insn *call_insn, rtx_insn *boundary)
3733 {
3734   struct parms_set_data parm;
3735   rtx p;
3736   rtx_insn *before, *first_set;
3737
3738   /* Since different machines initialize their parameter registers
3739      in different orders, assume nothing.  Collect the set of all
3740      parameter registers.  */
3741   CLEAR_HARD_REG_SET (parm.regs);
3742   parm.nregs = 0;
3743   for (p = CALL_INSN_FUNCTION_USAGE (call_insn); p; p = XEXP (p, 1))
3744     if (GET_CODE (XEXP (p, 0)) == USE
3745         && REG_P (XEXP (XEXP (p, 0), 0)))
3746       {
3747         gcc_assert (REGNO (XEXP (XEXP (p, 0), 0)) < FIRST_PSEUDO_REGISTER);
3748
3749         /* We only care about registers which can hold function
3750            arguments.  */
3751         if (!FUNCTION_ARG_REGNO_P (REGNO (XEXP (XEXP (p, 0), 0))))
3752           continue;
3753
3754         SET_HARD_REG_BIT (parm.regs, REGNO (XEXP (XEXP (p, 0), 0)));
3755         parm.nregs++;
3756       }
3757   before = call_insn;
3758   first_set = call_insn;
3759
3760   /* Search backward for the first set of a register in this set.  */
3761   while (parm.nregs && before != boundary)
3762     {
3763       before = PREV_INSN (before);
3764
3765       /* It is possible that some loads got CSEed from one call to
3766          another.  Stop in that case.  */
3767       if (CALL_P (before))
3768         break;
3769
3770       /* Our caller needs either ensure that we will find all sets
3771          (in case code has not been optimized yet), or take care
3772          for possible labels in a way by setting boundary to preceding
3773          CODE_LABEL.  */
3774       if (LABEL_P (before))
3775         {
3776           gcc_assert (before == boundary);
3777           break;
3778         }
3779
3780       if (INSN_P (before))
3781         {
3782           int nregs_old = parm.nregs;
3783           note_stores (PATTERN (before), parms_set, &parm);
3784           /* If we found something that did not set a parameter reg,
3785              we're done.  Do not keep going, as that might result
3786              in hoisting an insn before the setting of a pseudo
3787              that is used by the hoisted insn. */
3788           if (nregs_old != parm.nregs)
3789             first_set = before;
3790           else
3791             break;
3792         }
3793     }
3794   return first_set;
3795 }
3796
3797 /* Return true if we should avoid inserting code between INSN and preceding
3798    call instruction.  */
3799
3800 bool
3801 keep_with_call_p (const rtx_insn *insn)
3802 {
3803   rtx set;
3804
3805   if (INSN_P (insn) && (set = single_set (insn)) != NULL)
3806     {
3807       if (REG_P (SET_DEST (set))
3808           && REGNO (SET_DEST (set)) < FIRST_PSEUDO_REGISTER
3809           && fixed_regs[REGNO (SET_DEST (set))]
3810           && general_operand (SET_SRC (set), VOIDmode))
3811         return true;
3812       if (REG_P (SET_SRC (set))
3813           && targetm.calls.function_value_regno_p (REGNO (SET_SRC (set)))
3814           && REG_P (SET_DEST (set))
3815           && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER)
3816         return true;
3817       /* There may be a stack pop just after the call and before the store
3818          of the return register.  Search for the actual store when deciding
3819          if we can break or not.  */
3820       if (SET_DEST (set) == stack_pointer_rtx)
3821         {
3822           /* This CONST_CAST is okay because next_nonnote_insn just
3823              returns its argument and we assign it to a const_rtx
3824              variable.  */
3825           const rtx_insn *i2
3826             = next_nonnote_insn (const_cast<rtx_insn *> (insn));
3827           if (i2 && keep_with_call_p (i2))
3828             return true;
3829         }
3830     }
3831   return false;
3832 }
3833
3834 /* Return true if LABEL is a target of JUMP_INSN.  This applies only
3835    to non-complex jumps.  That is, direct unconditional, conditional,
3836    and tablejumps, but not computed jumps or returns.  It also does
3837    not apply to the fallthru case of a conditional jump.  */
3838
3839 bool
3840 label_is_jump_target_p (const_rtx label, const rtx_insn *jump_insn)
3841 {
3842   rtx tmp = JUMP_LABEL (jump_insn);
3843   rtx_jump_table_data *table;
3844
3845   if (label == tmp)
3846     return true;
3847
3848   if (tablejump_p (jump_insn, NULL, &table))
3849     {
3850       rtvec vec = table->get_labels ();
3851       int i, veclen = GET_NUM_ELEM (vec);
3852
3853       for (i = 0; i < veclen; ++i)
3854         if (XEXP (RTVEC_ELT (vec, i), 0) == label)
3855           return true;
3856     }
3857
3858   if (find_reg_note (jump_insn, REG_LABEL_TARGET, label))
3859     return true;
3860
3861   return false;
3862 }
3863
3864 \f
3865 /* Return an estimate of the cost of computing rtx X.
3866    One use is in cse, to decide which expression to keep in the hash table.
3867    Another is in rtl generation, to pick the cheapest way to multiply.
3868    Other uses like the latter are expected in the future.
3869
3870    X appears as operand OPNO in an expression with code OUTER_CODE.
3871    SPEED specifies whether costs optimized for speed or size should
3872    be returned.  */
3873
3874 int
3875 rtx_cost (rtx x, enum rtx_code outer_code, int opno, bool speed)
3876 {
3877   int i, j;
3878   enum rtx_code code;
3879   const char *fmt;
3880   int total;
3881   int factor;
3882
3883   if (x == 0)
3884     return 0;
3885
3886   /* A size N times larger than UNITS_PER_WORD likely needs N times as
3887      many insns, taking N times as long.  */
3888   factor = GET_MODE_SIZE (GET_MODE (x)) / UNITS_PER_WORD;
3889   if (factor == 0)
3890     factor = 1;
3891
3892   /* Compute the default costs of certain things.
3893      Note that targetm.rtx_costs can override the defaults.  */
3894
3895   code = GET_CODE (x);
3896   switch (code)
3897     {
3898     case MULT:
3899       /* Multiplication has time-complexity O(N*N), where N is the
3900          number of units (translated from digits) when using
3901          schoolbook long multiplication.  */
3902       total = factor * factor * COSTS_N_INSNS (5);
3903       break;
3904     case DIV:
3905     case UDIV:
3906     case MOD:
3907     case UMOD:
3908       /* Similarly, complexity for schoolbook long division.  */
3909       total = factor * factor * COSTS_N_INSNS (7);
3910       break;
3911     case USE:
3912       /* Used in combine.c as a marker.  */
3913       total = 0;
3914       break;
3915     case SET:
3916       /* A SET doesn't have a mode, so let's look at the SET_DEST to get
3917          the mode for the factor.  */
3918       factor = GET_MODE_SIZE (GET_MODE (SET_DEST (x))) / UNITS_PER_WORD;
3919       if (factor == 0)
3920         factor = 1;
3921       /* Pass through.  */
3922     default:
3923       total = factor * COSTS_N_INSNS (1);
3924     }
3925
3926   switch (code)
3927     {
3928     case REG:
3929       return 0;
3930
3931     case SUBREG:
3932       total = 0;
3933       /* If we can't tie these modes, make this expensive.  The larger
3934          the mode, the more expensive it is.  */
3935       if (! MODES_TIEABLE_P (GET_MODE (x), GET_MODE (SUBREG_REG (x))))
3936         return COSTS_N_INSNS (2 + factor);
3937       break;
3938
3939     default:
3940       if (targetm.rtx_costs (x, code, outer_code, opno, &total, speed))
3941         return total;
3942       break;
3943     }
3944
3945   /* Sum the costs of the sub-rtx's, plus cost of this operation,
3946      which is already in total.  */
3947
3948   fmt = GET_RTX_FORMAT (code);
3949   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3950     if (fmt[i] == 'e')
3951       total += rtx_cost (XEXP (x, i), code, i, speed);
3952     else if (fmt[i] == 'E')
3953       for (j = 0; j < XVECLEN (x, i); j++)
3954         total += rtx_cost (XVECEXP (x, i, j), code, i, speed);
3955
3956   return total;
3957 }
3958
3959 /* Fill in the structure C with information about both speed and size rtx
3960    costs for X, which is operand OPNO in an expression with code OUTER.  */
3961
3962 void
3963 get_full_rtx_cost (rtx x, enum rtx_code outer, int opno,
3964                    struct full_rtx_costs *c)
3965 {
3966   c->speed = rtx_cost (x, outer, opno, true);
3967   c->size = rtx_cost (x, outer, opno, false);
3968 }
3969
3970 \f
3971 /* Return cost of address expression X.
3972    Expect that X is properly formed address reference.
3973
3974    SPEED parameter specify whether costs optimized for speed or size should
3975    be returned.  */
3976
3977 int
3978 address_cost (rtx x, enum machine_mode mode, addr_space_t as, bool speed)
3979 {
3980   /* We may be asked for cost of various unusual addresses, such as operands
3981      of push instruction.  It is not worthwhile to complicate writing
3982      of the target hook by such cases.  */
3983
3984   if (!memory_address_addr_space_p (mode, x, as))
3985     return 1000;
3986
3987   return targetm.address_cost (x, mode, as, speed);
3988 }
3989
3990 /* If the target doesn't override, compute the cost as with arithmetic.  */
3991
3992 int
3993 default_address_cost (rtx x, enum machine_mode, addr_space_t, bool speed)
3994 {
3995   return rtx_cost (x, MEM, 0, speed);
3996 }
3997 \f
3998
3999 unsigned HOST_WIDE_INT
4000 nonzero_bits (const_rtx x, enum machine_mode mode)
4001 {
4002   return cached_nonzero_bits (x, mode, NULL_RTX, VOIDmode, 0);
4003 }
4004
4005 unsigned int
4006 num_sign_bit_copies (const_rtx x, enum machine_mode mode)
4007 {
4008   return cached_num_sign_bit_copies (x, mode, NULL_RTX, VOIDmode, 0);
4009 }
4010
4011 /* The function cached_nonzero_bits is a wrapper around nonzero_bits1.
4012    It avoids exponential behavior in nonzero_bits1 when X has
4013    identical subexpressions on the first or the second level.  */
4014
4015 static unsigned HOST_WIDE_INT
4016 cached_nonzero_bits (const_rtx x, enum machine_mode mode, const_rtx known_x,
4017                      enum machine_mode known_mode,
4018                      unsigned HOST_WIDE_INT known_ret)
4019 {
4020   if (x == known_x && mode == known_mode)
4021     return known_ret;
4022
4023   /* Try to find identical subexpressions.  If found call
4024      nonzero_bits1 on X with the subexpressions as KNOWN_X and the
4025      precomputed value for the subexpression as KNOWN_RET.  */
4026
4027   if (ARITHMETIC_P (x))
4028     {
4029       rtx x0 = XEXP (x, 0);
4030       rtx x1 = XEXP (x, 1);
4031
4032       /* Check the first level.  */
4033       if (x0 == x1)
4034         return nonzero_bits1 (x, mode, x0, mode,
4035                               cached_nonzero_bits (x0, mode, known_x,
4036                                                    known_mode, known_ret));
4037
4038       /* Check the second level.  */
4039       if (ARITHMETIC_P (x0)
4040           && (x1 == XEXP (x0, 0) || x1 == XEXP (x0, 1)))
4041         return nonzero_bits1 (x, mode, x1, mode,
4042                               cached_nonzero_bits (x1, mode, known_x,
4043                                                    known_mode, known_ret));
4044
4045       if (ARITHMETIC_P (x1)
4046           && (x0 == XEXP (x1, 0) || x0 == XEXP (x1, 1)))
4047         return nonzero_bits1 (x, mode, x0, mode,
4048                               cached_nonzero_bits (x0, mode, known_x,
4049                                                    known_mode, known_ret));
4050     }
4051
4052   return nonzero_bits1 (x, mode, known_x, known_mode, known_ret);
4053 }
4054
4055 /* We let num_sign_bit_copies recur into nonzero_bits as that is useful.
4056    We don't let nonzero_bits recur into num_sign_bit_copies, because that
4057    is less useful.  We can't allow both, because that results in exponential
4058    run time recursion.  There is a nullstone testcase that triggered
4059    this.  This macro avoids accidental uses of num_sign_bit_copies.  */
4060 #define cached_num_sign_bit_copies sorry_i_am_preventing_exponential_behavior
4061
4062 /* Given an expression, X, compute which bits in X can be nonzero.
4063    We don't care about bits outside of those defined in MODE.
4064
4065    For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
4066    an arithmetic operation, we can do better.  */
4067
4068 static unsigned HOST_WIDE_INT
4069 nonzero_bits1 (const_rtx x, enum machine_mode mode, const_rtx known_x,
4070                enum machine_mode known_mode,
4071                unsigned HOST_WIDE_INT known_ret)
4072 {
4073   unsigned HOST_WIDE_INT nonzero = GET_MODE_MASK (mode);
4074   unsigned HOST_WIDE_INT inner_nz;
4075   enum rtx_code code;
4076   enum machine_mode inner_mode;
4077   unsigned int mode_width = GET_MODE_PRECISION (mode);
4078
4079   /* For floating-point and vector values, assume all bits are needed.  */
4080   if (FLOAT_MODE_P (GET_MODE (x)) || FLOAT_MODE_P (mode)
4081       || VECTOR_MODE_P (GET_MODE (x)) || VECTOR_MODE_P (mode))
4082     return nonzero;
4083
4084   /* If X is wider than MODE, use its mode instead.  */
4085   if (GET_MODE_PRECISION (GET_MODE (x)) > mode_width)
4086     {
4087       mode = GET_MODE (x);
4088       nonzero = GET_MODE_MASK (mode);
4089       mode_width = GET_MODE_PRECISION (mode);
4090     }
4091
4092   if (mode_width > HOST_BITS_PER_WIDE_INT)
4093     /* Our only callers in this case look for single bit values.  So
4094        just return the mode mask.  Those tests will then be false.  */
4095     return nonzero;
4096
4097 #ifndef WORD_REGISTER_OPERATIONS
4098   /* If MODE is wider than X, but both are a single word for both the host
4099      and target machines, we can compute this from which bits of the
4100      object might be nonzero in its own mode, taking into account the fact
4101      that on many CISC machines, accessing an object in a wider mode
4102      causes the high-order bits to become undefined.  So they are
4103      not known to be zero.  */
4104
4105   if (GET_MODE (x) != VOIDmode && GET_MODE (x) != mode
4106       && GET_MODE_PRECISION (GET_MODE (x)) <= BITS_PER_WORD
4107       && GET_MODE_PRECISION (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
4108       && GET_MODE_PRECISION (mode) > GET_MODE_PRECISION (GET_MODE (x)))
4109     {
4110       nonzero &= cached_nonzero_bits (x, GET_MODE (x),
4111                                       known_x, known_mode, known_ret);
4112       nonzero |= GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x));
4113       return nonzero;
4114     }
4115 #endif
4116
4117   code = GET_CODE (x);
4118   switch (code)
4119     {
4120     case REG:
4121 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
4122       /* If pointers extend unsigned and this is a pointer in Pmode, say that
4123          all the bits above ptr_mode are known to be zero.  */
4124       /* As we do not know which address space the pointer is referring to,
4125          we can do this only if the target does not support different pointer
4126          or address modes depending on the address space.  */
4127       if (target_default_pointer_address_modes_p ()
4128           && POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
4129           && REG_POINTER (x))
4130         nonzero &= GET_MODE_MASK (ptr_mode);
4131 #endif
4132
4133       /* Include declared information about alignment of pointers.  */
4134       /* ??? We don't properly preserve REG_POINTER changes across
4135          pointer-to-integer casts, so we can't trust it except for
4136          things that we know must be pointers.  See execute/960116-1.c.  */
4137       if ((x == stack_pointer_rtx
4138            || x == frame_pointer_rtx
4139            || x == arg_pointer_rtx)
4140           && REGNO_POINTER_ALIGN (REGNO (x)))
4141         {
4142           unsigned HOST_WIDE_INT alignment
4143             = REGNO_POINTER_ALIGN (REGNO (x)) / BITS_PER_UNIT;
4144
4145 #ifdef PUSH_ROUNDING
4146           /* If PUSH_ROUNDING is defined, it is possible for the
4147              stack to be momentarily aligned only to that amount,
4148              so we pick the least alignment.  */
4149           if (x == stack_pointer_rtx && PUSH_ARGS)
4150             alignment = MIN ((unsigned HOST_WIDE_INT) PUSH_ROUNDING (1),
4151                              alignment);
4152 #endif
4153
4154           nonzero &= ~(alignment - 1);
4155         }
4156
4157       {
4158         unsigned HOST_WIDE_INT nonzero_for_hook = nonzero;
4159         rtx new_rtx = rtl_hooks.reg_nonzero_bits (x, mode, known_x,
4160                                               known_mode, known_ret,
4161                                               &nonzero_for_hook);
4162
4163         if (new_rtx)
4164           nonzero_for_hook &= cached_nonzero_bits (new_rtx, mode, known_x,
4165                                                    known_mode, known_ret);
4166
4167         return nonzero_for_hook;
4168       }
4169
4170     case CONST_INT:
4171 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
4172       /* If X is negative in MODE, sign-extend the value.  */
4173       if (INTVAL (x) > 0
4174           && mode_width < BITS_PER_WORD
4175           && (UINTVAL (x) & ((unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
4176              != 0)
4177         return UINTVAL (x) | (HOST_WIDE_INT_M1U << mode_width);
4178 #endif
4179
4180       return UINTVAL (x);
4181
4182     case MEM:
4183 #ifdef LOAD_EXTEND_OP
4184       /* In many, if not most, RISC machines, reading a byte from memory
4185          zeros the rest of the register.  Noticing that fact saves a lot
4186          of extra zero-extends.  */
4187       if (LOAD_EXTEND_OP (GET_MODE (x)) == ZERO_EXTEND)
4188         nonzero &= GET_MODE_MASK (GET_MODE (x));
4189 #endif
4190       break;
4191
4192     case EQ:  case NE:
4193     case UNEQ:  case LTGT:
4194     case GT:  case GTU:  case UNGT:
4195     case LT:  case LTU:  case UNLT:
4196     case GE:  case GEU:  case UNGE:
4197     case LE:  case LEU:  case UNLE:
4198     case UNORDERED: case ORDERED:
4199       /* If this produces an integer result, we know which bits are set.
4200          Code here used to clear bits outside the mode of X, but that is
4201          now done above.  */
4202       /* Mind that MODE is the mode the caller wants to look at this
4203          operation in, and not the actual operation mode.  We can wind
4204          up with (subreg:DI (gt:V4HI x y)), and we don't have anything
4205          that describes the results of a vector compare.  */
4206       if (GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
4207           && mode_width <= HOST_BITS_PER_WIDE_INT)
4208         nonzero = STORE_FLAG_VALUE;
4209       break;
4210
4211     case NEG:
4212 #if 0
4213       /* Disabled to avoid exponential mutual recursion between nonzero_bits
4214          and num_sign_bit_copies.  */
4215       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
4216           == GET_MODE_PRECISION (GET_MODE (x)))
4217         nonzero = 1;
4218 #endif
4219
4220       if (GET_MODE_PRECISION (GET_MODE (x)) < mode_width)
4221         nonzero |= (GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x)));
4222       break;
4223
4224     case ABS:
4225 #if 0
4226       /* Disabled to avoid exponential mutual recursion between nonzero_bits
4227          and num_sign_bit_copies.  */
4228       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
4229           == GET_MODE_PRECISION (GET_MODE (x)))
4230         nonzero = 1;
4231 #endif
4232       break;
4233
4234     case TRUNCATE:
4235       nonzero &= (cached_nonzero_bits (XEXP (x, 0), mode,
4236                                        known_x, known_mode, known_ret)
4237                   & GET_MODE_MASK (mode));
4238       break;
4239
4240     case ZERO_EXTEND:
4241       nonzero &= cached_nonzero_bits (XEXP (x, 0), mode,
4242                                       known_x, known_mode, known_ret);
4243       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
4244         nonzero &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
4245       break;
4246
4247     case SIGN_EXTEND:
4248       /* If the sign bit is known clear, this is the same as ZERO_EXTEND.
4249          Otherwise, show all the bits in the outer mode but not the inner
4250          may be nonzero.  */
4251       inner_nz = cached_nonzero_bits (XEXP (x, 0), mode,
4252                                       known_x, known_mode, known_ret);
4253       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
4254         {
4255           inner_nz &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
4256           if (val_signbit_known_set_p (GET_MODE (XEXP (x, 0)), inner_nz))
4257             inner_nz |= (GET_MODE_MASK (mode)
4258                          & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0))));
4259         }
4260
4261       nonzero &= inner_nz;
4262       break;
4263
4264     case AND:
4265       nonzero &= cached_nonzero_bits (XEXP (x, 0), mode,
4266                                        known_x, known_mode, known_ret)
4267                  & cached_nonzero_bits (XEXP (x, 1), mode,
4268                                         known_x, known_mode, known_ret);
4269       break;
4270
4271     case XOR:   case IOR:
4272     case UMIN:  case UMAX:  case SMIN:  case SMAX:
4273       {
4274         unsigned HOST_WIDE_INT nonzero0
4275            = cached_nonzero_bits (XEXP (x, 0), mode,
4276                                   known_x, known_mode, known_ret);
4277
4278         /* Don't call nonzero_bits for the second time if it cannot change
4279            anything.  */
4280         if ((nonzero & nonzero0) != nonzero)
4281           nonzero &= nonzero0
4282                      | cached_nonzero_bits (XEXP (x, 1), mode,
4283                                             known_x, known_mode, known_ret);
4284       }
4285       break;
4286
4287     case PLUS:  case MINUS:
4288     case MULT:
4289     case DIV:   case UDIV:
4290     case MOD:   case UMOD:
4291       /* We can apply the rules of arithmetic to compute the number of
4292          high- and low-order zero bits of these operations.  We start by
4293          computing the width (position of the highest-order nonzero bit)
4294          and the number of low-order zero bits for each value.  */
4295       {
4296         unsigned HOST_WIDE_INT nz0
4297           = cached_nonzero_bits (XEXP (x, 0), mode,
4298                                  known_x, known_mode, known_ret);
4299         unsigned HOST_WIDE_INT nz1
4300           = cached_nonzero_bits (XEXP (x, 1), mode,
4301                                  known_x, known_mode, known_ret);
4302         int sign_index = GET_MODE_PRECISION (GET_MODE (x)) - 1;
4303         int width0 = floor_log2 (nz0) + 1;
4304         int width1 = floor_log2 (nz1) + 1;
4305         int low0 = floor_log2 (nz0 & -nz0);
4306         int low1 = floor_log2 (nz1 & -nz1);
4307         unsigned HOST_WIDE_INT op0_maybe_minusp
4308           = nz0 & ((unsigned HOST_WIDE_INT) 1 << sign_index);
4309         unsigned HOST_WIDE_INT op1_maybe_minusp
4310           = nz1 & ((unsigned HOST_WIDE_INT) 1 << sign_index);
4311         unsigned int result_width = mode_width;
4312         int result_low = 0;
4313
4314         switch (code)
4315           {
4316           case PLUS:
4317             result_width = MAX (width0, width1) + 1;
4318             result_low = MIN (low0, low1);
4319             break;
4320           case MINUS:
4321             result_low = MIN (low0, low1);
4322             break;
4323           case MULT:
4324             result_width = width0 + width1;
4325             result_low = low0 + low1;
4326             break;
4327           case DIV:
4328             if (width1 == 0)
4329               break;
4330             if (!op0_maybe_minusp && !op1_maybe_minusp)
4331               result_width = width0;
4332             break;
4333           case UDIV:
4334             if (width1 == 0)
4335               break;
4336             result_width = width0;
4337             break;
4338           case MOD:
4339             if (width1 == 0)
4340               break;
4341             if (!op0_maybe_minusp && !op1_maybe_minusp)
4342               result_width = MIN (width0, width1);
4343             result_low = MIN (low0, low1);
4344             break;
4345           case UMOD:
4346             if (width1 == 0)
4347               break;
4348             result_width = MIN (width0, width1);
4349             result_low = MIN (low0, low1);
4350             break;
4351           default:
4352             gcc_unreachable ();
4353           }
4354
4355         if (result_width < mode_width)
4356           nonzero &= ((unsigned HOST_WIDE_INT) 1 << result_width) - 1;
4357
4358         if (result_low > 0)
4359           nonzero &= ~(((unsigned HOST_WIDE_INT) 1 << result_low) - 1);
4360       }
4361       break;
4362
4363     case ZERO_EXTRACT:
4364       if (CONST_INT_P (XEXP (x, 1))
4365           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
4366         nonzero &= ((unsigned HOST_WIDE_INT) 1 << INTVAL (XEXP (x, 1))) - 1;
4367       break;
4368
4369     case SUBREG:
4370       /* If this is a SUBREG formed for a promoted variable that has
4371          been zero-extended, we know that at least the high-order bits
4372          are zero, though others might be too.  */
4373
4374       if (SUBREG_PROMOTED_VAR_P (x) && SUBREG_PROMOTED_UNSIGNED_P (x))
4375         nonzero = GET_MODE_MASK (GET_MODE (x))
4376                   & cached_nonzero_bits (SUBREG_REG (x), GET_MODE (x),
4377                                          known_x, known_mode, known_ret);
4378
4379       inner_mode = GET_MODE (SUBREG_REG (x));
4380       /* If the inner mode is a single word for both the host and target
4381          machines, we can compute this from which bits of the inner
4382          object might be nonzero.  */
4383       if (GET_MODE_PRECISION (inner_mode) <= BITS_PER_WORD
4384           && (GET_MODE_PRECISION (inner_mode) <= HOST_BITS_PER_WIDE_INT))
4385         {
4386           nonzero &= cached_nonzero_bits (SUBREG_REG (x), mode,
4387                                           known_x, known_mode, known_ret);
4388
4389 #if defined (WORD_REGISTER_OPERATIONS) && defined (LOAD_EXTEND_OP)
4390           /* If this is a typical RISC machine, we only have to worry
4391              about the way loads are extended.  */
4392           if ((LOAD_EXTEND_OP (inner_mode) == SIGN_EXTEND
4393                ? val_signbit_known_set_p (inner_mode, nonzero)
4394                : LOAD_EXTEND_OP (inner_mode) != ZERO_EXTEND)
4395               || !MEM_P (SUBREG_REG (x)))
4396 #endif
4397             {
4398               /* On many CISC machines, accessing an object in a wider mode
4399                  causes the high-order bits to become undefined.  So they are
4400                  not known to be zero.  */
4401               if (GET_MODE_PRECISION (GET_MODE (x))
4402                   > GET_MODE_PRECISION (inner_mode))
4403                 nonzero |= (GET_MODE_MASK (GET_MODE (x))
4404                             & ~GET_MODE_MASK (inner_mode));
4405             }
4406         }
4407       break;
4408
4409     case ASHIFTRT:
4410     case LSHIFTRT:
4411     case ASHIFT:
4412     case ROTATE:
4413       /* The nonzero bits are in two classes: any bits within MODE
4414          that aren't in GET_MODE (x) are always significant.  The rest of the
4415          nonzero bits are those that are significant in the operand of
4416          the shift when shifted the appropriate number of bits.  This
4417          shows that high-order bits are cleared by the right shift and
4418          low-order bits by left shifts.  */
4419       if (CONST_INT_P (XEXP (x, 1))
4420           && INTVAL (XEXP (x, 1)) >= 0
4421           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
4422           && INTVAL (XEXP (x, 1)) < GET_MODE_PRECISION (GET_MODE (x)))
4423         {
4424           enum machine_mode inner_mode = GET_MODE (x);
4425           unsigned int width = GET_MODE_PRECISION (inner_mode);
4426           int count = INTVAL (XEXP (x, 1));
4427           unsigned HOST_WIDE_INT mode_mask = GET_MODE_MASK (inner_mode);
4428           unsigned HOST_WIDE_INT op_nonzero
4429             = cached_nonzero_bits (XEXP (x, 0), mode,
4430                                    known_x, known_mode, known_ret);
4431           unsigned HOST_WIDE_INT inner = op_nonzero & mode_mask;
4432           unsigned HOST_WIDE_INT outer = 0;
4433
4434           if (mode_width > width)
4435             outer = (op_nonzero & nonzero & ~mode_mask);
4436
4437           if (code == LSHIFTRT)
4438             inner >>= count;
4439           else if (code == ASHIFTRT)
4440             {
4441               inner >>= count;
4442
4443               /* If the sign bit may have been nonzero before the shift, we
4444                  need to mark all the places it could have been copied to
4445                  by the shift as possibly nonzero.  */
4446               if (inner & ((unsigned HOST_WIDE_INT) 1 << (width - 1 - count)))
4447                 inner |= (((unsigned HOST_WIDE_INT) 1 << count) - 1)
4448                            << (width - count);
4449             }
4450           else if (code == ASHIFT)
4451             inner <<= count;
4452           else
4453             inner = ((inner << (count % width)
4454                       | (inner >> (width - (count % width)))) & mode_mask);
4455
4456           nonzero &= (outer | inner);
4457         }
4458       break;
4459
4460     case FFS:
4461     case POPCOUNT:
4462       /* This is at most the number of bits in the mode.  */
4463       nonzero = ((unsigned HOST_WIDE_INT) 2 << (floor_log2 (mode_width))) - 1;
4464       break;
4465
4466     case CLZ:
4467       /* If CLZ has a known value at zero, then the nonzero bits are
4468          that value, plus the number of bits in the mode minus one.  */
4469       if (CLZ_DEFINED_VALUE_AT_ZERO (mode, nonzero))
4470         nonzero
4471           |= ((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mode_width))) - 1;
4472       else
4473         nonzero = -1;
4474       break;
4475
4476     case CTZ:
4477       /* If CTZ has a known value at zero, then the nonzero bits are
4478          that value, plus the number of bits in the mode minus one.  */
4479       if (CTZ_DEFINED_VALUE_AT_ZERO (mode, nonzero))
4480         nonzero
4481           |= ((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mode_width))) - 1;
4482       else
4483         nonzero = -1;
4484       break;
4485
4486     case CLRSB:
4487       /* This is at most the number of bits in the mode minus 1.  */
4488       nonzero = ((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mode_width))) - 1;
4489       break;
4490
4491     case PARITY:
4492       nonzero = 1;
4493       break;
4494
4495     case IF_THEN_ELSE:
4496       {
4497         unsigned HOST_WIDE_INT nonzero_true
4498           = cached_nonzero_bits (XEXP (x, 1), mode,
4499                                  known_x, known_mode, known_ret);
4500
4501         /* Don't call nonzero_bits for the second time if it cannot change
4502            anything.  */
4503         if ((nonzero & nonzero_true) != nonzero)
4504           nonzero &= nonzero_true
4505                      | cached_nonzero_bits (XEXP (x, 2), mode,
4506                                             known_x, known_mode, known_ret);
4507       }
4508       break;
4509
4510     default:
4511       break;
4512     }
4513
4514   return nonzero;
4515 }
4516
4517 /* See the macro definition above.  */
4518 #undef cached_num_sign_bit_copies
4519
4520 \f
4521 /* The function cached_num_sign_bit_copies is a wrapper around
4522    num_sign_bit_copies1.  It avoids exponential behavior in
4523    num_sign_bit_copies1 when X has identical subexpressions on the
4524    first or the second level.  */
4525
4526 static unsigned int
4527 cached_num_sign_bit_copies (const_rtx x, enum machine_mode mode, const_rtx known_x,
4528                             enum machine_mode known_mode,
4529                             unsigned int known_ret)
4530 {
4531   if (x == known_x && mode == known_mode)
4532     return known_ret;
4533
4534   /* Try to find identical subexpressions.  If found call
4535      num_sign_bit_copies1 on X with the subexpressions as KNOWN_X and
4536      the precomputed value for the subexpression as KNOWN_RET.  */
4537
4538   if (ARITHMETIC_P (x))
4539     {
4540       rtx x0 = XEXP (x, 0);
4541       rtx x1 = XEXP (x, 1);
4542
4543       /* Check the first level.  */
4544       if (x0 == x1)
4545         return
4546           num_sign_bit_copies1 (x, mode, x0, mode,
4547                                 cached_num_sign_bit_copies (x0, mode, known_x,
4548                                                             known_mode,
4549                                                             known_ret));
4550
4551       /* Check the second level.  */
4552       if (ARITHMETIC_P (x0)
4553           && (x1 == XEXP (x0, 0) || x1 == XEXP (x0, 1)))
4554         return
4555           num_sign_bit_copies1 (x, mode, x1, mode,
4556                                 cached_num_sign_bit_copies (x1, mode, known_x,
4557                                                             known_mode,
4558                                                             known_ret));
4559
4560       if (ARITHMETIC_P (x1)
4561           && (x0 == XEXP (x1, 0) || x0 == XEXP (x1, 1)))
4562         return
4563           num_sign_bit_copies1 (x, mode, x0, mode,
4564                                 cached_num_sign_bit_copies (x0, mode, known_x,
4565                                                             known_mode,
4566                                                             known_ret));
4567     }
4568
4569   return num_sign_bit_copies1 (x, mode, known_x, known_mode, known_ret);
4570 }
4571
4572 /* Return the number of bits at the high-order end of X that are known to
4573    be equal to the sign bit.  X will be used in mode MODE; if MODE is
4574    VOIDmode, X will be used in its own mode.  The returned value  will always
4575    be between 1 and the number of bits in MODE.  */
4576
4577 static unsigned int
4578 num_sign_bit_copies1 (const_rtx x, enum machine_mode mode, const_rtx known_x,
4579                       enum machine_mode known_mode,
4580                       unsigned int known_ret)
4581 {
4582   enum rtx_code code = GET_CODE (x);
4583   unsigned int bitwidth = GET_MODE_PRECISION (mode);
4584   int num0, num1, result;
4585   unsigned HOST_WIDE_INT nonzero;
4586
4587   /* If we weren't given a mode, use the mode of X.  If the mode is still
4588      VOIDmode, we don't know anything.  Likewise if one of the modes is
4589      floating-point.  */
4590
4591   if (mode == VOIDmode)
4592     mode = GET_MODE (x);
4593
4594   if (mode == VOIDmode || FLOAT_MODE_P (mode) || FLOAT_MODE_P (GET_MODE (x))
4595       || VECTOR_MODE_P (GET_MODE (x)) || VECTOR_MODE_P (mode))
4596     return 1;
4597
4598   /* For a smaller object, just ignore the high bits.  */
4599   if (bitwidth < GET_MODE_PRECISION (GET_MODE (x)))
4600     {
4601       num0 = cached_num_sign_bit_copies (x, GET_MODE (x),
4602                                          known_x, known_mode, known_ret);
4603       return MAX (1,
4604                   num0 - (int) (GET_MODE_PRECISION (GET_MODE (x)) - bitwidth));
4605     }
4606
4607   if (GET_MODE (x) != VOIDmode && bitwidth > GET_MODE_PRECISION (GET_MODE (x)))
4608     {
4609 #ifndef WORD_REGISTER_OPERATIONS
4610       /* If this machine does not do all register operations on the entire
4611          register and MODE is wider than the mode of X, we can say nothing
4612          at all about the high-order bits.  */
4613       return 1;
4614 #else
4615       /* Likewise on machines that do, if the mode of the object is smaller
4616          than a word and loads of that size don't sign extend, we can say
4617          nothing about the high order bits.  */
4618       if (GET_MODE_PRECISION (GET_MODE (x)) < BITS_PER_WORD
4619 #ifdef LOAD_EXTEND_OP
4620           && LOAD_EXTEND_OP (GET_MODE (x)) != SIGN_EXTEND
4621 #endif
4622           )
4623         return 1;
4624 #endif
4625     }
4626
4627   switch (code)
4628     {
4629     case REG:
4630
4631 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
4632       /* If pointers extend signed and this is a pointer in Pmode, say that
4633          all the bits above ptr_mode are known to be sign bit copies.  */
4634       /* As we do not know which address space the pointer is referring to,
4635          we can do this only if the target does not support different pointer
4636          or address modes depending on the address space.  */
4637       if (target_default_pointer_address_modes_p ()
4638           && ! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
4639           && mode == Pmode && REG_POINTER (x))
4640         return GET_MODE_PRECISION (Pmode) - GET_MODE_PRECISION (ptr_mode) + 1;
4641 #endif
4642
4643       {
4644         unsigned int copies_for_hook = 1, copies = 1;
4645         rtx new_rtx = rtl_hooks.reg_num_sign_bit_copies (x, mode, known_x,
4646                                                      known_mode, known_ret,
4647                                                      &copies_for_hook);
4648
4649         if (new_rtx)
4650           copies = cached_num_sign_bit_copies (new_rtx, mode, known_x,
4651                                                known_mode, known_ret);
4652
4653         if (copies > 1 || copies_for_hook > 1)
4654           return MAX (copies, copies_for_hook);
4655
4656         /* Else, use nonzero_bits to guess num_sign_bit_copies (see below).  */
4657       }
4658       break;
4659
4660     case MEM:
4661 #ifdef LOAD_EXTEND_OP
4662       /* Some RISC machines sign-extend all loads of smaller than a word.  */
4663       if (LOAD_EXTEND_OP (GET_MODE (x)) == SIGN_EXTEND)
4664         return MAX (1, ((int) bitwidth
4665                         - (int) GET_MODE_PRECISION (GET_MODE (x)) + 1));
4666 #endif
4667       break;
4668
4669     case CONST_INT:
4670       /* If the constant is negative, take its 1's complement and remask.
4671          Then see how many zero bits we have.  */
4672       nonzero = UINTVAL (x) & GET_MODE_MASK (mode);
4673       if (bitwidth <= HOST_BITS_PER_WIDE_INT
4674           && (nonzero & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4675         nonzero = (~nonzero) & GET_MODE_MASK (mode);
4676
4677       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
4678
4679     case SUBREG:
4680       /* If this is a SUBREG for a promoted object that is sign-extended
4681          and we are looking at it in a wider mode, we know that at least the
4682          high-order bits are known to be sign bit copies.  */
4683
4684       if (SUBREG_PROMOTED_VAR_P (x) && SUBREG_PROMOTED_SIGNED_P (x))
4685         {
4686           num0 = cached_num_sign_bit_copies (SUBREG_REG (x), mode,
4687                                              known_x, known_mode, known_ret);
4688           return MAX ((int) bitwidth
4689                       - (int) GET_MODE_PRECISION (GET_MODE (x)) + 1,
4690                       num0);
4691         }
4692
4693       /* For a smaller object, just ignore the high bits.  */
4694       if (bitwidth <= GET_MODE_PRECISION (GET_MODE (SUBREG_REG (x))))
4695         {
4696           num0 = cached_num_sign_bit_copies (SUBREG_REG (x), VOIDmode,
4697                                              known_x, known_mode, known_ret);
4698           return MAX (1, (num0
4699                           - (int) (GET_MODE_PRECISION (GET_MODE (SUBREG_REG (x)))
4700                                    - bitwidth)));
4701         }
4702
4703 #ifdef WORD_REGISTER_OPERATIONS
4704 #ifdef LOAD_EXTEND_OP
4705       /* For paradoxical SUBREGs on machines where all register operations
4706          affect the entire register, just look inside.  Note that we are
4707          passing MODE to the recursive call, so the number of sign bit copies
4708          will remain relative to that mode, not the inner mode.  */
4709
4710       /* This works only if loads sign extend.  Otherwise, if we get a
4711          reload for the inner part, it may be loaded from the stack, and
4712          then we lose all sign bit copies that existed before the store
4713          to the stack.  */
4714
4715       if (paradoxical_subreg_p (x)
4716           && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND
4717           && MEM_P (SUBREG_REG (x)))
4718         return cached_num_sign_bit_copies (SUBREG_REG (x), mode,
4719                                            known_x, known_mode, known_ret);
4720 #endif
4721 #endif
4722       break;
4723
4724     case SIGN_EXTRACT:
4725       if (CONST_INT_P (XEXP (x, 1)))
4726         return MAX (1, (int) bitwidth - INTVAL (XEXP (x, 1)));
4727       break;
4728
4729     case SIGN_EXTEND:
4730       return (bitwidth - GET_MODE_PRECISION (GET_MODE (XEXP (x, 0)))
4731               + cached_num_sign_bit_copies (XEXP (x, 0), VOIDmode,
4732                                             known_x, known_mode, known_ret));
4733
4734     case TRUNCATE:
4735       /* For a smaller object, just ignore the high bits.  */
4736       num0 = cached_num_sign_bit_copies (XEXP (x, 0), VOIDmode,
4737                                          known_x, known_mode, known_ret);
4738       return MAX (1, (num0 - (int) (GET_MODE_PRECISION (GET_MODE (XEXP (x, 0)))
4739                                     - bitwidth)));
4740
4741     case NOT:
4742       return cached_num_sign_bit_copies (XEXP (x, 0), mode,
4743                                          known_x, known_mode, known_ret);
4744
4745     case ROTATE:       case ROTATERT:
4746       /* If we are rotating left by a number of bits less than the number
4747          of sign bit copies, we can just subtract that amount from the
4748          number.  */
4749       if (CONST_INT_P (XEXP (x, 1))
4750           && INTVAL (XEXP (x, 1)) >= 0
4751           && INTVAL (XEXP (x, 1)) < (int) bitwidth)
4752         {
4753           num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4754                                              known_x, known_mode, known_ret);
4755           return MAX (1, num0 - (code == ROTATE ? INTVAL (XEXP (x, 1))
4756                                  : (int) bitwidth - INTVAL (XEXP (x, 1))));
4757         }
4758       break;
4759
4760     case NEG:
4761       /* In general, this subtracts one sign bit copy.  But if the value
4762          is known to be positive, the number of sign bit copies is the
4763          same as that of the input.  Finally, if the input has just one bit
4764          that might be nonzero, all the bits are copies of the sign bit.  */
4765       num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4766                                          known_x, known_mode, known_ret);
4767       if (bitwidth > HOST_BITS_PER_WIDE_INT)
4768         return num0 > 1 ? num0 - 1 : 1;
4769
4770       nonzero = nonzero_bits (XEXP (x, 0), mode);
4771       if (nonzero == 1)
4772         return bitwidth;
4773
4774       if (num0 > 1
4775           && (((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero))
4776         num0--;
4777
4778       return num0;
4779
4780     case IOR:   case AND:   case XOR:
4781     case SMIN:  case SMAX:  case UMIN:  case UMAX:
4782       /* Logical operations will preserve the number of sign-bit copies.
4783          MIN and MAX operations always return one of the operands.  */
4784       num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4785                                          known_x, known_mode, known_ret);
4786       num1 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4787                                          known_x, known_mode, known_ret);
4788
4789       /* If num1 is clearing some of the top bits then regardless of
4790          the other term, we are guaranteed to have at least that many
4791          high-order zero bits.  */
4792       if (code == AND
4793           && num1 > 1
4794           && bitwidth <= HOST_BITS_PER_WIDE_INT
4795           && CONST_INT_P (XEXP (x, 1))
4796           && (UINTVAL (XEXP (x, 1))
4797               & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) == 0)
4798         return num1;
4799
4800       /* Similarly for IOR when setting high-order bits.  */
4801       if (code == IOR
4802           && num1 > 1
4803           && bitwidth <= HOST_BITS_PER_WIDE_INT
4804           && CONST_INT_P (XEXP (x, 1))
4805           && (UINTVAL (XEXP (x, 1))
4806               & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4807         return num1;
4808
4809       return MIN (num0, num1);
4810
4811     case PLUS:  case MINUS:
4812       /* For addition and subtraction, we can have a 1-bit carry.  However,
4813          if we are subtracting 1 from a positive number, there will not
4814          be such a carry.  Furthermore, if the positive number is known to
4815          be 0 or 1, we know the result is either -1 or 0.  */
4816
4817       if (code == PLUS && XEXP (x, 1) == constm1_rtx
4818           && bitwidth <= HOST_BITS_PER_WIDE_INT)
4819         {
4820           nonzero = nonzero_bits (XEXP (x, 0), mode);
4821           if ((((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero) == 0)
4822             return (nonzero == 1 || nonzero == 0 ? bitwidth
4823                     : bitwidth - floor_log2 (nonzero) - 1);
4824         }
4825
4826       num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4827                                          known_x, known_mode, known_ret);
4828       num1 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4829                                          known_x, known_mode, known_ret);
4830       result = MAX (1, MIN (num0, num1) - 1);
4831
4832       return result;
4833
4834     case MULT:
4835       /* The number of bits of the product is the sum of the number of
4836          bits of both terms.  However, unless one of the terms if known
4837          to be positive, we must allow for an additional bit since negating
4838          a negative number can remove one sign bit copy.  */
4839
4840       num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4841                                          known_x, known_mode, known_ret);
4842       num1 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4843                                          known_x, known_mode, known_ret);
4844
4845       result = bitwidth - (bitwidth - num0) - (bitwidth - num1);
4846       if (result > 0
4847           && (bitwidth > HOST_BITS_PER_WIDE_INT
4848               || (((nonzero_bits (XEXP (x, 0), mode)
4849                     & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4850                   && ((nonzero_bits (XEXP (x, 1), mode)
4851                        & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1)))
4852                       != 0))))
4853         result--;
4854
4855       return MAX (1, result);
4856
4857     case UDIV:
4858       /* The result must be <= the first operand.  If the first operand
4859          has the high bit set, we know nothing about the number of sign
4860          bit copies.  */
4861       if (bitwidth > HOST_BITS_PER_WIDE_INT)
4862         return 1;
4863       else if ((nonzero_bits (XEXP (x, 0), mode)
4864                 & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4865         return 1;
4866       else
4867         return cached_num_sign_bit_copies (XEXP (x, 0), mode,
4868                                            known_x, known_mode, known_ret);
4869
4870     case UMOD:
4871       /* The result must be <= the second operand.  If the second operand
4872          has (or just might have) the high bit set, we know nothing about
4873          the number of sign bit copies.  */
4874       if (bitwidth > HOST_BITS_PER_WIDE_INT)
4875         return 1;
4876       else if ((nonzero_bits (XEXP (x, 1), mode)
4877                 & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4878         return 1;
4879       else
4880         return cached_num_sign_bit_copies (XEXP (x, 1), mode,
4881                                            known_x, known_mode, known_ret);
4882
4883     case DIV:
4884       /* Similar to unsigned division, except that we have to worry about
4885          the case where the divisor is negative, in which case we have
4886          to add 1.  */
4887       result = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4888                                            known_x, known_mode, known_ret);
4889       if (result > 1
4890           && (bitwidth > HOST_BITS_PER_WIDE_INT
4891               || (nonzero_bits (XEXP (x, 1), mode)
4892                   & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
4893         result--;
4894
4895       return result;
4896
4897     case MOD:
4898       result = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4899                                            known_x, known_mode, known_ret);
4900       if (result > 1
4901           && (bitwidth > HOST_BITS_PER_WIDE_INT
4902               || (nonzero_bits (XEXP (x, 1), mode)
4903                   & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
4904         result--;
4905
4906       return result;
4907
4908     case ASHIFTRT:
4909       /* Shifts by a constant add to the number of bits equal to the
4910          sign bit.  */
4911       num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4912                                          known_x, known_mode, known_ret);
4913       if (CONST_INT_P (XEXP (x, 1))
4914           && INTVAL (XEXP (x, 1)) > 0
4915           && INTVAL (XEXP (x, 1)) < GET_MODE_PRECISION (GET_MODE (x)))
4916         num0 = MIN ((int) bitwidth, num0 + INTVAL (XEXP (x, 1)));
4917
4918       return num0;
4919
4920     case ASHIFT:
4921       /* Left shifts destroy copies.  */
4922       if (!CONST_INT_P (XEXP (x, 1))
4923           || INTVAL (XEXP (x, 1)) < 0
4924           || INTVAL (XEXP (x, 1)) >= (int) bitwidth
4925           || INTVAL (XEXP (x, 1)) >= GET_MODE_PRECISION (GET_MODE (x)))
4926         return 1;
4927
4928       num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4929                                          known_x, known_mode, known_ret);
4930       return MAX (1, num0 - INTVAL (XEXP (x, 1)));
4931
4932     case IF_THEN_ELSE:
4933       num0 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4934                                          known_x, known_mode, known_ret);
4935       num1 = cached_num_sign_bit_copies (XEXP (x, 2), mode,
4936                                          known_x, known_mode, known_ret);
4937       return MIN (num0, num1);
4938
4939     case EQ:  case NE:  case GE:  case GT:  case LE:  case LT:
4940     case UNEQ:  case LTGT:  case UNGE:  case UNGT:  case UNLE:  case UNLT:
4941     case GEU: case GTU: case LEU: case LTU:
4942     case UNORDERED: case ORDERED:
4943       /* If the constant is negative, take its 1's complement and remask.
4944          Then see how many zero bits we have.  */
4945       nonzero = STORE_FLAG_VALUE;
4946       if (bitwidth <= HOST_BITS_PER_WIDE_INT
4947           && (nonzero & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4948         nonzero = (~nonzero) & GET_MODE_MASK (mode);
4949
4950       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
4951
4952     default:
4953       break;
4954     }
4955
4956   /* If we haven't been able to figure it out by one of the above rules,
4957      see if some of the high-order bits are known to be zero.  If so,
4958      count those bits and return one less than that amount.  If we can't
4959      safely compute the mask for this mode, always return BITWIDTH.  */
4960
4961   bitwidth = GET_MODE_PRECISION (mode);
4962   if (bitwidth > HOST_BITS_PER_WIDE_INT)
4963     return 1;
4964
4965   nonzero = nonzero_bits (x, mode);
4966   return nonzero & ((unsigned HOST_WIDE_INT) 1 << (bitwidth - 1))
4967          ? 1 : bitwidth - floor_log2 (nonzero) - 1;
4968 }
4969
4970 /* Calculate the rtx_cost of a single instruction.  A return value of
4971    zero indicates an instruction pattern without a known cost.  */
4972
4973 int
4974 insn_rtx_cost (rtx pat, bool speed)
4975 {
4976   int i, cost;
4977   rtx set;
4978
4979   /* Extract the single set rtx from the instruction pattern.
4980      We can't use single_set since we only have the pattern.  */
4981   if (GET_CODE (pat) == SET)
4982     set = pat;
4983   else if (GET_CODE (pat) == PARALLEL)
4984     {
4985       set = NULL_RTX;
4986       for (i = 0; i < XVECLEN (pat, 0); i++)
4987         {
4988           rtx x = XVECEXP (pat, 0, i);
4989           if (GET_CODE (x) == SET)
4990             {
4991               if (set)
4992                 return 0;
4993               set = x;
4994             }
4995         }
4996       if (!set)
4997         return 0;
4998     }
4999   else
5000     return 0;
5001
5002   cost = set_src_cost (SET_SRC (set), speed);
5003   return cost > 0 ? cost : COSTS_N_INSNS (1);
5004 }
5005
5006 /* Given an insn INSN and condition COND, return the condition in a
5007    canonical form to simplify testing by callers.  Specifically:
5008
5009    (1) The code will always be a comparison operation (EQ, NE, GT, etc.).
5010    (2) Both operands will be machine operands; (cc0) will have been replaced.
5011    (3) If an operand is a constant, it will be the second operand.
5012    (4) (LE x const) will be replaced with (LT x <const+1>) and similarly
5013        for GE, GEU, and LEU.
5014
5015    If the condition cannot be understood, or is an inequality floating-point
5016    comparison which needs to be reversed, 0 will be returned.
5017
5018    If REVERSE is nonzero, then reverse the condition prior to canonizing it.
5019
5020    If EARLIEST is nonzero, it is a pointer to a place where the earliest
5021    insn used in locating the condition was found.  If a replacement test
5022    of the condition is desired, it should be placed in front of that
5023    insn and we will be sure that the inputs are still valid.
5024
5025    If WANT_REG is nonzero, we wish the condition to be relative to that
5026    register, if possible.  Therefore, do not canonicalize the condition
5027    further.  If ALLOW_CC_MODE is nonzero, allow the condition returned
5028    to be a compare to a CC mode register.
5029
5030    If VALID_AT_INSN_P, the condition must be valid at both *EARLIEST
5031    and at INSN.  */
5032
5033 rtx
5034 canonicalize_condition (rtx_insn *insn, rtx cond, int reverse,
5035                         rtx_insn **earliest,
5036                         rtx want_reg, int allow_cc_mode, int valid_at_insn_p)
5037 {
5038   enum rtx_code code;
5039   rtx_insn *prev = insn;
5040   const_rtx set;
5041   rtx tem;
5042   rtx op0, op1;
5043   int reverse_code = 0;
5044   enum machine_mode mode;
5045   basic_block bb = BLOCK_FOR_INSN (insn);
5046
5047   code = GET_CODE (cond);
5048   mode = GET_MODE (cond);
5049   op0 = XEXP (cond, 0);
5050   op1 = XEXP (cond, 1);
5051
5052   if (reverse)
5053     code = reversed_comparison_code (cond, insn);
5054   if (code == UNKNOWN)
5055     return 0;
5056
5057   if (earliest)
5058     *earliest = insn;
5059
5060   /* If we are comparing a register with zero, see if the register is set
5061      in the previous insn to a COMPARE or a comparison operation.  Perform
5062      the same tests as a function of STORE_FLAG_VALUE as find_comparison_args
5063      in cse.c  */
5064
5065   while ((GET_RTX_CLASS (code) == RTX_COMPARE
5066           || GET_RTX_CLASS (code) == RTX_COMM_COMPARE)
5067          && op1 == CONST0_RTX (GET_MODE (op0))
5068          && op0 != want_reg)
5069     {
5070       /* Set nonzero when we find something of interest.  */
5071       rtx x = 0;
5072
5073 #ifdef HAVE_cc0
5074       /* If comparison with cc0, import actual comparison from compare
5075          insn.  */
5076       if (op0 == cc0_rtx)
5077         {
5078           if ((prev = prev_nonnote_insn (prev)) == 0
5079               || !NONJUMP_INSN_P (prev)
5080               || (set = single_set (prev)) == 0
5081               || SET_DEST (set) != cc0_rtx)
5082             return 0;
5083
5084           op0 = SET_SRC (set);
5085           op1 = CONST0_RTX (GET_MODE (op0));
5086           if (earliest)
5087             *earliest = prev;
5088         }
5089 #endif
5090
5091       /* If this is a COMPARE, pick up the two things being compared.  */
5092       if (GET_CODE (op0) == COMPARE)
5093         {
5094           op1 = XEXP (op0, 1);
5095           op0 = XEXP (op0, 0);
5096           continue;
5097         }
5098       else if (!REG_P (op0))
5099         break;
5100
5101       /* Go back to the previous insn.  Stop if it is not an INSN.  We also
5102          stop if it isn't a single set or if it has a REG_INC note because
5103          we don't want to bother dealing with it.  */
5104
5105       prev = prev_nonnote_nondebug_insn (prev);
5106
5107       if (prev == 0
5108           || !NONJUMP_INSN_P (prev)
5109           || FIND_REG_INC_NOTE (prev, NULL_RTX)
5110           /* In cfglayout mode, there do not have to be labels at the
5111              beginning of a block, or jumps at the end, so the previous
5112              conditions would not stop us when we reach bb boundary.  */
5113           || BLOCK_FOR_INSN (prev) != bb)
5114         break;
5115
5116       set = set_of (op0, prev);
5117
5118       if (set
5119           && (GET_CODE (set) != SET
5120               || !rtx_equal_p (SET_DEST (set), op0)))
5121         break;
5122
5123       /* If this is setting OP0, get what it sets it to if it looks
5124          relevant.  */
5125       if (set)
5126         {
5127           enum machine_mode inner_mode = GET_MODE (SET_DEST (set));
5128 #ifdef FLOAT_STORE_FLAG_VALUE
5129           REAL_VALUE_TYPE fsfv;
5130 #endif
5131
5132           /* ??? We may not combine comparisons done in a CCmode with
5133              comparisons not done in a CCmode.  This is to aid targets
5134              like Alpha that have an IEEE compliant EQ instruction, and
5135              a non-IEEE compliant BEQ instruction.  The use of CCmode is
5136              actually artificial, simply to prevent the combination, but
5137              should not affect other platforms.
5138
5139              However, we must allow VOIDmode comparisons to match either
5140              CCmode or non-CCmode comparison, because some ports have
5141              modeless comparisons inside branch patterns.
5142
5143              ??? This mode check should perhaps look more like the mode check
5144              in simplify_comparison in combine.  */
5145           if (((GET_MODE_CLASS (mode) == MODE_CC)
5146                != (GET_MODE_CLASS (inner_mode) == MODE_CC))
5147               && mode != VOIDmode
5148               && inner_mode != VOIDmode)
5149             break;
5150           if (GET_CODE (SET_SRC (set)) == COMPARE
5151               || (((code == NE
5152                     || (code == LT
5153                         && val_signbit_known_set_p (inner_mode,
5154                                                     STORE_FLAG_VALUE))
5155 #ifdef FLOAT_STORE_FLAG_VALUE
5156                     || (code == LT
5157                         && SCALAR_FLOAT_MODE_P (inner_mode)
5158                         && (fsfv = FLOAT_STORE_FLAG_VALUE (inner_mode),
5159                             REAL_VALUE_NEGATIVE (fsfv)))
5160 #endif
5161                     ))
5162                   && COMPARISON_P (SET_SRC (set))))
5163             x = SET_SRC (set);
5164           else if (((code == EQ
5165                      || (code == GE
5166                          && val_signbit_known_set_p (inner_mode,
5167                                                      STORE_FLAG_VALUE))
5168 #ifdef FLOAT_STORE_FLAG_VALUE
5169                      || (code == GE
5170                          && SCALAR_FLOAT_MODE_P (inner_mode)
5171                          && (fsfv = FLOAT_STORE_FLAG_VALUE (inner_mode),
5172                              REAL_VALUE_NEGATIVE (fsfv)))
5173 #endif
5174                      ))
5175                    && COMPARISON_P (SET_SRC (set)))
5176             {
5177               reverse_code = 1;
5178               x = SET_SRC (set);
5179             }
5180           else if ((code == EQ || code == NE)
5181                    && GET_CODE (SET_SRC (set)) == XOR)
5182             /* Handle sequences like:
5183
5184                (set op0 (xor X Y))
5185                ...(eq|ne op0 (const_int 0))...
5186
5187                in which case:
5188
5189                (eq op0 (const_int 0)) reduces to (eq X Y)
5190                (ne op0 (const_int 0)) reduces to (ne X Y)
5191
5192                This is the form used by MIPS16, for example.  */
5193             x = SET_SRC (set);
5194           else
5195             break;
5196         }
5197
5198       else if (reg_set_p (op0, prev))
5199         /* If this sets OP0, but not directly, we have to give up.  */
5200         break;
5201
5202       if (x)
5203         {
5204           /* If the caller is expecting the condition to be valid at INSN,
5205              make sure X doesn't change before INSN.  */
5206           if (valid_at_insn_p)
5207             if (modified_in_p (x, prev) || modified_between_p (x, prev, insn))
5208               break;
5209           if (COMPARISON_P (x))
5210             code = GET_CODE (x);
5211           if (reverse_code)
5212             {
5213               code = reversed_comparison_code (x, prev);
5214               if (code == UNKNOWN)
5215                 return 0;
5216               reverse_code = 0;
5217             }
5218
5219           op0 = XEXP (x, 0), op1 = XEXP (x, 1);
5220           if (earliest)
5221             *earliest = prev;
5222         }
5223     }
5224
5225   /* If constant is first, put it last.  */
5226   if (CONSTANT_P (op0))
5227     code = swap_condition (code), tem = op0, op0 = op1, op1 = tem;
5228
5229   /* If OP0 is the result of a comparison, we weren't able to find what
5230      was really being compared, so fail.  */
5231   if (!allow_cc_mode
5232       && GET_MODE_CLASS (GET_MODE (op0)) == MODE_CC)
5233     return 0;
5234
5235   /* Canonicalize any ordered comparison with integers involving equality
5236      if we can do computations in the relevant mode and we do not
5237      overflow.  */
5238
5239   if (GET_MODE_CLASS (GET_MODE (op0)) != MODE_CC
5240       && CONST_INT_P (op1)
5241       && GET_MODE (op0) != VOIDmode
5242       && GET_MODE_PRECISION (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT)
5243     {
5244       HOST_WIDE_INT const_val = INTVAL (op1);
5245       unsigned HOST_WIDE_INT uconst_val = const_val;
5246       unsigned HOST_WIDE_INT max_val
5247         = (unsigned HOST_WIDE_INT) GET_MODE_MASK (GET_MODE (op0));
5248
5249       switch (code)
5250         {
5251         case LE:
5252           if ((unsigned HOST_WIDE_INT) const_val != max_val >> 1)
5253             code = LT, op1 = gen_int_mode (const_val + 1, GET_MODE (op0));
5254           break;
5255
5256         /* When cross-compiling, const_val might be sign-extended from
5257            BITS_PER_WORD to HOST_BITS_PER_WIDE_INT */
5258         case GE:
5259           if ((const_val & max_val)
5260               != ((unsigned HOST_WIDE_INT) 1
5261                   << (GET_MODE_PRECISION (GET_MODE (op0)) - 1)))
5262             code = GT, op1 = gen_int_mode (const_val - 1, GET_MODE (op0));
5263           break;
5264
5265         case LEU:
5266           if (uconst_val < max_val)
5267             code = LTU, op1 = gen_int_mode (uconst_val + 1, GET_MODE (op0));
5268           break;
5269
5270         case GEU:
5271           if (uconst_val != 0)
5272             code = GTU, op1 = gen_int_mode (uconst_val - 1, GET_MODE (op0));
5273           break;
5274
5275         default:
5276           break;
5277         }
5278     }
5279
5280   /* Never return CC0; return zero instead.  */
5281   if (CC0_P (op0))
5282     return 0;
5283
5284   return gen_rtx_fmt_ee (code, VOIDmode, op0, op1);
5285 }
5286
5287 /* Given a jump insn JUMP, return the condition that will cause it to branch
5288    to its JUMP_LABEL.  If the condition cannot be understood, or is an
5289    inequality floating-point comparison which needs to be reversed, 0 will
5290    be returned.
5291
5292    If EARLIEST is nonzero, it is a pointer to a place where the earliest
5293    insn used in locating the condition was found.  If a replacement test
5294    of the condition is desired, it should be placed in front of that
5295    insn and we will be sure that the inputs are still valid.  If EARLIEST
5296    is null, the returned condition will be valid at INSN.
5297
5298    If ALLOW_CC_MODE is nonzero, allow the condition returned to be a
5299    compare CC mode register.
5300
5301    VALID_AT_INSN_P is the same as for canonicalize_condition.  */
5302
5303 rtx
5304 get_condition (rtx_insn *jump, rtx_insn **earliest, int allow_cc_mode,
5305                int valid_at_insn_p)
5306 {
5307   rtx cond;
5308   int reverse;
5309   rtx set;
5310
5311   /* If this is not a standard conditional jump, we can't parse it.  */
5312   if (!JUMP_P (jump)
5313       || ! any_condjump_p (jump))
5314     return 0;
5315   set = pc_set (jump);
5316
5317   cond = XEXP (SET_SRC (set), 0);
5318
5319   /* If this branches to JUMP_LABEL when the condition is false, reverse
5320      the condition.  */
5321   reverse
5322     = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
5323       && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (jump);
5324
5325   return canonicalize_condition (jump, cond, reverse, earliest, NULL_RTX,
5326                                  allow_cc_mode, valid_at_insn_p);
5327 }
5328
5329 /* Initialize the table NUM_SIGN_BIT_COPIES_IN_REP based on
5330    TARGET_MODE_REP_EXTENDED.
5331
5332    Note that we assume that the property of
5333    TARGET_MODE_REP_EXTENDED(B, C) is sticky to the integral modes
5334    narrower than mode B.  I.e., if A is a mode narrower than B then in
5335    order to be able to operate on it in mode B, mode A needs to
5336    satisfy the requirements set by the representation of mode B.  */
5337
5338 static void
5339 init_num_sign_bit_copies_in_rep (void)
5340 {
5341   enum machine_mode mode, in_mode;
5342
5343   for (in_mode = GET_CLASS_NARROWEST_MODE (MODE_INT); in_mode != VOIDmode;
5344        in_mode = GET_MODE_WIDER_MODE (mode))
5345     for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != in_mode;
5346          mode = GET_MODE_WIDER_MODE (mode))
5347       {
5348         enum machine_mode i;
5349
5350         /* Currently, it is assumed that TARGET_MODE_REP_EXTENDED
5351            extends to the next widest mode.  */
5352         gcc_assert (targetm.mode_rep_extended (mode, in_mode) == UNKNOWN
5353                     || GET_MODE_WIDER_MODE (mode) == in_mode);
5354
5355         /* We are in in_mode.  Count how many bits outside of mode
5356            have to be copies of the sign-bit.  */
5357         for (i = mode; i != in_mode; i = GET_MODE_WIDER_MODE (i))
5358           {
5359             enum machine_mode wider = GET_MODE_WIDER_MODE (i);
5360
5361             if (targetm.mode_rep_extended (i, wider) == SIGN_EXTEND
5362                 /* We can only check sign-bit copies starting from the
5363                    top-bit.  In order to be able to check the bits we
5364                    have already seen we pretend that subsequent bits
5365                    have to be sign-bit copies too.  */
5366                 || num_sign_bit_copies_in_rep [in_mode][mode])
5367               num_sign_bit_copies_in_rep [in_mode][mode]
5368                 += GET_MODE_PRECISION (wider) - GET_MODE_PRECISION (i);
5369           }
5370       }
5371 }
5372
5373 /* Suppose that truncation from the machine mode of X to MODE is not a
5374    no-op.  See if there is anything special about X so that we can
5375    assume it already contains a truncated value of MODE.  */
5376
5377 bool
5378 truncated_to_mode (enum machine_mode mode, const_rtx x)
5379 {
5380   /* This register has already been used in MODE without explicit
5381      truncation.  */
5382   if (REG_P (x) && rtl_hooks.reg_truncated_to_mode (mode, x))
5383     return true;
5384
5385   /* See if we already satisfy the requirements of MODE.  If yes we
5386      can just switch to MODE.  */
5387   if (num_sign_bit_copies_in_rep[GET_MODE (x)][mode]
5388       && (num_sign_bit_copies (x, GET_MODE (x))
5389           >= num_sign_bit_copies_in_rep[GET_MODE (x)][mode] + 1))
5390     return true;
5391
5392   return false;
5393 }
5394 \f
5395 /* Return true if RTX code CODE has a single sequence of zero or more
5396    "e" operands and no rtvec operands.  Initialize its rtx_all_subrtx_bounds
5397    entry in that case.  */
5398
5399 static bool
5400 setup_reg_subrtx_bounds (unsigned int code)
5401 {
5402   const char *format = GET_RTX_FORMAT ((enum rtx_code) code);
5403   unsigned int i = 0;
5404   for (; format[i] != 'e'; ++i)
5405     {
5406       if (!format[i])
5407         /* No subrtxes.  Leave start and count as 0.  */
5408         return true;
5409       if (format[i] == 'E' || format[i] == 'V')
5410         return false;
5411     }
5412
5413   /* Record the sequence of 'e's.  */
5414   rtx_all_subrtx_bounds[code].start = i;
5415   do
5416     ++i;
5417   while (format[i] == 'e');
5418   rtx_all_subrtx_bounds[code].count = i - rtx_all_subrtx_bounds[code].start;
5419   /* rtl-iter.h relies on this.  */
5420   gcc_checking_assert (rtx_all_subrtx_bounds[code].count <= 3);
5421
5422   for (; format[i]; ++i)
5423     if (format[i] == 'E' || format[i] == 'V' || format[i] == 'e')
5424       return false;
5425
5426   return true;
5427 }
5428
5429 /* Initialize non_rtx_starting_operands, which is used to speed up
5430    for_each_rtx, and rtx_all_subrtx_bounds.  */
5431 void
5432 init_rtlanal (void)
5433 {
5434   int i;
5435   for (i = 0; i < NUM_RTX_CODE; i++)
5436     {
5437       const char *format = GET_RTX_FORMAT (i);
5438       const char *first = strpbrk (format, "eEV");
5439       non_rtx_starting_operands[i] = first ? first - format : -1;
5440       if (!setup_reg_subrtx_bounds (i))
5441         rtx_all_subrtx_bounds[i].count = UCHAR_MAX;
5442       if (GET_RTX_CLASS (i) != RTX_CONST_OBJ)
5443         rtx_nonconst_subrtx_bounds[i] = rtx_all_subrtx_bounds[i];
5444     }
5445
5446   init_num_sign_bit_copies_in_rep ();
5447 }
5448 \f
5449 /* Check whether this is a constant pool constant.  */
5450 bool
5451 constant_pool_constant_p (rtx x)
5452 {
5453   x = avoid_constant_pool_reference (x);
5454   return CONST_DOUBLE_P (x);
5455 }
5456 \f
5457 /* If M is a bitmask that selects a field of low-order bits within an item but
5458    not the entire word, return the length of the field.  Return -1 otherwise.
5459    M is used in machine mode MODE.  */
5460
5461 int
5462 low_bitmask_len (enum machine_mode mode, unsigned HOST_WIDE_INT m)
5463 {
5464   if (mode != VOIDmode)
5465     {
5466       if (GET_MODE_PRECISION (mode) > HOST_BITS_PER_WIDE_INT)
5467         return -1;
5468       m &= GET_MODE_MASK (mode);
5469     }
5470
5471   return exact_log2 (m + 1);
5472 }
5473
5474 /* Return the mode of MEM's address.  */
5475
5476 enum machine_mode
5477 get_address_mode (rtx mem)
5478 {
5479   enum machine_mode mode;
5480
5481   gcc_assert (MEM_P (mem));
5482   mode = GET_MODE (XEXP (mem, 0));
5483   if (mode != VOIDmode)
5484     return mode;
5485   return targetm.addr_space.address_mode (MEM_ADDR_SPACE (mem));
5486 }
5487 \f
5488 /* Split up a CONST_DOUBLE or integer constant rtx
5489    into two rtx's for single words,
5490    storing in *FIRST the word that comes first in memory in the target
5491    and in *SECOND the other.
5492
5493    TODO: This function needs to be rewritten to work on any size
5494    integer.  */
5495
5496 void
5497 split_double (rtx value, rtx *first, rtx *second)
5498 {
5499   if (CONST_INT_P (value))
5500     {
5501       if (HOST_BITS_PER_WIDE_INT >= (2 * BITS_PER_WORD))
5502         {
5503           /* In this case the CONST_INT holds both target words.
5504              Extract the bits from it into two word-sized pieces.
5505              Sign extend each half to HOST_WIDE_INT.  */
5506           unsigned HOST_WIDE_INT low, high;
5507           unsigned HOST_WIDE_INT mask, sign_bit, sign_extend;
5508           unsigned bits_per_word = BITS_PER_WORD;
5509
5510           /* Set sign_bit to the most significant bit of a word.  */
5511           sign_bit = 1;
5512           sign_bit <<= bits_per_word - 1;
5513
5514           /* Set mask so that all bits of the word are set.  We could
5515              have used 1 << BITS_PER_WORD instead of basing the
5516              calculation on sign_bit.  However, on machines where
5517              HOST_BITS_PER_WIDE_INT == BITS_PER_WORD, it could cause a
5518              compiler warning, even though the code would never be
5519              executed.  */
5520           mask = sign_bit << 1;
5521           mask--;
5522
5523           /* Set sign_extend as any remaining bits.  */
5524           sign_extend = ~mask;
5525
5526           /* Pick the lower word and sign-extend it.  */
5527           low = INTVAL (value);
5528           low &= mask;
5529           if (low & sign_bit)
5530             low |= sign_extend;
5531
5532           /* Pick the higher word, shifted to the least significant
5533              bits, and sign-extend it.  */
5534           high = INTVAL (value);
5535           high >>= bits_per_word - 1;
5536           high >>= 1;
5537           high &= mask;
5538           if (high & sign_bit)
5539             high |= sign_extend;
5540
5541           /* Store the words in the target machine order.  */
5542           if (WORDS_BIG_ENDIAN)
5543             {
5544               *first = GEN_INT (high);
5545               *second = GEN_INT (low);
5546             }
5547           else
5548             {
5549               *first = GEN_INT (low);
5550               *second = GEN_INT (high);
5551             }
5552         }
5553       else
5554         {
5555           /* The rule for using CONST_INT for a wider mode
5556              is that we regard the value as signed.
5557              So sign-extend it.  */
5558           rtx high = (INTVAL (value) < 0 ? constm1_rtx : const0_rtx);
5559           if (WORDS_BIG_ENDIAN)
5560             {
5561               *first = high;
5562               *second = value;
5563             }
5564           else
5565             {
5566               *first = value;
5567               *second = high;
5568             }
5569         }
5570     }
5571   else if (GET_CODE (value) == CONST_WIDE_INT)
5572     {
5573       /* All of this is scary code and needs to be converted to
5574          properly work with any size integer.  */
5575       gcc_assert (CONST_WIDE_INT_NUNITS (value) == 2);
5576       if (WORDS_BIG_ENDIAN)
5577         {
5578           *first = GEN_INT (CONST_WIDE_INT_ELT (value, 1));
5579           *second = GEN_INT (CONST_WIDE_INT_ELT (value, 0));
5580         }
5581       else
5582         {
5583           *first = GEN_INT (CONST_WIDE_INT_ELT (value, 0));
5584           *second = GEN_INT (CONST_WIDE_INT_ELT (value, 1));
5585         }
5586     }
5587   else if (!CONST_DOUBLE_P (value))
5588     {
5589       if (WORDS_BIG_ENDIAN)
5590         {
5591           *first = const0_rtx;
5592           *second = value;
5593         }
5594       else
5595         {
5596           *first = value;
5597           *second = const0_rtx;
5598         }
5599     }
5600   else if (GET_MODE (value) == VOIDmode
5601            /* This is the old way we did CONST_DOUBLE integers.  */
5602            || GET_MODE_CLASS (GET_MODE (value)) == MODE_INT)
5603     {
5604       /* In an integer, the words are defined as most and least significant.
5605          So order them by the target's convention.  */
5606       if (WORDS_BIG_ENDIAN)
5607         {
5608           *first = GEN_INT (CONST_DOUBLE_HIGH (value));
5609           *second = GEN_INT (CONST_DOUBLE_LOW (value));
5610         }
5611       else
5612         {
5613           *first = GEN_INT (CONST_DOUBLE_LOW (value));
5614           *second = GEN_INT (CONST_DOUBLE_HIGH (value));
5615         }
5616     }
5617   else
5618     {
5619       REAL_VALUE_TYPE r;
5620       long l[2];
5621       REAL_VALUE_FROM_CONST_DOUBLE (r, value);
5622
5623       /* Note, this converts the REAL_VALUE_TYPE to the target's
5624          format, splits up the floating point double and outputs
5625          exactly 32 bits of it into each of l[0] and l[1] --
5626          not necessarily BITS_PER_WORD bits.  */
5627       REAL_VALUE_TO_TARGET_DOUBLE (r, l);
5628
5629       /* If 32 bits is an entire word for the target, but not for the host,
5630          then sign-extend on the host so that the number will look the same
5631          way on the host that it would on the target.  See for instance
5632          simplify_unary_operation.  The #if is needed to avoid compiler
5633          warnings.  */
5634
5635 #if HOST_BITS_PER_LONG > 32
5636       if (BITS_PER_WORD < HOST_BITS_PER_LONG && BITS_PER_WORD == 32)
5637         {
5638           if (l[0] & ((long) 1 << 31))
5639             l[0] |= ((long) (-1) << 32);
5640           if (l[1] & ((long) 1 << 31))
5641             l[1] |= ((long) (-1) << 32);
5642         }
5643 #endif
5644
5645       *first = GEN_INT (l[0]);
5646       *second = GEN_INT (l[1]);
5647     }
5648 }
5649
5650 /* Return true if X is a sign_extract or zero_extract from the least
5651    significant bit.  */
5652
5653 static bool
5654 lsb_bitfield_op_p (rtx x)
5655 {
5656   if (GET_RTX_CLASS (GET_CODE (x)) == RTX_BITFIELD_OPS)
5657     {
5658       enum machine_mode mode = GET_MODE (XEXP (x, 0));
5659       HOST_WIDE_INT len = INTVAL (XEXP (x, 1));
5660       HOST_WIDE_INT pos = INTVAL (XEXP (x, 2));
5661
5662       return (pos == (BITS_BIG_ENDIAN ? GET_MODE_PRECISION (mode) - len : 0));
5663     }
5664   return false;
5665 }
5666
5667 /* Strip outer address "mutations" from LOC and return a pointer to the
5668    inner value.  If OUTER_CODE is nonnull, store the code of the innermost
5669    stripped expression there.
5670
5671    "Mutations" either convert between modes or apply some kind of
5672    extension, truncation or alignment.  */
5673
5674 rtx *
5675 strip_address_mutations (rtx *loc, enum rtx_code *outer_code)
5676 {
5677   for (;;)
5678     {
5679       enum rtx_code code = GET_CODE (*loc);
5680       if (GET_RTX_CLASS (code) == RTX_UNARY)
5681         /* Things like SIGN_EXTEND, ZERO_EXTEND and TRUNCATE can be
5682            used to convert between pointer sizes.  */
5683         loc = &XEXP (*loc, 0);
5684       else if (lsb_bitfield_op_p (*loc))
5685         /* A [SIGN|ZERO]_EXTRACT from the least significant bit effectively
5686            acts as a combined truncation and extension.  */
5687         loc = &XEXP (*loc, 0);
5688       else if (code == AND && CONST_INT_P (XEXP (*loc, 1)))
5689         /* (and ... (const_int -X)) is used to align to X bytes.  */
5690         loc = &XEXP (*loc, 0);
5691       else if (code == SUBREG
5692                && !OBJECT_P (SUBREG_REG (*loc))
5693                && subreg_lowpart_p (*loc))
5694         /* (subreg (operator ...) ...) inside and is used for mode
5695            conversion too.  */
5696         loc = &SUBREG_REG (*loc);
5697       else
5698         return loc;
5699       if (outer_code)
5700         *outer_code = code;
5701     }
5702 }
5703
5704 /* Return true if CODE applies some kind of scale.  The scaled value is
5705    is the first operand and the scale is the second.  */
5706
5707 static bool
5708 binary_scale_code_p (enum rtx_code code)
5709 {
5710   return (code == MULT
5711           || code == ASHIFT
5712           /* Needed by ARM targets.  */
5713           || code == ASHIFTRT
5714           || code == LSHIFTRT
5715           || code == ROTATE
5716           || code == ROTATERT);
5717 }
5718
5719 /* If *INNER can be interpreted as a base, return a pointer to the inner term
5720    (see address_info).  Return null otherwise.  */
5721
5722 static rtx *
5723 get_base_term (rtx *inner)
5724 {
5725   if (GET_CODE (*inner) == LO_SUM)
5726     inner = strip_address_mutations (&XEXP (*inner, 0));
5727   if (REG_P (*inner)
5728       || MEM_P (*inner)
5729       || GET_CODE (*inner) == SUBREG)
5730     return inner;
5731   return 0;
5732 }
5733
5734 /* If *INNER can be interpreted as an index, return a pointer to the inner term
5735    (see address_info).  Return null otherwise.  */
5736
5737 static rtx *
5738 get_index_term (rtx *inner)
5739 {
5740   /* At present, only constant scales are allowed.  */
5741   if (binary_scale_code_p (GET_CODE (*inner)) && CONSTANT_P (XEXP (*inner, 1)))
5742     inner = strip_address_mutations (&XEXP (*inner, 0));
5743   if (REG_P (*inner)
5744       || MEM_P (*inner)
5745       || GET_CODE (*inner) == SUBREG)
5746     return inner;
5747   return 0;
5748 }
5749
5750 /* Set the segment part of address INFO to LOC, given that INNER is the
5751    unmutated value.  */
5752
5753 static void
5754 set_address_segment (struct address_info *info, rtx *loc, rtx *inner)
5755 {
5756   gcc_assert (!info->segment);
5757   info->segment = loc;
5758   info->segment_term = inner;
5759 }
5760
5761 /* Set the base part of address INFO to LOC, given that INNER is the
5762    unmutated value.  */
5763
5764 static void
5765 set_address_base (struct address_info *info, rtx *loc, rtx *inner)
5766 {
5767   gcc_assert (!info->base);
5768   info->base = loc;
5769   info->base_term = inner;
5770 }
5771
5772 /* Set the index part of address INFO to LOC, given that INNER is the
5773    unmutated value.  */
5774
5775 static void
5776 set_address_index (struct address_info *info, rtx *loc, rtx *inner)
5777 {
5778   gcc_assert (!info->index);
5779   info->index = loc;
5780   info->index_term = inner;
5781 }
5782
5783 /* Set the displacement part of address INFO to LOC, given that INNER
5784    is the constant term.  */
5785
5786 static void
5787 set_address_disp (struct address_info *info, rtx *loc, rtx *inner)
5788 {
5789   gcc_assert (!info->disp);
5790   info->disp = loc;
5791   info->disp_term = inner;
5792 }
5793
5794 /* INFO->INNER describes a {PRE,POST}_{INC,DEC} address.  Set up the
5795    rest of INFO accordingly.  */
5796
5797 static void
5798 decompose_incdec_address (struct address_info *info)
5799 {
5800   info->autoinc_p = true;
5801
5802   rtx *base = &XEXP (*info->inner, 0);
5803   set_address_base (info, base, base);
5804   gcc_checking_assert (info->base == info->base_term);
5805
5806   /* These addresses are only valid when the size of the addressed
5807      value is known.  */
5808   gcc_checking_assert (info->mode != VOIDmode);
5809 }
5810
5811 /* INFO->INNER describes a {PRE,POST}_MODIFY address.  Set up the rest
5812    of INFO accordingly.  */
5813
5814 static void
5815 decompose_automod_address (struct address_info *info)
5816 {
5817   info->autoinc_p = true;
5818
5819   rtx *base = &XEXP (*info->inner, 0);
5820   set_address_base (info, base, base);
5821   gcc_checking_assert (info->base == info->base_term);
5822
5823   rtx plus = XEXP (*info->inner, 1);
5824   gcc_assert (GET_CODE (plus) == PLUS);
5825
5826   info->base_term2 = &XEXP (plus, 0);
5827   gcc_checking_assert (rtx_equal_p (*info->base_term, *info->base_term2));
5828
5829   rtx *step = &XEXP (plus, 1);
5830   rtx *inner_step = strip_address_mutations (step);
5831   if (CONSTANT_P (*inner_step))
5832     set_address_disp (info, step, inner_step);
5833   else
5834     set_address_index (info, step, inner_step);
5835 }
5836
5837 /* Treat *LOC as a tree of PLUS operands and store pointers to the summed
5838    values in [PTR, END).  Return a pointer to the end of the used array.  */
5839
5840 static rtx **
5841 extract_plus_operands (rtx *loc, rtx **ptr, rtx **end)
5842 {
5843   rtx x = *loc;
5844   if (GET_CODE (x) == PLUS)
5845     {
5846       ptr = extract_plus_operands (&XEXP (x, 0), ptr, end);
5847       ptr = extract_plus_operands (&XEXP (x, 1), ptr, end);
5848     }
5849   else
5850     {
5851       gcc_assert (ptr != end);
5852       *ptr++ = loc;
5853     }
5854   return ptr;
5855 }
5856
5857 /* Evaluate the likelihood of X being a base or index value, returning
5858    positive if it is likely to be a base, negative if it is likely to be
5859    an index, and 0 if we can't tell.  Make the magnitude of the return
5860    value reflect the amount of confidence we have in the answer.
5861
5862    MODE, AS, OUTER_CODE and INDEX_CODE are as for ok_for_base_p_1.  */
5863
5864 static int
5865 baseness (rtx x, enum machine_mode mode, addr_space_t as,
5866           enum rtx_code outer_code, enum rtx_code index_code)
5867 {
5868   /* Believe *_POINTER unless the address shape requires otherwise.  */
5869   if (REG_P (x) && REG_POINTER (x))
5870     return 2;
5871   if (MEM_P (x) && MEM_POINTER (x))
5872     return 2;
5873
5874   if (REG_P (x) && HARD_REGISTER_P (x))
5875     {
5876       /* X is a hard register.  If it only fits one of the base
5877          or index classes, choose that interpretation.  */
5878       int regno = REGNO (x);
5879       bool base_p = ok_for_base_p_1 (regno, mode, as, outer_code, index_code);
5880       bool index_p = REGNO_OK_FOR_INDEX_P (regno);
5881       if (base_p != index_p)
5882         return base_p ? 1 : -1;
5883     }
5884   return 0;
5885 }
5886
5887 /* INFO->INNER describes a normal, non-automodified address.
5888    Fill in the rest of INFO accordingly.  */
5889
5890 static void
5891 decompose_normal_address (struct address_info *info)
5892 {
5893   /* Treat the address as the sum of up to four values.  */
5894   rtx *ops[4];
5895   size_t n_ops = extract_plus_operands (info->inner, ops,
5896                                         ops + ARRAY_SIZE (ops)) - ops;
5897
5898   /* If there is more than one component, any base component is in a PLUS.  */
5899   if (n_ops > 1)
5900     info->base_outer_code = PLUS;
5901
5902   /* Try to classify each sum operand now.  Leave those that could be
5903      either a base or an index in OPS.  */
5904   rtx *inner_ops[4];
5905   size_t out = 0;
5906   for (size_t in = 0; in < n_ops; ++in)
5907     {
5908       rtx *loc = ops[in];
5909       rtx *inner = strip_address_mutations (loc);
5910       if (CONSTANT_P (*inner))
5911         set_address_disp (info, loc, inner);
5912       else if (GET_CODE (*inner) == UNSPEC)
5913         set_address_segment (info, loc, inner);
5914       else
5915         {
5916           /* The only other possibilities are a base or an index.  */
5917           rtx *base_term = get_base_term (inner);
5918           rtx *index_term = get_index_term (inner);
5919           gcc_assert (base_term || index_term);
5920           if (!base_term)
5921             set_address_index (info, loc, index_term);
5922           else if (!index_term)
5923             set_address_base (info, loc, base_term);
5924           else
5925             {
5926               gcc_assert (base_term == index_term);
5927               ops[out] = loc;
5928               inner_ops[out] = base_term;
5929               ++out;
5930             }
5931         }
5932     }
5933
5934   /* Classify the remaining OPS members as bases and indexes.  */
5935   if (out == 1)
5936     {
5937       /* If we haven't seen a base or an index yet, assume that this is
5938          the base.  If we were confident that another term was the base
5939          or index, treat the remaining operand as the other kind.  */
5940       if (!info->base)
5941         set_address_base (info, ops[0], inner_ops[0]);
5942       else
5943         set_address_index (info, ops[0], inner_ops[0]);
5944     }
5945   else if (out == 2)
5946     {
5947       /* In the event of a tie, assume the base comes first.  */
5948       if (baseness (*inner_ops[0], info->mode, info->as, PLUS,
5949                     GET_CODE (*ops[1]))
5950           >= baseness (*inner_ops[1], info->mode, info->as, PLUS,
5951                        GET_CODE (*ops[0])))
5952         {
5953           set_address_base (info, ops[0], inner_ops[0]);
5954           set_address_index (info, ops[1], inner_ops[1]);
5955         }
5956       else
5957         {
5958           set_address_base (info, ops[1], inner_ops[1]);
5959           set_address_index (info, ops[0], inner_ops[0]);
5960         }
5961     }
5962   else
5963     gcc_assert (out == 0);
5964 }
5965
5966 /* Describe address *LOC in *INFO.  MODE is the mode of the addressed value,
5967    or VOIDmode if not known.  AS is the address space associated with LOC.
5968    OUTER_CODE is MEM if *LOC is a MEM address and ADDRESS otherwise.  */
5969
5970 void
5971 decompose_address (struct address_info *info, rtx *loc, enum machine_mode mode,
5972                    addr_space_t as, enum rtx_code outer_code)
5973 {
5974   memset (info, 0, sizeof (*info));
5975   info->mode = mode;
5976   info->as = as;
5977   info->addr_outer_code = outer_code;
5978   info->outer = loc;
5979   info->inner = strip_address_mutations (loc, &outer_code);
5980   info->base_outer_code = outer_code;
5981   switch (GET_CODE (*info->inner))
5982     {
5983     case PRE_DEC:
5984     case PRE_INC:
5985     case POST_DEC:
5986     case POST_INC:
5987       decompose_incdec_address (info);
5988       break;
5989
5990     case PRE_MODIFY:
5991     case POST_MODIFY:
5992       decompose_automod_address (info);
5993       break;
5994
5995     default:
5996       decompose_normal_address (info);
5997       break;
5998     }
5999 }
6000
6001 /* Describe address operand LOC in INFO.  */
6002
6003 void
6004 decompose_lea_address (struct address_info *info, rtx *loc)
6005 {
6006   decompose_address (info, loc, VOIDmode, ADDR_SPACE_GENERIC, ADDRESS);
6007 }
6008
6009 /* Describe the address of MEM X in INFO.  */
6010
6011 void
6012 decompose_mem_address (struct address_info *info, rtx x)
6013 {
6014   gcc_assert (MEM_P (x));
6015   decompose_address (info, &XEXP (x, 0), GET_MODE (x),
6016                      MEM_ADDR_SPACE (x), MEM);
6017 }
6018
6019 /* Update INFO after a change to the address it describes.  */
6020
6021 void
6022 update_address (struct address_info *info)
6023 {
6024   decompose_address (info, info->outer, info->mode, info->as,
6025                      info->addr_outer_code);
6026 }
6027
6028 /* Return the scale applied to *INFO->INDEX_TERM, or 0 if the index is
6029    more complicated than that.  */
6030
6031 HOST_WIDE_INT
6032 get_index_scale (const struct address_info *info)
6033 {
6034   rtx index = *info->index;
6035   if (GET_CODE (index) == MULT
6036       && CONST_INT_P (XEXP (index, 1))
6037       && info->index_term == &XEXP (index, 0))
6038     return INTVAL (XEXP (index, 1));
6039
6040   if (GET_CODE (index) == ASHIFT
6041       && CONST_INT_P (XEXP (index, 1))
6042       && info->index_term == &XEXP (index, 0))
6043     return (HOST_WIDE_INT) 1 << INTVAL (XEXP (index, 1));
6044
6045   if (info->index == info->index_term)
6046     return 1;
6047
6048   return 0;
6049 }
6050
6051 /* Return the "index code" of INFO, in the form required by
6052    ok_for_base_p_1.  */
6053
6054 enum rtx_code
6055 get_index_code (const struct address_info *info)
6056 {
6057   if (info->index)
6058     return GET_CODE (*info->index);
6059
6060   if (info->disp)
6061     return GET_CODE (*info->disp);
6062
6063   return SCRATCH;
6064 }
6065
6066 /* Return true if X contains a thread-local symbol.  */
6067
6068 bool
6069 tls_referenced_p (const_rtx x)
6070 {
6071   if (!targetm.have_tls)
6072     return false;
6073
6074   subrtx_iterator::array_type array;
6075   FOR_EACH_SUBRTX (iter, array, x, ALL)
6076     if (GET_CODE (*iter) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (*iter) != 0)
6077       return true;
6078   return false;
6079 }