blob: a08d157fedf0500093b0f84302ea3f8c14b97861 [file] [log] [blame]
Akira Hatanaka44ebe002013-03-14 19:09:52 +00001//===-- MipsSEISelLowering.cpp - MipsSE DAG Lowering Interface --*- C++ -*-===//
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002//
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// Subclass of MipsTargetLowering specialized for mips32/64.
11//
12//===----------------------------------------------------------------------===//
13#include "MipsSEISelLowering.h"
14#include "MipsRegisterInfo.h"
15#include "MipsTargetMachine.h"
16#include "llvm/CodeGen/MachineInstrBuilder.h"
17#include "llvm/CodeGen/MachineRegisterInfo.h"
Akira Hatanakaa6bbde52013-04-13 02:13:30 +000018#include "llvm/IR/Intrinsics.h"
Akira Hatanaka96ca1822013-03-13 00:54:29 +000019#include "llvm/Support/CommandLine.h"
20#include "llvm/Target/TargetInstrInfo.h"
21
22using namespace llvm;
23
24static cl::opt<bool>
25EnableMipsTailCalls("enable-mips-tail-calls", cl::Hidden,
26 cl::desc("MIPS: Enable tail calls."), cl::init(false));
27
Akira Hatanaka63791212013-09-07 00:52:30 +000028static cl::opt<bool> NoDPLoadStore("mno-ldc1-sdc1", cl::init(false),
29 cl::desc("Expand double precision loads and "
30 "stores to their single precision "
31 "counterparts"));
32
Akira Hatanaka96ca1822013-03-13 00:54:29 +000033MipsSETargetLowering::MipsSETargetLowering(MipsTargetMachine &TM)
34 : MipsTargetLowering(TM) {
35 // Set up the register classes
Reed Kotler1595f362013-04-09 19:46:01 +000036
37 clearRegisterClasses();
38
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +000039 addRegisterClass(MVT::i32, &Mips::GPR32RegClass);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000040
41 if (HasMips64)
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +000042 addRegisterClass(MVT::i64, &Mips::GPR64RegClass);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000043
Daniel Sanders36c671e2013-09-27 09:44:59 +000044 if (Subtarget->hasDSP() || Subtarget->hasMSA()) {
45 // Expand all truncating stores and extending loads.
46 unsigned FirstVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
47 unsigned LastVT = (unsigned)MVT::LAST_VECTOR_VALUETYPE;
48
49 for (unsigned VT0 = FirstVT; VT0 <= LastVT; ++VT0) {
50 for (unsigned VT1 = FirstVT; VT1 <= LastVT; ++VT1)
51 setTruncStoreAction((MVT::SimpleValueType)VT0,
52 (MVT::SimpleValueType)VT1, Expand);
53
54 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT0, Expand);
55 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT0, Expand);
56 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT0, Expand);
57 }
58 }
59
Akira Hatanaka96ca1822013-03-13 00:54:29 +000060 if (Subtarget->hasDSP()) {
61 MVT::SimpleValueType VecTys[2] = {MVT::v2i16, MVT::v4i8};
62
63 for (unsigned i = 0; i < array_lengthof(VecTys); ++i) {
Akira Hatanaka654655f2013-08-14 00:53:38 +000064 addRegisterClass(VecTys[i], &Mips::DSPRRegClass);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000065
66 // Expand all builtin opcodes.
67 for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
68 setOperationAction(Opc, VecTys[i], Expand);
69
Akira Hatanaka2f088222013-04-13 00:55:41 +000070 setOperationAction(ISD::ADD, VecTys[i], Legal);
71 setOperationAction(ISD::SUB, VecTys[i], Legal);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000072 setOperationAction(ISD::LOAD, VecTys[i], Legal);
73 setOperationAction(ISD::STORE, VecTys[i], Legal);
74 setOperationAction(ISD::BITCAST, VecTys[i], Legal);
75 }
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +000076
77 setTargetDAGCombine(ISD::SHL);
78 setTargetDAGCombine(ISD::SRA);
79 setTargetDAGCombine(ISD::SRL);
Akira Hatanaka68741cc2013-04-30 22:37:26 +000080 setTargetDAGCombine(ISD::SETCC);
81 setTargetDAGCombine(ISD::VSELECT);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000082 }
83
Akira Hatanaka2f088222013-04-13 00:55:41 +000084 if (Subtarget->hasDSPR2())
85 setOperationAction(ISD::MUL, MVT::v2i16, Legal);
86
Jack Carter3a2c2d42013-08-13 20:54:07 +000087 if (Subtarget->hasMSA()) {
Daniel Sandersc65f58a2013-09-11 10:15:48 +000088 addMSAIntType(MVT::v16i8, &Mips::MSA128BRegClass);
89 addMSAIntType(MVT::v8i16, &Mips::MSA128HRegClass);
90 addMSAIntType(MVT::v4i32, &Mips::MSA128WRegClass);
91 addMSAIntType(MVT::v2i64, &Mips::MSA128DRegClass);
92 addMSAFloatType(MVT::v8f16, &Mips::MSA128HRegClass);
93 addMSAFloatType(MVT::v4f32, &Mips::MSA128WRegClass);
94 addMSAFloatType(MVT::v2f64, &Mips::MSA128DRegClass);
Daniel Sandersf7456c72013-09-23 13:22:24 +000095
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +000096 setTargetDAGCombine(ISD::AND);
97 setTargetDAGCombine(ISD::SRA);
Daniel Sanderse1d24352013-09-24 12:04:44 +000098 setTargetDAGCombine(ISD::VSELECT);
Daniel Sandersf7456c72013-09-23 13:22:24 +000099 setTargetDAGCombine(ISD::XOR);
Jack Carter3a2c2d42013-08-13 20:54:07 +0000100 }
101
Reed Kotlerc03807a2013-08-30 19:40:56 +0000102 if (!Subtarget->mipsSEUsesSoftFloat()) {
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000103 addRegisterClass(MVT::f32, &Mips::FGR32RegClass);
104
105 // When dealing with single precision only, use libcalls
106 if (!Subtarget->isSingleFloat()) {
Akira Hatanakabfb66242013-08-20 23:38:40 +0000107 if (Subtarget->isFP64bit())
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000108 addRegisterClass(MVT::f64, &Mips::FGR64RegClass);
109 else
110 addRegisterClass(MVT::f64, &Mips::AFGR64RegClass);
111 }
112 }
113
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000114 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Custom);
115 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Custom);
116 setOperationAction(ISD::MULHS, MVT::i32, Custom);
117 setOperationAction(ISD::MULHU, MVT::i32, Custom);
118
Akira Hatanaka4f1130e2013-04-11 19:29:26 +0000119 if (HasMips64) {
120 setOperationAction(ISD::MULHS, MVT::i64, Custom);
121 setOperationAction(ISD::MULHU, MVT::i64, Custom);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000122 setOperationAction(ISD::MUL, MVT::i64, Custom);
Akira Hatanaka4f1130e2013-04-11 19:29:26 +0000123 }
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000124
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000125 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i64, Custom);
126 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
127
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000128 setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
129 setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
130 setOperationAction(ISD::SDIVREM, MVT::i64, Custom);
131 setOperationAction(ISD::UDIVREM, MVT::i64, Custom);
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000132 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
133 setOperationAction(ISD::LOAD, MVT::i32, Custom);
134 setOperationAction(ISD::STORE, MVT::i32, Custom);
135
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000136 setTargetDAGCombine(ISD::ADDE);
137 setTargetDAGCombine(ISD::SUBE);
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000138 setTargetDAGCombine(ISD::MUL);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000139
Daniel Sandersce09d072013-08-28 12:14:50 +0000140 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +0000141 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
142 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
143
Akira Hatanaka63791212013-09-07 00:52:30 +0000144 if (NoDPLoadStore) {
145 setOperationAction(ISD::LOAD, MVT::f64, Custom);
146 setOperationAction(ISD::STORE, MVT::f64, Custom);
147 }
148
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000149 computeRegisterProperties();
150}
151
152const MipsTargetLowering *
153llvm::createMipsSETargetLowering(MipsTargetMachine &TM) {
154 return new MipsSETargetLowering(TM);
155}
156
Daniel Sanders7a289d02013-09-23 12:02:46 +0000157// Enable MSA support for the given integer type and Register class.
Daniel Sanders3c9a0ad2013-08-23 10:10:13 +0000158void MipsSETargetLowering::
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000159addMSAIntType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
160 addRegisterClass(Ty, RC);
161
162 // Expand all builtin opcodes.
163 for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
164 setOperationAction(Opc, Ty, Expand);
165
166 setOperationAction(ISD::BITCAST, Ty, Legal);
167 setOperationAction(ISD::LOAD, Ty, Legal);
168 setOperationAction(ISD::STORE, Ty, Legal);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000169 setOperationAction(ISD::EXTRACT_VECTOR_ELT, Ty, Custom);
170 setOperationAction(ISD::INSERT_VECTOR_ELT, Ty, Legal);
Daniel Sanders7a289d02013-09-23 12:02:46 +0000171 setOperationAction(ISD::BUILD_VECTOR, Ty, Custom);
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000172
Daniel Sandersfa5ab1c2013-09-11 10:28:16 +0000173 setOperationAction(ISD::ADD, Ty, Legal);
Daniel Sanders8ca81e42013-09-23 12:57:42 +0000174 setOperationAction(ISD::AND, Ty, Legal);
Daniel Sandersfbcb5822013-09-11 11:58:30 +0000175 setOperationAction(ISD::CTLZ, Ty, Legal);
Daniel Sanders766cb692013-09-23 13:40:21 +0000176 setOperationAction(ISD::CTPOP, Ty, Legal);
Daniel Sandersfbcb5822013-09-11 11:58:30 +0000177 setOperationAction(ISD::MUL, Ty, Legal);
Daniel Sanders8ca81e42013-09-23 12:57:42 +0000178 setOperationAction(ISD::OR, Ty, Legal);
Daniel Sanders607952b2013-09-11 10:38:58 +0000179 setOperationAction(ISD::SDIV, Ty, Legal);
Daniel Sanders0210dd42013-10-01 10:22:35 +0000180 setOperationAction(ISD::SREM, Ty, Legal);
Daniel Sandersfbcb5822013-09-11 11:58:30 +0000181 setOperationAction(ISD::SHL, Ty, Legal);
182 setOperationAction(ISD::SRA, Ty, Legal);
183 setOperationAction(ISD::SRL, Ty, Legal);
184 setOperationAction(ISD::SUB, Ty, Legal);
Daniel Sanders607952b2013-09-11 10:38:58 +0000185 setOperationAction(ISD::UDIV, Ty, Legal);
Daniel Sanders0210dd42013-10-01 10:22:35 +0000186 setOperationAction(ISD::UREM, Ty, Legal);
Daniel Sanderse5087042013-09-24 14:02:15 +0000187 setOperationAction(ISD::VECTOR_SHUFFLE, Ty, Custom);
Daniel Sanderse1d24352013-09-24 12:04:44 +0000188 setOperationAction(ISD::VSELECT, Ty, Legal);
Daniel Sanders8ca81e42013-09-23 12:57:42 +0000189 setOperationAction(ISD::XOR, Ty, Legal);
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000190
Daniel Sanders015972b2013-10-11 10:00:06 +0000191 if (Ty == MVT::v4i32 || Ty == MVT::v2i64) {
192 setOperationAction(ISD::FP_TO_SINT, Ty, Legal);
193 setOperationAction(ISD::FP_TO_UINT, Ty, Legal);
194 setOperationAction(ISD::SINT_TO_FP, Ty, Legal);
195 setOperationAction(ISD::UINT_TO_FP, Ty, Legal);
196 }
197
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000198 setOperationAction(ISD::SETCC, Ty, Legal);
199 setCondCodeAction(ISD::SETNE, Ty, Expand);
200 setCondCodeAction(ISD::SETGE, Ty, Expand);
201 setCondCodeAction(ISD::SETGT, Ty, Expand);
202 setCondCodeAction(ISD::SETUGE, Ty, Expand);
203 setCondCodeAction(ISD::SETUGT, Ty, Expand);
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000204}
205
Daniel Sanders7a289d02013-09-23 12:02:46 +0000206// Enable MSA support for the given floating-point type and Register class.
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000207void MipsSETargetLowering::
208addMSAFloatType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
Daniel Sanders3c9a0ad2013-08-23 10:10:13 +0000209 addRegisterClass(Ty, RC);
Jack Carterbabdcc82013-08-15 12:24:57 +0000210
211 // Expand all builtin opcodes.
212 for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
213 setOperationAction(Opc, Ty, Expand);
214
215 setOperationAction(ISD::LOAD, Ty, Legal);
216 setOperationAction(ISD::STORE, Ty, Legal);
217 setOperationAction(ISD::BITCAST, Ty, Legal);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000218 setOperationAction(ISD::EXTRACT_VECTOR_ELT, Ty, Legal);
Daniel Sandersa5150702013-09-27 12:31:32 +0000219 setOperationAction(ISD::INSERT_VECTOR_ELT, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000220
221 if (Ty != MVT::v8f16) {
Daniel Sanders4f3ff1b2013-09-24 13:02:08 +0000222 setOperationAction(ISD::FABS, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000223 setOperationAction(ISD::FADD, Ty, Legal);
224 setOperationAction(ISD::FDIV, Ty, Legal);
225 setOperationAction(ISD::FLOG2, Ty, Legal);
226 setOperationAction(ISD::FMUL, Ty, Legal);
227 setOperationAction(ISD::FRINT, Ty, Legal);
228 setOperationAction(ISD::FSQRT, Ty, Legal);
229 setOperationAction(ISD::FSUB, Ty, Legal);
Daniel Sanderse1d24352013-09-24 12:04:44 +0000230 setOperationAction(ISD::VSELECT, Ty, Legal);
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000231
232 setOperationAction(ISD::SETCC, Ty, Legal);
233 setCondCodeAction(ISD::SETOGE, Ty, Expand);
234 setCondCodeAction(ISD::SETOGT, Ty, Expand);
235 setCondCodeAction(ISD::SETUGE, Ty, Expand);
236 setCondCodeAction(ISD::SETUGT, Ty, Expand);
237 setCondCodeAction(ISD::SETGE, Ty, Expand);
238 setCondCodeAction(ISD::SETGT, Ty, Expand);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000239 }
Jack Carterbabdcc82013-08-15 12:24:57 +0000240}
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000241
242bool
243MipsSETargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
244 MVT::SimpleValueType SVT = VT.getSimpleVT().SimpleTy;
245
246 switch (SVT) {
247 case MVT::i64:
248 case MVT::i32:
249 if (Fast)
250 *Fast = true;
251 return true;
252 default:
253 return false;
254 }
255}
256
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000257SDValue MipsSETargetLowering::LowerOperation(SDValue Op,
258 SelectionDAG &DAG) const {
259 switch(Op.getOpcode()) {
Akira Hatanaka63791212013-09-07 00:52:30 +0000260 case ISD::LOAD: return lowerLOAD(Op, DAG);
261 case ISD::STORE: return lowerSTORE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000262 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG);
263 case ISD::UMUL_LOHI: return lowerMulDiv(Op, MipsISD::Multu, true, true, DAG);
264 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG);
265 case ISD::MULHU: return lowerMulDiv(Op, MipsISD::Multu, false, true, DAG);
266 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG);
267 case ISD::SDIVREM: return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG);
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000268 case ISD::UDIVREM: return lowerMulDiv(Op, MipsISD::DivRemU, true, true,
269 DAG);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000270 case ISD::INTRINSIC_WO_CHAIN: return lowerINTRINSIC_WO_CHAIN(Op, DAG);
271 case ISD::INTRINSIC_W_CHAIN: return lowerINTRINSIC_W_CHAIN(Op, DAG);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +0000272 case ISD::INTRINSIC_VOID: return lowerINTRINSIC_VOID(Op, DAG);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000273 case ISD::EXTRACT_VECTOR_ELT: return lowerEXTRACT_VECTOR_ELT(Op, DAG);
Daniel Sanders7a289d02013-09-23 12:02:46 +0000274 case ISD::BUILD_VECTOR: return lowerBUILD_VECTOR(Op, DAG);
Daniel Sanderse5087042013-09-24 14:02:15 +0000275 case ISD::VECTOR_SHUFFLE: return lowerVECTOR_SHUFFLE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000276 }
277
278 return MipsTargetLowering::LowerOperation(Op, DAG);
279}
280
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000281// selectMADD -
282// Transforms a subgraph in CurDAG if the following pattern is found:
283// (addc multLo, Lo0), (adde multHi, Hi0),
284// where,
285// multHi/Lo: product of multiplication
286// Lo0: initial value of Lo register
287// Hi0: initial value of Hi register
288// Return true if pattern matching was successful.
289static bool selectMADD(SDNode *ADDENode, SelectionDAG *CurDAG) {
290 // ADDENode's second operand must be a flag output of an ADDC node in order
291 // for the matching to be successful.
292 SDNode *ADDCNode = ADDENode->getOperand(2).getNode();
293
294 if (ADDCNode->getOpcode() != ISD::ADDC)
295 return false;
296
297 SDValue MultHi = ADDENode->getOperand(0);
298 SDValue MultLo = ADDCNode->getOperand(0);
299 SDNode *MultNode = MultHi.getNode();
300 unsigned MultOpc = MultHi.getOpcode();
301
302 // MultHi and MultLo must be generated by the same node,
303 if (MultLo.getNode() != MultNode)
304 return false;
305
306 // and it must be a multiplication.
307 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
308 return false;
309
310 // MultLo amd MultHi must be the first and second output of MultNode
311 // respectively.
312 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
313 return false;
314
315 // Transform this to a MADD only if ADDENode and ADDCNode are the only users
316 // of the values of MultNode, in which case MultNode will be removed in later
317 // phases.
318 // If there exist users other than ADDENode or ADDCNode, this function returns
319 // here, which will result in MultNode being mapped to a single MULT
320 // instruction node rather than a pair of MULT and MADD instructions being
321 // produced.
322 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
323 return false;
324
Andrew Trickef9de2a2013-05-25 02:42:55 +0000325 SDLoc DL(ADDENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000326
327 // Initialize accumulator.
328 SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
329 ADDCNode->getOperand(1),
330 ADDENode->getOperand(1));
331
332 // create MipsMAdd(u) node
333 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MAddu : MipsISD::MAdd;
334
335 SDValue MAdd = CurDAG->getNode(MultOpc, DL, MVT::Untyped,
336 MultNode->getOperand(0),// Factor 0
337 MultNode->getOperand(1),// Factor 1
338 ACCIn);
339
340 // replace uses of adde and addc here
341 if (!SDValue(ADDCNode, 0).use_empty()) {
Akira Hatanaka16048332013-10-07 18:49:46 +0000342 SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLO, DL, MVT::i32, MAdd);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000343 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDCNode, 0), LoOut);
344 }
345 if (!SDValue(ADDENode, 0).use_empty()) {
Akira Hatanaka16048332013-10-07 18:49:46 +0000346 SDValue HiOut = CurDAG->getNode(MipsISD::ExtractHI, DL, MVT::i32, MAdd);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000347 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDENode, 0), HiOut);
348 }
349
350 return true;
351}
352
353// selectMSUB -
354// Transforms a subgraph in CurDAG if the following pattern is found:
355// (addc Lo0, multLo), (sube Hi0, multHi),
356// where,
357// multHi/Lo: product of multiplication
358// Lo0: initial value of Lo register
359// Hi0: initial value of Hi register
360// Return true if pattern matching was successful.
361static bool selectMSUB(SDNode *SUBENode, SelectionDAG *CurDAG) {
362 // SUBENode's second operand must be a flag output of an SUBC node in order
363 // for the matching to be successful.
364 SDNode *SUBCNode = SUBENode->getOperand(2).getNode();
365
366 if (SUBCNode->getOpcode() != ISD::SUBC)
367 return false;
368
369 SDValue MultHi = SUBENode->getOperand(1);
370 SDValue MultLo = SUBCNode->getOperand(1);
371 SDNode *MultNode = MultHi.getNode();
372 unsigned MultOpc = MultHi.getOpcode();
373
374 // MultHi and MultLo must be generated by the same node,
375 if (MultLo.getNode() != MultNode)
376 return false;
377
378 // and it must be a multiplication.
379 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
380 return false;
381
382 // MultLo amd MultHi must be the first and second output of MultNode
383 // respectively.
384 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
385 return false;
386
387 // Transform this to a MSUB only if SUBENode and SUBCNode are the only users
388 // of the values of MultNode, in which case MultNode will be removed in later
389 // phases.
390 // If there exist users other than SUBENode or SUBCNode, this function returns
391 // here, which will result in MultNode being mapped to a single MULT
392 // instruction node rather than a pair of MULT and MSUB instructions being
393 // produced.
394 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
395 return false;
396
Andrew Trickef9de2a2013-05-25 02:42:55 +0000397 SDLoc DL(SUBENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000398
399 // Initialize accumulator.
400 SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
401 SUBCNode->getOperand(0),
402 SUBENode->getOperand(0));
403
404 // create MipsSub(u) node
405 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MSubu : MipsISD::MSub;
406
407 SDValue MSub = CurDAG->getNode(MultOpc, DL, MVT::Glue,
408 MultNode->getOperand(0),// Factor 0
409 MultNode->getOperand(1),// Factor 1
410 ACCIn);
411
412 // replace uses of sube and subc here
413 if (!SDValue(SUBCNode, 0).use_empty()) {
Akira Hatanaka16048332013-10-07 18:49:46 +0000414 SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLO, DL, MVT::i32, MSub);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000415 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBCNode, 0), LoOut);
416 }
417 if (!SDValue(SUBENode, 0).use_empty()) {
Akira Hatanaka16048332013-10-07 18:49:46 +0000418 SDValue HiOut = CurDAG->getNode(MipsISD::ExtractHI, DL, MVT::i32, MSub);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000419 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBENode, 0), HiOut);
420 }
421
422 return true;
423}
424
425static SDValue performADDECombine(SDNode *N, SelectionDAG &DAG,
426 TargetLowering::DAGCombinerInfo &DCI,
427 const MipsSubtarget *Subtarget) {
428 if (DCI.isBeforeLegalize())
429 return SDValue();
430
431 if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
432 selectMADD(N, &DAG))
433 return SDValue(N, 0);
434
435 return SDValue();
436}
437
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000438// Fold zero extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT
439//
440// Performs the following transformations:
441// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to zero extension if its
442// sign/zero-extension is completely overwritten by the new one performed by
443// the ISD::AND.
444// - Removes redundant zero extensions performed by an ISD::AND.
445static SDValue performANDCombine(SDNode *N, SelectionDAG &DAG,
446 TargetLowering::DAGCombinerInfo &DCI,
447 const MipsSubtarget *Subtarget) {
448 if (!Subtarget->hasMSA())
449 return SDValue();
450
451 SDValue Op0 = N->getOperand(0);
452 SDValue Op1 = N->getOperand(1);
453 unsigned Op0Opcode = Op0->getOpcode();
454
455 // (and (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d)
456 // where $d + 1 == 2^n and n == 32
457 // or $d + 1 == 2^n and n <= 32 and ZExt
458 // -> (MipsVExtractZExt $a, $b, $c)
459 if (Op0Opcode == MipsISD::VEXTRACT_SEXT_ELT ||
460 Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT) {
461 ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(Op1);
462
463 if (!Mask)
464 return SDValue();
465
466 int32_t Log2IfPositive = (Mask->getAPIntValue() + 1).exactLogBase2();
467
468 if (Log2IfPositive <= 0)
469 return SDValue(); // Mask+1 is not a power of 2
470
471 SDValue Op0Op2 = Op0->getOperand(2);
472 EVT ExtendTy = cast<VTSDNode>(Op0Op2)->getVT();
473 unsigned ExtendTySize = ExtendTy.getSizeInBits();
474 unsigned Log2 = Log2IfPositive;
475
476 if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT && Log2 >= ExtendTySize) ||
477 Log2 == ExtendTySize) {
478 SDValue Ops[] = { Op0->getOperand(0), Op0->getOperand(1), Op0Op2 };
479 DAG.MorphNodeTo(Op0.getNode(), MipsISD::VEXTRACT_ZEXT_ELT,
480 Op0->getVTList(), Ops, Op0->getNumOperands());
481 return Op0;
482 }
483 }
484
485 return SDValue();
486}
487
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000488static SDValue performSUBECombine(SDNode *N, SelectionDAG &DAG,
489 TargetLowering::DAGCombinerInfo &DCI,
490 const MipsSubtarget *Subtarget) {
491 if (DCI.isBeforeLegalize())
492 return SDValue();
493
494 if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
495 selectMSUB(N, &DAG))
496 return SDValue(N, 0);
497
498 return SDValue();
499}
500
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000501static SDValue genConstMult(SDValue X, uint64_t C, SDLoc DL, EVT VT,
502 EVT ShiftTy, SelectionDAG &DAG) {
503 // Clear the upper (64 - VT.sizeInBits) bits.
504 C &= ((uint64_t)-1) >> (64 - VT.getSizeInBits());
505
506 // Return 0.
507 if (C == 0)
508 return DAG.getConstant(0, VT);
509
510 // Return x.
511 if (C == 1)
512 return X;
513
514 // If c is power of 2, return (shl x, log2(c)).
515 if (isPowerOf2_64(C))
516 return DAG.getNode(ISD::SHL, DL, VT, X,
517 DAG.getConstant(Log2_64(C), ShiftTy));
518
519 unsigned Log2Ceil = Log2_64_Ceil(C);
520 uint64_t Floor = 1LL << Log2_64(C);
521 uint64_t Ceil = Log2Ceil == 64 ? 0LL : 1LL << Log2Ceil;
522
523 // If |c - floor_c| <= |c - ceil_c|,
524 // where floor_c = pow(2, floor(log2(c))) and ceil_c = pow(2, ceil(log2(c))),
525 // return (add constMult(x, floor_c), constMult(x, c - floor_c)).
526 if (C - Floor <= Ceil - C) {
527 SDValue Op0 = genConstMult(X, Floor, DL, VT, ShiftTy, DAG);
528 SDValue Op1 = genConstMult(X, C - Floor, DL, VT, ShiftTy, DAG);
529 return DAG.getNode(ISD::ADD, DL, VT, Op0, Op1);
530 }
531
532 // If |c - floor_c| > |c - ceil_c|,
533 // return (sub constMult(x, ceil_c), constMult(x, ceil_c - c)).
534 SDValue Op0 = genConstMult(X, Ceil, DL, VT, ShiftTy, DAG);
535 SDValue Op1 = genConstMult(X, Ceil - C, DL, VT, ShiftTy, DAG);
536 return DAG.getNode(ISD::SUB, DL, VT, Op0, Op1);
537}
538
539static SDValue performMULCombine(SDNode *N, SelectionDAG &DAG,
540 const TargetLowering::DAGCombinerInfo &DCI,
541 const MipsSETargetLowering *TL) {
542 EVT VT = N->getValueType(0);
543
544 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
545 if (!VT.isVector())
546 return genConstMult(N->getOperand(0), C->getZExtValue(), SDLoc(N),
547 VT, TL->getScalarShiftAmountTy(VT), DAG);
548
549 return SDValue(N, 0);
550}
551
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000552static SDValue performDSPShiftCombine(unsigned Opc, SDNode *N, EVT Ty,
553 SelectionDAG &DAG,
554 const MipsSubtarget *Subtarget) {
555 // See if this is a vector splat immediate node.
556 APInt SplatValue, SplatUndef;
557 unsigned SplatBitSize;
558 bool HasAnyUndefs;
559 unsigned EltSize = Ty.getVectorElementType().getSizeInBits();
560 BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
561
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000562 if (!BV ||
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000563 !BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
Akira Hatanakae9d0b312013-04-23 18:09:42 +0000564 EltSize, !Subtarget->isLittle()) ||
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000565 (SplatBitSize != EltSize) ||
Akira Hatanakae9d0b312013-04-23 18:09:42 +0000566 (SplatValue.getZExtValue() >= EltSize))
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000567 return SDValue();
568
Andrew Trickef9de2a2013-05-25 02:42:55 +0000569 return DAG.getNode(Opc, SDLoc(N), Ty, N->getOperand(0),
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000570 DAG.getConstant(SplatValue.getZExtValue(), MVT::i32));
571}
572
573static SDValue performSHLCombine(SDNode *N, SelectionDAG &DAG,
574 TargetLowering::DAGCombinerInfo &DCI,
575 const MipsSubtarget *Subtarget) {
576 EVT Ty = N->getValueType(0);
577
578 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
579 return SDValue();
580
581 return performDSPShiftCombine(MipsISD::SHLL_DSP, N, Ty, DAG, Subtarget);
582}
583
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000584// Fold sign-extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT for MSA and fold
585// constant splats into MipsISD::SHRA_DSP for DSPr2.
586//
587// Performs the following transformations:
588// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to sign extension if its
589// sign/zero-extension is completely overwritten by the new one performed by
590// the ISD::SRA and ISD::SHL nodes.
591// - Removes redundant sign extensions performed by an ISD::SRA and ISD::SHL
592// sequence.
593//
594// See performDSPShiftCombine for more information about the transformation
595// used for DSPr2.
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000596static SDValue performSRACombine(SDNode *N, SelectionDAG &DAG,
597 TargetLowering::DAGCombinerInfo &DCI,
598 const MipsSubtarget *Subtarget) {
599 EVT Ty = N->getValueType(0);
600
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000601 if (Subtarget->hasMSA()) {
602 SDValue Op0 = N->getOperand(0);
603 SDValue Op1 = N->getOperand(1);
604
605 // (sra (shl (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d), imm:$d)
606 // where $d + sizeof($c) == 32
607 // or $d + sizeof($c) <= 32 and SExt
608 // -> (MipsVExtractSExt $a, $b, $c)
609 if (Op0->getOpcode() == ISD::SHL && Op1 == Op0->getOperand(1)) {
610 SDValue Op0Op0 = Op0->getOperand(0);
611 ConstantSDNode *ShAmount = dyn_cast<ConstantSDNode>(Op1);
612
613 if (!ShAmount)
614 return SDValue();
615
Daniel Sandersf4f1a872013-09-27 09:25:29 +0000616 if (Op0Op0->getOpcode() != MipsISD::VEXTRACT_SEXT_ELT &&
617 Op0Op0->getOpcode() != MipsISD::VEXTRACT_ZEXT_ELT)
618 return SDValue();
619
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000620 EVT ExtendTy = cast<VTSDNode>(Op0Op0->getOperand(2))->getVT();
621 unsigned TotalBits = ShAmount->getZExtValue() + ExtendTy.getSizeInBits();
622
623 if (TotalBits == 32 ||
624 (Op0Op0->getOpcode() == MipsISD::VEXTRACT_SEXT_ELT &&
625 TotalBits <= 32)) {
626 SDValue Ops[] = { Op0Op0->getOperand(0), Op0Op0->getOperand(1),
627 Op0Op0->getOperand(2) };
628 DAG.MorphNodeTo(Op0Op0.getNode(), MipsISD::VEXTRACT_SEXT_ELT,
629 Op0Op0->getVTList(), Ops, Op0Op0->getNumOperands());
630 return Op0Op0;
631 }
632 }
633 }
634
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000635 if ((Ty != MVT::v2i16) && ((Ty != MVT::v4i8) || !Subtarget->hasDSPR2()))
636 return SDValue();
637
638 return performDSPShiftCombine(MipsISD::SHRA_DSP, N, Ty, DAG, Subtarget);
639}
640
641
642static SDValue performSRLCombine(SDNode *N, SelectionDAG &DAG,
643 TargetLowering::DAGCombinerInfo &DCI,
644 const MipsSubtarget *Subtarget) {
645 EVT Ty = N->getValueType(0);
646
647 if (((Ty != MVT::v2i16) || !Subtarget->hasDSPR2()) && (Ty != MVT::v4i8))
648 return SDValue();
649
650 return performDSPShiftCombine(MipsISD::SHRL_DSP, N, Ty, DAG, Subtarget);
651}
652
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000653static bool isLegalDSPCondCode(EVT Ty, ISD::CondCode CC) {
654 bool IsV216 = (Ty == MVT::v2i16);
655
656 switch (CC) {
657 case ISD::SETEQ:
658 case ISD::SETNE: return true;
659 case ISD::SETLT:
660 case ISD::SETLE:
661 case ISD::SETGT:
662 case ISD::SETGE: return IsV216;
663 case ISD::SETULT:
664 case ISD::SETULE:
665 case ISD::SETUGT:
666 case ISD::SETUGE: return !IsV216;
667 default: return false;
668 }
669}
670
671static SDValue performSETCCCombine(SDNode *N, SelectionDAG &DAG) {
672 EVT Ty = N->getValueType(0);
673
674 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
675 return SDValue();
676
677 if (!isLegalDSPCondCode(Ty, cast<CondCodeSDNode>(N->getOperand(2))->get()))
678 return SDValue();
679
Andrew Trickef9de2a2013-05-25 02:42:55 +0000680 return DAG.getNode(MipsISD::SETCC_DSP, SDLoc(N), Ty, N->getOperand(0),
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000681 N->getOperand(1), N->getOperand(2));
682}
683
684static SDValue performVSELECTCombine(SDNode *N, SelectionDAG &DAG) {
685 EVT Ty = N->getValueType(0);
686
Daniel Sanders3ce56622013-09-24 12:18:31 +0000687 if (Ty.is128BitVector() && Ty.isInteger()) {
688 // Try the following combines:
689 // (vselect (setcc $a, $b, SETLT), $b, $a)) -> (vsmax $a, $b)
690 // (vselect (setcc $a, $b, SETLE), $b, $a)) -> (vsmax $a, $b)
691 // (vselect (setcc $a, $b, SETLT), $a, $b)) -> (vsmin $a, $b)
692 // (vselect (setcc $a, $b, SETLE), $a, $b)) -> (vsmin $a, $b)
693 // (vselect (setcc $a, $b, SETULT), $b, $a)) -> (vumax $a, $b)
694 // (vselect (setcc $a, $b, SETULE), $b, $a)) -> (vumax $a, $b)
695 // (vselect (setcc $a, $b, SETULT), $a, $b)) -> (vumin $a, $b)
696 // (vselect (setcc $a, $b, SETULE), $a, $b)) -> (vumin $a, $b)
697 // SETGT/SETGE/SETUGT/SETUGE variants of these will show up initially but
698 // will be expanded to equivalent SETLT/SETLE/SETULT/SETULE versions by the
699 // legalizer.
700 SDValue Op0 = N->getOperand(0);
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000701
Daniel Sanders3ce56622013-09-24 12:18:31 +0000702 if (Op0->getOpcode() != ISD::SETCC)
703 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000704
Daniel Sanders3ce56622013-09-24 12:18:31 +0000705 ISD::CondCode CondCode = cast<CondCodeSDNode>(Op0->getOperand(2))->get();
706 bool Signed;
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000707
Daniel Sanders3ce56622013-09-24 12:18:31 +0000708 if (CondCode == ISD::SETLT || CondCode == ISD::SETLE)
709 Signed = true;
710 else if (CondCode == ISD::SETULT || CondCode == ISD::SETULE)
711 Signed = false;
712 else
713 return SDValue();
714
715 SDValue Op1 = N->getOperand(1);
716 SDValue Op2 = N->getOperand(2);
717 SDValue Op0Op0 = Op0->getOperand(0);
718 SDValue Op0Op1 = Op0->getOperand(1);
719
720 if (Op1 == Op0Op0 && Op2 == Op0Op1)
721 return DAG.getNode(Signed ? MipsISD::VSMIN : MipsISD::VUMIN, SDLoc(N),
722 Ty, Op1, Op2);
723 else if (Op1 == Op0Op1 && Op2 == Op0Op0)
724 return DAG.getNode(Signed ? MipsISD::VSMAX : MipsISD::VUMAX, SDLoc(N),
725 Ty, Op1, Op2);
726 } else if ((Ty == MVT::v2i16) || (Ty == MVT::v4i8)) {
727 SDValue SetCC = N->getOperand(0);
728
729 if (SetCC.getOpcode() != MipsISD::SETCC_DSP)
730 return SDValue();
731
732 return DAG.getNode(MipsISD::SELECT_CC_DSP, SDLoc(N), Ty,
733 SetCC.getOperand(0), SetCC.getOperand(1),
734 N->getOperand(1), N->getOperand(2), SetCC.getOperand(2));
735 }
736
737 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000738}
739
Daniel Sandersf7456c72013-09-23 13:22:24 +0000740static SDValue performXORCombine(SDNode *N, SelectionDAG &DAG,
741 const MipsSubtarget *Subtarget) {
742 EVT Ty = N->getValueType(0);
743
744 if (Subtarget->hasMSA() && Ty.is128BitVector() && Ty.isInteger()) {
745 // Try the following combines:
746 // (xor (or $a, $b), (build_vector allones))
747 // (xor (or $a, $b), (bitcast (build_vector allones)))
748 SDValue Op0 = N->getOperand(0);
749 SDValue Op1 = N->getOperand(1);
750 SDValue NotOp;
Daniel Sandersf7456c72013-09-23 13:22:24 +0000751
752 if (ISD::isBuildVectorAllOnes(Op0.getNode()))
753 NotOp = Op1;
754 else if (ISD::isBuildVectorAllOnes(Op1.getNode()))
755 NotOp = Op0;
Daniel Sandersf7456c72013-09-23 13:22:24 +0000756 else
757 return SDValue();
758
759 if (NotOp->getOpcode() == ISD::OR)
760 return DAG.getNode(MipsISD::VNOR, SDLoc(N), Ty, NotOp->getOperand(0),
761 NotOp->getOperand(1));
762 }
763
764 return SDValue();
765}
766
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000767SDValue
768MipsSETargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const {
769 SelectionDAG &DAG = DCI.DAG;
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000770 SDValue Val;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000771
772 switch (N->getOpcode()) {
773 case ISD::ADDE:
774 return performADDECombine(N, DAG, DCI, Subtarget);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000775 case ISD::AND:
776 Val = performANDCombine(N, DAG, DCI, Subtarget);
777 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000778 case ISD::SUBE:
779 return performSUBECombine(N, DAG, DCI, Subtarget);
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000780 case ISD::MUL:
781 return performMULCombine(N, DAG, DCI, this);
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000782 case ISD::SHL:
783 return performSHLCombine(N, DAG, DCI, Subtarget);
784 case ISD::SRA:
785 return performSRACombine(N, DAG, DCI, Subtarget);
786 case ISD::SRL:
787 return performSRLCombine(N, DAG, DCI, Subtarget);
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000788 case ISD::VSELECT:
789 return performVSELECTCombine(N, DAG);
Daniel Sandersf7456c72013-09-23 13:22:24 +0000790 case ISD::XOR:
791 Val = performXORCombine(N, DAG, Subtarget);
792 break;
793 case ISD::SETCC:
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000794 Val = performSETCCCombine(N, DAG);
795 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000796 }
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000797
798 if (Val.getNode())
799 return Val;
800
801 return MipsTargetLowering::PerformDAGCombine(N, DCI);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000802}
803
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000804MachineBasicBlock *
805MipsSETargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
806 MachineBasicBlock *BB) const {
807 switch (MI->getOpcode()) {
808 default:
809 return MipsTargetLowering::EmitInstrWithCustomInserter(MI, BB);
810 case Mips::BPOSGE32_PSEUDO:
811 return emitBPOSGE32(MI, BB);
Daniel Sandersce09d072013-08-28 12:14:50 +0000812 case Mips::SNZ_B_PSEUDO:
813 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_B);
814 case Mips::SNZ_H_PSEUDO:
815 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_H);
816 case Mips::SNZ_W_PSEUDO:
817 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_W);
818 case Mips::SNZ_D_PSEUDO:
819 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_D);
820 case Mips::SNZ_V_PSEUDO:
821 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_V);
822 case Mips::SZ_B_PSEUDO:
823 return emitMSACBranchPseudo(MI, BB, Mips::BZ_B);
824 case Mips::SZ_H_PSEUDO:
825 return emitMSACBranchPseudo(MI, BB, Mips::BZ_H);
826 case Mips::SZ_W_PSEUDO:
827 return emitMSACBranchPseudo(MI, BB, Mips::BZ_W);
828 case Mips::SZ_D_PSEUDO:
829 return emitMSACBranchPseudo(MI, BB, Mips::BZ_D);
830 case Mips::SZ_V_PSEUDO:
831 return emitMSACBranchPseudo(MI, BB, Mips::BZ_V);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +0000832 case Mips::COPY_FW_PSEUDO:
833 return emitCOPY_FW(MI, BB);
834 case Mips::COPY_FD_PSEUDO:
835 return emitCOPY_FD(MI, BB);
Daniel Sandersa5150702013-09-27 12:31:32 +0000836 case Mips::INSERT_FW_PSEUDO:
837 return emitINSERT_FW(MI, BB);
838 case Mips::INSERT_FD_PSEUDO:
839 return emitINSERT_FD(MI, BB);
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000840 }
841}
842
843bool MipsSETargetLowering::
844isEligibleForTailCallOptimization(const MipsCC &MipsCCInfo,
845 unsigned NextStackOffset,
846 const MipsFunctionInfo& FI) const {
847 if (!EnableMipsTailCalls)
848 return false;
849
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000850 // Return false if either the callee or caller has a byval argument.
851 if (MipsCCInfo.hasByValArg() || FI.hasByvalArg())
852 return false;
853
854 // Return true if the callee's argument area is no larger than the
855 // caller's.
856 return NextStackOffset <= FI.getIncomingArgSize();
857}
858
859void MipsSETargetLowering::
860getOpndList(SmallVectorImpl<SDValue> &Ops,
861 std::deque< std::pair<unsigned, SDValue> > &RegsToPass,
862 bool IsPICCall, bool GlobalOrExternal, bool InternalLinkage,
863 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const {
864 // T9 should contain the address of the callee function if
865 // -reloction-model=pic or it is an indirect call.
866 if (IsPICCall || !GlobalOrExternal) {
867 unsigned T9Reg = IsN64 ? Mips::T9_64 : Mips::T9;
868 RegsToPass.push_front(std::make_pair(T9Reg, Callee));
869 } else
870 Ops.push_back(Callee);
871
872 MipsTargetLowering::getOpndList(Ops, RegsToPass, IsPICCall, GlobalOrExternal,
873 InternalLinkage, CLI, Callee, Chain);
874}
875
Akira Hatanaka63791212013-09-07 00:52:30 +0000876SDValue MipsSETargetLowering::lowerLOAD(SDValue Op, SelectionDAG &DAG) const {
877 LoadSDNode &Nd = *cast<LoadSDNode>(Op);
878
879 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
880 return MipsTargetLowering::lowerLOAD(Op, DAG);
881
882 // Replace a double precision load with two i32 loads and a buildpair64.
883 SDLoc DL(Op);
884 SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
885 EVT PtrVT = Ptr.getValueType();
886
887 // i32 load from lower address.
888 SDValue Lo = DAG.getLoad(MVT::i32, DL, Chain, Ptr,
889 MachinePointerInfo(), Nd.isVolatile(),
890 Nd.isNonTemporal(), Nd.isInvariant(),
891 Nd.getAlignment());
892
893 // i32 load from higher address.
894 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
895 SDValue Hi = DAG.getLoad(MVT::i32, DL, Lo.getValue(1), Ptr,
896 MachinePointerInfo(), Nd.isVolatile(),
897 Nd.isNonTemporal(), Nd.isInvariant(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +0000898 std::min(Nd.getAlignment(), 4U));
Akira Hatanaka63791212013-09-07 00:52:30 +0000899
900 if (!Subtarget->isLittle())
901 std::swap(Lo, Hi);
902
903 SDValue BP = DAG.getNode(MipsISD::BuildPairF64, DL, MVT::f64, Lo, Hi);
904 SDValue Ops[2] = {BP, Hi.getValue(1)};
905 return DAG.getMergeValues(Ops, 2, DL);
906}
907
908SDValue MipsSETargetLowering::lowerSTORE(SDValue Op, SelectionDAG &DAG) const {
909 StoreSDNode &Nd = *cast<StoreSDNode>(Op);
910
911 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
912 return MipsTargetLowering::lowerSTORE(Op, DAG);
913
914 // Replace a double precision store with two extractelement64s and i32 stores.
915 SDLoc DL(Op);
916 SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
917 EVT PtrVT = Ptr.getValueType();
918 SDValue Lo = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
919 Val, DAG.getConstant(0, MVT::i32));
920 SDValue Hi = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
921 Val, DAG.getConstant(1, MVT::i32));
922
923 if (!Subtarget->isLittle())
924 std::swap(Lo, Hi);
925
926 // i32 store to lower address.
927 Chain = DAG.getStore(Chain, DL, Lo, Ptr, MachinePointerInfo(),
928 Nd.isVolatile(), Nd.isNonTemporal(), Nd.getAlignment(),
929 Nd.getTBAAInfo());
930
931 // i32 store to higher address.
932 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
933 return DAG.getStore(Chain, DL, Hi, Ptr, MachinePointerInfo(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +0000934 Nd.isVolatile(), Nd.isNonTemporal(),
935 std::min(Nd.getAlignment(), 4U), Nd.getTBAAInfo());
Akira Hatanaka63791212013-09-07 00:52:30 +0000936}
937
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000938SDValue MipsSETargetLowering::lowerMulDiv(SDValue Op, unsigned NewOpc,
939 bool HasLo, bool HasHi,
940 SelectionDAG &DAG) const {
941 EVT Ty = Op.getOperand(0).getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000942 SDLoc DL(Op);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000943 SDValue Mult = DAG.getNode(NewOpc, DL, MVT::Untyped,
944 Op.getOperand(0), Op.getOperand(1));
945 SDValue Lo, Hi;
946
947 if (HasLo)
Akira Hatanaka16048332013-10-07 18:49:46 +0000948 Lo = DAG.getNode(MipsISD::ExtractLO, DL, Ty, Mult);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000949 if (HasHi)
Akira Hatanaka16048332013-10-07 18:49:46 +0000950 Hi = DAG.getNode(MipsISD::ExtractHI, DL, Ty, Mult);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000951
952 if (!HasLo || !HasHi)
953 return HasLo ? Lo : Hi;
954
955 SDValue Vals[] = { Lo, Hi };
956 return DAG.getMergeValues(Vals, 2, DL);
957}
958
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000959
Andrew Trickef9de2a2013-05-25 02:42:55 +0000960static SDValue initAccumulator(SDValue In, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000961 SDValue InLo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
962 DAG.getConstant(0, MVT::i32));
963 SDValue InHi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
964 DAG.getConstant(1, MVT::i32));
965 return DAG.getNode(MipsISD::InsertLOHI, DL, MVT::Untyped, InLo, InHi);
966}
967
Andrew Trickef9de2a2013-05-25 02:42:55 +0000968static SDValue extractLOHI(SDValue Op, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanaka16048332013-10-07 18:49:46 +0000969 SDValue Lo = DAG.getNode(MipsISD::ExtractLO, DL, MVT::i32, Op);
970 SDValue Hi = DAG.getNode(MipsISD::ExtractHI, DL, MVT::i32, Op);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000971 return DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Lo, Hi);
972}
973
974// This function expands mips intrinsic nodes which have 64-bit input operands
975// or output values.
976//
977// out64 = intrinsic-node in64
978// =>
979// lo = copy (extract-element (in64, 0))
980// hi = copy (extract-element (in64, 1))
981// mips-specific-node
982// v0 = copy lo
983// v1 = copy hi
984// out64 = merge-values (v0, v1)
985//
986static SDValue lowerDSPIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000987 SDLoc DL(Op);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000988 bool HasChainIn = Op->getOperand(0).getValueType() == MVT::Other;
989 SmallVector<SDValue, 3> Ops;
990 unsigned OpNo = 0;
991
992 // See if Op has a chain input.
993 if (HasChainIn)
994 Ops.push_back(Op->getOperand(OpNo++));
995
996 // The next operand is the intrinsic opcode.
997 assert(Op->getOperand(OpNo).getOpcode() == ISD::TargetConstant);
998
999 // See if the next operand has type i64.
1000 SDValue Opnd = Op->getOperand(++OpNo), In64;
1001
1002 if (Opnd.getValueType() == MVT::i64)
1003 In64 = initAccumulator(Opnd, DL, DAG);
1004 else
1005 Ops.push_back(Opnd);
1006
1007 // Push the remaining operands.
1008 for (++OpNo ; OpNo < Op->getNumOperands(); ++OpNo)
1009 Ops.push_back(Op->getOperand(OpNo));
1010
1011 // Add In64 to the end of the list.
1012 if (In64.getNode())
1013 Ops.push_back(In64);
1014
1015 // Scan output.
1016 SmallVector<EVT, 2> ResTys;
1017
1018 for (SDNode::value_iterator I = Op->value_begin(), E = Op->value_end();
1019 I != E; ++I)
1020 ResTys.push_back((*I == MVT::i64) ? MVT::Untyped : *I);
1021
1022 // Create node.
1023 SDValue Val = DAG.getNode(Opc, DL, ResTys, &Ops[0], Ops.size());
1024 SDValue Out = (ResTys[0] == MVT::Untyped) ? extractLOHI(Val, DL, DAG) : Val;
1025
1026 if (!HasChainIn)
1027 return Out;
1028
1029 assert(Val->getValueType(1) == MVT::Other);
1030 SDValue Vals[] = { Out, SDValue(Val.getNode(), 1) };
1031 return DAG.getMergeValues(Vals, 2, DL);
1032}
1033
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001034// Lower an MSA copy intrinsic into the specified SelectionDAG node
1035static SDValue lowerMSACopyIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1036 SDLoc DL(Op);
1037 SDValue Vec = Op->getOperand(1);
1038 SDValue Idx = Op->getOperand(2);
1039 EVT ResTy = Op->getValueType(0);
1040 EVT EltTy = Vec->getValueType(0).getVectorElementType();
1041
1042 SDValue Result = DAG.getNode(Opc, DL, ResTy, Vec, Idx,
1043 DAG.getValueType(EltTy));
1044
1045 return Result;
1046}
1047
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001048static SDValue
1049lowerMSASplatImm(SDLoc DL, EVT ResTy, SDValue ImmOp, SelectionDAG &DAG) {
Daniel Sandersf49dd822013-09-24 13:33:07 +00001050 EVT ViaVecTy = ResTy;
1051 SmallVector<SDValue, 16> Ops;
1052 SDValue ImmHiOp;
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001053
Daniel Sandersf49dd822013-09-24 13:33:07 +00001054 if (ViaVecTy == MVT::v2i64) {
1055 ImmHiOp = DAG.getNode(ISD::SRA, DL, MVT::i32, ImmOp,
1056 DAG.getConstant(31, MVT::i32));
1057 for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i) {
1058 Ops.push_back(ImmHiOp);
1059 Ops.push_back(ImmOp);
1060 }
1061 ViaVecTy = MVT::v4i32;
1062 } else {
1063 for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1064 Ops.push_back(ImmOp);
1065 }
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001066
Daniel Sandersf49dd822013-09-24 13:33:07 +00001067 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, DL, ViaVecTy, &Ops[0],
1068 Ops.size());
1069
1070 if (ResTy != ViaVecTy)
1071 Result = DAG.getNode(ISD::BITCAST, DL, ResTy, Result);
1072
1073 return Result;
1074}
1075
1076static SDValue
1077lowerMSASplatImm(SDValue Op, unsigned ImmOp, SelectionDAG &DAG) {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001078 return lowerMSASplatImm(SDLoc(Op), Op->getValueType(0),
1079 Op->getOperand(ImmOp), DAG);
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001080}
1081
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001082SDValue MipsSETargetLowering::lowerINTRINSIC_WO_CHAIN(SDValue Op,
1083 SelectionDAG &DAG) const {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001084 SDLoc DL(Op);
1085
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001086 switch (cast<ConstantSDNode>(Op->getOperand(0))->getZExtValue()) {
1087 default:
1088 return SDValue();
1089 case Intrinsic::mips_shilo:
1090 return lowerDSPIntr(Op, DAG, MipsISD::SHILO);
1091 case Intrinsic::mips_dpau_h_qbl:
1092 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBL);
1093 case Intrinsic::mips_dpau_h_qbr:
1094 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBR);
1095 case Intrinsic::mips_dpsu_h_qbl:
1096 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBL);
1097 case Intrinsic::mips_dpsu_h_qbr:
1098 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBR);
1099 case Intrinsic::mips_dpa_w_ph:
1100 return lowerDSPIntr(Op, DAG, MipsISD::DPA_W_PH);
1101 case Intrinsic::mips_dps_w_ph:
1102 return lowerDSPIntr(Op, DAG, MipsISD::DPS_W_PH);
1103 case Intrinsic::mips_dpax_w_ph:
1104 return lowerDSPIntr(Op, DAG, MipsISD::DPAX_W_PH);
1105 case Intrinsic::mips_dpsx_w_ph:
1106 return lowerDSPIntr(Op, DAG, MipsISD::DPSX_W_PH);
1107 case Intrinsic::mips_mulsa_w_ph:
1108 return lowerDSPIntr(Op, DAG, MipsISD::MULSA_W_PH);
1109 case Intrinsic::mips_mult:
1110 return lowerDSPIntr(Op, DAG, MipsISD::Mult);
1111 case Intrinsic::mips_multu:
1112 return lowerDSPIntr(Op, DAG, MipsISD::Multu);
1113 case Intrinsic::mips_madd:
1114 return lowerDSPIntr(Op, DAG, MipsISD::MAdd);
1115 case Intrinsic::mips_maddu:
1116 return lowerDSPIntr(Op, DAG, MipsISD::MAddu);
1117 case Intrinsic::mips_msub:
1118 return lowerDSPIntr(Op, DAG, MipsISD::MSub);
1119 case Intrinsic::mips_msubu:
1120 return lowerDSPIntr(Op, DAG, MipsISD::MSubu);
Daniel Sandersfa5ab1c2013-09-11 10:28:16 +00001121 case Intrinsic::mips_addv_b:
1122 case Intrinsic::mips_addv_h:
1123 case Intrinsic::mips_addv_w:
1124 case Intrinsic::mips_addv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001125 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1126 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001127 case Intrinsic::mips_addvi_b:
1128 case Intrinsic::mips_addvi_h:
1129 case Intrinsic::mips_addvi_w:
1130 case Intrinsic::mips_addvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001131 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1132 lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001133 case Intrinsic::mips_and_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001134 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1135 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001136 case Intrinsic::mips_andi_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001137 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1138 lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersce09d072013-08-28 12:14:50 +00001139 case Intrinsic::mips_bnz_b:
1140 case Intrinsic::mips_bnz_h:
1141 case Intrinsic::mips_bnz_w:
1142 case Intrinsic::mips_bnz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001143 return DAG.getNode(MipsISD::VALL_NONZERO, DL, Op->getValueType(0),
1144 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001145 case Intrinsic::mips_bnz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001146 return DAG.getNode(MipsISD::VANY_NONZERO, DL, Op->getValueType(0),
1147 Op->getOperand(1));
Daniel Sanderse1d24352013-09-24 12:04:44 +00001148 case Intrinsic::mips_bsel_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001149 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sanderse1d24352013-09-24 12:04:44 +00001150 Op->getOperand(1), Op->getOperand(2),
1151 Op->getOperand(3));
1152 case Intrinsic::mips_bseli_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001153 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sanderse1d24352013-09-24 12:04:44 +00001154 Op->getOperand(1), Op->getOperand(2),
1155 lowerMSASplatImm(Op, 3, DAG));
Daniel Sandersce09d072013-08-28 12:14:50 +00001156 case Intrinsic::mips_bz_b:
1157 case Intrinsic::mips_bz_h:
1158 case Intrinsic::mips_bz_w:
1159 case Intrinsic::mips_bz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001160 return DAG.getNode(MipsISD::VALL_ZERO, DL, Op->getValueType(0),
1161 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001162 case Intrinsic::mips_bz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001163 return DAG.getNode(MipsISD::VANY_ZERO, DL, Op->getValueType(0),
1164 Op->getOperand(1));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001165 case Intrinsic::mips_ceq_b:
1166 case Intrinsic::mips_ceq_h:
1167 case Intrinsic::mips_ceq_w:
1168 case Intrinsic::mips_ceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001169 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001170 Op->getOperand(2), ISD::SETEQ);
1171 case Intrinsic::mips_ceqi_b:
1172 case Intrinsic::mips_ceqi_h:
1173 case Intrinsic::mips_ceqi_w:
1174 case Intrinsic::mips_ceqi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001175 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001176 lowerMSASplatImm(Op, 2, DAG), ISD::SETEQ);
1177 case Intrinsic::mips_cle_s_b:
1178 case Intrinsic::mips_cle_s_h:
1179 case Intrinsic::mips_cle_s_w:
1180 case Intrinsic::mips_cle_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001181 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001182 Op->getOperand(2), ISD::SETLE);
1183 case Intrinsic::mips_clei_s_b:
1184 case Intrinsic::mips_clei_s_h:
1185 case Intrinsic::mips_clei_s_w:
1186 case Intrinsic::mips_clei_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001187 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001188 lowerMSASplatImm(Op, 2, DAG), ISD::SETLE);
1189 case Intrinsic::mips_cle_u_b:
1190 case Intrinsic::mips_cle_u_h:
1191 case Intrinsic::mips_cle_u_w:
1192 case Intrinsic::mips_cle_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001193 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001194 Op->getOperand(2), ISD::SETULE);
1195 case Intrinsic::mips_clei_u_b:
1196 case Intrinsic::mips_clei_u_h:
1197 case Intrinsic::mips_clei_u_w:
1198 case Intrinsic::mips_clei_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001199 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001200 lowerMSASplatImm(Op, 2, DAG), ISD::SETULE);
1201 case Intrinsic::mips_clt_s_b:
1202 case Intrinsic::mips_clt_s_h:
1203 case Intrinsic::mips_clt_s_w:
1204 case Intrinsic::mips_clt_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001205 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001206 Op->getOperand(2), ISD::SETLT);
1207 case Intrinsic::mips_clti_s_b:
1208 case Intrinsic::mips_clti_s_h:
1209 case Intrinsic::mips_clti_s_w:
1210 case Intrinsic::mips_clti_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001211 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001212 lowerMSASplatImm(Op, 2, DAG), ISD::SETLT);
1213 case Intrinsic::mips_clt_u_b:
1214 case Intrinsic::mips_clt_u_h:
1215 case Intrinsic::mips_clt_u_w:
1216 case Intrinsic::mips_clt_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001217 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001218 Op->getOperand(2), ISD::SETULT);
1219 case Intrinsic::mips_clti_u_b:
1220 case Intrinsic::mips_clti_u_h:
1221 case Intrinsic::mips_clti_u_w:
1222 case Intrinsic::mips_clti_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001223 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001224 lowerMSASplatImm(Op, 2, DAG), ISD::SETULT);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001225 case Intrinsic::mips_copy_s_b:
1226 case Intrinsic::mips_copy_s_h:
1227 case Intrinsic::mips_copy_s_w:
1228 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_SEXT_ELT);
Daniel Sanders7f3d9462013-09-27 13:04:21 +00001229 case Intrinsic::mips_copy_s_d:
1230 // Don't lower directly into VEXTRACT_SEXT_ELT since i64 might be illegal.
1231 // Instead lower to the generic EXTRACT_VECTOR_ELT node and let the type
1232 // legalizer and EXTRACT_VECTOR_ELT lowering sort it out.
1233 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(Op), Op->getValueType(0),
1234 Op->getOperand(1), Op->getOperand(2));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001235 case Intrinsic::mips_copy_u_b:
1236 case Intrinsic::mips_copy_u_h:
1237 case Intrinsic::mips_copy_u_w:
1238 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_ZEXT_ELT);
Daniel Sanders7f3d9462013-09-27 13:04:21 +00001239 case Intrinsic::mips_copy_u_d:
1240 // Don't lower directly into VEXTRACT_ZEXT_ELT since i64 might be illegal.
1241 // Instead lower to the generic EXTRACT_VECTOR_ELT node and let the type
1242 // legalizer and EXTRACT_VECTOR_ELT lowering sort it out.
1243 //
1244 // Note: When i64 is illegal, this results in copy_s.w instructions instead
1245 // of copy_u.w instructions. This makes no difference to the behaviour
1246 // since i64 is only illegal when the register file is 32-bit.
1247 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(Op), Op->getValueType(0),
1248 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders607952b2013-09-11 10:38:58 +00001249 case Intrinsic::mips_div_s_b:
1250 case Intrinsic::mips_div_s_h:
1251 case Intrinsic::mips_div_s_w:
1252 case Intrinsic::mips_div_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001253 return DAG.getNode(ISD::SDIV, DL, Op->getValueType(0), Op->getOperand(1),
1254 Op->getOperand(2));
Daniel Sanders607952b2013-09-11 10:38:58 +00001255 case Intrinsic::mips_div_u_b:
1256 case Intrinsic::mips_div_u_h:
1257 case Intrinsic::mips_div_u_w:
1258 case Intrinsic::mips_div_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001259 return DAG.getNode(ISD::UDIV, DL, Op->getValueType(0), Op->getOperand(1),
1260 Op->getOperand(2));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001261 case Intrinsic::mips_fadd_w:
1262 case Intrinsic::mips_fadd_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001263 return DAG.getNode(ISD::FADD, DL, Op->getValueType(0), Op->getOperand(1),
1264 Op->getOperand(2));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001265 // Don't lower mips_fcaf_[wd] since LLVM folds SETFALSE condcodes away
1266 case Intrinsic::mips_fceq_w:
1267 case Intrinsic::mips_fceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001268 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001269 Op->getOperand(2), ISD::SETOEQ);
1270 case Intrinsic::mips_fcle_w:
1271 case Intrinsic::mips_fcle_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001272 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001273 Op->getOperand(2), ISD::SETOLE);
1274 case Intrinsic::mips_fclt_w:
1275 case Intrinsic::mips_fclt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001276 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001277 Op->getOperand(2), ISD::SETOLT);
1278 case Intrinsic::mips_fcne_w:
1279 case Intrinsic::mips_fcne_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001280 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001281 Op->getOperand(2), ISD::SETONE);
1282 case Intrinsic::mips_fcor_w:
1283 case Intrinsic::mips_fcor_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001284 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001285 Op->getOperand(2), ISD::SETO);
1286 case Intrinsic::mips_fcueq_w:
1287 case Intrinsic::mips_fcueq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001288 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001289 Op->getOperand(2), ISD::SETUEQ);
1290 case Intrinsic::mips_fcule_w:
1291 case Intrinsic::mips_fcule_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001292 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001293 Op->getOperand(2), ISD::SETULE);
1294 case Intrinsic::mips_fcult_w:
1295 case Intrinsic::mips_fcult_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001296 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001297 Op->getOperand(2), ISD::SETULT);
1298 case Intrinsic::mips_fcun_w:
1299 case Intrinsic::mips_fcun_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001300 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001301 Op->getOperand(2), ISD::SETUO);
1302 case Intrinsic::mips_fcune_w:
1303 case Intrinsic::mips_fcune_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001304 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001305 Op->getOperand(2), ISD::SETUNE);
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001306 case Intrinsic::mips_fdiv_w:
1307 case Intrinsic::mips_fdiv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001308 return DAG.getNode(ISD::FDIV, DL, Op->getValueType(0), Op->getOperand(1),
1309 Op->getOperand(2));
Daniel Sanders015972b2013-10-11 10:00:06 +00001310 case Intrinsic::mips_ffint_u_w:
1311 case Intrinsic::mips_ffint_u_d:
1312 return DAG.getNode(ISD::UINT_TO_FP, DL, Op->getValueType(0),
1313 Op->getOperand(1));
1314 case Intrinsic::mips_ffint_s_w:
1315 case Intrinsic::mips_ffint_s_d:
1316 return DAG.getNode(ISD::SINT_TO_FP, DL, Op->getValueType(0),
1317 Op->getOperand(1));
Daniel Sanders7a289d02013-09-23 12:02:46 +00001318 case Intrinsic::mips_fill_b:
1319 case Intrinsic::mips_fill_h:
Daniel Sandersc72593e2013-09-27 13:20:41 +00001320 case Intrinsic::mips_fill_w:
1321 case Intrinsic::mips_fill_d: {
Daniel Sandersf49dd822013-09-24 13:33:07 +00001322 SmallVector<SDValue, 16> Ops;
1323 EVT ResTy = Op->getValueType(0);
1324
1325 for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1326 Ops.push_back(Op->getOperand(1));
1327
Daniel Sandersc72593e2013-09-27 13:20:41 +00001328 // If ResTy is v2i64 then the type legalizer will break this node down into
1329 // an equivalent v4i32.
1330 return DAG.getNode(ISD::BUILD_VECTOR, DL, ResTy, &Ops[0], Ops.size());
Daniel Sandersf49dd822013-09-24 13:33:07 +00001331 }
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001332 case Intrinsic::mips_flog2_w:
1333 case Intrinsic::mips_flog2_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001334 return DAG.getNode(ISD::FLOG2, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001335 case Intrinsic::mips_fmul_w:
1336 case Intrinsic::mips_fmul_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001337 return DAG.getNode(ISD::FMUL, DL, Op->getValueType(0), Op->getOperand(1),
1338 Op->getOperand(2));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001339 case Intrinsic::mips_frint_w:
1340 case Intrinsic::mips_frint_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001341 return DAG.getNode(ISD::FRINT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001342 case Intrinsic::mips_fsqrt_w:
1343 case Intrinsic::mips_fsqrt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001344 return DAG.getNode(ISD::FSQRT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001345 case Intrinsic::mips_fsub_w:
1346 case Intrinsic::mips_fsub_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001347 return DAG.getNode(ISD::FSUB, DL, Op->getValueType(0), Op->getOperand(1),
1348 Op->getOperand(2));
Daniel Sanders015972b2013-10-11 10:00:06 +00001349 case Intrinsic::mips_ftrunc_u_w:
1350 case Intrinsic::mips_ftrunc_u_d:
1351 return DAG.getNode(ISD::FP_TO_UINT, DL, Op->getValueType(0),
1352 Op->getOperand(1));
1353 case Intrinsic::mips_ftrunc_s_w:
1354 case Intrinsic::mips_ftrunc_s_d:
1355 return DAG.getNode(ISD::FP_TO_SINT, DL, Op->getValueType(0),
1356 Op->getOperand(1));
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001357 case Intrinsic::mips_ilvev_b:
1358 case Intrinsic::mips_ilvev_h:
1359 case Intrinsic::mips_ilvev_w:
1360 case Intrinsic::mips_ilvev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001361 return DAG.getNode(MipsISD::ILVEV, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001362 Op->getOperand(1), Op->getOperand(2));
1363 case Intrinsic::mips_ilvl_b:
1364 case Intrinsic::mips_ilvl_h:
1365 case Intrinsic::mips_ilvl_w:
1366 case Intrinsic::mips_ilvl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001367 return DAG.getNode(MipsISD::ILVL, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001368 Op->getOperand(1), Op->getOperand(2));
1369 case Intrinsic::mips_ilvod_b:
1370 case Intrinsic::mips_ilvod_h:
1371 case Intrinsic::mips_ilvod_w:
1372 case Intrinsic::mips_ilvod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001373 return DAG.getNode(MipsISD::ILVOD, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001374 Op->getOperand(1), Op->getOperand(2));
1375 case Intrinsic::mips_ilvr_b:
1376 case Intrinsic::mips_ilvr_h:
1377 case Intrinsic::mips_ilvr_w:
1378 case Intrinsic::mips_ilvr_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001379 return DAG.getNode(MipsISD::ILVR, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001380 Op->getOperand(1), Op->getOperand(2));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001381 case Intrinsic::mips_insert_b:
1382 case Intrinsic::mips_insert_h:
1383 case Intrinsic::mips_insert_w:
Daniel Sanders6098b332013-09-27 13:36:54 +00001384 case Intrinsic::mips_insert_d:
1385 return DAG.getNode(ISD::INSERT_VECTOR_ELT, SDLoc(Op), Op->getValueType(0),
1386 Op->getOperand(1), Op->getOperand(3), Op->getOperand(2));
Daniel Sanders7a289d02013-09-23 12:02:46 +00001387 case Intrinsic::mips_ldi_b:
1388 case Intrinsic::mips_ldi_h:
1389 case Intrinsic::mips_ldi_w:
1390 case Intrinsic::mips_ldi_d:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001391 return lowerMSASplatImm(Op, 1, DAG);
Daniel Sanders3ce56622013-09-24 12:18:31 +00001392 case Intrinsic::mips_max_s_b:
1393 case Intrinsic::mips_max_s_h:
1394 case Intrinsic::mips_max_s_w:
1395 case Intrinsic::mips_max_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001396 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1397 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001398 case Intrinsic::mips_max_u_b:
1399 case Intrinsic::mips_max_u_h:
1400 case Intrinsic::mips_max_u_w:
1401 case Intrinsic::mips_max_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001402 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1403 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001404 case Intrinsic::mips_maxi_s_b:
1405 case Intrinsic::mips_maxi_s_h:
1406 case Intrinsic::mips_maxi_s_w:
1407 case Intrinsic::mips_maxi_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001408 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1409 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001410 case Intrinsic::mips_maxi_u_b:
1411 case Intrinsic::mips_maxi_u_h:
1412 case Intrinsic::mips_maxi_u_w:
1413 case Intrinsic::mips_maxi_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001414 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1415 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001416 case Intrinsic::mips_min_s_b:
1417 case Intrinsic::mips_min_s_h:
1418 case Intrinsic::mips_min_s_w:
1419 case Intrinsic::mips_min_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001420 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1421 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001422 case Intrinsic::mips_min_u_b:
1423 case Intrinsic::mips_min_u_h:
1424 case Intrinsic::mips_min_u_w:
1425 case Intrinsic::mips_min_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001426 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1427 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001428 case Intrinsic::mips_mini_s_b:
1429 case Intrinsic::mips_mini_s_h:
1430 case Intrinsic::mips_mini_s_w:
1431 case Intrinsic::mips_mini_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001432 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1433 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001434 case Intrinsic::mips_mini_u_b:
1435 case Intrinsic::mips_mini_u_h:
1436 case Intrinsic::mips_mini_u_w:
1437 case Intrinsic::mips_mini_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001438 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1439 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders0210dd42013-10-01 10:22:35 +00001440 case Intrinsic::mips_mod_s_b:
1441 case Intrinsic::mips_mod_s_h:
1442 case Intrinsic::mips_mod_s_w:
1443 case Intrinsic::mips_mod_s_d:
1444 return DAG.getNode(ISD::SREM, DL, Op->getValueType(0), Op->getOperand(1),
1445 Op->getOperand(2));
1446 case Intrinsic::mips_mod_u_b:
1447 case Intrinsic::mips_mod_u_h:
1448 case Intrinsic::mips_mod_u_w:
1449 case Intrinsic::mips_mod_u_d:
1450 return DAG.getNode(ISD::UREM, DL, Op->getValueType(0), Op->getOperand(1),
1451 Op->getOperand(2));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001452 case Intrinsic::mips_mulv_b:
1453 case Intrinsic::mips_mulv_h:
1454 case Intrinsic::mips_mulv_w:
1455 case Intrinsic::mips_mulv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001456 return DAG.getNode(ISD::MUL, DL, Op->getValueType(0), Op->getOperand(1),
1457 Op->getOperand(2));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001458 case Intrinsic::mips_nlzc_b:
1459 case Intrinsic::mips_nlzc_h:
1460 case Intrinsic::mips_nlzc_w:
1461 case Intrinsic::mips_nlzc_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001462 return DAG.getNode(ISD::CTLZ, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf7456c72013-09-23 13:22:24 +00001463 case Intrinsic::mips_nor_v: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001464 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1465 Op->getOperand(1), Op->getOperand(2));
1466 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersf7456c72013-09-23 13:22:24 +00001467 }
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001468 case Intrinsic::mips_nori_b: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001469 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1470 Op->getOperand(1),
1471 lowerMSASplatImm(Op, 2, DAG));
1472 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001473 }
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001474 case Intrinsic::mips_or_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001475 return DAG.getNode(ISD::OR, DL, Op->getValueType(0), Op->getOperand(1),
1476 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001477 case Intrinsic::mips_ori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001478 return DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1479 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001480 case Intrinsic::mips_pckev_b:
1481 case Intrinsic::mips_pckev_h:
1482 case Intrinsic::mips_pckev_w:
1483 case Intrinsic::mips_pckev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001484 return DAG.getNode(MipsISD::PCKEV, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001485 Op->getOperand(1), Op->getOperand(2));
1486 case Intrinsic::mips_pckod_b:
1487 case Intrinsic::mips_pckod_h:
1488 case Intrinsic::mips_pckod_w:
1489 case Intrinsic::mips_pckod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001490 return DAG.getNode(MipsISD::PCKOD, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001491 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders766cb692013-09-23 13:40:21 +00001492 case Intrinsic::mips_pcnt_b:
1493 case Intrinsic::mips_pcnt_h:
1494 case Intrinsic::mips_pcnt_w:
1495 case Intrinsic::mips_pcnt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001496 return DAG.getNode(ISD::CTPOP, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sanders26307182013-09-24 14:20:00 +00001497 case Intrinsic::mips_shf_b:
1498 case Intrinsic::mips_shf_h:
1499 case Intrinsic::mips_shf_w:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001500 return DAG.getNode(MipsISD::SHF, DL, Op->getValueType(0),
Daniel Sanders26307182013-09-24 14:20:00 +00001501 Op->getOperand(2), Op->getOperand(1));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001502 case Intrinsic::mips_sll_b:
1503 case Intrinsic::mips_sll_h:
1504 case Intrinsic::mips_sll_w:
1505 case Intrinsic::mips_sll_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001506 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0), Op->getOperand(1),
1507 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001508 case Intrinsic::mips_slli_b:
1509 case Intrinsic::mips_slli_h:
1510 case Intrinsic::mips_slli_w:
1511 case Intrinsic::mips_slli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001512 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0),
1513 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders7e51fe12013-09-27 11:48:57 +00001514 case Intrinsic::mips_splati_b:
1515 case Intrinsic::mips_splati_h:
1516 case Intrinsic::mips_splati_w:
1517 case Intrinsic::mips_splati_d:
1518 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
1519 lowerMSASplatImm(Op, 2, DAG), Op->getOperand(1),
1520 Op->getOperand(1));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001521 case Intrinsic::mips_sra_b:
1522 case Intrinsic::mips_sra_h:
1523 case Intrinsic::mips_sra_w:
1524 case Intrinsic::mips_sra_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001525 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0), Op->getOperand(1),
1526 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001527 case Intrinsic::mips_srai_b:
1528 case Intrinsic::mips_srai_h:
1529 case Intrinsic::mips_srai_w:
1530 case Intrinsic::mips_srai_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001531 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0),
1532 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001533 case Intrinsic::mips_srl_b:
1534 case Intrinsic::mips_srl_h:
1535 case Intrinsic::mips_srl_w:
1536 case Intrinsic::mips_srl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001537 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0), Op->getOperand(1),
1538 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001539 case Intrinsic::mips_srli_b:
1540 case Intrinsic::mips_srli_h:
1541 case Intrinsic::mips_srli_w:
1542 case Intrinsic::mips_srli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001543 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0),
1544 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001545 case Intrinsic::mips_subv_b:
1546 case Intrinsic::mips_subv_h:
1547 case Intrinsic::mips_subv_w:
1548 case Intrinsic::mips_subv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001549 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0), Op->getOperand(1),
1550 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001551 case Intrinsic::mips_subvi_b:
1552 case Intrinsic::mips_subvi_h:
1553 case Intrinsic::mips_subvi_w:
1554 case Intrinsic::mips_subvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001555 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0),
1556 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanderse5087042013-09-24 14:02:15 +00001557 case Intrinsic::mips_vshf_b:
1558 case Intrinsic::mips_vshf_h:
1559 case Intrinsic::mips_vshf_w:
1560 case Intrinsic::mips_vshf_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001561 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
Daniel Sanderse5087042013-09-24 14:02:15 +00001562 Op->getOperand(1), Op->getOperand(2), Op->getOperand(3));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001563 case Intrinsic::mips_xor_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001564 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0), Op->getOperand(1),
1565 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001566 case Intrinsic::mips_xori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001567 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0),
1568 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001569 }
1570}
1571
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001572static SDValue lowerMSALoadIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1573 SDLoc DL(Op);
1574 SDValue ChainIn = Op->getOperand(0);
1575 SDValue Address = Op->getOperand(2);
1576 SDValue Offset = Op->getOperand(3);
1577 EVT ResTy = Op->getValueType(0);
1578 EVT PtrTy = Address->getValueType(0);
1579
1580 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1581
1582 return DAG.getLoad(ResTy, DL, ChainIn, Address, MachinePointerInfo(), false,
1583 false, false, 16);
1584}
1585
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001586SDValue MipsSETargetLowering::lowerINTRINSIC_W_CHAIN(SDValue Op,
1587 SelectionDAG &DAG) const {
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001588 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1589 switch (Intr) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001590 default:
1591 return SDValue();
1592 case Intrinsic::mips_extp:
1593 return lowerDSPIntr(Op, DAG, MipsISD::EXTP);
1594 case Intrinsic::mips_extpdp:
1595 return lowerDSPIntr(Op, DAG, MipsISD::EXTPDP);
1596 case Intrinsic::mips_extr_w:
1597 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_W);
1598 case Intrinsic::mips_extr_r_w:
1599 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_R_W);
1600 case Intrinsic::mips_extr_rs_w:
1601 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_RS_W);
1602 case Intrinsic::mips_extr_s_h:
1603 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_S_H);
1604 case Intrinsic::mips_mthlip:
1605 return lowerDSPIntr(Op, DAG, MipsISD::MTHLIP);
1606 case Intrinsic::mips_mulsaq_s_w_ph:
1607 return lowerDSPIntr(Op, DAG, MipsISD::MULSAQ_S_W_PH);
1608 case Intrinsic::mips_maq_s_w_phl:
1609 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHL);
1610 case Intrinsic::mips_maq_s_w_phr:
1611 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHR);
1612 case Intrinsic::mips_maq_sa_w_phl:
1613 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHL);
1614 case Intrinsic::mips_maq_sa_w_phr:
1615 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHR);
1616 case Intrinsic::mips_dpaq_s_w_ph:
1617 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_S_W_PH);
1618 case Intrinsic::mips_dpsq_s_w_ph:
1619 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_S_W_PH);
1620 case Intrinsic::mips_dpaq_sa_l_w:
1621 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_SA_L_W);
1622 case Intrinsic::mips_dpsq_sa_l_w:
1623 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_SA_L_W);
1624 case Intrinsic::mips_dpaqx_s_w_ph:
1625 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_S_W_PH);
1626 case Intrinsic::mips_dpaqx_sa_w_ph:
1627 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_SA_W_PH);
1628 case Intrinsic::mips_dpsqx_s_w_ph:
1629 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_S_W_PH);
1630 case Intrinsic::mips_dpsqx_sa_w_ph:
1631 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_SA_W_PH);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001632 case Intrinsic::mips_ld_b:
1633 case Intrinsic::mips_ld_h:
1634 case Intrinsic::mips_ld_w:
1635 case Intrinsic::mips_ld_d:
1636 case Intrinsic::mips_ldx_b:
1637 case Intrinsic::mips_ldx_h:
1638 case Intrinsic::mips_ldx_w:
1639 case Intrinsic::mips_ldx_d:
1640 return lowerMSALoadIntr(Op, DAG, Intr);
1641 }
1642}
1643
1644static SDValue lowerMSAStoreIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1645 SDLoc DL(Op);
1646 SDValue ChainIn = Op->getOperand(0);
1647 SDValue Value = Op->getOperand(2);
1648 SDValue Address = Op->getOperand(3);
1649 SDValue Offset = Op->getOperand(4);
1650 EVT PtrTy = Address->getValueType(0);
1651
1652 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1653
1654 return DAG.getStore(ChainIn, DL, Value, Address, MachinePointerInfo(), false,
1655 false, 16);
1656}
1657
1658SDValue MipsSETargetLowering::lowerINTRINSIC_VOID(SDValue Op,
1659 SelectionDAG &DAG) const {
1660 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1661 switch (Intr) {
1662 default:
1663 return SDValue();
1664 case Intrinsic::mips_st_b:
1665 case Intrinsic::mips_st_h:
1666 case Intrinsic::mips_st_w:
1667 case Intrinsic::mips_st_d:
1668 case Intrinsic::mips_stx_b:
1669 case Intrinsic::mips_stx_h:
1670 case Intrinsic::mips_stx_w:
1671 case Intrinsic::mips_stx_d:
Daniel Sandersce09d072013-08-28 12:14:50 +00001672 return lowerMSAStoreIntr(Op, DAG, Intr);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001673 }
1674}
1675
Daniel Sanders7a289d02013-09-23 12:02:46 +00001676/// \brief Check if the given BuildVectorSDNode is a splat.
1677/// This method currently relies on DAG nodes being reused when equivalent,
1678/// so it's possible for this to return false even when isConstantSplat returns
1679/// true.
1680static bool isSplatVector(const BuildVectorSDNode *N) {
Daniel Sanders7a289d02013-09-23 12:02:46 +00001681 unsigned int nOps = N->getNumOperands();
1682 assert(nOps > 1 && "isSplat has 0 or 1 sized build vector");
1683
1684 SDValue Operand0 = N->getOperand(0);
1685
1686 for (unsigned int i = 1; i < nOps; ++i) {
1687 if (N->getOperand(i) != Operand0)
1688 return false;
1689 }
1690
1691 return true;
1692}
1693
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001694// Lower ISD::EXTRACT_VECTOR_ELT into MipsISD::VEXTRACT_SEXT_ELT.
1695//
1696// The non-value bits resulting from ISD::EXTRACT_VECTOR_ELT are undefined. We
1697// choose to sign-extend but we could have equally chosen zero-extend. The
1698// DAGCombiner will fold any sign/zero extension of the ISD::EXTRACT_VECTOR_ELT
1699// result into this node later (possibly changing it to a zero-extend in the
1700// process).
1701SDValue MipsSETargetLowering::
1702lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
1703 SDLoc DL(Op);
1704 EVT ResTy = Op->getValueType(0);
1705 SDValue Op0 = Op->getOperand(0);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00001706 EVT VecTy = Op0->getValueType(0);
1707
1708 if (!VecTy.is128BitVector())
1709 return SDValue();
1710
1711 if (ResTy.isInteger()) {
1712 SDValue Op1 = Op->getOperand(1);
1713 EVT EltTy = VecTy.getVectorElementType();
1714 return DAG.getNode(MipsISD::VEXTRACT_SEXT_ELT, DL, ResTy, Op0, Op1,
1715 DAG.getValueType(EltTy));
1716 }
1717
1718 return Op;
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001719}
1720
Daniel Sandersf49dd822013-09-24 13:33:07 +00001721static bool isConstantOrUndef(const SDValue Op) {
1722 if (Op->getOpcode() == ISD::UNDEF)
1723 return true;
1724 if (dyn_cast<ConstantSDNode>(Op))
1725 return true;
1726 if (dyn_cast<ConstantFPSDNode>(Op))
1727 return true;
1728 return false;
1729}
1730
1731static bool isConstantOrUndefBUILD_VECTOR(const BuildVectorSDNode *Op) {
1732 for (unsigned i = 0; i < Op->getNumOperands(); ++i)
1733 if (isConstantOrUndef(Op->getOperand(i)))
1734 return true;
1735 return false;
1736}
1737
Daniel Sanders7a289d02013-09-23 12:02:46 +00001738// Lowers ISD::BUILD_VECTOR into appropriate SelectionDAG nodes for the
1739// backend.
1740//
1741// Lowers according to the following rules:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001742// - Constant splats are legal as-is as long as the SplatBitSize is a power of
1743// 2 less than or equal to 64 and the value fits into a signed 10-bit
1744// immediate
1745// - Constant splats are lowered to bitconverted BUILD_VECTORs if SplatBitSize
1746// is a power of 2 less than or equal to 64 and the value does not fit into a
1747// signed 10-bit immediate
1748// - Non-constant splats are legal as-is.
1749// - Non-constant non-splats are lowered to sequences of INSERT_VECTOR_ELT.
1750// - All others are illegal and must be expanded.
Daniel Sanders7a289d02013-09-23 12:02:46 +00001751SDValue MipsSETargetLowering::lowerBUILD_VECTOR(SDValue Op,
1752 SelectionDAG &DAG) const {
1753 BuildVectorSDNode *Node = cast<BuildVectorSDNode>(Op);
1754 EVT ResTy = Op->getValueType(0);
1755 SDLoc DL(Op);
1756 APInt SplatValue, SplatUndef;
1757 unsigned SplatBitSize;
1758 bool HasAnyUndefs;
1759
1760 if (!Subtarget->hasMSA() || !ResTy.is128BitVector())
1761 return SDValue();
1762
1763 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1764 HasAnyUndefs, 8,
Daniel Sandersf49dd822013-09-24 13:33:07 +00001765 !Subtarget->isLittle()) && SplatBitSize <= 64) {
1766 // We can only cope with 8, 16, 32, or 64-bit elements
1767 if (SplatBitSize != 8 && SplatBitSize != 16 && SplatBitSize != 32 &&
1768 SplatBitSize != 64)
1769 return SDValue();
1770
1771 // If the value fits into a simm10 then we can use ldi.[bhwd]
1772 if (SplatValue.isSignedIntN(10))
1773 return Op;
1774
1775 EVT ViaVecTy;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001776
1777 switch (SplatBitSize) {
1778 default:
1779 return SDValue();
Daniel Sandersf49dd822013-09-24 13:33:07 +00001780 case 8:
1781 ViaVecTy = MVT::v16i8;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001782 break;
1783 case 16:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001784 ViaVecTy = MVT::v8i16;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001785 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001786 case 32:
1787 ViaVecTy = MVT::v4i32;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001788 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001789 case 64:
1790 // There's no fill.d to fall back on for 64-bit values
1791 return SDValue();
Daniel Sanders7a289d02013-09-23 12:02:46 +00001792 }
1793
Daniel Sandersf49dd822013-09-24 13:33:07 +00001794 SmallVector<SDValue, 16> Ops;
1795 SDValue Constant = DAG.getConstant(SplatValue.sextOrSelf(32), MVT::i32);
1796
1797 for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i)
1798 Ops.push_back(Constant);
1799
1800 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Node), ViaVecTy,
1801 &Ops[0], Ops.size());
1802
1803 if (ViaVecTy != ResTy)
1804 Result = DAG.getNode(ISD::BITCAST, SDLoc(Node), ResTy, Result);
Daniel Sanders7a289d02013-09-23 12:02:46 +00001805
1806 return Result;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001807 } else if (isSplatVector(Node))
1808 return Op;
1809 else if (!isConstantOrUndefBUILD_VECTOR(Node)) {
Daniel Sandersf86622b2013-09-24 13:16:15 +00001810 // Use INSERT_VECTOR_ELT operations rather than expand to stores.
1811 // The resulting code is the same length as the expansion, but it doesn't
1812 // use memory operations
1813 EVT ResTy = Node->getValueType(0);
1814
1815 assert(ResTy.isVector());
1816
1817 unsigned NumElts = ResTy.getVectorNumElements();
1818 SDValue Vector = DAG.getUNDEF(ResTy);
1819 for (unsigned i = 0; i < NumElts; ++i) {
1820 Vector = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, ResTy, Vector,
1821 Node->getOperand(i),
1822 DAG.getConstant(i, MVT::i32));
1823 }
1824 return Vector;
1825 }
Daniel Sanders7a289d02013-09-23 12:02:46 +00001826
1827 return SDValue();
1828}
1829
Daniel Sanders26307182013-09-24 14:20:00 +00001830// Lower VECTOR_SHUFFLE into SHF (if possible).
1831//
1832// SHF splits the vector into blocks of four elements, then shuffles these
1833// elements according to a <4 x i2> constant (encoded as an integer immediate).
1834//
1835// It is therefore possible to lower into SHF when the mask takes the form:
1836// <a, b, c, d, a+4, b+4, c+4, d+4, a+8, b+8, c+8, d+8, ...>
1837// When undef's appear they are treated as if they were whatever value is
1838// necessary in order to fit the above form.
1839//
1840// For example:
1841// %2 = shufflevector <8 x i16> %0, <8 x i16> undef,
1842// <8 x i32> <i32 3, i32 2, i32 1, i32 0,
1843// i32 7, i32 6, i32 5, i32 4>
1844// is lowered to:
1845// (SHF_H $w0, $w1, 27)
1846// where the 27 comes from:
1847// 3 + (2 << 2) + (1 << 4) + (0 << 6)
1848static SDValue lowerVECTOR_SHUFFLE_SHF(SDValue Op, EVT ResTy,
1849 SmallVector<int, 16> Indices,
1850 SelectionDAG &DAG) {
1851 int SHFIndices[4] = { -1, -1, -1, -1 };
1852
1853 if (Indices.size() < 4)
1854 return SDValue();
1855
1856 for (unsigned i = 0; i < 4; ++i) {
1857 for (unsigned j = i; j < Indices.size(); j += 4) {
1858 int Idx = Indices[j];
1859
1860 // Convert from vector index to 4-element subvector index
1861 // If an index refers to an element outside of the subvector then give up
1862 if (Idx != -1) {
1863 Idx -= 4 * (j / 4);
1864 if (Idx < 0 || Idx >= 4)
1865 return SDValue();
1866 }
1867
1868 // If the mask has an undef, replace it with the current index.
1869 // Note that it might still be undef if the current index is also undef
1870 if (SHFIndices[i] == -1)
1871 SHFIndices[i] = Idx;
1872
1873 // Check that non-undef values are the same as in the mask. If they
1874 // aren't then give up
1875 if (!(Idx == -1 || Idx == SHFIndices[i]))
1876 return SDValue();
1877 }
1878 }
1879
1880 // Calculate the immediate. Replace any remaining undefs with zero
1881 APInt Imm(32, 0);
1882 for (int i = 3; i >= 0; --i) {
1883 int Idx = SHFIndices[i];
1884
1885 if (Idx == -1)
1886 Idx = 0;
1887
1888 Imm <<= 2;
1889 Imm |= Idx & 0x3;
1890 }
1891
1892 return DAG.getNode(MipsISD::SHF, SDLoc(Op), ResTy,
1893 DAG.getConstant(Imm, MVT::i32), Op->getOperand(0));
1894}
1895
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001896// Lower VECTOR_SHUFFLE into ILVEV (if possible).
1897//
1898// ILVEV interleaves the even elements from each vector.
1899//
1900// It is possible to lower into ILVEV when the mask takes the form:
1901// <0, n, 2, n+2, 4, n+4, ...>
1902// where n is the number of elements in the vector.
1903//
1904// When undef's appear in the mask they are treated as if they were whatever
1905// value is necessary in order to fit the above form.
1906static SDValue lowerVECTOR_SHUFFLE_ILVEV(SDValue Op, EVT ResTy,
1907 SmallVector<int, 16> Indices,
1908 SelectionDAG &DAG) {
1909 assert ((Indices.size() % 2) == 0);
1910 int WsIdx = 0;
1911 int WtIdx = ResTy.getVectorNumElements();
1912
1913 for (unsigned i = 0; i < Indices.size(); i += 2) {
1914 if (Indices[i] != -1 && Indices[i] != WsIdx)
1915 return SDValue();
1916 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1917 return SDValue();
1918 WsIdx += 2;
1919 WtIdx += 2;
1920 }
1921
1922 return DAG.getNode(MipsISD::ILVEV, SDLoc(Op), ResTy, Op->getOperand(0),
1923 Op->getOperand(1));
1924}
1925
1926// Lower VECTOR_SHUFFLE into ILVOD (if possible).
1927//
1928// ILVOD interleaves the odd elements from each vector.
1929//
1930// It is possible to lower into ILVOD when the mask takes the form:
1931// <1, n+1, 3, n+3, 5, n+5, ...>
1932// where n is the number of elements in the vector.
1933//
1934// When undef's appear in the mask they are treated as if they were whatever
1935// value is necessary in order to fit the above form.
1936static SDValue lowerVECTOR_SHUFFLE_ILVOD(SDValue Op, EVT ResTy,
1937 SmallVector<int, 16> Indices,
1938 SelectionDAG &DAG) {
1939 assert ((Indices.size() % 2) == 0);
1940 int WsIdx = 1;
1941 int WtIdx = ResTy.getVectorNumElements() + 1;
1942
1943 for (unsigned i = 0; i < Indices.size(); i += 2) {
1944 if (Indices[i] != -1 && Indices[i] != WsIdx)
1945 return SDValue();
1946 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1947 return SDValue();
1948 WsIdx += 2;
1949 WtIdx += 2;
1950 }
1951
1952 return DAG.getNode(MipsISD::ILVOD, SDLoc(Op), ResTy, Op->getOperand(0),
1953 Op->getOperand(1));
1954}
1955
1956// Lower VECTOR_SHUFFLE into ILVL (if possible).
1957//
1958// ILVL interleaves consecutive elements from the left half of each vector.
1959//
1960// It is possible to lower into ILVL when the mask takes the form:
1961// <0, n, 1, n+1, 2, n+2, ...>
1962// where n is the number of elements in the vector.
1963//
1964// When undef's appear in the mask they are treated as if they were whatever
1965// value is necessary in order to fit the above form.
1966static SDValue lowerVECTOR_SHUFFLE_ILVL(SDValue Op, EVT ResTy,
1967 SmallVector<int, 16> Indices,
1968 SelectionDAG &DAG) {
1969 assert ((Indices.size() % 2) == 0);
1970 int WsIdx = 0;
1971 int WtIdx = ResTy.getVectorNumElements();
1972
1973 for (unsigned i = 0; i < Indices.size(); i += 2) {
1974 if (Indices[i] != -1 && Indices[i] != WsIdx)
1975 return SDValue();
1976 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1977 return SDValue();
1978 WsIdx ++;
1979 WtIdx ++;
1980 }
1981
1982 return DAG.getNode(MipsISD::ILVL, SDLoc(Op), ResTy, Op->getOperand(0),
1983 Op->getOperand(1));
1984}
1985
1986// Lower VECTOR_SHUFFLE into ILVR (if possible).
1987//
1988// ILVR interleaves consecutive elements from the right half of each vector.
1989//
1990// It is possible to lower into ILVR when the mask takes the form:
1991// <x, n+x, x+1, n+x+1, x+2, n+x+2, ...>
1992// where n is the number of elements in the vector and x is half n.
1993//
1994// When undef's appear in the mask they are treated as if they were whatever
1995// value is necessary in order to fit the above form.
1996static SDValue lowerVECTOR_SHUFFLE_ILVR(SDValue Op, EVT ResTy,
1997 SmallVector<int, 16> Indices,
1998 SelectionDAG &DAG) {
1999 assert ((Indices.size() % 2) == 0);
2000 unsigned NumElts = ResTy.getVectorNumElements();
2001 int WsIdx = NumElts / 2;
2002 int WtIdx = NumElts + NumElts / 2;
2003
2004 for (unsigned i = 0; i < Indices.size(); i += 2) {
2005 if (Indices[i] != -1 && Indices[i] != WsIdx)
2006 return SDValue();
2007 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
2008 return SDValue();
2009 WsIdx ++;
2010 WtIdx ++;
2011 }
2012
2013 return DAG.getNode(MipsISD::ILVR, SDLoc(Op), ResTy, Op->getOperand(0),
2014 Op->getOperand(1));
2015}
2016
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002017// Lower VECTOR_SHUFFLE into PCKEV (if possible).
2018//
2019// PCKEV copies the even elements of each vector into the result vector.
2020//
2021// It is possible to lower into PCKEV when the mask takes the form:
2022// <0, 2, 4, ..., n, n+2, n+4, ...>
2023// where n is the number of elements in the vector.
2024//
2025// When undef's appear in the mask they are treated as if they were whatever
2026// value is necessary in order to fit the above form.
2027static SDValue lowerVECTOR_SHUFFLE_PCKEV(SDValue Op, EVT ResTy,
2028 SmallVector<int, 16> Indices,
2029 SelectionDAG &DAG) {
2030 assert ((Indices.size() % 2) == 0);
2031 int Idx = 0;
2032
2033 for (unsigned i = 0; i < Indices.size(); ++i) {
2034 if (Indices[i] != -1 && Indices[i] != Idx)
2035 return SDValue();
2036 Idx += 2;
2037 }
2038
2039 return DAG.getNode(MipsISD::PCKEV, SDLoc(Op), ResTy, Op->getOperand(0),
2040 Op->getOperand(1));
2041}
2042
2043// Lower VECTOR_SHUFFLE into PCKOD (if possible).
2044//
2045// PCKOD copies the odd elements of each vector into the result vector.
2046//
2047// It is possible to lower into PCKOD when the mask takes the form:
2048// <1, 3, 5, ..., n+1, n+3, n+5, ...>
2049// where n is the number of elements in the vector.
2050//
2051// When undef's appear in the mask they are treated as if they were whatever
2052// value is necessary in order to fit the above form.
2053static SDValue lowerVECTOR_SHUFFLE_PCKOD(SDValue Op, EVT ResTy,
2054 SmallVector<int, 16> Indices,
2055 SelectionDAG &DAG) {
2056 assert ((Indices.size() % 2) == 0);
2057 int Idx = 1;
2058
2059 for (unsigned i = 0; i < Indices.size(); ++i) {
2060 if (Indices[i] != -1 && Indices[i] != Idx)
2061 return SDValue();
2062 Idx += 2;
2063 }
2064
2065 return DAG.getNode(MipsISD::PCKOD, SDLoc(Op), ResTy, Op->getOperand(0),
2066 Op->getOperand(1));
2067}
2068
Daniel Sanderse5087042013-09-24 14:02:15 +00002069// Lower VECTOR_SHUFFLE into VSHF.
2070//
2071// This mostly consists of converting the shuffle indices in Indices into a
2072// BUILD_VECTOR and adding it as an operand to the resulting VSHF. There is
2073// also code to eliminate unused operands of the VECTOR_SHUFFLE. For example,
2074// if the type is v8i16 and all the indices are less than 8 then the second
2075// operand is unused and can be replaced with anything. We choose to replace it
2076// with the used operand since this reduces the number of instructions overall.
2077static SDValue lowerVECTOR_SHUFFLE_VSHF(SDValue Op, EVT ResTy,
2078 SmallVector<int, 16> Indices,
2079 SelectionDAG &DAG) {
2080 SmallVector<SDValue, 16> Ops;
2081 SDValue Op0;
2082 SDValue Op1;
2083 EVT MaskVecTy = ResTy.changeVectorElementTypeToInteger();
2084 EVT MaskEltTy = MaskVecTy.getVectorElementType();
2085 bool Using1stVec = false;
2086 bool Using2ndVec = false;
2087 SDLoc DL(Op);
2088 int ResTyNumElts = ResTy.getVectorNumElements();
2089
2090 for (int i = 0; i < ResTyNumElts; ++i) {
2091 // Idx == -1 means UNDEF
2092 int Idx = Indices[i];
2093
2094 if (0 <= Idx && Idx < ResTyNumElts)
2095 Using1stVec = true;
2096 if (ResTyNumElts <= Idx && Idx < ResTyNumElts * 2)
2097 Using2ndVec = true;
2098 }
2099
2100 for (SmallVector<int, 16>::iterator I = Indices.begin(); I != Indices.end();
2101 ++I)
2102 Ops.push_back(DAG.getTargetConstant(*I, MaskEltTy));
2103
2104 SDValue MaskVec = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVecTy, &Ops[0],
2105 Ops.size());
2106
2107 if (Using1stVec && Using2ndVec) {
2108 Op0 = Op->getOperand(0);
2109 Op1 = Op->getOperand(1);
2110 } else if (Using1stVec)
2111 Op0 = Op1 = Op->getOperand(0);
2112 else if (Using2ndVec)
2113 Op0 = Op1 = Op->getOperand(1);
2114 else
2115 llvm_unreachable("shuffle vector mask references neither vector operand?");
2116
2117 return DAG.getNode(MipsISD::VSHF, DL, ResTy, MaskVec, Op0, Op1);
2118}
2119
2120// Lower VECTOR_SHUFFLE into one of a number of instructions depending on the
2121// indices in the shuffle.
2122SDValue MipsSETargetLowering::lowerVECTOR_SHUFFLE(SDValue Op,
2123 SelectionDAG &DAG) const {
2124 ShuffleVectorSDNode *Node = cast<ShuffleVectorSDNode>(Op);
2125 EVT ResTy = Op->getValueType(0);
2126
2127 if (!ResTy.is128BitVector())
2128 return SDValue();
2129
2130 int ResTyNumElts = ResTy.getVectorNumElements();
2131 SmallVector<int, 16> Indices;
2132
2133 for (int i = 0; i < ResTyNumElts; ++i)
2134 Indices.push_back(Node->getMaskElt(i));
2135
Daniel Sanders26307182013-09-24 14:20:00 +00002136 SDValue Result = lowerVECTOR_SHUFFLE_SHF(Op, ResTy, Indices, DAG);
2137 if (Result.getNode())
2138 return Result;
Daniel Sanders2ed228b2013-09-24 14:36:12 +00002139 Result = lowerVECTOR_SHUFFLE_ILVEV(Op, ResTy, Indices, DAG);
2140 if (Result.getNode())
2141 return Result;
2142 Result = lowerVECTOR_SHUFFLE_ILVOD(Op, ResTy, Indices, DAG);
2143 if (Result.getNode())
2144 return Result;
2145 Result = lowerVECTOR_SHUFFLE_ILVL(Op, ResTy, Indices, DAG);
2146 if (Result.getNode())
2147 return Result;
2148 Result = lowerVECTOR_SHUFFLE_ILVR(Op, ResTy, Indices, DAG);
2149 if (Result.getNode())
2150 return Result;
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002151 Result = lowerVECTOR_SHUFFLE_PCKEV(Op, ResTy, Indices, DAG);
2152 if (Result.getNode())
2153 return Result;
2154 Result = lowerVECTOR_SHUFFLE_PCKOD(Op, ResTy, Indices, DAG);
2155 if (Result.getNode())
2156 return Result;
Daniel Sanderse5087042013-09-24 14:02:15 +00002157 return lowerVECTOR_SHUFFLE_VSHF(Op, ResTy, Indices, DAG);
2158}
2159
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002160MachineBasicBlock * MipsSETargetLowering::
2161emitBPOSGE32(MachineInstr *MI, MachineBasicBlock *BB) const{
2162 // $bb:
2163 // bposge32_pseudo $vr0
2164 // =>
2165 // $bb:
2166 // bposge32 $tbb
2167 // $fbb:
2168 // li $vr2, 0
2169 // b $sink
2170 // $tbb:
2171 // li $vr1, 1
2172 // $sink:
2173 // $vr0 = phi($vr2, $fbb, $vr1, $tbb)
2174
2175 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2176 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +00002177 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002178 DebugLoc DL = MI->getDebugLoc();
2179 const BasicBlock *LLVM_BB = BB->getBasicBlock();
2180 MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2181 MachineFunction *F = BB->getParent();
2182 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2183 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2184 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2185 F->insert(It, FBB);
2186 F->insert(It, TBB);
2187 F->insert(It, Sink);
2188
2189 // Transfer the remainder of BB and its successor edges to Sink.
2190 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2191 BB->end());
2192 Sink->transferSuccessorsAndUpdatePHIs(BB);
2193
2194 // Add successors.
2195 BB->addSuccessor(FBB);
2196 BB->addSuccessor(TBB);
2197 FBB->addSuccessor(Sink);
2198 TBB->addSuccessor(Sink);
2199
2200 // Insert the real bposge32 instruction to $BB.
2201 BuildMI(BB, DL, TII->get(Mips::BPOSGE32)).addMBB(TBB);
2202
2203 // Fill $FBB.
2204 unsigned VR2 = RegInfo.createVirtualRegister(RC);
2205 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), VR2)
2206 .addReg(Mips::ZERO).addImm(0);
2207 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2208
2209 // Fill $TBB.
2210 unsigned VR1 = RegInfo.createVirtualRegister(RC);
2211 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), VR1)
2212 .addReg(Mips::ZERO).addImm(1);
2213
2214 // Insert phi function to $Sink.
2215 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2216 MI->getOperand(0).getReg())
2217 .addReg(VR2).addMBB(FBB).addReg(VR1).addMBB(TBB);
2218
2219 MI->eraseFromParent(); // The pseudo instruction is gone now.
2220 return Sink;
2221}
Daniel Sandersce09d072013-08-28 12:14:50 +00002222
2223MachineBasicBlock * MipsSETargetLowering::
2224emitMSACBranchPseudo(MachineInstr *MI, MachineBasicBlock *BB,
2225 unsigned BranchOp) const{
2226 // $bb:
2227 // vany_nonzero $rd, $ws
2228 // =>
2229 // $bb:
2230 // bnz.b $ws, $tbb
2231 // b $fbb
2232 // $fbb:
2233 // li $rd1, 0
2234 // b $sink
2235 // $tbb:
2236 // li $rd2, 1
2237 // $sink:
2238 // $rd = phi($rd1, $fbb, $rd2, $tbb)
2239
2240 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2241 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2242 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
2243 DebugLoc DL = MI->getDebugLoc();
2244 const BasicBlock *LLVM_BB = BB->getBasicBlock();
2245 MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2246 MachineFunction *F = BB->getParent();
2247 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2248 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2249 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2250 F->insert(It, FBB);
2251 F->insert(It, TBB);
2252 F->insert(It, Sink);
2253
2254 // Transfer the remainder of BB and its successor edges to Sink.
2255 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2256 BB->end());
2257 Sink->transferSuccessorsAndUpdatePHIs(BB);
2258
2259 // Add successors.
2260 BB->addSuccessor(FBB);
2261 BB->addSuccessor(TBB);
2262 FBB->addSuccessor(Sink);
2263 TBB->addSuccessor(Sink);
2264
2265 // Insert the real bnz.b instruction to $BB.
2266 BuildMI(BB, DL, TII->get(BranchOp))
2267 .addReg(MI->getOperand(1).getReg())
2268 .addMBB(TBB);
2269
2270 // Fill $FBB.
2271 unsigned RD1 = RegInfo.createVirtualRegister(RC);
2272 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), RD1)
2273 .addReg(Mips::ZERO).addImm(0);
2274 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2275
2276 // Fill $TBB.
2277 unsigned RD2 = RegInfo.createVirtualRegister(RC);
2278 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), RD2)
2279 .addReg(Mips::ZERO).addImm(1);
2280
2281 // Insert phi function to $Sink.
2282 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2283 MI->getOperand(0).getReg())
2284 .addReg(RD1).addMBB(FBB).addReg(RD2).addMBB(TBB);
2285
2286 MI->eraseFromParent(); // The pseudo instruction is gone now.
2287 return Sink;
2288}
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002289
2290// Emit the COPY_FW pseudo instruction.
2291//
2292// copy_fw_pseudo $fd, $ws, n
2293// =>
2294// copy_u_w $rt, $ws, $n
2295// mtc1 $rt, $fd
2296//
2297// When n is zero, the equivalent operation can be performed with (potentially)
2298// zero instructions due to register overlaps. This optimization is never valid
2299// for lane 1 because it would require FR=0 mode which isn't supported by MSA.
2300MachineBasicBlock * MipsSETargetLowering::
2301emitCOPY_FW(MachineInstr *MI, MachineBasicBlock *BB) const{
2302 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2303 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2304 DebugLoc DL = MI->getDebugLoc();
2305 unsigned Fd = MI->getOperand(0).getReg();
2306 unsigned Ws = MI->getOperand(1).getReg();
2307 unsigned Lane = MI->getOperand(2).getImm();
2308
2309 if (Lane == 0)
2310 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Ws, 0, Mips::sub_lo);
2311 else {
2312 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128WRegClass);
2313
2314 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_W), Wt).addReg(Ws).addImm(1);
2315 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Wt, 0, Mips::sub_lo);
2316 }
2317
2318 MI->eraseFromParent(); // The pseudo instruction is gone now.
2319 return BB;
2320}
2321
2322// Emit the COPY_FD pseudo instruction.
2323//
2324// copy_fd_pseudo $fd, $ws, n
2325// =>
2326// splati.d $wt, $ws, $n
2327// copy $fd, $wt:sub_64
2328//
2329// When n is zero, the equivalent operation can be performed with (potentially)
2330// zero instructions due to register overlaps. This optimization is always
2331// valid because FR=1 mode which is the only supported mode in MSA.
2332MachineBasicBlock * MipsSETargetLowering::
2333emitCOPY_FD(MachineInstr *MI, MachineBasicBlock *BB) const{
2334 assert(Subtarget->isFP64bit());
2335
2336 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2337 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2338 unsigned Fd = MI->getOperand(0).getReg();
2339 unsigned Ws = MI->getOperand(1).getReg();
2340 unsigned Lane = MI->getOperand(2).getImm() * 2;
2341 DebugLoc DL = MI->getDebugLoc();
2342
2343 if (Lane == 0)
2344 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Ws, 0, Mips::sub_64);
2345 else {
2346 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
2347
2348 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_D), Wt).addReg(Ws).addImm(1);
2349 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Wt, 0, Mips::sub_64);
2350 }
2351
2352 MI->eraseFromParent(); // The pseudo instruction is gone now.
2353 return BB;
2354}
Daniel Sandersa5150702013-09-27 12:31:32 +00002355
2356// Emit the INSERT_FW pseudo instruction.
2357//
2358// insert_fw_pseudo $wd, $wd_in, $n, $fs
2359// =>
2360// subreg_to_reg $wt:sub_lo, $fs
2361// insve_w $wd[$n], $wd_in, $wt[0]
2362MachineBasicBlock * MipsSETargetLowering::
2363emitINSERT_FW(MachineInstr *MI, MachineBasicBlock *BB) const{
2364 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2365 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2366 DebugLoc DL = MI->getDebugLoc();
2367 unsigned Wd = MI->getOperand(0).getReg();
2368 unsigned Wd_in = MI->getOperand(1).getReg();
2369 unsigned Lane = MI->getOperand(2).getImm();
2370 unsigned Fs = MI->getOperand(3).getReg();
2371 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128WRegClass);
2372
2373 BuildMI(*BB, MI, DL, TII->get(Mips::SUBREG_TO_REG), Wt)
2374 .addImm(0).addReg(Fs).addImm(Mips::sub_lo);
2375 BuildMI(*BB, MI, DL, TII->get(Mips::INSVE_W), Wd)
2376 .addReg(Wd_in).addImm(Lane).addReg(Wt);
2377
2378 MI->eraseFromParent(); // The pseudo instruction is gone now.
2379 return BB;
2380}
2381
2382// Emit the INSERT_FD pseudo instruction.
2383//
2384// insert_fd_pseudo $wd, $fs, n
2385// =>
2386// subreg_to_reg $wt:sub_64, $fs
2387// insve_d $wd[$n], $wd_in, $wt[0]
2388MachineBasicBlock * MipsSETargetLowering::
2389emitINSERT_FD(MachineInstr *MI, MachineBasicBlock *BB) const{
2390 assert(Subtarget->isFP64bit());
2391
2392 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2393 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2394 DebugLoc DL = MI->getDebugLoc();
2395 unsigned Wd = MI->getOperand(0).getReg();
2396 unsigned Wd_in = MI->getOperand(1).getReg();
2397 unsigned Lane = MI->getOperand(2).getImm();
2398 unsigned Fs = MI->getOperand(3).getReg();
2399 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
2400
2401 BuildMI(*BB, MI, DL, TII->get(Mips::SUBREG_TO_REG), Wt)
2402 .addImm(0).addReg(Fs).addImm(Mips::sub_64);
2403 BuildMI(*BB, MI, DL, TII->get(Mips::INSVE_D), Wd)
2404 .addReg(Wd_in).addImm(Lane).addReg(Wt);
2405
2406 MI->eraseFromParent(); // The pseudo instruction is gone now.
2407 return BB;
2408}