| ;; Predicate definitions for DEC Alpha. |
| ;; Copyright (C) 2004-2025 Free Software Foundation, Inc. |
| ;; |
| ;; This file is part of GCC. |
| ;; |
| ;; GCC is free software; you can redistribute it and/or modify |
| ;; it under the terms of the GNU General Public License as published by |
| ;; the Free Software Foundation; either version 3, or (at your option) |
| ;; any later version. |
| ;; |
| ;; GCC is distributed in the hope that it will be useful, |
| ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| ;; GNU General Public License for more details. |
| ;; |
| ;; You should have received a copy of the GNU General Public License |
| ;; along with GCC; see the file COPYING3. If not see |
| ;; <http://www.gnu.org/licenses/>. |
| |
| ;; Return 1 if OP is the zero constant for MODE. |
| (define_predicate "const0_operand" |
| (and (match_code "const_int,const_wide_int,const_double,const_vector") |
| (match_test "op == CONST0_RTX (mode)"))) |
| |
| ;; Returns true if OP is either the constant zero or a register. |
| (define_predicate "reg_or_0_operand" |
| (ior (match_operand 0 "register_operand") |
| (match_operand 0 "const0_operand"))) |
| |
| ;; Return 1 if OP is a constant in the range of 0-63 (for a shift) or |
| ;; any register. |
| (define_predicate "reg_or_6bit_operand" |
| (if_then_else (match_code "const_int") |
| (match_test "INTVAL (op) >= 0 && INTVAL (op) < 64") |
| (match_operand 0 "register_operand"))) |
| |
| ;; Return 1 if OP is an 8-bit constant. |
| (define_predicate "cint8_operand" |
| (and (match_code "const_int") |
| (match_test "INTVAL (op) >= 0 && INTVAL (op) < 256"))) |
| |
| ;; Return 1 if OP is an 8-bit constant or any register. |
| (define_predicate "reg_or_8bit_operand" |
| (if_then_else (match_code "const_int") |
| (match_test "INTVAL (op) >= 0 && INTVAL (op) < 256") |
| (match_operand 0 "register_operand"))) |
| |
| ;; Return 1 if OP is a constant or any register. |
| (define_predicate "reg_or_cint_operand" |
| (ior (match_operand 0 "register_operand") |
| (match_operand 0 "const_int_operand"))) |
| |
| ;; Return 1 if the operand is a valid second operand to an add insn. |
| (define_predicate "add_operand" |
| (if_then_else (match_code "const_int") |
| (match_test "satisfies_constraint_K (op) || satisfies_constraint_L (op)") |
| (match_operand 0 "register_operand"))) |
| |
| ;; Return 1 if the operand is a valid second operand to a |
| ;; sign-extending add insn. |
| (define_predicate "sext_add_operand" |
| (if_then_else (match_code "const_int") |
| (match_test "satisfies_constraint_I (op) || satisfies_constraint_O (op)") |
| (match_operand 0 "register_operand"))) |
| |
| ;; Return 1 if the operand is a non-symbolic constant operand that |
| ;; does not satisfy add_operand. |
| (define_predicate "non_add_const_operand" |
| (and (match_code "const_int,const_wide_int,const_double,const_vector") |
| (not (match_operand 0 "add_operand")))) |
| |
| ;; Return 1 if the operand is a non-symbolic, nonzero constant operand. |
| (define_predicate "non_zero_const_operand" |
| (and (match_code "const_int,const_wide_int,const_double,const_vector") |
| (not (match_test "op == CONST0_RTX (mode)")))) |
| |
| ;; Return 1 if OP is the constant 1, 2 or 3. |
| (define_predicate "const123_operand" |
| (and (match_code "const_int") |
| (match_test "IN_RANGE (INTVAL (op), 1, 3)"))) |
| |
| ;; Return 1 if OP is the constant 2 or 3. |
| (define_predicate "const23_operand" |
| (and (match_code "const_int") |
| (match_test "INTVAL (op) == 2 || INTVAL (op) == 3"))) |
| |
| ;; Return 1 if OP is the constant 4 or 8. |
| (define_predicate "const48_operand" |
| (and (match_code "const_int") |
| (match_test "INTVAL (op) == 4 || INTVAL (op) == 8"))) |
| |
| ;; Return 1 if OP is a valid first operand to an AND insn. |
| (define_predicate "and_operand" |
| (if_then_else (match_code "const_int") |
| (match_test "(unsigned HOST_WIDE_INT) INTVAL (op) < 0x100 |
| || (unsigned HOST_WIDE_INT) ~ INTVAL (op) < 0x100 |
| || zap_mask (INTVAL (op))") |
| (match_operand 0 "register_operand"))) |
| |
| ;; Return 1 if OP is a valid first operand to an IOR or XOR insn. |
| (define_predicate "or_operand" |
| (if_then_else (match_code "const_int") |
| (match_test "(unsigned HOST_WIDE_INT) INTVAL (op) < 0x100 |
| || (unsigned HOST_WIDE_INT) ~ INTVAL (op) < 0x100") |
| (match_operand 0 "register_operand"))) |
| |
| ;; Return 1 if OP is a constant that is the width, in bits, of an integral |
| ;; mode not larger than DImode. |
| (define_predicate "mode_width_operand" |
| (match_code "const_int") |
| { |
| HOST_WIDE_INT i = INTVAL (op); |
| return i == 8 || i == 16 || i == 32 || i == 64; |
| }) |
| |
| ;; Return 1 if OP is a constant that is a mask of ones of width of an |
| ;; integral machine mode not larger than DImode. |
| (define_predicate "mode_mask_operand" |
| (match_code "const_int") |
| { |
| HOST_WIDE_INT value = INTVAL (op); |
| |
| if (value == 0xff) |
| return 1; |
| if (value == 0xffff) |
| return 1; |
| if (value == 0xffffffff) |
| return 1; |
| if (value == -1) |
| return 1; |
| |
| return 0; |
| }) |
| |
| ;; Return 1 if OP is a multiple of 8 less than 64. |
| (define_predicate "mul8_operand" |
| (match_code "const_int") |
| { |
| unsigned HOST_WIDE_INT i = INTVAL (op); |
| return i < 64 && i % 8 == 0; |
| }) |
| |
| ;; Return 1 if OP is a hard floating-point register. |
| (define_predicate "hard_fp_register_operand" |
| (match_operand 0 "register_operand") |
| { |
| if (SUBREG_P (op)) |
| op = SUBREG_REG (op); |
| return REGNO_REG_CLASS (REGNO (op)) == FLOAT_REGS; |
| }) |
| |
| ;; Return 1 if OP is a hard general register. |
| (define_predicate "hard_int_register_operand" |
| (match_operand 0 "register_operand") |
| { |
| if (SUBREG_P (op)) |
| op = SUBREG_REG (op); |
| return REGNO_REG_CLASS (REGNO (op)) == GENERAL_REGS; |
| }) |
| |
| ;; Return 1 if OP is a valid operand for the source of a move insn. |
| (define_predicate "input_operand" |
| (match_operand 0 "general_operand") |
| { |
| switch (GET_CODE (op)) |
| { |
| case LABEL_REF: |
| case SYMBOL_REF: |
| case CONST: |
| if (TARGET_EXPLICIT_RELOCS) |
| { |
| /* We don't split symbolic operands into something unintelligable |
| until after reload, but we do not wish non-small, non-global |
| symbolic operands to be reconstructed from their high/lo_sum |
| form. */ |
| return (small_symbolic_operand (op, mode) |
| || global_symbolic_operand (op, mode) |
| || gotdtp_symbolic_operand (op, mode) |
| || gottp_symbolic_operand (op, mode)); |
| } |
| /* VMS still has a 32-bit mode. */ |
| return mode == ptr_mode || mode == Pmode; |
| |
| case HIGH: |
| return (TARGET_EXPLICIT_RELOCS |
| && local_symbolic_operand (XEXP (op, 0), mode)); |
| |
| case REG: |
| return 1; |
| |
| case SUBREG: |
| if (register_operand (op, mode)) |
| return 1; |
| /* fall through */ |
| case MEM: |
| return ((TARGET_BWX || (mode != HImode && mode != QImode)) |
| && general_operand (op, mode)); |
| |
| case CONST_WIDE_INT: |
| case CONST_DOUBLE: |
| return op == CONST0_RTX (mode); |
| |
| case CONST_VECTOR: |
| if (reload_in_progress || reload_completed) |
| return alpha_legitimate_constant_p (mode, op); |
| return op == CONST0_RTX (mode); |
| |
| case CONST_INT: |
| if (mode == QImode || mode == HImode) |
| return true; |
| if (reload_in_progress || reload_completed) |
| return alpha_legitimate_constant_p (mode, op); |
| return add_operand (op, mode); |
| |
| default: |
| gcc_unreachable (); |
| } |
| return 0; |
| }) |
| |
| ;; Return 1 if OP is a SYMBOL_REF for a function known to be in this |
| ;; file, and in the same section as the current function. |
| |
| (define_predicate "samegp_function_operand" |
| (match_code "symbol_ref") |
| { |
| /* Easy test for recursion. */ |
| if (op == XEXP (DECL_RTL (current_function_decl), 0)) |
| return true; |
| |
| /* Functions that are not local can be overridden, and thus may |
| not share the same gp. */ |
| if (! SYMBOL_REF_LOCAL_P (op)) |
| return false; |
| |
| /* If -msmall-data is in effect, assume that there is only one GP |
| for the module, and so any local symbol has this property. We |
| need explicit relocations to be able to enforce this for symbols |
| not defined in this unit of translation, however. */ |
| if (TARGET_EXPLICIT_RELOCS && TARGET_SMALL_DATA) |
| return true; |
| |
| /* Functions that are not external are defined in this UoT, |
| and thus must share the same gp. */ |
| return ! SYMBOL_REF_EXTERNAL_P (op); |
| }) |
| |
| ;; Return 1 if OP is a SYMBOL_REF for which we can make a call via bsr. |
| (define_predicate "direct_call_operand" |
| (match_operand 0 "samegp_function_operand") |
| { |
| /* If profiling is implemented via linker tricks, we can't jump |
| to the nogp alternate entry point. Note that crtl->profile |
| would not be correct, since that doesn't indicate if the target |
| function uses profiling. */ |
| /* ??? TARGET_PROFILING_NEEDS_GP isn't really the right test, |
| but is approximately correct for the OSF ABIs. Don't know |
| what to do for VMS, NT, or UMK. */ |
| if (!TARGET_PROFILING_NEEDS_GP && profile_flag) |
| return false; |
| |
| /* Must be a function. In some cases folks create thunks in static |
| data structures and then make calls to them. If we allow the |
| direct call, we'll get an error from the linker about !samegp reloc |
| against a symbol without a .prologue directive. */ |
| if (!SYMBOL_REF_FUNCTION_P (op)) |
| return false; |
| |
| /* Must be "near" so that the branch is assumed to reach. With |
| -msmall-text, this is assumed true of all local symbols. Since |
| we've already checked samegp, locality is already assured. */ |
| if (TARGET_SMALL_TEXT) |
| return true; |
| |
| return false; |
| }) |
| |
| ;; Return 1 if OP is a valid operand for the MEM of a CALL insn. |
| ;; |
| ;; For TARGET_ABI_OSF, we want to restrict to R27 or a pseudo. |
| |
| (define_predicate "call_operand" |
| (ior (match_code "symbol_ref") |
| (and (match_code "reg") |
| (ior (not (match_test "TARGET_ABI_OSF")) |
| (not (match_test "HARD_REGISTER_P (op)")) |
| (match_test "REGNO (op) == R27_REG"))))) |
| |
| ;; Return true if OP is a LABEL_REF, or SYMBOL_REF or CONST referencing |
| ;; a (non-tls) variable known to be defined in this file. |
| (define_predicate "local_symbolic_operand" |
| (match_code "label_ref,const,symbol_ref") |
| { |
| if (GET_CODE (op) == CONST |
| && GET_CODE (XEXP (op, 0)) == PLUS |
| && CONST_INT_P (XEXP (XEXP (op, 0), 1))) |
| op = XEXP (XEXP (op, 0), 0); |
| |
| if (GET_CODE (op) == LABEL_REF) |
| return 1; |
| |
| if (GET_CODE (op) != SYMBOL_REF) |
| return 0; |
| |
| return (SYMBOL_REF_LOCAL_P (op) |
| && !SYMBOL_REF_WEAK (op) |
| && !SYMBOL_REF_TLS_MODEL (op)); |
| }) |
| |
| ;; Return true if OP is a SYMBOL_REF or CONST referencing a variable |
| ;; known to be defined in this file in the small data area. |
| (define_predicate "small_symbolic_operand" |
| (match_code "const,symbol_ref") |
| { |
| HOST_WIDE_INT ofs = 0, max_ofs = 0; |
| |
| if (! TARGET_SMALL_DATA) |
| return false; |
| |
| if (GET_CODE (op) == CONST |
| && GET_CODE (XEXP (op, 0)) == PLUS |
| && CONST_INT_P (XEXP (XEXP (op, 0), 1))) |
| { |
| ofs = INTVAL (XEXP (XEXP (op, 0), 1)); |
| op = XEXP (XEXP (op, 0), 0); |
| } |
| |
| if (GET_CODE (op) != SYMBOL_REF) |
| return false; |
| |
| /* ??? There's no encode_section_info equivalent for the rtl |
| constant pool, so SYMBOL_FLAG_SMALL never gets set. */ |
| if (CONSTANT_POOL_ADDRESS_P (op)) |
| { |
| max_ofs = GET_MODE_SIZE (get_pool_mode (op)); |
| if (max_ofs > g_switch_value) |
| return false; |
| } |
| else if (SYMBOL_REF_LOCAL_P (op) |
| && SYMBOL_REF_SMALL_P (op) |
| && !SYMBOL_REF_WEAK (op) |
| && !SYMBOL_REF_TLS_MODEL (op)) |
| { |
| if (SYMBOL_REF_DECL (op)) |
| max_ofs = tree_to_uhwi (DECL_SIZE_UNIT (SYMBOL_REF_DECL (op))); |
| } |
| else |
| return false; |
| |
| /* Given that we know that the GP is always 8 byte aligned, we can |
| always adjust by 7 without overflowing. */ |
| if (max_ofs < 8) |
| max_ofs = 8; |
| |
| /* Since we know this is an object in a small data section, we know the |
| entire section is addressable via GP. We don't know where the section |
| boundaries are, but we know the entire object is within. */ |
| return IN_RANGE (ofs, 0, max_ofs - 1); |
| }) |
| |
| ;; Return true if OP is a SYMBOL_REF or CONST referencing a variable |
| ;; not known (or known not) to be defined in this file. |
| (define_predicate "global_symbolic_operand" |
| (match_code "const,symbol_ref") |
| { |
| if (GET_CODE (op) == CONST |
| && GET_CODE (XEXP (op, 0)) == PLUS |
| && CONST_INT_P (XEXP (XEXP (op, 0), 1))) |
| op = XEXP (XEXP (op, 0), 0); |
| |
| if (GET_CODE (op) != SYMBOL_REF) |
| return 0; |
| |
| return ((!SYMBOL_REF_LOCAL_P (op) || SYMBOL_REF_WEAK (op)) |
| && !SYMBOL_REF_TLS_MODEL (op)); |
| }) |
| |
| ;; Returns 1 if OP is a symbolic operand, i.e. a symbol_ref or a label_ref, |
| ;; possibly with an offset. |
| (define_predicate "symbolic_operand" |
| (ior (match_code "symbol_ref,label_ref") |
| (and (match_code "const") |
| (match_code "plus" "0") |
| (match_code "symbol_ref,label_ref" "00") |
| (match_code "const_int" "01")))) |
| |
| ;; Return true if OP is valid for 16-bit DTP relative relocations. |
| (define_predicate "dtp16_symbolic_operand" |
| (and (match_code "const") |
| (match_test "tls_symbolic_operand_1 (op, 16, UNSPEC_DTPREL)"))) |
| |
| ;; Return true if OP is valid for 32-bit DTP relative relocations. |
| (define_predicate "dtp32_symbolic_operand" |
| (and (match_code "const") |
| (match_test "tls_symbolic_operand_1 (op, 32, UNSPEC_DTPREL)"))) |
| |
| ;; Return true if OP is valid for 64-bit DTP relative relocations. |
| (define_predicate "gotdtp_symbolic_operand" |
| (and (match_code "const") |
| (match_test "tls_symbolic_operand_1 (op, 64, UNSPEC_DTPREL)"))) |
| |
| ;; Return true if OP is valid for 16-bit TP relative relocations. |
| (define_predicate "tp16_symbolic_operand" |
| (and (match_code "const") |
| (match_test "tls_symbolic_operand_1 (op, 16, UNSPEC_TPREL)"))) |
| |
| ;; Return true if OP is valid for 32-bit TP relative relocations. |
| (define_predicate "tp32_symbolic_operand" |
| (and (match_code "const") |
| (match_test "tls_symbolic_operand_1 (op, 32, UNSPEC_TPREL)"))) |
| |
| ;; Return true if OP is valid for 64-bit TP relative relocations. |
| (define_predicate "gottp_symbolic_operand" |
| (and (match_code "const") |
| (match_test "tls_symbolic_operand_1 (op, 64, UNSPEC_TPREL)"))) |
| |
| ;; Return 1 if this memory address is a known aligned register plus |
| ;; a constant. It must be a valid address. This means that we can do |
| ;; this as an aligned reference plus some offset. |
| ;; |
| ;; Take into account what reload will do. Oh god this is awful. |
| ;; The horrible comma-operator construct below is to prevent genrecog |
| ;; from thinking that this predicate accepts REG and SUBREG. We don't |
| ;; use recog during reload, so pretending these codes are accepted |
| ;; pessimizes things a tad. |
| |
| (define_special_predicate "aligned_memory_operand" |
| (ior (match_test "op = resolve_reload_operand (op), 0") |
| (match_code "mem")) |
| { |
| rtx base; |
| int offset; |
| |
| if (MEM_ALIGN (op) >= 32) |
| return 1; |
| |
| op = XEXP (op, 0); |
| |
| /* LEGITIMIZE_RELOAD_ADDRESS creates (plus (plus reg const_hi) const_lo) |
| sorts of constructs. Dig for the real base register. */ |
| if (reload_in_progress |
| && GET_CODE (op) == PLUS |
| && GET_CODE (XEXP (op, 0)) == PLUS) |
| { |
| base = XEXP (XEXP (op, 0), 0); |
| offset = INTVAL (XEXP (op, 1)); |
| } |
| else |
| { |
| if (! memory_address_p (mode, op)) |
| return 0; |
| if (GET_CODE (op) == PLUS) |
| { |
| base = XEXP (op, 0); |
| offset = INTVAL (XEXP (op, 1)); |
| } |
| else |
| { |
| base = op; |
| offset = 0; |
| } |
| } |
| |
| if (offset % GET_MODE_SIZE (mode)) |
| return 0; |
| |
| return (REG_P (base) && REGNO_POINTER_ALIGN (REGNO (base)) >= 32); |
| }) |
| |
| ;; Similar, but return 1 if OP is a MEM which is not alignable. |
| |
| (define_special_predicate "unaligned_memory_operand" |
| (ior (match_test "op = resolve_reload_operand (op), 0") |
| (match_code "mem")) |
| { |
| rtx base; |
| int offset; |
| |
| if (MEM_ALIGN (op) >= 32) |
| return 0; |
| |
| op = XEXP (op, 0); |
| |
| /* LEGITIMIZE_RELOAD_ADDRESS creates (plus (plus reg const_hi) const_lo) |
| sorts of constructs. Dig for the real base register. */ |
| if (reload_in_progress |
| && GET_CODE (op) == PLUS |
| && GET_CODE (XEXP (op, 0)) == PLUS) |
| { |
| base = XEXP (XEXP (op, 0), 0); |
| offset = INTVAL (XEXP (op, 1)); |
| } |
| else |
| { |
| if (! memory_address_p (mode, op)) |
| return 0; |
| if (GET_CODE (op) == PLUS) |
| { |
| base = XEXP (op, 0); |
| offset = INTVAL (XEXP (op, 1)); |
| } |
| else |
| { |
| base = op; |
| offset = 0; |
| } |
| } |
| |
| if (offset % GET_MODE_SIZE (mode)) |
| return 1; |
| |
| return (REG_P (base) && REGNO_POINTER_ALIGN (REGNO (base)) < 32); |
| }) |
| |
| ;; Return 1 if OP is any memory location. During reload a pseudo matches. |
| (define_special_predicate "any_memory_operand" |
| (match_code "mem,reg,subreg") |
| { |
| if (SUBREG_P (op)) |
| op = SUBREG_REG (op); |
| |
| if (MEM_P (op)) |
| return true; |
| if (reload_in_progress && REG_P (op)) |
| { |
| unsigned regno = REGNO (op); |
| if (HARD_REGISTER_NUM_P (regno)) |
| return false; |
| else |
| return reg_renumber[regno] < 0; |
| } |
| |
| return false; |
| }) |
| |
| ;; Returns 1 if OP is not an eliminable register. |
| ;; |
| ;; This exists to cure a pathological failure in the s8addq (et al) patterns, |
| ;; |
| ;; long foo () { long t; bar(); return (long) &t * 26107; } |
| ;; |
| ;; which run afoul of a hack in reload to cure a (presumably) similar |
| ;; problem with lea-type instructions on other targets. But there is |
| ;; one of us and many of them, so work around the problem by selectively |
| ;; preventing combine from making the optimization. |
| |
| (define_predicate "reg_not_elim_operand" |
| (match_operand 0 "register_operand") |
| { |
| if (SUBREG_P (op)) |
| op = SUBREG_REG (op); |
| return op != frame_pointer_rtx && op != arg_pointer_rtx; |
| }) |
| |
| ;; Accept a register, but not a subreg of any kind. This allows us to |
| ;; avoid pathological cases in reload wrt data movement common in |
| ;; int->fp conversion. */ |
| (define_predicate "reg_no_subreg_operand" |
| (and (match_code "reg") |
| (match_operand 0 "register_operand"))) |
| |
| ;; Return 1 if OP is a valid Alpha comparison operator for "cbranch" |
| ;; instructions. |
| (define_predicate "alpha_cbranch_operator" |
| (ior (match_operand 0 "ordered_comparison_operator") |
| (match_code "ordered,unordered"))) |
| |
| ;; Return 1 if OP is a valid Alpha comparison operator for "cmp" style |
| ;; instructions. |
| (define_predicate "alpha_comparison_operator" |
| (match_code "eq,le,lt,leu,ltu")) |
| |
| ;; Similarly, but with swapped operands. |
| (define_predicate "alpha_swapped_comparison_operator" |
| (match_code "eq,ge,gt,gtu")) |
| |
| ;; Return 1 if OP is a valid Alpha comparison operator against zero |
| ;; for "bcc" style instructions. |
| (define_predicate "alpha_zero_comparison_operator" |
| (match_code "eq,ne,le,lt,leu,ltu")) |
| |
| ;; Return 1 if OP is a signed comparison operation. |
| (define_predicate "signed_comparison_operator" |
| (match_code "eq,ne,le,lt,ge,gt")) |
| |
| ;; Return 1 if OP is a valid Alpha floating point comparison operator. |
| (define_predicate "alpha_fp_comparison_operator" |
| (match_code "eq,le,lt,unordered")) |
| |
| ;; Return 1 if this is a divide or modulus operator. |
| (define_predicate "divmod_operator" |
| (match_code "div,mod,udiv,umod")) |
| |
| ;; Return 1 if this is a float->int conversion operator. |
| (define_predicate "fix_operator" |
| (match_code "fix,unsigned_fix")) |
| |
| ;; Recognize an addition operation that includes a constant. Used to |
| ;; convince reload to canonize (plus (plus reg c1) c2) during register |
| ;; elimination. |
| |
| (define_predicate "addition_operation" |
| (and (match_code "plus") |
| (match_test "register_operand (XEXP (op, 0), mode) |
| && satisfies_constraint_K (XEXP (op, 1))"))) |
| |
| ;; For TARGET_EXPLICIT_RELOCS, we don't obfuscate a SYMBOL_REF to a |
| ;; small symbolic operand until after reload. At which point we need |
| ;; to replace (mem (symbol_ref)) with (mem (lo_sum $29 symbol_ref)) |
| ;; so that sched2 has the proper dependency information. */ |
| (define_predicate "some_small_symbolic_operand" |
| (match_code "set,parallel,prefetch,unspec,unspec_volatile") |
| { |
| /* Avoid search unless necessary. */ |
| if (!TARGET_EXPLICIT_RELOCS || !reload_completed) |
| return false; |
| return some_small_symbolic_operand_int (op); |
| }) |
| |
| ;; Accept a register, or a memory if BWX is enabled. |
| (define_predicate "reg_or_bwx_memory_operand" |
| (ior (match_operand 0 "register_operand") |
| (and (match_test "TARGET_BWX") |
| (match_operand 0 "memory_operand")))) |
| |
| ;; Accept a memory whose address is only a register. |
| (define_predicate "mem_noofs_operand" |
| (and (match_code "mem") |
| (match_code "reg" "0"))) |