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