OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [config/] [vax/] [constraints.md] - Blame information for rev 282

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 282 jeremybenn
;; Constraints for the DEC VAX port.
2
;; Copyright (C) 2007, 2009 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 it under
7
;; the terms of the GNU General Public License as published by the Free
8
;; Software Foundation; either version 3, or (at your option) any later
9
;; version.
10
;;
11
;; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12
;; WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
;; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14
;; for more details.
15
;;
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
;; .  */
19
 
20
(define_constraint "Z0"
21
   "Match a CONST_INT of 0"
22
   (and (match_code "const_int")
23
        (match_test "ival == 0")))
24
 
25
(define_constraint "U06"
26
   "unsigned 6 bit value (0..63)"
27
   (and (match_code "const_int")
28
        (match_test "0 <= ival && ival < 64")))
29
 
30
(define_constraint "U08"
31
   "Unsigned 8 bit value"
32
   (and (match_code "const_int")
33
        (match_test "0 <= ival && ival < 256")))
34
 
35
(define_constraint "U16"
36
   "Unsigned 16 bit value"
37
   (and (match_code "const_int")
38
        (match_test "0 <= ival && ival < 65536")))
39
 
40
(define_constraint "CN6"
41
   "negative 6 bit value (-63..-1)"
42
   (and (match_code "const_int")
43
        (match_test "-63 <= ival && ival < 0")))
44
 
45
(define_constraint "S08"
46
   "signed 8 bit value [old]"
47
   (and (match_code "const_int")
48
        (match_test "-128 <= ival && ival < 128")))
49
 
50
(define_constraint "S16"
51
   "signed 16 bit value [old]"
52
   (and (match_code "const_int")
53
        (match_test "-32768 <= ival && ival < 32768")))
54
 
55
(define_constraint "I"
56
   "Match a CONST_INT of 0 [old]"
57
   (and (match_code "const_int")
58
        (match_test "satisfies_constraint_Z0 (GEN_INT (ival))")))
59
 
60
(define_constraint "J"
61
   "unsigned 6 bit value [old]"
62
   (and (match_code "const_int")
63
        (match_test "satisfies_constraint_U06 (GEN_INT (ival))")))
64
 
65
(define_constraint "K"
66
   "signed 8 bit value [old]"
67
   (and (match_code "const_int")
68
        (match_test "satisfies_constraint_S08 (GEN_INT (ival))")))
69
 
70
(define_constraint "L"
71
   "signed 16 bit value [old]"
72
   (and (match_code "const_int")
73
        (match_test "satisfies_constraint_S16 (GEN_INT (ival))")))
74
 
75
(define_constraint "M"
76
   "Unsigned 8 bit value [old]"
77
   (and (match_code "const_int")
78
        (match_test "satisfies_constraint_U08 (GEN_INT (ival))")))
79
 
80
(define_constraint "N"
81
   "Unsigned 16 bit value [old]"
82
   (and (match_code "const_int")
83
        (match_test "satisfies_constraint_U16 (GEN_INT (ival))")))
84
 
85
(define_constraint "O"
86
   "Negative short literals (-63..-1) [old]"
87
   (and (match_code "const_int")
88
        (match_test "satisfies_constraint_CN6 (GEN_INT (ival))")))
89
 
90
/* Similar, but for floating constants, and defining letters G and H.  */
91
 
92
(define_constraint "G"
93
  "Match a floating-point zero"
94
  (and (match_code "const_double")
95
       (match_test "op == CONST0_RTX (DFmode) || op == CONST0_RTX (SFmode)")))
96
 
97
/* Optional extra constraints for this machine. */
98
 
99
(define_memory_constraint "Q"
100
   "operand is a MEM that does not have a mode-dependent address."
101
   (and (match_code "mem")
102
        (match_test "!mode_dependent_address_p (XEXP (op, 0))")))
103
 
104
(define_memory_constraint "B"
105
    ""
106
    (and (match_operand:BLK 0 "memory_operand")
107
         (not (match_operand:BLK 0 "illegal_blk_memory_operand" ""))))
108
 
109
(define_memory_constraint "R"
110
    ""
111
    (and (match_operand:DI 0 "memory_operand")
112
         (not (match_operand:DI 0 "illegal_addsub_di_memory_operand" ""))))
113
 
114
(define_constraint "T"
115
    "@internal satisfies CONSTANT_P and, if pic is enabled, is not a SYMBOL_REF, LABEL_REF, or CONST."
116
   (ior (not (match_code "const,symbol_ref,label_ref"))
117
        (match_test "!flag_pic")))

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.