Update comment.
[official-gcc.git] / gcc / recog.c
blob4177e072cad60adb1413d648963c511dba242ce6
1 /* Subroutines used by or related to instruction recognition.
2 Copyright (C) 1987, 88, 91, 92, 93, 1994 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 #include "config.h"
22 #include "rtl.h"
23 #include <stdio.h>
24 #include "insn-config.h"
25 #include "insn-attr.h"
26 #include "insn-flags.h"
27 #include "insn-codes.h"
28 #include "recog.h"
29 #include "regs.h"
30 #include "hard-reg-set.h"
31 #include "flags.h"
32 #include "real.h"
34 #ifndef STACK_PUSH_CODE
35 #ifdef STACK_GROWS_DOWNWARD
36 #define STACK_PUSH_CODE PRE_DEC
37 #else
38 #define STACK_PUSH_CODE PRE_INC
39 #endif
40 #endif
42 /* Import from final.c: */
43 extern rtx alter_subreg ();
45 int strict_memory_address_p ();
46 int memory_address_p ();
48 /* Nonzero means allow operands to be volatile.
49 This should be 0 if you are generating rtl, such as if you are calling
50 the functions in optabs.c and expmed.c (most of the time).
51 This should be 1 if all valid insns need to be recognized,
52 such as in regclass.c and final.c and reload.c.
54 init_recog and init_recog_no_volatile are responsible for setting this. */
56 int volatile_ok;
58 /* On return from `constrain_operands', indicate which alternative
59 was satisfied. */
61 int which_alternative;
63 /* Nonzero after end of reload pass.
64 Set to 1 or 0 by toplev.c.
65 Controls the significance of (SUBREG (MEM)). */
67 int reload_completed;
69 /* Initialize data used by the function `recog'.
70 This must be called once in the compilation of a function
71 before any insn recognition may be done in the function. */
73 void
74 init_recog_no_volatile ()
76 volatile_ok = 0;
79 void
80 init_recog ()
82 volatile_ok = 1;
85 /* Try recognizing the instruction INSN,
86 and return the code number that results.
87 Remeber the code so that repeated calls do not
88 need to spend the time for actual rerecognition.
90 This function is the normal interface to instruction recognition.
91 The automatically-generated function `recog' is normally called
92 through this one. (The only exception is in combine.c.) */
94 int
95 recog_memoized (insn)
96 rtx insn;
98 if (INSN_CODE (insn) < 0)
99 INSN_CODE (insn) = recog (PATTERN (insn), insn, NULL_PTR);
100 return INSN_CODE (insn);
103 /* Check that X is an insn-body for an `asm' with operands
104 and that the operands mentioned in it are legitimate. */
107 check_asm_operands (x)
108 rtx x;
110 int noperands = asm_noperands (x);
111 rtx *operands;
112 int i;
114 if (noperands < 0)
115 return 0;
116 if (noperands == 0)
117 return 1;
119 operands = (rtx *) alloca (noperands * sizeof (rtx));
120 decode_asm_operands (x, operands, NULL_PTR, NULL_PTR, NULL_PTR);
122 for (i = 0; i < noperands; i++)
123 if (!general_operand (operands[i], VOIDmode))
124 return 0;
126 return 1;
129 /* Static data for the next two routines.
131 The maximum number of changes supported is defined as the maximum
132 number of operands times 5. This allows for repeated substitutions
133 inside complex indexed address, or, alternatively, changes in up
134 to 5 insns. */
136 #define MAX_CHANGE_LOCS (MAX_RECOG_OPERANDS * 5)
138 static rtx change_objects[MAX_CHANGE_LOCS];
139 static int change_old_codes[MAX_CHANGE_LOCS];
140 static rtx *change_locs[MAX_CHANGE_LOCS];
141 static rtx change_olds[MAX_CHANGE_LOCS];
143 static int num_changes = 0;
145 /* Validate a proposed change to OBJECT. LOC is the location in the rtl for
146 at which NEW will be placed. If OBJECT is zero, no validation is done,
147 the change is simply made.
149 Two types of objects are supported: If OBJECT is a MEM, memory_address_p
150 will be called with the address and mode as parameters. If OBJECT is
151 an INSN, CALL_INSN, or JUMP_INSN, the insn will be re-recognized with
152 the change in place.
154 IN_GROUP is non-zero if this is part of a group of changes that must be
155 performed as a group. In that case, the changes will be stored. The
156 function `apply_change_group' will validate and apply the changes.
158 If IN_GROUP is zero, this is a single change. Try to recognize the insn
159 or validate the memory reference with the change applied. If the result
160 is not valid for the machine, suppress the change and return zero.
161 Otherwise, perform the change and return 1. */
164 validate_change (object, loc, new, in_group)
165 rtx object;
166 rtx *loc;
167 rtx new;
168 int in_group;
170 rtx old = *loc;
172 if (old == new || rtx_equal_p (old, new))
173 return 1;
175 if (num_changes >= MAX_CHANGE_LOCS
176 || (in_group == 0 && num_changes != 0))
177 abort ();
179 *loc = new;
181 /* Save the information describing this change. */
182 change_objects[num_changes] = object;
183 change_locs[num_changes] = loc;
184 change_olds[num_changes] = old;
186 if (object && GET_CODE (object) != MEM)
188 /* Set INSN_CODE to force rerecognition of insn. Save old code in
189 case invalid. */
190 change_old_codes[num_changes] = INSN_CODE (object);
191 INSN_CODE (object) = -1;
194 num_changes++;
196 /* If we are making a group of changes, return 1. Otherwise, validate the
197 change group we made. */
199 if (in_group)
200 return 1;
201 else
202 return apply_change_group ();
205 /* Apply a group of changes previously issued with `validate_change'.
206 Return 1 if all changes are valid, zero otherwise. */
209 apply_change_group ()
211 int i;
213 /* The changes have been applied and all INSN_CODEs have been reset to force
214 rerecognition.
216 The changes are valid if we aren't given an object, or if we are
217 given a MEM and it still is a valid address, or if this is in insn
218 and it is recognized. In the latter case, if reload has completed,
219 we also require that the operands meet the constraints for
220 the insn. We do not allow modifying an ASM_OPERANDS after reload
221 has completed because verifying the constraints is too difficult. */
223 for (i = 0; i < num_changes; i++)
225 rtx object = change_objects[i];
227 if (object == 0)
228 continue;
230 if (GET_CODE (object) == MEM)
232 if (! memory_address_p (GET_MODE (object), XEXP (object, 0)))
233 break;
235 else if ((recog_memoized (object) < 0
236 && (asm_noperands (PATTERN (object)) < 0
237 || ! check_asm_operands (PATTERN (object))
238 || reload_completed))
239 || (reload_completed
240 && (insn_extract (object),
241 ! constrain_operands (INSN_CODE (object), 1))))
243 rtx pat = PATTERN (object);
245 /* Perhaps we couldn't recognize the insn because there were
246 extra CLOBBERs at the end. If so, try to re-recognize
247 without the last CLOBBER (later iterations will cause each of
248 them to be eliminated, in turn). But don't do this if we
249 have an ASM_OPERAND. */
250 if (GET_CODE (pat) == PARALLEL
251 && GET_CODE (XVECEXP (pat, 0, XVECLEN (pat, 0) - 1)) == CLOBBER
252 && asm_noperands (PATTERN (object)) < 0)
254 rtx newpat;
256 if (XVECLEN (pat, 0) == 2)
257 newpat = XVECEXP (pat, 0, 0);
258 else
260 int j;
262 newpat = gen_rtx (PARALLEL, VOIDmode,
263 gen_rtvec (XVECLEN (pat, 0) - 1));
264 for (j = 0; j < XVECLEN (newpat, 0); j++)
265 XVECEXP (newpat, 0, j) = XVECEXP (pat, 0, j);
268 /* Add a new change to this group to replace the pattern
269 with this new pattern. Then consider this change
270 as having succeeded. The change we added will
271 cause the entire call to fail if things remain invalid.
273 Note that this can lose if a later change than the one
274 we are processing specified &XVECEXP (PATTERN (object), 0, X)
275 but this shouldn't occur. */
277 validate_change (object, &PATTERN (object), newpat, 1);
279 else if (GET_CODE (pat) == USE || GET_CODE (pat) == CLOBBER)
280 /* If this insn is a CLOBBER or USE, it is always valid, but is
281 never recognized. */
282 continue;
283 else
284 break;
288 if (i == num_changes)
290 num_changes = 0;
291 return 1;
293 else
295 cancel_changes (0);
296 return 0;
300 /* Return the number of changes so far in the current group. */
303 num_validated_changes ()
305 return num_changes;
308 /* Retract the changes numbered NUM and up. */
310 void
311 cancel_changes (num)
312 int num;
314 int i;
316 /* Back out all the changes. Do this in the opposite order in which
317 they were made. */
318 for (i = num_changes - 1; i >= num; i--)
320 *change_locs[i] = change_olds[i];
321 if (change_objects[i] && GET_CODE (change_objects[i]) != MEM)
322 INSN_CODE (change_objects[i]) = change_old_codes[i];
324 num_changes = num;
327 /* Replace every occurrence of FROM in X with TO. Mark each change with
328 validate_change passing OBJECT. */
330 static void
331 validate_replace_rtx_1 (loc, from, to, object)
332 rtx *loc;
333 rtx from, to, object;
335 register int i, j;
336 register char *fmt;
337 register rtx x = *loc;
338 enum rtx_code code = GET_CODE (x);
340 /* X matches FROM if it is the same rtx or they are both referring to the
341 same register in the same mode. Avoid calling rtx_equal_p unless the
342 operands look similar. */
344 if (x == from
345 || (GET_CODE (x) == REG && GET_CODE (from) == REG
346 && GET_MODE (x) == GET_MODE (from)
347 && REGNO (x) == REGNO (from))
348 || (GET_CODE (x) == GET_CODE (from) && GET_MODE (x) == GET_MODE (from)
349 && rtx_equal_p (x, from)))
351 validate_change (object, loc, to, 1);
352 return;
355 /* For commutative or comparison operations, try replacing each argument
356 separately and seeing if we made any changes. If so, put a constant
357 argument last.*/
358 if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == 'c')
360 int prev_changes = num_changes;
362 validate_replace_rtx_1 (&XEXP (x, 0), from, to, object);
363 validate_replace_rtx_1 (&XEXP (x, 1), from, to, object);
364 if (prev_changes != num_changes && CONSTANT_P (XEXP (x, 0)))
366 validate_change (object, loc,
367 gen_rtx (GET_RTX_CLASS (code) == 'c' ? code
368 : swap_condition (code),
369 GET_MODE (x), XEXP (x, 1), XEXP (x, 0)),
371 x = *loc;
372 code = GET_CODE (x);
376 switch (code)
378 case PLUS:
379 /* If we have have a PLUS whose second operand is now a CONST_INT, use
380 plus_constant to try to simplify it. */
381 if (GET_CODE (XEXP (x, 1)) == CONST_INT && XEXP (x, 1) == to)
382 validate_change (object, loc,
383 plus_constant (XEXP (x, 0), INTVAL (XEXP (x, 1))), 1);
384 return;
386 case ZERO_EXTEND:
387 case SIGN_EXTEND:
388 /* In these cases, the operation to be performed depends on the mode
389 of the operand. If we are replacing the operand with a VOIDmode
390 constant, we lose the information. So try to simplify the operation
391 in that case. If it fails, substitute in something that we know
392 won't be recognized. */
393 if (GET_MODE (to) == VOIDmode
394 && (XEXP (x, 0) == from
395 || (GET_CODE (XEXP (x, 0)) == REG && GET_CODE (from) == REG
396 && GET_MODE (XEXP (x, 0)) == GET_MODE (from)
397 && REGNO (XEXP (x, 0)) == REGNO (from))))
399 rtx new = simplify_unary_operation (code, GET_MODE (x), to,
400 GET_MODE (from));
401 if (new == 0)
402 new = gen_rtx (CLOBBER, GET_MODE (x), const0_rtx);
404 validate_change (object, loc, new, 1);
405 return;
407 break;
409 case SUBREG:
410 /* If we have a SUBREG of a register that we are replacing and we are
411 replacing it with a MEM, make a new MEM and try replacing the
412 SUBREG with it. Don't do this if the MEM has a mode-dependent address
413 or if we would be widening it. */
415 if (SUBREG_REG (x) == from
416 && GET_CODE (from) == REG
417 && GET_CODE (to) == MEM
418 && ! mode_dependent_address_p (XEXP (to, 0))
419 && ! MEM_VOLATILE_P (to)
420 && GET_MODE_SIZE (GET_MODE (x)) <= GET_MODE_SIZE (GET_MODE (to)))
422 int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
423 enum machine_mode mode = GET_MODE (x);
424 rtx new;
426 if (BYTES_BIG_ENDIAN)
427 offset += (MIN (UNITS_PER_WORD,
428 GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
429 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode)));
431 new = gen_rtx (MEM, mode, plus_constant (XEXP (to, 0), offset));
432 MEM_VOLATILE_P (new) = MEM_VOLATILE_P (to);
433 RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (to);
434 MEM_IN_STRUCT_P (new) = MEM_IN_STRUCT_P (to);
435 validate_change (object, loc, new, 1);
436 return;
438 break;
440 case ZERO_EXTRACT:
441 case SIGN_EXTRACT:
442 /* If we are replacing a register with memory, try to change the memory
443 to be the mode required for memory in extract operations (this isn't
444 likely to be an insertion operation; if it was, nothing bad will
445 happen, we might just fail in some cases). */
447 if (XEXP (x, 0) == from && GET_CODE (from) == REG && GET_CODE (to) == MEM
448 && GET_CODE (XEXP (x, 1)) == CONST_INT
449 && GET_CODE (XEXP (x, 2)) == CONST_INT
450 && ! mode_dependent_address_p (XEXP (to, 0))
451 && ! MEM_VOLATILE_P (to))
453 enum machine_mode wanted_mode = VOIDmode;
454 enum machine_mode is_mode = GET_MODE (to);
455 int width = INTVAL (XEXP (x, 1));
456 int pos = INTVAL (XEXP (x, 2));
458 #ifdef HAVE_extzv
459 if (code == ZERO_EXTRACT)
460 wanted_mode = insn_operand_mode[(int) CODE_FOR_extzv][1];
461 #endif
462 #ifdef HAVE_extv
463 if (code == SIGN_EXTRACT)
464 wanted_mode = insn_operand_mode[(int) CODE_FOR_extv][1];
465 #endif
467 /* If we have a narrower mode, we can do something. */
468 if (wanted_mode != VOIDmode
469 && GET_MODE_SIZE (wanted_mode) < GET_MODE_SIZE (is_mode))
471 int offset = pos / BITS_PER_UNIT;
472 rtx newmem;
474 /* If the bytes and bits are counted differently, we
475 must adjust the offset. */
476 if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN)
477 offset = (GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (wanted_mode)
478 - offset);
480 pos %= GET_MODE_BITSIZE (wanted_mode);
482 newmem = gen_rtx (MEM, wanted_mode,
483 plus_constant (XEXP (to, 0), offset));
484 RTX_UNCHANGING_P (newmem) = RTX_UNCHANGING_P (to);
485 MEM_VOLATILE_P (newmem) = MEM_VOLATILE_P (to);
486 MEM_IN_STRUCT_P (newmem) = MEM_IN_STRUCT_P (to);
488 validate_change (object, &XEXP (x, 2), GEN_INT (pos), 1);
489 validate_change (object, &XEXP (x, 0), newmem, 1);
493 break;
496 fmt = GET_RTX_FORMAT (code);
497 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
499 if (fmt[i] == 'e')
500 validate_replace_rtx_1 (&XEXP (x, i), from, to, object);
501 else if (fmt[i] == 'E')
502 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
503 validate_replace_rtx_1 (&XVECEXP (x, i, j), from, to, object);
507 /* Try replacing every occurrence of FROM in INSN with TO. After all
508 changes have been made, validate by seeing if INSN is still valid. */
511 validate_replace_rtx (from, to, insn)
512 rtx from, to, insn;
514 validate_replace_rtx_1 (&PATTERN (insn), from, to, insn);
515 return apply_change_group ();
518 #ifdef HAVE_cc0
519 /* Return 1 if the insn using CC0 set by INSN does not contain
520 any ordered tests applied to the condition codes.
521 EQ and NE tests do not count. */
524 next_insn_tests_no_inequality (insn)
525 rtx insn;
527 register rtx next = next_cc0_user (insn);
529 /* If there is no next insn, we have to take the conservative choice. */
530 if (next == 0)
531 return 0;
533 return ((GET_CODE (next) == JUMP_INSN
534 || GET_CODE (next) == INSN
535 || GET_CODE (next) == CALL_INSN)
536 && ! inequality_comparisons_p (PATTERN (next)));
539 #if 0 /* This is useless since the insn that sets the cc's
540 must be followed immediately by the use of them. */
541 /* Return 1 if the CC value set up by INSN is not used. */
544 next_insns_test_no_inequality (insn)
545 rtx insn;
547 register rtx next = NEXT_INSN (insn);
549 for (; next != 0; next = NEXT_INSN (next))
551 if (GET_CODE (next) == CODE_LABEL
552 || GET_CODE (next) == BARRIER)
553 return 1;
554 if (GET_CODE (next) == NOTE)
555 continue;
556 if (inequality_comparisons_p (PATTERN (next)))
557 return 0;
558 if (sets_cc0_p (PATTERN (next)) == 1)
559 return 1;
560 if (! reg_mentioned_p (cc0_rtx, PATTERN (next)))
561 return 1;
563 return 1;
565 #endif
566 #endif
568 /* This is used by find_single_use to locate an rtx that contains exactly one
569 use of DEST, which is typically either a REG or CC0. It returns a
570 pointer to the innermost rtx expression containing DEST. Appearances of
571 DEST that are being used to totally replace it are not counted. */
573 static rtx *
574 find_single_use_1 (dest, loc)
575 rtx dest;
576 rtx *loc;
578 rtx x = *loc;
579 enum rtx_code code = GET_CODE (x);
580 rtx *result = 0;
581 rtx *this_result;
582 int i;
583 char *fmt;
585 switch (code)
587 case CONST_INT:
588 case CONST:
589 case LABEL_REF:
590 case SYMBOL_REF:
591 case CONST_DOUBLE:
592 case CLOBBER:
593 return 0;
595 case SET:
596 /* If the destination is anything other than CC0, PC, a REG or a SUBREG
597 of a REG that occupies all of the REG, the insn uses DEST if
598 it is mentioned in the destination or the source. Otherwise, we
599 need just check the source. */
600 if (GET_CODE (SET_DEST (x)) != CC0
601 && GET_CODE (SET_DEST (x)) != PC
602 && GET_CODE (SET_DEST (x)) != REG
603 && ! (GET_CODE (SET_DEST (x)) == SUBREG
604 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
605 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
606 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
607 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
608 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
609 break;
611 return find_single_use_1 (dest, &SET_SRC (x));
613 case MEM:
614 case SUBREG:
615 return find_single_use_1 (dest, &XEXP (x, 0));
618 /* If it wasn't one of the common cases above, check each expression and
619 vector of this code. Look for a unique usage of DEST. */
621 fmt = GET_RTX_FORMAT (code);
622 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
624 if (fmt[i] == 'e')
626 if (dest == XEXP (x, i)
627 || (GET_CODE (dest) == REG && GET_CODE (XEXP (x, i)) == REG
628 && REGNO (dest) == REGNO (XEXP (x, i))))
629 this_result = loc;
630 else
631 this_result = find_single_use_1 (dest, &XEXP (x, i));
633 if (result == 0)
634 result = this_result;
635 else if (this_result)
636 /* Duplicate usage. */
637 return 0;
639 else if (fmt[i] == 'E')
641 int j;
643 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
645 if (XVECEXP (x, i, j) == dest
646 || (GET_CODE (dest) == REG
647 && GET_CODE (XVECEXP (x, i, j)) == REG
648 && REGNO (XVECEXP (x, i, j)) == REGNO (dest)))
649 this_result = loc;
650 else
651 this_result = find_single_use_1 (dest, &XVECEXP (x, i, j));
653 if (result == 0)
654 result = this_result;
655 else if (this_result)
656 return 0;
661 return result;
664 /* See if DEST, produced in INSN, is used only a single time in the
665 sequel. If so, return a pointer to the innermost rtx expression in which
666 it is used.
668 If PLOC is non-zero, *PLOC is set to the insn containing the single use.
670 This routine will return usually zero either before flow is called (because
671 there will be no LOG_LINKS notes) or after reload (because the REG_DEAD
672 note can't be trusted).
674 If DEST is cc0_rtx, we look only at the next insn. In that case, we don't
675 care about REG_DEAD notes or LOG_LINKS.
677 Otherwise, we find the single use by finding an insn that has a
678 LOG_LINKS pointing at INSN and has a REG_DEAD note for DEST. If DEST is
679 only referenced once in that insn, we know that it must be the first
680 and last insn referencing DEST. */
682 rtx *
683 find_single_use (dest, insn, ploc)
684 rtx dest;
685 rtx insn;
686 rtx *ploc;
688 rtx next;
689 rtx *result;
690 rtx link;
692 #ifdef HAVE_cc0
693 if (dest == cc0_rtx)
695 next = NEXT_INSN (insn);
696 if (next == 0
697 || (GET_CODE (next) != INSN && GET_CODE (next) != JUMP_INSN))
698 return 0;
700 result = find_single_use_1 (dest, &PATTERN (next));
701 if (result && ploc)
702 *ploc = next;
703 return result;
705 #endif
707 if (reload_completed || reload_in_progress || GET_CODE (dest) != REG)
708 return 0;
710 for (next = next_nonnote_insn (insn);
711 next != 0 && GET_CODE (next) != CODE_LABEL;
712 next = next_nonnote_insn (next))
713 if (GET_RTX_CLASS (GET_CODE (next)) == 'i' && dead_or_set_p (next, dest))
715 for (link = LOG_LINKS (next); link; link = XEXP (link, 1))
716 if (XEXP (link, 0) == insn)
717 break;
719 if (link)
721 result = find_single_use_1 (dest, &PATTERN (next));
722 if (ploc)
723 *ploc = next;
724 return result;
728 return 0;
731 /* Return 1 if OP is a valid general operand for machine mode MODE.
732 This is either a register reference, a memory reference,
733 or a constant. In the case of a memory reference, the address
734 is checked for general validity for the target machine.
736 Register and memory references must have mode MODE in order to be valid,
737 but some constants have no machine mode and are valid for any mode.
739 If MODE is VOIDmode, OP is checked for validity for whatever mode
740 it has.
742 The main use of this function is as a predicate in match_operand
743 expressions in the machine description.
745 For an explanation of this function's behavior for registers of
746 class NO_REGS, see the comment for `register_operand'. */
749 general_operand (op, mode)
750 register rtx op;
751 enum machine_mode mode;
753 register enum rtx_code code = GET_CODE (op);
754 int mode_altering_drug = 0;
756 if (mode == VOIDmode)
757 mode = GET_MODE (op);
759 /* Don't accept CONST_INT or anything similar
760 if the caller wants something floating. */
761 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
762 && GET_MODE_CLASS (mode) != MODE_INT
763 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
764 return 0;
766 if (CONSTANT_P (op))
767 return ((GET_MODE (op) == VOIDmode || GET_MODE (op) == mode)
768 #ifdef LEGITIMATE_PIC_OPERAND_P
769 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
770 #endif
771 && LEGITIMATE_CONSTANT_P (op));
773 /* Except for certain constants with VOIDmode, already checked for,
774 OP's mode must match MODE if MODE specifies a mode. */
776 if (GET_MODE (op) != mode)
777 return 0;
779 if (code == SUBREG)
781 #ifdef INSN_SCHEDULING
782 /* On machines that have insn scheduling, we want all memory
783 reference to be explicit, so outlaw paradoxical SUBREGs. */
784 if (GET_CODE (SUBREG_REG (op)) == MEM
785 && GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op))))
786 return 0;
787 #endif
789 op = SUBREG_REG (op);
790 code = GET_CODE (op);
791 #if 0
792 /* No longer needed, since (SUBREG (MEM...))
793 will load the MEM into a reload reg in the MEM's own mode. */
794 mode_altering_drug = 1;
795 #endif
798 if (code == REG)
799 /* A register whose class is NO_REGS is not a general operand. */
800 return (REGNO (op) >= FIRST_PSEUDO_REGISTER
801 || REGNO_REG_CLASS (REGNO (op)) != NO_REGS);
803 if (code == MEM)
805 register rtx y = XEXP (op, 0);
806 if (! volatile_ok && MEM_VOLATILE_P (op))
807 return 0;
808 /* Use the mem's mode, since it will be reloaded thus. */
809 mode = GET_MODE (op);
810 GO_IF_LEGITIMATE_ADDRESS (mode, y, win);
812 return 0;
814 win:
815 if (mode_altering_drug)
816 return ! mode_dependent_address_p (XEXP (op, 0));
817 return 1;
820 /* Return 1 if OP is a valid memory address for a memory reference
821 of mode MODE.
823 The main use of this function is as a predicate in match_operand
824 expressions in the machine description. */
827 address_operand (op, mode)
828 register rtx op;
829 enum machine_mode mode;
831 return memory_address_p (mode, op);
834 /* Return 1 if OP is a register reference of mode MODE.
835 If MODE is VOIDmode, accept a register in any mode.
837 The main use of this function is as a predicate in match_operand
838 expressions in the machine description.
840 As a special exception, registers whose class is NO_REGS are
841 not accepted by `register_operand'. The reason for this change
842 is to allow the representation of special architecture artifacts
843 (such as a condition code register) without extending the rtl
844 definitions. Since registers of class NO_REGS cannot be used
845 as registers in any case where register classes are examined,
846 it is most consistent to keep this function from accepting them. */
849 register_operand (op, mode)
850 register rtx op;
851 enum machine_mode mode;
853 if (GET_MODE (op) != mode && mode != VOIDmode)
854 return 0;
856 if (GET_CODE (op) == SUBREG)
858 /* Before reload, we can allow (SUBREG (MEM...)) as a register operand
859 because it is guaranteed to be reloaded into one.
860 Just make sure the MEM is valid in itself.
861 (Ideally, (SUBREG (MEM)...) should not exist after reload,
862 but currently it does result from (SUBREG (REG)...) where the
863 reg went on the stack.) */
864 if (! reload_completed && GET_CODE (SUBREG_REG (op)) == MEM)
865 return general_operand (op, mode);
866 op = SUBREG_REG (op);
869 /* We don't consider registers whose class is NO_REGS
870 to be a register operand. */
871 return (GET_CODE (op) == REG
872 && (REGNO (op) >= FIRST_PSEUDO_REGISTER
873 || REGNO_REG_CLASS (REGNO (op)) != NO_REGS));
876 /* Return 1 if OP should match a MATCH_SCRATCH, i.e., if it is a SCRATCH
877 or a hard register. */
880 scratch_operand (op, mode)
881 register rtx op;
882 enum machine_mode mode;
884 return (GET_MODE (op) == mode
885 && (GET_CODE (op) == SCRATCH
886 || (GET_CODE (op) == REG
887 && REGNO (op) < FIRST_PSEUDO_REGISTER)));
890 /* Return 1 if OP is a valid immediate operand for mode MODE.
892 The main use of this function is as a predicate in match_operand
893 expressions in the machine description. */
896 immediate_operand (op, mode)
897 register rtx op;
898 enum machine_mode mode;
900 /* Don't accept CONST_INT or anything similar
901 if the caller wants something floating. */
902 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
903 && GET_MODE_CLASS (mode) != MODE_INT
904 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
905 return 0;
907 return (CONSTANT_P (op)
908 && (GET_MODE (op) == mode || mode == VOIDmode
909 || GET_MODE (op) == VOIDmode)
910 #ifdef LEGITIMATE_PIC_OPERAND_P
911 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
912 #endif
913 && LEGITIMATE_CONSTANT_P (op));
916 /* Returns 1 if OP is an operand that is a CONST_INT. */
919 const_int_operand (op, mode)
920 register rtx op;
921 enum machine_mode mode;
923 return GET_CODE (op) == CONST_INT;
926 /* Returns 1 if OP is an operand that is a constant integer or constant
927 floating-point number. */
930 const_double_operand (op, mode)
931 register rtx op;
932 enum machine_mode mode;
934 /* Don't accept CONST_INT or anything similar
935 if the caller wants something floating. */
936 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
937 && GET_MODE_CLASS (mode) != MODE_INT
938 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
939 return 0;
941 return ((GET_CODE (op) == CONST_DOUBLE || GET_CODE (op) == CONST_INT)
942 && (mode == VOIDmode || GET_MODE (op) == mode
943 || GET_MODE (op) == VOIDmode));
946 /* Return 1 if OP is a general operand that is not an immediate operand. */
949 nonimmediate_operand (op, mode)
950 register rtx op;
951 enum machine_mode mode;
953 return (general_operand (op, mode) && ! CONSTANT_P (op));
956 /* Return 1 if OP is a register reference or immediate value of mode MODE. */
959 nonmemory_operand (op, mode)
960 register rtx op;
961 enum machine_mode mode;
963 if (CONSTANT_P (op))
965 /* Don't accept CONST_INT or anything similar
966 if the caller wants something floating. */
967 if (GET_MODE (op) == VOIDmode && mode != VOIDmode
968 && GET_MODE_CLASS (mode) != MODE_INT
969 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
970 return 0;
972 return ((GET_MODE (op) == VOIDmode || GET_MODE (op) == mode)
973 #ifdef LEGITIMATE_PIC_OPERAND_P
974 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (op))
975 #endif
976 && LEGITIMATE_CONSTANT_P (op));
979 if (GET_MODE (op) != mode && mode != VOIDmode)
980 return 0;
982 if (GET_CODE (op) == SUBREG)
984 /* Before reload, we can allow (SUBREG (MEM...)) as a register operand
985 because it is guaranteed to be reloaded into one.
986 Just make sure the MEM is valid in itself.
987 (Ideally, (SUBREG (MEM)...) should not exist after reload,
988 but currently it does result from (SUBREG (REG)...) where the
989 reg went on the stack.) */
990 if (! reload_completed && GET_CODE (SUBREG_REG (op)) == MEM)
991 return general_operand (op, mode);
992 op = SUBREG_REG (op);
995 /* We don't consider registers whose class is NO_REGS
996 to be a register operand. */
997 return (GET_CODE (op) == REG
998 && (REGNO (op) >= FIRST_PSEUDO_REGISTER
999 || REGNO_REG_CLASS (REGNO (op)) != NO_REGS));
1002 /* Return 1 if OP is a valid operand that stands for pushing a
1003 value of mode MODE onto the stack.
1005 The main use of this function is as a predicate in match_operand
1006 expressions in the machine description. */
1009 push_operand (op, mode)
1010 rtx op;
1011 enum machine_mode mode;
1013 if (GET_CODE (op) != MEM)
1014 return 0;
1016 if (GET_MODE (op) != mode)
1017 return 0;
1019 op = XEXP (op, 0);
1021 if (GET_CODE (op) != STACK_PUSH_CODE)
1022 return 0;
1024 return XEXP (op, 0) == stack_pointer_rtx;
1027 /* Return 1 if ADDR is a valid memory address for mode MODE. */
1030 memory_address_p (mode, addr)
1031 enum machine_mode mode;
1032 register rtx addr;
1034 GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
1035 return 0;
1037 win:
1038 return 1;
1041 /* Return 1 if OP is a valid memory reference with mode MODE,
1042 including a valid address.
1044 The main use of this function is as a predicate in match_operand
1045 expressions in the machine description. */
1048 memory_operand (op, mode)
1049 register rtx op;
1050 enum machine_mode mode;
1052 rtx inner;
1054 if (! reload_completed)
1055 /* Note that no SUBREG is a memory operand before end of reload pass,
1056 because (SUBREG (MEM...)) forces reloading into a register. */
1057 return GET_CODE (op) == MEM && general_operand (op, mode);
1059 if (mode != VOIDmode && GET_MODE (op) != mode)
1060 return 0;
1062 inner = op;
1063 if (GET_CODE (inner) == SUBREG)
1064 inner = SUBREG_REG (inner);
1066 return (GET_CODE (inner) == MEM && general_operand (op, mode));
1069 /* Return 1 if OP is a valid indirect memory reference with mode MODE;
1070 that is, a memory reference whose address is a general_operand. */
1073 indirect_operand (op, mode)
1074 register rtx op;
1075 enum machine_mode mode;
1077 /* Before reload, a SUBREG isn't in memory (see memory_operand, above). */
1078 if (! reload_completed
1079 && GET_CODE (op) == SUBREG && GET_CODE (SUBREG_REG (op)) == MEM)
1081 register int offset = SUBREG_WORD (op) * UNITS_PER_WORD;
1082 rtx inner = SUBREG_REG (op);
1084 if (BYTES_BIG_ENDIAN)
1085 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (op)))
1086 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (inner))));
1088 if (mode != VOIDmode && GET_MODE (op) != mode)
1089 return 0;
1091 /* The only way that we can have a general_operand as the resulting
1092 address is if OFFSET is zero and the address already is an operand
1093 or if the address is (plus Y (const_int -OFFSET)) and Y is an
1094 operand. */
1096 return ((offset == 0 && general_operand (XEXP (inner, 0), Pmode))
1097 || (GET_CODE (XEXP (inner, 0)) == PLUS
1098 && GET_CODE (XEXP (XEXP (inner, 0), 1)) == CONST_INT
1099 && INTVAL (XEXP (XEXP (inner, 0), 1)) == -offset
1100 && general_operand (XEXP (XEXP (inner, 0), 0), Pmode)));
1103 return (GET_CODE (op) == MEM
1104 && memory_operand (op, mode)
1105 && general_operand (XEXP (op, 0), Pmode));
1108 /* Return 1 if this is a comparison operator. This allows the use of
1109 MATCH_OPERATOR to recognize all the branch insns. */
1112 comparison_operator (op, mode)
1113 register rtx op;
1114 enum machine_mode mode;
1116 return ((mode == VOIDmode || GET_MODE (op) == mode)
1117 && GET_RTX_CLASS (GET_CODE (op)) == '<');
1120 /* If BODY is an insn body that uses ASM_OPERANDS,
1121 return the number of operands (both input and output) in the insn.
1122 Otherwise return -1. */
1125 asm_noperands (body)
1126 rtx body;
1128 if (GET_CODE (body) == ASM_OPERANDS)
1129 /* No output operands: return number of input operands. */
1130 return ASM_OPERANDS_INPUT_LENGTH (body);
1131 if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1132 /* Single output operand: BODY is (set OUTPUT (asm_operands ...)). */
1133 return ASM_OPERANDS_INPUT_LENGTH (SET_SRC (body)) + 1;
1134 else if (GET_CODE (body) == PARALLEL
1135 && GET_CODE (XVECEXP (body, 0, 0)) == SET
1136 && GET_CODE (SET_SRC (XVECEXP (body, 0, 0))) == ASM_OPERANDS)
1138 /* Multiple output operands, or 1 output plus some clobbers:
1139 body is [(set OUTPUT (asm_operands ...))... (clobber (reg ...))...]. */
1140 int i;
1141 int n_sets;
1143 /* Count backwards through CLOBBERs to determine number of SETs. */
1144 for (i = XVECLEN (body, 0); i > 0; i--)
1146 if (GET_CODE (XVECEXP (body, 0, i - 1)) == SET)
1147 break;
1148 if (GET_CODE (XVECEXP (body, 0, i - 1)) != CLOBBER)
1149 return -1;
1152 /* N_SETS is now number of output operands. */
1153 n_sets = i;
1155 /* Verify that all the SETs we have
1156 came from a single original asm_operands insn
1157 (so that invalid combinations are blocked). */
1158 for (i = 0; i < n_sets; i++)
1160 rtx elt = XVECEXP (body, 0, i);
1161 if (GET_CODE (elt) != SET)
1162 return -1;
1163 if (GET_CODE (SET_SRC (elt)) != ASM_OPERANDS)
1164 return -1;
1165 /* If these ASM_OPERANDS rtx's came from different original insns
1166 then they aren't allowed together. */
1167 if (ASM_OPERANDS_INPUT_VEC (SET_SRC (elt))
1168 != ASM_OPERANDS_INPUT_VEC (SET_SRC (XVECEXP (body, 0, 0))))
1169 return -1;
1171 return (ASM_OPERANDS_INPUT_LENGTH (SET_SRC (XVECEXP (body, 0, 0)))
1172 + n_sets);
1174 else if (GET_CODE (body) == PARALLEL
1175 && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1177 /* 0 outputs, but some clobbers:
1178 body is [(asm_operands ...) (clobber (reg ...))...]. */
1179 int i;
1181 /* Make sure all the other parallel things really are clobbers. */
1182 for (i = XVECLEN (body, 0) - 1; i > 0; i--)
1183 if (GET_CODE (XVECEXP (body, 0, i)) != CLOBBER)
1184 return -1;
1186 return ASM_OPERANDS_INPUT_LENGTH (XVECEXP (body, 0, 0));
1188 else
1189 return -1;
1192 /* Assuming BODY is an insn body that uses ASM_OPERANDS,
1193 copy its operands (both input and output) into the vector OPERANDS,
1194 the locations of the operands within the insn into the vector OPERAND_LOCS,
1195 and the constraints for the operands into CONSTRAINTS.
1196 Write the modes of the operands into MODES.
1197 Return the assembler-template.
1199 If MODES, OPERAND_LOCS, CONSTRAINTS or OPERANDS is 0,
1200 we don't store that info. */
1202 char *
1203 decode_asm_operands (body, operands, operand_locs, constraints, modes)
1204 rtx body;
1205 rtx *operands;
1206 rtx **operand_locs;
1207 char **constraints;
1208 enum machine_mode *modes;
1210 register int i;
1211 int noperands;
1212 char *template = 0;
1214 if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
1216 rtx asmop = SET_SRC (body);
1217 /* Single output operand: BODY is (set OUTPUT (asm_operands ....)). */
1219 noperands = ASM_OPERANDS_INPUT_LENGTH (asmop) + 1;
1221 for (i = 1; i < noperands; i++)
1223 if (operand_locs)
1224 operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i - 1);
1225 if (operands)
1226 operands[i] = ASM_OPERANDS_INPUT (asmop, i - 1);
1227 if (constraints)
1228 constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i - 1);
1229 if (modes)
1230 modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i - 1);
1233 /* The output is in the SET.
1234 Its constraint is in the ASM_OPERANDS itself. */
1235 if (operands)
1236 operands[0] = SET_DEST (body);
1237 if (operand_locs)
1238 operand_locs[0] = &SET_DEST (body);
1239 if (constraints)
1240 constraints[0] = ASM_OPERANDS_OUTPUT_CONSTRAINT (asmop);
1241 if (modes)
1242 modes[0] = GET_MODE (SET_DEST (body));
1243 template = ASM_OPERANDS_TEMPLATE (asmop);
1245 else if (GET_CODE (body) == ASM_OPERANDS)
1247 rtx asmop = body;
1248 /* No output operands: BODY is (asm_operands ....). */
1250 noperands = ASM_OPERANDS_INPUT_LENGTH (asmop);
1252 /* The input operands are found in the 1st element vector. */
1253 /* Constraints for inputs are in the 2nd element vector. */
1254 for (i = 0; i < noperands; i++)
1256 if (operand_locs)
1257 operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i);
1258 if (operands)
1259 operands[i] = ASM_OPERANDS_INPUT (asmop, i);
1260 if (constraints)
1261 constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1262 if (modes)
1263 modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1265 template = ASM_OPERANDS_TEMPLATE (asmop);
1267 else if (GET_CODE (body) == PARALLEL
1268 && GET_CODE (XVECEXP (body, 0, 0)) == SET)
1270 rtx asmop = SET_SRC (XVECEXP (body, 0, 0));
1271 int nparallel = XVECLEN (body, 0); /* Includes CLOBBERs. */
1272 int nin = ASM_OPERANDS_INPUT_LENGTH (asmop);
1273 int nout = 0; /* Does not include CLOBBERs. */
1275 /* At least one output, plus some CLOBBERs. */
1277 /* The outputs are in the SETs.
1278 Their constraints are in the ASM_OPERANDS itself. */
1279 for (i = 0; i < nparallel; i++)
1281 if (GET_CODE (XVECEXP (body, 0, i)) == CLOBBER)
1282 break; /* Past last SET */
1284 if (operands)
1285 operands[i] = SET_DEST (XVECEXP (body, 0, i));
1286 if (operand_locs)
1287 operand_locs[i] = &SET_DEST (XVECEXP (body, 0, i));
1288 if (constraints)
1289 constraints[i] = XSTR (SET_SRC (XVECEXP (body, 0, i)), 1);
1290 if (modes)
1291 modes[i] = GET_MODE (SET_DEST (XVECEXP (body, 0, i)));
1292 nout++;
1295 for (i = 0; i < nin; i++)
1297 if (operand_locs)
1298 operand_locs[i + nout] = &ASM_OPERANDS_INPUT (asmop, i);
1299 if (operands)
1300 operands[i + nout] = ASM_OPERANDS_INPUT (asmop, i);
1301 if (constraints)
1302 constraints[i + nout] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1303 if (modes)
1304 modes[i + nout] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1307 template = ASM_OPERANDS_TEMPLATE (asmop);
1309 else if (GET_CODE (body) == PARALLEL
1310 && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
1312 /* No outputs, but some CLOBBERs. */
1314 rtx asmop = XVECEXP (body, 0, 0);
1315 int nin = ASM_OPERANDS_INPUT_LENGTH (asmop);
1317 for (i = 0; i < nin; i++)
1319 if (operand_locs)
1320 operand_locs[i] = &ASM_OPERANDS_INPUT (asmop, i);
1321 if (operands)
1322 operands[i] = ASM_OPERANDS_INPUT (asmop, i);
1323 if (constraints)
1324 constraints[i] = ASM_OPERANDS_INPUT_CONSTRAINT (asmop, i);
1325 if (modes)
1326 modes[i] = ASM_OPERANDS_INPUT_MODE (asmop, i);
1329 template = ASM_OPERANDS_TEMPLATE (asmop);
1332 return template;
1335 /* Given an rtx *P, if it is a sum containing an integer constant term,
1336 return the location (type rtx *) of the pointer to that constant term.
1337 Otherwise, return a null pointer. */
1339 static rtx *
1340 find_constant_term_loc (p)
1341 rtx *p;
1343 register rtx *tem;
1344 register enum rtx_code code = GET_CODE (*p);
1346 /* If *P IS such a constant term, P is its location. */
1348 if (code == CONST_INT || code == SYMBOL_REF || code == LABEL_REF
1349 || code == CONST)
1350 return p;
1352 /* Otherwise, if not a sum, it has no constant term. */
1354 if (GET_CODE (*p) != PLUS)
1355 return 0;
1357 /* If one of the summands is constant, return its location. */
1359 if (XEXP (*p, 0) && CONSTANT_P (XEXP (*p, 0))
1360 && XEXP (*p, 1) && CONSTANT_P (XEXP (*p, 1)))
1361 return p;
1363 /* Otherwise, check each summand for containing a constant term. */
1365 if (XEXP (*p, 0) != 0)
1367 tem = find_constant_term_loc (&XEXP (*p, 0));
1368 if (tem != 0)
1369 return tem;
1372 if (XEXP (*p, 1) != 0)
1374 tem = find_constant_term_loc (&XEXP (*p, 1));
1375 if (tem != 0)
1376 return tem;
1379 return 0;
1382 /* Return 1 if OP is a memory reference
1383 whose address contains no side effects
1384 and remains valid after the addition
1385 of a positive integer less than the
1386 size of the object being referenced.
1388 We assume that the original address is valid and do not check it.
1390 This uses strict_memory_address_p as a subroutine, so
1391 don't use it before reload. */
1394 offsettable_memref_p (op)
1395 rtx op;
1397 return ((GET_CODE (op) == MEM)
1398 && offsettable_address_p (1, GET_MODE (op), XEXP (op, 0)));
1401 /* Similar, but don't require a strictly valid mem ref:
1402 consider pseudo-regs valid as index or base regs. */
1405 offsettable_nonstrict_memref_p (op)
1406 rtx op;
1408 return ((GET_CODE (op) == MEM)
1409 && offsettable_address_p (0, GET_MODE (op), XEXP (op, 0)));
1412 /* Return 1 if Y is a memory address which contains no side effects
1413 and would remain valid after the addition of a positive integer
1414 less than the size of that mode.
1416 We assume that the original address is valid and do not check it.
1417 We do check that it is valid for narrower modes.
1419 If STRICTP is nonzero, we require a strictly valid address,
1420 for the sake of use in reload.c. */
1423 offsettable_address_p (strictp, mode, y)
1424 int strictp;
1425 enum machine_mode mode;
1426 register rtx y;
1428 register enum rtx_code ycode = GET_CODE (y);
1429 register rtx z;
1430 rtx y1 = y;
1431 rtx *y2;
1432 int (*addressp) () = (strictp ? strict_memory_address_p : memory_address_p);
1434 if (CONSTANT_ADDRESS_P (y))
1435 return 1;
1437 /* Adjusting an offsettable address involves changing to a narrower mode.
1438 Make sure that's OK. */
1440 if (mode_dependent_address_p (y))
1441 return 0;
1443 /* If the expression contains a constant term,
1444 see if it remains valid when max possible offset is added. */
1446 if ((ycode == PLUS) && (y2 = find_constant_term_loc (&y1)))
1448 int good;
1450 y1 = *y2;
1451 *y2 = plus_constant (*y2, GET_MODE_SIZE (mode) - 1);
1452 /* Use QImode because an odd displacement may be automatically invalid
1453 for any wider mode. But it should be valid for a single byte. */
1454 good = (*addressp) (QImode, y);
1456 /* In any case, restore old contents of memory. */
1457 *y2 = y1;
1458 return good;
1461 if (ycode == PRE_DEC || ycode == PRE_INC
1462 || ycode == POST_DEC || ycode == POST_INC)
1463 return 0;
1465 /* The offset added here is chosen as the maximum offset that
1466 any instruction could need to add when operating on something
1467 of the specified mode. We assume that if Y and Y+c are
1468 valid addresses then so is Y+d for all 0<d<c. */
1470 z = plus_constant_for_output (y, GET_MODE_SIZE (mode) - 1);
1472 /* Use QImode because an odd displacement may be automatically invalid
1473 for any wider mode. But it should be valid for a single byte. */
1474 return (*addressp) (QImode, z);
1477 /* Return 1 if ADDR is an address-expression whose effect depends
1478 on the mode of the memory reference it is used in.
1480 Autoincrement addressing is a typical example of mode-dependence
1481 because the amount of the increment depends on the mode. */
1484 mode_dependent_address_p (addr)
1485 rtx addr;
1487 GO_IF_MODE_DEPENDENT_ADDRESS (addr, win);
1488 return 0;
1489 win:
1490 return 1;
1493 /* Return 1 if OP is a general operand
1494 other than a memory ref with a mode dependent address. */
1497 mode_independent_operand (op, mode)
1498 enum machine_mode mode;
1499 rtx op;
1501 rtx addr;
1503 if (! general_operand (op, mode))
1504 return 0;
1506 if (GET_CODE (op) != MEM)
1507 return 1;
1509 addr = XEXP (op, 0);
1510 GO_IF_MODE_DEPENDENT_ADDRESS (addr, lose);
1511 return 1;
1512 lose:
1513 return 0;
1516 /* Given an operand OP that is a valid memory reference
1517 which satisfies offsettable_memref_p,
1518 return a new memory reference whose address has been adjusted by OFFSET.
1519 OFFSET should be positive and less than the size of the object referenced.
1523 adj_offsettable_operand (op, offset)
1524 rtx op;
1525 int offset;
1527 register enum rtx_code code = GET_CODE (op);
1529 if (code == MEM)
1531 register rtx y = XEXP (op, 0);
1532 register rtx new;
1534 if (CONSTANT_ADDRESS_P (y))
1536 new = gen_rtx (MEM, GET_MODE (op), plus_constant_for_output (y, offset));
1537 RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (op);
1538 return new;
1541 if (GET_CODE (y) == PLUS)
1543 rtx z = y;
1544 register rtx *const_loc;
1546 op = copy_rtx (op);
1547 z = XEXP (op, 0);
1548 const_loc = find_constant_term_loc (&z);
1549 if (const_loc)
1551 *const_loc = plus_constant_for_output (*const_loc, offset);
1552 return op;
1556 new = gen_rtx (MEM, GET_MODE (op), plus_constant_for_output (y, offset));
1557 RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (op);
1558 return new;
1560 abort ();
1563 #ifdef REGISTER_CONSTRAINTS
1565 /* Check the operands of an insn (found in recog_operands)
1566 against the insn's operand constraints (found via INSN_CODE_NUM)
1567 and return 1 if they are valid.
1569 WHICH_ALTERNATIVE is set to a number which indicates which
1570 alternative of constraints was matched: 0 for the first alternative,
1571 1 for the next, etc.
1573 In addition, when two operands are match
1574 and it happens that the output operand is (reg) while the
1575 input operand is --(reg) or ++(reg) (a pre-inc or pre-dec),
1576 make the output operand look like the input.
1577 This is because the output operand is the one the template will print.
1579 This is used in final, just before printing the assembler code and by
1580 the routines that determine an insn's attribute.
1582 If STRICT is a positive non-zero value, it means that we have been
1583 called after reload has been completed. In that case, we must
1584 do all checks strictly. If it is zero, it means that we have been called
1585 before reload has completed. In that case, we first try to see if we can
1586 find an alternative that matches strictly. If not, we try again, this
1587 time assuming that reload will fix up the insn. This provides a "best
1588 guess" for the alternative and is used to compute attributes of insns prior
1589 to reload. A negative value of STRICT is used for this internal call. */
1591 struct funny_match
1593 int this, other;
1597 constrain_operands (insn_code_num, strict)
1598 int insn_code_num;
1599 int strict;
1601 char *constraints[MAX_RECOG_OPERANDS];
1602 int matching_operands[MAX_RECOG_OPERANDS];
1603 enum op_type {OP_IN, OP_OUT, OP_INOUT} op_types[MAX_RECOG_OPERANDS];
1604 int earlyclobber[MAX_RECOG_OPERANDS];
1605 register int c;
1606 int noperands = insn_n_operands[insn_code_num];
1608 struct funny_match funny_match[MAX_RECOG_OPERANDS];
1609 int funny_match_index;
1610 int nalternatives = insn_n_alternatives[insn_code_num];
1612 if (noperands == 0 || nalternatives == 0)
1613 return 1;
1615 for (c = 0; c < noperands; c++)
1617 constraints[c] = insn_operand_constraint[insn_code_num][c];
1618 matching_operands[c] = -1;
1619 op_types[c] = OP_IN;
1622 which_alternative = 0;
1624 while (which_alternative < nalternatives)
1626 register int opno;
1627 int lose = 0;
1628 funny_match_index = 0;
1630 for (opno = 0; opno < noperands; opno++)
1632 register rtx op = recog_operand[opno];
1633 enum machine_mode mode = GET_MODE (op);
1634 register char *p = constraints[opno];
1635 int offset = 0;
1636 int win = 0;
1637 int val;
1639 earlyclobber[opno] = 0;
1641 if (GET_CODE (op) == SUBREG)
1643 if (GET_CODE (SUBREG_REG (op)) == REG
1644 && REGNO (SUBREG_REG (op)) < FIRST_PSEUDO_REGISTER)
1645 offset = SUBREG_WORD (op);
1646 op = SUBREG_REG (op);
1649 /* An empty constraint or empty alternative
1650 allows anything which matched the pattern. */
1651 if (*p == 0 || *p == ',')
1652 win = 1;
1654 while (*p && (c = *p++) != ',')
1655 switch (c)
1657 case '?':
1658 case '!':
1659 case '*':
1660 case '%':
1661 break;
1663 case '#':
1664 /* Ignore rest of this alternative as far as
1665 constraint checking is concerned. */
1666 while (*p && *p != ',')
1667 p++;
1668 break;
1670 case '=':
1671 op_types[opno] = OP_OUT;
1672 break;
1674 case '+':
1675 op_types[opno] = OP_INOUT;
1676 break;
1678 case '&':
1679 earlyclobber[opno] = 1;
1680 break;
1682 case '0':
1683 case '1':
1684 case '2':
1685 case '3':
1686 case '4':
1687 /* This operand must be the same as a previous one.
1688 This kind of constraint is used for instructions such
1689 as add when they take only two operands.
1691 Note that the lower-numbered operand is passed first.
1693 If we are not testing strictly, assume that this constraint
1694 will be satisfied. */
1695 if (strict < 0)
1696 val = 1;
1697 else
1698 val = operands_match_p (recog_operand[c - '0'],
1699 recog_operand[opno]);
1701 matching_operands[opno] = c - '0';
1702 matching_operands[c - '0'] = opno;
1704 if (val != 0)
1705 win = 1;
1706 /* If output is *x and input is *--x,
1707 arrange later to change the output to *--x as well,
1708 since the output op is the one that will be printed. */
1709 if (val == 2 && strict > 0)
1711 funny_match[funny_match_index].this = opno;
1712 funny_match[funny_match_index++].other = c - '0';
1714 break;
1716 case 'p':
1717 /* p is used for address_operands. When we are called by
1718 gen_reload, no one will have checked that the address is
1719 strictly valid, i.e., that all pseudos requiring hard regs
1720 have gotten them. */
1721 if (strict <= 0
1722 || (strict_memory_address_p
1723 (insn_operand_mode[insn_code_num][opno], op)))
1724 win = 1;
1725 break;
1727 /* No need to check general_operand again;
1728 it was done in insn-recog.c. */
1729 case 'g':
1730 /* Anything goes unless it is a REG and really has a hard reg
1731 but the hard reg is not in the class GENERAL_REGS. */
1732 if (strict < 0
1733 || GENERAL_REGS == ALL_REGS
1734 || GET_CODE (op) != REG
1735 || (reload_in_progress
1736 && REGNO (op) >= FIRST_PSEUDO_REGISTER)
1737 || reg_fits_class_p (op, GENERAL_REGS, offset, mode))
1738 win = 1;
1739 break;
1741 case 'r':
1742 if (strict < 0
1743 || (strict == 0
1744 && GET_CODE (op) == REG
1745 && REGNO (op) >= FIRST_PSEUDO_REGISTER)
1746 || (strict == 0 && GET_CODE (op) == SCRATCH)
1747 || (GET_CODE (op) == REG
1748 && ((GENERAL_REGS == ALL_REGS
1749 && REGNO (op) < FIRST_PSEUDO_REGISTER)
1750 || reg_fits_class_p (op, GENERAL_REGS,
1751 offset, mode))))
1752 win = 1;
1753 break;
1755 case 'X':
1756 /* This is used for a MATCH_SCRATCH in the cases when we
1757 don't actually need anything. So anything goes any time. */
1758 win = 1;
1759 break;
1761 case 'm':
1762 if (GET_CODE (op) == MEM
1763 /* Before reload, accept what reload can turn into mem. */
1764 || (strict < 0 && CONSTANT_P (op))
1765 /* During reload, accept a pseudo */
1766 || (reload_in_progress && GET_CODE (op) == REG
1767 && REGNO (op) >= FIRST_PSEUDO_REGISTER))
1768 win = 1;
1769 break;
1771 case '<':
1772 if (GET_CODE (op) == MEM
1773 && (GET_CODE (XEXP (op, 0)) == PRE_DEC
1774 || GET_CODE (XEXP (op, 0)) == POST_DEC))
1775 win = 1;
1776 break;
1778 case '>':
1779 if (GET_CODE (op) == MEM
1780 && (GET_CODE (XEXP (op, 0)) == PRE_INC
1781 || GET_CODE (XEXP (op, 0)) == POST_INC))
1782 win = 1;
1783 break;
1785 case 'E':
1786 /* Match any CONST_DOUBLE, but only if
1787 we can examine the bits of it reliably. */
1788 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
1789 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
1790 && GET_MODE (op) != VOIDmode && ! flag_pretend_float)
1791 break;
1792 if (GET_CODE (op) == CONST_DOUBLE)
1793 win = 1;
1794 break;
1796 case 'F':
1797 if (GET_CODE (op) == CONST_DOUBLE)
1798 win = 1;
1799 break;
1801 case 'G':
1802 case 'H':
1803 if (GET_CODE (op) == CONST_DOUBLE
1804 && CONST_DOUBLE_OK_FOR_LETTER_P (op, c))
1805 win = 1;
1806 break;
1808 case 's':
1809 if (GET_CODE (op) == CONST_INT
1810 || (GET_CODE (op) == CONST_DOUBLE
1811 && GET_MODE (op) == VOIDmode))
1812 break;
1813 case 'i':
1814 if (CONSTANT_P (op))
1815 win = 1;
1816 break;
1818 case 'n':
1819 if (GET_CODE (op) == CONST_INT
1820 || (GET_CODE (op) == CONST_DOUBLE
1821 && GET_MODE (op) == VOIDmode))
1822 win = 1;
1823 break;
1825 case 'I':
1826 case 'J':
1827 case 'K':
1828 case 'L':
1829 case 'M':
1830 case 'N':
1831 case 'O':
1832 case 'P':
1833 if (GET_CODE (op) == CONST_INT
1834 && CONST_OK_FOR_LETTER_P (INTVAL (op), c))
1835 win = 1;
1836 break;
1838 #ifdef EXTRA_CONSTRAINT
1839 case 'Q':
1840 case 'R':
1841 case 'S':
1842 case 'T':
1843 case 'U':
1844 if (EXTRA_CONSTRAINT (op, c))
1845 win = 1;
1846 break;
1847 #endif
1849 case 'V':
1850 if (GET_CODE (op) == MEM
1851 && ! offsettable_memref_p (op))
1852 win = 1;
1853 break;
1855 case 'o':
1856 if ((strict > 0 && offsettable_memref_p (op))
1857 || (strict == 0 && offsettable_nonstrict_memref_p (op))
1858 /* Before reload, accept what reload can handle. */
1859 || (strict < 0
1860 && (CONSTANT_P (op) || GET_CODE (op) == MEM))
1861 /* During reload, accept a pseudo */
1862 || (reload_in_progress && GET_CODE (op) == REG
1863 && REGNO (op) >= FIRST_PSEUDO_REGISTER))
1864 win = 1;
1865 break;
1867 default:
1868 if (strict < 0
1869 || (strict == 0
1870 && GET_CODE (op) == REG
1871 && REGNO (op) >= FIRST_PSEUDO_REGISTER)
1872 || (strict == 0 && GET_CODE (op) == SCRATCH)
1873 || (GET_CODE (op) == REG
1874 && reg_fits_class_p (op, REG_CLASS_FROM_LETTER (c),
1875 offset, mode)))
1876 win = 1;
1879 constraints[opno] = p;
1880 /* If this operand did not win somehow,
1881 this alternative loses. */
1882 if (! win)
1883 lose = 1;
1885 /* This alternative won; the operands are ok.
1886 Change whichever operands this alternative says to change. */
1887 if (! lose)
1889 int opno, eopno;
1891 /* See if any earlyclobber operand conflicts with some other
1892 operand. */
1894 if (strict > 0)
1895 for (eopno = 0; eopno < noperands; eopno++)
1896 /* Ignore earlyclobber operands now in memory,
1897 because we would often report failure when we have
1898 two memory operands, one of which was formerly a REG. */
1899 if (earlyclobber[eopno]
1900 && GET_CODE (recog_operand[eopno]) == REG)
1901 for (opno = 0; opno < noperands; opno++)
1902 if ((GET_CODE (recog_operand[opno]) == MEM
1903 || op_types[opno] != OP_OUT)
1904 && opno != eopno
1905 /* Ignore things like match_operator operands. */
1906 && *constraints[opno] != 0
1907 && ! (matching_operands[opno] == eopno
1908 && rtx_equal_p (recog_operand[opno],
1909 recog_operand[eopno]))
1910 && ! safe_from_earlyclobber (recog_operand[opno],
1911 recog_operand[eopno]))
1912 lose = 1;
1914 if (! lose)
1916 while (--funny_match_index >= 0)
1918 recog_operand[funny_match[funny_match_index].other]
1919 = recog_operand[funny_match[funny_match_index].this];
1922 return 1;
1926 which_alternative++;
1929 /* If we are about to reject this, but we are not to test strictly,
1930 try a very loose test. Only return failure if it fails also. */
1931 if (strict == 0)
1932 return constrain_operands (insn_code_num, -1);
1933 else
1934 return 0;
1937 /* Return 1 iff OPERAND (assumed to be a REG rtx)
1938 is a hard reg in class CLASS when its regno is offsetted by OFFSET
1939 and changed to mode MODE.
1940 If REG occupies multiple hard regs, all of them must be in CLASS. */
1943 reg_fits_class_p (operand, class, offset, mode)
1944 rtx operand;
1945 register enum reg_class class;
1946 int offset;
1947 enum machine_mode mode;
1949 register int regno = REGNO (operand);
1950 if (regno < FIRST_PSEUDO_REGISTER
1951 && TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1952 regno + offset))
1954 register int sr;
1955 regno += offset;
1956 for (sr = HARD_REGNO_NREGS (regno, mode) - 1;
1957 sr > 0; sr--)
1958 if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1959 regno + sr))
1960 break;
1961 return sr == 0;
1964 return 0;
1967 #endif /* REGISTER_CONSTRAINTS */