* doc/contrib.texi: Fix alphabetical order. Fix typos. Improve
[official-gcc.git] / gcc / recog.c
blobc823ea1f0d29455fb8f6be2e3c27e2551ae35447
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 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
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 "function.h"
33 #include "flags.h"
34 #include "real.h"
35 #include "toplev.h"
36 #include "basic-block.h"
37 #include "output.h"
38 #include "reload.h"
40 #ifndef STACK_PUSH_CODE
41 #ifdef STACK_GROWS_DOWNWARD
42 #define STACK_PUSH_CODE PRE_DEC
43 #else
44 #define STACK_PUSH_CODE PRE_INC
45 #endif
46 #endif
48 #ifndef STACK_POP_CODE
49 #ifdef STACK_GROWS_DOWNWARD
50 #define STACK_POP_CODE POST_INC
51 #else
52 #define STACK_POP_CODE POST_DEC
53 #endif
54 #endif
56 static void validate_replace_rtx_1 PARAMS ((rtx *, rtx, rtx, rtx));
57 static rtx *find_single_use_1 PARAMS ((rtx, rtx *));
58 static rtx *find_constant_term_loc PARAMS ((rtx *));
59 static void validate_replace_src_1 PARAMS ((rtx *, void *));
60 static rtx split_insn PARAMS ((rtx));
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.
68 init_recog and init_recog_no_volatile are responsible for setting this. */
70 int volatile_ok;
72 struct recog_data recog_data;
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];
78 /* On return from `constrain_operands', indicate which alternative
79 was satisfied. */
81 int which_alternative;
83 /* Nonzero after end of reload pass.
84 Set to 1 or 0 by toplev.c.
85 Controls the significance of (SUBREG (MEM)). */
87 int reload_completed;
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. */
93 void
94 init_recog_no_volatile ()
96 volatile_ok = 0;
99 void
100 init_recog ()
102 volatile_ok = 1;
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.
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.) */
115 recog_memoized_1 (insn)
116 rtx insn;
118 if (INSN_CODE (insn) < 0)
119 INSN_CODE (insn) = recog (PATTERN (insn), insn, 0);
120 return INSN_CODE (insn);
123 /* Check that X is an insn-body for an `asm' with operands
124 and that the operands mentioned in it are legitimate. */
127 check_asm_operands (x)
128 rtx x;
130 int noperands;
131 rtx *operands;
132 const char **constraints;
133 int i;
135 /* Post-reload, be more strict with things. */
136 if (reload_completed)
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;
144 noperands = asm_noperands (x);
145 if (noperands < 0)
146 return 0;
147 if (noperands == 0)
148 return 1;
150 operands = (rtx *) alloca (noperands * sizeof (rtx));
151 constraints = (const char **) alloca (noperands * sizeof (char *));
153 decode_asm_operands (x, operands, NULL, constraints, NULL);
155 for (i = 0; i < noperands; i++)
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'];
163 if (! asm_operand_ok (operands[i], c))
164 return 0;
167 return 1;
170 /* Static data for the next two routines. */
172 typedef struct change_t
174 rtx object;
175 int old_code;
176 rtx *loc;
177 rtx old;
178 } change_t;
180 static change_t *changes;
181 static int changes_allocated;
183 static int num_changes = 0;
185 /* Validate a proposed change to OBJECT. LOC is the location in the rtl for
186 at which NEW will be placed. If OBJECT is zero, no validation is done,
187 the change is simply made.
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.
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.
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. */
204 validate_change (object, loc, new, in_group)
205 rtx object;
206 rtx *loc;
207 rtx new;
208 int in_group;
210 rtx old = *loc;
212 if (old == new || rtx_equal_p (old, new))
213 return 1;
215 if (in_group == 0 && num_changes != 0)
216 abort ();
218 *loc = new;
220 /* Save the information describing this change. */
221 if (num_changes >= changes_allocated)
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;
230 changes =
231 (change_t*) xrealloc (changes,
232 sizeof (change_t) * changes_allocated);
235 changes[num_changes].object = object;
236 changes[num_changes].loc = loc;
237 changes[num_changes].old = old;
239 if (object && GET_CODE (object) != MEM)
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;
247 num_changes++;
249 /* If we are making a group of changes, return 1. Otherwise, validate the
250 change group we made. */
252 if (in_group)
253 return 1;
254 else
255 return apply_change_group ();
258 /* This subroutine of apply_change_group verifies whether the changes to INSN
259 were valid; i.e. whether INSN can still be recognized. */
262 insn_invalid_p (insn)
263 rtx insn;
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;
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;
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)
287 rtx newpat;
289 if (added_clobbers_hard_reg_p (icode))
290 return 1;
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;
298 /* After reload, verify that all constraints are satisfied. */
299 if (reload_completed)
301 extract_insn (insn);
303 if (! constrain_operands (1))
304 return 1;
307 INSN_CODE (insn) = icode;
308 return 0;
311 /* Apply a group of changes previously issued with `validate_change'.
312 Return 1 if all changes are valid, zero otherwise. */
315 apply_change_group ()
317 int i;
318 rtx last_validated = NULL_RTX;
320 /* The changes have been applied and all INSN_CODEs have been reset to force
321 rerecognition.
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. */
329 for (i = 0; i < num_changes; i++)
331 rtx object = changes[i].object;
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;
338 if (GET_CODE (object) == MEM)
340 if (! memory_address_p (GET_MODE (object), XEXP (object, 0)))
341 break;
343 else if (insn_invalid_p (object))
345 rtx pat = PATTERN (object);
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)
356 rtx newpat;
358 if (XVECLEN (pat, 0) == 2)
359 newpat = XVECEXP (pat, 0, 0);
360 else
362 int j;
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);
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.
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. */
380 validate_change (object, &PATTERN (object), newpat, 1);
381 continue;
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;
390 last_validated = object;
393 if (i == num_changes)
395 num_changes = 0;
396 return 1;
398 else
400 cancel_changes (0);
401 return 0;
405 /* Return the number of changes so far in the current group. */
408 num_validated_changes ()
410 return num_changes;
413 /* Retract the changes numbered NUM and up. */
415 void
416 cancel_changes (num)
417 int num;
419 int i;
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--)
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;
429 num_changes = num;
432 /* Replace every occurrence of FROM in X with TO. Mark each change with
433 validate_change passing OBJECT. */
435 static void
436 validate_replace_rtx_1 (loc, from, to, object)
437 rtx *loc;
438 rtx from, to, object;
440 register int i, j;
441 register const char *fmt;
442 register rtx x = *loc;
443 enum rtx_code code;
444 enum machine_mode op0_mode = VOIDmode;
445 int prev_changes = num_changes;
446 rtx new;
448 if (!x)
449 return;
451 code = GET_CODE (x);
452 fmt = GET_RTX_FORMAT (code);
453 if (fmt[0] == 'e')
454 op0_mode = GET_MODE (XEXP (x, 0));
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. */
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)))
467 validate_change (object, loc, to, 1);
468 return;
471 /* Call ourseves recursivly to perform the replacements. */
473 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
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);
482 /* In case we didn't substituted, there is nothing to do. */
483 if (num_changes == prev_changes)
484 return;
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));
491 /* Do changes needed to keep rtx consistent. Don't do any other
492 simplifications, as it is not our job. */
494 if ((GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == 'c')
495 && swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
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);
506 switch (code)
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 && XEXP (x, 1) == to)
514 validate_change (object, loc,
515 plus_constant (XEXP (x, 0), INTVAL (to)), 1);
516 break;
517 case MINUS:
518 if (GET_CODE (XEXP (x, 1)) == CONST_INT
519 || GET_CODE (XEXP (x, 1)) == CONST_DOUBLE)
520 validate_change (object, loc,
521 simplify_gen_binary
522 (PLUS, GET_MODE (x), XEXP (x, 0),
523 simplify_gen_unary (NEG,
524 op0_mode, XEXP (x, 1),
525 op0_mode)), 1);
526 break;
527 case ZERO_EXTEND:
528 case SIGN_EXTEND:
529 if (GET_MODE (XEXP (x, 0)) == VOIDmode)
531 new = simplify_gen_unary (code, GET_MODE (x), XEXP (x, 0),
532 op0_mode);
533 /* If any of the above failed, substitute in something that
534 we know won't be recognized. */
535 if (!new)
536 new = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
537 validate_change (object, loc, new, 1);
539 break;
540 case SUBREG:
541 /* All subregs possible to simplify should be simplified. */
542 new = simplify_subreg (GET_MODE (x), SUBREG_REG (x), op0_mode,
543 SUBREG_BYTE (x));
545 /* Subregs of VOIDmode operands are incorect. */
546 if (!new && GET_MODE (SUBREG_REG (x)) == VOIDmode)
547 new = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
548 if (new)
549 validate_change (object, loc, new, 1);
550 break;
551 case ZERO_EXTRACT:
552 case SIGN_EXTRACT:
553 /* If we are replacing a register with memory, try to change the memory
554 to be the mode required for memory in extract operations (this isn't
555 likely to be an insertion operation; if it was, nothing bad will
556 happen, we might just fail in some cases). */
558 if (GET_CODE (XEXP (x, 0)) == MEM
559 && GET_CODE (XEXP (x, 1)) == CONST_INT
560 && GET_CODE (XEXP (x, 2)) == CONST_INT
561 && !mode_dependent_address_p (XEXP (XEXP (x, 0), 0))
562 && !MEM_VOLATILE_P (XEXP (x, 0)))
564 enum machine_mode wanted_mode = VOIDmode;
565 enum machine_mode is_mode = GET_MODE (XEXP (x, 0));
566 int pos = INTVAL (XEXP (x, 2));
568 #ifdef HAVE_extzv
569 if (code == ZERO_EXTRACT)
571 wanted_mode = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
572 if (wanted_mode == VOIDmode)
573 wanted_mode = word_mode;
575 #endif
576 #ifdef HAVE_extv
577 if (code == SIGN_EXTRACT)
579 wanted_mode = insn_data[(int) CODE_FOR_extv].operand[1].mode;
580 if (wanted_mode == VOIDmode)
581 wanted_mode = word_mode;
583 #endif
585 /* If we have a narrower mode, we can do something. */
586 if (wanted_mode != VOIDmode
587 && GET_MODE_SIZE (wanted_mode) < GET_MODE_SIZE (is_mode))
589 int offset = pos / BITS_PER_UNIT;
590 rtx newmem;
592 /* If the bytes and bits are counted differently, we
593 must adjust the offset. */
594 if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN)
595 offset =
596 (GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (wanted_mode) -
597 offset);
599 pos %= GET_MODE_BITSIZE (wanted_mode);
601 newmem = gen_rtx_MEM (wanted_mode,
602 plus_constant (XEXP (XEXP (x, 0), 0),
603 offset));
604 MEM_COPY_ATTRIBUTES (newmem, XEXP (x, 0));
606 validate_change (object, &XEXP (x, 2), GEN_INT (pos), 1);
607 validate_change (object, &XEXP (x, 0), newmem, 1);
611 break;
613 default:
614 break;
618 /* Try replacing every occurrence of FROM in subexpression LOC of INSN
619 with TO. After all changes have been made, validate by seeing
620 if INSN is still valid. */
623 validate_replace_rtx_subexp (from, to, insn, loc)
624 rtx from, to, insn, *loc;
626 validate_replace_rtx_1 (loc, from, to, insn);
627 return apply_change_group ();
630 /* Try replacing every occurrence of FROM in INSN with TO. After all
631 changes have been made, validate by seeing if INSN is still valid. */
634 validate_replace_rtx (from, to, insn)
635 rtx from, to, insn;
637 validate_replace_rtx_1 (&PATTERN (insn), from, to, insn);
638 return apply_change_group ();
641 /* Try replacing every occurrence of FROM in INSN with TO. */
643 void
644 validate_replace_rtx_group (from, to, insn)
645 rtx from, to, insn;
647 validate_replace_rtx_1 (&PATTERN (insn), from, to, insn);
650 /* Function called by note_uses to replace used subexpressions. */
651 struct validate_replace_src_data
653 rtx from; /* Old RTX */
654 rtx to; /* New RTX */
655 rtx insn; /* Insn in which substitution is occurring. */
658 static void
659 validate_replace_src_1 (x, data)
660 rtx *x;
661 void *data;
663 struct validate_replace_src_data *d
664 = (struct validate_replace_src_data *) data;
666 validate_replace_rtx_1 (x, d->from, d->to, d->insn);
669 /* Try replacing every occurrence of FROM in INSN with TO, avoiding
670 SET_DESTs. After all changes have been made, validate by seeing if
671 INSN is still valid. */
674 validate_replace_src (from, to, insn)
675 rtx from, to, insn;
677 struct validate_replace_src_data d;
679 d.from = from;
680 d.to = to;
681 d.insn = insn;
682 note_uses (&PATTERN (insn), validate_replace_src_1, &d);
683 return apply_change_group ();
686 #ifdef HAVE_cc0
687 /* Return 1 if the insn using CC0 set by INSN does not contain
688 any ordered tests applied to the condition codes.
689 EQ and NE tests do not count. */
692 next_insn_tests_no_inequality (insn)
693 rtx insn;
695 register rtx next = next_cc0_user (insn);
697 /* If there is no next insn, we have to take the conservative choice. */
698 if (next == 0)
699 return 0;
701 return ((GET_CODE (next) == JUMP_INSN
702 || GET_CODE (next) == INSN
703 || GET_CODE (next) == CALL_INSN)
704 && ! inequality_comparisons_p (PATTERN (next)));
707 #if 0 /* This is useless since the insn that sets the cc's
708 must be followed immediately by the use of them. */
709 /* Return 1 if the CC value set up by INSN is not used. */
712 next_insns_test_no_inequality (insn)
713 rtx insn;
715 register rtx next = NEXT_INSN (insn);
717 for (; next != 0; next = NEXT_INSN (next))
719 if (GET_CODE (next) == CODE_LABEL
720 || GET_CODE (next) == BARRIER)
721 return 1;
722 if (GET_CODE (next) == NOTE)
723 continue;
724 if (inequality_comparisons_p (PATTERN (next)))
725 return 0;
726 if (sets_cc0_p (PATTERN (next)) == 1)
727 return 1;
728 if (! reg_mentioned_p (cc0_rtx, PATTERN (next)))
729 return 1;
731 return 1;
733 #endif
734 #endif
736 /* This is used by find_single_use to locate an rtx that contains exactly one
737 use of DEST, which is typically either a REG or CC0. It returns a
738 pointer to the innermost rtx expression containing DEST. Appearances of
739 DEST that are being used to totally replace it are not counted. */
741 static rtx *
742 find_single_use_1 (dest, loc)
743 rtx dest;
744 rtx *loc;
746 rtx x = *loc;
747 enum rtx_code code = GET_CODE (x);
748 rtx *result = 0;
749 rtx *this_result;
750 int i;
751 const char *fmt;
753 switch (code)
755 case CONST_INT:
756 case CONST:
757 case LABEL_REF:
758 case SYMBOL_REF:
759 case CONST_DOUBLE:
760 case CLOBBER:
761 return 0;
763 case SET:
764 /* If the destination is anything other than CC0, PC, a REG or a SUBREG
765 of a REG that occupies all of the REG, the insn uses DEST if
766 it is mentioned in the destination or the source. Otherwise, we
767 need just check the source. */
768 if (GET_CODE (SET_DEST (x)) != CC0
769 && GET_CODE (SET_DEST (x)) != PC
770 && GET_CODE (SET_DEST (x)) != REG
771 && ! (GET_CODE (SET_DEST (x)) == SUBREG
772 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
773 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
774 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
775 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
776 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
777 break;
779 return find_single_use_1 (dest, &SET_SRC (x));
781 case MEM:
782 case SUBREG:
783 return find_single_use_1 (dest, &XEXP (x, 0));
785 default:
786 break;
789 /* If it wasn't one of the common cases above, check each expression and
790 vector of this code. Look for a unique usage of DEST. */
792 fmt = GET_RTX_FORMAT (code);
793 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
795 if (fmt[i] == 'e')
797 if (dest == XEXP (x, i)
798 || (GET_CODE (dest) == REG && GET_CODE (XEXP (x, i)) == REG
799 && REGNO (dest) == REGNO (XEXP (x, i))))
800 this_result = loc;
801 else
802 this_result = find_single_use_1 (dest, &XEXP (x, i));
804 if (result == 0)
805 result = this_result;
806 else if (this_result)
807 /* Duplicate usage. */
808 return 0;
810 else if (fmt[i] == 'E')
812 int j;
814 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
816 if (XVECEXP (x, i, j) == dest
817 || (GET_CODE (dest) == REG
818 && GET_CODE (XVECEXP (x, i, j)) == REG
819 && REGNO (XVECEXP (x, i, j)) == REGNO (dest)))
820 this_result = loc;
821 else
822 this_result = find_single_use_1 (dest, &XVECEXP (x, i, j));
824 if (result == 0)
825 result = this_result;
826 else if (this_result)
827 return 0;
832 return result;
835 /* See if DEST, produced in INSN, is used only a single time in the
836 sequel. If so, return a pointer to the innermost rtx expression in which
837 it is used.
839 If PLOC is non-zero, *PLOC is set to the insn containing the single use.
841 This routine will return usually zero either before flow is called (because
842 there will be no LOG_LINKS notes) or after reload (because the REG_DEAD
843 note can't be trusted).
845 If DEST is cc0_rtx, we look only at the next insn. In that case, we don't
846 care about REG_DEAD notes or LOG_LINKS.
848 Otherwise, we find the single use by finding an insn that has a
849 LOG_LINKS pointing at INSN and has a REG_DEAD note for DEST. If DEST is
850 only referenced once in that insn, we know that it must be the first
851 and last insn referencing DEST. */
853 rtx *
854 find_single_use (dest, insn, ploc)
855 rtx dest;
856 rtx insn;
857 rtx *ploc;
859 rtx next;
860 rtx *result;
861 rtx link;
863 #ifdef HAVE_cc0
864 if (dest == cc0_rtx)
866 next = NEXT_INSN (insn);
867 if (next == 0
868 || (GET_CODE (next) != INSN && GET_CODE (next) != JUMP_INSN))
869 return 0;
871 result = find_single_use_1 (dest, &PATTERN (next));
872 if (result && ploc)
873 *ploc = next;
874 return result;
876 #endif
878 if (reload_completed || reload_in_progress || GET_CODE (dest) != REG)
879 return 0;
881 for (next = next_nonnote_insn (insn);
882 next != 0 && GET_CODE (next) != CODE_LABEL;
883 next = next_nonnote_insn (next))
884 if (INSN_P (next) && dead_or_set_p (next, dest))
886 for (link = LOG_LINKS (next); link; link = XEXP (link, 1))
887 if (XEXP (link, 0) == insn)
888 break;
890 if (link)
892 result = find_single_use_1 (dest, &PATTERN (next));
893 if (ploc)
894 *ploc = next;
895 return result;
899 return 0;
902 /* Return 1 if OP is a valid general operand for machine mode MODE.
903 This is either a register reference, a memory reference,
904 or a constant. In the case of a memory reference, the address
905 is checked for general validity for the target machine.
907 Register and memory references must have mode MODE in order to be valid,
908 but some constants have no machine mode and are valid for any mode.
910 If MODE is VOIDmode, OP is checked for validity for whatever mode
911 it has.
913 The main use of this function is as a predicate in match_operand
914 expressions in the machine description.
916 For an explanation of this function's behavior for registers of
917 class NO_REGS, see the comment for `register_operand'. */
920 general_operand (op, mode)
921 register rtx op;
922 enum machine_mode mode;
924 register enum rtx_code code = GET_CODE (op);
926 if (mode == VOIDmode)
927 mode = GET_MODE (op);
929 /* Don't accept CONST_INT or anything similar
930 if the caller wants something floating. */
931 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
932 && GET_MODE_CLASS (mode) != MODE_INT
933 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
934 return 0;
936 if (GET_CODE (op) == CONST_INT
937 && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
938 return 0;
940 if (CONSTANT_P (op))
941 return ((GET_MODE (op) == VOIDmode || GET_MODE (op) == mode
942 || mode == VOIDmode)
943 #ifdef LEGITIMATE_PIC_OPERAND_P
944 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
945 #endif
946 && LEGITIMATE_CONSTANT_P (op));
948 /* Except for certain constants with VOIDmode, already checked for,
949 OP's mode must match MODE if MODE specifies a mode. */
951 if (GET_MODE (op) != mode)
952 return 0;
954 if (code == SUBREG)
956 #ifdef INSN_SCHEDULING
957 /* On machines that have insn scheduling, we want all memory
958 reference to be explicit, so outlaw paradoxical SUBREGs. */
959 if (GET_CODE (SUBREG_REG (op)) == MEM
960 && GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op))))
961 return 0;
962 #endif
963 /* Avoid memories with nonzero SUBREG_BYTE, as offsetting the memory
964 may result in incorrect reference. We should simplify all valid
965 subregs of MEM anyway. But allow this after reload because we
966 might be called from cleanup_subreg_operands.
968 ??? This is a kludge. */
969 if (!reload_completed && SUBREG_BYTE (op) != 0
970 && GET_CODE (SUBREG_REG (op)) == MEM)
971 return 0;
973 op = SUBREG_REG (op);
974 code = GET_CODE (op);
977 if (code == REG)
978 /* A register whose class is NO_REGS is not a general operand. */
979 return (REGNO (op) >= FIRST_PSEUDO_REGISTER
980 || REGNO_REG_CLASS (REGNO (op)) != NO_REGS);
982 if (code == MEM)
984 register rtx y = XEXP (op, 0);
986 if (! volatile_ok && MEM_VOLATILE_P (op))
987 return 0;
989 if (GET_CODE (y) == ADDRESSOF)
990 return 1;
992 /* Use the mem's mode, since it will be reloaded thus. */
993 mode = GET_MODE (op);
994 GO_IF_LEGITIMATE_ADDRESS (mode, y, win);
997 /* Pretend this is an operand for now; we'll run force_operand
998 on its replacement in fixup_var_refs_1. */
999 if (code == ADDRESSOF)
1000 return 1;
1002 return 0;
1004 win:
1005 return 1;
1008 /* Return 1 if OP is a valid memory address for a memory reference
1009 of mode MODE.
1011 The main use of this function is as a predicate in match_operand
1012 expressions in the machine description. */
1015 address_operand (op, mode)
1016 register rtx op;
1017 enum machine_mode mode;
1019 return memory_address_p (mode, op);
1022 /* Return 1 if OP is a register reference of mode MODE.
1023 If MODE is VOIDmode, accept a register in any mode.
1025 The main use of this function is as a predicate in match_operand
1026 expressions in the machine description.
1028 As a special exception, registers whose class is NO_REGS are
1029 not accepted by `register_operand'. The reason for this change
1030 is to allow the representation of special architecture artifacts
1031 (such as a condition code register) without extending the rtl
1032 definitions. Since registers of class NO_REGS cannot be used
1033 as registers in any case where register classes are examined,
1034 it is most consistent to keep this function from accepting them. */
1037 register_operand (op, mode)
1038 register rtx op;
1039 enum machine_mode mode;
1041 if (GET_MODE (op) != mode && mode != VOIDmode)
1042 return 0;
1044 if (GET_CODE (op) == SUBREG)
1046 /* Before reload, we can allow (SUBREG (MEM...)) as a register operand
1047 because it is guaranteed to be reloaded into one.
1048 Just make sure the MEM is valid in itself.
1049 (Ideally, (SUBREG (MEM)...) should not exist after reload,
1050 but currently it does result from (SUBREG (REG)...) where the
1051 reg went on the stack.) */
1052 if (! reload_completed && GET_CODE (SUBREG_REG (op)) == MEM)
1053 return general_operand (op, mode);
1055 #ifdef CLASS_CANNOT_CHANGE_MODE
1056 if (GET_CODE (SUBREG_REG (op)) == REG
1057 && REGNO (SUBREG_REG (op)) < FIRST_PSEUDO_REGISTER
1058 && (TEST_HARD_REG_BIT
1059 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
1060 REGNO (SUBREG_REG (op))))
1061 && CLASS_CANNOT_CHANGE_MODE_P (mode, GET_MODE (SUBREG_REG (op)))
1062 && GET_MODE_CLASS (GET_MODE (SUBREG_REG (op))) != MODE_COMPLEX_INT
1063 && GET_MODE_CLASS (GET_MODE (SUBREG_REG (op))) != MODE_COMPLEX_FLOAT)
1064 return 0;
1065 #endif
1067 op = SUBREG_REG (op);
1070 /* If we have an ADDRESSOF, consider it valid since it will be
1071 converted into something that will not be a MEM. */
1072 if (GET_CODE (op) == ADDRESSOF)
1073 return 1;
1075 /* We don't consider registers whose class is NO_REGS
1076 to be a register operand. */
1077 return (GET_CODE (op) == REG
1078 && (REGNO (op) >= FIRST_PSEUDO_REGISTER
1079 || REGNO_REG_CLASS (REGNO (op)) != NO_REGS));
1082 /* Return 1 for a register in Pmode; ignore the tested mode. */
1085 pmode_register_operand (op, mode)
1086 rtx op;
1087 enum machine_mode mode ATTRIBUTE_UNUSED;
1089 return register_operand (op, Pmode);
1092 /* Return 1 if OP should match a MATCH_SCRATCH, i.e., if it is a SCRATCH
1093 or a hard register. */
1096 scratch_operand (op, mode)
1097 register rtx op;
1098 enum machine_mode mode;
1100 if (GET_MODE (op) != mode && mode != VOIDmode)
1101 return 0;
1103 return (GET_CODE (op) == SCRATCH
1104 || (GET_CODE (op) == REG
1105 && REGNO (op) < FIRST_PSEUDO_REGISTER));
1108 /* Return 1 if OP is a valid immediate operand for mode MODE.
1110 The main use of this function is as a predicate in match_operand
1111 expressions in the machine description. */
1114 immediate_operand (op, mode)
1115 register rtx op;
1116 enum machine_mode mode;
1118 /* Don't accept CONST_INT or anything similar
1119 if the caller wants something floating. */
1120 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
1121 && GET_MODE_CLASS (mode) != MODE_INT
1122 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
1123 return 0;
1125 if (GET_CODE (op) == CONST_INT
1126 && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
1127 return 0;
1129 /* Accept CONSTANT_P_RTX, since it will be gone by CSE1 and
1130 result in 0/1. It seems a safe assumption that this is
1131 in range for everyone. */
1132 if (GET_CODE (op) == CONSTANT_P_RTX)
1133 return 1;
1135 return (CONSTANT_P (op)
1136 && (GET_MODE (op) == mode || mode == VOIDmode
1137 || GET_MODE (op) == VOIDmode)
1138 #ifdef LEGITIMATE_PIC_OPERAND_P
1139 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1140 #endif
1141 && LEGITIMATE_CONSTANT_P (op));
1144 /* Returns 1 if OP is an operand that is a CONST_INT. */
1147 const_int_operand (op, mode)
1148 register rtx op;
1149 enum machine_mode mode;
1151 if (GET_CODE (op) != CONST_INT)
1152 return 0;
1154 if (mode != VOIDmode
1155 && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
1156 return 0;
1158 return 1;
1161 /* Returns 1 if OP is an operand that is a constant integer or constant
1162 floating-point number. */
1165 const_double_operand (op, mode)
1166 register rtx op;
1167 enum machine_mode mode;
1169 /* Don't accept CONST_INT or anything similar
1170 if the caller wants something floating. */
1171 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
1172 && GET_MODE_CLASS (mode) != MODE_INT
1173 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
1174 return 0;
1176 return ((GET_CODE (op) == CONST_DOUBLE || GET_CODE (op) == CONST_INT)
1177 && (mode == VOIDmode || GET_MODE (op) == mode
1178 || GET_MODE (op) == VOIDmode));
1181 /* Return 1 if OP is a general operand that is not an immediate operand. */
1184 nonimmediate_operand (op, mode)
1185 register rtx op;
1186 enum machine_mode mode;
1188 return (general_operand (op, mode) && ! CONSTANT_P (op));
1191 /* Return 1 if OP is a register reference or immediate value of mode MODE. */
1194 nonmemory_operand (op, mode)
1195 register rtx op;
1196 enum machine_mode mode;
1198 if (CONSTANT_P (op))
1200 /* Don't accept CONST_INT or anything similar
1201 if the caller wants something floating. */
1202 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
1203 && GET_MODE_CLASS (mode) != MODE_INT
1204 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
1205 return 0;
1207 if (GET_CODE (op) == CONST_INT
1208 && trunc_int_for_mode (INTVAL (op), mode) != INTVAL (op))
1209 return 0;
1211 return ((GET_MODE (op) == VOIDmode || GET_MODE (op) == mode
1212 || mode == VOIDmode)
1213 #ifdef LEGITIMATE_PIC_OPERAND_P
1214 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1215 #endif
1216 && LEGITIMATE_CONSTANT_P (op));
1219 if (GET_MODE (op) != mode && mode != VOIDmode)
1220 return 0;
1222 if (GET_CODE (op) == SUBREG)
1224 /* Before reload, we can allow (SUBREG (MEM...)) as a register operand
1225 because it is guaranteed to be reloaded into one.
1226 Just make sure the MEM is valid in itself.
1227 (Ideally, (SUBREG (MEM)...) should not exist after reload,
1228 but currently it does result from (SUBREG (REG)...) where the
1229 reg went on the stack.) */
1230 if (! reload_completed && GET_CODE (SUBREG_REG (op)) == MEM)
1231 return general_operand (op, mode);
1232 op = SUBREG_REG (op);
1235 /* We don't consider registers whose class is NO_REGS
1236 to be a register operand. */
1237 return (GET_CODE (op) == REG
1238 && (REGNO (op) >= FIRST_PSEUDO_REGISTER
1239 || REGNO_REG_CLASS (REGNO (op)) != NO_REGS));
1242 /* Return 1 if OP is a valid operand that stands for pushing a
1243 value of mode MODE onto the stack.
1245 The main use of this function is as a predicate in match_operand
1246 expressions in the machine description. */
1249 push_operand (op, mode)
1250 rtx op;
1251 enum machine_mode mode;
1253 unsigned int rounded_size = GET_MODE_SIZE (mode);
1255 #ifdef PUSH_ROUNDING
1256 rounded_size = PUSH_ROUNDING (rounded_size);
1257 #endif
1259 if (GET_CODE (op) != MEM)
1260 return 0;
1262 if (mode != VOIDmode && GET_MODE (op) != mode)
1263 return 0;
1265 op = XEXP (op, 0);
1267 if (rounded_size == GET_MODE_SIZE (mode))
1269 if (GET_CODE (op) != STACK_PUSH_CODE)
1270 return 0;
1272 else
1274 if (GET_CODE (op) != PRE_MODIFY
1275 || GET_CODE (XEXP (op, 1)) != PLUS
1276 || XEXP (XEXP (op, 1), 0) != XEXP (op, 0)
1277 || GET_CODE (XEXP (XEXP (op, 1), 1)) != CONST_INT
1278 #ifdef STACK_GROWS_DOWNWARD
1279 || INTVAL (XEXP (XEXP (op, 1), 1)) != - (int) rounded_size
1280 #else
1281 || INTVAL (XEXP (XEXP (op, 1), 1)) != rounded_size
1282 #endif
1284 return 0;
1287 return XEXP (op, 0) == stack_pointer_rtx;
1290 /* Return 1 if OP is a valid operand that stands for popping a
1291 value of mode MODE off the stack.
1293 The main use of this function is as a predicate in match_operand
1294 expressions in the machine description. */
1297 pop_operand (op, mode)
1298 rtx op;
1299 enum machine_mode mode;
1301 if (GET_CODE (op) != MEM)
1302 return 0;
1304 if (mode != VOIDmode && GET_MODE (op) != mode)
1305 return 0;
1307 op = XEXP (op, 0);
1309 if (GET_CODE (op) != STACK_POP_CODE)
1310 return 0;
1312 return XEXP (op, 0) == stack_pointer_rtx;
1315 /* Return 1 if ADDR is a valid memory address for mode MODE. */
1318 memory_address_p (mode, addr)
1319 enum machine_mode mode ATTRIBUTE_UNUSED;
1320 register rtx addr;
1322 if (GET_CODE (addr) == ADDRESSOF)
1323 return 1;
1325 GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
1326 return 0;
1328 win:
1329 return 1;
1332 /* Return 1 if OP is a valid memory reference with mode MODE,
1333 including a valid address.
1335 The main use of this function is as a predicate in match_operand
1336 expressions in the machine description. */
1339 memory_operand (op, mode)
1340 register rtx op;
1341 enum machine_mode mode;
1343 rtx inner;
1345 if (! reload_completed)
1346 /* Note that no SUBREG is a memory operand before end of reload pass,
1347 because (SUBREG (MEM...)) forces reloading into a register. */
1348 return GET_CODE (op) == MEM && general_operand (op, mode);
1350 if (mode != VOIDmode && GET_MODE (op) != mode)
1351 return 0;
1353 inner = op;
1354 if (GET_CODE (inner) == SUBREG)
1355 inner = SUBREG_REG (inner);
1357 return (GET_CODE (inner) == MEM && general_operand (op, mode));
1360 /* Return 1 if OP is a valid indirect memory reference with mode MODE;
1361 that is, a memory reference whose address is a general_operand. */
1364 indirect_operand (op, mode)
1365 register rtx op;
1366 enum machine_mode mode;
1368 /* Before reload, a SUBREG isn't in memory (see memory_operand, above). */
1369 if (! reload_completed
1370 && GET_CODE (op) == SUBREG && GET_CODE (SUBREG_REG (op)) == MEM)
1372 register int offset = SUBREG_BYTE (op);
1373 rtx inner = SUBREG_REG (op);
1375 if (mode != VOIDmode && GET_MODE (op) != mode)
1376 return 0;
1378 /* The only way that we can have a general_operand as the resulting
1379 address is if OFFSET is zero and the address already is an operand
1380 or if the address is (plus Y (const_int -OFFSET)) and Y is an
1381 operand. */
1383 return ((offset == 0 && general_operand (XEXP (inner, 0), Pmode))
1384 || (GET_CODE (XEXP (inner, 0)) == PLUS
1385 && GET_CODE (XEXP (XEXP (inner, 0), 1)) == CONST_INT
1386 && INTVAL (XEXP (XEXP (inner, 0), 1)) == -offset
1387 && general_operand (XEXP (XEXP (inner, 0), 0), Pmode)));
1390 return (GET_CODE (op) == MEM
1391 && memory_operand (op, mode)
1392 && general_operand (XEXP (op, 0), Pmode));
1395 /* Return 1 if this is a comparison operator. This allows the use of
1396 MATCH_OPERATOR to recognize all the branch insns. */
1399 comparison_operator (op, mode)
1400 register rtx op;
1401 enum machine_mode mode;
1403 return ((mode == VOIDmode || GET_MODE (op) == mode)
1404 && GET_RTX_CLASS (GET_CODE (op)) == '<');
1407 /* If BODY is an insn body that uses ASM_OPERANDS,
1408 return the number of operands (both input and output) in the insn.
1409 Otherwise return -1. */
1412 asm_noperands (body)
1413 rtx body;
1415 switch (GET_CODE (body))
1417 case ASM_OPERANDS:
1418 /* No output operands: return number of input operands. */
1419 return ASM_OPERANDS_INPUT_LENGTH (body);
1420 case SET:
1421 if (GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1422 /* Single output operand: BODY is (set OUTPUT (asm_operands ...)). */
1423 return ASM_OPERANDS_INPUT_LENGTH (SET_SRC (body)) + 1;
1424 else
1425 return -1;
1426 case PARALLEL:
1427 if (GET_CODE (XVECEXP (body, 0, 0)) == SET
1428 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
1430 /* Multiple output operands, or 1 output plus some clobbers:
1431 body is [(set OUTPUT (asm_operands ...))... (clobber (reg ...))...]. */
1432 int i;
1433 int n_sets;
1435 /* Count backwards through CLOBBERs to determine number of SETs. */
1436 for (i = XVECLEN (body, 0); i > 0; i--)
1438 if (GET_CODE (XVECEXP (body, 0, i - 1)) == SET)
1439 break;
1440 if (GET_CODE (XVECEXP (body, 0, i - 1)) != CLOBBER)
1441 return -1;
1444 /* N_SETS is now number of output operands. */
1445 n_sets = i;
1447 /* Verify that all the SETs we have
1448 came from a single original asm_operands insn
1449 (so that invalid combinations are blocked). */
1450 for (i = 0; i < n_sets; i++)
1452 rtx elt = XVECEXP (body, 0, i);
1453 if (GET_CODE (elt) != SET)
1454 return -1;
1455 if (GET_CODE (SET_SRC (elt)) != ASM_OPERANDS)
1456 return -1;
1457 /* If these ASM_OPERANDS rtx's came from different original insns
1458 then they aren't allowed together. */
1459 if (ASM_OPERANDS_INPUT_VEC (SET_SRC (elt))
1460 != ASM_OPERANDS_INPUT_VEC (SET_SRC (XVECEXP (body, 0, 0))))
1461 return -1;
1463 return (ASM_OPERANDS_INPUT_LENGTH (SET_SRC (XVECEXP (body, 0, 0)))
1464 + n_sets);
1466 else if (GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1468 /* 0 outputs, but some clobbers:
1469 body is [(asm_operands ...) (clobber (reg ...))...]. */
1470 int i;
1472 /* Make sure all the other parallel things really are clobbers. */
1473 for (i = XVECLEN (body, 0) - 1; i > 0; i--)
1474 if (GET_CODE (XVECEXP (body, 0, i)) != CLOBBER)
1475 return -1;
1477 return ASM_OPERANDS_INPUT_LENGTH (XVECEXP (body, 0, 0));
1479 else
1480 return -1;
1481 default:
1482 return -1;
1486 /* Assuming BODY is an insn body that uses ASM_OPERANDS,
1487 copy its operands (both input and output) into the vector OPERANDS,
1488 the locations of the operands within the insn into the vector OPERAND_LOCS,
1489 and the constraints for the operands into CONSTRAINTS.
1490 Write the modes of the operands into MODES.
1491 Return the assembler-template.
1493 If MODES, OPERAND_LOCS, CONSTRAINTS or OPERANDS is 0,
1494 we don't store that info. */
1496 const char *
1497 decode_asm_operands (body, operands, operand_locs, constraints, modes)
1498 rtx body;
1499 rtx *operands;
1500 rtx **operand_locs;
1501 const char **constraints;
1502 enum machine_mode *modes;
1504 register int i;
1505 int noperands;
1506 const char *template = 0;
1508 if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1510 rtx asmop = SET_SRC (body);
1511 /* Single output operand: BODY is (set OUTPUT (asm_operands ....)). */
1513 noperands = ASM_OPERANDS_INPUT_LENGTH (asmop) + 1;
1515 for (i = 1; i < noperands; i++)
1517 if (operand_locs)
1518 operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i - 1);
1519 if (operands)
1520 operands[i] = ASM_OPERANDS_INPUT (asmop, i - 1);
1521 if (constraints)
1522 constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i - 1);
1523 if (modes)
1524 modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i - 1);
1527 /* The output is in the SET.
1528 Its constraint is in the ASM_OPERANDS itself. */
1529 if (operands)
1530 operands[0] = SET_DEST (body);
1531 if (operand_locs)
1532 operand_locs[0] = &SET_DEST (body);
1533 if (constraints)
1534 constraints[0] = ASM_OPERANDS_OUTPUT_CONSTRAINT (asmop);
1535 if (modes)
1536 modes[0] = GET_MODE (SET_DEST (body));
1537 template = ASM_OPERANDS_TEMPLATE (asmop);
1539 else if (GET_CODE (body) == ASM_OPERANDS)
1541 rtx asmop = body;
1542 /* No output operands: BODY is (asm_operands ....). */
1544 noperands = ASM_OPERANDS_INPUT_LENGTH (asmop);
1546 /* The input operands are found in the 1st element vector. */
1547 /* Constraints for inputs are in the 2nd element vector. */
1548 for (i = 0; i < noperands; i++)
1550 if (operand_locs)
1551 operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i);
1552 if (operands)
1553 operands[i] = ASM_OPERANDS_INPUT (asmop, i);
1554 if (constraints)
1555 constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1556 if (modes)
1557 modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1559 template = ASM_OPERANDS_TEMPLATE (asmop);
1561 else if (GET_CODE (body) == PARALLEL
1562 && GET_CODE (XVECEXP (body, 0, 0)) == SET)
1564 rtx asmop = SET_SRC (XVECEXP (body, 0, 0));
1565 int nparallel = XVECLEN (body, 0); /* Includes CLOBBERs. */
1566 int nin = ASM_OPERANDS_INPUT_LENGTH (asmop);
1567 int nout = 0; /* Does not include CLOBBERs. */
1569 /* At least one output, plus some CLOBBERs. */
1571 /* The outputs are in the SETs.
1572 Their constraints are in the ASM_OPERANDS itself. */
1573 for (i = 0; i < nparallel; i++)
1575 if (GET_CODE (XVECEXP (body, 0, i)) == CLOBBER)
1576 break; /* Past last SET */
1578 if (operands)
1579 operands[i] = SET_DEST (XVECEXP (body, 0, i));
1580 if (operand_locs)
1581 operand_locs[i] = &SET_DEST (XVECEXP (body, 0, i));
1582 if (constraints)
1583 constraints[i] = XSTR (SET_SRC (XVECEXP (body, 0, i)), 1);
1584 if (modes)
1585 modes[i] = GET_MODE (SET_DEST (XVECEXP (body, 0, i)));
1586 nout++;
1589 for (i = 0; i < nin; i++)
1591 if (operand_locs)
1592 operand_locs[i + nout] = &ASM_OPERANDS_INPUT (asmop, i);
1593 if (operands)
1594 operands[i + nout] = ASM_OPERANDS_INPUT (asmop, i);
1595 if (constraints)
1596 constraints[i + nout] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1597 if (modes)
1598 modes[i + nout] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1601 template = ASM_OPERANDS_TEMPLATE (asmop);
1603 else if (GET_CODE (body) == PARALLEL
1604 && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1606 /* No outputs, but some CLOBBERs. */
1608 rtx asmop = XVECEXP (body, 0, 0);
1609 int nin = ASM_OPERANDS_INPUT_LENGTH (asmop);
1611 for (i = 0; i < nin; i++)
1613 if (operand_locs)
1614 operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i);
1615 if (operands)
1616 operands[i] = ASM_OPERANDS_INPUT (asmop, i);
1617 if (constraints)
1618 constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1619 if (modes)
1620 modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1623 template = ASM_OPERANDS_TEMPLATE (asmop);
1626 return template;
1629 /* Check if an asm_operand matches it's constraints.
1630 Return > 0 if ok, = 0 if bad, < 0 if inconclusive. */
1633 asm_operand_ok (op, constraint)
1634 rtx op;
1635 const char *constraint;
1637 int result = 0;
1639 /* Use constrain_operands after reload. */
1640 if (reload_completed)
1641 abort ();
1643 while (*constraint)
1645 char c = *constraint++;
1646 switch (c)
1648 case '=':
1649 case '+':
1650 case '*':
1651 case '%':
1652 case '?':
1653 case '!':
1654 case '#':
1655 case '&':
1656 case ',':
1657 break;
1659 case '0': case '1': case '2': case '3': case '4':
1660 case '5': case '6': case '7': case '8': case '9':
1661 /* For best results, our caller should have given us the
1662 proper matching constraint, but we can't actually fail
1663 the check if they didn't. Indicate that results are
1664 inconclusive. */
1665 result = -1;
1666 break;
1668 case 'p':
1669 if (address_operand (op, VOIDmode))
1670 return 1;
1671 break;
1673 case 'm':
1674 case 'V': /* non-offsettable */
1675 if (memory_operand (op, VOIDmode))
1676 return 1;
1677 break;
1679 case 'o': /* offsettable */
1680 if (offsettable_nonstrict_memref_p (op))
1681 return 1;
1682 break;
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.
1690 Match any memory and hope things are resolved after reload. */
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;
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;
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 */
1718 case 'F':
1719 if (GET_CODE (op) == CONST_DOUBLE)
1720 return 1;
1721 break;
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;
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 */
1741 case 'i':
1742 if (CONSTANT_P (op)
1743 #ifdef LEGITIMATE_PIC_OPERAND_P
1744 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
1745 #endif
1747 return 1;
1748 break;
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;
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;
1798 case 'X':
1799 return 1;
1801 case 'g':
1802 if (general_operand (op, VOIDmode))
1803 return 1;
1804 break;
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)
1811 case 'r':
1812 if (GET_MODE (op) == BLKmode)
1813 break;
1814 if (register_operand (op, VOIDmode))
1815 return 1;
1817 #ifdef EXTRA_CONSTRAINT
1818 if (EXTRA_CONSTRAINT (op, c))
1819 return 1;
1820 #endif
1821 break;
1825 return result;
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. */
1832 static rtx *
1833 find_constant_term_loc (p)
1834 rtx *p;
1836 register rtx *tem;
1837 register enum rtx_code code = GET_CODE (*p);
1839 /* If *P IS such a constant term, P is its location. */
1841 if (code == CONST_INT || code == SYMBOL_REF || code == LABEL_REF
1842 || code == CONST)
1843 return p;
1845 /* Otherwise, if not a sum, it has no constant term. */
1847 if (GET_CODE (*p) != PLUS)
1848 return 0;
1850 /* If one of the summands is constant, return its location. */
1852 if (XEXP (*p, 0) && CONSTANT_P (XEXP (*p, 0))
1853 && XEXP (*p, 1) && CONSTANT_P (XEXP (*p, 1)))
1854 return p;
1856 /* Otherwise, check each summand for containing a constant term. */
1858 if (XEXP (*p, 0) != 0)
1860 tem = find_constant_term_loc (&XEXP (*p, 0));
1861 if (tem != 0)
1862 return tem;
1865 if (XEXP (*p, 1) != 0)
1867 tem = find_constant_term_loc (&XEXP (*p, 1));
1868 if (tem != 0)
1869 return tem;
1872 return 0;
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.
1881 We assume that the original address is valid and do not check it.
1883 This uses strict_memory_address_p as a subroutine, so
1884 don't use it before reload. */
1887 offsettable_memref_p (op)
1888 rtx op;
1890 return ((GET_CODE (op) == MEM)
1891 && offsettable_address_p (1, GET_MODE (op), XEXP (op, 0)));
1894 /* Similar, but don't require a strictly valid mem ref:
1895 consider pseudo-regs valid as index or base regs. */
1898 offsettable_nonstrict_memref_p (op)
1899 rtx op;
1901 return ((GET_CODE (op) == MEM)
1902 && offsettable_address_p (0, GET_MODE (op), XEXP (op, 0)));
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.
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.
1912 If STRICTP is nonzero, we require a strictly valid address,
1913 for the sake of use in reload.c. */
1916 offsettable_address_p (strictp, mode, y)
1917 int strictp;
1918 enum machine_mode mode;
1919 register rtx y;
1921 register enum rtx_code ycode = GET_CODE (y);
1922 register 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);
1929 if (CONSTANT_ADDRESS_P (y))
1930 return 1;
1932 /* Adjusting an offsettable address involves changing to a narrower mode.
1933 Make sure that's OK. */
1935 if (mode_dependent_address_p (y))
1936 return 0;
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;
1945 /* If the expression contains a constant term,
1946 see if it remains valid when max possible offset is added. */
1948 if ((ycode == PLUS) && (y2 = find_constant_term_loc (&y1)))
1950 int good;
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);
1958 /* In any case, restore old contents of memory. */
1959 *y2 = y1;
1960 return good;
1963 if (GET_RTX_CLASS (ycode) == 'a')
1964 return 0;
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. */
1971 z = plus_constant_for_output (y, mode_sz - 1);
1973 /* Use QImode because an odd displacement may be automatically invalid
1974 for any wider mode. But it should be valid for a single byte. */
1975 return (*addressp) (QImode, z);
1978 /* Return 1 if ADDR is an address-expression whose effect depends
1979 on the mode of the memory reference it is used in.
1981 Autoincrement addressing is a typical example of mode-dependence
1982 because the amount of the increment depends on the mode. */
1985 mode_dependent_address_p (addr)
1986 rtx addr ATTRIBUTE_UNUSED; /* Maybe used in GO_IF_MODE_DEPENDENT_ADDRESS. */
1988 GO_IF_MODE_DEPENDENT_ADDRESS (addr, win);
1989 return 0;
1990 /* Label `win' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS. */
1991 win: ATTRIBUTE_UNUSED_LABEL
1992 return 1;
1995 /* Return 1 if OP is a general operand
1996 other than a memory ref with a mode dependent address. */
1999 mode_independent_operand (op, mode)
2000 enum machine_mode mode;
2001 rtx op;
2003 rtx addr;
2005 if (! general_operand (op, mode))
2006 return 0;
2008 if (GET_CODE (op) != MEM)
2009 return 1;
2011 addr = XEXP (op, 0);
2012 GO_IF_MODE_DEPENDENT_ADDRESS (addr, lose);
2013 return 1;
2014 /* Label `lose' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS. */
2015 lose: ATTRIBUTE_UNUSED_LABEL
2016 return 0;
2019 /* Given an operand OP that is a valid memory reference which
2020 satisfies offsettable_memref_p, return a new memory reference whose
2021 address has been adjusted by OFFSET. OFFSET should be positive and
2022 less than the size of the object referenced. */
2025 adj_offsettable_operand (op, offset)
2026 rtx op;
2027 int offset;
2029 register enum rtx_code code = GET_CODE (op);
2031 if (code == MEM)
2033 register rtx y = XEXP (op, 0);
2034 register rtx new;
2036 if (CONSTANT_ADDRESS_P (y))
2038 new = gen_rtx_MEM (GET_MODE (op),
2039 plus_constant_for_output (y, offset));
2040 MEM_COPY_ATTRIBUTES (new, op);
2041 return new;
2044 if (GET_CODE (y) == PLUS)
2046 rtx z = y;
2047 register rtx *const_loc;
2049 op = copy_rtx (op);
2050 z = XEXP (op, 0);
2051 const_loc = find_constant_term_loc (&z);
2052 if (const_loc)
2054 *const_loc = plus_constant_for_output (*const_loc, offset);
2055 return op;
2059 new = gen_rtx_MEM (GET_MODE (op), plus_constant_for_output (y, offset));
2060 MEM_COPY_ATTRIBUTES (new, op);
2061 return new;
2063 abort ();
2066 /* Like extract_insn, but save insn extracted and don't extract again, when
2067 called again for the same insn expecting that recog_data still contain the
2068 valid information. This is used primary by gen_attr infrastructure that
2069 often does extract insn again and again. */
2070 void
2071 extract_insn_cached (insn)
2072 rtx insn;
2074 if (recog_data.insn == insn && INSN_CODE (insn) >= 0)
2075 return;
2076 extract_insn (insn);
2077 recog_data.insn = insn;
2079 /* Do cached extract_insn, constrain_operand and complain about failures.
2080 Used by insn_attrtab. */
2081 void
2082 extract_constrain_insn_cached (insn)
2083 rtx insn;
2085 extract_insn_cached (insn);
2086 if (which_alternative == -1
2087 && !constrain_operands (reload_completed))
2088 fatal_insn_not_found (insn);
2090 /* Do cached constrain_operand and complain about failures. */
2092 constrain_operands_cached (strict)
2093 int strict;
2095 if (which_alternative == -1)
2096 return constrain_operands (strict);
2097 else
2098 return 1;
2101 /* Analyze INSN and fill in recog_data. */
2103 void
2104 extract_insn (insn)
2105 rtx insn;
2107 int i;
2108 int icode;
2109 int noperands;
2110 rtx body = PATTERN (insn);
2112 recog_data.insn = NULL;
2113 recog_data.n_operands = 0;
2114 recog_data.n_alternatives = 0;
2115 recog_data.n_dups = 0;
2116 which_alternative = -1;
2118 switch (GET_CODE (body))
2120 case USE:
2121 case CLOBBER:
2122 case ASM_INPUT:
2123 case ADDR_VEC:
2124 case ADDR_DIFF_VEC:
2125 return;
2127 case SET:
2128 if (GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
2129 goto asm_insn;
2130 else
2131 goto normal_insn;
2132 case PARALLEL:
2133 if ((GET_CODE (XVECEXP (body, 0, 0)) == SET
2134 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
2135 || GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
2136 goto asm_insn;
2137 else
2138 goto normal_insn;
2139 case ASM_OPERANDS:
2140 asm_insn:
2141 recog_data.n_operands = noperands = asm_noperands (body);
2142 if (noperands >= 0)
2144 /* This insn is an `asm' with operands. */
2146 /* expand_asm_operands makes sure there aren't too many operands. */
2147 if (noperands > MAX_RECOG_OPERANDS)
2148 abort ();
2150 /* Now get the operand values and constraints out of the insn. */
2151 decode_asm_operands (body, recog_data.operand,
2152 recog_data.operand_loc,
2153 recog_data.constraints,
2154 recog_data.operand_mode);
2155 if (noperands > 0)
2157 const char *p = recog_data.constraints[0];
2158 recog_data.n_alternatives = 1;
2159 while (*p)
2160 recog_data.n_alternatives += (*p++ == ',');
2162 break;
2164 fatal_insn_not_found (insn);
2166 default:
2167 normal_insn:
2168 /* Ordinary insn: recognize it, get the operands via insn_extract
2169 and get the constraints. */
2171 icode = recog_memoized (insn);
2172 if (icode < 0)
2173 fatal_insn_not_found (insn);
2175 recog_data.n_operands = noperands = insn_data[icode].n_operands;
2176 recog_data.n_alternatives = insn_data[icode].n_alternatives;
2177 recog_data.n_dups = insn_data[icode].n_dups;
2179 insn_extract (insn);
2181 for (i = 0; i < noperands; i++)
2183 recog_data.constraints[i] = insn_data[icode].operand[i].constraint;
2184 recog_data.operand_mode[i] = insn_data[icode].operand[i].mode;
2185 /* VOIDmode match_operands gets mode from their real operand. */
2186 if (recog_data.operand_mode[i] == VOIDmode)
2187 recog_data.operand_mode[i] = GET_MODE (recog_data.operand[i]);
2190 for (i = 0; i < noperands; i++)
2191 recog_data.operand_type[i]
2192 = (recog_data.constraints[i][0] == '=' ? OP_OUT
2193 : recog_data.constraints[i][0] == '+' ? OP_INOUT
2194 : OP_IN);
2196 if (recog_data.n_alternatives > MAX_RECOG_ALTERNATIVES)
2197 abort ();
2200 /* After calling extract_insn, you can use this function to extract some
2201 information from the constraint strings into a more usable form.
2202 The collected data is stored in recog_op_alt. */
2203 void
2204 preprocess_constraints ()
2206 int i;
2208 memset (recog_op_alt, 0, sizeof recog_op_alt);
2209 for (i = 0; i < recog_data.n_operands; i++)
2211 int j;
2212 struct operand_alternative *op_alt;
2213 const char *p = recog_data.constraints[i];
2215 op_alt = recog_op_alt[i];
2217 for (j = 0; j < recog_data.n_alternatives; j++)
2219 op_alt[j].class = NO_REGS;
2220 op_alt[j].constraint = p;
2221 op_alt[j].matches = -1;
2222 op_alt[j].matched = -1;
2224 if (*p == '\0' || *p == ',')
2226 op_alt[j].anything_ok = 1;
2227 continue;
2230 for (;;)
2232 char c = *p++;
2233 if (c == '#')
2235 c = *p++;
2236 while (c != ',' && c != '\0');
2237 if (c == ',' || c == '\0')
2238 break;
2240 switch (c)
2242 case '=': case '+': case '*': case '%':
2243 case 'E': case 'F': case 'G': case 'H':
2244 case 's': case 'i': case 'n':
2245 case 'I': case 'J': case 'K': case 'L':
2246 case 'M': case 'N': case 'O': case 'P':
2247 /* These don't say anything we care about. */
2248 break;
2250 case '?':
2251 op_alt[j].reject += 6;
2252 break;
2253 case '!':
2254 op_alt[j].reject += 600;
2255 break;
2256 case '&':
2257 op_alt[j].earlyclobber = 1;
2258 break;
2260 case '0': case '1': case '2': case '3': case '4':
2261 case '5': case '6': case '7': case '8': case '9':
2262 op_alt[j].matches = c - '0';
2263 recog_op_alt[op_alt[j].matches][j].matched = i;
2264 break;
2266 case 'm':
2267 op_alt[j].memory_ok = 1;
2268 break;
2269 case '<':
2270 op_alt[j].decmem_ok = 1;
2271 break;
2272 case '>':
2273 op_alt[j].incmem_ok = 1;
2274 break;
2275 case 'V':
2276 op_alt[j].nonoffmem_ok = 1;
2277 break;
2278 case 'o':
2279 op_alt[j].offmem_ok = 1;
2280 break;
2281 case 'X':
2282 op_alt[j].anything_ok = 1;
2283 break;
2285 case 'p':
2286 op_alt[j].is_address = 1;
2287 op_alt[j].class = reg_class_subunion[(int) op_alt[j].class][(int) BASE_REG_CLASS];
2288 break;
2290 case 'g': case 'r':
2291 op_alt[j].class = reg_class_subunion[(int) op_alt[j].class][(int) GENERAL_REGS];
2292 break;
2294 default:
2295 op_alt[j].class = reg_class_subunion[(int) op_alt[j].class][(int) REG_CLASS_FROM_LETTER ((unsigned char)c)];
2296 break;
2303 /* Check the operands of an insn against the insn's operand constraints
2304 and return 1 if they are valid.
2305 The information about the insn's operands, constraints, operand modes
2306 etc. is obtained from the global variables set up by extract_insn.
2308 WHICH_ALTERNATIVE is set to a number which indicates which
2309 alternative of constraints was matched: 0 for the first alternative,
2310 1 for the next, etc.
2312 In addition, when two operands are match
2313 and it happens that the output operand is (reg) while the
2314 input operand is --(reg) or ++(reg) (a pre-inc or pre-dec),
2315 make the output operand look like the input.
2316 This is because the output operand is the one the template will print.
2318 This is used in final, just before printing the assembler code and by
2319 the routines that determine an insn's attribute.
2321 If STRICT is a positive non-zero value, it means that we have been
2322 called after reload has been completed. In that case, we must
2323 do all checks strictly. If it is zero, it means that we have been called
2324 before reload has completed. In that case, we first try to see if we can
2325 find an alternative that matches strictly. If not, we try again, this
2326 time assuming that reload will fix up the insn. This provides a "best
2327 guess" for the alternative and is used to compute attributes of insns prior
2328 to reload. A negative value of STRICT is used for this internal call. */
2330 struct funny_match
2332 int this, other;
2336 constrain_operands (strict)
2337 int strict;
2339 const char *constraints[MAX_RECOG_OPERANDS];
2340 int matching_operands[MAX_RECOG_OPERANDS];
2341 int earlyclobber[MAX_RECOG_OPERANDS];
2342 register int c;
2344 struct funny_match funny_match[MAX_RECOG_OPERANDS];
2345 int funny_match_index;
2347 which_alternative = 0;
2348 if (recog_data.n_operands == 0 || recog_data.n_alternatives == 0)
2349 return 1;
2351 for (c = 0; c < recog_data.n_operands; c++)
2353 constraints[c] = recog_data.constraints[c];
2354 matching_operands[c] = -1;
2359 register int opno;
2360 int lose = 0;
2361 funny_match_index = 0;
2363 for (opno = 0; opno < recog_data.n_operands; opno++)
2365 register rtx op = recog_data.operand[opno];
2366 enum machine_mode mode = GET_MODE (op);
2367 register const char *p = constraints[opno];
2368 int offset = 0;
2369 int win = 0;
2370 int val;
2372 earlyclobber[opno] = 0;
2374 /* A unary operator may be accepted by the predicate, but it
2375 is irrelevant for matching constraints. */
2376 if (GET_RTX_CLASS (GET_CODE (op)) == '1')
2377 op = XEXP (op, 0);
2379 if (GET_CODE (op) == SUBREG)
2381 if (GET_CODE (SUBREG_REG (op)) == REG
2382 && REGNO (SUBREG_REG (op)) < FIRST_PSEUDO_REGISTER)
2383 offset = subreg_regno_offset (REGNO (SUBREG_REG (op)),
2384 GET_MODE (SUBREG_REG (op)),
2385 SUBREG_BYTE (op),
2386 GET_MODE (op));
2387 op = SUBREG_REG (op);
2390 /* An empty constraint or empty alternative
2391 allows anything which matched the pattern. */
2392 if (*p == 0 || *p == ',')
2393 win = 1;
2395 while (*p && (c = *p++) != ',')
2396 switch (c)
2398 case '?': case '!': case '*': case '%':
2399 case '=': case '+':
2400 break;
2402 case '#':
2403 /* Ignore rest of this alternative as far as
2404 constraint checking is concerned. */
2405 while (*p && *p != ',')
2406 p++;
2407 break;
2409 case '&':
2410 earlyclobber[opno] = 1;
2411 break;
2413 case '0': case '1': case '2': case '3': case '4':
2414 case '5': case '6': case '7': case '8': case '9':
2416 /* This operand must be the same as a previous one.
2417 This kind of constraint is used for instructions such
2418 as add when they take only two operands.
2420 Note that the lower-numbered operand is passed first.
2422 If we are not testing strictly, assume that this constraint
2423 will be satisfied. */
2424 if (strict < 0)
2425 val = 1;
2426 else
2428 rtx op1 = recog_data.operand[c - '0'];
2429 rtx op2 = recog_data.operand[opno];
2431 /* A unary operator may be accepted by the predicate,
2432 but it is irrelevant for matching constraints. */
2433 if (GET_RTX_CLASS (GET_CODE (op1)) == '1')
2434 op1 = XEXP (op1, 0);
2435 if (GET_RTX_CLASS (GET_CODE (op2)) == '1')
2436 op2 = XEXP (op2, 0);
2438 val = operands_match_p (op1, op2);
2441 matching_operands[opno] = c - '0';
2442 matching_operands[c - '0'] = opno;
2444 if (val != 0)
2445 win = 1;
2446 /* If output is *x and input is *--x,
2447 arrange later to change the output to *--x as well,
2448 since the output op is the one that will be printed. */
2449 if (val == 2 && strict > 0)
2451 funny_match[funny_match_index].this = opno;
2452 funny_match[funny_match_index++].other = c - '0';
2454 break;
2456 case 'p':
2457 /* p is used for address_operands. When we are called by
2458 gen_reload, no one will have checked that the address is
2459 strictly valid, i.e., that all pseudos requiring hard regs
2460 have gotten them. */
2461 if (strict <= 0
2462 || (strict_memory_address_p (recog_data.operand_mode[opno],
2463 op)))
2464 win = 1;
2465 break;
2467 /* No need to check general_operand again;
2468 it was done in insn-recog.c. */
2469 case 'g':
2470 /* Anything goes unless it is a REG and really has a hard reg
2471 but the hard reg is not in the class GENERAL_REGS. */
2472 if (strict < 0
2473 || GENERAL_REGS == ALL_REGS
2474 || GET_CODE (op) != REG
2475 || (reload_in_progress
2476 && REGNO (op) >= FIRST_PSEUDO_REGISTER)
2477 || reg_fits_class_p (op, GENERAL_REGS, offset, mode))
2478 win = 1;
2479 break;
2481 case 'X':
2482 /* This is used for a MATCH_SCRATCH in the cases when
2483 we don't actually need anything. So anything goes
2484 any time. */
2485 win = 1;
2486 break;
2488 case 'm':
2489 if (GET_CODE (op) == MEM
2490 /* Before reload, accept what reload can turn into mem. */
2491 || (strict < 0 && CONSTANT_P (op))
2492 /* During reload, accept a pseudo */
2493 || (reload_in_progress && GET_CODE (op) == REG
2494 && REGNO (op) >= FIRST_PSEUDO_REGISTER))
2495 win = 1;
2496 break;
2498 case '<':
2499 if (GET_CODE (op) == MEM
2500 && (GET_CODE (XEXP (op, 0)) == PRE_DEC
2501 || GET_CODE (XEXP (op, 0)) == POST_DEC))
2502 win = 1;
2503 break;
2505 case '>':
2506 if (GET_CODE (op) == MEM
2507 && (GET_CODE (XEXP (op, 0)) == PRE_INC
2508 || GET_CODE (XEXP (op, 0)) == POST_INC))
2509 win = 1;
2510 break;
2512 case 'E':
2513 #ifndef REAL_ARITHMETIC
2514 /* Match any CONST_DOUBLE, but only if
2515 we can examine the bits of it reliably. */
2516 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
2517 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
2518 && GET_MODE (op) != VOIDmode && ! flag_pretend_float)
2519 break;
2520 #endif
2521 if (GET_CODE (op) == CONST_DOUBLE)
2522 win = 1;
2523 break;
2525 case 'F':
2526 if (GET_CODE (op) == CONST_DOUBLE)
2527 win = 1;
2528 break;
2530 case 'G':
2531 case 'H':
2532 if (GET_CODE (op) == CONST_DOUBLE
2533 && CONST_DOUBLE_OK_FOR_LETTER_P (op, c))
2534 win = 1;
2535 break;
2537 case 's':
2538 if (GET_CODE (op) == CONST_INT
2539 || (GET_CODE (op) == CONST_DOUBLE
2540 && GET_MODE (op) == VOIDmode))
2541 break;
2542 case 'i':
2543 if (CONSTANT_P (op))
2544 win = 1;
2545 break;
2547 case 'n':
2548 if (GET_CODE (op) == CONST_INT
2549 || (GET_CODE (op) == CONST_DOUBLE
2550 && GET_MODE (op) == VOIDmode))
2551 win = 1;
2552 break;
2554 case 'I':
2555 case 'J':
2556 case 'K':
2557 case 'L':
2558 case 'M':
2559 case 'N':
2560 case 'O':
2561 case 'P':
2562 if (GET_CODE (op) == CONST_INT
2563 && CONST_OK_FOR_LETTER_P (INTVAL (op), c))
2564 win = 1;
2565 break;
2567 case 'V':
2568 if (GET_CODE (op) == MEM
2569 && ((strict > 0 && ! offsettable_memref_p (op))
2570 || (strict < 0
2571 && !(CONSTANT_P (op) || GET_CODE (op) == MEM))
2572 || (reload_in_progress
2573 && !(GET_CODE (op) == REG
2574 && REGNO (op) >= FIRST_PSEUDO_REGISTER))))
2575 win = 1;
2576 break;
2578 case 'o':
2579 if ((strict > 0 && offsettable_memref_p (op))
2580 || (strict == 0 && offsettable_nonstrict_memref_p (op))
2581 /* Before reload, accept what reload can handle. */
2582 || (strict < 0
2583 && (CONSTANT_P (op) || GET_CODE (op) == MEM))
2584 /* During reload, accept a pseudo */
2585 || (reload_in_progress && GET_CODE (op) == REG
2586 && REGNO (op) >= FIRST_PSEUDO_REGISTER))
2587 win = 1;
2588 break;
2590 default:
2592 enum reg_class class;
2594 class = (c == 'r' ? GENERAL_REGS : REG_CLASS_FROM_LETTER (c));
2595 if (class != NO_REGS)
2597 if (strict < 0
2598 || (strict == 0
2599 && GET_CODE (op) == REG
2600 && REGNO (op) >= FIRST_PSEUDO_REGISTER)
2601 || (strict == 0 && GET_CODE (op) == SCRATCH)
2602 || (GET_CODE (op) == REG
2603 && reg_fits_class_p (op, class, offset, mode)))
2604 win = 1;
2606 #ifdef EXTRA_CONSTRAINT
2607 else if (EXTRA_CONSTRAINT (op, c))
2608 win = 1;
2609 #endif
2610 break;
2614 constraints[opno] = p;
2615 /* If this operand did not win somehow,
2616 this alternative loses. */
2617 if (! win)
2618 lose = 1;
2620 /* This alternative won; the operands are ok.
2621 Change whichever operands this alternative says to change. */
2622 if (! lose)
2624 int opno, eopno;
2626 /* See if any earlyclobber operand conflicts with some other
2627 operand. */
2629 if (strict > 0)
2630 for (eopno = 0; eopno < recog_data.n_operands; eopno++)
2631 /* Ignore earlyclobber operands now in memory,
2632 because we would often report failure when we have
2633 two memory operands, one of which was formerly a REG. */
2634 if (earlyclobber[eopno]
2635 && GET_CODE (recog_data.operand[eopno]) == REG)
2636 for (opno = 0; opno < recog_data.n_operands; opno++)
2637 if ((GET_CODE (recog_data.operand[opno]) == MEM
2638 || recog_data.operand_type[opno] != OP_OUT)
2639 && opno != eopno
2640 /* Ignore things like match_operator operands. */
2641 && *recog_data.constraints[opno] != 0
2642 && ! (matching_operands[opno] == eopno
2643 && operands_match_p (recog_data.operand[opno],
2644 recog_data.operand[eopno]))
2645 && ! safe_from_earlyclobber (recog_data.operand[opno],
2646 recog_data.operand[eopno]))
2647 lose = 1;
2649 if (! lose)
2651 while (--funny_match_index >= 0)
2653 recog_data.operand[funny_match[funny_match_index].other]
2654 = recog_data.operand[funny_match[funny_match_index].this];
2657 return 1;
2661 which_alternative++;
2663 while (which_alternative < recog_data.n_alternatives);
2665 which_alternative = -1;
2666 /* If we are about to reject this, but we are not to test strictly,
2667 try a very loose test. Only return failure if it fails also. */
2668 if (strict == 0)
2669 return constrain_operands (-1);
2670 else
2671 return 0;
2674 /* Return 1 iff OPERAND (assumed to be a REG rtx)
2675 is a hard reg in class CLASS when its regno is offset by OFFSET
2676 and changed to mode MODE.
2677 If REG occupies multiple hard regs, all of them must be in CLASS. */
2680 reg_fits_class_p (operand, class, offset, mode)
2681 rtx operand;
2682 register enum reg_class class;
2683 int offset;
2684 enum machine_mode mode;
2686 register int regno = REGNO (operand);
2687 if (regno < FIRST_PSEUDO_REGISTER
2688 && TEST_HARD_REG_BIT (reg_class_contents[(int) class],
2689 regno + offset))
2691 register int sr;
2692 regno += offset;
2693 for (sr = HARD_REGNO_NREGS (regno, mode) - 1;
2694 sr > 0; sr--)
2695 if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
2696 regno + sr))
2697 break;
2698 return sr == 0;
2701 return 0;
2704 /* Split single instruction. Helper function for split_all_insns.
2705 Return last insn in the sequence if succesfull, or NULL if unsuccesfull. */
2706 static rtx
2707 split_insn (insn)
2708 rtx insn;
2710 rtx set;
2711 if (!INSN_P (insn))
2713 /* Don't split no-op move insns. These should silently
2714 disappear later in final. Splitting such insns would
2715 break the code that handles REG_NO_CONFLICT blocks. */
2717 else if ((set = single_set (insn)) != NULL && set_noop_p (set))
2719 /* Nops get in the way while scheduling, so delete them
2720 now if register allocation has already been done. It
2721 is too risky to try to do this before register
2722 allocation, and there are unlikely to be very many
2723 nops then anyways. */
2724 if (reload_completed)
2726 PUT_CODE (insn, NOTE);
2727 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2728 NOTE_SOURCE_FILE (insn) = 0;
2731 else
2733 /* Split insns here to get max fine-grain parallelism. */
2734 rtx first = PREV_INSN (insn);
2735 rtx last = try_split (PATTERN (insn), insn, 1);
2737 if (last != insn)
2739 /* try_split returns the NOTE that INSN became. */
2740 PUT_CODE (insn, NOTE);
2741 NOTE_SOURCE_FILE (insn) = 0;
2742 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
2744 /* ??? Coddle to md files that generate subregs in post-
2745 reload splitters instead of computing the proper
2746 hard register. */
2747 if (reload_completed && first != last)
2749 first = NEXT_INSN (first);
2750 while (1)
2752 if (INSN_P (first))
2753 cleanup_subreg_operands (first);
2754 if (first == last)
2755 break;
2756 first = NEXT_INSN (first);
2759 return last;
2762 return NULL_RTX;
2764 /* Split all insns in the function. If UPD_LIFE, update life info after. */
2766 void
2767 split_all_insns (upd_life)
2768 int upd_life;
2770 sbitmap blocks;
2771 int changed;
2772 int i;
2774 if (!upd_life)
2776 rtx next, insn;
2778 for (insn = get_insns (); insn ; insn = next)
2780 rtx last;
2782 /* Can't use `next_real_insn' because that might go across
2783 CODE_LABELS and short-out basic blocks. */
2784 next = NEXT_INSN (insn);
2785 last = split_insn (insn);
2787 return;
2790 blocks = sbitmap_alloc (n_basic_blocks);
2791 sbitmap_zero (blocks);
2792 changed = 0;
2794 for (i = n_basic_blocks - 1; i >= 0; --i)
2796 basic_block bb = BASIC_BLOCK (i);
2797 rtx insn, next;
2799 for (insn = bb->head; insn ; insn = next)
2801 rtx last;
2803 /* Can't use `next_real_insn' because that might go across
2804 CODE_LABELS and short-out basic blocks. */
2805 next = NEXT_INSN (insn);
2806 last = split_insn (insn);
2807 if (last)
2809 SET_BIT (blocks, i);
2810 changed = 1;
2811 if (insn == bb->end)
2812 bb->end = last;
2813 insn = last;
2816 if (insn == bb->end)
2817 break;
2820 if (insn == NULL)
2821 abort ();
2824 if (changed && upd_life)
2826 compute_bb_for_insn (get_max_uid ());
2827 count_or_remove_death_notes (blocks, 1);
2828 update_life_info (blocks, UPDATE_LIFE_LOCAL, PROP_DEATH_NOTES);
2831 sbitmap_free (blocks);
2834 #ifdef HAVE_peephole2
2835 struct peep2_insn_data
2837 rtx insn;
2838 regset live_before;
2841 static struct peep2_insn_data peep2_insn_data[MAX_INSNS_PER_PEEP2 + 1];
2842 static int peep2_current;
2844 /* A non-insn marker indicating the last insn of the block.
2845 The live_before regset for this element is correct, indicating
2846 global_live_at_end for the block. */
2847 #define PEEP2_EOB pc_rtx
2849 /* Return the Nth non-note insn after `current', or return NULL_RTX if it
2850 does not exist. Used by the recognizer to find the next insn to match
2851 in a multi-insn pattern. */
2854 peep2_next_insn (n)
2855 int n;
2857 if (n >= MAX_INSNS_PER_PEEP2 + 1)
2858 abort ();
2860 n += peep2_current;
2861 if (n >= MAX_INSNS_PER_PEEP2 + 1)
2862 n -= MAX_INSNS_PER_PEEP2 + 1;
2864 if (peep2_insn_data[n].insn == PEEP2_EOB)
2865 return NULL_RTX;
2866 return peep2_insn_data[n].insn;
2869 /* Return true if REGNO is dead before the Nth non-note insn
2870 after `current'. */
2873 peep2_regno_dead_p (ofs, regno)
2874 int ofs;
2875 int regno;
2877 if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2878 abort ();
2880 ofs += peep2_current;
2881 if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2882 ofs -= MAX_INSNS_PER_PEEP2 + 1;
2884 if (peep2_insn_data[ofs].insn == NULL_RTX)
2885 abort ();
2887 return ! REGNO_REG_SET_P (peep2_insn_data[ofs].live_before, regno);
2890 /* Similarly for a REG. */
2893 peep2_reg_dead_p (ofs, reg)
2894 int ofs;
2895 rtx reg;
2897 int regno, n;
2899 if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2900 abort ();
2902 ofs += peep2_current;
2903 if (ofs >= MAX_INSNS_PER_PEEP2 + 1)
2904 ofs -= MAX_INSNS_PER_PEEP2 + 1;
2906 if (peep2_insn_data[ofs].insn == NULL_RTX)
2907 abort ();
2909 regno = REGNO (reg);
2910 n = HARD_REGNO_NREGS (regno, GET_MODE (reg));
2911 while (--n >= 0)
2912 if (REGNO_REG_SET_P (peep2_insn_data[ofs].live_before, regno + n))
2913 return 0;
2914 return 1;
2917 /* Try to find a hard register of mode MODE, matching the register class in
2918 CLASS_STR, which is available at the beginning of insn CURRENT_INSN and
2919 remains available until the end of LAST_INSN. LAST_INSN may be NULL_RTX,
2920 in which case the only condition is that the register must be available
2921 before CURRENT_INSN.
2922 Registers that already have bits set in REG_SET will not be considered.
2924 If an appropriate register is available, it will be returned and the
2925 corresponding bit(s) in REG_SET will be set; otherwise, NULL_RTX is
2926 returned. */
2929 peep2_find_free_register (from, to, class_str, mode, reg_set)
2930 int from, to;
2931 const char *class_str;
2932 enum machine_mode mode;
2933 HARD_REG_SET *reg_set;
2935 static int search_ofs;
2936 enum reg_class class;
2937 HARD_REG_SET live;
2938 int i;
2940 if (from >= MAX_INSNS_PER_PEEP2 + 1 || to >= MAX_INSNS_PER_PEEP2 + 1)
2941 abort ();
2943 from += peep2_current;
2944 if (from >= MAX_INSNS_PER_PEEP2 + 1)
2945 from -= MAX_INSNS_PER_PEEP2 + 1;
2946 to += peep2_current;
2947 if (to >= MAX_INSNS_PER_PEEP2 + 1)
2948 to -= MAX_INSNS_PER_PEEP2 + 1;
2950 if (peep2_insn_data[from].insn == NULL_RTX)
2951 abort ();
2952 REG_SET_TO_HARD_REG_SET (live, peep2_insn_data[from].live_before);
2954 while (from != to)
2956 HARD_REG_SET this_live;
2958 if (++from >= MAX_INSNS_PER_PEEP2 + 1)
2959 from = 0;
2960 if (peep2_insn_data[from].insn == NULL_RTX)
2961 abort ();
2962 REG_SET_TO_HARD_REG_SET (this_live, peep2_insn_data[from].live_before);
2963 IOR_HARD_REG_SET (live, this_live);
2966 class = (class_str[0] == 'r' ? GENERAL_REGS
2967 : REG_CLASS_FROM_LETTER (class_str[0]));
2969 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2971 int raw_regno, regno, success, j;
2973 /* Distribute the free registers as much as possible. */
2974 raw_regno = search_ofs + i;
2975 if (raw_regno >= FIRST_PSEUDO_REGISTER)
2976 raw_regno -= FIRST_PSEUDO_REGISTER;
2977 #ifdef REG_ALLOC_ORDER
2978 regno = reg_alloc_order[raw_regno];
2979 #else
2980 regno = raw_regno;
2981 #endif
2983 /* Don't allocate fixed registers. */
2984 if (fixed_regs[regno])
2985 continue;
2986 /* Make sure the register is of the right class. */
2987 if (! TEST_HARD_REG_BIT (reg_class_contents[class], regno))
2988 continue;
2989 /* And can support the mode we need. */
2990 if (! HARD_REGNO_MODE_OK (regno, mode))
2991 continue;
2992 /* And that we don't create an extra save/restore. */
2993 if (! call_used_regs[regno] && ! regs_ever_live[regno])
2994 continue;
2995 /* And we don't clobber traceback for noreturn functions. */
2996 if ((regno == FRAME_POINTER_REGNUM || regno == HARD_FRAME_POINTER_REGNUM)
2997 && (! reload_completed || frame_pointer_needed))
2998 continue;
3000 success = 1;
3001 for (j = HARD_REGNO_NREGS (regno, mode) - 1; j >= 0; j--)
3003 if (TEST_HARD_REG_BIT (*reg_set, regno + j)
3004 || TEST_HARD_REG_BIT (live, regno + j))
3006 success = 0;
3007 break;
3010 if (success)
3012 for (j = HARD_REGNO_NREGS (regno, mode) - 1; j >= 0; j--)
3013 SET_HARD_REG_BIT (*reg_set, regno + j);
3015 /* Start the next search with the next register. */
3016 if (++raw_regno >= FIRST_PSEUDO_REGISTER)
3017 raw_regno = 0;
3018 search_ofs = raw_regno;
3020 return gen_rtx_REG (mode, regno);
3024 search_ofs = 0;
3025 return NULL_RTX;
3028 /* Perform the peephole2 optimization pass. */
3030 void
3031 peephole2_optimize (dump_file)
3032 FILE *dump_file ATTRIBUTE_UNUSED;
3034 regset_head rs_heads[MAX_INSNS_PER_PEEP2 + 2];
3035 rtx insn, prev;
3036 regset live;
3037 int i, b;
3038 #ifdef HAVE_conditional_execution
3039 sbitmap blocks;
3040 int changed;
3041 #endif
3043 /* Initialize the regsets we're going to use. */
3044 for (i = 0; i < MAX_INSNS_PER_PEEP2 + 1; ++i)
3045 peep2_insn_data[i].live_before = INITIALIZE_REG_SET (rs_heads[i]);
3046 live = INITIALIZE_REG_SET (rs_heads[i]);
3048 #ifdef HAVE_conditional_execution
3049 blocks = sbitmap_alloc (n_basic_blocks);
3050 sbitmap_zero (blocks);
3051 changed = 0;
3052 #else
3053 count_or_remove_death_notes (NULL, 1);
3054 #endif
3056 for (b = n_basic_blocks - 1; b >= 0; --b)
3058 basic_block bb = BASIC_BLOCK (b);
3059 struct propagate_block_info *pbi;
3061 /* Indicate that all slots except the last holds invalid data. */
3062 for (i = 0; i < MAX_INSNS_PER_PEEP2; ++i)
3063 peep2_insn_data[i].insn = NULL_RTX;
3065 /* Indicate that the last slot contains live_after data. */
3066 peep2_insn_data[MAX_INSNS_PER_PEEP2].insn = PEEP2_EOB;
3067 peep2_current = MAX_INSNS_PER_PEEP2;
3069 /* Start up propagation. */
3070 COPY_REG_SET (live, bb->global_live_at_end);
3071 COPY_REG_SET (peep2_insn_data[MAX_INSNS_PER_PEEP2].live_before, live);
3073 #ifdef HAVE_conditional_execution
3074 pbi = init_propagate_block_info (bb, live, NULL, NULL, 0);
3075 #else
3076 pbi = init_propagate_block_info (bb, live, NULL, NULL, PROP_DEATH_NOTES);
3077 #endif
3079 for (insn = bb->end; ; insn = prev)
3081 prev = PREV_INSN (insn);
3082 if (INSN_P (insn))
3084 rtx try;
3085 int match_len;
3087 /* Record this insn. */
3088 if (--peep2_current < 0)
3089 peep2_current = MAX_INSNS_PER_PEEP2;
3090 peep2_insn_data[peep2_current].insn = insn;
3091 propagate_one_insn (pbi, insn);
3092 COPY_REG_SET (peep2_insn_data[peep2_current].live_before, live);
3094 /* Match the peephole. */
3095 try = peephole2_insns (PATTERN (insn), insn, &match_len);
3096 if (try != NULL)
3098 i = match_len + peep2_current;
3099 if (i >= MAX_INSNS_PER_PEEP2 + 1)
3100 i -= MAX_INSNS_PER_PEEP2 + 1;
3102 /* Replace the old sequence with the new. */
3103 flow_delete_insn_chain (insn, peep2_insn_data[i].insn);
3104 try = emit_insn_after (try, prev);
3106 /* Adjust the basic block boundaries. */
3107 if (peep2_insn_data[i].insn == bb->end)
3108 bb->end = try;
3109 if (insn == bb->head)
3110 bb->head = NEXT_INSN (prev);
3112 #ifdef HAVE_conditional_execution
3113 /* With conditional execution, we cannot back up the
3114 live information so easily, since the conditional
3115 death data structures are not so self-contained.
3116 So record that we've made a modification to this
3117 block and update life information at the end. */
3118 SET_BIT (blocks, b);
3119 changed = 1;
3121 for (i = 0; i < MAX_INSNS_PER_PEEP2 + 1; ++i)
3122 peep2_insn_data[i].insn = NULL_RTX;
3123 peep2_insn_data[peep2_current].insn = PEEP2_EOB;
3124 #else
3125 /* Back up lifetime information past the end of the
3126 newly created sequence. */
3127 if (++i >= MAX_INSNS_PER_PEEP2 + 1)
3128 i = 0;
3129 COPY_REG_SET (live, peep2_insn_data[i].live_before);
3131 /* Update life information for the new sequence. */
3134 if (INSN_P (try))
3136 if (--i < 0)
3137 i = MAX_INSNS_PER_PEEP2;
3138 peep2_insn_data[i].insn = try;
3139 propagate_one_insn (pbi, try);
3140 COPY_REG_SET (peep2_insn_data[i].live_before, live);
3142 try = PREV_INSN (try);
3144 while (try != prev);
3146 /* ??? Should verify that LIVE now matches what we
3147 had before the new sequence. */
3149 peep2_current = i;
3150 #endif
3154 if (insn == bb->head)
3155 break;
3158 free_propagate_block_info (pbi);
3161 for (i = 0; i < MAX_INSNS_PER_PEEP2 + 1; ++i)
3162 FREE_REG_SET (peep2_insn_data[i].live_before);
3163 FREE_REG_SET (live);
3165 #ifdef HAVE_conditional_execution
3166 count_or_remove_death_notes (blocks, 1);
3167 update_life_info (blocks, UPDATE_LIFE_LOCAL, PROP_DEATH_NOTES);
3168 sbitmap_free (blocks);
3169 #endif
3171 #endif /* HAVE_peephole2 */