1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
;; C-SKY FPU instruction descriptions.
;; Copyright (C) 2018-2022 Free Software Foundation, Inc.
;; Contributed by C-SKY Microsystems and Mentor Graphics.
;;
;; This file is part of GCC.
;;
;; GCC is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;;
;; GCC is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GCC; see the file COPYING3. If not see
;; <http://www.gnu.org/licenses/>. */
(define_c_enum "unspec" [
UNSPEC_FLOOR
UNSPEC_CEIL
UNSPEC_BTRUNC
UNSPEC_RINT
])
(define_c_enum "unspecv" [
VUNSPEC_GET_FCR ; Represent fetch of FCR content.
VUNSPEC_SET_FCR ; Represent assign of FCR content.
VUNSPEC_INS_FCR ; Represent insert of FCR content.
])
(define_mode_iterator F3ANY [HF SF DF])
(define_mode_attr f3t [(HF "16") (SF "32") (DF "64")])
(define_mode_iterator SFDF [SF DF])
(define_mode_attr f2t [(SF "32") (DF "64")])
(define_code_iterator FCMPZ [ne ge lt gt le])
(define_code_attr zero_inst [(ne "nez") (ge "hsz") (lt "ltz") (gt "hz") (le "lsz")])
(define_code_iterator FCMP [ne ge lt])
(define_code_attr reg_inst [(ne "ne") (ge "hs") (lt "lt")])
(define_code_iterator FIX_SU [fix unsigned_fix])
(define_code_attr fixsuop [(fix "") (unsigned_fix "uns")])
(define_code_attr fixsu [(fix "s") (unsigned_fix "u")])
(define_code_iterator FLOAT_SU [float unsigned_float])
(define_code_attr floatsuop [(float "") (unsigned_float "uns")])
(define_code_attr floatsu [(float "s") (unsigned_float "u")])
(define_int_iterator FRM [UNSPEC_FLOOR
UNSPEC_CEIL UNSPEC_RINT])
(define_int_iterator FRMF [UNSPEC_FLOOR
UNSPEC_CEIL UNSPEC_BTRUNC])
(define_int_attr frm_pattern [(UNSPEC_FLOOR "floor")
(UNSPEC_CEIL "ceil") (UNSPEC_BTRUNC "btrunc")
(UNSPEC_RINT "rint")])
(define_int_attr rm [(UNSPEC_FLOOR ".rni")
(UNSPEC_CEIL ".rpi") (UNSPEC_BTRUNC ".rz")
(UNSPEC_RINT "")])
;; -------------------------------------------------------------------------
;; Float mov instructions
;; -------------------------------------------------------------------------
(define_expand "movhf"
[(set (match_operand:HF 0 "general_operand" "")
(match_operand:HF 1 "general_operand" ""))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"
{
if (GET_CODE(operands[0]) == MEM && can_create_pseudo_p ())
{
operands[1] = force_reg (HFmode, operands[1]);
}
}
")
(define_expand "mov<mode>"
[(set (match_operand:SFDF 0 "general_operand" "")
(match_operand:SFDF 1 "general_operand" ""))]
"CSKY_ISA_FEATURE(fpv2_<mode>)
|| CSKY_ISA_FEATURE(fpv3_<mode>)"
"
{
if (GET_CODE(operands[0]) == MEM && can_create_pseudo_p ())
{
operands[1] = force_reg (<MODE>mode, operands[1]);
}
}
")
;; Move float value with general register.
(define_insn "*e2_movsf"
[(set (match_operand:SF 0 "nonimmediate_operand" "=b,r,r,r, m")
(match_operand:SF 1 "general_operand" " b,r,m,mF,r"))]
"CSKY_ISA_FEATURE (E2)
&& !CSKY_ISA_FEATURE (fpv2_sf)
&& !CSKY_ISA_FEATURE (fpv3_sf)"
"* return csky_output_move (insn, operands, SFmode);"
[(set_attr "length" "2,4,4,4,4")
(set_attr "type" "alu,alu,load,load,store")]
)
(define_insn "*e2_movdf"
[(set (match_operand:DF 0 "nonimmediate_operand" "=b,r,r,r, m")
(match_operand:DF 1 "general_operand" " b,r,m,mF,r"))]
"CSKY_ISA_FEATURE (E2)
&& !CSKY_ISA_FEATURE (fpv2_df)
&& !CSKY_ISA_FEATURE (fpv3_df)"
"* return csky_output_movedouble (operands, DFmode);"
[(set_attr "length" "4,8,8,8,8")
(set_attr "type" "alu,alu,load,load,store")]
)
(define_insn "*e1_movsf"
[(set (match_operand:SF 0 "nonimmediate_operand" "=r,r,r, m")
(match_operand:SF 1 "general_operand" " r,m,mF,r"))]
"CSKY_ISA_FEATURE (E1)"
"* return csky_output_ck801_move (insn, operands, SFmode);"
[(set_attr "length" "2,4,4,4")
(set_attr "type" "alu,load,load,store")]
)
(define_insn "*e1_movdf"
[(set (match_operand:DF 0 "nonimmediate_operand" "=r,r,r, m")
(match_operand:DF 1 "general_operand" " r,m,mF,r"))]
"CSKY_ISA_FEATURE (E1)"
"* return csky_output_ck801_movedouble (operands, DFmode);"
[(set_attr "length" "4,8,8,8")
(set_attr "type" "alu,load,load,store")]
)
;; -------------------------------------------------------------------------
;; Float Mul instructions
;; -------------------------------------------------------------------------
(define_expand "mulhf3"
[(set (match_operand:HF 0 "register_operand" "=v")
(mult:HF (match_operand:HF 1 "register_operand" "v")
(match_operand:HF 2 "register_operand" "v")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"")
(define_expand "mul<mode>3"
[(set (match_operand:SFDF 0 "register_operand" "=v")
(mult:SFDF (match_operand:SFDF 1 "register_operand" "v")
(match_operand:SFDF 2 "register_operand" "v")))]
"CSKY_ISA_FEATURE(fpv2_<mode>)
|| CSKY_ISA_FEATURE(fpv3_<mode>)"
"")
(define_expand "fma<mode>4"
[(set (match_operand:F3ANY 0 "register_operand" "=v")
(fma:F3ANY (match_operand:F3ANY 1 "register_operand" "v")
(match_operand:F3ANY 2 "register_operand" "v")
(match_operand:F3ANY 3 "register_operand" "0")))]
"CSKY_ISA_FEATURE(fpv3_<mode>)"
"")
;; -------------------------------------------------------------------------
;; Float ADD SUB NEG ABS instructions
;; -------------------------------------------------------------------------
(define_expand "addhf3"
[(set (match_operand:HF 0 "register_operand" "")
(plus:HF (match_operand:HF 1 "register_operand" "")
(match_operand:HF 2 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
""
)
(define_expand "add<mode>3"
[(set (match_operand:SFDF 0 "register_operand" "")
(plus:SFDF (match_operand:SFDF 1 "register_operand" "")
(match_operand:SFDF 2 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
""
)
(define_expand "subhf3"
[(set (match_operand:HF 0 "register_operand" "")
(minus:HF (match_operand:HF 1 "register_operand" "")
(match_operand:HF 2 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
""
)
(define_expand "sub<mode>3"
[(set (match_operand:SFDF 0 "register_operand" "")
(minus:SFDF (match_operand:SFDF 1 "register_operand" "")
(match_operand:SFDF 2 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
""
)
(define_expand "abshf2"
[(set (match_operand:HF 0 "register_operand" "")
(abs:HF (match_operand:HF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
""
)
(define_expand "abs<mode>2"
[(set (match_operand:SFDF 0 "register_operand" "")
(abs:SFDF (match_operand:SFDF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
""
)
(define_expand "neghf2"
[(set (match_operand:HF 0 "register_operand" "")
(neg:HF (match_operand:HF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
""
)
(define_expand "neg<mode>2"
[(set (match_operand:SFDF 0 "register_operand" "")
(neg:SFDF (match_operand:SFDF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
""
)
(define_expand "sqrthf2"
[(set (match_operand:HF 0 "register_operand" "")
(sqrt:HF (match_operand:HF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
""
)
(define_expand "sqrt<mode>2"
[(set (match_operand:SFDF 0 "register_operand" "")
(sqrt:SFDF (match_operand:SFDF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
""
)
;; -------------------------------------------------------------------------
;; Float div instructions
;; -------------------------------------------------------------------------
(define_expand "div<mode>3"
[(set (match_operand:SFDF 0 "register_operand" "")
(div:SFDF (match_operand:SFDF 1 "csky_arith_float1_operand" "")
(match_operand:SFDF 2 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
"")
(define_expand "divhf3"
[(set (match_operand:HF 0 "register_operand" "")
(div:HF (match_operand:HF 1 "csky_arith_float1_operand" "")
(match_operand:HF 2 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"")
;; -------------------------------------------------------------------------
;; Float compare instructions
;; -------------------------------------------------------------------------
(define_expand "cbranch<mode>4"
[(set (pc) (if_then_else (match_operator 0 "csky_float_comparison_operator"
[(match_operand:SFDF 1 "register_operand")
(match_operand:SFDF 2 "csky_compare_operand_float")])
(label_ref (match_operand 3 ""))
(pc)))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
"{
enum rtx_code code = GET_CODE (operands[0]);
bool invert;
invert = csky_emit_compare_float (code, operands[1], operands[2]);
if (invert)
emit_jump_insn (gen_csky_jbf (operands[3]));
else
emit_jump_insn (gen_csky_jbt (operands[3]));
DONE;
}")
(define_expand "cbranchhf4"
[(set (pc) (if_then_else (match_operator 0 "csky_float_comparison_operator"
[(match_operand:HF 1 "register_operand")
(match_operand:HF 2 "csky_compare_operand_float")])
(label_ref (match_operand 3 ""))
(pc)))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"{
enum rtx_code code = GET_CODE (operands[0]);
bool invert;
invert = csky_emit_compare_float (code, operands[1], operands[2]);
if (invert)
emit_jump_insn (gen_csky_jbf (operands[3]));
else
emit_jump_insn (gen_csky_jbt (operands[3]));
DONE;
}")
;; -------------------------------------------------------------------------
;; Instructions for float cstore
;; -------------------------------------------------------------------------
(define_expand "cstore<mode>4"
[(set (match_operand:SI 0 "register_operand" "")
(match_operator 1 "csky_float_comparison_operator"
[(match_operand:SFDF 2 "register_operand" "")
(match_operand:SFDF 3 "csky_compare_operand_float" "")]))]
"CSKY_ISA_FEATURE (fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
"{
bool invert;
invert = csky_emit_compare_float (GET_CODE (operands[1]),
operands[2], operands[3]);
if(invert)
emit_insn (gen_mvcv (operands[0]));
else
emit_insn (gen_mvc (operands[0]));
DONE;
}"
)
(define_expand "cstorehf4"
[(set (match_operand:SI 0 "register_operand" "")
(match_operator 1 "csky_float_comparison_operator"
[(match_operand:HF 2 "register_operand" "")
(match_operand:HF 3 "csky_compare_operand_float" "")]))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"{
bool invert;
invert = csky_emit_compare_float (GET_CODE (operands[1]),
operands[2], operands[3]);
if(invert)
emit_insn (gen_mvcv (operands[0]));
else
emit_insn (gen_mvc (operands[0]));
DONE;
}"
)
;; -------------------------------------------------------------------------
;; Float convert instructions
;; -------------------------------------------------------------------------
;; SF <- HF
(define_expand "extendhfsf2"
[(set (match_operand:SF 0 "register_operand" "")
(float_extend:SF (match_operand:HF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"")
;; HF <- SF
(define_expand "truncsfhf2"
[(set (match_operand:HF 0 "register_operand" "")
(float_truncate:HF (match_operand:SF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"")
;; DF <- SF
(define_expand "extendsfdf2"
[(set (match_operand:DF 0 "register_operand" "")
(float_extend:DF (match_operand:SF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_df) || CSKY_ISA_FEATURE(fpv3_df)"
"")
;; SF <- DF
(define_expand "truncdfsf2"
[(set (match_operand:SF 0 "register_operand" "")
(float_truncate:SF (match_operand:DF 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_df) || CSKY_ISA_FEATURE(fpv3_df)"
"")
;; HF <- unsigned SI,SI
(define_expand "float<floatsuop>sihf2"
[(set (match_operand:HF 0 "register_operand" "")
(FLOAT_SU:HF (match_operand:SI 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"")
;; DF,SF <- unsigned SI,SI
(define_expand "float<floatsuop>si<mode>2"
[(set (match_operand:SFDF 0 "register_operand" "")
(FLOAT_SU:SFDF (match_operand:SI 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
"")
;; HF <- unsigned HI,HI
(define_expand "float<floatsuop>hihf2"
[(set (match_operand:HF 0 "register_operand" "")
(FLOAT_SU:HF (match_operand:HI 1 "register_operand" "")))]
"CSKY_ISA_FEATURE(fpv3_hi) && CSKY_ISA_FEATURE(fpv3_hf)"
"")
;; unsigned SI,SI <- HF
(define_expand "fix<fixsuop>_trunchfsi2"
[(set (match_operand:SI 0 "register_operand" "")
(FIX_SU:SI (fix:HF (match_operand:HF 1 "register_operand" ""))))]
"CSKY_ISA_FEATURE(fpv3_hf)"
"")
;; unsigned SI,SI <- DF,SF
(define_expand "fix<fixsuop>_trunc<mode>si2"
[(set (match_operand:SI 0 "register_operand" "")
(FIX_SU:SI (fix:SFDF (match_operand:SFDF 1 "register_operand" ""))))]
"CSKY_ISA_FEATURE(fpv2_<mode>) || CSKY_ISA_FEATURE(fpv3_<mode>)"
"")
(include "csky_insn_fpuv3.md")
(include "csky_insn_fpuv2.md")
|