OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [config/] [mcore/] [predicates.md] - Blame information for rev 154

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 julius
;; Predicate definitions for Motorola MCore.
2
;; Copyright (C) 2005, 2007 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.
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 COPYING3.  If not see
18
;; .
19
 
20
;; Nonzero if OP is a normal arithmetic register.
21
 
22
(define_predicate "mcore_arith_reg_operand"
23
  (match_code "reg,subreg")
24
{
25
  if (! register_operand (op, mode))
26
    return 0;
27
 
28
  if (GET_CODE (op) == SUBREG)
29
    op = SUBREG_REG (op);
30
 
31
  if (GET_CODE (op) == REG)
32
    return REGNO (op) != CC_REG;
33
 
34
  return 1;
35
})
36
 
37
;; Nonzero if OP can be source of a simple move operation.
38
 
39
(define_predicate "mcore_general_movsrc_operand"
40
  (match_code "mem,const_int,reg,subreg,symbol_ref,label_ref")
41
{
42
  /* Any (MEM LABEL_REF) is OK.  That is a pc-relative load.  */
43
  if (GET_CODE (op) == MEM && GET_CODE (XEXP (op, 0)) == LABEL_REF)
44
    return 1;
45
 
46
  return general_operand (op, mode);
47
})
48
 
49
;; Nonzero if OP can be destination of a simple move operation.
50
 
51
(define_predicate "mcore_general_movdst_operand"
52
  (match_code "mem,const_int,reg,subreg")
53
{
54
  if (GET_CODE (op) == REG && REGNO (op) == CC_REG)
55
    return 0;
56
 
57
  return general_operand (op, mode);
58
})
59
 
60
;; Nonzero if OP should be recognized during reload for an ixh/ixw
61
;; operand.  See the ixh/ixw patterns.
62
 
63
(define_predicate "mcore_reload_operand"
64
  (match_code "mem,reg,subreg")
65
{
66
  if (mcore_arith_reg_operand (op, mode))
67
    return 1;
68
 
69
  if (! reload_in_progress)
70
    return 0;
71
 
72
  return GET_CODE (op) == MEM;
73
})
74
 
75
;; Nonzero if OP is a valid source operand for an arithmetic insn.
76
 
77
(define_predicate "mcore_arith_J_operand"
78
  (match_code "const_int,reg,subreg")
79
{
80
  if (register_operand (op, mode))
81
    return 1;
82
 
83
  if (GET_CODE (op) == CONST_INT && CONST_OK_FOR_J (INTVAL (op)))
84
    return 1;
85
 
86
  return 0;
87
})
88
 
89
;; Nonzero if OP is a valid source operand for an arithmetic insn.
90
 
91
(define_predicate "mcore_arith_K_operand"
92
  (match_code "const_int,reg,subreg")
93
{
94
  if (register_operand (op, mode))
95
    return 1;
96
 
97
  if (GET_CODE (op) == CONST_INT && CONST_OK_FOR_K (INTVAL (op)))
98
    return 1;
99
 
100
  return 0;
101
})
102
 
103
;; Nonzero if OP is a valid source operand for a shift or rotate insn.
104
 
105
(define_predicate "mcore_arith_K_operand_not_0"
106
  (match_code "const_int,reg,subreg")
107
{
108
  if (register_operand (op, mode))
109
    return 1;
110
 
111
  if (   GET_CODE (op) == CONST_INT
112
      && CONST_OK_FOR_K (INTVAL (op))
113
      && INTVAL (op) != 0)
114
    return 1;
115
 
116
  return 0;
117
})
118
 
119
;; TODO: Add a comment here.
120
 
121
(define_predicate "mcore_arith_M_operand"
122
  (match_code "const_int,reg,subreg")
123
{
124
  if (register_operand (op, mode))
125
    return 1;
126
 
127
  if (GET_CODE (op) == CONST_INT && CONST_OK_FOR_M (INTVAL (op)))
128
    return 1;
129
 
130
  return 0;
131
})
132
 
133
;; TODO: Add a comment here.
134
 
135
(define_predicate "mcore_arith_K_S_operand"
136
  (match_code "const_int,reg,subreg")
137
{
138
  if (register_operand (op, mode))
139
    return 1;
140
 
141
  if (GET_CODE (op) == CONST_INT)
142
    {
143
      if (CONST_OK_FOR_K (INTVAL (op)) || CONST_OK_FOR_M (~INTVAL (op)))
144
        return 1;
145
    }
146
 
147
  return 0;
148
})
149
 
150
;; Nonzero if OP is a valid source operand for a cmov with two consts
151
;; +/- 1.
152
 
153
(define_predicate "mcore_arith_O_operand"
154
  (match_code "const_int,reg,subreg")
155
{
156
  if (register_operand (op, mode))
157
    return 1;
158
 
159
  if (GET_CODE (op) == CONST_INT && CONST_OK_FOR_O (INTVAL (op)))
160
    return 1;
161
 
162
  return 0;
163
})
164
 
165
;; Nonzero if OP is a valid source operand for loading.
166
 
167
(define_predicate "mcore_arith_imm_operand"
168
  (match_code "const_int,reg,subreg")
169
{
170
  if (register_operand (op, mode))
171
    return 1;
172
 
173
  if (GET_CODE (op) == CONST_INT && const_ok_for_mcore (INTVAL (op)))
174
    return 1;
175
 
176
  return 0;
177
})
178
 
179
;; TODO: Add a comment here.
180
 
181
(define_predicate "mcore_arith_any_imm_operand"
182
  (match_code "const_int,reg,subreg")
183
{
184
  if (register_operand (op, mode))
185
    return 1;
186
 
187
  if (GET_CODE (op) == CONST_INT)
188
    return 1;
189
 
190
  return 0;
191
})
192
 
193
;; Nonzero if OP is a valid source operand for a btsti.
194
 
195
(define_predicate "mcore_literal_K_operand"
196
  (match_code "const_int")
197
{
198
  if (GET_CODE (op) == CONST_INT && CONST_OK_FOR_K (INTVAL (op)))
199
    return 1;
200
 
201
  return 0;
202
})
203
 
204
;; Nonzero if OP is a valid source operand for an add/sub insn.
205
 
206
(define_predicate "mcore_addsub_operand"
207
  (match_code "const_int,reg,subreg")
208
{
209
  if (register_operand (op, mode))
210
    return 1;
211
 
212
  if (GET_CODE (op) == CONST_INT)
213
    {
214
      return 1;
215
 
216
      /* The following is removed because it precludes large constants from being
217
         returned as valid source operands for and add/sub insn.  While large
218
         constants may not directly be used in an add/sub, they may if first loaded
219
         into a register.  Thus, this predicate should indicate that they are valid,
220
         and the constraint in mcore.md should control whether an additional load to
221
         register is needed. (see mcore.md, addsi). -- DAC 4/2/1998  */
222
      /*
223
        if (CONST_OK_FOR_J(INTVAL(op)) || CONST_OK_FOR_L(INTVAL(op)))
224
          return 1;
225
      */
226
    }
227
 
228
  return 0;
229
})
230
 
231
;; Nonzero if OP is a valid source operand for a compare operation.
232
 
233
(define_predicate "mcore_compare_operand"
234
  (match_code "const_int,reg,subreg")
235
{
236
  if (register_operand (op, mode))
237
    return 1;
238
 
239
  if (GET_CODE (op) == CONST_INT && INTVAL (op) == 0)
240
    return 1;
241
 
242
  return 0;
243
})
244
 
245
;; Return 1 if OP is a load multiple operation.  It is known to be a
246
;; PARALLEL and the first section will be tested.
247
 
248
(define_predicate "mcore_load_multiple_operation"
249
  (match_code "parallel")
250
{
251
  int count = XVECLEN (op, 0);
252
  int dest_regno;
253
  rtx src_addr;
254
  int i;
255
 
256
  /* Perform a quick check so we don't blow up below.  */
257
  if (count <= 1
258
      || GET_CODE (XVECEXP (op, 0, 0)) != SET
259
      || GET_CODE (SET_DEST (XVECEXP (op, 0, 0))) != REG
260
      || GET_CODE (SET_SRC (XVECEXP (op, 0, 0))) != MEM)
261
    return 0;
262
 
263
  dest_regno = REGNO (SET_DEST (XVECEXP (op, 0, 0)));
264
  src_addr = XEXP (SET_SRC (XVECEXP (op, 0, 0)), 0);
265
 
266
  for (i = 1; i < count; i++)
267
    {
268
      rtx elt = XVECEXP (op, 0, i);
269
 
270
      if (GET_CODE (elt) != SET
271
          || GET_CODE (SET_DEST (elt)) != REG
272
          || GET_MODE (SET_DEST (elt)) != SImode
273
          || REGNO (SET_DEST (elt))    != (unsigned) (dest_regno + i)
274
          || GET_CODE (SET_SRC (elt))  != MEM
275
          || GET_MODE (SET_SRC (elt))  != SImode
276
          || GET_CODE (XEXP (SET_SRC (elt), 0)) != PLUS
277
          || ! rtx_equal_p (XEXP (XEXP (SET_SRC (elt), 0), 0), src_addr)
278
          || GET_CODE (XEXP (XEXP (SET_SRC (elt), 0), 1)) != CONST_INT
279
          || INTVAL (XEXP (XEXP (SET_SRC (elt), 0), 1)) != i * 4)
280
        return 0;
281
    }
282
 
283
  return 1;
284
})
285
 
286
;; Similar, but tests for store multiple.
287
 
288
(define_predicate "mcore_store_multiple_operation"
289
  (match_code "parallel")
290
{
291
  int count = XVECLEN (op, 0);
292
  int src_regno;
293
  rtx dest_addr;
294
  int i;
295
 
296
  /* Perform a quick check so we don't blow up below.  */
297
  if (count <= 1
298
      || GET_CODE (XVECEXP (op, 0, 0)) != SET
299
      || GET_CODE (SET_DEST (XVECEXP (op, 0, 0))) != MEM
300
      || GET_CODE (SET_SRC (XVECEXP (op, 0, 0))) != REG)
301
    return 0;
302
 
303
  src_regno = REGNO (SET_SRC (XVECEXP (op, 0, 0)));
304
  dest_addr = XEXP (SET_DEST (XVECEXP (op, 0, 0)), 0);
305
 
306
  for (i = 1; i < count; i++)
307
    {
308
      rtx elt = XVECEXP (op, 0, i);
309
 
310
      if (GET_CODE (elt) != SET
311
          || GET_CODE (SET_SRC (elt)) != REG
312
          || GET_MODE (SET_SRC (elt)) != SImode
313
          || REGNO (SET_SRC (elt)) != (unsigned) (src_regno + i)
314
          || GET_CODE (SET_DEST (elt)) != MEM
315
          || GET_MODE (SET_DEST (elt)) != SImode
316
          || GET_CODE (XEXP (SET_DEST (elt), 0)) != PLUS
317
          || ! rtx_equal_p (XEXP (XEXP (SET_DEST (elt), 0), 0), dest_addr)
318
          || GET_CODE (XEXP (XEXP (SET_DEST (elt), 0), 1)) != CONST_INT
319
          || INTVAL (XEXP (XEXP (SET_DEST (elt), 0), 1)) != i * 4)
320
        return 0;
321
    }
322
 
323
  return 1;
324
})
325
 
326
;; TODO: Add a comment here.
327
 
328
(define_predicate "mcore_call_address_operand"
329
  (match_code "reg,subreg,const_int,symbol_ref")
330
{
331
  return register_operand (op, mode) || CONSTANT_P (op);
332
})

powered by: WebSVN 2.1.0

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