gcc/
[official-gcc.git] / gcc / config / arm / constraints.md
blob42935a4ca6d43fef4c06aadbdcda7ca46a24447e
1 ;; Constraint definitions for ARM and Thumb
2 ;; Copyright (C) 2006-2015 Free Software Foundation, Inc.
3 ;; Contributed by ARM Ltd.
5 ;; This file is part of GCC.
7 ;; GCC is free software; you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published
9 ;; by the Free Software Foundation; either version 3, or (at your
10 ;; option) any later version.
12 ;; GCC is distributed in the hope that it will be useful, but WITHOUT
13 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 ;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15 ;; License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GCC; see the file COPYING3.  If not see
19 ;; <http://www.gnu.org/licenses/>.
21 ;; The following register constraints have been used:
22 ;; - in ARM/Thumb-2 state: t, w, x, y, z
23 ;; - in Thumb state: h, b
24 ;; - in both states: l, c, k, q, US
25 ;; In ARM state, 'l' is an alias for 'r'
26 ;; 'f' and 'v' were previously used for FPA and MAVERICK registers.
28 ;; The following normal constraints have been used:
29 ;; in ARM/Thumb-2 state: G, I, j, J, K, L, M
30 ;; in Thumb-1 state: I, J, K, L, M, N, O
31 ;; 'H' was previously used for FPA.
33 ;; The following multi-letter normal constraints have been used:
34 ;; in ARM/Thumb-2 state: Da, Db, Dc, Dd, Dn, Dl, DL, Do, Dv, Dy, Di, Dt, Dp, Dz
35 ;; in Thumb-1 state: Pa, Pb, Pc, Pd, Pe
36 ;; in Thumb-2 state: Pj, PJ, Ps, Pt, Pu, Pv, Pw, Px, Py
38 ;; The following memory constraints have been used:
39 ;; in ARM/Thumb-2 state: Q, Uh, Ut, Uv, Uy, Un, Um, Us
40 ;; in ARM state: Uq
41 ;; in Thumb state: Uu, Uw
44 (define_register_constraint "t" "TARGET_32BIT ? VFP_LO_REGS : NO_REGS"
45  "The VFP registers @code{s0}-@code{s31}.")
47 (define_register_constraint "w"
48   "TARGET_32BIT ? (TARGET_VFPD32 ? VFP_REGS : VFP_LO_REGS) : NO_REGS"
49  "The VFP registers @code{d0}-@code{d15}, or @code{d0}-@code{d31} for VFPv3.")
51 (define_register_constraint "x" "TARGET_32BIT ? VFP_D0_D7_REGS : NO_REGS"
52  "The VFP registers @code{d0}-@code{d7}.")
54 (define_register_constraint "y" "TARGET_REALLY_IWMMXT ? IWMMXT_REGS : NO_REGS"
55  "The Intel iWMMX co-processor registers.")
57 (define_register_constraint "z"
58  "TARGET_REALLY_IWMMXT ? IWMMXT_GR_REGS : NO_REGS"
59  "The Intel iWMMX GR registers.")
61 (define_register_constraint "l" "TARGET_THUMB ? LO_REGS : GENERAL_REGS"
62  "In Thumb state the core registers @code{r0}-@code{r7}.")
64 (define_register_constraint "h" "TARGET_THUMB ? HI_REGS : NO_REGS"
65  "In Thumb state the core registers @code{r8}-@code{r15}.")
67 (define_constraint "j"
68  "A constant suitable for a MOVW instruction. (ARM/Thumb-2)"
69  (and (match_test "TARGET_32BIT && arm_arch_thumb2")
70       (ior (match_code "high")
71            (and (match_code "const_int")
72                 (match_test "(ival & 0xffff0000) == 0")))))
74 (define_constraint "Pj"
75  "@internal A 12-bit constant suitable for an ADDW or SUBW instruction. (Thumb-2)"
76  (and (match_code "const_int")
77       (and (match_test "TARGET_THUMB2")
78            (match_test "(ival & 0xfffff000) == 0"))))
80 (define_constraint "PJ"
81  "@internal A constant that satisfies the Pj constrant if negated."
82  (and (match_code "const_int")
83       (and (match_test "TARGET_THUMB2")
84            (match_test "((-ival) & 0xfffff000) == 0"))))
86 (define_register_constraint "k" "STACK_REG"
87  "@internal The stack register.")
89 (define_register_constraint "q" "(TARGET_ARM && TARGET_LDRD) ? CORE_REGS : GENERAL_REGS"
90   "@internal In ARM state with LDRD support, core registers, otherwise general registers.")
92 (define_register_constraint "b" "TARGET_THUMB ? BASE_REGS : NO_REGS"
93  "@internal
94   Thumb only.  The union of the low registers and the stack register.")
96 (define_register_constraint "c" "CC_REG"
97  "@internal The condition code register.")
99 (define_register_constraint "Cs" "CALLER_SAVE_REGS"
100  "@internal The caller save registers.  Useful for sibcalls.")
102 (define_constraint "I"
103  "In ARM/Thumb-2 state a constant that can be used as an immediate value in a
104   Data Processing instruction.  In Thumb-1 state a constant in the range
105   0-255."
106  (and (match_code "const_int")
107       (match_test "TARGET_32BIT ? const_ok_for_arm (ival)
108                    : ival >= 0 && ival <= 255")))
110 (define_constraint "J"
111  "In ARM/Thumb-2 state a constant in the range @minus{}4095-4095.  In Thumb-1
112   state a constant in the range @minus{}255-@minus{}1."
113  (and (match_code "const_int")
114       (match_test "TARGET_32BIT ? (ival >= -4095 && ival <= 4095)
115                    : (ival >= -255 && ival <= -1)")))
117 (define_constraint "K"
118  "In ARM/Thumb-2 state a constant that satisfies the @code{I} constraint if
119   inverted.  In Thumb-1 state a constant that satisfies the @code{I}
120   constraint multiplied by any power of 2."
121  (and (match_code "const_int")
122       (match_test "TARGET_32BIT ? const_ok_for_arm (~ival)
123                    : thumb_shiftable_const (ival)")))
125 (define_constraint "L"
126  "In ARM/Thumb-2 state a constant that satisfies the @code{I} constraint if
127   negated.  In Thumb-1 state a constant in the range @minus{}7-7."
128  (and (match_code "const_int")
129       (match_test "TARGET_32BIT ? const_ok_for_arm (-ival)
130                    : (ival >= -7 && ival <= 7)")))
132 ;; The ARM state version is internal...
133 ;; @internal In ARM/Thumb-2 state a constant in the range 0-32 or any
134 ;; power of 2.
135 (define_constraint "M"
136  "In Thumb-1 state a constant that is a multiple of 4 in the range 0-1020."
137  (and (match_code "const_int")
138       (match_test "TARGET_32BIT ? ((ival >= 0 && ival <= 32)
139                                  || (((ival & (ival - 1)) & 0xFFFFFFFF) == 0))
140                    : ival >= 0 && ival <= 1020 && (ival & 3) == 0")))
142 (define_constraint "N"
143  "Thumb-1 state a constant in the range 0-31."
144  (and (match_code "const_int")
145       (match_test "!TARGET_32BIT && (ival >= 0 && ival <= 31)")))
147 (define_constraint "O"
148  "In Thumb-1 state a constant that is a multiple of 4 in the range
149   @minus{}508-508."
150  (and (match_code "const_int")
151       (match_test "TARGET_THUMB1 && ival >= -508 && ival <= 508
152                    && ((ival & 3) == 0)")))
154 (define_constraint "Pa"
155   "@internal In Thumb-1 state a constant in the range -510 to +510"
156   (and (match_code "const_int")
157        (match_test "TARGET_THUMB1 && ival >= -510 && ival <= 510
158                     && (ival > 255 || ival < -255)")))
160 (define_constraint "Pb"
161   "@internal In Thumb-1 state a constant in the range -262 to +262"
162   (and (match_code "const_int")
163        (match_test "TARGET_THUMB1 && ival >= -262 && ival <= 262
164                     && (ival > 255 || ival < -255)")))
166 (define_constraint "Pc"
167   "@internal In Thumb-1 state a constant that is in the range 1021 to 1275"
168   (and (match_code "const_int")
169        (match_test "TARGET_THUMB1
170                     && ival > 1020 && ival <= 1275")))
172 (define_constraint "Pd"
173   "@internal In Thumb state a constant in the range 0 to 7"
174   (and (match_code "const_int")
175        (match_test "TARGET_THUMB && ival >= 0 && ival <= 7")))
177 (define_constraint "Pe"
178   "@internal In Thumb-1 state a constant in the range 256 to +510"
179   (and (match_code "const_int")
180        (match_test "TARGET_THUMB1 && ival >= 256 && ival <= 510")))
182 (define_constraint "Ps"
183   "@internal In Thumb-2 state a constant in the range -255 to +255"
184   (and (match_code "const_int")
185        (match_test "TARGET_THUMB2 && ival >= -255 && ival <= 255")))
187 (define_constraint "Pt"
188   "@internal In Thumb-2 state a constant in the range -7 to +7"
189   (and (match_code "const_int")
190        (match_test "TARGET_THUMB2 && ival >= -7 && ival <= 7")))
192 (define_constraint "Pu"
193   "@internal In Thumb-2 state a constant in the range +1 to +8"
194   (and (match_code "const_int")
195        (match_test "TARGET_THUMB2 && ival >= 1 && ival <= 8")))
197 (define_constraint "Pv"
198   "@internal In Thumb-2 state a constant in the range -255 to 0"
199   (and (match_code "const_int")
200        (match_test "TARGET_THUMB2 && ival >= -255 && ival <= 0")))
202 (define_constraint "Pw"
203   "@internal In Thumb-2 state a constant in the range -255 to -1"
204   (and (match_code "const_int")
205        (match_test "TARGET_THUMB2 && ival >= -255 && ival <= -1")))
207 (define_constraint "Px"
208   "@internal In Thumb-2 state a constant in the range -7 to -1"
209   (and (match_code "const_int")
210        (match_test "TARGET_THUMB2 && ival >= -7 && ival <= -1")))
212 (define_constraint "Py"
213   "@internal In Thumb-2 state a constant in the range 0 to 255"
214   (and (match_code "const_int")
215        (match_test "TARGET_THUMB2 && ival >= 0 && ival <= 255")))
217 (define_constraint "Pz"
218   "@internal In Thumb-2 state the constant 0"
219   (and (match_code "const_int")
220        (match_test "TARGET_THUMB2 && (ival == 0)")))
222 (define_constraint "G"
223  "In ARM/Thumb-2 state the floating-point constant 0."
224  (and (match_code "const_double")
225       (match_test "TARGET_32BIT && arm_const_double_rtx (op)")))
227 (define_constraint "Dz"
228  "@internal
229   In ARM/Thumb-2 state a vector of constant zeros."
230  (and (match_code "const_vector")
231       (match_test "TARGET_NEON && op == CONST0_RTX (mode)")))
233 (define_constraint "Da"
234  "@internal
235   In ARM/Thumb-2 state a const_int, const_double or const_vector that can
236   be generated with two Data Processing insns."
237  (and (match_code "const_double,const_int,const_vector")
238       (match_test "TARGET_32BIT && arm_const_double_inline_cost (op) == 2")))
240 (define_constraint "Db"
241  "@internal
242   In ARM/Thumb-2 state a const_int, const_double or const_vector that can
243   be generated with three Data Processing insns."
244  (and (match_code "const_double,const_int,const_vector")
245       (match_test "TARGET_32BIT && arm_const_double_inline_cost (op) == 3")))
247 (define_constraint "Dc"
248  "@internal
249   In ARM/Thumb-2 state a const_int, const_double or const_vector that can
250   be generated with four Data Processing insns.  This pattern is disabled
251   if optimizing for space or when we have load-delay slots to fill."
252  (and (match_code "const_double,const_int,const_vector")
253       (match_test "TARGET_32BIT && arm_const_double_inline_cost (op) == 4
254                    && !(optimize_size || arm_ld_sched)")))
256 (define_constraint "Dd"
257  "@internal
258   In ARM/Thumb-2 state a const_int that can be used by insn adddi."
259  (and (match_code "const_int")
260       (match_test "TARGET_32BIT && const_ok_for_dimode_op (ival, PLUS)")))
262 (define_constraint "De"
263  "@internal
264   In ARM/Thumb-2 state a const_int that can be used by insn anddi."
265  (and (match_code "const_int")
266       (match_test "TARGET_32BIT && const_ok_for_dimode_op (ival, AND)")))
268 (define_constraint "Df"
269  "@internal
270   In ARM/Thumb-2 state a const_int that can be used by insn iordi."
271  (and (match_code "const_int")
272       (match_test "TARGET_32BIT && const_ok_for_dimode_op (ival, IOR)")))
274 (define_constraint "Dg"
275  "@internal
276   In ARM/Thumb-2 state a const_int that can be used by insn xordi."
277  (and (match_code "const_int")
278       (match_test "TARGET_32BIT && const_ok_for_dimode_op (ival, XOR)")))
280 (define_constraint "Di"
281  "@internal
282   In ARM/Thumb-2 state a const_int or const_double where both the high
283   and low SImode words can be generated as immediates in 32-bit instructions."
284  (and (match_code "const_double,const_int")
285       (match_test "TARGET_32BIT && arm_const_double_by_immediates (op)")))
287 (define_constraint "Dn"
288  "@internal
289   In ARM/Thumb-2 state a const_vector or const_int which can be loaded with a
290   Neon vmov immediate instruction."
291  (and (match_code "const_vector,const_int")
292       (match_test "TARGET_32BIT
293                    && imm_for_neon_mov_operand (op, GET_MODE (op))")))
295 (define_constraint "Dl"
296  "@internal
297   In ARM/Thumb-2 state a const_vector which can be used with a Neon vorr or
298   vbic instruction."
299  (and (match_code "const_vector")
300       (match_test "TARGET_32BIT
301                    && imm_for_neon_logic_operand (op, GET_MODE (op))")))
303 (define_constraint "DL"
304  "@internal
305   In ARM/Thumb-2 state a const_vector which can be used with a Neon vorn or
306   vand instruction."
307  (and (match_code "const_vector")
308       (match_test "TARGET_32BIT
309                    && imm_for_neon_inv_logic_operand (op, GET_MODE (op))")))
311 (define_constraint "Do"
312  "@internal
313   In ARM/Thumb2 state valid offset for an ldrd/strd instruction."
314  (and (match_code "const_int")
315       (match_test "TARGET_LDRD && offset_ok_for_ldrd_strd (ival)")))
317 (define_constraint "Dv"
318  "@internal
319   In ARM/Thumb-2 state a const_double which can be used with a VFP fconsts
320   instruction."
321  (and (match_code "const_double")
322       (match_test "TARGET_32BIT && vfp3_const_double_rtx (op)")))
324 (define_constraint "Dy"
325  "@internal
326   In ARM/Thumb-2 state a const_double which can be used with a VFP fconstd
327   instruction."
328  (and (match_code "const_double")
329       (match_test "TARGET_32BIT && TARGET_VFP_DOUBLE && vfp3_const_double_rtx (op)")))
331 (define_constraint "Dt"
332  "@internal
333   In ARM/ Thumb2 a const_double which can be used with a vcvt.f32.s32 with fract bits operation"
334   (and (match_code "const_double")
335        (match_test "TARGET_32BIT && TARGET_VFP && vfp3_const_double_for_fract_bits (op)")))
337 (define_constraint "Dp"
338  "@internal
339   In ARM/ Thumb2 a const_double which can be used with a vcvt.s32.f32 with bits operation"
340   (and (match_code "const_double")
341        (match_test "TARGET_32BIT && TARGET_VFP && vfp3_const_double_for_bits (op)")))
343 (define_register_constraint "Ts" "(arm_restrict_it) ? LO_REGS : GENERAL_REGS"
344  "For arm_restrict_it the core registers @code{r0}-@code{r7}.  GENERAL_REGS otherwise.")
346 (define_memory_constraint "Ua"
347  "@internal
348   An address valid for loading/storing register exclusive"
349  (match_operand 0 "mem_noofs_operand"))
351 (define_memory_constraint "Uh"
352  "@internal
353   An address suitable for byte and half-word loads which does not point inside a constant pool"
354  (and (match_code "mem")
355       (match_test "arm_legitimate_address_p (GET_MODE (op), XEXP (op, 0), false) && !arm_is_constant_pool_ref (op)")))
357 (define_memory_constraint "Ut"
358  "@internal
359   In ARM/Thumb-2 state an address valid for loading/storing opaque structure
360   types wider than TImode."
361  (and (match_code "mem")
362       (match_test "TARGET_32BIT && neon_struct_mem_operand (op)")))
364 (define_memory_constraint "Uv"
365  "@internal
366   In ARM/Thumb-2 state a valid VFP load/store address."
367  (and (match_code "mem")
368       (match_test "TARGET_32BIT && arm_coproc_mem_operand (op, FALSE)")))
370 (define_memory_constraint "Uy"
371  "@internal
372   In ARM/Thumb-2 state a valid iWMMX load/store address."
373  (and (match_code "mem")
374       (match_test "TARGET_32BIT && arm_coproc_mem_operand (op, TRUE)")))
376 (define_memory_constraint "Un"
377  "@internal
378   In ARM/Thumb-2 state a valid address for Neon doubleword vector
379   load/store instructions."
380  (and (match_code "mem")
381       (match_test "TARGET_32BIT && neon_vector_mem_operand (op, 0, true)")))
383 (define_memory_constraint "Um"
384  "@internal
385   In ARM/Thumb-2 state a valid address for Neon element and structure
386   load/store instructions."
387  (and (match_code "mem")
388       (match_test "TARGET_32BIT && neon_vector_mem_operand (op, 2, true)")))
390 (define_memory_constraint "Us"
391  "@internal
392   In ARM/Thumb-2 state a valid address for non-offset loads/stores of
393   quad-word values in four ARM registers."
394  (and (match_code "mem")
395       (match_test "TARGET_32BIT && neon_vector_mem_operand (op, 1, true)")))
397 (define_memory_constraint "Uq"
398  "@internal
399   In ARM state an address valid in ldrsb instructions."
400  (and (match_code "mem")
401       (match_test "TARGET_ARM
402                    && arm_legitimate_address_outer_p (GET_MODE (op), XEXP (op, 0),
403                                                       SIGN_EXTEND, 0)
404                    && !arm_is_constant_pool_ref (op)")))
406 (define_memory_constraint "Q"
407  "@internal
408   In ARM/Thumb-2 state an address that is a single base register."
409  (and (match_code "mem")
410       (match_test "REG_P (XEXP (op, 0))")))
412 (define_memory_constraint "Uu"
413  "@internal
414   In Thumb state an address that is valid in 16bit encoding."
415  (and (match_code "mem")
416       (match_test "TARGET_THUMB
417                    && thumb1_legitimate_address_p (GET_MODE (op), XEXP (op, 0),
418                                                    0)")))
420 ; The 16-bit post-increment LDR/STR accepted by thumb1_legitimate_address_p
421 ; are actually LDM/STM instructions, so cannot be used to access unaligned
422 ; data.
423 (define_memory_constraint "Uw"
424  "@internal
425   In Thumb state an address that is valid in 16bit encoding, and that can be
426   used for unaligned accesses."
427  (and (match_code "mem")
428       (match_test "TARGET_THUMB
429                    && thumb1_legitimate_address_p (GET_MODE (op), XEXP (op, 0),
430                                                    0)
431                    && GET_CODE (XEXP (op, 0)) != POST_INC")))
433 (define_constraint "US"
434  "@internal
435   US is a symbol reference."
436  (match_code "symbol_ref")
439 ;; We used to have constraint letters for S and R in ARM state, but
440 ;; all uses of these now appear to have been removed.
442 ;; Additionally, we used to have a Q constraint in Thumb state, but
443 ;; this wasn't really a valid memory constraint.  Again, all uses of
444 ;; this now seem to have been removed.