OSDN Git Service

2006-06-29 Eric Christopher <echristo@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / predicates.md
1 ;; Predicate definitions for IA-32 and x86-64.
2 ;; Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
3 ;;
4 ;; This file is part of GCC.
5 ;;
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 2, or (at your option)
9 ;; any later version.
10 ;;
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.
15 ;;
16 ;; You should have received a copy of the GNU General Public License
17 ;; along with GCC; see the file COPYING.  If not, write to
18 ;; the Free Software Foundation, 51 Franklin Street, Fifth Floor,
19 ;; Boston, MA 02110-1301, USA.
20
21 ;; Return nonzero if OP is either a i387 or SSE fp register.
22 (define_predicate "any_fp_register_operand"
23   (and (match_code "reg")
24        (match_test "ANY_FP_REGNO_P (REGNO (op))")))
25
26 ;; Return nonzero if OP is an i387 fp register.
27 (define_predicate "fp_register_operand"
28   (and (match_code "reg")
29        (match_test "FP_REGNO_P (REGNO (op))")))
30
31 ;; Return nonzero if OP is a non-fp register_operand.
32 (define_predicate "register_and_not_any_fp_reg_operand"
33   (and (match_code "reg")
34        (not (match_test "ANY_FP_REGNO_P (REGNO (op))"))))
35
36 ;; Return nonzero if OP is a register operand other than an i387 fp register.
37 (define_predicate "register_and_not_fp_reg_operand"
38   (and (match_code "reg")
39        (not (match_test "FP_REGNO_P (REGNO (op))"))))
40
41 ;; True if the operand is an MMX register.
42 (define_predicate "mmx_reg_operand"
43   (and (match_code "reg")
44        (match_test "MMX_REGNO_P (REGNO (op))")))
45
46 ;; True if the operand is a Q_REGS class register.
47 (define_predicate "q_regs_operand"
48   (match_operand 0 "register_operand")
49 {
50   if (GET_CODE (op) == SUBREG)
51     op = SUBREG_REG (op);
52   return ANY_QI_REG_P (op);
53 })
54
55 ;; Return true if op is a NON_Q_REGS class register.
56 (define_predicate "non_q_regs_operand"
57   (match_operand 0 "register_operand")
58 {
59   if (GET_CODE (op) == SUBREG)
60     op = SUBREG_REG (op);
61   return NON_QI_REG_P (op);
62 })
63
64 ;; Match an SI or HImode register for a zero_extract.
65 (define_special_predicate "ext_register_operand"
66   (match_operand 0 "register_operand")
67 {
68   if ((!TARGET_64BIT || GET_MODE (op) != DImode)
69       && GET_MODE (op) != SImode && GET_MODE (op) != HImode)
70     return 0;
71   if (GET_CODE (op) == SUBREG)
72     op = SUBREG_REG (op);
73
74   /* Be careful to accept only registers having upper parts.  */
75   return REGNO (op) > LAST_VIRTUAL_REGISTER || REGNO (op) < 4;
76 })
77
78 ;; Return true if op is the AX register.
79 (define_predicate "ax_reg_operand"
80   (and (match_code "reg")
81        (match_test "REGNO (op) == 0")))
82
83 ;; Return true if op is the flags register.
84 (define_predicate "flags_reg_operand"
85   (and (match_code "reg")
86        (match_test "REGNO (op) == FLAGS_REG")))
87
88 ;; Return 1 if VALUE can be stored in a sign extended immediate field.
89 (define_predicate "x86_64_immediate_operand"
90   (match_code "const_int,symbol_ref,label_ref,const")
91 {
92   if (!TARGET_64BIT)
93     return immediate_operand (op, mode);
94
95   switch (GET_CODE (op))
96     {
97     case CONST_INT:
98       /* CONST_DOUBLES never match, since HOST_BITS_PER_WIDE_INT is known
99          to be at least 32 and this all acceptable constants are
100          represented as CONST_INT.  */
101       if (HOST_BITS_PER_WIDE_INT == 32)
102         return 1;
103       else
104         {
105           HOST_WIDE_INT val = trunc_int_for_mode (INTVAL (op), DImode);
106           return trunc_int_for_mode (val, SImode) == val;
107         }
108       break;
109
110     case SYMBOL_REF:
111       /* For certain code models, the symbolic references are known to fit.
112          in CM_SMALL_PIC model we know it fits if it is local to the shared
113          library.  Don't count TLS SYMBOL_REFs here, since they should fit
114          only if inside of UNSPEC handled below.  */
115       /* TLS symbols are not constant.  */
116       if (SYMBOL_REF_TLS_MODEL (op))
117         return false;
118       return (ix86_cmodel == CM_SMALL || ix86_cmodel == CM_KERNEL
119               || (ix86_cmodel == CM_MEDIUM && !SYMBOL_REF_FAR_ADDR_P (op)));
120
121     case LABEL_REF:
122       /* For certain code models, the code is near as well.  */
123       return (ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM
124               || ix86_cmodel == CM_KERNEL);
125
126     case CONST:
127       /* We also may accept the offsetted memory references in certain
128          special cases.  */
129       if (GET_CODE (XEXP (op, 0)) == UNSPEC)
130         switch (XINT (XEXP (op, 0), 1))
131           {
132           case UNSPEC_GOTPCREL:
133           case UNSPEC_DTPOFF:
134           case UNSPEC_GOTNTPOFF:
135           case UNSPEC_NTPOFF:
136             return 1;
137           default:
138             break;
139           }
140
141       if (GET_CODE (XEXP (op, 0)) == PLUS)
142         {
143           rtx op1 = XEXP (XEXP (op, 0), 0);
144           rtx op2 = XEXP (XEXP (op, 0), 1);
145           HOST_WIDE_INT offset;
146
147           if (ix86_cmodel == CM_LARGE)
148             return 0;
149           if (GET_CODE (op2) != CONST_INT)
150             return 0;
151           offset = trunc_int_for_mode (INTVAL (op2), DImode);
152           switch (GET_CODE (op1))
153             {
154             case SYMBOL_REF:
155               /* TLS symbols are not constant.  */
156               if (SYMBOL_REF_TLS_MODEL (op1))
157                 return 0;
158               /* For CM_SMALL assume that latest object is 16MB before
159                  end of 31bits boundary.  We may also accept pretty
160                  large negative constants knowing that all objects are
161                  in the positive half of address space.  */
162               if ((ix86_cmodel == CM_SMALL
163                    || (ix86_cmodel == CM_MEDIUM
164                        && !SYMBOL_REF_FAR_ADDR_P (op1)))
165                   && offset < 16*1024*1024
166                   && trunc_int_for_mode (offset, SImode) == offset)
167                 return 1;
168               /* For CM_KERNEL we know that all object resist in the
169                  negative half of 32bits address space.  We may not
170                  accept negative offsets, since they may be just off
171                  and we may accept pretty large positive ones.  */
172               if (ix86_cmodel == CM_KERNEL
173                   && offset > 0
174                   && trunc_int_for_mode (offset, SImode) == offset)
175                 return 1;
176               break;
177
178             case LABEL_REF:
179               /* These conditions are similar to SYMBOL_REF ones, just the
180                  constraints for code models differ.  */
181               if ((ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM)
182                   && offset < 16*1024*1024
183                   && trunc_int_for_mode (offset, SImode) == offset)
184                 return 1;
185               if (ix86_cmodel == CM_KERNEL
186                   && offset > 0
187                   && trunc_int_for_mode (offset, SImode) == offset)
188                 return 1;
189               break;
190
191             case UNSPEC:
192               switch (XINT (op1, 1))
193                 {
194                 case UNSPEC_DTPOFF:
195                 case UNSPEC_NTPOFF:
196                   if (offset > 0
197                       && trunc_int_for_mode (offset, SImode) == offset)
198                     return 1;
199                 }
200               break;
201
202             default:
203               break;
204             }
205         }
206       break;
207
208       default:
209         gcc_unreachable ();
210     }
211
212   return 0;
213 })
214
215 ;; Return 1 if VALUE can be stored in the zero extended immediate field.
216 (define_predicate "x86_64_zext_immediate_operand"
217   (match_code "const_double,const_int,symbol_ref,label_ref,const")
218 {
219   switch (GET_CODE (op))
220     {
221     case CONST_DOUBLE:
222       if (HOST_BITS_PER_WIDE_INT == 32)
223         return (GET_MODE (op) == VOIDmode && !CONST_DOUBLE_HIGH (op));
224       else
225         return 0;
226
227     case CONST_INT:
228       if (HOST_BITS_PER_WIDE_INT == 32)
229         return INTVAL (op) >= 0;
230       else
231         return !(INTVAL (op) & ~(HOST_WIDE_INT) 0xffffffff);
232
233     case SYMBOL_REF:
234       /* For certain code models, the symbolic references are known to fit.  */
235       /* TLS symbols are not constant.  */
236       if (SYMBOL_REF_TLS_MODEL (op))
237         return false;
238       return (ix86_cmodel == CM_SMALL
239               || (ix86_cmodel == CM_MEDIUM
240                   && !SYMBOL_REF_FAR_ADDR_P (op)));
241
242     case LABEL_REF:
243       /* For certain code models, the code is near as well.  */
244       return ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM;
245
246     case CONST:
247       /* We also may accept the offsetted memory references in certain
248          special cases.  */
249       if (GET_CODE (XEXP (op, 0)) == PLUS)
250         {
251           rtx op1 = XEXP (XEXP (op, 0), 0);
252           rtx op2 = XEXP (XEXP (op, 0), 1);
253
254           if (ix86_cmodel == CM_LARGE)
255             return 0;
256           switch (GET_CODE (op1))
257             {
258             case SYMBOL_REF:
259               /* TLS symbols are not constant.  */
260               if (SYMBOL_REF_TLS_MODEL (op1))
261                 return 0;
262               /* For small code model we may accept pretty large positive
263                  offsets, since one bit is available for free.  Negative
264                  offsets are limited by the size of NULL pointer area
265                  specified by the ABI.  */
266               if ((ix86_cmodel == CM_SMALL
267                    || (ix86_cmodel == CM_MEDIUM
268                        && !SYMBOL_REF_FAR_ADDR_P (op1)))
269                   && GET_CODE (op2) == CONST_INT
270                   && trunc_int_for_mode (INTVAL (op2), DImode) > -0x10000
271                   && trunc_int_for_mode (INTVAL (op2), SImode) == INTVAL (op2))
272                 return 1;
273               /* ??? For the kernel, we may accept adjustment of
274                  -0x10000000, since we know that it will just convert
275                  negative address space to positive, but perhaps this
276                  is not worthwhile.  */
277               break;
278
279             case LABEL_REF:
280               /* These conditions are similar to SYMBOL_REF ones, just the
281                  constraints for code models differ.  */
282               if ((ix86_cmodel == CM_SMALL || ix86_cmodel == CM_MEDIUM)
283                   && GET_CODE (op2) == CONST_INT
284                   && trunc_int_for_mode (INTVAL (op2), DImode) > -0x10000
285                   && trunc_int_for_mode (INTVAL (op2), SImode) == INTVAL (op2))
286                 return 1;
287               break;
288
289             default:
290               return 0;
291             }
292         }
293       break;
294
295     default:
296       gcc_unreachable ();
297     }
298   return 0;
299 })
300
301 ;; Return nonzero if OP is general operand representable on x86_64.
302 (define_predicate "x86_64_general_operand"
303   (if_then_else (match_test "TARGET_64BIT")
304     (ior (match_operand 0 "nonimmediate_operand")
305          (match_operand 0 "x86_64_immediate_operand"))
306     (match_operand 0 "general_operand")))
307
308 ;; Return nonzero if OP is general operand representable on x86_64
309 ;; as either sign extended or zero extended constant.
310 (define_predicate "x86_64_szext_general_operand"
311   (if_then_else (match_test "TARGET_64BIT")
312     (ior (match_operand 0 "nonimmediate_operand")
313          (ior (match_operand 0 "x86_64_immediate_operand")
314               (match_operand 0 "x86_64_zext_immediate_operand")))
315     (match_operand 0 "general_operand")))
316
317 ;; Return nonzero if OP is nonmemory operand representable on x86_64.
318 (define_predicate "x86_64_nonmemory_operand"
319   (if_then_else (match_test "TARGET_64BIT")
320     (ior (match_operand 0 "register_operand")
321          (match_operand 0 "x86_64_immediate_operand"))
322     (match_operand 0 "nonmemory_operand")))
323
324 ;; Return nonzero if OP is nonmemory operand representable on x86_64.
325 (define_predicate "x86_64_szext_nonmemory_operand"
326   (if_then_else (match_test "TARGET_64BIT")
327     (ior (match_operand 0 "register_operand")
328          (ior (match_operand 0 "x86_64_immediate_operand")
329               (match_operand 0 "x86_64_zext_immediate_operand")))
330     (match_operand 0 "nonmemory_operand")))
331
332 ;; Return true when operand is PIC expression that can be computed by lea
333 ;; operation.
334 (define_predicate "pic_32bit_operand"
335   (match_code "const,symbol_ref,label_ref")
336 {
337   if (!flag_pic)
338     return 0;
339   /* Rule out relocations that translate into 64bit constants.  */
340   if (TARGET_64BIT && GET_CODE (op) == CONST)
341     {
342       op = XEXP (op, 0);
343       if (GET_CODE (op) == PLUS && GET_CODE (XEXP (op, 1)) == CONST_INT)
344         op = XEXP (op, 0);
345       if (GET_CODE (op) == UNSPEC
346           && (XINT (op, 1) == UNSPEC_GOTOFF
347               || XINT (op, 1) == UNSPEC_GOT))
348         return 0;
349     }
350   return symbolic_operand (op, mode);
351 })
352
353
354 ;; Return nonzero if OP is nonmemory operand acceptable by movabs patterns.
355 (define_predicate "x86_64_movabs_operand"
356   (if_then_else (match_test "!TARGET_64BIT || !flag_pic")
357     (match_operand 0 "nonmemory_operand")
358     (ior (match_operand 0 "register_operand")
359          (and (match_operand 0 "const_double_operand")
360               (match_test "GET_MODE_SIZE (mode) <= 8")))))
361
362 ;; Returns nonzero if OP is either a symbol reference or a sum of a symbol
363 ;; reference and a constant.
364 (define_predicate "symbolic_operand"
365   (match_code "symbol_ref,label_ref,const")
366 {
367   switch (GET_CODE (op))
368     {
369     case SYMBOL_REF:
370     case LABEL_REF:
371       return 1;
372
373     case CONST:
374       op = XEXP (op, 0);
375       if (GET_CODE (op) == SYMBOL_REF
376           || GET_CODE (op) == LABEL_REF
377           || (GET_CODE (op) == UNSPEC
378               && (XINT (op, 1) == UNSPEC_GOT
379                   || XINT (op, 1) == UNSPEC_GOTOFF
380                   || XINT (op, 1) == UNSPEC_GOTPCREL)))
381         return 1;
382       if (GET_CODE (op) != PLUS
383           || GET_CODE (XEXP (op, 1)) != CONST_INT)
384         return 0;
385
386       op = XEXP (op, 0);
387       if (GET_CODE (op) == SYMBOL_REF
388           || GET_CODE (op) == LABEL_REF)
389         return 1;
390       /* Only @GOTOFF gets offsets.  */
391       if (GET_CODE (op) != UNSPEC
392           || XINT (op, 1) != UNSPEC_GOTOFF)
393         return 0;
394
395       op = XVECEXP (op, 0, 0);
396       if (GET_CODE (op) == SYMBOL_REF
397           || GET_CODE (op) == LABEL_REF)
398         return 1;
399       return 0;
400
401     default:
402       gcc_unreachable ();
403     }
404 })
405
406 ;; Return true if the operand contains a @GOT or @GOTOFF reference.
407 (define_predicate "pic_symbolic_operand"
408   (match_code "const")
409 {
410   op = XEXP (op, 0);
411   if (TARGET_64BIT)
412     {
413       if (GET_CODE (op) == UNSPEC
414           && XINT (op, 1) == UNSPEC_GOTPCREL)
415         return 1;
416       if (GET_CODE (op) == PLUS
417           && GET_CODE (XEXP (op, 0)) == UNSPEC
418           && XINT (XEXP (op, 0), 1) == UNSPEC_GOTPCREL)
419         return 1;
420     }
421   else
422     {
423       if (GET_CODE (op) == UNSPEC)
424         return 1;
425       if (GET_CODE (op) != PLUS
426           || GET_CODE (XEXP (op, 1)) != CONST_INT)
427         return 0;
428       op = XEXP (op, 0);
429       if (GET_CODE (op) == UNSPEC)
430         return 1;
431     }
432   return 0;
433 })
434
435 ;; Return true if OP is a symbolic operand that resolves locally.
436 (define_predicate "local_symbolic_operand"
437   (match_code "const,label_ref,symbol_ref")
438 {
439   if (GET_CODE (op) == CONST
440       && GET_CODE (XEXP (op, 0)) == PLUS
441       && GET_CODE (XEXP (XEXP (op, 0), 1)) == CONST_INT)
442     op = XEXP (XEXP (op, 0), 0);
443
444   if (GET_CODE (op) == LABEL_REF)
445     return 1;
446
447   if (GET_CODE (op) != SYMBOL_REF)
448     return 0;
449
450   if (SYMBOL_REF_LOCAL_P (op))
451     return 1;
452
453   /* There is, however, a not insubstantial body of code in the rest of
454      the compiler that assumes it can just stick the results of
455      ASM_GENERATE_INTERNAL_LABEL in a symbol_ref and have done.  */
456   /* ??? This is a hack.  Should update the body of the compiler to
457      always create a DECL an invoke targetm.encode_section_info.  */
458   if (strncmp (XSTR (op, 0), internal_label_prefix,
459                internal_label_prefix_len) == 0)
460     return 1;
461
462   return 0;
463 })
464
465 ;; Test for various thread-local symbols.
466 (define_predicate "tls_symbolic_operand"
467   (and (match_code "symbol_ref")
468        (match_test "SYMBOL_REF_TLS_MODEL (op) != 0")))
469
470 (define_predicate "tls_modbase_operand"
471   (and (match_code "symbol_ref")
472        (match_test "op == ix86_tls_module_base ()")))
473
474 (define_predicate "tp_or_register_operand"
475   (ior (match_operand 0 "register_operand")
476        (and (match_code "unspec")
477             (match_test "XINT (op, 1) == UNSPEC_TP"))))
478
479 ;; Test for a pc-relative call operand
480 (define_predicate "constant_call_address_operand"
481   (ior (match_code "symbol_ref")
482        (match_operand 0 "local_symbolic_operand")))
483
484 ;; True for any non-virtual or eliminable register.  Used in places where
485 ;; instantiation of such a register may cause the pattern to not be recognized.
486 (define_predicate "register_no_elim_operand"
487   (match_operand 0 "register_operand")
488 {
489   if (GET_CODE (op) == SUBREG)
490     op = SUBREG_REG (op);
491   return !(op == arg_pointer_rtx
492            || op == frame_pointer_rtx
493            || (REGNO (op) >= FIRST_PSEUDO_REGISTER
494                && REGNO (op) <= LAST_VIRTUAL_REGISTER));
495 })
496
497 ;; Similarly, but include the stack pointer.  This is used to prevent esp
498 ;; from being used as an index reg.
499 (define_predicate "index_register_operand"
500   (match_operand 0 "register_operand")
501 {
502   if (GET_CODE (op) == SUBREG)
503     op = SUBREG_REG (op);
504   if (reload_in_progress || reload_completed)
505     return REG_OK_FOR_INDEX_STRICT_P (op);
506   else
507     return REG_OK_FOR_INDEX_NONSTRICT_P (op);
508 })
509
510 ;; Return false if this is any eliminable register.  Otherwise general_operand.
511 (define_predicate "general_no_elim_operand"
512   (if_then_else (match_code "reg,subreg")
513     (match_operand 0 "register_no_elim_operand")
514     (match_operand 0 "general_operand")))
515
516 ;; Return false if this is any eliminable register.  Otherwise
517 ;; register_operand or a constant.
518 (define_predicate "nonmemory_no_elim_operand"
519   (ior (match_operand 0 "register_no_elim_operand")
520        (match_operand 0 "immediate_operand")))
521
522 ;; Test for a valid operand for a call instruction.
523 (define_predicate "call_insn_operand"
524   (ior (match_operand 0 "constant_call_address_operand")
525        (ior (match_operand 0 "register_no_elim_operand")
526             (match_operand 0 "memory_operand"))))
527
528 ;; Similarly, but for tail calls, in which we cannot allow memory references.
529 (define_predicate "sibcall_insn_operand"
530   (ior (match_operand 0 "constant_call_address_operand")
531        (match_operand 0 "register_no_elim_operand")))
532
533 ;; Match exactly zero.
534 (define_predicate "const0_operand"
535   (match_code "const_int,const_double,const_vector")
536 {
537   if (mode == VOIDmode)
538     mode = GET_MODE (op);
539   return op == CONST0_RTX (mode);
540 })
541
542 ;; Match exactly one.
543 (define_predicate "const1_operand"
544   (and (match_code "const_int")
545        (match_test "op == const1_rtx")))
546
547 ;; Match exactly eight.
548 (define_predicate "const8_operand"
549   (and (match_code "const_int")
550        (match_test "INTVAL (op) == 8")))
551
552 ;; Match 2, 4, or 8.  Used for leal multiplicands.
553 (define_predicate "const248_operand"
554   (match_code "const_int")
555 {
556   HOST_WIDE_INT i = INTVAL (op);
557   return i == 2 || i == 4 || i == 8;
558 })
559
560 ;; Match 0 or 1.
561 (define_predicate "const_0_to_1_operand"
562   (and (match_code "const_int")
563        (match_test "op == const0_rtx || op == const1_rtx")))
564
565 ;; Match 0 to 3.
566 (define_predicate "const_0_to_3_operand"
567   (and (match_code "const_int")
568        (match_test "INTVAL (op) >= 0 && INTVAL (op) <= 3")))
569
570 ;; Match 0 to 7.
571 (define_predicate "const_0_to_7_operand"
572   (and (match_code "const_int")
573        (match_test "INTVAL (op) >= 0 && INTVAL (op) <= 7")))
574
575 ;; Match 0 to 15.
576 (define_predicate "const_0_to_15_operand"
577   (and (match_code "const_int")
578        (match_test "INTVAL (op) >= 0 && INTVAL (op) <= 15")))
579
580 ;; Match 0 to 63.
581 (define_predicate "const_0_to_63_operand"
582   (and (match_code "const_int")
583        (match_test "INTVAL (op) >= 0 && INTVAL (op) <= 63")))
584
585 ;; Match 0 to 255.
586 (define_predicate "const_0_to_255_operand"
587   (and (match_code "const_int")
588        (match_test "INTVAL (op) >= 0 && INTVAL (op) <= 255")))
589
590 ;; Match (0 to 255) * 8
591 (define_predicate "const_0_to_255_mul_8_operand"
592   (match_code "const_int")
593 {
594   unsigned HOST_WIDE_INT val = INTVAL (op);
595   return val <= 255*8 && val % 8 == 0;
596 })
597
598 ;; Return nonzero if OP is CONST_INT >= 1 and <= 31 (a valid operand
599 ;; for shift & compare patterns, as shifting by 0 does not change flags).
600 (define_predicate "const_1_to_31_operand"
601   (and (match_code "const_int")
602        (match_test "INTVAL (op) >= 1 && INTVAL (op) <= 31")))
603
604 ;; Match 2 or 3.
605 (define_predicate "const_2_to_3_operand"
606   (and (match_code "const_int")
607        (match_test "INTVAL (op) == 2 || INTVAL (op) == 3")))
608
609 ;; Match 4 to 7.
610 (define_predicate "const_4_to_7_operand"
611   (and (match_code "const_int")
612        (match_test "INTVAL (op) >= 4 && INTVAL (op) <= 7")))
613
614 ;; Match exactly one bit in 4-bit mask.
615 (define_predicate "const_pow2_1_to_8_operand"
616   (match_code "const_int")
617 {
618   unsigned int log = exact_log2 (INTVAL (op));
619   return log <= 3;
620 })
621
622 ;; Match exactly one bit in 8-bit mask.
623 (define_predicate "const_pow2_1_to_128_operand"
624   (match_code "const_int")
625 {
626   unsigned int log = exact_log2 (INTVAL (op));
627   return log <= 7;
628 })
629
630 ;; True if this is a constant appropriate for an increment or decrement.
631 (define_predicate "incdec_operand"
632   (match_code "const_int")
633 {
634   /* On Pentium4, the inc and dec operations causes extra dependency on flag
635      registers, since carry flag is not set.  */
636   if (!TARGET_USE_INCDEC && !optimize_size)
637     return 0;
638   return op == const1_rtx || op == constm1_rtx;
639 })
640
641 ;; True for registers, or 1 or -1.  Used to optimize double-word shifts.
642 (define_predicate "reg_or_pm1_operand"
643   (ior (match_operand 0 "register_operand")
644        (and (match_code "const_int")
645             (match_test "op == const1_rtx || op == constm1_rtx"))))
646
647 ;; True if OP is acceptable as operand of DImode shift expander.
648 (define_predicate "shiftdi_operand"
649   (if_then_else (match_test "TARGET_64BIT")
650     (match_operand 0 "nonimmediate_operand")
651     (match_operand 0 "register_operand")))
652
653 (define_predicate "ashldi_input_operand"
654   (if_then_else (match_test "TARGET_64BIT")
655     (match_operand 0 "nonimmediate_operand")
656     (match_operand 0 "reg_or_pm1_operand")))
657
658 ;; Return true if OP is a vector load from the constant pool with just
659 ;; the first element nonzero.
660 (define_predicate "zero_extended_scalar_load_operand"
661   (match_code "mem")
662 {
663   unsigned n_elts;
664   op = maybe_get_pool_constant (op);
665   if (!op)
666     return 0;
667   if (GET_CODE (op) != CONST_VECTOR)
668     return 0;
669   n_elts =
670     (GET_MODE_SIZE (GET_MODE (op)) /
671      GET_MODE_SIZE (GET_MODE_INNER (GET_MODE (op))));
672   for (n_elts--; n_elts > 0; n_elts--)
673     {
674       rtx elt = CONST_VECTOR_ELT (op, n_elts);
675       if (elt != CONST0_RTX (GET_MODE_INNER (GET_MODE (op))))
676         return 0;
677     }
678   return 1;
679 })
680
681 /* Return true if operand is a vector constant that is all ones. */
682 (define_predicate "vector_all_ones_operand"
683   (match_code "const_vector")
684 {
685   int nunits = GET_MODE_NUNITS (mode);
686
687   if (GET_CODE (op) == CONST_VECTOR
688       && CONST_VECTOR_NUNITS (op) == nunits)
689     {
690       int i;
691       for (i = 0; i < nunits; ++i)
692         {
693           rtx x = CONST_VECTOR_ELT (op, i);
694           if (x != constm1_rtx)
695             return 0;
696         }
697       return 1;
698     }
699
700   return 0;
701 })
702
703 ; Return 1 when OP is operand acceptable for standard SSE move.
704 (define_predicate "vector_move_operand"
705   (ior (match_operand 0 "nonimmediate_operand")
706        (match_operand 0 "const0_operand")))
707
708 ;; Return 1 when OP is nonimmediate or standard SSE constant.
709 (define_predicate "nonimmediate_or_sse_const_operand"
710   (match_operand 0 "general_operand")
711 {
712   if (nonimmediate_operand (op, mode))
713     return 1;
714   if (standard_sse_constant_p (op) > 0)
715     return 1;
716   return 0;
717 })
718
719 ;; Return true if OP is a register or a zero.
720 (define_predicate "reg_or_0_operand"
721   (ior (match_operand 0 "register_operand")
722        (match_operand 0 "const0_operand")))
723
724 ;; Return true if op if a valid address, and does not contain
725 ;; a segment override.
726 (define_special_predicate "no_seg_address_operand"
727   (match_operand 0 "address_operand")
728 {
729   struct ix86_address parts;
730   int ok;
731
732   ok = ix86_decompose_address (op, &parts);
733   gcc_assert (ok);
734   return parts.seg == SEG_DEFAULT;
735 })
736
737 ;; Return nonzero if the rtx is known to be at least 32 bits aligned.
738 (define_predicate "aligned_operand"
739   (match_operand 0 "general_operand")
740 {
741   struct ix86_address parts;
742   int ok;
743
744   /* Registers and immediate operands are always "aligned".  */
745   if (GET_CODE (op) != MEM)
746     return 1;
747
748   /* All patterns using aligned_operand on memory operands ends up
749      in promoting memory operand to 64bit and thus causing memory mismatch.  */
750   if (TARGET_MEMORY_MISMATCH_STALL && !optimize_size)
751     return 0;
752
753   /* Don't even try to do any aligned optimizations with volatiles.  */
754   if (MEM_VOLATILE_P (op))
755     return 0;
756
757   if (MEM_ALIGN (op) >= 32)
758     return 1;
759
760   op = XEXP (op, 0);
761
762   /* Pushes and pops are only valid on the stack pointer.  */
763   if (GET_CODE (op) == PRE_DEC
764       || GET_CODE (op) == POST_INC)
765     return 1;
766
767   /* Decode the address.  */
768   ok = ix86_decompose_address (op, &parts);
769   gcc_assert (ok);
770
771   /* Look for some component that isn't known to be aligned.  */
772   if (parts.index)
773     {
774       if (REGNO_POINTER_ALIGN (REGNO (parts.index)) * parts.scale < 32)
775         return 0;
776     }
777   if (parts.base)
778     {
779       if (REGNO_POINTER_ALIGN (REGNO (parts.base)) < 32)
780         return 0;
781     }
782   if (parts.disp)
783     {
784       if (GET_CODE (parts.disp) != CONST_INT
785           || (INTVAL (parts.disp) & 3) != 0)
786         return 0;
787     }
788
789   /* Didn't find one -- this must be an aligned address.  */
790   return 1;
791 })
792
793 ;; Returns 1 if OP is memory operand with a displacement.
794 (define_predicate "memory_displacement_operand"
795   (match_operand 0 "memory_operand")
796 {
797   struct ix86_address parts;
798   int ok;
799
800   ok = ix86_decompose_address (XEXP (op, 0), &parts);
801   gcc_assert (ok);
802   return parts.disp != NULL_RTX;
803 })
804
805 ;; Returns 1 if OP is memory operand with a displacement only.
806 (define_predicate "memory_displacement_only_operand"
807   (match_operand 0 "memory_operand")
808 {
809   struct ix86_address parts;
810   int ok;
811
812   ok = ix86_decompose_address (XEXP (op, 0), &parts);
813   gcc_assert (ok);
814
815   if (parts.base || parts.index)
816     return 0;
817
818   return parts.disp != NULL_RTX;
819 })
820
821 ;; Returns 1 if OP is memory operand that cannot be represented
822 ;; by the modRM array.
823 (define_predicate "long_memory_operand"
824   (and (match_operand 0 "memory_operand")
825        (match_test "memory_address_length (op) != 0")))
826
827 ;; Return 1 if OP is a comparison operator that can be issued by fcmov.
828 (define_predicate "fcmov_comparison_operator"
829   (match_operand 0 "comparison_operator")
830 {
831   enum machine_mode inmode = GET_MODE (XEXP (op, 0));
832   enum rtx_code code = GET_CODE (op);
833
834   if (inmode == CCFPmode || inmode == CCFPUmode)
835     {
836       enum rtx_code second_code, bypass_code;
837       ix86_fp_comparison_codes (code, &bypass_code, &code, &second_code);
838       if (bypass_code != UNKNOWN || second_code != UNKNOWN)
839         return 0;
840       code = ix86_fp_compare_code_to_integer (code);
841     }
842   /* i387 supports just limited amount of conditional codes.  */
843   switch (code)
844     {
845     case LTU: case GTU: case LEU: case GEU:
846       if (inmode == CCmode || inmode == CCFPmode || inmode == CCFPUmode)
847         return 1;
848       return 0;
849     case ORDERED: case UNORDERED:
850     case EQ: case NE:
851       return 1;
852     default:
853       return 0;
854     }
855 })
856
857 ;; Return 1 if OP is a comparison that can be used in the CMPSS/CMPPS insns.
858 ;; The first set are supported directly; the second set can't be done with
859 ;; full IEEE support, i.e. NaNs.
860 ;;
861 ;; ??? It would seem that we have a lot of uses of this predicate that pass
862 ;; it the wrong mode.  We got away with this because the old function didn't
863 ;; check the mode at all.  Mirror that for now by calling this a special
864 ;; predicate.
865
866 (define_special_predicate "sse_comparison_operator"
867   (match_code "eq,lt,le,unordered,ne,unge,ungt,ordered"))
868
869 ;; Return 1 if OP is a valid comparison operator in valid mode.
870 (define_predicate "ix86_comparison_operator"
871   (match_operand 0 "comparison_operator")
872 {
873   enum machine_mode inmode = GET_MODE (XEXP (op, 0));
874   enum rtx_code code = GET_CODE (op);
875
876   if (inmode == CCFPmode || inmode == CCFPUmode)
877     {
878       enum rtx_code second_code, bypass_code;
879       ix86_fp_comparison_codes (code, &bypass_code, &code, &second_code);
880       return (bypass_code == UNKNOWN && second_code == UNKNOWN);
881     }
882   switch (code)
883     {
884     case EQ: case NE:
885       return 1;
886     case LT: case GE:
887       if (inmode == CCmode || inmode == CCGCmode
888           || inmode == CCGOCmode || inmode == CCNOmode)
889         return 1;
890       return 0;
891     case LTU: case GTU: case LEU: case ORDERED: case UNORDERED: case GEU:
892       if (inmode == CCmode)
893         return 1;
894       return 0;
895     case GT: case LE:
896       if (inmode == CCmode || inmode == CCGCmode || inmode == CCNOmode)
897         return 1;
898       return 0;
899     default:
900       return 0;
901     }
902 })
903
904 ;; Return 1 if OP is a valid comparison operator testing carry flag to be set.
905 (define_predicate "ix86_carry_flag_operator"
906   (match_code "ltu,lt,unlt,gt,ungt,le,unle,ge,unge,ltgt,uneq")
907 {
908   enum machine_mode inmode = GET_MODE (XEXP (op, 0));
909   enum rtx_code code = GET_CODE (op);
910
911   if (GET_CODE (XEXP (op, 0)) != REG
912       || REGNO (XEXP (op, 0)) != FLAGS_REG
913       || XEXP (op, 1) != const0_rtx)
914     return 0;
915
916   if (inmode == CCFPmode || inmode == CCFPUmode)
917     {
918       enum rtx_code second_code, bypass_code;
919       ix86_fp_comparison_codes (code, &bypass_code, &code, &second_code);
920       if (bypass_code != UNKNOWN || second_code != UNKNOWN)
921         return 0;
922       code = ix86_fp_compare_code_to_integer (code);
923     }
924   else if (inmode != CCmode)
925     return 0;
926
927   return code == LTU;
928 })
929
930 ;; Nearly general operand, but accept any const_double, since we wish
931 ;; to be able to drop them into memory rather than have them get pulled
932 ;; into registers.
933 (define_predicate "cmp_fp_expander_operand"
934   (ior (match_code "const_double")
935        (match_operand 0 "general_operand")))
936
937 ;; Return true if this is a valid binary floating-point operation.
938 (define_predicate "binary_fp_operator"
939   (match_code "plus,minus,mult,div"))
940
941 ;; Return true if this is a multiply operation.
942 (define_predicate "mult_operator"
943   (match_code "mult"))
944
945 ;; Return true if this is a division operation.
946 (define_predicate "div_operator"
947   (match_code "div"))
948
949 ;; Return true if this is a float extend operation.
950 (define_predicate "float_operator"
951   (match_code "float"))
952
953 ;; Return true for ARITHMETIC_P.
954 (define_predicate "arith_or_logical_operator"
955   (match_code "plus,mult,and,ior,xor,smin,smax,umin,umax,compare,minus,div,
956                mod,udiv,umod,ashift,rotate,ashiftrt,lshiftrt,rotatert"))
957
958 ;; Return 1 if OP is a binary operator that can be promoted to wider mode.
959 ;; Modern CPUs have same latency for HImode and SImode multiply,
960 ;; but 386 and 486 do HImode multiply faster.  */
961 (define_predicate "promotable_binary_operator"
962   (ior (match_code "plus,and,ior,xor,ashift")
963        (and (match_code "mult")
964             (match_test "ix86_tune > PROCESSOR_I486"))))
965
966 ;; To avoid problems when jump re-emits comparisons like testqi_ext_ccno_0,
967 ;; re-recognize the operand to avoid a copy_to_mode_reg that will fail.
968 ;;
969 ;; ??? It seems likely that this will only work because cmpsi is an
970 ;; expander, and no actual insns use this.
971
972 (define_predicate "cmpsi_operand"
973   (ior (match_operand 0 "nonimmediate_operand")
974        (and (match_code "and")
975             (match_code "zero_extract" "0")
976             (match_code "const_int"    "1")
977             (match_code "const_int"    "01")
978             (match_code "const_int"    "02")
979             (match_test "INTVAL (XEXP (XEXP (op, 0), 1)) == 8")
980             (match_test "INTVAL (XEXP (XEXP (op, 0), 2)) == 8")
981        )))
982
983 (define_predicate "compare_operator"
984   (match_code "compare"))
985
986 (define_predicate "absneg_operator"
987   (match_code "abs,neg"))