]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gcc/recog.c
This commit was generated by cvs2svn to compensate for changes in r99160,
[FreeBSD/FreeBSD.git] / contrib / gcc / recog.c
1 /* Subroutines used by or related to instruction recognition.
2    Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
3    1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22
23 #include "config.h"
24 #include "system.h"
25 #include "rtl.h"
26 #include "tm_p.h"
27 #include "insn-config.h"
28 #include "insn-attr.h"
29 #include "hard-reg-set.h"
30 #include "recog.h"
31 #include "regs.h"
32 #include "expr.h"
33 #include "function.h"
34 #include "flags.h"
35 #include "real.h"
36 #include "toplev.h"
37 #include "basic-block.h"
38 #include "output.h"
39 #include "reload.h"
40
41 #ifndef STACK_PUSH_CODE
42 #ifdef STACK_GROWS_DOWNWARD
43 #define STACK_PUSH_CODE PRE_DEC
44 #else
45 #define STACK_PUSH_CODE PRE_INC
46 #endif
47 #endif
48
49 #ifndef STACK_POP_CODE
50 #ifdef STACK_GROWS_DOWNWARD
51 #define STACK_POP_CODE POST_INC
52 #else
53 #define STACK_POP_CODE POST_DEC
54 #endif
55 #endif
56
57 static void validate_replace_rtx_1      PARAMS ((rtx *, rtx, rtx, rtx));
58 static rtx *find_single_use_1           PARAMS ((rtx, rtx *));
59 static void validate_replace_src_1      PARAMS ((rtx *, void *));
60 static rtx split_insn                   PARAMS ((rtx));
61
62 /* Nonzero means allow operands to be volatile.
63    This should be 0 if you are generating rtl, such as if you are calling
64    the functions in optabs.c and expmed.c (most of the time).
65    This should be 1 if all valid insns need to be recognized,
66    such as in regclass.c and final.c and reload.c.
67
68    init_recog and init_recog_no_volatile are responsible for setting this.  */
69
70 int volatile_ok;
71
72 struct recog_data recog_data;
73
74 /* Contains a vector of operand_alternative structures for every operand.
75    Set up by preprocess_constraints.  */
76 struct operand_alternative recog_op_alt[MAX_RECOG_OPERANDS][MAX_RECOG_ALTERNATIVES];
77
78 /* On return from `constrain_operands', indicate which alternative
79    was satisfied.  */
80
81 int which_alternative;
82
83 /* Nonzero after end of reload pass.
84    Set to 1 or 0 by toplev.c.
85    Controls the significance of (SUBREG (MEM)).  */
86
87 int reload_completed;
88
89 /* Initialize data used by the function `recog'.
90    This must be called once in the compilation of a function
91    before any insn recognition may be done in the function.  */
92
93 void
94 init_recog_no_volatile ()
95 {
96   volatile_ok = 0;
97 }
98
99 void
100 init_recog ()
101 {
102   volatile_ok = 1;
103 }
104
105 /* Try recognizing the instruction INSN,
106    and return the code number that results.
107    Remember the code so that repeated calls do not
108    need to spend the time for actual rerecognition.
109
110    This function is the normal interface to instruction recognition.
111    The automatically-generated function `recog' is normally called
112    through this one.  (The only exception is in combine.c.)  */
113
114 int
115 recog_memoized_1 (insn)
116      rtx insn;
117 {
118   if (INSN_CODE (insn) < 0)
119     INSN_CODE (insn) = recog (PATTERN (insn), insn, 0);
120   return INSN_CODE (insn);
121 }
122 \f
123 /* Check that X is an insn-body for an `asm' with operands
124    and that the operands mentioned in it are legitimate.  */
125
126 int
127 check_asm_operands (x)
128      rtx x;
129 {
130   int noperands;
131   rtx *operands;
132   const char **constraints;
133   int i;
134
135   /* Post-reload, be more strict with things.  */
136   if (reload_completed)
137     {
138       /* ??? Doh!  We've not got the wrapping insn.  Cook one up.  */
139       extract_insn (make_insn_raw (x));
140       constrain_operands (1);
141       return which_alternative >= 0;
142     }
143
144   noperands = asm_noperands (x);
145   if (noperands < 0)
146     return 0;
147   if (noperands == 0)
148     return 1;
149
150   operands = (rtx *) alloca (noperands * sizeof (rtx));
151   constraints = (const char **) alloca (noperands * sizeof (char *));
152
153   decode_asm_operands (x, operands, NULL, constraints, NULL);
154
155   for (i = 0; i < noperands; i++)
156     {
157       const char *c = constraints[i];
158       if (c[0] == '%')
159         c++;
160       if (ISDIGIT ((unsigned char) c[0]) && c[1] == '\0')
161         c = constraints[c[0] - '0'];
162
163       if (! asm_operand_ok (operands[i], c))
164         return 0;
165     }
166
167   return 1;
168 }
169 \f
170 /* Static data for the next two routines.  */
171
172 typedef struct change_t
173 {
174   rtx object;
175   int old_code;
176   rtx *loc;
177   rtx old;
178 } change_t;
179
180 static change_t *changes;
181 static int changes_allocated;
182
183 static int num_changes = 0;
184
185 /* Validate a proposed change to OBJECT.  LOC is the location in the rtl
186    at which NEW will be placed.  If OBJECT is zero, no validation is done,
187    the change is simply made.
188
189    Two types of objects are supported:  If OBJECT is a MEM, memory_address_p
190    will be called with the address and mode as parameters.  If OBJECT is
191    an INSN, CALL_INSN, or JUMP_INSN, the insn will be re-recognized with
192    the change in place.
193
194    IN_GROUP is non-zero if this is part of a group of changes that must be
195    performed as a group.  In that case, the changes will be stored.  The
196    function `apply_change_group' will validate and apply the changes.
197
198    If IN_GROUP is zero, this is a single change.  Try to recognize the insn
199    or validate the memory reference with the change applied.  If the result
200    is not valid for the machine, suppress the change and return zero.
201    Otherwise, perform the change and return 1.  */
202
203 int
204 validate_change (object, loc, new, in_group)
205     rtx object;
206     rtx *loc;
207     rtx new;
208     int in_group;
209 {
210   rtx old = *loc;
211
212   if (old == new || rtx_equal_p (old, new))
213     return 1;
214
215   if (in_group == 0 && num_changes != 0)
216     abort ();
217
218   *loc = new;
219
220   /* Save the information describing this change.  */
221   if (num_changes >= changes_allocated)
222     {
223       if (changes_allocated == 0)
224         /* This value allows for repeated substitutions inside complex
225            indexed addresses, or changes in up to 5 insns.  */
226         changes_allocated = MAX_RECOG_OPERANDS * 5;
227       else
228         changes_allocated *= 2;
229
230       changes = 
231         (change_t*) xrealloc (changes, 
232                               sizeof (change_t) * changes_allocated); 
233     }
234   
235   changes[num_changes].object = object;
236   changes[num_changes].loc = loc;
237   changes[num_changes].old = old;
238
239   if (object && GET_CODE (object) != MEM)
240     {
241       /* Set INSN_CODE to force rerecognition of insn.  Save old code in
242          case invalid.  */
243       changes[num_changes].old_code = INSN_CODE (object);
244       INSN_CODE (object) = -1;
245     }
246
247   num_changes++;
248
249   /* If we are making a group of changes, return 1.  Otherwise, validate the
250      change group we made.  */
251
252   if (in_group)
253     return 1;
254   else
255     return apply_change_group ();
256 }
257
258 /* This subroutine of apply_change_group verifies whether the changes to INSN
259    were valid; i.e. whether INSN can still be recognized.  */
260
261 int
262 insn_invalid_p (insn)
263      rtx insn;
264 {
265   rtx pat = PATTERN (insn);
266   int num_clobbers = 0;
267   /* If we are before reload and the pattern is a SET, see if we can add
268      clobbers.  */
269   int icode = recog (pat, insn,
270                      (GET_CODE (pat) == SET
271                       && ! reload_completed && ! reload_in_progress)
272                      ? &num_clobbers : 0);
273   int is_asm = icode < 0 && asm_noperands (PATTERN (insn)) >= 0;
274
275   
276   /* If this is an asm and the operand aren't legal, then fail.  Likewise if
277      this is not an asm and the insn wasn't recognized.  */
278   if ((is_asm && ! check_asm_operands (PATTERN (insn)))
279       || (!is_asm && icode < 0))
280     return 1;
281
282   /* If we have to add CLOBBERs, fail if we have to add ones that reference
283      hard registers since our callers can't know if they are live or not.
284      Otherwise, add them.  */
285   if (num_clobbers > 0)
286     {
287       rtx newpat;
288
289       if (added_clobbers_hard_reg_p (icode))
290         return 1;
291
292       newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (num_clobbers + 1));
293       XVECEXP (newpat, 0, 0) = pat;
294       add_clobbers (newpat, icode);
295       PATTERN (insn) = pat = newpat;
296     }
297
298   /* After reload, verify that all constraints are satisfied.  */
299   if (reload_completed)
300     {
301       extract_insn (insn);
302
303       if (! constrain_operands (1))
304         return 1;
305     }
306
307   INSN_CODE (insn) = icode;
308   return 0;
309 }
310
311 /* Apply a group of changes previously issued with `validate_change'.
312    Return 1 if all changes are valid, zero otherwise.  */
313
314 int
315 apply_change_group ()
316 {
317   int i;
318   rtx last_validated = NULL_RTX;
319
320   /* The changes have been applied and all INSN_CODEs have been reset to force
321      rerecognition.
322
323      The changes are valid if we aren't given an object, or if we are
324      given a MEM and it still is a valid address, or if this is in insn
325      and it is recognized.  In the latter case, if reload has completed,
326      we also require that the operands meet the constraints for
327      the insn.  */
328
329   for (i = 0; i < num_changes; i++)
330     {
331       rtx object = changes[i].object;
332
333       /* if there is no object to test or if it is the same as the one we
334          already tested, ignore it.  */
335       if (object == 0 || object == last_validated)
336         continue;
337
338       if (GET_CODE (object) == MEM)
339         {
340           if (! memory_address_p (GET_MODE (object), XEXP (object, 0)))
341             break;
342         }
343       else if (insn_invalid_p (object))
344         {
345           rtx pat = PATTERN (object);
346
347           /* Perhaps we couldn't recognize the insn because there were
348              extra CLOBBERs at the end.  If so, try to re-recognize
349              without the last CLOBBER (later iterations will cause each of
350              them to be eliminated, in turn).  But don't do this if we
351              have an ASM_OPERAND.  */
352           if (GET_CODE (pat) == PARALLEL
353               && GET_CODE (XVECEXP (pat, 0, XVECLEN (pat, 0) - 1)) == CLOBBER
354               && asm_noperands (PATTERN (object)) < 0)
355             {
356               rtx newpat;
357
358               if (XVECLEN (pat, 0) == 2)
359                 newpat = XVECEXP (pat, 0, 0);
360               else
361                 {
362                   int j;
363
364                   newpat
365                     = gen_rtx_PARALLEL (VOIDmode, 
366                                         rtvec_alloc (XVECLEN (pat, 0) - 1));
367                   for (j = 0; j < XVECLEN (newpat, 0); j++)
368                     XVECEXP (newpat, 0, j) = XVECEXP (pat, 0, j);
369                 }
370
371               /* Add a new change to this group to replace the pattern
372                  with this new pattern.  Then consider this change
373                  as having succeeded.  The change we added will
374                  cause the entire call to fail if things remain invalid.
375
376                  Note that this can lose if a later change than the one
377                  we are processing specified &XVECEXP (PATTERN (object), 0, X)
378                  but this shouldn't occur.  */
379
380               validate_change (object, &PATTERN (object), newpat, 1);
381               continue;
382             }
383           else if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
384             /* If this insn is a CLOBBER or USE, it is always valid, but is
385                never recognized.  */
386             continue;
387           else
388             break;
389         }
390       last_validated = object;
391     }
392
393   if (i == num_changes)
394     {
395       num_changes = 0;
396       return 1;
397     }
398   else
399     {
400       cancel_changes (0);
401       return 0;
402     }
403 }
404
405 /* Return the number of changes so far in the current group.  */
406
407 int
408 num_validated_changes ()
409 {
410   return num_changes;
411 }
412
413 /* Retract the changes numbered NUM and up.  */
414
415 void
416 cancel_changes (num)
417      int num;
418 {
419   int i;
420
421   /* Back out all the changes.  Do this in the opposite order in which
422      they were made.  */
423   for (i = num_changes - 1; i >= num; i--)
424     {
425       *changes[i].loc = changes[i].old;
426       if (changes[i].object && GET_CODE (changes[i].object) != MEM)
427         INSN_CODE (changes[i].object) = changes[i].old_code;
428     }
429   num_changes = num;
430 }
431
432 /* Replace every occurrence of FROM in X with TO.  Mark each change with
433    validate_change passing OBJECT.  */
434
435 static void
436 validate_replace_rtx_1 (loc, from, to, object)
437      rtx *loc;
438      rtx from, to, object;
439 {
440   int i, j;
441   const char *fmt;
442   rtx x = *loc;
443   enum rtx_code code;
444   enum machine_mode op0_mode = VOIDmode;
445   int prev_changes = num_changes;
446   rtx new;
447
448   if (!x)
449     return;
450
451   code = GET_CODE (x);
452   fmt = GET_RTX_FORMAT (code);
453   if (fmt[0] == 'e')
454     op0_mode = GET_MODE (XEXP (x, 0));
455
456   /* X matches FROM if it is the same rtx or they are both referring to the
457      same register in the same mode.  Avoid calling rtx_equal_p unless the
458      operands look similar.  */
459
460   if (x == from
461       || (GET_CODE (x) == REG && GET_CODE (from) == REG
462           && GET_MODE (x) == GET_MODE (from)
463           && REGNO (x) == REGNO (from))
464       || (GET_CODE (x) == GET_CODE (from) && GET_MODE (x) == GET_MODE (from)
465           && rtx_equal_p (x, from)))
466     {
467       validate_change (object, loc, to, 1);
468       return;
469     }
470
471   /* Call ourself recursively to perform the replacements.  */
472
473   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
474     {
475       if (fmt[i] == 'e')
476         validate_replace_rtx_1 (&XEXP (x, i), from, to, object);
477       else if (fmt[i] == 'E')
478         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
479           validate_replace_rtx_1 (&XVECEXP (x, i, j), from, to, object);
480     }
481
482   /* If we didn't substitute, there is nothing more to do.  */
483   if (num_changes == prev_changes)
484     return;
485
486   /* Allow substituted expression to have different mode.  This is used by
487      regmove to change mode of pseudo register.  */
488   if (fmt[0] == 'e' && GET_MODE (XEXP (x, 0)) != VOIDmode)
489     op0_mode = GET_MODE (XEXP (x, 0));
490
491   /* Do changes needed to keep rtx consistent.  Don't do any other
492      simplifications, as it is not our job.  */
493
494   if ((GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == 'c')
495       && swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
496     {
497       validate_change (object, loc,
498                        gen_rtx_fmt_ee (GET_RTX_CLASS (code) == 'c' ? code
499                                        : swap_condition (code),
500                                        GET_MODE (x), XEXP (x, 1),
501                                        XEXP (x, 0)), 1);
502       x = *loc;
503       code = GET_CODE (x);
504     }
505
506   switch (code)
507     {
508     case PLUS:
509       /* If we have a PLUS whose second operand is now a CONST_INT, use
510          plus_constant to try to simplify it.
511          ??? We may want later to remove this, once simplification is
512          separated from this function.  */
513       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
514         validate_change (object, loc,
515                          simplify_gen_binary
516                          (PLUS, GET_MODE (x), XEXP (x, 0), XEXP (x, 1)), 1);
517       break;
518     case MINUS:
519       if (GET_CODE (XEXP (x, 1)) == CONST_INT
520           || GET_CODE (XEXP (x, 1)) == CONST_DOUBLE)
521         validate_change (object, loc,
522                          simplify_gen_binary
523                          (PLUS, GET_MODE (x), XEXP (x, 0),
524                           simplify_gen_unary (NEG,
525                                               GET_MODE (x), XEXP (x, 1),
526                                               GET_MODE (x))), 1);
527       break;
528     case ZERO_EXTEND:
529     case SIGN_EXTEND:
530       if (GET_MODE (XEXP (x, 0)) == VOIDmode)
531         {
532           new = simplify_gen_unary (code, GET_MODE (x), XEXP (x, 0),
533                                     op0_mode);
534           /* If any of the above failed, substitute in something that
535              we know won't be recognized.  */
536           if (!new)
537             new = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
538           validate_change (object, loc, new, 1);
539         }
540       break;
541     case SUBREG:
542       /* All subregs possible to simplify should be simplified.  */
543       new = simplify_subreg (GET_MODE (x), SUBREG_REG (x), op0_mode,
544                              SUBREG_BYTE (x));
545
546       /* Subregs of VOIDmode operands are incorrect.  */
547       if (!new && GET_MODE (SUBREG_REG (x)) == VOIDmode)
548         new = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
549       if (new)
550         validate_change (object, loc, new, 1);
551       break;
552     case ZERO_EXTRACT:
553     case SIGN_EXTRACT:
554       /* If we are replacing a register with memory, try to change the memory
555          to be the mode required for memory in extract operations (this isn't
556          likely to be an insertion operation; if it was, nothing bad will
557          happen, we might just fail in some cases).  */
558
559       if (GET_CODE (XEXP (x, 0)) == MEM
560           && GET_CODE (XEXP (x, 1)) == CONST_INT
561           && GET_CODE (XEXP (x, 2)) == CONST_INT
562           && !mode_dependent_address_p (XEXP (XEXP (x, 0), 0))
563           && !MEM_VOLATILE_P (XEXP (x, 0)))
564         {
565           enum machine_mode wanted_mode = VOIDmode;
566           enum machine_mode is_mode = GET_MODE (XEXP (x, 0));
567           int pos = INTVAL (XEXP (x, 2));
568
569           if (GET_CODE (x) == ZERO_EXTRACT)
570             {
571               enum machine_mode new_mode
572                 = mode_for_extraction (EP_extzv, 1);
573               if (new_mode != MAX_MACHINE_MODE)
574                 wanted_mode = new_mode;
575             }
576           else if (GET_CODE (x) == SIGN_EXTRACT)
577             {
578               enum machine_mode new_mode
579                 = mode_for_extraction (EP_extv, 1);
580               if (new_mode != MAX_MACHINE_MODE)
581                 wanted_mode = new_mode;
582             }
583
584           /* If we have a narrower mode, we can do something.  */
585           if (wanted_mode != VOIDmode
586               && GET_MODE_SIZE (wanted_mode) < GET_MODE_SIZE (is_mode))
587             {
588               int offset = pos / BITS_PER_UNIT;
589               rtx newmem;
590
591               /* If the bytes and bits are counted differently, we
592                  must adjust the offset.  */
593               if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN)
594                 offset =
595                   (GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (wanted_mode) -
596                    offset);
597
598               pos %= GET_MODE_BITSIZE (wanted_mode);
599
600               newmem = adjust_address_nv (XEXP (x, 0), wanted_mode, offset);
601
602               validate_change (object, &XEXP (x, 2), GEN_INT (pos), 1);
603               validate_change (object, &XEXP (x, 0), newmem, 1);
604             }
605         }
606
607       break;
608
609     default:
610       break;
611     }
612 }
613
614 /* Try replacing every occurrence of FROM in subexpression LOC of INSN
615    with TO.  After all changes have been made, validate by seeing
616    if INSN is still valid.  */
617
618 int
619 validate_replace_rtx_subexp (from, to, insn, loc)
620      rtx from, to, insn, *loc;
621 {
622   validate_replace_rtx_1 (loc, from, to, insn);
623   return apply_change_group ();
624 }
625
626 /* Try replacing every occurrence of FROM in INSN with TO.  After all
627    changes have been made, validate by seeing if INSN is still valid.  */
628
629 int
630 validate_replace_rtx (from, to, insn)
631      rtx from, to, insn;
632 {
633   validate_replace_rtx_1 (&PATTERN (insn), from, to, insn);
634   return apply_change_group ();
635 }
636
637 /* Try replacing every occurrence of FROM in INSN with TO.  */
638
639 void
640 validate_replace_rtx_group (from, to, insn)
641      rtx from, to, insn;
642 {
643   validate_replace_rtx_1 (&PATTERN (insn), from, to, insn);
644 }
645
646 /* Function called by note_uses to replace used subexpressions.  */
647 struct validate_replace_src_data
648 {
649   rtx from;                     /* Old RTX */
650   rtx to;                       /* New RTX */
651   rtx insn;                     /* Insn in which substitution is occurring.  */
652 };
653
654 static void
655 validate_replace_src_1 (x, data)
656      rtx *x;
657      void *data;
658 {
659   struct validate_replace_src_data *d
660     = (struct validate_replace_src_data *) data;
661
662   validate_replace_rtx_1 (x, d->from, d->to, d->insn);
663 }
664
665 /* Try replacing every occurrence of FROM in INSN with TO, avoiding
666    SET_DESTs.  After all changes have been made, validate by seeing if
667    INSN is still valid.  */
668
669 int
670 validate_replace_src (from, to, insn)
671      rtx from, to, insn;
672 {
673   struct validate_replace_src_data d;
674
675   d.from = from;
676   d.to = to;
677   d.insn = insn;
678   note_uses (&PATTERN (insn), validate_replace_src_1, &d);
679   return apply_change_group ();
680 }
681 \f
682 #ifdef HAVE_cc0
683 /* Return 1 if the insn using CC0 set by INSN does not contain
684    any ordered tests applied to the condition codes.
685    EQ and NE tests do not count.  */
686
687 int
688 next_insn_tests_no_inequality (insn)
689      rtx insn;
690 {
691   rtx next = next_cc0_user (insn);
692
693   /* If there is no next insn, we have to take the conservative choice.  */
694   if (next == 0)
695     return 0;
696
697   return ((GET_CODE (next) == JUMP_INSN
698            || GET_CODE (next) == INSN
699            || GET_CODE (next) == CALL_INSN)
700           && ! inequality_comparisons_p (PATTERN (next)));
701 }
702
703 #if 0  /* This is useless since the insn that sets the cc's
704           must be followed immediately by the use of them.  */
705 /* Return 1 if the CC value set up by INSN is not used.  */
706
707 int
708 next_insns_test_no_inequality (insn)
709      rtx insn;
710 {
711   rtx next = NEXT_INSN (insn);
712
713   for (; next != 0; next = NEXT_INSN (next))
714     {
715       if (GET_CODE (next) == CODE_LABEL
716           || GET_CODE (next) == BARRIER)
717         return 1;
718       if (GET_CODE (next) == NOTE)
719         continue;
720       if (inequality_comparisons_p (PATTERN (next)))
721         return 0;
722       if (sets_cc0_p (PATTERN (next)) == 1)
723         return 1;
724       if (! reg_mentioned_p (cc0_rtx, PATTERN (next)))
725         return 1;
726     }
727   return 1;
728 }
729 #endif
730 #endif
731 \f
732 /* This is used by find_single_use to locate an rtx that contains exactly one
733    use of DEST, which is typically either a REG or CC0.  It returns a
734    pointer to the innermost rtx expression containing DEST.  Appearances of
735    DEST that are being used to totally replace it are not counted.  */
736
737 static rtx *
738 find_single_use_1 (dest, loc)
739      rtx dest;
740      rtx *loc;
741 {
742   rtx x = *loc;
743   enum rtx_code code = GET_CODE (x);
744   rtx *result = 0;
745   rtx *this_result;
746   int i;
747   const char *fmt;
748
749   switch (code)
750     {
751     case CONST_INT:
752     case CONST:
753     case LABEL_REF:
754     case SYMBOL_REF:
755     case CONST_DOUBLE:
756     case CONST_VECTOR:
757     case CLOBBER:
758       return 0;
759
760     case SET:
761       /* If the destination is anything other than CC0, PC, a REG or a SUBREG
762          of a REG that occupies all of the REG, the insn uses DEST if
763          it is mentioned in the destination or the source.  Otherwise, we
764          need just check the source.  */
765       if (GET_CODE (SET_DEST (x)) != CC0
766           && GET_CODE (SET_DEST (x)) != PC
767           && GET_CODE (SET_DEST (x)) != REG
768           && ! (GET_CODE (SET_DEST (x)) == SUBREG
769                 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
770                 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
771                       + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
772                     == ((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
773                          + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
774         break;
775
776       return find_single_use_1 (dest, &SET_SRC (x));
777
778     case MEM:
779     case SUBREG:
780       return find_single_use_1 (dest, &XEXP (x, 0));
781       
782     default:
783       break;
784     }
785
786   /* If it wasn't one of the common cases above, check each expression and
787      vector of this code.  Look for a unique usage of DEST.  */
788
789   fmt = GET_RTX_FORMAT (code);
790   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
791     {
792       if (fmt[i] == 'e')
793         {
794           if (dest == XEXP (x, i)
795               || (GET_CODE (dest) == REG && GET_CODE (XEXP (x, i)) == REG
796                   && REGNO (dest) == REGNO (XEXP (x, i))))
797             this_result = loc;
798           else
799             this_result = find_single_use_1 (dest, &XEXP (x, i));
800
801           if (result == 0)
802             result = this_result;
803           else if (this_result)
804             /* Duplicate usage.  */
805             return 0;
806         }
807       else if (fmt[i] == 'E')
808         {
809           int j;
810
811           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
812             {
813               if (XVECEXP (x, i, j) == dest
814                   || (GET_CODE (dest) == REG
815                       && GET_CODE (XVECEXP (x, i, j)) == REG
816                       && REGNO (XVECEXP (x, i, j)) == REGNO (dest)))
817                 this_result = loc;
818               else
819                 this_result = find_single_use_1 (dest, &XVECEXP (x, i, j));
820
821               if (result == 0)
822                 result = this_result;
823               else if (this_result)
824                 return 0;
825             }
826         }
827     }
828
829   return result;
830 }
831 \f
832 /* See if DEST, produced in INSN, is used only a single time in the
833    sequel.  If so, return a pointer to the innermost rtx expression in which
834    it is used.
835
836    If PLOC is non-zero, *PLOC is set to the insn containing the single use.
837
838    This routine will return usually zero either before flow is called (because
839    there will be no LOG_LINKS notes) or after reload (because the REG_DEAD
840    note can't be trusted).
841
842    If DEST is cc0_rtx, we look only at the next insn.  In that case, we don't
843    care about REG_DEAD notes or LOG_LINKS.
844
845    Otherwise, we find the single use by finding an insn that has a
846    LOG_LINKS pointing at INSN and has a REG_DEAD note for DEST.  If DEST is
847    only referenced once in that insn, we know that it must be the first
848    and last insn referencing DEST.  */
849
850 rtx *
851 find_single_use (dest, insn, ploc)
852      rtx dest;
853      rtx insn;
854      rtx *ploc;
855 {
856   rtx next;
857   rtx *result;
858   rtx link;
859
860 #ifdef HAVE_cc0
861   if (dest == cc0_rtx)
862     {
863       next = NEXT_INSN (insn);
864       if (next == 0
865           || (GET_CODE (next) != INSN && GET_CODE (next) != JUMP_INSN))
866         return 0;
867
868       result = find_single_use_1 (dest, &PATTERN (next));
869       if (result && ploc)
870         *ploc = next;
871       return result;
872     }
873 #endif
874
875   if (reload_completed || reload_in_progress || GET_CODE (dest) != REG)
876     return 0;
877
878   for (next = next_nonnote_insn (insn);
879        next != 0 && GET_CODE (next) != CODE_LABEL;
880        next = next_nonnote_insn (next))
881     if (INSN_P (next) && dead_or_set_p (next, dest))
882       {
883         for (link = LOG_LINKS (next); link; link = XEXP (link, 1))
884           if (XEXP (link, 0) == insn)
885             break;
886
887         if (link)
888           {
889             result = find_single_use_1 (dest, &PATTERN (next));
890             if (ploc)
891               *ploc = next;
892             return result;
893           }
894       }
895
896   return 0;
897 }
898 \f
899 /* Return 1 if OP is a valid general operand for machine mode MODE.
900    This is either a register reference, a memory reference,
901    or a constant.  In the case of a memory reference, the address
902    is checked for general validity for the target machine.
903
904    Register and memory references must have mode MODE in order to be valid,
905    but some constants have no machine mode and are valid for any mode.
906
907    If MODE is VOIDmode, OP is checked for validity for whatever mode
908    it has.
909
910    The main use of this function is as a predicate in match_operand
911    expressions in the machine description.
912
913    For an explanation of this function's behavior for registers of
914    class NO_REGS, see the comment for `register_operand'.  */
915
916 int
917 general_operand (op, mode)
918      rtx op;
919      enum machine_mode mode;
920 {
921   enum rtx_code code = GET_CODE (op);
922
923   if (mode == VOIDmode)
924     mode = GET_MODE (op);
925
926   /* Don't accept CONST_INT or anything similar
927      if the caller wants something floating.  */
928   if (GET_MODE (op) == VOIDmode && mode != VOIDmode
929       && GET_MODE_CLASS (mode) != MODE_INT
930       && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
931     return 0;
932
933   if (GET_CODE (op) == CONST_INT
934       && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
935     return 0;
936
937   if (CONSTANT_P (op))
938     return ((GET_MODE (op) == VOIDmode || GET_MODE (op) == mode
939              || mode == VOIDmode)
940 #ifdef LEGITIMATE_PIC_OPERAND_P
941             && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
942 #endif
943             && LEGITIMATE_CONSTANT_P (op));
944
945   /* Except for certain constants with VOIDmode, already checked for,
946      OP's mode must match MODE if MODE specifies a mode.  */
947
948   if (GET_MODE (op) != mode)
949     return 0;
950
951   if (code == SUBREG)
952     {
953 #ifdef INSN_SCHEDULING
954       /* On machines that have insn scheduling, we want all memory
955          reference to be explicit, so outlaw paradoxical SUBREGs.  */
956       if (GET_CODE (SUBREG_REG (op)) == MEM
957           && GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op))))
958         return 0;
959 #endif
960       /* Avoid memories with nonzero SUBREG_BYTE, as offsetting the memory
961          may result in incorrect reference.  We should simplify all valid
962          subregs of MEM anyway.  But allow this after reload because we
963          might be called from cleanup_subreg_operands. 
964
965          ??? This is a kludge.  */
966       if (!reload_completed && SUBREG_BYTE (op) != 0
967           && GET_CODE (SUBREG_REG (op)) == MEM)
968         return 0;
969
970       op = SUBREG_REG (op);
971       code = GET_CODE (op);
972     }
973
974   if (code == REG)
975     /* A register whose class is NO_REGS is not a general operand.  */
976     return (REGNO (op) >= FIRST_PSEUDO_REGISTER
977             || REGNO_REG_CLASS (REGNO (op)) != NO_REGS);
978
979   if (code == MEM)
980     {
981       rtx y = XEXP (op, 0);
982
983       if (! volatile_ok && MEM_VOLATILE_P (op))
984         return 0;
985
986       if (GET_CODE (y) == ADDRESSOF)
987         return 1;
988
989       /* Use the mem's mode, since it will be reloaded thus.  */
990       mode = GET_MODE (op);
991       GO_IF_LEGITIMATE_ADDRESS (mode, y, win);
992     }
993
994   /* Pretend this is an operand for now; we'll run force_operand
995      on its replacement in fixup_var_refs_1.  */
996   if (code == ADDRESSOF)
997     return 1;
998
999   return 0;
1000
1001  win:
1002   return 1;
1003 }
1004 \f
1005 /* Return 1 if OP is a valid memory address for a memory reference
1006    of mode MODE.
1007
1008    The main use of this function is as a predicate in match_operand
1009    expressions in the machine description.  */
1010
1011 int
1012 address_operand (op, mode)
1013      rtx op;
1014      enum machine_mode mode;
1015 {
1016   return memory_address_p (mode, op);
1017 }
1018
1019 /* Return 1 if OP is a register reference of mode MODE.
1020    If MODE is VOIDmode, accept a register in any mode.
1021
1022    The main use of this function is as a predicate in match_operand
1023    expressions in the machine description.
1024
1025    As a special exception, registers whose class is NO_REGS are
1026    not accepted by `register_operand'.  The reason for this change
1027    is to allow the representation of special architecture artifacts
1028    (such as a condition code register) without extending the rtl
1029    definitions.  Since registers of class NO_REGS cannot be used
1030    as registers in any case where register classes are examined,
1031    it is most consistent to keep this function from accepting them.  */
1032
1033 int
1034 register_operand (op, mode)
1035      rtx op;
1036      enum machine_mode mode;
1037 {
1038   if (GET_MODE (op) != mode && mode != VOIDmode)
1039     return 0;
1040
1041   if (GET_CODE (op) == SUBREG)
1042     {
1043       /* Before reload, we can allow (SUBREG (MEM...)) as a register operand
1044          because it is guaranteed to be reloaded into one.
1045          Just make sure the MEM is valid in itself.
1046          (Ideally, (SUBREG (MEM)...) should not exist after reload,
1047          but currently it does result from (SUBREG (REG)...) where the
1048          reg went on the stack.)  */
1049       if (! reload_completed && GET_CODE (SUBREG_REG (op)) == MEM)
1050         return general_operand (op, mode);
1051
1052 #ifdef CLASS_CANNOT_CHANGE_MODE
1053       if (GET_CODE (SUBREG_REG (op)) == REG
1054           && REGNO (SUBREG_REG (op)) < FIRST_PSEUDO_REGISTER
1055           && (TEST_HARD_REG_BIT
1056               (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
1057                REGNO (SUBREG_REG (op))))
1058           && CLASS_CANNOT_CHANGE_MODE_P (mode, GET_MODE (SUBREG_REG (op)))
1059           && GET_MODE_CLASS (GET_MODE (SUBREG_REG (op))) != MODE_COMPLEX_INT
1060           && GET_MODE_CLASS (GET_MODE (SUBREG_REG (op))) != MODE_COMPLEX_FLOAT)
1061         return 0;
1062 #endif
1063
1064       op = SUBREG_REG (op);
1065     }
1066
1067   /* If we have an ADDRESSOF, consider it valid since it will be
1068      converted into something that will not be a MEM.  */
1069   if (GET_CODE (op) == ADDRESSOF)
1070     return 1;
1071
1072   /* We don't consider registers whose class is NO_REGS
1073      to be a register operand.  */
1074   return (GET_CODE (op) == REG
1075           && (REGNO (op) >= FIRST_PSEUDO_REGISTER
1076               || REGNO_REG_CLASS (REGNO (op)) != NO_REGS));
1077 }
1078
1079 /* Return 1 for a register in Pmode; ignore the tested mode.  */
1080
1081 int
1082 pmode_register_operand (op, mode)
1083      rtx op;
1084      enum machine_mode mode ATTRIBUTE_UNUSED;
1085 {
1086   return register_operand (op, Pmode);
1087 }
1088
1089 /* Return 1 if OP should match a MATCH_SCRATCH, i.e., if it is a SCRATCH
1090    or a hard register.  */
1091
1092 int
1093 scratch_operand (op, mode)
1094      rtx op;
1095      enum machine_mode mode;
1096 {
1097   if (GET_MODE (op) != mode && mode != VOIDmode)
1098     return 0;
1099
1100   return (GET_CODE (op) == SCRATCH
1101           || (GET_CODE (op) == REG
1102               && REGNO (op) < FIRST_PSEUDO_REGISTER));
1103 }
1104
1105 /* Return 1 if OP is a valid immediate operand for mode MODE.
1106
1107    The main use of this function is as a predicate in match_operand
1108    expressions in the machine description.  */
1109
1110 int
1111 immediate_operand (op, mode)
1112      rtx op;
1113      enum machine_mode mode;
1114 {
1115   /* Don't accept CONST_INT or anything similar
1116      if the caller wants something floating.  */
1117   if (GET_MODE (op) == VOIDmode && mode != VOIDmode
1118       && GET_MODE_CLASS (mode) != MODE_INT
1119       && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
1120     return 0;
1121
1122   if (GET_CODE (op) == CONST_INT
1123       && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
1124     return 0;
1125
1126   /* Accept CONSTANT_P_RTX, since it will be gone by CSE1 and
1127      result in 0/1.  It seems a safe assumption that this is
1128      in range for everyone.  */
1129   if (GET_CODE (op) == CONSTANT_P_RTX)
1130     return 1;
1131
1132   return (CONSTANT_P (op)
1133           && (GET_MODE (op) == mode || mode == VOIDmode
1134               || GET_MODE (op) == VOIDmode)
1135 #ifdef LEGITIMATE_PIC_OPERAND_P
1136           && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1137 #endif
1138           && LEGITIMATE_CONSTANT_P (op));
1139 }
1140
1141 /* Returns 1 if OP is an operand that is a CONST_INT.  */
1142
1143 int
1144 const_int_operand (op, mode)
1145      rtx op;
1146      enum machine_mode mode;
1147 {
1148   if (GET_CODE (op) != CONST_INT)
1149     return 0;
1150
1151   if (mode != VOIDmode
1152       && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
1153     return 0;
1154
1155   return 1;
1156 }
1157
1158 /* Returns 1 if OP is an operand that is a constant integer or constant
1159    floating-point number.  */
1160
1161 int
1162 const_double_operand (op, mode)
1163      rtx op;
1164      enum machine_mode mode;
1165 {
1166   /* Don't accept CONST_INT or anything similar
1167      if the caller wants something floating.  */
1168   if (GET_MODE (op) == VOIDmode && mode != VOIDmode
1169       && GET_MODE_CLASS (mode) != MODE_INT
1170       && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
1171     return 0;
1172
1173   return ((GET_CODE (op) == CONST_DOUBLE || GET_CODE (op) == CONST_INT)
1174           && (mode == VOIDmode || GET_MODE (op) == mode
1175               || GET_MODE (op) == VOIDmode));
1176 }
1177
1178 /* Return 1 if OP is a general operand that is not an immediate operand.  */
1179
1180 int
1181 nonimmediate_operand (op, mode)
1182      rtx op;
1183      enum machine_mode mode;
1184 {
1185   return (general_operand (op, mode) && ! CONSTANT_P (op));
1186 }
1187
1188 /* Return 1 if OP is a register reference or immediate value of mode MODE.  */
1189
1190 int
1191 nonmemory_operand (op, mode)
1192      rtx op;
1193      enum machine_mode mode;
1194 {
1195   if (CONSTANT_P (op))
1196     {
1197       /* Don't accept CONST_INT or anything similar
1198          if the caller wants something floating.  */
1199       if (GET_MODE (op) == VOIDmode && mode != VOIDmode
1200           && GET_MODE_CLASS (mode) != MODE_INT
1201           && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
1202         return 0;
1203
1204       if (GET_CODE (op) == CONST_INT
1205           && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
1206         return 0;
1207
1208       return ((GET_MODE (op) == VOIDmode || GET_MODE (op) == mode
1209                || mode == VOIDmode)
1210 #ifdef LEGITIMATE_PIC_OPERAND_P
1211               && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1212 #endif
1213               && LEGITIMATE_CONSTANT_P (op));
1214     }
1215
1216   if (GET_MODE (op) != mode && mode != VOIDmode)
1217     return 0;
1218
1219   if (GET_CODE (op) == SUBREG)
1220     {
1221       /* Before reload, we can allow (SUBREG (MEM...)) as a register operand
1222          because it is guaranteed to be reloaded into one.
1223          Just make sure the MEM is valid in itself.
1224          (Ideally, (SUBREG (MEM)...) should not exist after reload,
1225          but currently it does result from (SUBREG (REG)...) where the
1226          reg went on the stack.)  */
1227       if (! reload_completed && GET_CODE (SUBREG_REG (op)) == MEM)
1228         return general_operand (op, mode);
1229       op = SUBREG_REG (op);
1230     }
1231
1232   /* We don't consider registers whose class is NO_REGS
1233      to be a register operand.  */
1234   return (GET_CODE (op) == REG
1235           && (REGNO (op) >= FIRST_PSEUDO_REGISTER
1236               || REGNO_REG_CLASS (REGNO (op)) != NO_REGS));
1237 }
1238
1239 /* Return 1 if OP is a valid operand that stands for pushing a
1240    value of mode MODE onto the stack.
1241
1242    The main use of this function is as a predicate in match_operand
1243    expressions in the machine description.  */
1244
1245 int
1246 push_operand (op, mode)
1247      rtx op;
1248      enum machine_mode mode;
1249 {
1250   unsigned int rounded_size = GET_MODE_SIZE (mode);
1251
1252 #ifdef PUSH_ROUNDING
1253   rounded_size = PUSH_ROUNDING (rounded_size);
1254 #endif
1255
1256   if (GET_CODE (op) != MEM)
1257     return 0;
1258
1259   if (mode != VOIDmode && GET_MODE (op) != mode)
1260     return 0;
1261
1262   op = XEXP (op, 0);
1263
1264   if (rounded_size == GET_MODE_SIZE (mode))
1265     {
1266       if (GET_CODE (op) != STACK_PUSH_CODE)
1267         return 0;
1268     }
1269   else
1270     {
1271       if (GET_CODE (op) != PRE_MODIFY
1272           || GET_CODE (XEXP (op, 1)) != PLUS
1273           || XEXP (XEXP (op, 1), 0) != XEXP (op, 0)
1274           || GET_CODE (XEXP (XEXP (op, 1), 1)) != CONST_INT
1275 #ifdef STACK_GROWS_DOWNWARD
1276           || INTVAL (XEXP (XEXP (op, 1), 1)) != - (int) rounded_size
1277 #else
1278           || INTVAL (XEXP (XEXP (op, 1), 1)) != rounded_size
1279 #endif
1280           )
1281         return 0;
1282     }
1283
1284   return XEXP (op, 0) == stack_pointer_rtx;
1285 }
1286
1287 /* Return 1 if OP is a valid operand that stands for popping a
1288    value of mode MODE off the stack.
1289
1290    The main use of this function is as a predicate in match_operand
1291    expressions in the machine description.  */
1292
1293 int
1294 pop_operand (op, mode)
1295      rtx op;
1296      enum machine_mode mode;
1297 {
1298   if (GET_CODE (op) != MEM)
1299     return 0;
1300
1301   if (mode != VOIDmode && GET_MODE (op) != mode)
1302     return 0;
1303
1304   op = XEXP (op, 0);
1305
1306   if (GET_CODE (op) != STACK_POP_CODE)
1307     return 0;
1308
1309   return XEXP (op, 0) == stack_pointer_rtx;
1310 }
1311
1312 /* Return 1 if ADDR is a valid memory address for mode MODE.  */
1313
1314 int
1315 memory_address_p (mode, addr)
1316      enum machine_mode mode ATTRIBUTE_UNUSED;
1317      rtx addr;
1318 {
1319   if (GET_CODE (addr) == ADDRESSOF)
1320     return 1;
1321   
1322   GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
1323   return 0;
1324
1325  win:
1326   return 1;
1327 }
1328
1329 /* Return 1 if OP is a valid memory reference with mode MODE,
1330    including a valid address.
1331
1332    The main use of this function is as a predicate in match_operand
1333    expressions in the machine description.  */
1334
1335 int
1336 memory_operand (op, mode)
1337      rtx op;
1338      enum machine_mode mode;
1339 {
1340   rtx inner;
1341
1342   if (! reload_completed)
1343     /* Note that no SUBREG is a memory operand before end of reload pass,
1344        because (SUBREG (MEM...)) forces reloading into a register.  */
1345     return GET_CODE (op) == MEM && general_operand (op, mode);
1346
1347   if (mode != VOIDmode && GET_MODE (op) != mode)
1348     return 0;
1349
1350   inner = op;
1351   if (GET_CODE (inner) == SUBREG)
1352     inner = SUBREG_REG (inner);
1353
1354   return (GET_CODE (inner) == MEM && general_operand (op, mode));
1355 }
1356
1357 /* Return 1 if OP is a valid indirect memory reference with mode MODE;
1358    that is, a memory reference whose address is a general_operand.  */
1359
1360 int
1361 indirect_operand (op, mode)
1362      rtx op;
1363      enum machine_mode mode;
1364 {
1365   /* Before reload, a SUBREG isn't in memory (see memory_operand, above).  */
1366   if (! reload_completed
1367       && GET_CODE (op) == SUBREG && GET_CODE (SUBREG_REG (op)) == MEM)
1368     {
1369       int offset = SUBREG_BYTE (op);
1370       rtx inner = SUBREG_REG (op);
1371
1372       if (mode != VOIDmode && GET_MODE (op) != mode)
1373         return 0;
1374
1375       /* The only way that we can have a general_operand as the resulting
1376          address is if OFFSET is zero and the address already is an operand
1377          or if the address is (plus Y (const_int -OFFSET)) and Y is an
1378          operand.  */
1379
1380       return ((offset == 0 && general_operand (XEXP (inner, 0), Pmode))
1381               || (GET_CODE (XEXP (inner, 0)) == PLUS
1382                   && GET_CODE (XEXP (XEXP (inner, 0), 1)) == CONST_INT
1383                   && INTVAL (XEXP (XEXP (inner, 0), 1)) == -offset
1384                   && general_operand (XEXP (XEXP (inner, 0), 0), Pmode)));
1385     }
1386
1387   return (GET_CODE (op) == MEM
1388           && memory_operand (op, mode)
1389           && general_operand (XEXP (op, 0), Pmode));
1390 }
1391
1392 /* Return 1 if this is a comparison operator.  This allows the use of
1393    MATCH_OPERATOR to recognize all the branch insns.  */
1394
1395 int
1396 comparison_operator (op, mode)
1397     rtx op;
1398     enum machine_mode mode;
1399 {
1400   return ((mode == VOIDmode || GET_MODE (op) == mode)
1401           && GET_RTX_CLASS (GET_CODE (op)) == '<');
1402 }
1403 \f
1404 /* If BODY is an insn body that uses ASM_OPERANDS,
1405    return the number of operands (both input and output) in the insn.
1406    Otherwise return -1.  */
1407
1408 int
1409 asm_noperands (body)
1410      rtx body;
1411 {
1412   switch (GET_CODE (body))
1413     {
1414     case ASM_OPERANDS:
1415       /* No output operands: return number of input operands.  */
1416       return ASM_OPERANDS_INPUT_LENGTH (body);
1417     case SET:
1418       if (GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1419         /* Single output operand: BODY is (set OUTPUT (asm_operands ...)).  */
1420         return ASM_OPERANDS_INPUT_LENGTH (SET_SRC (body)) + 1;
1421       else
1422         return -1;
1423     case PARALLEL:
1424       if (GET_CODE (XVECEXP (body, 0, 0)) == SET
1425           && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
1426         {
1427           /* Multiple output operands, or 1 output plus some clobbers:
1428              body is [(set OUTPUT (asm_operands ...))... (clobber (reg ...))...].  */
1429           int i;
1430           int n_sets;
1431
1432           /* Count backwards through CLOBBERs to determine number of SETs.  */
1433           for (i = XVECLEN (body, 0); i > 0; i--)
1434             {
1435               if (GET_CODE (XVECEXP (body, 0, i - 1)) == SET)
1436                 break;
1437               if (GET_CODE (XVECEXP (body, 0, i - 1)) != CLOBBER)
1438                 return -1;
1439             }
1440
1441           /* N_SETS is now number of output operands.  */
1442           n_sets = i;
1443
1444           /* Verify that all the SETs we have
1445              came from a single original asm_operands insn
1446              (so that invalid combinations are blocked).  */
1447           for (i = 0; i < n_sets; i++)
1448             {
1449               rtx elt = XVECEXP (body, 0, i);
1450               if (GET_CODE (elt) != SET)
1451                 return -1;
1452               if (GET_CODE (SET_SRC (elt)) != ASM_OPERANDS)
1453                 return -1;
1454               /* If these ASM_OPERANDS rtx's came from different original insns
1455                  then they aren't allowed together.  */
1456               if (ASM_OPERANDS_INPUT_VEC (SET_SRC (elt))
1457                   != ASM_OPERANDS_INPUT_VEC (SET_SRC (XVECEXP (body, 0, 0))))
1458                 return -1;
1459             }
1460           return (ASM_OPERANDS_INPUT_LENGTH (SET_SRC (XVECEXP (body, 0, 0)))
1461                   + n_sets);
1462         }
1463       else if (GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1464         {
1465           /* 0 outputs, but some clobbers:
1466              body is [(asm_operands ...) (clobber (reg ...))...].  */
1467           int i;
1468
1469           /* Make sure all the other parallel things really are clobbers.  */
1470           for (i = XVECLEN (body, 0) - 1; i > 0; i--)
1471             if (GET_CODE (XVECEXP (body, 0, i)) != CLOBBER)
1472               return -1;
1473
1474           return ASM_OPERANDS_INPUT_LENGTH (XVECEXP (body, 0, 0));
1475         }
1476       else
1477         return -1;
1478     default:
1479       return -1;
1480     }
1481 }
1482
1483 /* Assuming BODY is an insn body that uses ASM_OPERANDS,
1484    copy its operands (both input and output) into the vector OPERANDS,
1485    the locations of the operands within the insn into the vector OPERAND_LOCS,
1486    and the constraints for the operands into CONSTRAINTS.
1487    Write the modes of the operands into MODES.
1488    Return the assembler-template.
1489
1490    If MODES, OPERAND_LOCS, CONSTRAINTS or OPERANDS is 0,
1491    we don't store that info.  */
1492
1493 const char *
1494 decode_asm_operands (body, operands, operand_locs, constraints, modes)
1495      rtx body;
1496      rtx *operands;
1497      rtx **operand_locs;
1498      const char **constraints;
1499      enum machine_mode *modes;
1500 {
1501   int i;
1502   int noperands;
1503   const char *template = 0;
1504
1505   if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1506     {
1507       rtx asmop = SET_SRC (body);
1508       /* Single output operand: BODY is (set OUTPUT (asm_operands ....)).  */
1509
1510       noperands = ASM_OPERANDS_INPUT_LENGTH (asmop) + 1;
1511
1512       for (i = 1; i < noperands; i++)
1513         {
1514           if (operand_locs)
1515             operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i - 1);
1516           if (operands)
1517             operands[i] = ASM_OPERANDS_INPUT (asmop, i - 1);
1518           if (constraints)
1519             constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i - 1);
1520           if (modes)
1521             modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i - 1);
1522         }
1523
1524       /* The output is in the SET.
1525          Its constraint is in the ASM_OPERANDS itself.  */
1526       if (operands)
1527         operands[0] = SET_DEST (body);
1528       if (operand_locs)
1529         operand_locs[0] = &SET_DEST (body);
1530       if (constraints)
1531         constraints[0] = ASM_OPERANDS_OUTPUT_CONSTRAINT (asmop);
1532       if (modes)
1533         modes[0] = GET_MODE (SET_DEST (body));
1534       template = ASM_OPERANDS_TEMPLATE (asmop);
1535     }
1536   else if (GET_CODE (body) == ASM_OPERANDS)
1537     {
1538       rtx asmop = body;
1539       /* No output operands: BODY is (asm_operands ....).  */
1540
1541       noperands = ASM_OPERANDS_INPUT_LENGTH (asmop);
1542
1543       /* The input operands are found in the 1st element vector.  */
1544       /* Constraints for inputs are in the 2nd element vector.  */
1545       for (i = 0; i < noperands; i++)
1546         {
1547           if (operand_locs)
1548             operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i);
1549           if (operands)
1550             operands[i] = ASM_OPERANDS_INPUT (asmop, i);
1551           if (constraints)
1552             constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1553           if (modes)
1554             modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1555         }
1556       template = ASM_OPERANDS_TEMPLATE (asmop);
1557     }
1558   else if (GET_CODE (body) == PARALLEL
1559            && GET_CODE (XVECEXP (body, 0, 0)) == SET
1560            && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
1561     {
1562       rtx asmop = SET_SRC (XVECEXP (body, 0, 0));
1563       int nparallel = XVECLEN (body, 0); /* Includes CLOBBERs.  */
1564       int nin = ASM_OPERANDS_INPUT_LENGTH (asmop);
1565       int nout = 0;             /* Does not include CLOBBERs.  */
1566
1567       /* At least one output, plus some CLOBBERs.  */
1568
1569       /* The outputs are in the SETs.
1570          Their constraints are in the ASM_OPERANDS itself.  */
1571       for (i = 0; i < nparallel; i++)
1572         {
1573           if (GET_CODE (XVECEXP (body, 0, i)) == CLOBBER)
1574             break;              /* Past last SET */
1575           
1576           if (operands)
1577             operands[i] = SET_DEST (XVECEXP (body, 0, i));
1578           if (operand_locs)
1579             operand_locs[i] = &SET_DEST (XVECEXP (body, 0, i));
1580           if (constraints)
1581             constraints[i] = XSTR (SET_SRC (XVECEXP (body, 0, i)), 1);
1582           if (modes)
1583             modes[i] = GET_MODE (SET_DEST (XVECEXP (body, 0, i)));
1584           nout++;
1585         }
1586
1587       for (i = 0; i < nin; i++)
1588         {
1589           if (operand_locs)
1590             operand_locs[i + nout] = &ASM_OPERANDS_INPUT (asmop, i);
1591           if (operands)
1592             operands[i + nout] = ASM_OPERANDS_INPUT (asmop, i);
1593           if (constraints)
1594             constraints[i + nout] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1595           if (modes)
1596             modes[i + nout] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1597         }
1598
1599       template = ASM_OPERANDS_TEMPLATE (asmop);
1600     }
1601   else if (GET_CODE (body) == PARALLEL
1602            && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1603     {
1604       /* No outputs, but some CLOBBERs.  */
1605
1606       rtx asmop = XVECEXP (body, 0, 0);
1607       int nin = ASM_OPERANDS_INPUT_LENGTH (asmop);
1608
1609       for (i = 0; i < nin; i++)
1610         {
1611           if (operand_locs)
1612             operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i);
1613           if (operands)
1614             operands[i] = ASM_OPERANDS_INPUT (asmop, i);
1615           if (constraints)
1616             constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1617           if (modes)
1618             modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1619         }
1620
1621       template = ASM_OPERANDS_TEMPLATE (asmop);
1622     }
1623
1624   return template;
1625 }
1626
1627 /* Check if an asm_operand matches it's constraints. 
1628    Return > 0 if ok, = 0 if bad, < 0 if inconclusive.  */
1629
1630 int
1631 asm_operand_ok (op, constraint)
1632      rtx op;
1633      const char *constraint;
1634 {
1635   int result = 0;
1636
1637   /* Use constrain_operands after reload.  */
1638   if (reload_completed)
1639     abort ();
1640
1641   while (*constraint)
1642     {
1643       char c = *constraint++;
1644       switch (c)
1645         {
1646         case '=':
1647         case '+':
1648         case '*':
1649         case '%':
1650         case '?':
1651         case '!':
1652         case '#':
1653         case '&':
1654         case ',':
1655           break;
1656
1657         case '0': case '1': case '2': case '3': case '4':
1658         case '5': case '6': case '7': case '8': case '9':
1659           /* For best results, our caller should have given us the
1660              proper matching constraint, but we can't actually fail
1661              the check if they didn't.  Indicate that results are
1662              inconclusive.  */
1663           while (ISDIGIT (*constraint))
1664             constraint++;
1665           result = -1;
1666           break;
1667
1668         case 'p':
1669           if (address_operand (op, VOIDmode))
1670             return 1;
1671           break;
1672
1673         case 'm':
1674         case 'V': /* non-offsettable */
1675           if (memory_operand (op, VOIDmode))
1676             return 1;
1677           break;
1678
1679         case 'o': /* offsettable */
1680           if (offsettable_nonstrict_memref_p (op))
1681             return 1;
1682           break;
1683
1684         case '<':
1685           /* ??? Before flow, auto inc/dec insns are not supposed to exist,
1686              excepting those that expand_call created.  Further, on some
1687              machines which do not have generalized auto inc/dec, an inc/dec
1688              is not a memory_operand.
1689
1690              Match any memory and hope things are resolved after reload.  */
1691
1692           if (GET_CODE (op) == MEM
1693               && (1
1694                   || GET_CODE (XEXP (op, 0)) == PRE_DEC
1695                   || GET_CODE (XEXP (op, 0)) == POST_DEC))
1696             return 1;
1697           break;
1698
1699         case '>':
1700           if (GET_CODE (op) == MEM
1701               && (1
1702                   || GET_CODE (XEXP (op, 0)) == PRE_INC
1703                   || GET_CODE (XEXP (op, 0)) == POST_INC))
1704             return 1;
1705           break;
1706
1707         case 'E':
1708 #ifndef REAL_ARITHMETIC
1709           /* Match any floating double constant, but only if
1710              we can examine the bits of it reliably.  */
1711           if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
1712                || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
1713               && GET_MODE (op) != VOIDmode && ! flag_pretend_float)
1714             break;
1715 #endif
1716           /* FALLTHRU */
1717
1718         case 'F':
1719           if (GET_CODE (op) == CONST_DOUBLE)
1720             return 1;
1721           break;
1722
1723         case 'G':
1724           if (GET_CODE (op) == CONST_DOUBLE
1725               && CONST_DOUBLE_OK_FOR_LETTER_P (op, 'G'))
1726             return 1;
1727           break;
1728         case 'H':
1729           if (GET_CODE (op) == CONST_DOUBLE
1730               && CONST_DOUBLE_OK_FOR_LETTER_P (op, 'H'))
1731             return 1;
1732           break;
1733
1734         case 's':
1735           if (GET_CODE (op) == CONST_INT
1736               || (GET_CODE (op) == CONST_DOUBLE
1737                   && GET_MODE (op) == VOIDmode))
1738             break;
1739           /* FALLTHRU */
1740
1741         case 'i':
1742           if (CONSTANT_P (op)
1743 #ifdef LEGITIMATE_PIC_OPERAND_P
1744               && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1745 #endif
1746               )
1747             return 1;
1748           break;
1749
1750         case 'n':
1751           if (GET_CODE (op) == CONST_INT
1752               || (GET_CODE (op) == CONST_DOUBLE
1753                   && GET_MODE (op) == VOIDmode))
1754             return 1;
1755           break;
1756
1757         case 'I':
1758           if (GET_CODE (op) == CONST_INT
1759               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'I'))
1760             return 1;
1761           break;
1762         case 'J':
1763           if (GET_CODE (op) == CONST_INT
1764               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'J'))
1765             return 1;
1766           break;
1767         case 'K':
1768           if (GET_CODE (op) == CONST_INT
1769               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'K'))
1770             return 1;
1771           break;
1772         case 'L':
1773           if (GET_CODE (op) == CONST_INT
1774               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'L'))
1775             return 1;
1776           break;
1777         case 'M':
1778           if (GET_CODE (op) == CONST_INT
1779               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'M'))
1780             return 1;
1781           break;
1782         case 'N':
1783           if (GET_CODE (op) == CONST_INT
1784               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'N'))
1785             return 1;
1786           break;
1787         case 'O':
1788           if (GET_CODE (op) == CONST_INT
1789               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'O'))
1790             return 1;
1791           break;
1792         case 'P':
1793           if (GET_CODE (op) == CONST_INT
1794               && CONST_OK_FOR_LETTER_P (INTVAL (op), 'P'))
1795             return 1;
1796           break;
1797
1798         case 'X':
1799           return 1;
1800
1801         case 'g':
1802           if (general_operand (op, VOIDmode))
1803             return 1;
1804           break;
1805
1806         default:
1807           /* For all other letters, we first check for a register class,
1808              otherwise it is an EXTRA_CONSTRAINT.  */
1809           if (REG_CLASS_FROM_LETTER (c) != NO_REGS)
1810             {
1811             case 'r':
1812               if (GET_MODE (op) == BLKmode)
1813                 break;
1814               if (register_operand (op, VOIDmode))
1815                 return 1;
1816             }
1817 #ifdef EXTRA_CONSTRAINT
1818           if (EXTRA_CONSTRAINT (op, c))
1819             return 1;
1820 #endif
1821           break;
1822         }
1823     }
1824
1825   return result;
1826 }
1827 \f
1828 /* Given an rtx *P, if it is a sum containing an integer constant term,
1829    return the location (type rtx *) of the pointer to that constant term.
1830    Otherwise, return a null pointer.  */
1831
1832 rtx *
1833 find_constant_term_loc (p)
1834      rtx *p;
1835 {
1836   rtx *tem;
1837   enum rtx_code code = GET_CODE (*p);
1838
1839   /* If *P IS such a constant term, P is its location.  */
1840
1841   if (code == CONST_INT || code == SYMBOL_REF || code == LABEL_REF
1842       || code == CONST)
1843     return p;
1844
1845   /* Otherwise, if not a sum, it has no constant term.  */
1846
1847   if (GET_CODE (*p) != PLUS)
1848     return 0;
1849
1850   /* If one of the summands is constant, return its location.  */
1851
1852   if (XEXP (*p, 0) && CONSTANT_P (XEXP (*p, 0))
1853       && XEXP (*p, 1) && CONSTANT_P (XEXP (*p, 1)))
1854     return p;
1855
1856   /* Otherwise, check each summand for containing a constant term.  */
1857
1858   if (XEXP (*p, 0) != 0)
1859     {
1860       tem = find_constant_term_loc (&XEXP (*p, 0));
1861       if (tem != 0)
1862         return tem;
1863     }
1864
1865   if (XEXP (*p, 1) != 0)
1866     {
1867       tem = find_constant_term_loc (&XEXP (*p, 1));
1868       if (tem != 0)
1869         return tem;
1870     }
1871
1872   return 0;
1873 }
1874 \f
1875 /* Return 1 if OP is a memory reference
1876    whose address contains no side effects
1877    and remains valid after the addition
1878    of a positive integer less than the
1879    size of the object being referenced.
1880
1881    We assume that the original address is valid and do not check it.
1882
1883    This uses strict_memory_address_p as a subroutine, so
1884    don't use it before reload.  */
1885
1886 int
1887 offsettable_memref_p (op)
1888      rtx op;
1889 {
1890   return ((GET_CODE (op) == MEM)
1891           && offsettable_address_p (1, GET_MODE (op), XEXP (op, 0)));
1892 }
1893
1894 /* Similar, but don't require a strictly valid mem ref:
1895    consider pseudo-regs valid as index or base regs.  */
1896
1897 int
1898 offsettable_nonstrict_memref_p (op)
1899      rtx op;
1900 {
1901   return ((GET_CODE (op) == MEM)
1902           && offsettable_address_p (0, GET_MODE (op), XEXP (op, 0)));
1903 }
1904
1905 /* Return 1 if Y is a memory address which contains no side effects
1906    and would remain valid after the addition of a positive integer
1907    less than the size of that mode.
1908
1909    We assume that the original address is valid and do not check it.
1910    We do check that it is valid for narrower modes.
1911
1912    If STRICTP is nonzero, we require a strictly valid address,
1913    for the sake of use in reload.c.  */
1914
1915 int
1916 offsettable_address_p (strictp, mode, y)
1917      int strictp;
1918      enum machine_mode mode;
1919      rtx y;
1920 {
1921   enum rtx_code ycode = GET_CODE (y);
1922   rtx z;
1923   rtx y1 = y;
1924   rtx *y2;
1925   int (*addressp) PARAMS ((enum machine_mode, rtx)) =
1926     (strictp ? strict_memory_address_p : memory_address_p);
1927   unsigned int mode_sz = GET_MODE_SIZE (mode);
1928
1929   if (CONSTANT_ADDRESS_P (y))
1930     return 1;
1931
1932   /* Adjusting an offsettable address involves changing to a narrower mode.
1933      Make sure that's OK.  */
1934
1935   if (mode_dependent_address_p (y))
1936     return 0;
1937
1938   /* ??? How much offset does an offsettable BLKmode reference need?
1939      Clearly that depends on the situation in which it's being used.
1940      However, the current situation in which we test 0xffffffff is
1941      less than ideal.  Caveat user.  */
1942   if (mode_sz == 0)
1943     mode_sz = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
1944
1945   /* If the expression contains a constant term,
1946      see if it remains valid when max possible offset is added.  */
1947
1948   if ((ycode == PLUS) && (y2 = find_constant_term_loc (&y1)))
1949     {
1950       int good;
1951
1952       y1 = *y2;
1953       *y2 = plus_constant (*y2, mode_sz - 1);
1954       /* Use QImode because an odd displacement may be automatically invalid
1955          for any wider mode.  But it should be valid for a single byte.  */
1956       good = (*addressp) (QImode, y);
1957
1958       /* In any case, restore old contents of memory.  */
1959       *y2 = y1;
1960       return good;
1961     }
1962
1963   if (GET_RTX_CLASS (ycode) == 'a')
1964     return 0;
1965
1966   /* The offset added here is chosen as the maximum offset that
1967      any instruction could need to add when operating on something
1968      of the specified mode.  We assume that if Y and Y+c are
1969      valid addresses then so is Y+d for all 0<d<c.  adjust_address will
1970      go inside a LO_SUM here, so we do so as well.  */
1971   if (GET_CODE (y) == LO_SUM
1972       && mode != BLKmode
1973       && mode_sz <= GET_MODE_ALIGNMENT (mode) / BITS_PER_UNIT)
1974     z = gen_rtx_LO_SUM (GET_MODE (y), XEXP (y, 0),
1975                         plus_constant (XEXP (y, 1), mode_sz - 1));
1976   else
1977     z = plus_constant (y, mode_sz - 1);
1978
1979   /* Use QImode because an odd displacement may be automatically invalid
1980      for any wider mode.  But it should be valid for a single byte.  */
1981   return (*addressp) (QImode, z);
1982 }
1983
1984 /* Return 1 if ADDR is an address-expression whose effect depends
1985    on the mode of the memory reference it is used in.
1986
1987    Autoincrement addressing is a typical example of mode-dependence
1988    because the amount of the increment depends on the mode.  */
1989
1990 int
1991 mode_dependent_address_p (addr)
1992   rtx addr ATTRIBUTE_UNUSED; /* Maybe used in GO_IF_MODE_DEPENDENT_ADDRESS.  */
1993 {
1994   GO_IF_MODE_DEPENDENT_ADDRESS (addr, win);
1995   return 0;
1996   /* Label `win' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS.  */
1997  win: ATTRIBUTE_UNUSED_LABEL
1998   return 1;
1999 }
2000
2001 /* Return 1 if OP is a general operand
2002    other than a memory ref with a mode dependent address.  */
2003
2004 int
2005 mode_independent_operand (op, mode)
2006      enum machine_mode mode;
2007      rtx op;
2008 {
2009   rtx addr;
2010
2011   if (! general_operand (op, mode))
2012     return 0;
2013
2014   if (GET_CODE (op) != MEM)
2015     return 1;
2016
2017   addr = XEXP (op, 0);
2018   GO_IF_MODE_DEPENDENT_ADDRESS (addr, lose);
2019   return 1;
2020   /* Label `lose' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS.  */
2021  lose: ATTRIBUTE_UNUSED_LABEL
2022   return 0;
2023 }
2024 \f
2025 /* Like extract_insn, but save insn extracted and don't extract again, when
2026    called again for the same insn expecting that recog_data still contain the
2027    valid information.  This is used primary by gen_attr infrastructure that
2028    often does extract insn again and again.  */
2029 void
2030 extract_insn_cached (insn)
2031      rtx insn;
2032 {
2033   if (recog_data.insn == insn && INSN_CODE (insn) >= 0)
2034     return;
2035   extract_insn (insn);
2036   recog_data.insn = insn;
2037 }
2038 /* Do cached extract_insn, constrain_operand and complain about failures.
2039    Used by insn_attrtab.  */
2040 void
2041 extract_constrain_insn_cached (insn)
2042      rtx insn;
2043 {
2044   extract_insn_cached (insn);
2045   if (which_alternative == -1
2046       && !constrain_operands (reload_completed))
2047     fatal_insn_not_found (insn);
2048 }
2049 /* Do cached constrain_operand and complain about failures.  */
2050 int
2051 constrain_operands_cached (strict)
2052         int strict;
2053 {
2054   if (which_alternative == -1)
2055     return constrain_operands (strict);
2056   else
2057     return 1;
2058 }
2059 \f
2060 /* Analyze INSN and fill in recog_data.  */
2061
2062 void
2063 extract_insn (insn)
2064      rtx insn;
2065 {
2066   int i;
2067   int icode;
2068   int noperands;
2069   rtx body = PATTERN (insn);
2070
2071   recog_data.insn = NULL;
2072   recog_data.n_operands = 0;
2073   recog_data.n_alternatives = 0;
2074   recog_data.n_dups = 0;
2075   which_alternative = -1;
2076
2077   switch (GET_CODE (body))
2078     {
2079     case USE:
2080     case CLOBBER:
2081     case ASM_INPUT:
2082     case ADDR_VEC:
2083     case ADDR_DIFF_VEC:
2084       return;
2085
2086     case SET:
2087       if (GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
2088         goto asm_insn;
2089       else
2090         goto normal_insn;
2091     case PARALLEL:
2092       if ((GET_CODE (XVECEXP (body, 0, 0)) == SET
2093            && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
2094           || GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
2095         goto asm_insn;
2096       else
2097         goto normal_insn;
2098     case ASM_OPERANDS:
2099     asm_insn:
2100       recog_data.n_operands = noperands = asm_noperands (body);
2101       if (noperands >= 0)
2102         {
2103           /* This insn is an `asm' with operands.  */
2104
2105           /* expand_asm_operands makes sure there aren't too many operands.  */
2106           if (noperands > MAX_RECOG_OPERANDS)
2107             abort ();
2108
2109           /* Now get the operand values and constraints out of the insn.  */
2110           decode_asm_operands (body, recog_data.operand,
2111                                recog_data.operand_loc,
2112                                recog_data.constraints,
2113                                recog_data.operand_mode);
2114           if (noperands > 0)
2115             {
2116               const char *p =  recog_data.constraints[0];
2117               recog_data.n_alternatives = 1;
2118               while (*p)
2119                 recog_data.n_alternatives += (*p++ == ',');
2120             }
2121           break;
2122         }
2123       fatal_insn_not_found (insn);
2124
2125     default:
2126     normal_insn:
2127       /* Ordinary insn: recognize it, get the operands via insn_extract
2128          and get the constraints.  */
2129
2130       icode = recog_memoized (insn);
2131       if (icode < 0)
2132         fatal_insn_not_found (insn);
2133
2134       recog_data.n_operands = noperands = insn_data[icode].n_operands;
2135       recog_data.n_alternatives = insn_data[icode].n_alternatives;
2136       recog_data.n_dups = insn_data[icode].n_dups;
2137
2138       insn_extract (insn);
2139
2140       for (i = 0; i < noperands; i++)
2141         {
2142           recog_data.constraints[i] = insn_data[icode].operand[i].constraint;
2143           recog_data.operand_mode[i] = insn_data[icode].operand[i].mode;
2144           /* VOIDmode match_operands gets mode from their real operand.  */
2145           if (recog_data.operand_mode[i] == VOIDmode)
2146             recog_data.operand_mode[i] = GET_MODE (recog_data.operand[i]);
2147         }
2148     }
2149   for (i = 0; i < noperands; i++)
2150     recog_data.operand_type[i]
2151       = (recog_data.constraints[i][0] == '=' ? OP_OUT
2152          : recog_data.constraints[i][0] == '+' ? OP_INOUT
2153          : OP_IN);
2154
2155   if (recog_data.n_alternatives > MAX_RECOG_ALTERNATIVES)
2156     abort ();
2157 }
2158
2159 /* After calling extract_insn, you can use this function to extract some
2160    information from the constraint strings into a more usable form.
2161    The collected data is stored in recog_op_alt.  */
2162 void
2163 preprocess_constraints ()
2164 {
2165   int i;
2166
2167   memset (recog_op_alt, 0, sizeof recog_op_alt);
2168   for (i = 0; i < recog_data.n_operands; i++)
2169     {
2170       int j;
2171       struct operand_alternative *op_alt;
2172       const char *p = recog_data.constraints[i];
2173
2174       op_alt = recog_op_alt[i];
2175
2176       for (j = 0; j < recog_data.n_alternatives; j++)
2177         {
2178           op_alt[j].class = NO_REGS;
2179           op_alt[j].constraint = p;
2180           op_alt[j].matches = -1;
2181           op_alt[j].matched = -1;
2182
2183           if (*p == '\0' || *p == ',')
2184             {
2185               op_alt[j].anything_ok = 1;
2186               continue;
2187             }
2188
2189           for (;;)
2190             {
2191               char c = *p++;
2192               if (c == '#')
2193                 do
2194                   c = *p++;
2195                 while (c != ',' && c != '\0');
2196               if (c == ',' || c == '\0')
2197                 break;
2198
2199               switch (c)
2200                 {
2201                 case '=': case '+': case '*': case '%':
2202                 case 'E': case 'F': case 'G': case 'H':
2203                 case 's': case 'i': case 'n':
2204                 case 'I': case 'J': case 'K': case 'L':
2205                 case 'M': case 'N': case 'O': case 'P':
2206                   /* These don't say anything we care about.  */
2207                   break;
2208
2209                 case '?':
2210                   op_alt[j].reject += 6;
2211                   break;
2212                 case '!':
2213                   op_alt[j].reject += 600;
2214                   break;
2215                 case '&':
2216                   op_alt[j].earlyclobber = 1;
2217                   break;                  
2218
2219                 case '0': case '1': case '2': case '3': case '4':
2220                 case '5': case '6': case '7': case '8': case '9':
2221                   {
2222                     char *end;
2223                     op_alt[j].matches = strtoul (p - 1, &end, 10);
2224                     recog_op_alt[op_alt[j].matches][j].matched = i;
2225                     p = end;
2226                   }
2227                   break;
2228
2229                 case 'm':
2230                   op_alt[j].memory_ok = 1;
2231                   break;
2232                 case '<':
2233                   op_alt[j].decmem_ok = 1;
2234                   break;
2235                 case '>':
2236                   op_alt[j].incmem_ok = 1;
2237                   break;
2238                 case 'V':
2239                   op_alt[j].nonoffmem_ok = 1;
2240                   break;
2241                 case 'o':
2242                   op_alt[j].offmem_ok = 1;
2243                   break;
2244                 case 'X':
2245                   op_alt[j].anything_ok = 1;
2246                   break;
2247
2248                 case 'p':
2249                   op_alt[j].is_address = 1;
2250                   op_alt[j].class = reg_class_subunion[(int) op_alt[j].class]
2251                     [(int) MODE_BASE_REG_CLASS (VOIDmode)];
2252                   break;
2253
2254                 case 'g': case 'r':
2255                   op_alt[j].class = reg_class_subunion[(int) op_alt[j].class][(int) GENERAL_REGS];
2256                   break;
2257
2258                 default:
2259                   op_alt[j].class = reg_class_subunion[(int) op_alt[j].class][(int) REG_CLASS_FROM_LETTER ((unsigned char) c)];
2260                   break;
2261                 }
2262             }
2263         }
2264     }
2265 }
2266  
2267 /* Check the operands of an insn against the insn's operand constraints
2268    and return 1 if they are valid.
2269    The information about the insn's operands, constraints, operand modes
2270    etc. is obtained from the global variables set up by extract_insn.
2271
2272    WHICH_ALTERNATIVE is set to a number which indicates which
2273    alternative of constraints was matched: 0 for the first alternative,
2274    1 for the next, etc.
2275
2276    In addition, when two operands are match
2277    and it happens that the output operand is (reg) while the
2278    input operand is --(reg) or ++(reg) (a pre-inc or pre-dec),
2279    make the output operand look like the input.
2280    This is because the output operand is the one the template will print.
2281
2282    This is used in final, just before printing the assembler code and by
2283    the routines that determine an insn's attribute.
2284
2285    If STRICT is a positive non-zero value, it means that we have been
2286    called after reload has been completed.  In that case, we must
2287    do all checks strictly.  If it is zero, it means that we have been called
2288    before reload has completed.  In that case, we first try to see if we can
2289    find an alternative that matches strictly.  If not, we try again, this
2290    time assuming that reload will fix up the insn.  This provides a "best
2291    guess" for the alternative and is used to compute attributes of insns prior
2292    to reload.  A negative value of STRICT is used for this internal call.  */
2293
2294 struct funny_match
2295 {
2296   int this, other;
2297 };
2298
2299 int
2300 constrain_operands (strict)
2301      int strict;
2302 {
2303   const char *constraints[MAX_RECOG_OPERANDS];
2304   int matching_operands[MAX_RECOG_OPERANDS];
2305   int earlyclobber[MAX_RECOG_OPERANDS];
2306   int c;
2307
2308   struct funny_match funny_match[MAX_RECOG_OPERANDS];
2309   int funny_match_index;
2310
2311   which_alternative = 0;
2312   if (recog_data.n_operands == 0 || recog_data.n_alternatives == 0)
2313     return 1;
2314
2315   for (c = 0; c < recog_data.n_operands; c++)
2316     {
2317       constraints[c] = recog_data.constraints[c];
2318       matching_operands[c] = -1;
2319     }
2320
2321   do
2322     {
2323       int opno;
2324       int lose = 0;
2325       funny_match_index = 0;
2326
2327       for (opno = 0; opno < recog_data.n_operands; opno++)
2328         {
2329           rtx op = recog_data.operand[opno];
2330           enum machine_mode mode = GET_MODE (op);
2331           const char *p = constraints[opno];
2332           int offset = 0;
2333           int win = 0;
2334           int val;
2335
2336           earlyclobber[opno] = 0;
2337
2338           /* A unary operator may be accepted by the predicate, but it
2339              is irrelevant for matching constraints.  */
2340           if (GET_RTX_CLASS (GET_CODE (op)) == '1')
2341             op = XEXP (op, 0);
2342
2343           if (GET_CODE (op) == SUBREG)
2344             {
2345               if (GET_CODE (SUBREG_REG (op)) == REG
2346                   && REGNO (SUBREG_REG (op)) < FIRST_PSEUDO_REGISTER)
2347                 offset = subreg_regno_offset (REGNO (SUBREG_REG (op)),
2348                                               GET_MODE (SUBREG_REG (op)),
2349                                               SUBREG_BYTE (op),
2350                                               GET_MODE (op));
2351               op = SUBREG_REG (op);
2352             }
2353
2354           /* An empty constraint or empty alternative
2355              allows anything which matched the pattern.  */
2356           if (*p == 0 || *p == ',')
2357             win = 1;
2358
2359           while (*p && (c = *p++) != ',')
2360             switch (c)
2361               {
2362               case '?':  case '!': case '*':  case '%':
2363               case '=':  case '+':
2364                 break;
2365
2366               case '#':
2367                 /* Ignore rest of this alternative as far as
2368                    constraint checking is concerned.  */
2369                 while (*p && *p != ',')
2370                   p++;
2371                 break;
2372
2373               case '&':
2374                 earlyclobber[opno] = 1;
2375                 break;
2376
2377               case '0':  case '1':  case '2':  case '3':  case '4':
2378               case '5':  case '6':  case '7':  case '8':  case '9':
2379                 {
2380                   /* This operand must be the same as a previous one.
2381                      This kind of constraint is used for instructions such
2382                      as add when they take only two operands.
2383
2384                      Note that the lower-numbered operand is passed first.
2385
2386                      If we are not testing strictly, assume that this
2387                      constraint will be satisfied.  */
2388
2389                   char *end;
2390                   int match;
2391
2392                   match = strtoul (p - 1, &end, 10);
2393                   p = end;
2394
2395                   if (strict < 0)
2396                     val = 1;
2397                   else
2398                     {
2399                       rtx op1 = recog_data.operand[match];
2400                       rtx op2 = recog_data.operand[opno];
2401
2402                       /* A unary operator may be accepted by the predicate,
2403                          but it is irrelevant for matching constraints.  */
2404                       if (GET_RTX_CLASS (GET_CODE (op1)) == '1')
2405                         op1 = XEXP (op1, 0);
2406                       if (GET_RTX_CLASS (GET_CODE (op2)) == '1')
2407                         op2 = XEXP (op2, 0);
2408
2409                       val = operands_match_p (op1, op2);
2410                     }
2411
2412                   matching_operands[opno] = match;
2413                   matching_operands[match] = opno;
2414
2415                   if (val != 0)
2416                     win = 1;
2417
2418                   /* If output is *x and input is *--x, arrange later
2419                      to change the output to *--x as well, since the
2420                      output op is the one that will be printed.  */
2421                   if (val == 2 && strict > 0)
2422                     {
2423                       funny_match[funny_match_index].this = opno;
2424                       funny_match[funny_match_index++].other = match;
2425                     }
2426                 }
2427                 break;
2428
2429               case 'p':
2430                 /* p is used for address_operands.  When we are called by
2431                    gen_reload, no one will have checked that the address is
2432                    strictly valid, i.e., that all pseudos requiring hard regs
2433                    have gotten them.  */
2434                 if (strict <= 0
2435                     || (strict_memory_address_p (recog_data.operand_mode[opno],
2436                                                  op)))
2437                   win = 1;
2438                 break;
2439
2440                 /* No need to check general_operand again;
2441                    it was done in insn-recog.c.  */
2442               case 'g':
2443                 /* Anything goes unless it is a REG and really has a hard reg
2444                    but the hard reg is not in the class GENERAL_REGS.  */
2445                 if (strict < 0
2446                     || GENERAL_REGS == ALL_REGS
2447                     || GET_CODE (op) != REG
2448                     || (reload_in_progress
2449                         && REGNO (op) >= FIRST_PSEUDO_REGISTER)
2450                     || reg_fits_class_p (op, GENERAL_REGS, offset, mode))
2451                   win = 1;
2452                 break;
2453
2454               case 'X':
2455                 /* This is used for a MATCH_SCRATCH in the cases when
2456                    we don't actually need anything.  So anything goes
2457                    any time.  */
2458                 win = 1;
2459                 break;
2460
2461               case 'm':
2462                 if (GET_CODE (op) == MEM
2463                     /* Before reload, accept what reload can turn into mem.  */
2464                     || (strict < 0 && CONSTANT_P (op))
2465                     /* During reload, accept a pseudo  */
2466                     || (reload_in_progress && GET_CODE (op) == REG
2467                         && REGNO (op) >= FIRST_PSEUDO_REGISTER))
2468                   win = 1;
2469                 break;
2470
2471               case '<':
2472                 if (GET_CODE (op) == MEM
2473                     && (GET_CODE (XEXP (op, 0)) == PRE_DEC
2474                         || GET_CODE (XEXP (op, 0)) == POST_DEC))
2475                   win = 1;
2476                 break;
2477
2478               case '>':
2479                 if (GET_CODE (op) == MEM
2480                     && (GET_CODE (XEXP (op, 0)) == PRE_INC
2481                         || GET_CODE (XEXP (op, 0)) == POST_INC))
2482                   win = 1;
2483                 break;
2484
2485               case 'E':
2486 #ifndef REAL_ARITHMETIC
2487                 /* Match any CONST_DOUBLE, but only if
2488                    we can examine the bits of it reliably.  */
2489                 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
2490                      || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
2491                     && GET_MODE (op) != VOIDmode && ! flag_pretend_float)
2492                   break;
2493 #endif
2494                 if (GET_CODE (op) == CONST_DOUBLE)
2495                   win = 1;
2496                 break;
2497
2498               case 'F':
2499                 if (GET_CODE (op) == CONST_DOUBLE)
2500                   win = 1;
2501                 break;
2502
2503               case 'G':
2504               case 'H':
2505                 if (GET_CODE (op) == CONST_DOUBLE
2506                     && CONST_DOUBLE_OK_FOR_LETTER_P (op, c))
2507                   win = 1;
2508                 break;
2509
2510               case 's':
2511                 if (GET_CODE (op) == CONST_INT
2512                     || (GET_CODE (op) == CONST_DOUBLE
2513                         && GET_MODE (op) == VOIDmode))
2514                   break;
2515               case 'i':
2516                 if (CONSTANT_P (op))
2517                   win = 1;
2518                 break;
2519
2520               case 'n':
2521                 if (GET_CODE (op) == CONST_INT
2522                     || (GET_CODE (op) == CONST_DOUBLE
2523                         && GET_MODE (op) == VOIDmode))
2524                   win = 1;
2525                 break;
2526
2527               case 'I':
2528               case 'J':
2529               case 'K':
2530               case 'L':
2531               case 'M':
2532               case 'N':
2533               case 'O':
2534               case 'P':
2535                 if (GET_CODE (op) == CONST_INT
2536                     && CONST_OK_FOR_LETTER_P (INTVAL (op), c))
2537                   win = 1;
2538                 break;
2539
2540               case 'V':
2541                 if (GET_CODE (op) == MEM
2542                     && ((strict > 0 && ! offsettable_memref_p (op))
2543                         || (strict < 0
2544                             && !(CONSTANT_P (op) || GET_CODE (op) == MEM))
2545                         || (reload_in_progress
2546                             && !(GET_CODE (op) == REG
2547                                  && REGNO (op) >= FIRST_PSEUDO_REGISTER))))
2548                   win = 1;
2549                 break;
2550
2551               case 'o':
2552                 if ((strict > 0 && offsettable_memref_p (op))
2553                     || (strict == 0 && offsettable_nonstrict_memref_p (op))
2554                     /* Before reload, accept what reload can handle.  */
2555                     || (strict < 0
2556                         && (CONSTANT_P (op) || GET_CODE (op) == MEM))
2557                     /* During reload, accept a pseudo  */
2558                     || (reload_in_progress && GET_CODE (op) == REG
2559                         && REGNO (op) >= FIRST_PSEUDO_REGISTER))
2560                   win = 1;
2561                 break;
2562
2563               default:
2564                 {
2565                   enum reg_class class;
2566
2567                   class = (c == 'r' ? GENERAL_REGS : REG_CLASS_FROM_LETTER (c));
2568                   if (class != NO_REGS)
2569                     {
2570                       if (strict < 0
2571                           || (strict == 0
2572                               && GET_CODE (op) == REG
2573                               && REGNO (op) >= FIRST_PSEUDO_REGISTER)
2574                           || (strict == 0 && GET_CODE (op) == SCRATCH)
2575                           || (GET_CODE (op) == REG
2576                               && reg_fits_class_p (op, class, offset, mode)))
2577                         win = 1;
2578                     }
2579 #ifdef EXTRA_CONSTRAINT
2580                   else if (EXTRA_CONSTRAINT (op, c))
2581                     win = 1;
2582 #endif
2583                   break;
2584                 }
2585               }
2586
2587           constraints[opno] = p;
2588           /* If this operand did not win somehow,
2589              this alternative loses.  */
2590           if (! win)
2591             lose = 1;
2592         }
2593       /* This alternative won; the operands are ok.
2594          Change whichever operands this alternative says to change.  */
2595       if (! lose)
2596         {
2597           int opno, eopno;
2598
2599           /* See if any earlyclobber operand conflicts with some other
2600              operand.  */
2601
2602           if (strict > 0)
2603             for (eopno = 0; eopno < recog_data.n_operands; eopno++)
2604               /* Ignore earlyclobber operands now in memory,
2605                  because we would often report failure when we have
2606                  two memory operands, one of which was formerly a REG.  */
2607               if (earlyclobber[eopno]
2608                   && GET_CODE (recog_data.operand[eopno]) == REG)
2609                 for (opno = 0; opno < recog_data.n_operands; opno++)
2610                   if ((GET_CODE (recog_data.operand[opno]) == MEM
2611                        || recog_data.operand_type[opno] != OP_OUT)
2612                       && opno != eopno
2613                       /* Ignore things like match_operator operands.  */
2614                       && *recog_data.constraints[opno] != 0
2615                       && ! (matching_operands[opno] == eopno
2616                             && operands_match_p (recog_data.operand[opno],
2617                                                  recog_data.operand[eopno]))
2618                       && ! safe_from_earlyclobber (recog_data.operand[opno],
2619                                                    recog_data.operand[eopno]))
2620                     lose = 1;
2621
2622           if (! lose)
2623             {
2624               while (--funny_match_index >= 0)
2625                 {
2626                   recog_data.operand[funny_match[funny_match_index].other]
2627                     = recog_data.operand[funny_match[funny_match_index].this];
2628                 }
2629
2630               return 1;
2631             }
2632         }
2633
2634       which_alternative++;
2635     }
2636   while (which_alternative < recog_data.n_alternatives);
2637
2638   which_alternative = -1;
2639   /* If we are about to reject this, but we are not to test strictly,
2640      try a very loose test.  Only return failure if it fails also.  */
2641   if (strict == 0)
2642     return constrain_operands (-1);
2643   else
2644     return 0;
2645 }
2646
2647 /* Return 1 iff OPERAND (assumed to be a REG rtx)
2648    is a hard reg in class CLASS when its regno is offset by OFFSET
2649    and changed to mode MODE.
2650    If REG occupies multiple hard regs, all of them must be in CLASS.  */
2651
2652 int
2653 reg_fits_class_p (operand, class, offset, mode)
2654      rtx operand;
2655      enum reg_class class;
2656      int offset;
2657      enum machine_mode mode;
2658 {
2659   int regno = REGNO (operand);
2660   if (regno < FIRST_PSEUDO_REGISTER
2661       && TEST_HARD_REG_BIT (reg_class_contents[(int) class],
2662                             regno + offset))
2663     {
2664       int sr;
2665       regno += offset;
2666       for (sr = HARD_REGNO_NREGS (regno, mode) - 1;
2667            sr > 0; sr--)
2668         if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
2669                                  regno + sr))
2670           break;
2671       return sr == 0;
2672     }
2673
2674   return 0;
2675 }
2676 \f
2677 /* Split single instruction.  Helper function for split_all_insns.
2678    Return last insn in the sequence if successful, or NULL if unsuccessful.  */
2679 static rtx
2680 split_insn (insn)
2681      rtx insn;
2682 {
2683   rtx set;
2684   if (!INSN_P (insn))
2685     ;
2686   /* Don't split no-op move insns.  These should silently
2687      disappear later in final.  Splitting such insns would
2688      break the code that handles REG_NO_CONFLICT blocks.  */
2689
2690   else if ((set = single_set (insn)) != NULL && set_noop_p (set))
2691     {
2692       /* Nops get in the way while scheduling, so delete them
2693          now if register allocation has already been done.  It
2694          is too risky to try to do this before register
2695          allocation, and there are unlikely to be very many
2696          nops then anyways.  */
2697       if (reload_completed)
2698         {
2699           PUT_CODE (insn, NOTE);
2700           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2701           NOTE_SOURCE_FILE (insn) = 0;
2702         }
2703     }
2704   else
2705     {
2706       /* Split insns here to get max fine-grain parallelism.  */
2707       rtx first = PREV_INSN (insn);
2708       rtx last = try_split (PATTERN (insn), insn, 1);
2709
2710       if (last != insn)
2711         {
2712           /* try_split returns the NOTE that INSN became.  */
2713           PUT_CODE (insn, NOTE);
2714           NOTE_SOURCE_FILE (insn) = 0;
2715           NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2716
2717           /* ??? Coddle to md files that generate subregs in post-
2718              reload splitters instead of computing the proper 
2719              hard register.  */
2720           if (reload_completed && first != last)
2721             {
2722               first = NEXT_INSN (first);
2723               while (1)
2724                 {
2725                   if (INSN_P (first))
2726                     cleanup_subreg_operands (first);
2727                   if (first == last)
2728                     break;
2729                   first = NEXT_INSN (first);
2730                 }
2731             }
2732           return last;
2733         }
2734     }
2735   return NULL_RTX;
2736 }
2737 /* Split all insns in the function.  If UPD_LIFE, update life info after.  */
2738
2739 void
2740 split_all_insns (upd_life)
2741      int upd_life;
2742 {
2743   sbitmap blocks;
2744   int changed;
2745   int i;
2746
2747   blocks = sbitmap_alloc (n_basic_blocks);
2748   sbitmap_zero (blocks);
2749   changed = 0;
2750
2751   for (i = n_basic_blocks - 1; i >= 0; --i)
2752     {
2753       basic_block bb = BASIC_BLOCK (i);
2754       rtx insn, next;
2755
2756       for (insn = bb->head; insn ; insn = next)
2757         {
2758           rtx last;
2759
2760           /* Can't use `next_real_insn' because that might go across
2761              CODE_LABELS and short-out basic blocks.  */
2762           next = NEXT_INSN (insn);
2763           last = split_insn (insn);
2764           if (last)
2765             {
2766               /* The split sequence may include barrier, but the
2767                  BB boundary we are interested in will be set to previous
2768                  one.  */
2769
2770               while (GET_CODE (last) == BARRIER)
2771                 last = PREV_INSN (last);
2772               SET_BIT (blocks, i);
2773               changed = 1;
2774               insn = last;
2775             }
2776
2777           if (insn == bb->end)
2778             break;
2779         }
2780
2781       if (insn == NULL)
2782         abort ();
2783     }
2784
2785   if (changed)
2786     {
2787       find_many_sub_basic_blocks (blocks);
2788     }
2789
2790   if (changed && upd_life)
2791     {
2792       count_or_remove_death_notes (blocks, 1);
2793       update_life_info (blocks, UPDATE_LIFE_LOCAL, PROP_DEATH_NOTES);
2794     }
2795 #ifdef ENABLE_CHECKING
2796   verify_flow_info ();
2797 #endif
2798
2799   sbitmap_free (blocks);
2800 }
2801
2802 /* Same as split_all_insns, but do not expect CFG to be available. 
2803    Used by machine depedent reorg passes.  */
2804
2805 void
2806 split_all_insns_noflow ()
2807 {
2808   rtx next, insn;
2809
2810   for (insn = get_insns (); insn; insn = next)
2811     {
2812       next = NEXT_INSN (insn);
2813       split_insn (insn);
2814     }
2815   return;
2816 }
2817 \f
2818 #ifdef HAVE_peephole2
2819 struct peep2_insn_data
2820 {
2821   rtx insn;
2822   regset live_before;
2823 };
2824
2825 static struct peep2_insn_data peep2_insn_data[MAX_INSNS_PER_PEEP2 + 1];
2826 static int peep2_current;
2827
2828 /* A non-insn marker indicating the last insn of the block.
2829    The live_before regset for this element is correct, indicating
2830    global_live_at_end for the block.  */
2831 #define PEEP2_EOB       pc_rtx
2832
2833 /* Return the Nth non-note insn after `current', or return NULL_RTX if it
2834    does not exist.  Used by the recognizer to find the next insn to match
2835    in a multi-insn pattern.  */
2836
2837 rtx
2838 peep2_next_insn (n)
2839      int n;
2840 {
2841   if (n >= MAX_INSNS_PER_PEEP2 + 1)
2842     abort ();
2843
2844   n += peep2_current;
2845   if (n >= MAX_INSNS_PER_PEEP2 + 1)
2846     n -= MAX_INSNS_PER_PEEP2 + 1;
2847
2848   if (peep2_insn_data[n].insn == PEEP2_EOB)
2849     return NULL_RTX;
2850   return peep2_insn_data[n].insn;
2851 }
2852
2853 /* Return true if REGNO is dead before the Nth non-note insn
2854    after `current'.  */
2855
2856 int
2857 peep2_regno_dead_p (ofs, regno)
2858      int ofs;
2859      int regno;
2860 {
2861   if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2862     abort ();
2863
2864   ofs += peep2_current;
2865   if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2866     ofs -= MAX_INSNS_PER_PEEP2 + 1;
2867
2868   if (peep2_insn_data[ofs].insn == NULL_RTX)
2869     abort ();
2870
2871   return ! REGNO_REG_SET_P (peep2_insn_data[ofs].live_before, regno);
2872 }
2873
2874 /* Similarly for a REG.  */
2875
2876 int
2877 peep2_reg_dead_p (ofs, reg)
2878      int ofs;
2879      rtx reg;
2880 {
2881   int regno, n;
2882
2883   if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2884     abort ();
2885
2886   ofs += peep2_current;
2887   if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2888     ofs -= MAX_INSNS_PER_PEEP2 + 1;
2889
2890   if (peep2_insn_data[ofs].insn == NULL_RTX)
2891     abort ();
2892
2893   regno = REGNO (reg);
2894   n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
2895   while (--n >= 0)
2896     if (REGNO_REG_SET_P (peep2_insn_data[ofs].live_before, regno + n))
2897       return 0;
2898   return 1;
2899 }
2900
2901 /* Try to find a hard register of mode MODE, matching the register class in
2902    CLASS_STR, which is available at the beginning of insn CURRENT_INSN and
2903    remains available until the end of LAST_INSN.  LAST_INSN may be NULL_RTX,
2904    in which case the only condition is that the register must be available
2905    before CURRENT_INSN.
2906    Registers that already have bits set in REG_SET will not be considered.
2907
2908    If an appropriate register is available, it will be returned and the
2909    corresponding bit(s) in REG_SET will be set; otherwise, NULL_RTX is
2910    returned.  */
2911
2912 rtx
2913 peep2_find_free_register (from, to, class_str, mode, reg_set)
2914      int from, to;
2915      const char *class_str;
2916      enum machine_mode mode;
2917      HARD_REG_SET *reg_set;
2918 {
2919   static int search_ofs;
2920   enum reg_class class;
2921   HARD_REG_SET live;
2922   int i;
2923
2924   if (from >= MAX_INSNS_PER_PEEP2 + 1 || to >= MAX_INSNS_PER_PEEP2 + 1)
2925     abort ();
2926
2927   from += peep2_current;
2928   if (from >= MAX_INSNS_PER_PEEP2 + 1)
2929     from -= MAX_INSNS_PER_PEEP2 + 1;
2930   to += peep2_current;
2931   if (to >= MAX_INSNS_PER_PEEP2 + 1)
2932     to -= MAX_INSNS_PER_PEEP2 + 1;
2933
2934   if (peep2_insn_data[from].insn == NULL_RTX)
2935     abort ();
2936   REG_SET_TO_HARD_REG_SET (live, peep2_insn_data[from].live_before);
2937
2938   while (from != to)
2939     {
2940       HARD_REG_SET this_live;
2941
2942       if (++from >= MAX_INSNS_PER_PEEP2 + 1)
2943         from = 0;
2944       if (peep2_insn_data[from].insn == NULL_RTX)
2945         abort ();
2946       REG_SET_TO_HARD_REG_SET (this_live, peep2_insn_data[from].live_before);
2947       IOR_HARD_REG_SET (live, this_live);
2948     }
2949
2950   class = (class_str[0] == 'r' ? GENERAL_REGS
2951            : REG_CLASS_FROM_LETTER (class_str[0]));
2952
2953   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2954     {
2955       int raw_regno, regno, success, j;
2956
2957       /* Distribute the free registers as much as possible.  */
2958       raw_regno = search_ofs + i;
2959       if (raw_regno >= FIRST_PSEUDO_REGISTER)
2960         raw_regno -= FIRST_PSEUDO_REGISTER;
2961 #ifdef REG_ALLOC_ORDER
2962       regno = reg_alloc_order[raw_regno];
2963 #else
2964       regno = raw_regno;
2965 #endif
2966
2967       /* Don't allocate fixed registers.  */
2968       if (fixed_regs[regno])
2969         continue;
2970       /* Make sure the register is of the right class.  */
2971       if (! TEST_HARD_REG_BIT (reg_class_contents[class], regno))
2972         continue;
2973       /* And can support the mode we need.  */
2974       if (! HARD_REGNO_MODE_OK (regno, mode))
2975         continue;
2976       /* And that we don't create an extra save/restore.  */
2977       if (! call_used_regs[regno] && ! regs_ever_live[regno])
2978         continue;
2979       /* And we don't clobber traceback for noreturn functions.  */
2980       if ((regno == FRAME_POINTER_REGNUM || regno == HARD_FRAME_POINTER_REGNUM)
2981           && (! reload_completed || frame_pointer_needed))
2982         continue;
2983
2984       success = 1;
2985       for (j = HARD_REGNO_NREGS (regno, mode) - 1; j >= 0; j--)
2986         {
2987           if (TEST_HARD_REG_BIT (*reg_set, regno + j)
2988               || TEST_HARD_REG_BIT (live, regno + j))
2989             {
2990               success = 0;
2991               break;
2992             }
2993         }
2994       if (success)
2995         {
2996           for (j = HARD_REGNO_NREGS (regno, mode) - 1; j >= 0; j--)
2997             SET_HARD_REG_BIT (*reg_set, regno + j);
2998
2999           /* Start the next search with the next register.  */
3000           if (++raw_regno >= FIRST_PSEUDO_REGISTER)
3001             raw_regno = 0;
3002           search_ofs = raw_regno;
3003
3004           return gen_rtx_REG (mode, regno);
3005         }
3006     }
3007
3008   search_ofs = 0;
3009   return NULL_RTX;
3010 }
3011
3012 /* Perform the peephole2 optimization pass.  */
3013
3014 void
3015 peephole2_optimize (dump_file)
3016      FILE *dump_file ATTRIBUTE_UNUSED;
3017 {
3018   regset_head rs_heads[MAX_INSNS_PER_PEEP2 + 2];
3019   rtx insn, prev;
3020   regset live;
3021   int i, b;
3022 #ifdef HAVE_conditional_execution
3023   sbitmap blocks;
3024   bool changed;
3025 #endif
3026   bool do_cleanup_cfg = false;
3027   bool do_rebuild_jump_labels = false;
3028
3029   /* Initialize the regsets we're going to use.  */
3030   for (i = 0; i < MAX_INSNS_PER_PEEP2 + 1; ++i)
3031     peep2_insn_data[i].live_before = INITIALIZE_REG_SET (rs_heads[i]);
3032   live = INITIALIZE_REG_SET (rs_heads[i]);
3033
3034 #ifdef HAVE_conditional_execution
3035   blocks = sbitmap_alloc (n_basic_blocks);
3036   sbitmap_zero (blocks);
3037   changed = false;
3038 #else
3039   count_or_remove_death_notes (NULL, 1);
3040 #endif
3041
3042   for (b = n_basic_blocks - 1; b >= 0; --b)
3043     {
3044       basic_block bb = BASIC_BLOCK (b);
3045       struct propagate_block_info *pbi;
3046
3047       /* Indicate that all slots except the last holds invalid data.  */
3048       for (i = 0; i < MAX_INSNS_PER_PEEP2; ++i)
3049         peep2_insn_data[i].insn = NULL_RTX;
3050
3051       /* Indicate that the last slot contains live_after data.  */
3052       peep2_insn_data[MAX_INSNS_PER_PEEP2].insn = PEEP2_EOB;
3053       peep2_current = MAX_INSNS_PER_PEEP2;
3054
3055       /* Start up propagation.  */
3056       COPY_REG_SET (live, bb->global_live_at_end);
3057       COPY_REG_SET (peep2_insn_data[MAX_INSNS_PER_PEEP2].live_before, live);
3058
3059 #ifdef HAVE_conditional_execution
3060       pbi = init_propagate_block_info (bb, live, NULL, NULL, 0);
3061 #else
3062       pbi = init_propagate_block_info (bb, live, NULL, NULL, PROP_DEATH_NOTES);
3063 #endif
3064
3065       for (insn = bb->end; ; insn = prev)
3066         {
3067           prev = PREV_INSN (insn);
3068           if (INSN_P (insn))
3069             {
3070               rtx try, before_try, x;
3071               int match_len;
3072               rtx note;
3073
3074               /* Record this insn.  */
3075               if (--peep2_current < 0)
3076                 peep2_current = MAX_INSNS_PER_PEEP2;
3077               peep2_insn_data[peep2_current].insn = insn;
3078               propagate_one_insn (pbi, insn);
3079               COPY_REG_SET (peep2_insn_data[peep2_current].live_before, live);
3080
3081               /* Match the peephole.  */
3082               try = peephole2_insns (PATTERN (insn), insn, &match_len);
3083               if (try != NULL)
3084                 {
3085                   /* If we are splitting a CALL_INSN, look for the CALL_INSN
3086                      in SEQ and copy our CALL_INSN_FUNCTION_USAGE and other
3087                      cfg-related call notes.  */
3088                   for (i = 0; i <= match_len; ++i)
3089                     {
3090                       int j, k;
3091                       rtx old_insn, new_insn, note;
3092
3093                       j = i + peep2_current;
3094                       if (j >= MAX_INSNS_PER_PEEP2 + 1)
3095                         j -= MAX_INSNS_PER_PEEP2 + 1;
3096                       old_insn = peep2_insn_data[j].insn;
3097                       if (GET_CODE (old_insn) != CALL_INSN)
3098                         continue;
3099
3100                       new_insn = NULL_RTX;
3101                       if (GET_CODE (try) == SEQUENCE)
3102                         for (k = XVECLEN (try, 0) - 1; k >= 0; k--)
3103                           {
3104                             rtx x = XVECEXP (try, 0, k);
3105                             if (GET_CODE (x) == CALL_INSN)
3106                               {
3107                                 new_insn = x;
3108                                 break;
3109                               }
3110                           }
3111                       else if (GET_CODE (try) == CALL_INSN)
3112                         new_insn = try;
3113                       if (! new_insn)
3114                         abort ();
3115
3116                       CALL_INSN_FUNCTION_USAGE (new_insn)
3117                         = CALL_INSN_FUNCTION_USAGE (old_insn);
3118
3119                       for (note = REG_NOTES (old_insn);
3120                            note;
3121                            note = XEXP (note, 1))
3122                         switch (REG_NOTE_KIND (note))
3123                           {
3124                           case REG_NORETURN:
3125                           case REG_SETJMP:
3126                           case REG_ALWAYS_RETURN:
3127                             REG_NOTES (new_insn)
3128                               = gen_rtx_EXPR_LIST (REG_NOTE_KIND (note),
3129                                                    XEXP (note, 0),
3130                                                    REG_NOTES (new_insn));
3131                           default:
3132                             /* Discard all other reg notes.  */
3133                             break;
3134                           }
3135
3136                       /* Croak if there is another call in the sequence.  */
3137                       while (++i <= match_len)
3138                         {
3139                           j = i + peep2_current;
3140                           if (j >= MAX_INSNS_PER_PEEP2 + 1)
3141                             j -= MAX_INSNS_PER_PEEP2 + 1;
3142                           old_insn = peep2_insn_data[j].insn;
3143                           if (GET_CODE (old_insn) == CALL_INSN)
3144                             abort ();
3145                         }
3146                       break;
3147                     }
3148
3149                   i = match_len + peep2_current;
3150                   if (i >= MAX_INSNS_PER_PEEP2 + 1)
3151                     i -= MAX_INSNS_PER_PEEP2 + 1;
3152
3153                   note = find_reg_note (peep2_insn_data[i].insn, 
3154                                         REG_EH_REGION, NULL_RTX);
3155
3156                   /* Replace the old sequence with the new.  */
3157                   try = emit_insn_after (try, peep2_insn_data[i].insn);
3158                   before_try = PREV_INSN (insn);
3159                   delete_insn_chain (insn, peep2_insn_data[i].insn);
3160
3161                   /* Re-insert the EH_REGION notes.  */
3162                   if (note)
3163                     {
3164                       edge eh_edge;
3165
3166                       for (eh_edge = bb->succ; eh_edge
3167                            ; eh_edge = eh_edge->succ_next)
3168                         if (eh_edge->flags & EDGE_EH)
3169                           break;
3170
3171                       for (x = try ; x != before_try ; x = PREV_INSN (x))
3172                         if (GET_CODE (x) == CALL_INSN
3173                             || (flag_non_call_exceptions
3174                                 && may_trap_p (PATTERN (x))
3175                                 && !find_reg_note (x, REG_EH_REGION, NULL)))
3176                           {
3177                             REG_NOTES (x)
3178                               = gen_rtx_EXPR_LIST (REG_EH_REGION,
3179                                                    XEXP (note, 0),
3180                                                    REG_NOTES (x));
3181
3182                             if (x != bb->end && eh_edge)
3183                               {
3184                                 edge nfte, nehe;
3185                                 int flags;
3186
3187                                 nfte = split_block (bb, x);
3188                                 flags = EDGE_EH | EDGE_ABNORMAL;
3189                                 if (GET_CODE (x) == CALL_INSN)
3190                                   flags |= EDGE_ABNORMAL_CALL;
3191                                 nehe = make_edge (nfte->src, eh_edge->dest,
3192                                                   flags);
3193
3194                                 nehe->probability = eh_edge->probability;
3195                                 nfte->probability
3196                                   = REG_BR_PROB_BASE - nehe->probability;
3197
3198                                 do_cleanup_cfg |= purge_dead_edges (nfte->dest);
3199 #ifdef HAVE_conditional_execution
3200                                 SET_BIT (blocks, nfte->dest->index);
3201                                 changed = true;
3202 #endif
3203                                 bb = nfte->src;
3204                                 eh_edge = nehe;
3205                               }
3206                           }
3207
3208                       /* Converting possibly trapping insn to non-trapping is
3209                          possible.  Zap dummy outgoing edges.  */
3210                       do_cleanup_cfg |= purge_dead_edges (bb);
3211                     }
3212
3213 #ifdef HAVE_conditional_execution
3214                   /* With conditional execution, we cannot back up the
3215                      live information so easily, since the conditional
3216                      death data structures are not so self-contained.
3217                      So record that we've made a modification to this
3218                      block and update life information at the end.  */
3219                   SET_BIT (blocks, b);
3220                   changed = true;
3221
3222                   for (i = 0; i < MAX_INSNS_PER_PEEP2 + 1; ++i)
3223                     peep2_insn_data[i].insn = NULL_RTX;
3224                   peep2_insn_data[peep2_current].insn = PEEP2_EOB;
3225 #else
3226                   /* Back up lifetime information past the end of the
3227                      newly created sequence.  */
3228                   if (++i >= MAX_INSNS_PER_PEEP2 + 1)
3229                     i = 0;
3230                   COPY_REG_SET (live, peep2_insn_data[i].live_before);
3231
3232                   /* Update life information for the new sequence.  */
3233                   x = try;
3234                   do
3235                     {
3236                       if (INSN_P (x))
3237                         {
3238                           if (--i < 0)
3239                             i = MAX_INSNS_PER_PEEP2;
3240                           peep2_insn_data[i].insn = x;
3241                           propagate_one_insn (pbi, x);
3242                           COPY_REG_SET (peep2_insn_data[i].live_before, live);
3243                         }
3244                       x = PREV_INSN (x);
3245                     }
3246                   while (x != prev);
3247
3248                   /* ??? Should verify that LIVE now matches what we
3249                      had before the new sequence.  */
3250
3251                   peep2_current = i;
3252 #endif
3253
3254                   /* If we generated a jump instruction, it won't have
3255                      JUMP_LABEL set.  Recompute after we're done.  */
3256                   for (x = try; x != before_try; x = PREV_INSN (x))
3257                     if (GET_CODE (x) == JUMP_INSN)
3258                       {
3259                         do_rebuild_jump_labels = true;
3260                         break;
3261                       }
3262                 }
3263             }
3264
3265           if (insn == bb->head)
3266             break;
3267         }
3268
3269       free_propagate_block_info (pbi);
3270     }
3271
3272   for (i = 0; i < MAX_INSNS_PER_PEEP2 + 1; ++i)
3273     FREE_REG_SET (peep2_insn_data[i].live_before);
3274   FREE_REG_SET (live);
3275
3276   if (do_rebuild_jump_labels)
3277     rebuild_jump_labels (get_insns ());
3278
3279   /* If we eliminated EH edges, we may be able to merge blocks.  Further,
3280      we've changed global life since exception handlers are no longer
3281      reachable.  */
3282   if (do_cleanup_cfg)
3283     {
3284       cleanup_cfg (0);
3285       update_life_info (0, UPDATE_LIFE_GLOBAL_RM_NOTES, PROP_DEATH_NOTES);
3286     }
3287 #ifdef HAVE_conditional_execution
3288   else
3289     {
3290       count_or_remove_death_notes (blocks, 1);
3291       update_life_info (blocks, UPDATE_LIFE_LOCAL, PROP_DEATH_NOTES);
3292     }
3293   sbitmap_free (blocks);
3294 #endif
3295 }
3296 #endif /* HAVE_peephole2 */