Implement fastcc calling convention for MIPS.
[oota-llvm.git] / lib / Target / Mips / MipsCondMov.td
1 //===-- MipsCondMov.td - Describe Mips Conditional Moves --*- tablegen -*--===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This is the Conditional Moves implementation.
11 //
12 //===----------------------------------------------------------------------===//
13
14 // Conditional moves:
15 // These instructions are expanded in
16 // MipsISelLowering::EmitInstrWithCustomInserter if target does not have
17 // conditional move instructions.
18 // cond:int, data:int
19 class CondMovIntInt<RegisterClass CRC, RegisterClass DRC, bits<6> funct,
20                     string instr_asm> :
21   FR<0, funct, (outs DRC:$rd), (ins DRC:$rs, CRC:$rt, DRC:$F),
22      !strconcat(instr_asm, "\t$rd, $rs, $rt"), [], NoItinerary> {
23   let shamt = 0;
24   let Constraints = "$F = $rd";
25 }
26
27 // cond:int, data:float
28 class CondMovIntFP<RegisterClass CRC, RegisterClass DRC, bits<5> fmt,
29                    bits<6> func, string instr_asm> :
30   FFR<0x11, func, fmt, (outs DRC:$fd), (ins DRC:$fs, CRC:$rt, DRC:$F),
31       !strconcat(instr_asm, "\t$fd, $fs, $rt"), []> {
32   bits<5> rt;
33   let ft = rt;
34   let Constraints = "$F = $fd";
35 }
36
37 // cond:float, data:int
38 class CondMovFPInt<RegisterClass RC, SDNode cmov, bits<1> tf,
39                    string instr_asm> :
40   FCMOV<tf, (outs RC:$rd), (ins RC:$rs, RC:$F),
41         !strconcat(instr_asm, "\t$rd, $rs, $$fcc0"),
42         [(set RC:$rd, (cmov RC:$rs, RC:$F))]> {
43   let cc = 0;
44   let Uses = [FCR31];
45   let Constraints = "$F = $rd";
46 }
47
48 // cond:float, data:float
49 class CondMovFPFP<RegisterClass RC, SDNode cmov, bits<5> fmt, bits<1> tf,
50                   string instr_asm> :
51   FFCMOV<fmt, tf, (outs RC:$fd), (ins RC:$fs, RC:$F),
52          !strconcat(instr_asm, "\t$fd, $fs, $$fcc0"),
53          [(set RC:$fd, (cmov RC:$fs, RC:$F))]> {
54   let cc = 0;
55   let Uses = [FCR31];
56   let Constraints = "$F = $fd";
57 }
58
59 // select patterns
60 multiclass MovzPats0<RegisterClass CRC, RegisterClass DRC,
61                      Instruction MOVZInst, Instruction SLTOp,
62                      Instruction SLTuOp, Instruction SLTiOp,
63                      Instruction SLTiuOp> {
64   def : Pat<(select (i32 (setge CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
65             (MOVZInst DRC:$T, (SLTOp CRC:$lhs, CRC:$rhs), DRC:$F)>;
66   def : Pat<(select (i32 (setuge CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
67             (MOVZInst DRC:$T, (SLTuOp CRC:$lhs, CRC:$rhs), DRC:$F)>;
68   def : Pat<(select (i32 (setge CRC:$lhs, immSExt16:$rhs)), DRC:$T, DRC:$F),
69             (MOVZInst DRC:$T, (SLTiOp CRC:$lhs, immSExt16:$rhs), DRC:$F)>;
70   def : Pat<(select (i32 (setuge CRC:$lh, immSExt16:$rh)), DRC:$T, DRC:$F),
71             (MOVZInst DRC:$T, (SLTiuOp CRC:$lh, immSExt16:$rh), DRC:$F)>;
72   def : Pat<(select (i32 (setle CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
73             (MOVZInst DRC:$T, (SLTOp CRC:$rhs, CRC:$lhs), DRC:$F)>;
74   def : Pat<(select (i32 (setule CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
75             (MOVZInst DRC:$T, (SLTuOp CRC:$rhs, CRC:$lhs), DRC:$F)>;
76 }
77
78 multiclass MovzPats1<RegisterClass CRC, RegisterClass DRC,
79                      Instruction MOVZInst, Instruction XOROp> {
80   def : Pat<(select (i32 (seteq CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
81             (MOVZInst DRC:$T, (XOROp CRC:$lhs, CRC:$rhs), DRC:$F)>;
82   def : Pat<(select (i32 (seteq CRC:$lhs, 0)), DRC:$T, DRC:$F),
83             (MOVZInst DRC:$T, CRC:$lhs, DRC:$F)>;
84 }
85
86 multiclass MovzPats2<RegisterClass CRC, RegisterClass DRC,
87                      Instruction MOVZInst, Instruction XORiOp> {
88   def : Pat<(select (i32 (seteq CRC:$lhs, immZExt16:$uimm16)), DRC:$T, DRC:$F),
89             (MOVZInst DRC:$T, (XORiOp CRC:$lhs, immZExt16:$uimm16), DRC:$F)>;
90 }
91
92 multiclass MovnPats<RegisterClass CRC, RegisterClass DRC, Instruction MOVNInst,
93                     Instruction XOROp> {
94   def : Pat<(select (i32 (setne CRC:$lhs, CRC:$rhs)), DRC:$T, DRC:$F),
95             (MOVNInst DRC:$T, (XOROp CRC:$lhs, CRC:$rhs), DRC:$F)>;
96   def : Pat<(select CRC:$cond, DRC:$T, DRC:$F),
97             (MOVNInst DRC:$T, CRC:$cond, DRC:$F)>;
98   def : Pat<(select (i32 (setne CRC:$lhs, 0)),DRC:$T, DRC:$F),
99             (MOVNInst DRC:$T, CRC:$lhs, DRC:$F)>;
100 }
101
102 // Instantiation of instructions.
103 def MOVZ_I_I     : CondMovIntInt<CPURegs, CPURegs, 0x0a, "movz">;
104 let Predicates = [HasMips64, HasStandardEncoding],DecoderNamespace = "Mips64" in {
105   def MOVZ_I_I64   : CondMovIntInt<CPURegs, CPU64Regs, 0x0a, "movz">;
106   def MOVZ_I64_I   : CondMovIntInt<CPU64Regs, CPURegs, 0x0a, "movz"> {
107     let isCodeGenOnly = 1;
108   }
109   def MOVZ_I64_I64 : CondMovIntInt<CPU64Regs, CPU64Regs, 0x0a, "movz"> {
110     let isCodeGenOnly = 1;
111   }
112 }
113
114 def MOVN_I_I     : CondMovIntInt<CPURegs, CPURegs, 0x0b, "movn">;
115 let Predicates = [HasMips64, HasStandardEncoding],
116                   DecoderNamespace = "Mips64" in {
117   def MOVN_I_I64   : CondMovIntInt<CPURegs, CPU64Regs, 0x0b, "movn">;
118   def MOVN_I64_I   : CondMovIntInt<CPU64Regs, CPURegs, 0x0b, "movn"> {
119     let isCodeGenOnly = 1;
120   }
121   def MOVN_I64_I64 : CondMovIntInt<CPU64Regs, CPU64Regs, 0x0b, "movn"> {
122     let isCodeGenOnly = 1;
123   }
124 }
125
126 def MOVZ_I_S   : CondMovIntFP<CPURegs, FGR32, 16, 18, "movz.s">;
127 def MOVZ_I64_S : CondMovIntFP<CPU64Regs, FGR32, 16, 18, "movz.s">,
128                  Requires<[HasMips64, HasStandardEncoding]> {
129   let DecoderNamespace = "Mips64";
130 }
131
132 def MOVN_I_S   : CondMovIntFP<CPURegs, FGR32, 16, 19, "movn.s">;
133 def MOVN_I64_S : CondMovIntFP<CPU64Regs, FGR32, 16, 19, "movn.s">,
134                  Requires<[HasMips64, HasStandardEncoding]> {
135   let DecoderNamespace = "Mips64";
136 }
137
138 let Predicates = [NotFP64bit, HasStandardEncoding] in {
139   def MOVZ_I_D32   : CondMovIntFP<CPURegs, AFGR64, 17, 18, "movz.d">;
140   def MOVN_I_D32   : CondMovIntFP<CPURegs, AFGR64, 17, 19, "movn.d">;
141 }
142 let Predicates = [IsFP64bit, HasStandardEncoding],DecoderNamespace = "Mips64" in {
143   def MOVZ_I_D64   : CondMovIntFP<CPURegs, FGR64, 17, 18, "movz.d">;
144   def MOVZ_I64_D64 : CondMovIntFP<CPU64Regs, FGR64, 17, 18, "movz.d"> {
145     let isCodeGenOnly = 1;
146   }
147   def MOVN_I_D64   : CondMovIntFP<CPURegs, FGR64, 17, 19, "movn.d">;
148   def MOVN_I64_D64 : CondMovIntFP<CPU64Regs, FGR64, 17, 19, "movn.d"> {
149     let isCodeGenOnly = 1;
150   }
151 }
152
153 def MOVT_I   : CondMovFPInt<CPURegs, MipsCMovFP_T, 1, "movt">;
154 def MOVT_I64 : CondMovFPInt<CPU64Regs, MipsCMovFP_T, 1, "movt">,
155                Requires<[HasMips64, HasStandardEncoding]> {
156   let DecoderNamespace = "Mips64";
157 }
158
159 def MOVF_I   : CondMovFPInt<CPURegs, MipsCMovFP_F, 0, "movf">;
160 def MOVF_I64 : CondMovFPInt<CPU64Regs, MipsCMovFP_F, 0, "movf">,
161                Requires<[HasMips64, HasStandardEncoding]> {
162   let DecoderNamespace = "Mips64";
163 }
164
165 def MOVT_S : CondMovFPFP<FGR32, MipsCMovFP_T, 16, 1, "movt.s">;
166 def MOVF_S : CondMovFPFP<FGR32, MipsCMovFP_F, 16, 0, "movf.s">;
167
168 let Predicates = [NotFP64bit, HasStandardEncoding] in {
169   def MOVT_D32 : CondMovFPFP<AFGR64, MipsCMovFP_T, 17, 1, "movt.d">;
170   def MOVF_D32 : CondMovFPFP<AFGR64, MipsCMovFP_F, 17, 0, "movf.d">;
171 }
172 let Predicates = [IsFP64bit, HasStandardEncoding],
173     DecoderNamespace = "Mips64" in {
174   def MOVT_D64 : CondMovFPFP<FGR64, MipsCMovFP_T, 17, 1, "movt.d">;
175   def MOVF_D64 : CondMovFPFP<FGR64, MipsCMovFP_F, 17, 0, "movf.d">;
176 }
177
178 // Instantiation of conditional move patterns.
179 defm : MovzPats0<CPURegs, CPURegs, MOVZ_I_I, SLT, SLTu, SLTi, SLTiu>;
180 defm : MovzPats1<CPURegs, CPURegs, MOVZ_I_I, XOR>;
181 defm : MovzPats2<CPURegs, CPURegs, MOVZ_I_I, XORi>;
182 let Predicates = [HasMips64, HasStandardEncoding] in {
183   defm : MovzPats0<CPURegs, CPU64Regs, MOVZ_I_I64, SLT, SLTu, SLTi, SLTiu>;
184   defm : MovzPats0<CPU64Regs, CPURegs, MOVZ_I_I, SLT64, SLTu64, SLTi64,
185                    SLTiu64>;
186   defm : MovzPats0<CPU64Regs, CPU64Regs, MOVZ_I_I64, SLT64, SLTu64, SLTi64,
187                    SLTiu64>;
188   defm : MovzPats1<CPURegs, CPU64Regs, MOVZ_I_I64, XOR>;
189   defm : MovzPats1<CPU64Regs, CPURegs, MOVZ_I64_I, XOR64>;
190   defm : MovzPats1<CPU64Regs, CPU64Regs, MOVZ_I64_I64, XOR64>;
191   defm : MovzPats2<CPURegs, CPU64Regs, MOVZ_I_I64, XORi>;
192   defm : MovzPats2<CPU64Regs, CPURegs, MOVZ_I64_I, XORi64>;
193   defm : MovzPats2<CPU64Regs, CPU64Regs, MOVZ_I64_I64, XORi64>;
194 }
195
196 defm : MovnPats<CPURegs, CPURegs, MOVN_I_I, XOR>;
197 let Predicates = [HasMips64, HasStandardEncoding] in {
198   defm : MovnPats<CPURegs, CPU64Regs, MOVN_I_I64, XOR>;
199   defm : MovnPats<CPU64Regs, CPURegs, MOVN_I64_I, XOR64>;
200   defm : MovnPats<CPU64Regs, CPU64Regs, MOVN_I64_I64, XOR64>;
201 }
202
203 defm : MovzPats0<CPURegs, FGR32, MOVZ_I_S, SLT, SLTu, SLTi, SLTiu>;
204 defm : MovzPats1<CPURegs, FGR32, MOVZ_I_S, XOR>;
205 defm : MovnPats<CPURegs, FGR32, MOVN_I_S, XOR>;
206 let Predicates = [HasMips64, HasStandardEncoding] in {
207   defm : MovzPats0<CPU64Regs, FGR32, MOVZ_I_S, SLT64, SLTu64, SLTi64,
208                    SLTiu64>;
209   defm : MovzPats1<CPU64Regs, FGR32, MOVZ_I64_S, XOR64>;
210   defm : MovnPats<CPU64Regs, FGR32, MOVN_I64_S, XOR64>;
211 }
212
213 let Predicates = [NotFP64bit, HasStandardEncoding] in {
214   defm : MovzPats0<CPURegs, AFGR64, MOVZ_I_D32, SLT, SLTu, SLTi, SLTiu>;
215   defm : MovzPats1<CPURegs, AFGR64, MOVZ_I_D32, XOR>;
216   defm : MovnPats<CPURegs, AFGR64, MOVN_I_D32, XOR>;
217 }
218 let Predicates = [IsFP64bit, HasStandardEncoding] in {
219   defm : MovzPats0<CPURegs, FGR64, MOVZ_I_D64, SLT, SLTu, SLTi, SLTiu>;
220   defm : MovzPats0<CPU64Regs, FGR64, MOVZ_I_D64, SLT64, SLTu64, SLTi64,
221                    SLTiu64>;
222   defm : MovzPats1<CPURegs, FGR64, MOVZ_I_D64, XOR>;
223   defm : MovzPats1<CPU64Regs, FGR64, MOVZ_I64_D64, XOR64>;
224   defm : MovnPats<CPURegs, FGR64, MOVN_I_D64, XOR>;
225   defm : MovnPats<CPU64Regs, FGR64, MOVN_I64_D64, XOR64>;
226 }