9b10d1e687c3ebd9ccd92500c76337ae67d8c9c8
[oota-llvm.git] / lib / Target / ARM / ARMInstrVFP.td
1 //===- ARMInstrVFP.td - VFP support for ARM -------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Chris Lattner and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the ARM VP instruction set.
11 //
12 //===----------------------------------------------------------------------===//
13
14 //===----------------------------------------------------------------------===//
15 // ARM VFP Instruction templates.
16 //
17
18 // ARM Float Instruction
19 class ASI<dag ops, string opc, string asm, list<dag> pattern>
20   : AI<ops, opc, asm, pattern> {
21   // TODO: Mark the instructions with the appropriate subtarget info.
22 }
23
24 class ASI5<dag ops, string opc, string asm, list<dag> pattern>
25   : I<ops, AddrMode5, Size4Bytes, IndexModeNone, opc, asm, "", pattern> {
26   // TODO: Mark the instructions with the appropriate subtarget info.
27 }
28
29 // ARM Double Instruction
30 class ADI<dag ops, string opc, string asm, list<dag> pattern>
31   : AI<ops, opc, asm, pattern> {
32   // TODO: Mark the instructions with the appropriate subtarget info.
33 }
34
35 class ADI5<dag ops, string opc, string asm, list<dag> pattern>
36   : I<ops, AddrMode5, Size4Bytes, IndexModeNone, opc, asm, "", pattern> {
37   // TODO: Mark the instructions with the appropriate subtarget info.
38 }
39
40 // Special cases.
41 class AXSI<dag ops, string asm, list<dag> pattern>
42   : XI<ops, AddrModeNone, Size4Bytes, IndexModeNone, asm, "", pattern> {
43   // TODO: Mark the instructions with the appropriate subtarget info.
44 }
45
46 class AXSI5<dag ops, string asm, list<dag> pattern>
47   : XI<ops, AddrMode5, Size4Bytes, IndexModeNone, asm, "", pattern> {
48   // TODO: Mark the instructions with the appropriate subtarget info.
49 }
50
51 class AXDI<dag ops, string asm, list<dag> pattern>
52   : XI<ops, AddrModeNone, Size4Bytes, IndexModeNone, asm, "", pattern> {
53   // TODO: Mark the instructions with the appropriate subtarget info.
54 }
55
56 class AXDI5<dag ops, string asm, list<dag> pattern>
57   : XI<ops, AddrMode5, Size4Bytes, IndexModeNone, asm, "", pattern> {
58   // TODO: Mark the instructions with the appropriate subtarget info.
59 }
60
61
62 def SDT_FTOI :
63 SDTypeProfile<1, 1, [SDTCisVT<0, f32>, SDTCisFP<1>]>;
64 def SDT_ITOF :
65 SDTypeProfile<1, 1, [SDTCisFP<0>, SDTCisVT<1, f32>]>;
66 def SDT_CMPFP0 :
67 SDTypeProfile<0, 1, [SDTCisFP<0>]>;
68 def SDT_FMDRR :
69 SDTypeProfile<1, 2, [SDTCisVT<0, f64>, SDTCisVT<1, i32>,
70                      SDTCisSameAs<1, 2>]>;
71
72 def arm_ftoui  : SDNode<"ARMISD::FTOUI", SDT_FTOI>;
73 def arm_ftosi  : SDNode<"ARMISD::FTOSI", SDT_FTOI>;
74 def arm_sitof  : SDNode<"ARMISD::SITOF", SDT_ITOF>;
75 def arm_uitof  : SDNode<"ARMISD::UITOF", SDT_ITOF>;
76 def arm_fmstat : SDNode<"ARMISD::FMSTAT", SDTRet, [SDNPInFlag,SDNPOutFlag]>;
77 def arm_cmpfp  : SDNode<"ARMISD::CMPFP", SDT_ARMCmp, [SDNPOutFlag]>;
78 def arm_cmpfp0 : SDNode<"ARMISD::CMPFPw0", SDT_CMPFP0, [SDNPOutFlag]>;
79 def arm_fmdrr  : SDNode<"ARMISD::FMDRR", SDT_FMDRR>;
80
81 //===----------------------------------------------------------------------===//
82 //  Load / store Instructions.
83 //
84
85 let isLoad = 1 in {
86 def FLDD  : ADI5<(ops DPR:$dst, addrmode5:$addr),
87                  "fldd", " $dst, $addr",
88                  [(set DPR:$dst, (load addrmode5:$addr))]>;
89
90 def FLDS  : ASI5<(ops SPR:$dst, addrmode5:$addr),
91                  "flds", " $dst, $addr",
92                  [(set SPR:$dst, (load addrmode5:$addr))]>;
93 } // isLoad
94
95 let isStore = 1 in {
96 def FSTD  : ADI5<(ops DPR:$src, addrmode5:$addr),
97                  "fstd", " $src, $addr",
98                  [(store DPR:$src, addrmode5:$addr)]>;
99
100 def FSTS  : ASI5<(ops SPR:$src, addrmode5:$addr),
101                  "fsts", " $src, $addr",
102                  [(store SPR:$src, addrmode5:$addr)]>;
103 } // isStore
104
105 //===----------------------------------------------------------------------===//
106 //  Load / store multiple Instructions.
107 //
108
109 let isLoad = 1 in {
110 def FLDMD : AXDI5<(ops addrmode5:$addr, pred:$p, reglist:$dst1, variable_ops),
111                   "fldm${addr:submode}d${p} ${addr:base}, $dst1",
112                   []>;
113
114 def FLDMS : AXSI5<(ops addrmode5:$addr, pred:$p, reglist:$dst1, variable_ops),
115                   "fldm${addr:submode}s${p} ${addr:base}, $dst1",
116                   []>;
117 } // isLoad
118
119 let isStore = 1 in {
120 def FSTMD : AXDI5<(ops addrmode5:$addr, pred:$p, reglist:$src1, variable_ops),
121                  "fstm${addr:submode}d${p} ${addr:base}, $src1",
122                  []>;
123
124 def FSTMS : AXSI5<(ops addrmode5:$addr, pred:$p, reglist:$src1, variable_ops),
125                  "fstm${addr:submode}s${p} ${addr:base}, $src1",
126                  []>;
127 } // isStore
128
129 // FLDMX, FSTMX - mixing S/D registers for pre-armv6 cores
130
131 //===----------------------------------------------------------------------===//
132 // FP Binary Operations.
133 //
134
135 def FADDD  : ADI<(ops DPR:$dst, DPR:$a, DPR:$b),
136                  "faddd", " $dst, $a, $b",
137                  [(set DPR:$dst, (fadd DPR:$a, DPR:$b))]>;
138
139 def FADDS  : ASI<(ops SPR:$dst, SPR:$a, SPR:$b),
140                  "fadds", " $dst, $a, $b",
141                  [(set SPR:$dst, (fadd SPR:$a, SPR:$b))]>;
142
143 def FCMPED : ADI<(ops DPR:$a, DPR:$b),
144                  "fcmped", " $a, $b",
145                  [(arm_cmpfp DPR:$a, DPR:$b)]>;
146
147 def FCMPES : ASI<(ops SPR:$a, SPR:$b),
148                  "fcmpes", " $a, $b",
149                  [(arm_cmpfp SPR:$a, SPR:$b)]>;
150
151 def FDIVD  : ADI<(ops DPR:$dst, DPR:$a, DPR:$b),
152                  "fdivd", " $dst, $a, $b",
153                  [(set DPR:$dst, (fdiv DPR:$a, DPR:$b))]>;
154
155 def FDIVS  : ASI<(ops SPR:$dst, SPR:$a, SPR:$b),
156                  "fdivs", " $dst, $a, $b",
157                  [(set SPR:$dst, (fdiv SPR:$a, SPR:$b))]>;
158
159 def FMULD  : ADI<(ops DPR:$dst, DPR:$a, DPR:$b),
160                  "fmuld", " $dst, $a, $b",
161                  [(set DPR:$dst, (fmul DPR:$a, DPR:$b))]>;
162
163 def FMULS  : ASI<(ops SPR:$dst, SPR:$a, SPR:$b),
164                  "fmuls", " $dst, $a, $b",
165                  [(set SPR:$dst, (fmul SPR:$a, SPR:$b))]>;
166                  
167 def FNMULD  : ADI<(ops DPR:$dst, DPR:$a, DPR:$b),
168                   "fnmuld", " $dst, $a, $b",
169                   [(set DPR:$dst, (fneg (fmul DPR:$a, DPR:$b)))]>;
170
171 def FNMULS  : ASI<(ops SPR:$dst, SPR:$a, SPR:$b),
172                   "fnmuls", " $dst, $a, $b",
173                   [(set SPR:$dst, (fneg (fmul SPR:$a, SPR:$b)))]>;
174
175 // Match reassociated forms only if not sign dependent rounding.
176 def : Pat<(fmul (fneg DPR:$a), DPR:$b),
177           (FNMULD DPR:$a, DPR:$b)>, Requires<[NoHonorSignDependentRounding]>;
178 def : Pat<(fmul (fneg SPR:$a), SPR:$b),
179           (FNMULS SPR:$a, SPR:$b)>, Requires<[NoHonorSignDependentRounding]>;
180
181
182 def FSUBD  : ADI<(ops DPR:$dst, DPR:$a, DPR:$b),
183                  "fsubd", " $dst, $a, $b",
184                  [(set DPR:$dst, (fsub DPR:$a, DPR:$b))]>;
185
186 def FSUBS  : ASI<(ops SPR:$dst, SPR:$a, SPR:$b),
187                  "fsubs", " $dst, $a, $b",
188                  [(set SPR:$dst, (fsub SPR:$a, SPR:$b))]>;
189
190 //===----------------------------------------------------------------------===//
191 // FP Unary Operations.
192 //
193
194 def FABSD  : ADI<(ops DPR:$dst, DPR:$a),
195                  "fabsd", " $dst, $a",
196                  [(set DPR:$dst, (fabs DPR:$a))]>;
197
198 def FABSS  : ASI<(ops SPR:$dst, SPR:$a),
199                  "fabss", " $dst, $a",
200                  [(set SPR:$dst, (fabs SPR:$a))]>;
201
202 def FCMPEZD : ADI<(ops DPR:$a),
203                   "fcmpezd", " $a",
204                   [(arm_cmpfp0 DPR:$a)]>;
205
206 def FCMPEZS : ASI<(ops SPR:$a),
207                   "fcmpezs", " $a",
208                   [(arm_cmpfp0 SPR:$a)]>;
209
210 def FCVTDS : ADI<(ops DPR:$dst, SPR:$a),
211                  "fcvtds", " $dst, $a",
212                  [(set DPR:$dst, (fextend SPR:$a))]>;
213
214 def FCVTSD : ADI<(ops SPR:$dst, DPR:$a),
215                  "fcvtsd", " $dst, $a",
216                  [(set SPR:$dst, (fround DPR:$a))]>;
217
218 def FCPYD  : ADI<(ops DPR:$dst, DPR:$a),
219                  "fcpyd", " $dst, $a", []>;
220
221 def FCPYS  : ASI<(ops SPR:$dst, SPR:$a),
222                  "fcpys", " $dst, $a", []>;
223
224 def FNEGD  : ADI<(ops DPR:$dst, DPR:$a),
225                  "fnegd", " $dst, $a",
226                  [(set DPR:$dst, (fneg DPR:$a))]>;
227
228 def FNEGS  : ASI<(ops SPR:$dst, SPR:$a),
229                  "fnegs", " $dst, $a",
230                  [(set SPR:$dst, (fneg SPR:$a))]>;
231
232 def FSQRTD  : ADI<(ops DPR:$dst, DPR:$a),
233                  "fsqrtd", " $dst, $a",
234                  [(set DPR:$dst, (fsqrt DPR:$a))]>;
235
236 def FSQRTS  : ASI<(ops SPR:$dst, SPR:$a),
237                  "fsqrts", " $dst, $a",
238                  [(set SPR:$dst, (fsqrt SPR:$a))]>;
239
240 //===----------------------------------------------------------------------===//
241 // FP <-> GPR Copies.  Int <-> FP Conversions.
242 //
243
244 def IMPLICIT_DEF_SPR : PseudoInst<(ops SPR:$rD, pred:$p),
245                                   "@ IMPLICIT_DEF_SPR $rD",
246                                   [(set SPR:$rD, (undef))]>;
247 def IMPLICIT_DEF_DPR : PseudoInst<(ops DPR:$rD, pred:$p),
248                                   "@ IMPLICIT_DEF_DPR $rD",
249                                   [(set DPR:$rD, (undef))]>;
250
251 def FMRS   : ASI<(ops GPR:$dst, SPR:$src),
252                  "fmrs", " $dst, $src",
253                  [(set GPR:$dst, (bitconvert SPR:$src))]>;
254
255 def FMSR   : ASI<(ops SPR:$dst, GPR:$src),
256                  "fmsr", " $dst, $src",
257                  [(set SPR:$dst, (bitconvert GPR:$src))]>;
258
259
260 def FMRRD  : ADI<(ops GPR:$dst1, GPR:$dst2, DPR:$src),
261                  "fmrrd", " $dst1, $dst2, $src",
262                  [/* FIXME: Can't write pattern for multiple result instr*/]>;
263
264 // FMDHR: GPR -> SPR
265 // FMDLR: GPR -> SPR
266
267 def FMDRR : ADI<(ops DPR:$dst, GPR:$src1, GPR:$src2),
268                 "fmdrr", " $dst, $src1, $src2",
269                 [(set DPR:$dst, (arm_fmdrr GPR:$src1, GPR:$src2))]>;
270
271 // FMRDH: SPR -> GPR
272 // FMRDL: SPR -> GPR
273 // FMRRS: SPR -> GPR
274 // FMRX : SPR system reg -> GPR
275
276 // FMSRR: GPR -> SPR
277
278 let clobbersPred = 1 in
279 def FMSTAT : ASI<(ops), "fmstat", "", [(arm_fmstat)]>, Imp<[], [CPSR]>;
280
281 // FMXR: GPR -> VFP Sstem reg
282
283
284 // Int to FP:
285
286 def FSITOD : ADI<(ops DPR:$dst, SPR:$a),
287                  "fsitod", " $dst, $a",
288                  [(set DPR:$dst, (arm_sitof SPR:$a))]>;
289
290 def FSITOS : ASI<(ops SPR:$dst, SPR:$a),
291                  "fsitos", " $dst, $a",
292                  [(set SPR:$dst, (arm_sitof SPR:$a))]>;
293
294 def FUITOD : ADI<(ops DPR:$dst, SPR:$a),
295                  "fuitod", " $dst, $a",
296                  [(set DPR:$dst, (arm_uitof SPR:$a))]>;
297
298 def FUITOS : ASI<(ops SPR:$dst, SPR:$a),
299                  "fuitos", " $dst, $a",
300                  [(set SPR:$dst, (arm_uitof SPR:$a))]>;
301
302 // FP to Int:
303 // Always set Z bit in the instruction, i.e. "round towards zero" variants.
304
305 def FTOSIZD : ADI<(ops SPR:$dst, DPR:$a),
306                  "ftosizd", " $dst, $a",
307                  [(set SPR:$dst, (arm_ftosi DPR:$a))]>;
308
309 def FTOSIZS : ASI<(ops SPR:$dst, SPR:$a),
310                  "ftosizs", " $dst, $a",
311                  [(set SPR:$dst, (arm_ftosi SPR:$a))]>;
312
313 def FTOUIZD : ADI<(ops SPR:$dst, DPR:$a),
314                  "ftouizd", " $dst, $a",
315                  [(set SPR:$dst, (arm_ftoui DPR:$a))]>;
316
317 def FTOUIZS : ASI<(ops SPR:$dst, SPR:$a),
318                  "ftouizs", " $dst, $a",
319                  [(set SPR:$dst, (arm_ftoui SPR:$a))]>;
320
321 //===----------------------------------------------------------------------===//
322 // FP FMA Operations.
323 //
324
325 def FMACD : ADI<(ops DPR:$dst, DPR:$dstin, DPR:$a, DPR:$b),
326                 "fmacd", " $dst, $a, $b",
327                 [(set DPR:$dst, (fadd (fmul DPR:$a, DPR:$b), DPR:$dstin))]>,
328                 RegConstraint<"$dstin = $dst">;
329
330 def FMACS : ASI<(ops SPR:$dst, SPR:$dstin, SPR:$a, SPR:$b),
331                 "fmacs", " $dst, $a, $b",
332                 [(set SPR:$dst, (fadd (fmul SPR:$a, SPR:$b), SPR:$dstin))]>,
333                 RegConstraint<"$dstin = $dst">;
334
335 def FMSCD : ADI<(ops DPR:$dst, DPR:$dstin, DPR:$a, DPR:$b),
336                 "fmscd", " $dst, $a, $b",
337                 [(set DPR:$dst, (fsub (fmul DPR:$a, DPR:$b), DPR:$dstin))]>,
338                 RegConstraint<"$dstin = $dst">;
339
340 def FMSCS : ASI<(ops SPR:$dst, SPR:$dstin, SPR:$a, SPR:$b),
341                 "fmscs", " $dst, $a, $b",
342                 [(set SPR:$dst, (fsub (fmul SPR:$a, SPR:$b), SPR:$dstin))]>,
343                 RegConstraint<"$dstin = $dst">;
344
345 def FNMACD : ADI<(ops DPR:$dst, DPR:$dstin, DPR:$a, DPR:$b),
346                  "fnmacd", " $dst, $a, $b",
347              [(set DPR:$dst, (fadd (fneg (fmul DPR:$a, DPR:$b)), DPR:$dstin))]>,
348                 RegConstraint<"$dstin = $dst">;
349
350 def FNMACS : ASI<(ops SPR:$dst, SPR:$dstin, SPR:$a, SPR:$b),
351                 "fnmacs", " $dst, $a, $b",
352              [(set SPR:$dst, (fadd (fneg (fmul SPR:$a, SPR:$b)), SPR:$dstin))]>,
353                 RegConstraint<"$dstin = $dst">;
354
355 def FNMSCD : ADI<(ops DPR:$dst, DPR:$dstin, DPR:$a, DPR:$b),
356                  "fnmscd", " $dst, $a, $b",
357              [(set DPR:$dst, (fsub (fneg (fmul DPR:$a, DPR:$b)), DPR:$dstin))]>,
358                 RegConstraint<"$dstin = $dst">;
359
360 def FNMSCS : ASI<(ops SPR:$dst, SPR:$dstin, SPR:$a, SPR:$b),
361                 "fnmscs", " $dst, $a, $b",
362              [(set SPR:$dst, (fsub (fneg (fmul SPR:$a, SPR:$b)), SPR:$dstin))]>,
363                 RegConstraint<"$dstin = $dst">;
364
365 //===----------------------------------------------------------------------===//
366 // FP Conditional moves.
367 //
368
369 def FCPYDcc  : ADI<(ops DPR:$dst, DPR:$false, DPR:$true),
370                     "fcpyd", " $dst, $true",
371                 [/*(set DPR:$dst, (ARMcmov DPR:$false, DPR:$true, imm:$cc))*/]>,
372                     RegConstraint<"$false = $dst">;
373
374 def FCPYScc  : ASI<(ops SPR:$dst, SPR:$false, SPR:$true),
375                     "fcpys", " $dst, $true",
376                 [/*(set SPR:$dst, (ARMcmov SPR:$false, SPR:$true, imm:$cc))*/]>,
377                     RegConstraint<"$false = $dst">;
378
379 def FNEGDcc  : ADI<(ops DPR:$dst, DPR:$false, DPR:$true),
380                     "fnegd", " $dst, $true",
381                 [/*(set DPR:$dst, (ARMcneg DPR:$false, DPR:$true, imm:$cc))*/]>,
382                     RegConstraint<"$false = $dst">;
383
384 def FNEGScc  : ASI<(ops SPR:$dst, SPR:$false, SPR:$true),
385                     "fnegs", " $dst, $true",
386                 [/*(set SPR:$dst, (ARMcneg SPR:$false, SPR:$true, imm:$cc))*/]>,
387                     RegConstraint<"$false = $dst">;