1 ;; Predicate definitions for IA-32 and x86-64.
2 ;; Copyright (C) 2004, 2005, 2006, 2007 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 nonzero if OP is either a i387 or SSE fp register.
21 (define_predicate "any_fp_register_operand"
22 (and (match_code "reg")
23 (match_test "ANY_FP_REGNO_P (REGNO (op))")))
25 ;; Return nonzero if OP is an i387 fp register.
26 (define_predicate "fp_register_operand"
27 (and (match_code "reg")
28 (match_test "FP_REGNO_P (REGNO (op))")))
30 ;; Return nonzero if OP is a non-fp register_operand.
31 (define_predicate "register_and_not_any_fp_reg_operand"
32 (and (match_code "reg")
33 (not (match_test "ANY_FP_REGNO_P (REGNO (op))"))))
35 ;; Return nonzero if OP is a register operand other than an i387 fp register.
36 (define_predicate "register_and_not_fp_reg_operand"
37 (and (match_code "reg")
38 (not (match_test "FP_REGNO_P (REGNO (op))"))))
40 ;; True if the operand is an MMX register.
41 (define_predicate "mmx_reg_operand"
42 (and (match_code "reg")
43 (match_test "MMX_REGNO_P (REGNO (op))")))
45 ;; True if the operand is a Q_REGS class register.
46 (define_predicate "q_regs_operand"
47 (match_operand 0 "register_operand")
49 if (GET_CODE (op) == SUBREG)
51 return ANY_QI_REG_P (op);
54 ;; Match an SI or HImode register for a zero_extract.
55 (define_special_predicate "ext_register_operand"
56 (match_operand 0 "register_operand")
58 if ((!TARGET_64BIT || GET_MODE (op) != DImode)
59 && GET_MODE (op) != SImode && GET_MODE (op) != HImode)
61 if (GET_CODE (op) == SUBREG)
64 /* Be careful to accept only registers having upper parts. */
65 return REGNO (op) > LAST_VIRTUAL_REGISTER || REGNO (op) < 4;
68 ;; Return true if op is the AX register.
69 (define_predicate "ax_reg_operand"
70 (and (match_code "reg")
71 (match_test "REGNO (op) == 0")))
73 ;; Return true if op is the flags register.
74 (define_predicate "flags_reg_operand"
75 (and (match_code "reg")
76 (match_test "REGNO (op) == FLAGS_REG")))
78 ;; Return true if op is not xmm0 register.
79 (define_predicate "reg_not_xmm0_operand"
80 (and (match_operand 0 "register_operand")
81 (match_test "GET_CODE (op) != REG
82 || REGNO (op) != FIRST_SSE_REG")))
84 ;; As above, but allow nonimmediate operands.
85 (define_predicate "nonimm_not_xmm0_operand"
86 (and (match_operand 0 "nonimmediate_operand")
87 (match_test "GET_CODE (op) != REG
88 || REGNO (op) != FIRST_SSE_REG")))
90 ;; Return 1 if VALUE can be stored in a sign extended immediate field.
91 (define_predicate "x86_64_immediate_operand"
92 (match_code "const_int,symbol_ref,label_ref,const")
95 return immediate_operand (op, mode);
97 switch (GET_CODE (op))
100 /* CONST_DOUBLES never match, since HOST_BITS_PER_WIDE_INT is known
101 to be at least 32 and this all acceptable constants are
102 represented as CONST_INT. */
103 if (HOST_BITS_PER_WIDE_INT == 32)
107 HOST_WIDE_INT val = trunc_int_for_mode (INTVAL (op), DImode);
108 return trunc_int_for_mode (val, SImode) == val;
113 /* For certain code models, the symbolic references are known to fit.
114 in CM_SMALL_PIC model we know it fits if it is local to the shared
115 library. Don't count TLS SYMBOL_REFs here, since they should fit
116 only if inside of UNSPEC handled below. */
117 /* TLS symbols are not constant. */
118 if (SYMBOL_REF_TLS_MODEL (op))
120 return (ix86_cmodel == CM_SMALL || ix86_cmodel == CM_KERNEL
121 || (ix86_cmodel == CM_MEDIUM && !SYMBOL_REF_FAR_ADDR_P (op)));
124 /* For certain code models, the code is near as well. */
125 return (ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM
126 || ix86_cmodel == CM_KERNEL);
129 /* We also may accept the offsetted memory references in certain
131 if (GET_CODE (XEXP (op, 0)) == UNSPEC)
132 switch (XINT (XEXP (op, 0), 1))
134 case UNSPEC_GOTPCREL:
136 case UNSPEC_GOTNTPOFF:
143 if (GET_CODE (XEXP (op, 0)) == PLUS)
145 rtx op1 = XEXP (XEXP (op, 0), 0);
146 rtx op2 = XEXP (XEXP (op, 0), 1);
147 HOST_WIDE_INT offset;
149 if (ix86_cmodel == CM_LARGE)
151 if (!CONST_INT_P (op2))
153 offset = trunc_int_for_mode (INTVAL (op2), DImode);
154 switch (GET_CODE (op1))
157 /* TLS symbols are not constant. */
158 if (SYMBOL_REF_TLS_MODEL (op1))
160 /* For CM_SMALL assume that latest object is 16MB before
161 end of 31bits boundary. We may also accept pretty
162 large negative constants knowing that all objects are
163 in the positive half of address space. */
164 if ((ix86_cmodel == CM_SMALL
165 || (ix86_cmodel == CM_MEDIUM
166 && !SYMBOL_REF_FAR_ADDR_P (op1)))
167 && offset < 16*1024*1024
168 && trunc_int_for_mode (offset, SImode) == offset)
170 /* For CM_KERNEL we know that all object resist in the
171 negative half of 32bits address space. We may not
172 accept negative offsets, since they may be just off
173 and we may accept pretty large positive ones. */
174 if (ix86_cmodel == CM_KERNEL
176 && trunc_int_for_mode (offset, SImode) == offset)
181 /* These conditions are similar to SYMBOL_REF ones, just the
182 constraints for code models differ. */
183 if ((ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM)
184 && offset < 16*1024*1024
185 && trunc_int_for_mode (offset, SImode) == offset)
187 if (ix86_cmodel == CM_KERNEL
189 && trunc_int_for_mode (offset, SImode) == offset)
194 switch (XINT (op1, 1))
199 && trunc_int_for_mode (offset, SImode) == offset)
217 ;; Return 1 if VALUE can be stored in the zero extended immediate field.
218 (define_predicate "x86_64_zext_immediate_operand"
219 (match_code "const_double,const_int,symbol_ref,label_ref,const")
221 switch (GET_CODE (op))
224 if (HOST_BITS_PER_WIDE_INT == 32)
225 return (GET_MODE (op) == VOIDmode && !CONST_DOUBLE_HIGH (op));
230 if (HOST_BITS_PER_WIDE_INT == 32)
231 return INTVAL (op) >= 0;
233 return !(INTVAL (op) & ~(HOST_WIDE_INT) 0xffffffff);
236 /* For certain code models, the symbolic references are known to fit. */
237 /* TLS symbols are not constant. */
238 if (SYMBOL_REF_TLS_MODEL (op))
240 return (ix86_cmodel == CM_SMALL
241 || (ix86_cmodel == CM_MEDIUM
242 && !SYMBOL_REF_FAR_ADDR_P (op)));
245 /* For certain code models, the code is near as well. */
246 return ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM;
249 /* We also may accept the offsetted memory references in certain
251 if (GET_CODE (XEXP (op, 0)) == PLUS)
253 rtx op1 = XEXP (XEXP (op, 0), 0);
254 rtx op2 = XEXP (XEXP (op, 0), 1);
256 if (ix86_cmodel == CM_LARGE)
258 switch (GET_CODE (op1))
261 /* TLS symbols are not constant. */
262 if (SYMBOL_REF_TLS_MODEL (op1))
264 /* For small code model we may accept pretty large positive
265 offsets, since one bit is available for free. Negative
266 offsets are limited by the size of NULL pointer area
267 specified by the ABI. */
268 if ((ix86_cmodel == CM_SMALL
269 || (ix86_cmodel == CM_MEDIUM
270 && !SYMBOL_REF_FAR_ADDR_P (op1)))
272 && trunc_int_for_mode (INTVAL (op2), DImode) > -0x10000
273 && trunc_int_for_mode (INTVAL (op2), SImode) == INTVAL (op2))
275 /* ??? For the kernel, we may accept adjustment of
276 -0x10000000, since we know that it will just convert
277 negative address space to positive, but perhaps this
278 is not worthwhile. */
282 /* These conditions are similar to SYMBOL_REF ones, just the
283 constraints for code models differ. */
284 if ((ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM)
286 && trunc_int_for_mode (INTVAL (op2), DImode) > -0x10000
287 && trunc_int_for_mode (INTVAL (op2), SImode) == INTVAL (op2))
303 ;; Return nonzero if OP is general operand representable on x86_64.
304 (define_predicate "x86_64_general_operand"
305 (if_then_else (match_test "TARGET_64BIT")
306 (ior (match_operand 0 "nonimmediate_operand")
307 (match_operand 0 "x86_64_immediate_operand"))
308 (match_operand 0 "general_operand")))
310 ;; Return nonzero if OP is general operand representable on x86_64
311 ;; as either sign extended or zero extended constant.
312 (define_predicate "x86_64_szext_general_operand"
313 (if_then_else (match_test "TARGET_64BIT")
314 (ior (match_operand 0 "nonimmediate_operand")
315 (ior (match_operand 0 "x86_64_immediate_operand")
316 (match_operand 0 "x86_64_zext_immediate_operand")))
317 (match_operand 0 "general_operand")))
319 ;; Return nonzero if OP is nonmemory operand representable on x86_64.
320 (define_predicate "x86_64_nonmemory_operand"
321 (if_then_else (match_test "TARGET_64BIT")
322 (ior (match_operand 0 "register_operand")
323 (match_operand 0 "x86_64_immediate_operand"))
324 (match_operand 0 "nonmemory_operand")))
326 ;; Return nonzero if OP is nonmemory operand representable on x86_64.
327 (define_predicate "x86_64_szext_nonmemory_operand"
328 (if_then_else (match_test "TARGET_64BIT")
329 (ior (match_operand 0 "register_operand")
330 (ior (match_operand 0 "x86_64_immediate_operand")
331 (match_operand 0 "x86_64_zext_immediate_operand")))
332 (match_operand 0 "nonmemory_operand")))
334 ;; Return true when operand is PIC expression that can be computed by lea
336 (define_predicate "pic_32bit_operand"
337 (match_code "const,symbol_ref,label_ref")
341 /* Rule out relocations that translate into 64bit constants. */
342 if (TARGET_64BIT && GET_CODE (op) == CONST)
345 if (GET_CODE (op) == PLUS && CONST_INT_P (XEXP (op, 1)))
347 if (GET_CODE (op) == UNSPEC
348 && (XINT (op, 1) == UNSPEC_GOTOFF
349 || XINT (op, 1) == UNSPEC_GOT))
352 return symbolic_operand (op, mode);
356 ;; Return nonzero if OP is nonmemory operand acceptable by movabs patterns.
357 (define_predicate "x86_64_movabs_operand"
358 (if_then_else (match_test "!TARGET_64BIT || !flag_pic")
359 (match_operand 0 "nonmemory_operand")
360 (ior (match_operand 0 "register_operand")
361 (and (match_operand 0 "const_double_operand")
362 (match_test "GET_MODE_SIZE (mode) <= 8")))))
364 ;; Returns nonzero if OP is either a symbol reference or a sum of a symbol
365 ;; reference and a constant.
366 (define_predicate "symbolic_operand"
367 (match_code "symbol_ref,label_ref,const")
369 switch (GET_CODE (op))
377 if (GET_CODE (op) == SYMBOL_REF
378 || GET_CODE (op) == LABEL_REF
379 || (GET_CODE (op) == UNSPEC
380 && (XINT (op, 1) == UNSPEC_GOT
381 || XINT (op, 1) == UNSPEC_GOTOFF
382 || XINT (op, 1) == UNSPEC_GOTPCREL)))
384 if (GET_CODE (op) != PLUS
385 || !CONST_INT_P (XEXP (op, 1)))
389 if (GET_CODE (op) == SYMBOL_REF
390 || GET_CODE (op) == LABEL_REF)
392 /* Only @GOTOFF gets offsets. */
393 if (GET_CODE (op) != UNSPEC
394 || XINT (op, 1) != UNSPEC_GOTOFF)
397 op = XVECEXP (op, 0, 0);
398 if (GET_CODE (op) == SYMBOL_REF
399 || GET_CODE (op) == LABEL_REF)
408 ;; Return true if the operand contains a @GOT or @GOTOFF reference.
409 (define_predicate "pic_symbolic_operand"
415 if (GET_CODE (op) == UNSPEC
416 && XINT (op, 1) == UNSPEC_GOTPCREL)
418 if (GET_CODE (op) == PLUS
419 && GET_CODE (XEXP (op, 0)) == UNSPEC
420 && XINT (XEXP (op, 0), 1) == UNSPEC_GOTPCREL)
425 if (GET_CODE (op) == UNSPEC)
427 if (GET_CODE (op) != PLUS
428 || !CONST_INT_P (XEXP (op, 1)))
431 if (GET_CODE (op) == UNSPEC)
437 ;; Return true if OP is a symbolic operand that resolves locally.
438 (define_predicate "local_symbolic_operand"
439 (match_code "const,label_ref,symbol_ref")
441 if (GET_CODE (op) == CONST
442 && GET_CODE (XEXP (op, 0)) == PLUS
443 && CONST_INT_P (XEXP (XEXP (op, 0), 1)))
444 op = XEXP (XEXP (op, 0), 0);
446 if (GET_CODE (op) == LABEL_REF)
449 if (GET_CODE (op) != SYMBOL_REF)
452 if (SYMBOL_REF_TLS_MODEL (op) != 0)
455 if (SYMBOL_REF_LOCAL_P (op))
458 /* There is, however, a not insubstantial body of code in the rest of
459 the compiler that assumes it can just stick the results of
460 ASM_GENERATE_INTERNAL_LABEL in a symbol_ref and have done. */
461 /* ??? This is a hack. Should update the body of the compiler to
462 always create a DECL an invoke targetm.encode_section_info. */
463 if (strncmp (XSTR (op, 0), internal_label_prefix,
464 internal_label_prefix_len) == 0)
470 ;; Test for a legitimate @GOTOFF operand.
472 ;; VxWorks does not impose a fixed gap between segments; the run-time
473 ;; gap can be different from the object-file gap. We therefore can't
474 ;; use @GOTOFF unless we are absolutely sure that the symbol is in the
475 ;; same segment as the GOT. Unfortunately, the flexibility of linker
476 ;; scripts means that we can't be sure of that in general, so assume
477 ;; that @GOTOFF is never valid on VxWorks.
478 (define_predicate "gotoff_operand"
479 (and (match_test "!TARGET_VXWORKS_RTP")
480 (match_operand 0 "local_symbolic_operand")))
482 ;; Test for various thread-local symbols.
483 (define_predicate "tls_symbolic_operand"
484 (and (match_code "symbol_ref")
485 (match_test "SYMBOL_REF_TLS_MODEL (op) != 0")))
487 (define_predicate "tls_modbase_operand"
488 (and (match_code "symbol_ref")
489 (match_test "op == ix86_tls_module_base ()")))
491 (define_predicate "tp_or_register_operand"
492 (ior (match_operand 0 "register_operand")
493 (and (match_code "unspec")
494 (match_test "XINT (op, 1) == UNSPEC_TP"))))
496 ;; Test for a pc-relative call operand
497 (define_predicate "constant_call_address_operand"
498 (match_code "symbol_ref")
500 if (ix86_cmodel == CM_LARGE || ix86_cmodel == CM_LARGE_PIC)
502 if (TARGET_DLLIMPORT_DECL_ATTRIBUTES && SYMBOL_REF_DLLIMPORT_P (op))
507 ;; True for any non-virtual or eliminable register. Used in places where
508 ;; instantiation of such a register may cause the pattern to not be recognized.
509 (define_predicate "register_no_elim_operand"
510 (match_operand 0 "register_operand")
512 if (GET_CODE (op) == SUBREG)
513 op = SUBREG_REG (op);
514 return !(op == arg_pointer_rtx
515 || op == frame_pointer_rtx
516 || IN_RANGE (REGNO (op),
517 FIRST_PSEUDO_REGISTER, LAST_VIRTUAL_REGISTER));
520 ;; Similarly, but include the stack pointer. This is used to prevent esp
521 ;; from being used as an index reg.
522 (define_predicate "index_register_operand"
523 (match_operand 0 "register_operand")
525 if (GET_CODE (op) == SUBREG)
526 op = SUBREG_REG (op);
527 if (reload_in_progress || reload_completed)
528 return REG_OK_FOR_INDEX_STRICT_P (op);
530 return REG_OK_FOR_INDEX_NONSTRICT_P (op);
533 ;; Return false if this is any eliminable register. Otherwise general_operand.
534 (define_predicate "general_no_elim_operand"
535 (if_then_else (match_code "reg,subreg")
536 (match_operand 0 "register_no_elim_operand")
537 (match_operand 0 "general_operand")))
539 ;; Return false if this is any eliminable register. Otherwise
540 ;; register_operand or a constant.
541 (define_predicate "nonmemory_no_elim_operand"
542 (ior (match_operand 0 "register_no_elim_operand")
543 (match_operand 0 "immediate_operand")))
545 ;; Test for a valid operand for a call instruction.
546 (define_predicate "call_insn_operand"
547 (ior (match_operand 0 "constant_call_address_operand")
548 (ior (match_operand 0 "register_no_elim_operand")
549 (match_operand 0 "memory_operand"))))
551 ;; Similarly, but for tail calls, in which we cannot allow memory references.
552 (define_predicate "sibcall_insn_operand"
553 (ior (match_operand 0 "constant_call_address_operand")
554 (match_operand 0 "register_no_elim_operand")))
556 ;; Match exactly zero.
557 (define_predicate "const0_operand"
558 (match_code "const_int,const_double,const_vector")
560 if (mode == VOIDmode)
561 mode = GET_MODE (op);
562 return op == CONST0_RTX (mode);
565 ;; Match exactly one.
566 (define_predicate "const1_operand"
567 (and (match_code "const_int")
568 (match_test "op == const1_rtx")))
570 ;; Match exactly eight.
571 (define_predicate "const8_operand"
572 (and (match_code "const_int")
573 (match_test "INTVAL (op) == 8")))
575 ;; Match 2, 4, or 8. Used for leal multiplicands.
576 (define_predicate "const248_operand"
577 (match_code "const_int")
579 HOST_WIDE_INT i = INTVAL (op);
580 return i == 2 || i == 4 || i == 8;
584 (define_predicate "const_0_to_1_operand"
585 (and (match_code "const_int")
586 (match_test "op == const0_rtx || op == const1_rtx")))
589 (define_predicate "const_0_to_3_operand"
590 (and (match_code "const_int")
591 (match_test "IN_RANGE (INTVAL (op), 0, 3)")))
594 (define_predicate "const_0_to_7_operand"
595 (and (match_code "const_int")
596 (match_test "IN_RANGE (INTVAL (op), 0, 7)")))
599 (define_predicate "const_0_to_15_operand"
600 (and (match_code "const_int")
601 (match_test "IN_RANGE (INTVAL (op), 0, 15)")))
604 (define_predicate "const_0_to_31_operand"
605 (and (match_code "const_int")
606 (match_test "IN_RANGE (INTVAL (op), 0, 31)")))
609 (define_predicate "const_0_to_63_operand"
610 (and (match_code "const_int")
611 (match_test "IN_RANGE (INTVAL (op), 0, 63)")))
614 (define_predicate "const_0_to_255_operand"
615 (and (match_code "const_int")
616 (match_test "IN_RANGE (INTVAL (op), 0, 255)")))
618 ;; Match (0 to 255) * 8
619 (define_predicate "const_0_to_255_mul_8_operand"
620 (match_code "const_int")
622 unsigned HOST_WIDE_INT val = INTVAL (op);
623 return val <= 255*8 && val % 8 == 0;
626 ;; Return nonzero if OP is CONST_INT >= 1 and <= 31 (a valid operand
627 ;; for shift & compare patterns, as shifting by 0 does not change flags).
628 (define_predicate "const_1_to_31_operand"
629 (and (match_code "const_int")
630 (match_test "IN_RANGE (INTVAL (op), 1, 31)")))
632 ;; Return nonzero if OP is CONST_INT >= 1 and <= 63 (a valid operand
633 ;; for 64bit shift & compare patterns, as shifting by 0 does not change flags).
634 (define_predicate "const_1_to_63_operand"
635 (and (match_code "const_int")
636 (match_test "IN_RANGE (INTVAL (op), 1, 63)")))
639 (define_predicate "const_2_to_3_operand"
640 (and (match_code "const_int")
641 (match_test "IN_RANGE (INTVAL (op), 2, 3)")))
644 (define_predicate "const_4_to_7_operand"
645 (and (match_code "const_int")
646 (match_test "IN_RANGE (INTVAL (op), 4, 7)")))
648 ;; Match exactly one bit in 2-bit mask.
649 (define_predicate "const_pow2_1_to_2_operand"
650 (and (match_code "const_int")
651 (match_test "INTVAL (op) == 1 || INTVAL (op) == 2")))
653 ;; Match exactly one bit in 4-bit mask.
654 (define_predicate "const_pow2_1_to_8_operand"
655 (match_code "const_int")
657 unsigned int log = exact_log2 (INTVAL (op));
661 ;; Match exactly one bit in 8-bit mask.
662 (define_predicate "const_pow2_1_to_128_operand"
663 (match_code "const_int")
665 unsigned int log = exact_log2 (INTVAL (op));
669 ;; Match exactly one bit in 16-bit mask.
670 (define_predicate "const_pow2_1_to_32768_operand"
671 (match_code "const_int")
673 unsigned int log = exact_log2 (INTVAL (op));
677 ;; True if this is a constant appropriate for an increment or decrement.
678 (define_predicate "incdec_operand"
679 (match_code "const_int")
681 /* On Pentium4, the inc and dec operations causes extra dependency on flag
682 registers, since carry flag is not set. */
683 if (!TARGET_USE_INCDEC && !optimize_size)
685 return op == const1_rtx || op == constm1_rtx;
688 ;; True for registers, or 1 or -1. Used to optimize double-word shifts.
689 (define_predicate "reg_or_pm1_operand"
690 (ior (match_operand 0 "register_operand")
691 (and (match_code "const_int")
692 (match_test "op == const1_rtx || op == constm1_rtx"))))
694 ;; True if OP is acceptable as operand of DImode shift expander.
695 (define_predicate "shiftdi_operand"
696 (if_then_else (match_test "TARGET_64BIT")
697 (match_operand 0 "nonimmediate_operand")
698 (match_operand 0 "register_operand")))
700 (define_predicate "ashldi_input_operand"
701 (if_then_else (match_test "TARGET_64BIT")
702 (match_operand 0 "nonimmediate_operand")
703 (match_operand 0 "reg_or_pm1_operand")))
705 ;; Return true if OP is a vector load from the constant pool with just
706 ;; the first element nonzero.
707 (define_predicate "zero_extended_scalar_load_operand"
711 op = maybe_get_pool_constant (op);
714 if (GET_CODE (op) != CONST_VECTOR)
717 (GET_MODE_SIZE (GET_MODE (op)) /
718 GET_MODE_SIZE (GET_MODE_INNER (GET_MODE (op))));
719 for (n_elts--; n_elts > 0; n_elts--)
721 rtx elt = CONST_VECTOR_ELT (op, n_elts);
722 if (elt != CONST0_RTX (GET_MODE_INNER (GET_MODE (op))))
728 /* Return true if operand is a vector constant that is all ones. */
729 (define_predicate "vector_all_ones_operand"
730 (match_code "const_vector")
732 int nunits = GET_MODE_NUNITS (mode);
734 if (GET_CODE (op) == CONST_VECTOR
735 && CONST_VECTOR_NUNITS (op) == nunits)
738 for (i = 0; i < nunits; ++i)
740 rtx x = CONST_VECTOR_ELT (op, i);
741 if (x != constm1_rtx)
750 ; Return 1 when OP is operand acceptable for standard SSE move.
751 (define_predicate "vector_move_operand"
752 (ior (match_operand 0 "nonimmediate_operand")
753 (match_operand 0 "const0_operand")))
755 ;; Return 1 when OP is nonimmediate or standard SSE constant.
756 (define_predicate "nonimmediate_or_sse_const_operand"
757 (match_operand 0 "general_operand")
759 if (nonimmediate_operand (op, mode))
761 if (standard_sse_constant_p (op) > 0)
766 ;; Return true if OP is a register or a zero.
767 (define_predicate "reg_or_0_operand"
768 (ior (match_operand 0 "register_operand")
769 (match_operand 0 "const0_operand")))
771 ;; Return true if op if a valid address, and does not contain
772 ;; a segment override.
773 (define_special_predicate "no_seg_address_operand"
774 (match_operand 0 "address_operand")
776 struct ix86_address parts;
779 ok = ix86_decompose_address (op, &parts);
781 return parts.seg == SEG_DEFAULT;
784 ;; Return nonzero if the rtx is known to be at least 32 bits aligned.
785 (define_predicate "aligned_operand"
786 (match_operand 0 "general_operand")
788 struct ix86_address parts;
791 /* Registers and immediate operands are always "aligned". */
792 if (GET_CODE (op) != MEM)
795 /* All patterns using aligned_operand on memory operands ends up
796 in promoting memory operand to 64bit and thus causing memory mismatch. */
797 if (TARGET_MEMORY_MISMATCH_STALL && !optimize_size)
800 /* Don't even try to do any aligned optimizations with volatiles. */
801 if (MEM_VOLATILE_P (op))
804 if (MEM_ALIGN (op) >= 32)
809 /* Pushes and pops are only valid on the stack pointer. */
810 if (GET_CODE (op) == PRE_DEC
811 || GET_CODE (op) == POST_INC)
814 /* Decode the address. */
815 ok = ix86_decompose_address (op, &parts);
818 /* Look for some component that isn't known to be aligned. */
821 if (REGNO_POINTER_ALIGN (REGNO (parts.index)) * parts.scale < 32)
826 if (REGNO_POINTER_ALIGN (REGNO (parts.base)) < 32)
831 if (!CONST_INT_P (parts.disp)
832 || (INTVAL (parts.disp) & 3) != 0)
836 /* Didn't find one -- this must be an aligned address. */
840 ;; Returns 1 if OP is memory operand with a displacement.
841 (define_predicate "memory_displacement_operand"
842 (match_operand 0 "memory_operand")
844 struct ix86_address parts;
847 ok = ix86_decompose_address (XEXP (op, 0), &parts);
849 return parts.disp != NULL_RTX;
852 ;; Returns 1 if OP is memory operand with a displacement only.
853 (define_predicate "memory_displacement_only_operand"
854 (match_operand 0 "memory_operand")
856 struct ix86_address parts;
859 ok = ix86_decompose_address (XEXP (op, 0), &parts);
862 if (parts.base || parts.index)
865 return parts.disp != NULL_RTX;
868 ;; Returns 1 if OP is memory operand that cannot be represented
869 ;; by the modRM array.
870 (define_predicate "long_memory_operand"
871 (and (match_operand 0 "memory_operand")
872 (match_test "memory_address_length (op) != 0")))
874 ;; Return 1 if OP is a comparison operator that can be issued by fcmov.
875 (define_predicate "fcmov_comparison_operator"
876 (match_operand 0 "comparison_operator")
878 enum machine_mode inmode = GET_MODE (XEXP (op, 0));
879 enum rtx_code code = GET_CODE (op);
881 if (inmode == CCFPmode || inmode == CCFPUmode)
883 enum rtx_code second_code, bypass_code;
884 ix86_fp_comparison_codes (code, &bypass_code, &code, &second_code);
885 if (bypass_code != UNKNOWN || second_code != UNKNOWN)
887 code = ix86_fp_compare_code_to_integer (code);
889 /* i387 supports just limited amount of conditional codes. */
892 case LTU: case GTU: case LEU: case GEU:
893 if (inmode == CCmode || inmode == CCFPmode || inmode == CCFPUmode
894 || inmode == CCCmode)
897 case ORDERED: case UNORDERED:
905 ;; Return 1 if OP is a comparison that can be used in the CMPSS/CMPPS insns.
906 ;; The first set are supported directly; the second set can't be done with
907 ;; full IEEE support, i.e. NaNs.
909 ;; ??? It would seem that we have a lot of uses of this predicate that pass
910 ;; it the wrong mode. We got away with this because the old function didn't
911 ;; check the mode at all. Mirror that for now by calling this a special
914 (define_special_predicate "sse_comparison_operator"
915 (match_code "eq,lt,le,unordered,ne,unge,ungt,ordered"))
917 ;; Return 1 if OP is a comparison operator that can be issued by sse predicate
918 ;; generation instructions
919 (define_predicate "sse5_comparison_float_operator"
920 (and (match_test "TARGET_SSE5")
921 (match_code "ne,eq,ge,gt,le,lt,unordered,ordered,uneq,unge,ungt,unle,unlt,ltgt")))
923 (define_predicate "ix86_comparison_int_operator"
924 (match_code "ne,eq,ge,gt,le,lt"))
926 (define_predicate "ix86_comparison_uns_operator"
927 (match_code "ne,eq,geu,gtu,leu,ltu"))
929 (define_predicate "bt_comparison_operator"
930 (match_code "ne,eq"))
932 ;; Return 1 if OP is a valid comparison operator in valid mode.
933 (define_predicate "ix86_comparison_operator"
934 (match_operand 0 "comparison_operator")
936 enum machine_mode inmode = GET_MODE (XEXP (op, 0));
937 enum rtx_code code = GET_CODE (op);
939 if (inmode == CCFPmode || inmode == CCFPUmode)
941 enum rtx_code second_code, bypass_code;
942 ix86_fp_comparison_codes (code, &bypass_code, &code, &second_code);
943 return (bypass_code == UNKNOWN && second_code == UNKNOWN);
950 if (inmode == CCmode || inmode == CCGCmode
951 || inmode == CCGOCmode || inmode == CCNOmode)
954 case LTU: case GTU: case LEU: case GEU:
955 if (inmode == CCmode || inmode == CCCmode)
958 case ORDERED: case UNORDERED:
959 if (inmode == CCmode)
963 if (inmode == CCmode || inmode == CCGCmode || inmode == CCNOmode)
971 ;; Return 1 if OP is a valid comparison operator testing carry flag to be set.
972 (define_predicate "ix86_carry_flag_operator"
973 (match_code "ltu,lt,unlt,gtu,gt,ungt,le,unle,ge,unge,ltgt,uneq")
975 enum machine_mode inmode = GET_MODE (XEXP (op, 0));
976 enum rtx_code code = GET_CODE (op);
978 if (!REG_P (XEXP (op, 0))
979 || REGNO (XEXP (op, 0)) != FLAGS_REG
980 || XEXP (op, 1) != const0_rtx)
983 if (inmode == CCFPmode || inmode == CCFPUmode)
985 enum rtx_code second_code, bypass_code;
986 ix86_fp_comparison_codes (code, &bypass_code, &code, &second_code);
987 if (bypass_code != UNKNOWN || second_code != UNKNOWN)
989 code = ix86_fp_compare_code_to_integer (code);
991 else if (inmode == CCCmode)
992 return code == LTU || code == GTU;
993 else if (inmode != CCmode)
999 ;; Nearly general operand, but accept any const_double, since we wish
1000 ;; to be able to drop them into memory rather than have them get pulled
1002 (define_predicate "cmp_fp_expander_operand"
1003 (ior (match_code "const_double")
1004 (match_operand 0 "general_operand")))
1006 ;; Return true if this is a valid binary floating-point operation.
1007 (define_predicate "binary_fp_operator"
1008 (match_code "plus,minus,mult,div"))
1010 ;; Return true if this is a multiply operation.
1011 (define_predicate "mult_operator"
1012 (match_code "mult"))
1014 ;; Return true if this is a division operation.
1015 (define_predicate "div_operator"
1018 ;; Return true if this is a float extend operation.
1019 (define_predicate "float_operator"
1020 (match_code "float"))
1022 ;; Return true for ARITHMETIC_P.
1023 (define_predicate "arith_or_logical_operator"
1024 (match_code "plus,mult,and,ior,xor,smin,smax,umin,umax,compare,minus,div,
1025 mod,udiv,umod,ashift,rotate,ashiftrt,lshiftrt,rotatert"))
1027 ;; Return 1 if OP is a binary operator that can be promoted to wider mode.
1028 (define_predicate "promotable_binary_operator"
1029 (ior (match_code "plus,and,ior,xor,ashift")
1030 (and (match_code "mult")
1031 (match_test "TARGET_TUNE_PROMOTE_HIMODE_IMUL"))))
1033 ;; To avoid problems when jump re-emits comparisons like testqi_ext_ccno_0,
1034 ;; re-recognize the operand to avoid a copy_to_mode_reg that will fail.
1036 ;; ??? It seems likely that this will only work because cmpsi is an
1037 ;; expander, and no actual insns use this.
1039 (define_predicate "cmpsi_operand"
1040 (ior (match_operand 0 "nonimmediate_operand")
1041 (and (match_code "and")
1042 (match_code "zero_extract" "0")
1043 (match_code "const_int" "1")
1044 (match_code "const_int" "01")
1045 (match_code "const_int" "02")
1046 (match_test "INTVAL (XEXP (XEXP (op, 0), 1)) == 8")
1047 (match_test "INTVAL (XEXP (XEXP (op, 0), 2)) == 8")
1050 (define_predicate "compare_operator"
1051 (match_code "compare"))
1053 (define_predicate "absneg_operator"
1054 (match_code "abs,neg"))
1056 ;; Return 1 if OP is misaligned memory operand
1057 (define_predicate "misaligned_operand"
1058 (and (match_code "mem")
1059 (match_test "MEM_ALIGN (op) < GET_MODE_ALIGNMENT (mode)")))