libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / config / pa / predicates.md
blob0c6e41be31fb9c125e6bce14db89360efc2cc771
1 ;; Predicate definitions for HP PA-RISC.
2 ;; Copyright (C) 2005-2024 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 3, or (at your option)
9 ;; any later version.
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 truth value of whether OP is an integer which fits the range
21 ;; constraining 5-bit signed immediate operands in three-address insns.
23 (define_predicate "int5_operand"
24   (and (match_code "const_int")
25        (match_test "INT_5_BITS (op)")))
27 ;; Return truth value of whether OP is an integer which fits the range
28 ;; constraining 5-bit unsigned immediate operands in three-address insns.
30 (define_predicate "uint5_operand"
31   (and (match_code "const_int")
32        (match_test "INT_U5_BITS (op)")))
34 ;; Return truth value of whether OP is an integer which fits the range
35 ;; constraining 6-bit unsigned immediate operands in three-address insns.
37 (define_predicate "uint6_operand"
38   (and (match_code "const_int")
39        (match_test "INT_U6_BITS (op)")))
41 ;; Return truth value of whether OP is an integer which fits the range
42 ;; constraining 11-bit signed immediate operands in three-address insns.
44 (define_predicate "int11_operand"
45   (and (match_code "const_int")
46        (match_test "INT_11_BITS (op)")))
48 ;; Return truth value of whether OP is an integer which fits the range
49 ;; constraining 14-bit signed immediate operands in three-address insns.
51 (define_predicate "int14_operand"
52   (and (match_code "const_int")
53        (match_test "INT_14_BITS (op)")))
55 ;; True iff OP is a const_int or const_double that will fit in 32 bits.
57 (define_predicate "uint32_operand"
58   (if_then_else (match_test "HOST_BITS_PER_WIDE_INT > 32")
59     (and (match_code "const_int")
60          (match_test "INTVAL (op) >= 0
61                       && INTVAL (op) < (HOST_WIDE_INT) 1 << 32"))
62     (and (match_code "const_int,const_double")
63          (match_test "CONST_INT_P (op) || CONST_DOUBLE_HIGH (op) == 0"))))
65 ;; True iff depi can be used to compute (reg | OP).
67 (define_predicate "cint_ior_operand"
68   (and (match_code "const_int")
69        (match_test "pa_ior_mask_p (INTVAL (op))")))
71 ;; True iff OP is CONST_INT that can be moved in one instruction
72 ;; into a general register.
74 (define_predicate "cint_move_operand"
75   (and (match_code "const_int")
76        (match_test "pa_cint_ok_for_move (INTVAL (op))")))
78 ;; True iff OP is a CONST0_RTX for MODE.
80 (define_predicate "const_0_operand"
81   (and (match_code "const_int,const_double")
82        (match_test "op == CONST0_RTX (mode)")))
84 ;; A constant integer suitable for use in a PRE_MODIFY memory reference.
86 (define_predicate "pre_cint_operand"
87   (and (match_code "const_int")
88        (match_test "INTVAL (op) >= -0x2000 && INTVAL (op) < 0x10")))
90 ;; A constant integer suitable for use in a POST_MODIFY memory reference.
92 (define_predicate "post_cint_operand"
93   (and (match_code "const_int")
94        (match_test "INTVAL (op) < 0x2000 && INTVAL (op) >= -0x10")))
96 ;; True iff depi or extru can be used to compute (reg & OP).
98 (define_predicate "and_operand"
99   (ior (match_operand 0 "register_operand")
100        (and (match_code "const_int")
101             (match_test "pa_and_mask_p (INTVAL (op))"))))
103 ;; Return truth value of whether OP can be used as an operand in a
104 ;; three operand arithmetic insn that accepts registers of mode MODE
105 ;; or 5-bit signed integers.
107 (define_predicate "arith5_operand"
108   (ior (match_operand 0 "register_operand")
109        (match_operand 0 "int5_operand")))
111 ;; Return truth value of whether OP can be used as an operand in a
112 ;; three operand arithmetic insn that accepts registers of mode MODE
113 ;; or 11-bit signed integers.
115 (define_predicate "arith11_operand"
116   (ior (match_operand 0 "register_operand")
117        (match_operand 0 "int11_operand")))
119 ;; Return truth value of whether OP can be used as an operand in a
120 ;; three operand arithmetic insn that accepts registers of mode MODE
121 ;; or 14-bit signed integers.
123 (define_predicate "arith14_operand"
124   (ior (match_operand 0 "register_operand")
125        (match_operand 0 "int14_operand")))
127 ;; Return truth value of whether OP can be used as an operand in a
128 ;; three operand arithmetic insn that accepts registers of mode MODE
129 ;; or 32-bit signed integers.
131 (define_predicate "arith32_operand"
132   (ior (match_operand 0 "register_operand")
133        (match_code "const_int")))
135 ;; Return truth value of whether OP can be used as a shift operand in
136 ;; a shift insn that accepts registers of mode MODE or 5-bit shift amounts.
138 (define_predicate "shift5_operand"
139   (ior (match_operand 0 "register_operand")
140        (match_operand 0 "uint5_operand")))
142 ;; Return truth value of whether OP can be used as a shift operand in
143 ;; a shift insn that accepts registers of mode MODE or 6-bit shift amounts.
145 (define_predicate "shift6_operand"
146   (ior (match_operand 0 "register_operand")
147        (match_operand 0 "uint6_operand")))
149 ;; True iff OP can be used as an operand in an adddi3 insn.
151 (define_predicate "adddi3_operand"
152   (if_then_else (match_test "TARGET_64BIT")
153     (match_operand 0 "arith14_operand")
154     (match_operand 0 "arith11_operand")))
156 ;; True iff OP is valid as a base or index register in a REG+REG address.
158 (define_predicate "borx_reg_operand"
159   (match_code "reg")
161   /* We must reject virtual registers as the only expressions that
162      can be instantiated are REG and REG+CONST.  */
163   if (op == virtual_incoming_args_rtx
164       || op == virtual_stack_vars_rtx
165       || op == virtual_stack_dynamic_rtx
166       || op == virtual_outgoing_args_rtx
167       || op == virtual_cfa_rtx)
168     return false;
170   /* While it's always safe to index off the frame pointer, it's not
171      profitable to do so when the frame pointer is being eliminated.  */
172   if (!reload_completed
173       && flag_omit_frame_pointer
174       && !cfun->calls_alloca
175       && op == frame_pointer_rtx)
176     return false;
178   return register_operand (op, mode);
181 ;; Return nonzero if OP is suitable for use in a call to a named
182 ;; function.
184 ;; For 2.5 try to eliminate either call_operand_address or
185 ;; function_label_operand, they perform very similar functions.
187 (define_predicate "call_operand_address"
188   (match_code "label_ref,symbol_ref,const_int,const_double,const,high")
190   return (GET_MODE (op) == word_mode
191           && CONSTANT_P (op) && ! TARGET_PORTABLE_RUNTIME);
194 ;; True iff OP can be used as the divisor in a div millicode call.
196 (define_predicate "div_operand"
197   (match_code "reg,const_int")
199   return (mode == SImode
200           && ((REG_P (op) && REGNO (op) == 25)
201               || (CONST_INT_P (op)
202                   && INTVAL (op) > 0 && INTVAL (op) < 16
203                   && pa_magic_milli[INTVAL (op)])));
206 ;; True iff OP is a reloading floating point register
208 (define_predicate "fp_reg_operand"
209   (and (match_code "reg")
210        (match_test "reg_renumber && FP_REG_P (op)")))
212 ;; True iff OP is a function label operand.
214 (define_special_predicate "function_label_operand"
215   (and (match_code "symbol_ref")
216        (match_test "FUNCTION_NAME_P (XSTR (op, 0))")))
218 ;; True iff OP is an indexed memory operand.
220 (define_predicate "indexed_memory_operand"
221   (match_code "subreg,mem")
223   if (GET_MODE (op) != mode)
224     return false;
226   /* Before reload, a (SUBREG (MEM...)) forces reloading into a register.  */
227   if (reload_completed && GET_CODE (op) == SUBREG)
228     op = SUBREG_REG (op);
230   if (! MEM_P (op))
231     return false;
233   op = XEXP (op, 0);
234   return IS_INDEX_ADDR_P (op) && memory_address_p (mode, op);
237 ;; True iff OP is a register plus base memory operand.
239 (define_predicate "reg_plus_base_memory_operand"
240   (match_code "subreg,mem")
242   if (GET_MODE (op) != mode)
243     return false;
245   /* Before reload, a (SUBREG (MEM...)) forces reloading into a register.  */
246   if (reload_completed && GET_CODE (op) == SUBREG)
247     op = SUBREG_REG (op);
249   if (! MEM_P (op))
250     return false;
252   op = XEXP (op, 0);
253   if (GET_CODE (op) != PLUS)
254     return false;
256   if (REG_P (XEXP (op, 0)) && REG_OK_FOR_BASE_P (XEXP (op, 0)))
257     return GET_CODE (XEXP (op, 1)) == CONST_INT;
259   return false;
262 ;; True iff OP is a base14 operand.
264 (define_predicate "base14_operand"
265   (match_code "const_int")
267   if (!INT_14_BITS (op))
268     return false;
270   /* Short displacement.  */
271   if (INT_5_BITS (op))
272     return true;
274   /* Although this may not be necessary, we require that the
275      base value is correctly aligned for its mode as this is
276      assumed in the instruction encoding.  */
277   switch (mode)
278     {
279     case E_BLKmode:
280     case E_QImode:
281     case E_HImode:
282       return true;
284     case E_VOIDmode:
285       return false;
287     default:
288       return (INTVAL (op) % GET_MODE_SIZE (mode)) == 0;
289     }
291   return false;
294 ;; True iff the operand OP can be used as the destination operand of
295 ;; an integer store.  This also implies the operand could be used as
296 ;; the source operand of an integer load.  LO_SUM DLT and indexed
297 ;; memory operands are not allowed.  We accept reloading pseudos and
298 ;; other memory operands.
300 (define_predicate "integer_store_memory_operand"
301   (match_code "reg,mem")
303   if (reload_in_progress
304       && REG_P (op)
305       && REGNO (op) >= FIRST_PSEUDO_REGISTER
306       && reg_renumber [REGNO (op)] < 0)
307     return true;
309   if (reg_plus_base_memory_operand (op, mode))
310     {
311       /* There is no support for handling secondary reloads of integer
312          REG+D instructions in pa_emit_move_sequence.  Further, the Q
313          constraint is used in more than simple move instructions.  So,
314          we must return true and let reload handle the reload.  */
315       if (reload_in_progress)
316         return true;
318       /* Extract CONST_INT operand.  */
319       if (GET_CODE (op) == SUBREG)
320         op = SUBREG_REG (op);
321       op = XEXP (op, 0);
322       op = REG_P (XEXP (op, 0)) ? XEXP (op, 1) : XEXP (op, 0);
323       return base14_operand (op, mode);
324     }
326   if (!MEM_P (op))
327     return false;
329   return ((reload_in_progress || memory_address_p (mode, XEXP (op, 0)))
330           && !IS_LO_SUM_DLT_ADDR_P (XEXP (op, 0))
331           && !IS_INDEX_ADDR_P (XEXP (op, 0)));
334 ;; True iff the operand OP can be used as the destination operand of a
335 ;; floating point store.  This also implies the operand could be used as
336 ;; the source operand of a floating point load.  LO_SUM DLT and indexed
337 ;; memory operands are not allowed.  Symbolic operands are accepted for
338 ;; PA 2.0.  We accept reloading pseudos and other memory operands.
340 ;; NOTE: The GNU ELF32 linker clobbered the least significant bit of
341 ;; the target floating-point register in PA 2.0 floating-point loads
342 ;; and stores with long displacements in ld versions prior to 2.42.
343 ;; The global pointer also was not double-word aligned.  This broke
344 ;; various DPREL relocations.
346 (define_predicate "floating_point_store_memory_operand"
347   (match_code "reg,mem")
349   if (reload_in_progress
350       && REG_P (op)
351       && REGNO (op) >= FIRST_PSEUDO_REGISTER
352       && reg_renumber [REGNO (op)] < 0)
353     return true;
355   if (reg_plus_base_memory_operand (op, mode))
356     {
357       /* Extract CONST_INT operand.  */
358       if (GET_CODE (op) == SUBREG)
359         op = SUBREG_REG (op);
360       op = XEXP (op, 0);
361       op = REG_P (XEXP (op, 0)) ? XEXP (op, 1) : XEXP (op, 0);
362       return ((INT14_OK_STRICT && base14_operand (op, mode))
363               || INT_5_BITS (op));
364     }
366   if (!MEM_P (op))
367     return false;
369   return ((reload_in_progress || memory_address_p (mode, XEXP (op, 0)))
370           && (INT14_OK_STRICT || !symbolic_memory_operand (op, VOIDmode))
371           && !IS_LO_SUM_DLT_ADDR_P (XEXP (op, 0))
372           && !IS_INDEX_ADDR_P (XEXP (op, 0)));
375 ;; Return true iff OP is an integer register.
377 (define_predicate "ireg_operand"
378   (and (match_code "reg")
379        (match_test "REGNO (op) > 0 && REGNO (op) < 32")))
381 ;; Return truth value of whether OP is an integer which fits the range
382 ;; constraining immediate operands in three-address insns, or is an
383 ;; integer register.
385 (define_predicate "ireg_or_int5_operand"
386   (ior (match_operand 0 "ireg_operand")
387        (match_operand 0 "int5_operand")))
389 ;; True iff OP is a CONST_INT of the forms 0...0xxxx, 0...01...1xxxx,
390 ;; or 1...1xxxx. Such values can be the left hand side x in (x << r),
391 ;; using the zvdepi instruction.
393 (define_predicate "lhs_lshift_cint_operand"
394   (match_code "const_int")
396   unsigned HOST_WIDE_INT x;
397   x = INTVAL (op) >> 4;
398   return (x & (x + 1)) == 0;
401 ;; True iff OP can be used in a zvdep instruction.
403 (define_predicate "lhs_lshift_operand"
404   (ior (match_operand 0 "register_operand")
405        (match_operand 0 "lhs_lshift_cint_operand")))
407 ;; Accept anything that can be used as a destination operand for a
408 ;; move instruction.  We don't accept indexed memory operands since
409 ;; they are supported only for floating point stores.
411 (define_predicate "move_dest_operand"
412   (match_code "subreg,reg,mem")
414   if (register_operand (op, mode))
415     return true;
417   if (GET_MODE (op) != mode)
418     return false;
420   if (GET_CODE (op) == SUBREG)
421     op = SUBREG_REG (op);
423   if (! MEM_P (op))
424     return false;
426   op = XEXP (op, 0);
428   return (memory_address_p (mode, op)
429           && !IS_INDEX_ADDR_P (op)
430           && !IS_LO_SUM_DLT_ADDR_P (op));
433 ;; Accept anything that can be used as a source operand for a move
434 ;; instruction.
436 (define_predicate "move_src_operand"
437   (match_code "subreg,reg,const_int,const_double,mem")
439   if (register_operand (op, mode))
440     return true;
442   if (op == CONST0_RTX (mode))
443     return true;
445   if (CONST_INT_P (op))
446     return pa_cint_ok_for_move (INTVAL (op));
448   if (GET_MODE (op) != mode)
449     return false;
451   if (GET_CODE (op) == SUBREG)
452     op = SUBREG_REG (op);
454   if (! MEM_P (op))
455     return false;
457   /* Until problems with management of the REG_POINTER flag are resolved,
458      we need to delay creating move insns with unscaled indexed addresses
459      until CSE is not expected.  */
460   if (!TARGET_NO_SPACE_REGS
461       && !cse_not_expected
462       && GET_CODE (XEXP (op, 0)) == PLUS
463       && REG_P (XEXP (XEXP (op, 0), 0))
464       && REG_P (XEXP (XEXP (op, 0), 1)))
465     return false;
467   return memory_address_p (mode, XEXP (op, 0));
470 ;; True iff OP is a valid memory operand. 
472 (define_predicate "mem_operand"
473   (match_code "subreg,mem")
475   if (GET_CODE (op) == SUBREG)
476     op = SUBREG_REG (op);
478   if (! MEM_P (op))
479     return false;
481   /* Until problems with management of the REG_POINTER flag are resolved,
482      we need to delay creating move insns with unscaled indexed addresses
483      until CSE is not expected.  */
484   if (!TARGET_NO_SPACE_REGS
485       && !cse_not_expected
486       && GET_CODE (XEXP (op, 0)) == PLUS
487       && REG_P (XEXP (XEXP (op, 0), 0))
488       && REG_P (XEXP (XEXP (op, 0), 1)))
489     return false;
491   return (memory_address_p (mode, XEXP (op, 0)));
494 ;; True iff OP is anything other than a hard register.
496 (define_predicate "non_hard_reg_operand"
497   (match_test "! (REG_P (op) && REGNO (op) < FIRST_PSEUDO_REGISTER)"))
499 ;; True iff OP is a reference to a label whose address can be loaded
500 ;; while generating PIC code.
502 (define_predicate "pic_label_operand"
503   (match_code "label_ref,const")
505   if (!flag_pic)
506     return false;
508   switch (GET_CODE (op))
509     {
510     case LABEL_REF:
511       return true;
512     case CONST:
513       op = XEXP (op, 0);
514       return (GET_CODE (XEXP (op, 0)) == LABEL_REF
515               && CONST_INT_P (XEXP (op, 1)));
516     default:
517       gcc_unreachable ();
518     }
519   return false;
522 ;; True iff the operand OP lives in text space.  OP is a symbolic operand.
523 ;; If so, SYMBOL_REF_FLAG, which is set by pa_encode_section_info, is true.
525 (define_special_predicate "read_only_operand"
526   (match_test "true")
528   if (GET_CODE (op) == CONST)
529     op = XEXP (XEXP (op, 0), 0);
530   if (GET_CODE (op) == SYMBOL_REF)
531     {
532       if (flag_pic)
533         return SYMBOL_REF_FLAG (op) && !CONSTANT_POOL_ADDRESS_P (op);
534       else
535         return SYMBOL_REF_FLAG (op) || CONSTANT_POOL_ADDRESS_P (op);
536     }
537   return true;
540 ;; True iff the operand is a register operand, or a non-symbolic
541 ;; memory operand after reload.  A SUBREG is not accepted since it
542 ;; will need a reload.
544 ;; This predicate is used for branch patterns that internally handle
545 ;; register reloading.  We need to accept non-symbolic memory operands
546 ;; after reload to ensure that the pattern is still valid if reload
547 ;; didn't find a hard register for the operand.  We also reject index
548 ;; and lo_sum DLT address as these are invalid for move destinations.
550 (define_predicate "reg_before_reload_operand"
551   (match_code "reg,mem")
553   rtx op0;
555   if (register_operand (op, mode))
556     return true;
558   if (!reload_in_progress && !reload_completed)
559     return false;
561   if (! MEM_P (op))
562     return false;
564   op0 = XEXP (op, 0);
566   return (memory_address_p (mode, op0)
567           && !IS_INDEX_ADDR_P (op0)
568           && !IS_LO_SUM_DLT_ADDR_P (op0)
569           && !symbolic_memory_operand (op, mode));
572 ;; True iff OP is a register or const_0 operand for MODE.
574 (define_predicate "reg_or_0_operand"
575   (ior (match_operand 0 "register_operand")
576        (match_operand 0 "const_0_operand")))
578 ;; True iff OP is either a register, zero, or a memory operand.
580 (define_predicate "reg_or_0_or_mem_operand"
581   (ior (match_operand 0 "reg_or_0_operand")
582        (match_operand 0 "mem_operand")))
584 ;; Accept REG and any CONST_INT that can be moved in one instruction
585 ;; into a general register.
587 (define_predicate "reg_or_cint_move_operand"
588   (ior (match_operand 0 "register_operand")
589        (match_operand 0 "cint_move_operand")))
591 ;; True iff OP can be used to compute (reg | OP).
593 (define_predicate "reg_or_cint_ior_operand"
594   (ior (match_operand 0 "register_operand")
595        (match_operand 0 "cint_ior_operand")))
597 ;; Return 1 if OP is a CONST_INT with the value 2, 4, or 8.  These are
598 ;; the valid constants for shadd instructions.
600 (define_predicate "mem_shadd_operand"
601   (and (match_code "const_int")
602        (match_test "pa_mem_shadd_constant_p (INTVAL (op))")))
604 (define_predicate "shadd_operand"
605   (and (match_code "const_int")
606        (match_test "pa_shadd_constant_p (INTVAL (op))")))
608 ;; Return truth value of statement that OP is a symbolic memory operand.
610 (define_predicate "symbolic_memory_operand"
611   (match_code "subreg,mem")
613   if (GET_CODE (op) == SUBREG)
614     op = SUBREG_REG (op);
615   if (!MEM_P (op))
616     return false;
617   op = XEXP (op, 0);
618   if (GET_CODE (op) == LO_SUM)
619     op = XEXP (op, 1);
620   return pa_symbolic_expression_p (op);
623 ;; True iff OP is a symbolic operand.
624 ;; Note: an inline copy of this code is present in pa_secondary_reload.
626 (define_predicate "symbolic_operand"
627   (match_code "symbol_ref,label_ref,const")
629   switch (GET_CODE (op))
630     {
631     case SYMBOL_REF:
632       return !SYMBOL_REF_TLS_MODEL (op);
633     case LABEL_REF:
634       return true;
635     case CONST:
636       op = XEXP (op, 0);
637       return (GET_CODE (op) == PLUS
638               && ((GET_CODE (XEXP (op, 0)) == SYMBOL_REF
639                    && !SYMBOL_REF_TLS_MODEL (XEXP (op, 0)))
640                   || GET_CODE (XEXP (op, 0)) == LABEL_REF)
641               && GET_CODE (XEXP (op, 1)) == CONST_INT);
642     default:
643       break;
644     }
645   return false;
648 ;; Return true if OP is a symbolic operand for the TLS Global Dynamic model.
650 (define_predicate "tgd_symbolic_operand"
651   (and (match_code "symbol_ref")
652        (match_test "SYMBOL_REF_TLS_MODEL (op) == TLS_MODEL_GLOBAL_DYNAMIC")))
654 ;; Return true if OP is a symbolic operand for the TLS Local Dynamic model.
656 (define_predicate "tld_symbolic_operand"
657   (and (match_code "symbol_ref")
658        (match_test "SYMBOL_REF_TLS_MODEL (op) == TLS_MODEL_LOCAL_DYNAMIC")))
660 ;; Return true if OP is a symbolic operand for the TLS Initial Exec model.
662 (define_predicate "tie_symbolic_operand"
663   (and (match_code "symbol_ref")
664        (match_test "SYMBOL_REF_TLS_MODEL (op) == TLS_MODEL_INITIAL_EXEC")))
666 ;; Return true if OP is a symbolic operand for the TLS Local Exec model.
668 (define_predicate "tle_symbolic_operand"
669   (and (match_code "symbol_ref")
670        (match_test "SYMBOL_REF_TLS_MODEL (op) == TLS_MODEL_LOCAL_EXEC")))
672 ;; True iff OP is an operator suitable for use in a double-word cmpib
673 ;; instruction.
675 (define_predicate "cmpib_comparison_operator"
676   (match_code "eq,ne,lt,le,leu,gt,gtu,ge"))
678 ;; True iff OP is an operator suitable for use in a movb instruction.
680 (define_predicate "movb_comparison_operator"
681   (match_code "eq,ne,lt,ge"))
683 ;; True iff OP is a PLUS, XOR or IOR operator.
685 (define_predicate "plus_xor_ior_operator"
686   (match_code "plus,xor,ior"))