* Mainline merge as of 2006-02-16 (@111136).
[official-gcc.git] / gcc / config / iq2000 / predicates.md
blob7f797a3cf6016d6e674d45017f0a76dea120be73
1 ;; Predicate definitions for Vitesse IQ2000.
2 ;; Copyright (C) 2005 Free Software Foundation, Inc.
3 ;;
4 ;; This file is part of GCC.
5 ;;
6 ;; GCC is free software; you can redistribute it and/or modify
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 ;; GCC 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 GCC; see the file COPYING.  If not, write to
18 ;; the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 ;; Boston, MA 02110-1301, USA.
21 ;; Return 1 if OP can be used as an operand where a register or 16 bit
22 ;; unsigned integer is needed.
24 (define_predicate "uns_arith_operand"
25   (match_code "reg,const_int,subreg")
27   if (GET_CODE (op) == CONST_INT && SMALL_INT_UNSIGNED (op))
28     return 1;
30   return register_operand (op, mode);
33 ;; Return 1 if OP can be used as an operand where a 16 bit integer is
34 ;; needed.
36 (define_predicate "arith_operand"
37   (match_code "reg,const_int,subreg")
39   if (GET_CODE (op) == CONST_INT && SMALL_INT (op))
40     return 1;
42   return register_operand (op, mode);
45 ;; Return 1 if OP is a integer which fits in 16 bits.
47 (define_predicate "small_int"
48   (match_code "const_int")
50   return (GET_CODE (op) == CONST_INT && SMALL_INT (op));
53 ;; Return 1 if OP is a 32 bit integer which is too big to be loaded
54 ;; with one instruction.
56 (define_predicate "large_int"
57   (match_code "const_int")
59   HOST_WIDE_INT value;
61   if (GET_CODE (op) != CONST_INT)
62     return 0;
64   value = INTVAL (op);
66   /* IOR reg,$r0,value.  */
67   if ((value & ~ ((HOST_WIDE_INT) 0x0000ffff)) == 0)
68     return 0;
70   /* SUBU reg,$r0,value.  */
71   if (((unsigned HOST_WIDE_INT) (value + 32768)) <= 32767)
72     return 0;
74   /* LUI reg,value >> 16.  */
75   if ((value & 0x0000ffff) == 0)
76     return 0;
78   return 1;
81 ;; Return 1 if OP is a register or the constant 0.
83 (define_predicate "reg_or_0_operand"
84   (match_code "reg,const_int,const_double,subreg")
86   switch (GET_CODE (op))
87     {
88     case CONST_INT:
89       return INTVAL (op) == 0;
91     case CONST_DOUBLE:
92       return op == CONST0_RTX (mode);
94     case REG:
95     case SUBREG:
96       return register_operand (op, mode);
98     default:
99       break;
100     }
102   return 0;
105 ;; Return 1 if OP is a memory operand that fits in a single
106 ;; instruction (i.e., register + small offset).
108 (define_predicate "simple_memory_operand"
109   (match_code "mem,subreg")
111   rtx addr, plus0, plus1;
113   /* Eliminate non-memory operations.  */
114   if (GET_CODE (op) != MEM)
115     return 0;
117   /* Dword operations really put out 2 instructions, so eliminate them.  */
118   if (GET_MODE_SIZE (GET_MODE (op)) > (unsigned) UNITS_PER_WORD)
119     return 0;
121   /* Decode the address now.  */
122   addr = XEXP (op, 0);
123   switch (GET_CODE (addr))
124     {
125     case REG:
126     case LO_SUM:
127       return 1;
129     case CONST_INT:
130       return SMALL_INT (addr);
132     case PLUS:
133       plus0 = XEXP (addr, 0);
134       plus1 = XEXP (addr, 1);
135       if (GET_CODE (plus0) == REG
136           && GET_CODE (plus1) == CONST_INT && SMALL_INT (plus1)
137           && SMALL_INT_UNSIGNED (plus1) /* No negative offsets.  */)
138         return 1;
140       else if (GET_CODE (plus1) == REG
141                && GET_CODE (plus0) == CONST_INT && SMALL_INT (plus0)
142                && SMALL_INT_UNSIGNED (plus1) /* No negative offsets.  */)
143         return 1;
145       else
146         return 0;
148     case SYMBOL_REF:
149       return 0;
151     default:
152       break;
153     }
155   return 0;
158 ;; Return nonzero if the code of this rtx pattern is EQ or NE.
160 (define_predicate "equality_op"
161   (match_code "eq,ne")
163   if (mode != GET_MODE (op))
164     return 0;
166   return GET_CODE (op) == EQ || GET_CODE (op) == NE;
169 ;; Return nonzero if the code is a relational operations (EQ, LE,
170 ;; etc).
172 (define_predicate "cmp_op"
173   (match_code "eq,ne,gt,ge,gtu,geu,lt,le,ltu,leu")
175   if (mode != GET_MODE (op))
176     return 0;
178   return COMPARISON_P (op);
181 ;; Return nonzero if the operand is either the PC or a label_ref.
183 (define_special_predicate "pc_or_label_operand"
184   (match_code "pc,label_ref")
186   if (op == pc_rtx)
187     return 1;
189   if (GET_CODE (op) == LABEL_REF)
190     return 1;
192   return 0;
195 ;; Return nonzero if OP is a valid operand for a call instruction.
197 (define_predicate "call_insn_operand"
198   (match_code "const_int,const,symbol_ref,reg")
200   return (CONSTANT_ADDRESS_P (op)
201           || (GET_CODE (op) == REG && op != arg_pointer_rtx
202               && ! (REGNO (op) >= FIRST_PSEUDO_REGISTER
203                     && REGNO (op) <= LAST_VIRTUAL_REGISTER)));
206 ;; Return nonzero if OP is valid as a source operand for a move
207 ;; instruction.
209 (define_predicate "move_operand"
210   (match_code "const_int,const_double,const,symbol_ref,label_ref,subreg,reg,mem")
212   /* Accept any general operand after reload has started; doing so
213      avoids losing if reload does an in-place replacement of a register
214      with a SYMBOL_REF or CONST.  */
215   return (general_operand (op, mode)
216           && (! (iq2000_check_split (op, mode))
217               || reload_in_progress || reload_completed));
220 ;; Return nonzero if OP is a constant power of 2.
222 (define_predicate "power_of_2_operand"
223   (match_code "const_int")
225   int intval;
227   if (GET_CODE (op) != CONST_INT)
228     return 0;
229   else
230     intval = INTVAL (op);
232   return ((intval & ((unsigned)(intval) - 1)) == 0);