1 ;; Predicate definitions for Vitesse IQ2000.
2 ;; Copyright (C) 2005-2014 Free Software Foundation, Inc.
4 ;; This file is part of GCC.
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 3, or (at your option)
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 COPYING3. If not see
18 ;; <http://www.gnu.org/licenses/>.
20 ;; Return 1 if OP can be used as an operand where a register or 16-bit
21 ;; unsigned integer is needed.
23 (define_predicate "uns_arith_operand"
24 (match_code "reg,const_int,subreg")
26 if (GET_CODE (op) == CONST_INT && SMALL_INT_UNSIGNED (op))
29 return register_operand (op, mode);
32 ;; Return 1 if OP can be used as an operand where a 16-bit integer is
35 (define_predicate "arith_operand"
36 (match_code "reg,const_int,subreg")
38 if (GET_CODE (op) == CONST_INT && SMALL_INT (op))
41 return register_operand (op, mode);
44 ;; Return 1 if OP is a register or a constant. gen_int_relational
45 ;; takes care of forcing out-of-range constants into a register.
47 (define_predicate "reg_or_const_operand"
48 (ior (match_code "const_int")
49 (and (match_code "reg,subreg")
50 (match_operand 0 "register_operand"))))
52 ;; Return 1 if OP is a integer which fits in 16 bits.
54 (define_predicate "small_int"
55 (match_code "const_int")
57 return (GET_CODE (op) == CONST_INT && SMALL_INT (op));
60 ;; Return 1 if OP is a 32-bit integer which is too big to be loaded
61 ;; with one instruction.
63 (define_predicate "large_int"
64 (match_code "const_int")
68 if (GET_CODE (op) != CONST_INT)
73 /* IOR reg,$r0,value. */
74 if ((value & ~ ((HOST_WIDE_INT) 0x0000ffff)) == 0)
77 /* SUBU reg,$r0,value. */
78 if (((unsigned HOST_WIDE_INT) (value + 32768)) <= 32767)
81 /* LUI reg,value >> 16. */
82 if ((value & 0x0000ffff) == 0)
88 ;; Return 1 if OP is a register or the constant 0.
90 (define_predicate "reg_or_0_operand"
91 (match_code "reg,const_int,const_double,subreg")
93 switch (GET_CODE (op))
96 return INTVAL (op) == 0;
99 return op == CONST0_RTX (mode);
103 return register_operand (op, mode);
112 ;; Return 1 if OP is a memory operand that fits in a single
113 ;; instruction (i.e., register + small offset).
115 (define_predicate "simple_memory_operand"
116 (match_code "mem,subreg")
118 rtx addr, plus0, plus1;
120 /* Eliminate non-memory operations. */
121 if (GET_CODE (op) != MEM)
124 /* Dword operations really put out 2 instructions, so eliminate them. */
125 if (GET_MODE_SIZE (GET_MODE (op)) > (unsigned) UNITS_PER_WORD)
128 /* Decode the address now. */
130 switch (GET_CODE (addr))
137 return SMALL_INT (addr);
140 plus0 = XEXP (addr, 0);
141 plus1 = XEXP (addr, 1);
142 if (GET_CODE (plus0) == REG
143 && GET_CODE (plus1) == CONST_INT && SMALL_INT (plus1)
144 && SMALL_INT_UNSIGNED (plus1) /* No negative offsets. */)
147 else if (GET_CODE (plus1) == REG
148 && GET_CODE (plus0) == CONST_INT && SMALL_INT (plus0)
149 && SMALL_INT_UNSIGNED (plus1) /* No negative offsets. */)
165 ;; Return nonzero if the code of this rtx pattern is EQ or NE.
167 (define_predicate "equality_op"
170 if (mode != GET_MODE (op))
173 return GET_CODE (op) == EQ || GET_CODE (op) == NE;
176 ;; Return nonzero if the code is a relational operations (EQ, LE,
179 (define_predicate "cmp_op"
180 (match_code "eq,ne,gt,ge,gtu,geu,lt,le,ltu,leu")
182 if (mode != GET_MODE (op))
185 return COMPARISON_P (op);
188 ;; Return nonzero if the operand is either the PC or a label_ref.
190 (define_special_predicate "pc_or_label_operand"
191 (match_code "pc,label_ref")
196 if (GET_CODE (op) == LABEL_REF)
202 ;; Return nonzero if OP is a valid operand for a call instruction.
204 (define_predicate "call_insn_operand"
205 (match_code "const_int,const,symbol_ref,reg")
207 return (CONSTANT_ADDRESS_P (op)
208 || (GET_CODE (op) == REG && op != arg_pointer_rtx
209 && ! (REGNO (op) >= FIRST_PSEUDO_REGISTER
210 && REGNO (op) <= LAST_VIRTUAL_REGISTER)));
213 ;; Return nonzero if OP is valid as a source operand for a move
216 (define_predicate "move_operand"
217 (match_code "const_int,const_double,const,symbol_ref,label_ref,subreg,reg,mem")
219 /* Accept any general operand after reload has started; doing so
220 avoids losing if reload does an in-place replacement of a register
221 with a SYMBOL_REF or CONST. */
222 return (general_operand (op, mode)
223 && (! (iq2000_check_split (op, mode))
224 || reload_in_progress || reload_completed));
227 ;; Return nonzero if OP is a constant power of 2.
229 (define_predicate "power_of_2_operand"
230 (match_code "const_int")
234 if (GET_CODE (op) != CONST_INT)
237 intval = INTVAL (op);
239 return ((intval & ((unsigned)(intval) - 1)) == 0);