[AArch64] Add SVE support
[official-gcc.git] / gcc / config / aarch64 / predicates.md
blob7424f506a5c6a289d3afc4472670e57d4029c8f3
1 ;; Machine description for AArch64 architecture.
2 ;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
3 ;; Contributed by ARM Ltd.
4 ;;
5 ;; This file is part of GCC.
6 ;;
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 by
9 ;; the Free Software Foundation; either version 3, or (at your option)
10 ;; any later version.
12 ;; GCC is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; General Public 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 (define_special_predicate "cc_register"
22   (and (match_code "reg")
23        (and (match_test "REGNO (op) == CC_REGNUM")
24             (ior (match_test "mode == GET_MODE (op)")
25                  (match_test "mode == VOIDmode
26                               && GET_MODE_CLASS (GET_MODE (op)) == MODE_CC"))))
29 (define_predicate "aarch64_call_insn_operand"
30   (ior (match_code "symbol_ref")
31        (match_operand 0 "register_operand")))
33 ;; Return true if OP a (const_int 0) operand.
34 (define_predicate "const0_operand"
35   (and (match_code "const_int")
36        (match_test "op == CONST0_RTX (mode)")))
38 (define_special_predicate "subreg_lowpart_operator"
39   (and (match_code "subreg")
40        (match_test "subreg_lowpart_p (op)")))
42 (define_predicate "aarch64_ccmp_immediate"
43   (and (match_code "const_int")
44        (match_test "IN_RANGE (INTVAL (op), -31, 31)")))
46 (define_predicate "aarch64_ccmp_operand"
47   (ior (match_operand 0 "register_operand")
48        (match_operand 0 "aarch64_ccmp_immediate")))
50 (define_predicate "aarch64_simd_register"
51   (and (match_code "reg")
52        (ior (match_test "REGNO_REG_CLASS (REGNO (op)) == FP_LO_REGS")
53             (match_test "REGNO_REG_CLASS (REGNO (op)) == FP_REGS"))))
55 (define_predicate "aarch64_reg_or_zero"
56   (and (match_code "reg,subreg,const_int")
57        (ior (match_operand 0 "register_operand")
58             (match_test "op == const0_rtx"))))
60 (define_predicate "aarch64_reg_or_fp_zero"
61   (ior (match_operand 0 "register_operand")
62         (and (match_code "const_double")
63              (match_test "aarch64_float_const_zero_rtx_p (op)"))))
65 (define_predicate "aarch64_reg_zero_or_m1_or_1"
66   (and (match_code "reg,subreg,const_int")
67        (ior (match_operand 0 "register_operand")
68             (ior (match_test "op == const0_rtx")
69                  (ior (match_test "op == constm1_rtx")
70                       (match_test "op == const1_rtx"))))))
72 (define_predicate "aarch64_reg_or_orr_imm"
73    (ior (match_operand 0 "register_operand")
74         (and (match_code "const_vector")
75              (match_test "aarch64_simd_valid_immediate (op, NULL,
76                                                         AARCH64_CHECK_ORR)"))))
78 (define_predicate "aarch64_reg_or_bic_imm"
79    (ior (match_operand 0 "register_operand")
80         (and (match_code "const_vector")
81              (match_test "aarch64_simd_valid_immediate (op, NULL,
82                                                         AARCH64_CHECK_BIC)"))))
84 (define_predicate "aarch64_fp_compare_operand"
85   (ior (match_operand 0 "register_operand")
86        (and (match_code "const_double")
87             (match_test "aarch64_float_const_zero_rtx_p (op)"))))
89 (define_predicate "aarch64_fp_pow2"
90   (and (match_code "const_double")
91         (match_test "aarch64_fpconst_pow_of_2 (op) > 0")))
93 (define_predicate "aarch64_fp_vec_pow2"
94   (match_test "aarch64_vec_fpconst_pow_of_2 (op) > 0"))
96 (define_predicate "aarch64_sve_cnt_immediate"
97   (and (match_code "const_poly_int")
98        (match_test "aarch64_sve_cnt_immediate_p (op)")))
100 (define_predicate "aarch64_sub_immediate"
101   (and (match_code "const_int")
102        (match_test "aarch64_uimm12_shift (-INTVAL (op))")))
104 (define_predicate "aarch64_plus_immediate"
105   (and (match_code "const_int")
106        (ior (match_test "aarch64_uimm12_shift (INTVAL (op))")
107             (match_test "aarch64_uimm12_shift (-INTVAL (op))"))))
109 (define_predicate "aarch64_plus_operand"
110   (ior (match_operand 0 "register_operand")
111        (match_operand 0 "aarch64_plus_immediate")))
113 (define_predicate "aarch64_pluslong_immediate"
114   (and (match_code "const_int")
115        (match_test "(INTVAL (op) < 0xffffff && INTVAL (op) > -0xffffff)")))
117 (define_predicate "aarch64_pluslong_strict_immedate"
118   (and (match_operand 0 "aarch64_pluslong_immediate")
119        (not (match_operand 0 "aarch64_plus_immediate"))))
121 (define_predicate "aarch64_sve_addvl_addpl_immediate"
122   (and (match_code "const_poly_int")
123        (match_test "aarch64_sve_addvl_addpl_immediate_p (op)")))
125 (define_predicate "aarch64_split_add_offset_immediate"
126   (and (match_code "const_poly_int")
127        (match_test "aarch64_add_offset_temporaries (op) == 1")))
129 (define_predicate "aarch64_pluslong_operand"
130   (ior (match_operand 0 "register_operand")
131        (match_operand 0 "aarch64_pluslong_immediate")
132        (match_operand 0 "aarch64_sve_addvl_addpl_immediate")))
134 (define_predicate "aarch64_pluslong_or_poly_operand"
135   (ior (match_operand 0 "aarch64_pluslong_operand")
136        (match_operand 0 "aarch64_split_add_offset_immediate")))
138 (define_predicate "aarch64_logical_immediate"
139   (and (match_code "const_int")
140        (match_test "aarch64_bitmask_imm (INTVAL (op), mode)")))
142 (define_predicate "aarch64_logical_operand"
143   (ior (match_operand 0 "register_operand")
144        (match_operand 0 "aarch64_logical_immediate")))
146 (define_predicate "aarch64_mov_imm_operand"
147   (and (match_code "const_int")
148        (match_test "aarch64_move_imm (INTVAL (op), mode)")))
150 (define_predicate "aarch64_logical_and_immediate"
151   (and (match_code "const_int")
152        (match_test "aarch64_and_bitmask_imm (INTVAL (op), mode)")))
154 (define_predicate "aarch64_shift_imm_si"
155   (and (match_code "const_int")
156        (match_test "(unsigned HOST_WIDE_INT) INTVAL (op) < 32")))
158 (define_predicate "aarch64_shift_imm_di"
159   (and (match_code "const_int")
160        (match_test "(unsigned HOST_WIDE_INT) INTVAL (op) < 64")))
162 (define_predicate "aarch64_shift_imm64_di"
163   (and (match_code "const_int")
164        (match_test "(unsigned HOST_WIDE_INT) INTVAL (op) <= 64")))
166 (define_predicate "aarch64_reg_or_shift_imm_si"
167   (ior (match_operand 0 "register_operand")
168        (match_operand 0 "aarch64_shift_imm_si")))
170 (define_predicate "aarch64_reg_or_shift_imm_di"
171   (ior (match_operand 0 "register_operand")
172        (match_operand 0 "aarch64_shift_imm_di")))
174 ;; The imm3 field is a 3-bit field that only accepts immediates in the
175 ;; range 0..4.
176 (define_predicate "aarch64_imm3"
177   (and (match_code "const_int")
178        (match_test "(unsigned HOST_WIDE_INT) INTVAL (op) <= 4")))
180 ;; The imm2 field is a 2-bit field that only accepts immediates in the
181 ;; range 0..3.
182 (define_predicate "aarch64_imm2"
183   (and (match_code "const_int")
184        (match_test "UINTVAL (op) <= 3")))
186 ;; The imm3 field is a 3-bit field that only accepts immediates in the
187 ;; range 0..7.
188 (define_predicate "aarch64_lane_imm3"
189   (and (match_code "const_int")
190        (match_test "UINTVAL (op) <= 7")))
192 ;; An immediate that fits into 24 bits.
193 (define_predicate "aarch64_imm24"
194   (and (match_code "const_int")
195        (match_test "IN_RANGE (UINTVAL (op), 0, 0xffffff)")))
197 (define_predicate "aarch64_pwr_imm3"
198   (and (match_code "const_int")
199        (match_test "INTVAL (op) != 0
200                     && (unsigned) exact_log2 (INTVAL (op)) <= 4")))
202 (define_predicate "aarch64_pwr_2_si"
203   (and (match_code "const_int")
204        (match_test "INTVAL (op) != 0
205                     && (unsigned) exact_log2 (INTVAL (op)) < 32")))
207 (define_predicate "aarch64_pwr_2_di"
208   (and (match_code "const_int")
209        (match_test "INTVAL (op) != 0
210                     && (unsigned) exact_log2 (INTVAL (op)) < 64")))
212 (define_predicate "aarch64_mem_pair_offset"
213   (and (match_code "const_int")
214        (match_test "aarch64_offset_7bit_signed_scaled_p (mode, INTVAL (op))")))
216 (define_predicate "aarch64_mem_pair_operand"
217   (and (match_code "mem")
218        (match_test "aarch64_legitimate_address_p (mode, XEXP (op, 0), false,
219                                                   ADDR_QUERY_LDP_STP)")))
221 ;; Used for storing two 64-bit values in an AdvSIMD register using an STP
222 ;; as a 128-bit vec_concat.
223 (define_predicate "aarch64_mem_pair_lanes_operand"
224   (and (match_code "mem")
225        (match_test "aarch64_legitimate_address_p (DFmode, XEXP (op, 0), 1,
226                                                   ADDR_QUERY_LDP_STP)")))
228 (define_predicate "aarch64_prefetch_operand"
229   (match_test "aarch64_address_valid_for_prefetch_p (op, false)"))
231 (define_predicate "aarch64_valid_symref"
232   (match_code "const, symbol_ref, label_ref")
234   return (aarch64_classify_symbolic_expression (op)
235           != SYMBOL_FORCE_TO_MEM);
238 (define_predicate "aarch64_tls_ie_symref"
239   (match_code "const, symbol_ref, label_ref")
241   switch (GET_CODE (op))
242     {
243     case CONST:
244       op = XEXP (op, 0);
245       if (GET_CODE (op) != PLUS
246           || GET_CODE (XEXP (op, 0)) != SYMBOL_REF
247           || GET_CODE (XEXP (op, 1)) != CONST_INT)
248         return false;
249       op = XEXP (op, 0);
250       /* FALLTHRU */
252     case SYMBOL_REF:
253       return SYMBOL_REF_TLS_MODEL (op) == TLS_MODEL_INITIAL_EXEC;
255     default:
256       gcc_unreachable ();
257     }
260 (define_predicate "aarch64_tls_le_symref"
261   (match_code "const, symbol_ref, label_ref")
263   switch (GET_CODE (op))
264     {
265     case CONST:
266       op = XEXP (op, 0);
267       if (GET_CODE (op) != PLUS
268           || GET_CODE (XEXP (op, 0)) != SYMBOL_REF
269           || GET_CODE (XEXP (op, 1)) != CONST_INT)
270         return false;
271       op = XEXP (op, 0);
272       /* FALLTHRU */
274     case SYMBOL_REF:
275       return SYMBOL_REF_TLS_MODEL (op) == TLS_MODEL_LOCAL_EXEC;
277     default:
278       gcc_unreachable ();
279     }
282 (define_predicate "aarch64_mov_operand"
283   (and (match_code "reg,subreg,mem,const,const_int,symbol_ref,label_ref,high,
284                     const_poly_int,const_vector")
285        (ior (match_operand 0 "register_operand")
286             (ior (match_operand 0 "memory_operand")
287                  (match_test "aarch64_mov_operand_p (op, mode)")))))
289 (define_predicate "aarch64_nonmemory_operand"
290   (and (match_code "reg,subreg,const,const_int,symbol_ref,label_ref,high,
291                     const_poly_int,const_vector")
292        (ior (match_operand 0 "register_operand")
293             (match_test "aarch64_mov_operand_p (op, mode)"))))
295 (define_predicate "aarch64_movti_operand"
296   (and (match_code "reg,subreg,mem,const_int")
297        (ior (match_operand 0 "register_operand")
298             (ior (match_operand 0 "memory_operand")
299                  (match_operand 0 "const_int_operand")))))
301 (define_predicate "aarch64_reg_or_imm"
302   (and (match_code "reg,subreg,const_int")
303        (ior (match_operand 0 "register_operand")
304             (match_operand 0 "const_int_operand"))))
306 ;; True for integer comparisons and for FP comparisons other than LTGT or UNEQ.
307 (define_special_predicate "aarch64_comparison_operator"
308   (match_code "eq,ne,le,lt,ge,gt,geu,gtu,leu,ltu,unordered,
309                ordered,unlt,unle,unge,ungt"))
311 ;; Same as aarch64_comparison_operator but don't ignore the mode.
312 ;; RTL SET operations require their operands source and destination have
313 ;; the same modes, so we can't ignore the modes there.  See PR target/69161.
314 (define_predicate "aarch64_comparison_operator_mode"
315   (match_code "eq,ne,le,lt,ge,gt,geu,gtu,leu,ltu,unordered,
316                ordered,unlt,unle,unge,ungt"))
318 (define_special_predicate "aarch64_comparison_operation"
319   (match_code "eq,ne,le,lt,ge,gt,geu,gtu,leu,ltu,unordered,
320                ordered,unlt,unle,unge,ungt")
322   if (XEXP (op, 1) != const0_rtx)
323     return false;
324   rtx op0 = XEXP (op, 0);
325   if (!REG_P (op0) || REGNO (op0) != CC_REGNUM)
326     return false;
327   return aarch64_get_condition_code (op) >= 0;
330 (define_special_predicate "aarch64_equality_operator"
331   (match_code "eq,ne"))
333 (define_special_predicate "aarch64_carry_operation"
334   (match_code "ne,geu")
336   if (XEXP (op, 1) != const0_rtx)
337     return false;
338   machine_mode ccmode = (GET_CODE (op) == NE ? CC_Cmode : CCmode);
339   rtx op0 = XEXP (op, 0);
340   return REG_P (op0) && REGNO (op0) == CC_REGNUM && GET_MODE (op0) == ccmode;
343 (define_special_predicate "aarch64_borrow_operation"
344   (match_code "eq,ltu")
346   if (XEXP (op, 1) != const0_rtx)
347     return false;
348   machine_mode ccmode = (GET_CODE (op) == EQ ? CC_Cmode : CCmode);
349   rtx op0 = XEXP (op, 0);
350   return REG_P (op0) && REGNO (op0) == CC_REGNUM && GET_MODE (op0) == ccmode;
353 ;; True if the operand is memory reference suitable for a load/store exclusive.
354 (define_predicate "aarch64_sync_memory_operand"
355   (and (match_operand 0 "memory_operand")
356        (match_code "reg" "0")))
358 ;; Predicates for parallel expanders based on mode.
359 (define_special_predicate "vect_par_cnst_hi_half"
360   (match_code "parallel")
362   return aarch64_simd_check_vect_par_cnst_half (op, mode, true);
365 (define_special_predicate "vect_par_cnst_lo_half"
366   (match_code "parallel")
368   return aarch64_simd_check_vect_par_cnst_half (op, mode, false);
371 (define_special_predicate "aarch64_simd_lshift_imm"
372   (match_code "const,const_vector")
374   return aarch64_simd_shift_imm_p (op, mode, true);
377 (define_special_predicate "aarch64_simd_rshift_imm"
378   (match_code "const,const_vector")
380   return aarch64_simd_shift_imm_p (op, mode, false);
383 (define_predicate "aarch64_simd_imm_zero"
384   (and (match_code "const,const_vector")
385        (match_test "op == CONST0_RTX (GET_MODE (op))")))
387 (define_predicate "aarch64_simd_or_scalar_imm_zero"
388   (and (match_code "const_int,const_double,const,const_vector")
389        (match_test "op == CONST0_RTX (GET_MODE (op))")))
391 (define_predicate "aarch64_simd_imm_minus_one"
392   (and (match_code "const,const_vector")
393        (match_test "op == CONSTM1_RTX (GET_MODE (op))")))
395 (define_predicate "aarch64_simd_reg_or_zero"
396   (and (match_code "reg,subreg,const_int,const_double,const,const_vector")
397        (ior (match_operand 0 "register_operand")
398             (match_test "op == const0_rtx")
399             (match_operand 0 "aarch64_simd_imm_zero"))))
401 (define_predicate "aarch64_simd_struct_operand"
402   (and (match_code "mem")
403        (match_test "TARGET_SIMD && aarch64_simd_mem_operand_p (op)")))
405 ;; Like general_operand but allow only valid SIMD addressing modes.
406 (define_predicate "aarch64_simd_general_operand"
407   (and (match_operand 0 "general_operand")
408        (match_test "!MEM_P (op)
409                     || GET_CODE (XEXP (op, 0)) == POST_INC
410                     || GET_CODE (XEXP (op, 0)) == REG")))
412 ;; Like nonimmediate_operand but allow only valid SIMD addressing modes.
413 (define_predicate "aarch64_simd_nonimmediate_operand"
414   (and (match_operand 0 "nonimmediate_operand")
415        (match_test "!MEM_P (op)
416                     || GET_CODE (XEXP (op, 0)) == POST_INC
417                     || GET_CODE (XEXP (op, 0)) == REG")))
419 ;; Predicates used by the various SIMD shift operations.  These
420 ;; fall in to 3 categories.
421 ;;   Shifts with a range 0-(bit_size - 1) (aarch64_simd_shift_imm)
422 ;;   Shifts with a range 1-bit_size (aarch64_simd_shift_imm_offset)
423 ;;   Shifts with a range 0-bit_size (aarch64_simd_shift_imm_bitsize)
424 (define_predicate "aarch64_simd_shift_imm_qi"
425   (and (match_code "const_int")
426        (match_test "IN_RANGE (INTVAL (op), 0, 7)")))
428 (define_predicate "aarch64_simd_shift_imm_hi"
429   (and (match_code "const_int")
430        (match_test "IN_RANGE (INTVAL (op), 0, 15)")))
432 (define_predicate "aarch64_simd_shift_imm_si"
433   (and (match_code "const_int")
434        (match_test "IN_RANGE (INTVAL (op), 0, 31)")))
436 (define_predicate "aarch64_simd_shift_imm_di"
437   (and (match_code "const_int")
438        (match_test "IN_RANGE (INTVAL (op), 0, 63)")))
440 (define_predicate "aarch64_simd_shift_imm_offset_qi"
441   (and (match_code "const_int")
442        (match_test "IN_RANGE (INTVAL (op), 1, 8)")))
444 (define_predicate "aarch64_simd_shift_imm_offset_hi"
445   (and (match_code "const_int")
446        (match_test "IN_RANGE (INTVAL (op), 1, 16)")))
448 (define_predicate "aarch64_simd_shift_imm_offset_si"
449   (and (match_code "const_int")
450        (match_test "IN_RANGE (INTVAL (op), 1, 32)")))
452 (define_predicate "aarch64_simd_shift_imm_offset_di"
453   (and (match_code "const_int")
454        (match_test "IN_RANGE (INTVAL (op), 1, 64)")))
456 (define_predicate "aarch64_simd_shift_imm_bitsize_qi"
457   (and (match_code "const_int")
458        (match_test "IN_RANGE (INTVAL (op), 0, 8)")))
460 (define_predicate "aarch64_simd_shift_imm_bitsize_hi"
461   (and (match_code "const_int")
462        (match_test "IN_RANGE (INTVAL (op), 0, 16)")))
464 (define_predicate "aarch64_simd_shift_imm_bitsize_si"
465   (and (match_code "const_int")
466        (match_test "IN_RANGE (INTVAL (op), 0, 32)")))
468 (define_predicate "aarch64_simd_shift_imm_bitsize_di"
469   (and (match_code "const_int")
470        (match_test "IN_RANGE (INTVAL (op), 0, 64)")))
472 (define_predicate "aarch64_constant_pool_symref"
473    (and (match_code "symbol_ref")
474         (match_test "CONSTANT_POOL_ADDRESS_P (op)")))
476 (define_predicate "aarch64_constant_vector_operand"
477   (match_code "const,const_vector"))
479 (define_predicate "aarch64_sve_ld1r_operand"
480   (and (match_operand 0 "memory_operand")
481        (match_test "aarch64_sve_ld1r_operand_p (op)")))
483 ;; Like memory_operand, but restricted to addresses that are valid for
484 ;; SVE LDR and STR instructions.
485 (define_predicate "aarch64_sve_ldr_operand"
486   (and (match_code "mem")
487        (match_test "aarch64_sve_ldr_operand_p (op)")))
489 (define_predicate "aarch64_sve_nonimmediate_operand"
490   (ior (match_operand 0 "register_operand")
491        (match_operand 0 "aarch64_sve_ldr_operand")))
493 (define_predicate "aarch64_sve_general_operand"
494   (and (match_code "reg,subreg,mem,const,const_vector")
495        (ior (match_operand 0 "register_operand")
496             (match_operand 0 "aarch64_sve_ldr_operand")
497             (match_test "aarch64_mov_operand_p (op, mode)"))))
499 ;; Doesn't include immediates, since those are handled by the move
500 ;; patterns instead.
501 (define_predicate "aarch64_sve_dup_operand"
502   (ior (match_operand 0 "register_operand")
503        (match_operand 0 "aarch64_sve_ld1r_operand")))
505 (define_predicate "aarch64_sve_arith_immediate"
506   (and (match_code "const,const_vector")
507        (match_test "aarch64_sve_arith_immediate_p (op, false)")))
509 (define_predicate "aarch64_sve_sub_arith_immediate"
510   (and (match_code "const,const_vector")
511        (match_test "aarch64_sve_arith_immediate_p (op, true)")))
513 (define_predicate "aarch64_sve_inc_dec_immediate"
514   (and (match_code "const,const_vector")
515        (match_test "aarch64_sve_inc_dec_immediate_p (op)")))
517 (define_predicate "aarch64_sve_logical_immediate"
518   (and (match_code "const,const_vector")
519        (match_test "aarch64_sve_bitmask_immediate_p (op)")))
521 (define_predicate "aarch64_sve_mul_immediate"
522   (and (match_code "const,const_vector")
523        (match_test "aarch64_const_vec_all_same_in_range_p (op, -128, 127)")))
525 (define_predicate "aarch64_sve_dup_immediate"
526   (and (match_code "const,const_vector")
527        (match_test "aarch64_sve_dup_immediate_p (op)")))
529 (define_predicate "aarch64_sve_cmp_vsc_immediate"
530   (and (match_code "const,const_vector")
531        (match_test "aarch64_sve_cmp_immediate_p (op, true)")))
533 (define_predicate "aarch64_sve_cmp_vsd_immediate"
534   (and (match_code "const,const_vector")
535        (match_test "aarch64_sve_cmp_immediate_p (op, false)")))
537 (define_predicate "aarch64_sve_index_immediate"
538   (and (match_code "const_int")
539        (match_test "aarch64_sve_index_immediate_p (op)")))
541 (define_predicate "aarch64_sve_float_arith_immediate"
542   (and (match_code "const,const_vector")
543        (match_test "aarch64_sve_float_arith_immediate_p (op, false)")))
545 (define_predicate "aarch64_sve_float_arith_with_sub_immediate"
546   (and (match_code "const,const_vector")
547        (match_test "aarch64_sve_float_arith_immediate_p (op, true)")))
549 (define_predicate "aarch64_sve_float_mul_immediate"
550   (and (match_code "const,const_vector")
551        (match_test "aarch64_sve_float_mul_immediate_p (op)")))
553 (define_predicate "aarch64_sve_arith_operand"
554   (ior (match_operand 0 "register_operand")
555        (match_operand 0 "aarch64_sve_arith_immediate")))
557 (define_predicate "aarch64_sve_add_operand"
558   (ior (match_operand 0 "aarch64_sve_arith_operand")
559        (match_operand 0 "aarch64_sve_sub_arith_immediate")
560        (match_operand 0 "aarch64_sve_inc_dec_immediate")))
562 (define_predicate "aarch64_sve_logical_operand"
563   (ior (match_operand 0 "register_operand")
564        (match_operand 0 "aarch64_sve_logical_immediate")))
566 (define_predicate "aarch64_sve_lshift_operand"
567   (ior (match_operand 0 "register_operand")
568        (match_operand 0 "aarch64_simd_lshift_imm")))
570 (define_predicate "aarch64_sve_rshift_operand"
571   (ior (match_operand 0 "register_operand")
572        (match_operand 0 "aarch64_simd_rshift_imm")))
574 (define_predicate "aarch64_sve_mul_operand"
575   (ior (match_operand 0 "register_operand")
576        (match_operand 0 "aarch64_sve_mul_immediate")))
578 (define_predicate "aarch64_sve_cmp_vsc_operand"
579   (ior (match_operand 0 "register_operand")
580        (match_operand 0 "aarch64_sve_cmp_vsc_immediate")))
582 (define_predicate "aarch64_sve_cmp_vsd_operand"
583   (ior (match_operand 0 "register_operand")
584        (match_operand 0 "aarch64_sve_cmp_vsd_immediate")))
586 (define_predicate "aarch64_sve_index_operand"
587   (ior (match_operand 0 "register_operand")
588        (match_operand 0 "aarch64_sve_index_immediate")))
590 (define_predicate "aarch64_sve_float_arith_operand"
591   (ior (match_operand 0 "register_operand")
592        (match_operand 0 "aarch64_sve_float_arith_immediate")))
594 (define_predicate "aarch64_sve_float_arith_with_sub_operand"
595   (ior (match_operand 0 "aarch64_sve_float_arith_operand")
596        (match_operand 0 "aarch64_sve_float_arith_with_sub_immediate")))
598 (define_predicate "aarch64_sve_float_mul_operand"
599   (ior (match_operand 0 "register_operand")
600        (match_operand 0 "aarch64_sve_float_mul_immediate")))
602 (define_predicate "aarch64_sve_vec_perm_operand"
603   (ior (match_operand 0 "register_operand")
604        (match_operand 0 "aarch64_constant_vector_operand")))