blob: 51682f031fceb03aec5e36fc224b09c9cae5735a [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 Sandersfbcb5822013-09-11 11:58:30 +0000180 setOperationAction(ISD::SHL, Ty, Legal);
181 setOperationAction(ISD::SRA, Ty, Legal);
182 setOperationAction(ISD::SRL, Ty, Legal);
183 setOperationAction(ISD::SUB, Ty, Legal);
Daniel Sanders607952b2013-09-11 10:38:58 +0000184 setOperationAction(ISD::UDIV, Ty, Legal);
Daniel Sanderse5087042013-09-24 14:02:15 +0000185 setOperationAction(ISD::VECTOR_SHUFFLE, Ty, Custom);
Daniel Sanderse1d24352013-09-24 12:04:44 +0000186 setOperationAction(ISD::VSELECT, Ty, Legal);
Daniel Sanders8ca81e42013-09-23 12:57:42 +0000187 setOperationAction(ISD::XOR, Ty, Legal);
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000188
189 setOperationAction(ISD::SETCC, Ty, Legal);
190 setCondCodeAction(ISD::SETNE, Ty, Expand);
191 setCondCodeAction(ISD::SETGE, Ty, Expand);
192 setCondCodeAction(ISD::SETGT, Ty, Expand);
193 setCondCodeAction(ISD::SETUGE, Ty, Expand);
194 setCondCodeAction(ISD::SETUGT, Ty, Expand);
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000195}
196
Daniel Sanders7a289d02013-09-23 12:02:46 +0000197// Enable MSA support for the given floating-point type and Register class.
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000198void MipsSETargetLowering::
199addMSAFloatType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
Daniel Sanders3c9a0ad2013-08-23 10:10:13 +0000200 addRegisterClass(Ty, RC);
Jack Carterbabdcc82013-08-15 12:24:57 +0000201
202 // Expand all builtin opcodes.
203 for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
204 setOperationAction(Opc, Ty, Expand);
205
206 setOperationAction(ISD::LOAD, Ty, Legal);
207 setOperationAction(ISD::STORE, Ty, Legal);
208 setOperationAction(ISD::BITCAST, Ty, Legal);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000209 setOperationAction(ISD::EXTRACT_VECTOR_ELT, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000210
211 if (Ty != MVT::v8f16) {
Daniel Sanders4f3ff1b2013-09-24 13:02:08 +0000212 setOperationAction(ISD::FABS, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000213 setOperationAction(ISD::FADD, Ty, Legal);
214 setOperationAction(ISD::FDIV, Ty, Legal);
215 setOperationAction(ISD::FLOG2, Ty, Legal);
216 setOperationAction(ISD::FMUL, Ty, Legal);
217 setOperationAction(ISD::FRINT, Ty, Legal);
218 setOperationAction(ISD::FSQRT, Ty, Legal);
219 setOperationAction(ISD::FSUB, Ty, Legal);
Daniel Sanderse1d24352013-09-24 12:04:44 +0000220 setOperationAction(ISD::VSELECT, Ty, Legal);
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000221
222 setOperationAction(ISD::SETCC, Ty, Legal);
223 setCondCodeAction(ISD::SETOGE, Ty, Expand);
224 setCondCodeAction(ISD::SETOGT, Ty, Expand);
225 setCondCodeAction(ISD::SETUGE, Ty, Expand);
226 setCondCodeAction(ISD::SETUGT, Ty, Expand);
227 setCondCodeAction(ISD::SETGE, Ty, Expand);
228 setCondCodeAction(ISD::SETGT, Ty, Expand);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000229 }
Jack Carterbabdcc82013-08-15 12:24:57 +0000230}
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000231
232bool
233MipsSETargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
234 MVT::SimpleValueType SVT = VT.getSimpleVT().SimpleTy;
235
236 switch (SVT) {
237 case MVT::i64:
238 case MVT::i32:
239 if (Fast)
240 *Fast = true;
241 return true;
242 default:
243 return false;
244 }
245}
246
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000247SDValue MipsSETargetLowering::LowerOperation(SDValue Op,
248 SelectionDAG &DAG) const {
249 switch(Op.getOpcode()) {
Akira Hatanaka63791212013-09-07 00:52:30 +0000250 case ISD::LOAD: return lowerLOAD(Op, DAG);
251 case ISD::STORE: return lowerSTORE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000252 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG);
253 case ISD::UMUL_LOHI: return lowerMulDiv(Op, MipsISD::Multu, true, true, DAG);
254 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG);
255 case ISD::MULHU: return lowerMulDiv(Op, MipsISD::Multu, false, true, DAG);
256 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG);
257 case ISD::SDIVREM: return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG);
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000258 case ISD::UDIVREM: return lowerMulDiv(Op, MipsISD::DivRemU, true, true,
259 DAG);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000260 case ISD::INTRINSIC_WO_CHAIN: return lowerINTRINSIC_WO_CHAIN(Op, DAG);
261 case ISD::INTRINSIC_W_CHAIN: return lowerINTRINSIC_W_CHAIN(Op, DAG);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +0000262 case ISD::INTRINSIC_VOID: return lowerINTRINSIC_VOID(Op, DAG);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000263 case ISD::EXTRACT_VECTOR_ELT: return lowerEXTRACT_VECTOR_ELT(Op, DAG);
Daniel Sanders7a289d02013-09-23 12:02:46 +0000264 case ISD::BUILD_VECTOR: return lowerBUILD_VECTOR(Op, DAG);
Daniel Sanderse5087042013-09-24 14:02:15 +0000265 case ISD::VECTOR_SHUFFLE: return lowerVECTOR_SHUFFLE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000266 }
267
268 return MipsTargetLowering::LowerOperation(Op, DAG);
269}
270
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000271// selectMADD -
272// Transforms a subgraph in CurDAG if the following pattern is found:
273// (addc multLo, Lo0), (adde multHi, Hi0),
274// where,
275// multHi/Lo: product of multiplication
276// Lo0: initial value of Lo register
277// Hi0: initial value of Hi register
278// Return true if pattern matching was successful.
279static bool selectMADD(SDNode *ADDENode, SelectionDAG *CurDAG) {
280 // ADDENode's second operand must be a flag output of an ADDC node in order
281 // for the matching to be successful.
282 SDNode *ADDCNode = ADDENode->getOperand(2).getNode();
283
284 if (ADDCNode->getOpcode() != ISD::ADDC)
285 return false;
286
287 SDValue MultHi = ADDENode->getOperand(0);
288 SDValue MultLo = ADDCNode->getOperand(0);
289 SDNode *MultNode = MultHi.getNode();
290 unsigned MultOpc = MultHi.getOpcode();
291
292 // MultHi and MultLo must be generated by the same node,
293 if (MultLo.getNode() != MultNode)
294 return false;
295
296 // and it must be a multiplication.
297 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
298 return false;
299
300 // MultLo amd MultHi must be the first and second output of MultNode
301 // respectively.
302 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
303 return false;
304
305 // Transform this to a MADD only if ADDENode and ADDCNode are the only users
306 // of the values of MultNode, in which case MultNode will be removed in later
307 // phases.
308 // If there exist users other than ADDENode or ADDCNode, this function returns
309 // here, which will result in MultNode being mapped to a single MULT
310 // instruction node rather than a pair of MULT and MADD instructions being
311 // produced.
312 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
313 return false;
314
Andrew Trickef9de2a2013-05-25 02:42:55 +0000315 SDLoc DL(ADDENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000316
317 // Initialize accumulator.
318 SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
319 ADDCNode->getOperand(1),
320 ADDENode->getOperand(1));
321
322 // create MipsMAdd(u) node
323 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MAddu : MipsISD::MAdd;
324
325 SDValue MAdd = CurDAG->getNode(MultOpc, DL, MVT::Untyped,
326 MultNode->getOperand(0),// Factor 0
327 MultNode->getOperand(1),// Factor 1
328 ACCIn);
329
330 // replace uses of adde and addc here
331 if (!SDValue(ADDCNode, 0).use_empty()) {
332 SDValue LoIdx = CurDAG->getConstant(Mips::sub_lo, MVT::i32);
333 SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MAdd,
334 LoIdx);
335 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDCNode, 0), LoOut);
336 }
337 if (!SDValue(ADDENode, 0).use_empty()) {
338 SDValue HiIdx = CurDAG->getConstant(Mips::sub_hi, MVT::i32);
339 SDValue HiOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MAdd,
340 HiIdx);
341 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDENode, 0), HiOut);
342 }
343
344 return true;
345}
346
347// selectMSUB -
348// Transforms a subgraph in CurDAG if the following pattern is found:
349// (addc Lo0, multLo), (sube Hi0, multHi),
350// where,
351// multHi/Lo: product of multiplication
352// Lo0: initial value of Lo register
353// Hi0: initial value of Hi register
354// Return true if pattern matching was successful.
355static bool selectMSUB(SDNode *SUBENode, SelectionDAG *CurDAG) {
356 // SUBENode's second operand must be a flag output of an SUBC node in order
357 // for the matching to be successful.
358 SDNode *SUBCNode = SUBENode->getOperand(2).getNode();
359
360 if (SUBCNode->getOpcode() != ISD::SUBC)
361 return false;
362
363 SDValue MultHi = SUBENode->getOperand(1);
364 SDValue MultLo = SUBCNode->getOperand(1);
365 SDNode *MultNode = MultHi.getNode();
366 unsigned MultOpc = MultHi.getOpcode();
367
368 // MultHi and MultLo must be generated by the same node,
369 if (MultLo.getNode() != MultNode)
370 return false;
371
372 // and it must be a multiplication.
373 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
374 return false;
375
376 // MultLo amd MultHi must be the first and second output of MultNode
377 // respectively.
378 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
379 return false;
380
381 // Transform this to a MSUB only if SUBENode and SUBCNode are the only users
382 // of the values of MultNode, in which case MultNode will be removed in later
383 // phases.
384 // If there exist users other than SUBENode or SUBCNode, this function returns
385 // here, which will result in MultNode being mapped to a single MULT
386 // instruction node rather than a pair of MULT and MSUB instructions being
387 // produced.
388 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
389 return false;
390
Andrew Trickef9de2a2013-05-25 02:42:55 +0000391 SDLoc DL(SUBENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000392
393 // Initialize accumulator.
394 SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
395 SUBCNode->getOperand(0),
396 SUBENode->getOperand(0));
397
398 // create MipsSub(u) node
399 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MSubu : MipsISD::MSub;
400
401 SDValue MSub = CurDAG->getNode(MultOpc, DL, MVT::Glue,
402 MultNode->getOperand(0),// Factor 0
403 MultNode->getOperand(1),// Factor 1
404 ACCIn);
405
406 // replace uses of sube and subc here
407 if (!SDValue(SUBCNode, 0).use_empty()) {
408 SDValue LoIdx = CurDAG->getConstant(Mips::sub_lo, MVT::i32);
409 SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MSub,
410 LoIdx);
411 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBCNode, 0), LoOut);
412 }
413 if (!SDValue(SUBENode, 0).use_empty()) {
414 SDValue HiIdx = CurDAG->getConstant(Mips::sub_hi, MVT::i32);
415 SDValue HiOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MSub,
416 HiIdx);
417 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBENode, 0), HiOut);
418 }
419
420 return true;
421}
422
423static SDValue performADDECombine(SDNode *N, SelectionDAG &DAG,
424 TargetLowering::DAGCombinerInfo &DCI,
425 const MipsSubtarget *Subtarget) {
426 if (DCI.isBeforeLegalize())
427 return SDValue();
428
429 if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
430 selectMADD(N, &DAG))
431 return SDValue(N, 0);
432
433 return SDValue();
434}
435
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000436// Fold zero extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT
437//
438// Performs the following transformations:
439// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to zero extension if its
440// sign/zero-extension is completely overwritten by the new one performed by
441// the ISD::AND.
442// - Removes redundant zero extensions performed by an ISD::AND.
443static SDValue performANDCombine(SDNode *N, SelectionDAG &DAG,
444 TargetLowering::DAGCombinerInfo &DCI,
445 const MipsSubtarget *Subtarget) {
446 if (!Subtarget->hasMSA())
447 return SDValue();
448
449 SDValue Op0 = N->getOperand(0);
450 SDValue Op1 = N->getOperand(1);
451 unsigned Op0Opcode = Op0->getOpcode();
452
453 // (and (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d)
454 // where $d + 1 == 2^n and n == 32
455 // or $d + 1 == 2^n and n <= 32 and ZExt
456 // -> (MipsVExtractZExt $a, $b, $c)
457 if (Op0Opcode == MipsISD::VEXTRACT_SEXT_ELT ||
458 Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT) {
459 ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(Op1);
460
461 if (!Mask)
462 return SDValue();
463
464 int32_t Log2IfPositive = (Mask->getAPIntValue() + 1).exactLogBase2();
465
466 if (Log2IfPositive <= 0)
467 return SDValue(); // Mask+1 is not a power of 2
468
469 SDValue Op0Op2 = Op0->getOperand(2);
470 EVT ExtendTy = cast<VTSDNode>(Op0Op2)->getVT();
471 unsigned ExtendTySize = ExtendTy.getSizeInBits();
472 unsigned Log2 = Log2IfPositive;
473
474 if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT && Log2 >= ExtendTySize) ||
475 Log2 == ExtendTySize) {
476 SDValue Ops[] = { Op0->getOperand(0), Op0->getOperand(1), Op0Op2 };
477 DAG.MorphNodeTo(Op0.getNode(), MipsISD::VEXTRACT_ZEXT_ELT,
478 Op0->getVTList(), Ops, Op0->getNumOperands());
479 return Op0;
480 }
481 }
482
483 return SDValue();
484}
485
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000486static SDValue performSUBECombine(SDNode *N, SelectionDAG &DAG,
487 TargetLowering::DAGCombinerInfo &DCI,
488 const MipsSubtarget *Subtarget) {
489 if (DCI.isBeforeLegalize())
490 return SDValue();
491
492 if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
493 selectMSUB(N, &DAG))
494 return SDValue(N, 0);
495
496 return SDValue();
497}
498
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000499static SDValue genConstMult(SDValue X, uint64_t C, SDLoc DL, EVT VT,
500 EVT ShiftTy, SelectionDAG &DAG) {
501 // Clear the upper (64 - VT.sizeInBits) bits.
502 C &= ((uint64_t)-1) >> (64 - VT.getSizeInBits());
503
504 // Return 0.
505 if (C == 0)
506 return DAG.getConstant(0, VT);
507
508 // Return x.
509 if (C == 1)
510 return X;
511
512 // If c is power of 2, return (shl x, log2(c)).
513 if (isPowerOf2_64(C))
514 return DAG.getNode(ISD::SHL, DL, VT, X,
515 DAG.getConstant(Log2_64(C), ShiftTy));
516
517 unsigned Log2Ceil = Log2_64_Ceil(C);
518 uint64_t Floor = 1LL << Log2_64(C);
519 uint64_t Ceil = Log2Ceil == 64 ? 0LL : 1LL << Log2Ceil;
520
521 // If |c - floor_c| <= |c - ceil_c|,
522 // where floor_c = pow(2, floor(log2(c))) and ceil_c = pow(2, ceil(log2(c))),
523 // return (add constMult(x, floor_c), constMult(x, c - floor_c)).
524 if (C - Floor <= Ceil - C) {
525 SDValue Op0 = genConstMult(X, Floor, DL, VT, ShiftTy, DAG);
526 SDValue Op1 = genConstMult(X, C - Floor, DL, VT, ShiftTy, DAG);
527 return DAG.getNode(ISD::ADD, DL, VT, Op0, Op1);
528 }
529
530 // If |c - floor_c| > |c - ceil_c|,
531 // return (sub constMult(x, ceil_c), constMult(x, ceil_c - c)).
532 SDValue Op0 = genConstMult(X, Ceil, DL, VT, ShiftTy, DAG);
533 SDValue Op1 = genConstMult(X, Ceil - C, DL, VT, ShiftTy, DAG);
534 return DAG.getNode(ISD::SUB, DL, VT, Op0, Op1);
535}
536
537static SDValue performMULCombine(SDNode *N, SelectionDAG &DAG,
538 const TargetLowering::DAGCombinerInfo &DCI,
539 const MipsSETargetLowering *TL) {
540 EVT VT = N->getValueType(0);
541
542 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
543 if (!VT.isVector())
544 return genConstMult(N->getOperand(0), C->getZExtValue(), SDLoc(N),
545 VT, TL->getScalarShiftAmountTy(VT), DAG);
546
547 return SDValue(N, 0);
548}
549
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000550static SDValue performDSPShiftCombine(unsigned Opc, SDNode *N, EVT Ty,
551 SelectionDAG &DAG,
552 const MipsSubtarget *Subtarget) {
553 // See if this is a vector splat immediate node.
554 APInt SplatValue, SplatUndef;
555 unsigned SplatBitSize;
556 bool HasAnyUndefs;
557 unsigned EltSize = Ty.getVectorElementType().getSizeInBits();
558 BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
559
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000560 if (!BV ||
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000561 !BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
Akira Hatanakae9d0b312013-04-23 18:09:42 +0000562 EltSize, !Subtarget->isLittle()) ||
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000563 (SplatBitSize != EltSize) ||
Akira Hatanakae9d0b312013-04-23 18:09:42 +0000564 (SplatValue.getZExtValue() >= EltSize))
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000565 return SDValue();
566
Andrew Trickef9de2a2013-05-25 02:42:55 +0000567 return DAG.getNode(Opc, SDLoc(N), Ty, N->getOperand(0),
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000568 DAG.getConstant(SplatValue.getZExtValue(), MVT::i32));
569}
570
571static SDValue performSHLCombine(SDNode *N, SelectionDAG &DAG,
572 TargetLowering::DAGCombinerInfo &DCI,
573 const MipsSubtarget *Subtarget) {
574 EVT Ty = N->getValueType(0);
575
576 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
577 return SDValue();
578
579 return performDSPShiftCombine(MipsISD::SHLL_DSP, N, Ty, DAG, Subtarget);
580}
581
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000582// Fold sign-extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT for MSA and fold
583// constant splats into MipsISD::SHRA_DSP for DSPr2.
584//
585// Performs the following transformations:
586// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to sign extension if its
587// sign/zero-extension is completely overwritten by the new one performed by
588// the ISD::SRA and ISD::SHL nodes.
589// - Removes redundant sign extensions performed by an ISD::SRA and ISD::SHL
590// sequence.
591//
592// See performDSPShiftCombine for more information about the transformation
593// used for DSPr2.
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000594static SDValue performSRACombine(SDNode *N, SelectionDAG &DAG,
595 TargetLowering::DAGCombinerInfo &DCI,
596 const MipsSubtarget *Subtarget) {
597 EVT Ty = N->getValueType(0);
598
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000599 if (Subtarget->hasMSA()) {
600 SDValue Op0 = N->getOperand(0);
601 SDValue Op1 = N->getOperand(1);
602
603 // (sra (shl (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d), imm:$d)
604 // where $d + sizeof($c) == 32
605 // or $d + sizeof($c) <= 32 and SExt
606 // -> (MipsVExtractSExt $a, $b, $c)
607 if (Op0->getOpcode() == ISD::SHL && Op1 == Op0->getOperand(1)) {
608 SDValue Op0Op0 = Op0->getOperand(0);
609 ConstantSDNode *ShAmount = dyn_cast<ConstantSDNode>(Op1);
610
611 if (!ShAmount)
612 return SDValue();
613
Daniel Sandersf4f1a872013-09-27 09:25:29 +0000614 if (Op0Op0->getOpcode() != MipsISD::VEXTRACT_SEXT_ELT &&
615 Op0Op0->getOpcode() != MipsISD::VEXTRACT_ZEXT_ELT)
616 return SDValue();
617
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000618 EVT ExtendTy = cast<VTSDNode>(Op0Op0->getOperand(2))->getVT();
619 unsigned TotalBits = ShAmount->getZExtValue() + ExtendTy.getSizeInBits();
620
621 if (TotalBits == 32 ||
622 (Op0Op0->getOpcode() == MipsISD::VEXTRACT_SEXT_ELT &&
623 TotalBits <= 32)) {
624 SDValue Ops[] = { Op0Op0->getOperand(0), Op0Op0->getOperand(1),
625 Op0Op0->getOperand(2) };
626 DAG.MorphNodeTo(Op0Op0.getNode(), MipsISD::VEXTRACT_SEXT_ELT,
627 Op0Op0->getVTList(), Ops, Op0Op0->getNumOperands());
628 return Op0Op0;
629 }
630 }
631 }
632
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000633 if ((Ty != MVT::v2i16) && ((Ty != MVT::v4i8) || !Subtarget->hasDSPR2()))
634 return SDValue();
635
636 return performDSPShiftCombine(MipsISD::SHRA_DSP, N, Ty, DAG, Subtarget);
637}
638
639
640static SDValue performSRLCombine(SDNode *N, SelectionDAG &DAG,
641 TargetLowering::DAGCombinerInfo &DCI,
642 const MipsSubtarget *Subtarget) {
643 EVT Ty = N->getValueType(0);
644
645 if (((Ty != MVT::v2i16) || !Subtarget->hasDSPR2()) && (Ty != MVT::v4i8))
646 return SDValue();
647
648 return performDSPShiftCombine(MipsISD::SHRL_DSP, N, Ty, DAG, Subtarget);
649}
650
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000651static bool isLegalDSPCondCode(EVT Ty, ISD::CondCode CC) {
652 bool IsV216 = (Ty == MVT::v2i16);
653
654 switch (CC) {
655 case ISD::SETEQ:
656 case ISD::SETNE: return true;
657 case ISD::SETLT:
658 case ISD::SETLE:
659 case ISD::SETGT:
660 case ISD::SETGE: return IsV216;
661 case ISD::SETULT:
662 case ISD::SETULE:
663 case ISD::SETUGT:
664 case ISD::SETUGE: return !IsV216;
665 default: return false;
666 }
667}
668
669static SDValue performSETCCCombine(SDNode *N, SelectionDAG &DAG) {
670 EVT Ty = N->getValueType(0);
671
672 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
673 return SDValue();
674
675 if (!isLegalDSPCondCode(Ty, cast<CondCodeSDNode>(N->getOperand(2))->get()))
676 return SDValue();
677
Andrew Trickef9de2a2013-05-25 02:42:55 +0000678 return DAG.getNode(MipsISD::SETCC_DSP, SDLoc(N), Ty, N->getOperand(0),
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000679 N->getOperand(1), N->getOperand(2));
680}
681
682static SDValue performVSELECTCombine(SDNode *N, SelectionDAG &DAG) {
683 EVT Ty = N->getValueType(0);
684
Daniel Sanders3ce56622013-09-24 12:18:31 +0000685 if (Ty.is128BitVector() && Ty.isInteger()) {
686 // Try the following combines:
687 // (vselect (setcc $a, $b, SETLT), $b, $a)) -> (vsmax $a, $b)
688 // (vselect (setcc $a, $b, SETLE), $b, $a)) -> (vsmax $a, $b)
689 // (vselect (setcc $a, $b, SETLT), $a, $b)) -> (vsmin $a, $b)
690 // (vselect (setcc $a, $b, SETLE), $a, $b)) -> (vsmin $a, $b)
691 // (vselect (setcc $a, $b, SETULT), $b, $a)) -> (vumax $a, $b)
692 // (vselect (setcc $a, $b, SETULE), $b, $a)) -> (vumax $a, $b)
693 // (vselect (setcc $a, $b, SETULT), $a, $b)) -> (vumin $a, $b)
694 // (vselect (setcc $a, $b, SETULE), $a, $b)) -> (vumin $a, $b)
695 // SETGT/SETGE/SETUGT/SETUGE variants of these will show up initially but
696 // will be expanded to equivalent SETLT/SETLE/SETULT/SETULE versions by the
697 // legalizer.
698 SDValue Op0 = N->getOperand(0);
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000699
Daniel Sanders3ce56622013-09-24 12:18:31 +0000700 if (Op0->getOpcode() != ISD::SETCC)
701 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000702
Daniel Sanders3ce56622013-09-24 12:18:31 +0000703 ISD::CondCode CondCode = cast<CondCodeSDNode>(Op0->getOperand(2))->get();
704 bool Signed;
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000705
Daniel Sanders3ce56622013-09-24 12:18:31 +0000706 if (CondCode == ISD::SETLT || CondCode == ISD::SETLE)
707 Signed = true;
708 else if (CondCode == ISD::SETULT || CondCode == ISD::SETULE)
709 Signed = false;
710 else
711 return SDValue();
712
713 SDValue Op1 = N->getOperand(1);
714 SDValue Op2 = N->getOperand(2);
715 SDValue Op0Op0 = Op0->getOperand(0);
716 SDValue Op0Op1 = Op0->getOperand(1);
717
718 if (Op1 == Op0Op0 && Op2 == Op0Op1)
719 return DAG.getNode(Signed ? MipsISD::VSMIN : MipsISD::VUMIN, SDLoc(N),
720 Ty, Op1, Op2);
721 else if (Op1 == Op0Op1 && Op2 == Op0Op0)
722 return DAG.getNode(Signed ? MipsISD::VSMAX : MipsISD::VUMAX, SDLoc(N),
723 Ty, Op1, Op2);
724 } else if ((Ty == MVT::v2i16) || (Ty == MVT::v4i8)) {
725 SDValue SetCC = N->getOperand(0);
726
727 if (SetCC.getOpcode() != MipsISD::SETCC_DSP)
728 return SDValue();
729
730 return DAG.getNode(MipsISD::SELECT_CC_DSP, SDLoc(N), Ty,
731 SetCC.getOperand(0), SetCC.getOperand(1),
732 N->getOperand(1), N->getOperand(2), SetCC.getOperand(2));
733 }
734
735 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000736}
737
Daniel Sandersf7456c72013-09-23 13:22:24 +0000738static SDValue performXORCombine(SDNode *N, SelectionDAG &DAG,
739 const MipsSubtarget *Subtarget) {
740 EVT Ty = N->getValueType(0);
741
742 if (Subtarget->hasMSA() && Ty.is128BitVector() && Ty.isInteger()) {
743 // Try the following combines:
744 // (xor (or $a, $b), (build_vector allones))
745 // (xor (or $a, $b), (bitcast (build_vector allones)))
746 SDValue Op0 = N->getOperand(0);
747 SDValue Op1 = N->getOperand(1);
748 SDValue NotOp;
Daniel Sandersf7456c72013-09-23 13:22:24 +0000749
750 if (ISD::isBuildVectorAllOnes(Op0.getNode()))
751 NotOp = Op1;
752 else if (ISD::isBuildVectorAllOnes(Op1.getNode()))
753 NotOp = Op0;
Daniel Sandersf7456c72013-09-23 13:22:24 +0000754 else
755 return SDValue();
756
757 if (NotOp->getOpcode() == ISD::OR)
758 return DAG.getNode(MipsISD::VNOR, SDLoc(N), Ty, NotOp->getOperand(0),
759 NotOp->getOperand(1));
760 }
761
762 return SDValue();
763}
764
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000765SDValue
766MipsSETargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const {
767 SelectionDAG &DAG = DCI.DAG;
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000768 SDValue Val;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000769
770 switch (N->getOpcode()) {
771 case ISD::ADDE:
772 return performADDECombine(N, DAG, DCI, Subtarget);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000773 case ISD::AND:
774 Val = performANDCombine(N, DAG, DCI, Subtarget);
775 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000776 case ISD::SUBE:
777 return performSUBECombine(N, DAG, DCI, Subtarget);
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000778 case ISD::MUL:
779 return performMULCombine(N, DAG, DCI, this);
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000780 case ISD::SHL:
781 return performSHLCombine(N, DAG, DCI, Subtarget);
782 case ISD::SRA:
783 return performSRACombine(N, DAG, DCI, Subtarget);
784 case ISD::SRL:
785 return performSRLCombine(N, DAG, DCI, Subtarget);
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000786 case ISD::VSELECT:
787 return performVSELECTCombine(N, DAG);
Daniel Sandersf7456c72013-09-23 13:22:24 +0000788 case ISD::XOR:
789 Val = performXORCombine(N, DAG, Subtarget);
790 break;
791 case ISD::SETCC:
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000792 Val = performSETCCCombine(N, DAG);
793 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000794 }
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000795
796 if (Val.getNode())
797 return Val;
798
799 return MipsTargetLowering::PerformDAGCombine(N, DCI);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000800}
801
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000802MachineBasicBlock *
803MipsSETargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
804 MachineBasicBlock *BB) const {
805 switch (MI->getOpcode()) {
806 default:
807 return MipsTargetLowering::EmitInstrWithCustomInserter(MI, BB);
808 case Mips::BPOSGE32_PSEUDO:
809 return emitBPOSGE32(MI, BB);
Daniel Sandersce09d072013-08-28 12:14:50 +0000810 case Mips::SNZ_B_PSEUDO:
811 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_B);
812 case Mips::SNZ_H_PSEUDO:
813 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_H);
814 case Mips::SNZ_W_PSEUDO:
815 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_W);
816 case Mips::SNZ_D_PSEUDO:
817 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_D);
818 case Mips::SNZ_V_PSEUDO:
819 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_V);
820 case Mips::SZ_B_PSEUDO:
821 return emitMSACBranchPseudo(MI, BB, Mips::BZ_B);
822 case Mips::SZ_H_PSEUDO:
823 return emitMSACBranchPseudo(MI, BB, Mips::BZ_H);
824 case Mips::SZ_W_PSEUDO:
825 return emitMSACBranchPseudo(MI, BB, Mips::BZ_W);
826 case Mips::SZ_D_PSEUDO:
827 return emitMSACBranchPseudo(MI, BB, Mips::BZ_D);
828 case Mips::SZ_V_PSEUDO:
829 return emitMSACBranchPseudo(MI, BB, Mips::BZ_V);
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000830 }
831}
832
833bool MipsSETargetLowering::
834isEligibleForTailCallOptimization(const MipsCC &MipsCCInfo,
835 unsigned NextStackOffset,
836 const MipsFunctionInfo& FI) const {
837 if (!EnableMipsTailCalls)
838 return false;
839
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000840 // Return false if either the callee or caller has a byval argument.
841 if (MipsCCInfo.hasByValArg() || FI.hasByvalArg())
842 return false;
843
844 // Return true if the callee's argument area is no larger than the
845 // caller's.
846 return NextStackOffset <= FI.getIncomingArgSize();
847}
848
849void MipsSETargetLowering::
850getOpndList(SmallVectorImpl<SDValue> &Ops,
851 std::deque< std::pair<unsigned, SDValue> > &RegsToPass,
852 bool IsPICCall, bool GlobalOrExternal, bool InternalLinkage,
853 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const {
854 // T9 should contain the address of the callee function if
855 // -reloction-model=pic or it is an indirect call.
856 if (IsPICCall || !GlobalOrExternal) {
857 unsigned T9Reg = IsN64 ? Mips::T9_64 : Mips::T9;
858 RegsToPass.push_front(std::make_pair(T9Reg, Callee));
859 } else
860 Ops.push_back(Callee);
861
862 MipsTargetLowering::getOpndList(Ops, RegsToPass, IsPICCall, GlobalOrExternal,
863 InternalLinkage, CLI, Callee, Chain);
864}
865
Akira Hatanaka63791212013-09-07 00:52:30 +0000866SDValue MipsSETargetLowering::lowerLOAD(SDValue Op, SelectionDAG &DAG) const {
867 LoadSDNode &Nd = *cast<LoadSDNode>(Op);
868
869 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
870 return MipsTargetLowering::lowerLOAD(Op, DAG);
871
872 // Replace a double precision load with two i32 loads and a buildpair64.
873 SDLoc DL(Op);
874 SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
875 EVT PtrVT = Ptr.getValueType();
876
877 // i32 load from lower address.
878 SDValue Lo = DAG.getLoad(MVT::i32, DL, Chain, Ptr,
879 MachinePointerInfo(), Nd.isVolatile(),
880 Nd.isNonTemporal(), Nd.isInvariant(),
881 Nd.getAlignment());
882
883 // i32 load from higher address.
884 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
885 SDValue Hi = DAG.getLoad(MVT::i32, DL, Lo.getValue(1), Ptr,
886 MachinePointerInfo(), Nd.isVolatile(),
887 Nd.isNonTemporal(), Nd.isInvariant(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +0000888 std::min(Nd.getAlignment(), 4U));
Akira Hatanaka63791212013-09-07 00:52:30 +0000889
890 if (!Subtarget->isLittle())
891 std::swap(Lo, Hi);
892
893 SDValue BP = DAG.getNode(MipsISD::BuildPairF64, DL, MVT::f64, Lo, Hi);
894 SDValue Ops[2] = {BP, Hi.getValue(1)};
895 return DAG.getMergeValues(Ops, 2, DL);
896}
897
898SDValue MipsSETargetLowering::lowerSTORE(SDValue Op, SelectionDAG &DAG) const {
899 StoreSDNode &Nd = *cast<StoreSDNode>(Op);
900
901 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
902 return MipsTargetLowering::lowerSTORE(Op, DAG);
903
904 // Replace a double precision store with two extractelement64s and i32 stores.
905 SDLoc DL(Op);
906 SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
907 EVT PtrVT = Ptr.getValueType();
908 SDValue Lo = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
909 Val, DAG.getConstant(0, MVT::i32));
910 SDValue Hi = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
911 Val, DAG.getConstant(1, MVT::i32));
912
913 if (!Subtarget->isLittle())
914 std::swap(Lo, Hi);
915
916 // i32 store to lower address.
917 Chain = DAG.getStore(Chain, DL, Lo, Ptr, MachinePointerInfo(),
918 Nd.isVolatile(), Nd.isNonTemporal(), Nd.getAlignment(),
919 Nd.getTBAAInfo());
920
921 // i32 store to higher address.
922 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
923 return DAG.getStore(Chain, DL, Hi, Ptr, MachinePointerInfo(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +0000924 Nd.isVolatile(), Nd.isNonTemporal(),
925 std::min(Nd.getAlignment(), 4U), Nd.getTBAAInfo());
Akira Hatanaka63791212013-09-07 00:52:30 +0000926}
927
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000928SDValue MipsSETargetLowering::lowerMulDiv(SDValue Op, unsigned NewOpc,
929 bool HasLo, bool HasHi,
930 SelectionDAG &DAG) const {
931 EVT Ty = Op.getOperand(0).getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000932 SDLoc DL(Op);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000933 SDValue Mult = DAG.getNode(NewOpc, DL, MVT::Untyped,
934 Op.getOperand(0), Op.getOperand(1));
935 SDValue Lo, Hi;
936
937 if (HasLo)
938 Lo = DAG.getNode(MipsISD::ExtractLOHI, DL, Ty, Mult,
939 DAG.getConstant(Mips::sub_lo, MVT::i32));
940 if (HasHi)
941 Hi = DAG.getNode(MipsISD::ExtractLOHI, DL, Ty, Mult,
942 DAG.getConstant(Mips::sub_hi, MVT::i32));
943
944 if (!HasLo || !HasHi)
945 return HasLo ? Lo : Hi;
946
947 SDValue Vals[] = { Lo, Hi };
948 return DAG.getMergeValues(Vals, 2, DL);
949}
950
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000951
Andrew Trickef9de2a2013-05-25 02:42:55 +0000952static SDValue initAccumulator(SDValue In, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000953 SDValue InLo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
954 DAG.getConstant(0, MVT::i32));
955 SDValue InHi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
956 DAG.getConstant(1, MVT::i32));
957 return DAG.getNode(MipsISD::InsertLOHI, DL, MVT::Untyped, InLo, InHi);
958}
959
Andrew Trickef9de2a2013-05-25 02:42:55 +0000960static SDValue extractLOHI(SDValue Op, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000961 SDValue Lo = DAG.getNode(MipsISD::ExtractLOHI, DL, MVT::i32, Op,
962 DAG.getConstant(Mips::sub_lo, MVT::i32));
963 SDValue Hi = DAG.getNode(MipsISD::ExtractLOHI, DL, MVT::i32, Op,
964 DAG.getConstant(Mips::sub_hi, MVT::i32));
965 return DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Lo, Hi);
966}
967
968// This function expands mips intrinsic nodes which have 64-bit input operands
969// or output values.
970//
971// out64 = intrinsic-node in64
972// =>
973// lo = copy (extract-element (in64, 0))
974// hi = copy (extract-element (in64, 1))
975// mips-specific-node
976// v0 = copy lo
977// v1 = copy hi
978// out64 = merge-values (v0, v1)
979//
980static SDValue lowerDSPIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000981 SDLoc DL(Op);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000982 bool HasChainIn = Op->getOperand(0).getValueType() == MVT::Other;
983 SmallVector<SDValue, 3> Ops;
984 unsigned OpNo = 0;
985
986 // See if Op has a chain input.
987 if (HasChainIn)
988 Ops.push_back(Op->getOperand(OpNo++));
989
990 // The next operand is the intrinsic opcode.
991 assert(Op->getOperand(OpNo).getOpcode() == ISD::TargetConstant);
992
993 // See if the next operand has type i64.
994 SDValue Opnd = Op->getOperand(++OpNo), In64;
995
996 if (Opnd.getValueType() == MVT::i64)
997 In64 = initAccumulator(Opnd, DL, DAG);
998 else
999 Ops.push_back(Opnd);
1000
1001 // Push the remaining operands.
1002 for (++OpNo ; OpNo < Op->getNumOperands(); ++OpNo)
1003 Ops.push_back(Op->getOperand(OpNo));
1004
1005 // Add In64 to the end of the list.
1006 if (In64.getNode())
1007 Ops.push_back(In64);
1008
1009 // Scan output.
1010 SmallVector<EVT, 2> ResTys;
1011
1012 for (SDNode::value_iterator I = Op->value_begin(), E = Op->value_end();
1013 I != E; ++I)
1014 ResTys.push_back((*I == MVT::i64) ? MVT::Untyped : *I);
1015
1016 // Create node.
1017 SDValue Val = DAG.getNode(Opc, DL, ResTys, &Ops[0], Ops.size());
1018 SDValue Out = (ResTys[0] == MVT::Untyped) ? extractLOHI(Val, DL, DAG) : Val;
1019
1020 if (!HasChainIn)
1021 return Out;
1022
1023 assert(Val->getValueType(1) == MVT::Other);
1024 SDValue Vals[] = { Out, SDValue(Val.getNode(), 1) };
1025 return DAG.getMergeValues(Vals, 2, DL);
1026}
1027
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001028// Lower an MSA copy intrinsic into the specified SelectionDAG node
1029static SDValue lowerMSACopyIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1030 SDLoc DL(Op);
1031 SDValue Vec = Op->getOperand(1);
1032 SDValue Idx = Op->getOperand(2);
1033 EVT ResTy = Op->getValueType(0);
1034 EVT EltTy = Vec->getValueType(0).getVectorElementType();
1035
1036 SDValue Result = DAG.getNode(Opc, DL, ResTy, Vec, Idx,
1037 DAG.getValueType(EltTy));
1038
1039 return Result;
1040}
1041
1042// Lower an MSA insert intrinsic into the specified SelectionDAG node
1043static SDValue lowerMSAInsertIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1044 SDLoc DL(Op);
1045 SDValue Op0 = Op->getOperand(1);
1046 SDValue Op1 = Op->getOperand(2);
1047 SDValue Op2 = Op->getOperand(3);
1048 EVT ResTy = Op->getValueType(0);
1049
1050 SDValue Result = DAG.getNode(Opc, DL, ResTy, Op0, Op2, Op1);
1051
1052 return Result;
1053}
1054
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001055static SDValue
1056lowerMSASplatImm(SDLoc DL, EVT ResTy, SDValue ImmOp, SelectionDAG &DAG) {
Daniel Sandersf49dd822013-09-24 13:33:07 +00001057 EVT ViaVecTy = ResTy;
1058 SmallVector<SDValue, 16> Ops;
1059 SDValue ImmHiOp;
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001060
Daniel Sandersf49dd822013-09-24 13:33:07 +00001061 if (ViaVecTy == MVT::v2i64) {
1062 ImmHiOp = DAG.getNode(ISD::SRA, DL, MVT::i32, ImmOp,
1063 DAG.getConstant(31, MVT::i32));
1064 for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i) {
1065 Ops.push_back(ImmHiOp);
1066 Ops.push_back(ImmOp);
1067 }
1068 ViaVecTy = MVT::v4i32;
1069 } else {
1070 for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1071 Ops.push_back(ImmOp);
1072 }
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001073
Daniel Sandersf49dd822013-09-24 13:33:07 +00001074 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, DL, ViaVecTy, &Ops[0],
1075 Ops.size());
1076
1077 if (ResTy != ViaVecTy)
1078 Result = DAG.getNode(ISD::BITCAST, DL, ResTy, Result);
1079
1080 return Result;
1081}
1082
1083static SDValue
1084lowerMSASplatImm(SDValue Op, unsigned ImmOp, SelectionDAG &DAG) {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001085 return lowerMSASplatImm(SDLoc(Op), Op->getValueType(0),
1086 Op->getOperand(ImmOp), DAG);
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001087}
1088
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001089SDValue MipsSETargetLowering::lowerINTRINSIC_WO_CHAIN(SDValue Op,
1090 SelectionDAG &DAG) const {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001091 SDLoc DL(Op);
1092
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001093 switch (cast<ConstantSDNode>(Op->getOperand(0))->getZExtValue()) {
1094 default:
1095 return SDValue();
1096 case Intrinsic::mips_shilo:
1097 return lowerDSPIntr(Op, DAG, MipsISD::SHILO);
1098 case Intrinsic::mips_dpau_h_qbl:
1099 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBL);
1100 case Intrinsic::mips_dpau_h_qbr:
1101 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBR);
1102 case Intrinsic::mips_dpsu_h_qbl:
1103 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBL);
1104 case Intrinsic::mips_dpsu_h_qbr:
1105 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBR);
1106 case Intrinsic::mips_dpa_w_ph:
1107 return lowerDSPIntr(Op, DAG, MipsISD::DPA_W_PH);
1108 case Intrinsic::mips_dps_w_ph:
1109 return lowerDSPIntr(Op, DAG, MipsISD::DPS_W_PH);
1110 case Intrinsic::mips_dpax_w_ph:
1111 return lowerDSPIntr(Op, DAG, MipsISD::DPAX_W_PH);
1112 case Intrinsic::mips_dpsx_w_ph:
1113 return lowerDSPIntr(Op, DAG, MipsISD::DPSX_W_PH);
1114 case Intrinsic::mips_mulsa_w_ph:
1115 return lowerDSPIntr(Op, DAG, MipsISD::MULSA_W_PH);
1116 case Intrinsic::mips_mult:
1117 return lowerDSPIntr(Op, DAG, MipsISD::Mult);
1118 case Intrinsic::mips_multu:
1119 return lowerDSPIntr(Op, DAG, MipsISD::Multu);
1120 case Intrinsic::mips_madd:
1121 return lowerDSPIntr(Op, DAG, MipsISD::MAdd);
1122 case Intrinsic::mips_maddu:
1123 return lowerDSPIntr(Op, DAG, MipsISD::MAddu);
1124 case Intrinsic::mips_msub:
1125 return lowerDSPIntr(Op, DAG, MipsISD::MSub);
1126 case Intrinsic::mips_msubu:
1127 return lowerDSPIntr(Op, DAG, MipsISD::MSubu);
Daniel Sandersfa5ab1c2013-09-11 10:28:16 +00001128 case Intrinsic::mips_addv_b:
1129 case Intrinsic::mips_addv_h:
1130 case Intrinsic::mips_addv_w:
1131 case Intrinsic::mips_addv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001132 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1133 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001134 case Intrinsic::mips_addvi_b:
1135 case Intrinsic::mips_addvi_h:
1136 case Intrinsic::mips_addvi_w:
1137 case Intrinsic::mips_addvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001138 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1139 lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001140 case Intrinsic::mips_and_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001141 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1142 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001143 case Intrinsic::mips_andi_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001144 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1145 lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersce09d072013-08-28 12:14:50 +00001146 case Intrinsic::mips_bnz_b:
1147 case Intrinsic::mips_bnz_h:
1148 case Intrinsic::mips_bnz_w:
1149 case Intrinsic::mips_bnz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001150 return DAG.getNode(MipsISD::VALL_NONZERO, DL, Op->getValueType(0),
1151 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001152 case Intrinsic::mips_bnz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001153 return DAG.getNode(MipsISD::VANY_NONZERO, DL, Op->getValueType(0),
1154 Op->getOperand(1));
Daniel Sanderse1d24352013-09-24 12:04:44 +00001155 case Intrinsic::mips_bsel_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001156 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sanderse1d24352013-09-24 12:04:44 +00001157 Op->getOperand(1), Op->getOperand(2),
1158 Op->getOperand(3));
1159 case Intrinsic::mips_bseli_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001160 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sanderse1d24352013-09-24 12:04:44 +00001161 Op->getOperand(1), Op->getOperand(2),
1162 lowerMSASplatImm(Op, 3, DAG));
Daniel Sandersce09d072013-08-28 12:14:50 +00001163 case Intrinsic::mips_bz_b:
1164 case Intrinsic::mips_bz_h:
1165 case Intrinsic::mips_bz_w:
1166 case Intrinsic::mips_bz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001167 return DAG.getNode(MipsISD::VALL_ZERO, DL, Op->getValueType(0),
1168 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001169 case Intrinsic::mips_bz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001170 return DAG.getNode(MipsISD::VANY_ZERO, DL, Op->getValueType(0),
1171 Op->getOperand(1));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001172 case Intrinsic::mips_ceq_b:
1173 case Intrinsic::mips_ceq_h:
1174 case Intrinsic::mips_ceq_w:
1175 case Intrinsic::mips_ceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001176 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001177 Op->getOperand(2), ISD::SETEQ);
1178 case Intrinsic::mips_ceqi_b:
1179 case Intrinsic::mips_ceqi_h:
1180 case Intrinsic::mips_ceqi_w:
1181 case Intrinsic::mips_ceqi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001182 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001183 lowerMSASplatImm(Op, 2, DAG), ISD::SETEQ);
1184 case Intrinsic::mips_cle_s_b:
1185 case Intrinsic::mips_cle_s_h:
1186 case Intrinsic::mips_cle_s_w:
1187 case Intrinsic::mips_cle_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001188 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001189 Op->getOperand(2), ISD::SETLE);
1190 case Intrinsic::mips_clei_s_b:
1191 case Intrinsic::mips_clei_s_h:
1192 case Intrinsic::mips_clei_s_w:
1193 case Intrinsic::mips_clei_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001194 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001195 lowerMSASplatImm(Op, 2, DAG), ISD::SETLE);
1196 case Intrinsic::mips_cle_u_b:
1197 case Intrinsic::mips_cle_u_h:
1198 case Intrinsic::mips_cle_u_w:
1199 case Intrinsic::mips_cle_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001200 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001201 Op->getOperand(2), ISD::SETULE);
1202 case Intrinsic::mips_clei_u_b:
1203 case Intrinsic::mips_clei_u_h:
1204 case Intrinsic::mips_clei_u_w:
1205 case Intrinsic::mips_clei_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001206 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001207 lowerMSASplatImm(Op, 2, DAG), ISD::SETULE);
1208 case Intrinsic::mips_clt_s_b:
1209 case Intrinsic::mips_clt_s_h:
1210 case Intrinsic::mips_clt_s_w:
1211 case Intrinsic::mips_clt_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001212 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001213 Op->getOperand(2), ISD::SETLT);
1214 case Intrinsic::mips_clti_s_b:
1215 case Intrinsic::mips_clti_s_h:
1216 case Intrinsic::mips_clti_s_w:
1217 case Intrinsic::mips_clti_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001218 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001219 lowerMSASplatImm(Op, 2, DAG), ISD::SETLT);
1220 case Intrinsic::mips_clt_u_b:
1221 case Intrinsic::mips_clt_u_h:
1222 case Intrinsic::mips_clt_u_w:
1223 case Intrinsic::mips_clt_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001224 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001225 Op->getOperand(2), ISD::SETULT);
1226 case Intrinsic::mips_clti_u_b:
1227 case Intrinsic::mips_clti_u_h:
1228 case Intrinsic::mips_clti_u_w:
1229 case Intrinsic::mips_clti_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001230 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001231 lowerMSASplatImm(Op, 2, DAG), ISD::SETULT);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001232 case Intrinsic::mips_copy_s_b:
1233 case Intrinsic::mips_copy_s_h:
1234 case Intrinsic::mips_copy_s_w:
1235 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_SEXT_ELT);
1236 case Intrinsic::mips_copy_u_b:
1237 case Intrinsic::mips_copy_u_h:
1238 case Intrinsic::mips_copy_u_w:
1239 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_ZEXT_ELT);
Daniel Sanders607952b2013-09-11 10:38:58 +00001240 case Intrinsic::mips_div_s_b:
1241 case Intrinsic::mips_div_s_h:
1242 case Intrinsic::mips_div_s_w:
1243 case Intrinsic::mips_div_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001244 return DAG.getNode(ISD::SDIV, DL, Op->getValueType(0), Op->getOperand(1),
1245 Op->getOperand(2));
Daniel Sanders607952b2013-09-11 10:38:58 +00001246 case Intrinsic::mips_div_u_b:
1247 case Intrinsic::mips_div_u_h:
1248 case Intrinsic::mips_div_u_w:
1249 case Intrinsic::mips_div_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001250 return DAG.getNode(ISD::UDIV, DL, Op->getValueType(0), Op->getOperand(1),
1251 Op->getOperand(2));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001252 case Intrinsic::mips_fadd_w:
1253 case Intrinsic::mips_fadd_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001254 return DAG.getNode(ISD::FADD, DL, Op->getValueType(0), Op->getOperand(1),
1255 Op->getOperand(2));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001256 // Don't lower mips_fcaf_[wd] since LLVM folds SETFALSE condcodes away
1257 case Intrinsic::mips_fceq_w:
1258 case Intrinsic::mips_fceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001259 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001260 Op->getOperand(2), ISD::SETOEQ);
1261 case Intrinsic::mips_fcle_w:
1262 case Intrinsic::mips_fcle_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001263 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001264 Op->getOperand(2), ISD::SETOLE);
1265 case Intrinsic::mips_fclt_w:
1266 case Intrinsic::mips_fclt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001267 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001268 Op->getOperand(2), ISD::SETOLT);
1269 case Intrinsic::mips_fcne_w:
1270 case Intrinsic::mips_fcne_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001271 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001272 Op->getOperand(2), ISD::SETONE);
1273 case Intrinsic::mips_fcor_w:
1274 case Intrinsic::mips_fcor_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001275 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001276 Op->getOperand(2), ISD::SETO);
1277 case Intrinsic::mips_fcueq_w:
1278 case Intrinsic::mips_fcueq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001279 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001280 Op->getOperand(2), ISD::SETUEQ);
1281 case Intrinsic::mips_fcule_w:
1282 case Intrinsic::mips_fcule_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001283 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001284 Op->getOperand(2), ISD::SETULE);
1285 case Intrinsic::mips_fcult_w:
1286 case Intrinsic::mips_fcult_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001287 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001288 Op->getOperand(2), ISD::SETULT);
1289 case Intrinsic::mips_fcun_w:
1290 case Intrinsic::mips_fcun_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001291 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001292 Op->getOperand(2), ISD::SETUO);
1293 case Intrinsic::mips_fcune_w:
1294 case Intrinsic::mips_fcune_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001295 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001296 Op->getOperand(2), ISD::SETUNE);
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001297 case Intrinsic::mips_fdiv_w:
1298 case Intrinsic::mips_fdiv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001299 return DAG.getNode(ISD::FDIV, DL, Op->getValueType(0), Op->getOperand(1),
1300 Op->getOperand(2));
Daniel Sanders7a289d02013-09-23 12:02:46 +00001301 case Intrinsic::mips_fill_b:
1302 case Intrinsic::mips_fill_h:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001303 case Intrinsic::mips_fill_w: {
1304 SmallVector<SDValue, 16> Ops;
1305 EVT ResTy = Op->getValueType(0);
1306
1307 for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1308 Ops.push_back(Op->getOperand(1));
1309
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001310 return DAG.getNode(ISD::BUILD_VECTOR, DL, ResTy, &Ops[0],
Daniel Sandersf49dd822013-09-24 13:33:07 +00001311 Ops.size());
1312 }
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001313 case Intrinsic::mips_flog2_w:
1314 case Intrinsic::mips_flog2_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001315 return DAG.getNode(ISD::FLOG2, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001316 case Intrinsic::mips_fmul_w:
1317 case Intrinsic::mips_fmul_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001318 return DAG.getNode(ISD::FMUL, DL, Op->getValueType(0), Op->getOperand(1),
1319 Op->getOperand(2));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001320 case Intrinsic::mips_frint_w:
1321 case Intrinsic::mips_frint_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001322 return DAG.getNode(ISD::FRINT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001323 case Intrinsic::mips_fsqrt_w:
1324 case Intrinsic::mips_fsqrt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001325 return DAG.getNode(ISD::FSQRT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001326 case Intrinsic::mips_fsub_w:
1327 case Intrinsic::mips_fsub_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001328 return DAG.getNode(ISD::FSUB, DL, Op->getValueType(0), Op->getOperand(1),
1329 Op->getOperand(2));
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001330 case Intrinsic::mips_ilvev_b:
1331 case Intrinsic::mips_ilvev_h:
1332 case Intrinsic::mips_ilvev_w:
1333 case Intrinsic::mips_ilvev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001334 return DAG.getNode(MipsISD::ILVEV, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001335 Op->getOperand(1), Op->getOperand(2));
1336 case Intrinsic::mips_ilvl_b:
1337 case Intrinsic::mips_ilvl_h:
1338 case Intrinsic::mips_ilvl_w:
1339 case Intrinsic::mips_ilvl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001340 return DAG.getNode(MipsISD::ILVL, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001341 Op->getOperand(1), Op->getOperand(2));
1342 case Intrinsic::mips_ilvod_b:
1343 case Intrinsic::mips_ilvod_h:
1344 case Intrinsic::mips_ilvod_w:
1345 case Intrinsic::mips_ilvod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001346 return DAG.getNode(MipsISD::ILVOD, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001347 Op->getOperand(1), Op->getOperand(2));
1348 case Intrinsic::mips_ilvr_b:
1349 case Intrinsic::mips_ilvr_h:
1350 case Intrinsic::mips_ilvr_w:
1351 case Intrinsic::mips_ilvr_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001352 return DAG.getNode(MipsISD::ILVR, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001353 Op->getOperand(1), Op->getOperand(2));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001354 case Intrinsic::mips_insert_b:
1355 case Intrinsic::mips_insert_h:
1356 case Intrinsic::mips_insert_w:
1357 return lowerMSAInsertIntr(Op, DAG, ISD::INSERT_VECTOR_ELT);
Daniel Sanders7a289d02013-09-23 12:02:46 +00001358 case Intrinsic::mips_ldi_b:
1359 case Intrinsic::mips_ldi_h:
1360 case Intrinsic::mips_ldi_w:
1361 case Intrinsic::mips_ldi_d:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001362 return lowerMSASplatImm(Op, 1, DAG);
Daniel Sanders3ce56622013-09-24 12:18:31 +00001363 case Intrinsic::mips_max_s_b:
1364 case Intrinsic::mips_max_s_h:
1365 case Intrinsic::mips_max_s_w:
1366 case Intrinsic::mips_max_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001367 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1368 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001369 case Intrinsic::mips_max_u_b:
1370 case Intrinsic::mips_max_u_h:
1371 case Intrinsic::mips_max_u_w:
1372 case Intrinsic::mips_max_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001373 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1374 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001375 case Intrinsic::mips_maxi_s_b:
1376 case Intrinsic::mips_maxi_s_h:
1377 case Intrinsic::mips_maxi_s_w:
1378 case Intrinsic::mips_maxi_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001379 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1380 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001381 case Intrinsic::mips_maxi_u_b:
1382 case Intrinsic::mips_maxi_u_h:
1383 case Intrinsic::mips_maxi_u_w:
1384 case Intrinsic::mips_maxi_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001385 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1386 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001387 case Intrinsic::mips_min_s_b:
1388 case Intrinsic::mips_min_s_h:
1389 case Intrinsic::mips_min_s_w:
1390 case Intrinsic::mips_min_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001391 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1392 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001393 case Intrinsic::mips_min_u_b:
1394 case Intrinsic::mips_min_u_h:
1395 case Intrinsic::mips_min_u_w:
1396 case Intrinsic::mips_min_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001397 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1398 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001399 case Intrinsic::mips_mini_s_b:
1400 case Intrinsic::mips_mini_s_h:
1401 case Intrinsic::mips_mini_s_w:
1402 case Intrinsic::mips_mini_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001403 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1404 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001405 case Intrinsic::mips_mini_u_b:
1406 case Intrinsic::mips_mini_u_h:
1407 case Intrinsic::mips_mini_u_w:
1408 case Intrinsic::mips_mini_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001409 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1410 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001411 case Intrinsic::mips_mulv_b:
1412 case Intrinsic::mips_mulv_h:
1413 case Intrinsic::mips_mulv_w:
1414 case Intrinsic::mips_mulv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001415 return DAG.getNode(ISD::MUL, DL, Op->getValueType(0), Op->getOperand(1),
1416 Op->getOperand(2));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001417 case Intrinsic::mips_nlzc_b:
1418 case Intrinsic::mips_nlzc_h:
1419 case Intrinsic::mips_nlzc_w:
1420 case Intrinsic::mips_nlzc_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001421 return DAG.getNode(ISD::CTLZ, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf7456c72013-09-23 13:22:24 +00001422 case Intrinsic::mips_nor_v: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001423 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1424 Op->getOperand(1), Op->getOperand(2));
1425 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersf7456c72013-09-23 13:22:24 +00001426 }
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001427 case Intrinsic::mips_nori_b: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001428 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1429 Op->getOperand(1),
1430 lowerMSASplatImm(Op, 2, DAG));
1431 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001432 }
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001433 case Intrinsic::mips_or_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001434 return DAG.getNode(ISD::OR, DL, Op->getValueType(0), Op->getOperand(1),
1435 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001436 case Intrinsic::mips_ori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001437 return DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1438 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001439 case Intrinsic::mips_pckev_b:
1440 case Intrinsic::mips_pckev_h:
1441 case Intrinsic::mips_pckev_w:
1442 case Intrinsic::mips_pckev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001443 return DAG.getNode(MipsISD::PCKEV, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001444 Op->getOperand(1), Op->getOperand(2));
1445 case Intrinsic::mips_pckod_b:
1446 case Intrinsic::mips_pckod_h:
1447 case Intrinsic::mips_pckod_w:
1448 case Intrinsic::mips_pckod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001449 return DAG.getNode(MipsISD::PCKOD, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001450 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders766cb692013-09-23 13:40:21 +00001451 case Intrinsic::mips_pcnt_b:
1452 case Intrinsic::mips_pcnt_h:
1453 case Intrinsic::mips_pcnt_w:
1454 case Intrinsic::mips_pcnt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001455 return DAG.getNode(ISD::CTPOP, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sanders26307182013-09-24 14:20:00 +00001456 case Intrinsic::mips_shf_b:
1457 case Intrinsic::mips_shf_h:
1458 case Intrinsic::mips_shf_w:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001459 return DAG.getNode(MipsISD::SHF, DL, Op->getValueType(0),
Daniel Sanders26307182013-09-24 14:20:00 +00001460 Op->getOperand(2), Op->getOperand(1));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001461 case Intrinsic::mips_sll_b:
1462 case Intrinsic::mips_sll_h:
1463 case Intrinsic::mips_sll_w:
1464 case Intrinsic::mips_sll_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001465 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0), Op->getOperand(1),
1466 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001467 case Intrinsic::mips_slli_b:
1468 case Intrinsic::mips_slli_h:
1469 case Intrinsic::mips_slli_w:
1470 case Intrinsic::mips_slli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001471 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0),
1472 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001473 case Intrinsic::mips_sra_b:
1474 case Intrinsic::mips_sra_h:
1475 case Intrinsic::mips_sra_w:
1476 case Intrinsic::mips_sra_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001477 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0), Op->getOperand(1),
1478 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001479 case Intrinsic::mips_srai_b:
1480 case Intrinsic::mips_srai_h:
1481 case Intrinsic::mips_srai_w:
1482 case Intrinsic::mips_srai_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001483 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0),
1484 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001485 case Intrinsic::mips_srl_b:
1486 case Intrinsic::mips_srl_h:
1487 case Intrinsic::mips_srl_w:
1488 case Intrinsic::mips_srl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001489 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0), Op->getOperand(1),
1490 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001491 case Intrinsic::mips_srli_b:
1492 case Intrinsic::mips_srli_h:
1493 case Intrinsic::mips_srli_w:
1494 case Intrinsic::mips_srli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001495 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0),
1496 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001497 case Intrinsic::mips_subv_b:
1498 case Intrinsic::mips_subv_h:
1499 case Intrinsic::mips_subv_w:
1500 case Intrinsic::mips_subv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001501 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0), Op->getOperand(1),
1502 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001503 case Intrinsic::mips_subvi_b:
1504 case Intrinsic::mips_subvi_h:
1505 case Intrinsic::mips_subvi_w:
1506 case Intrinsic::mips_subvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001507 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0),
1508 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanderse5087042013-09-24 14:02:15 +00001509 case Intrinsic::mips_vshf_b:
1510 case Intrinsic::mips_vshf_h:
1511 case Intrinsic::mips_vshf_w:
1512 case Intrinsic::mips_vshf_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001513 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
Daniel Sanderse5087042013-09-24 14:02:15 +00001514 Op->getOperand(1), Op->getOperand(2), Op->getOperand(3));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001515 case Intrinsic::mips_xor_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001516 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0), Op->getOperand(1),
1517 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001518 case Intrinsic::mips_xori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001519 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0),
1520 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001521 }
1522}
1523
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001524static SDValue lowerMSALoadIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1525 SDLoc DL(Op);
1526 SDValue ChainIn = Op->getOperand(0);
1527 SDValue Address = Op->getOperand(2);
1528 SDValue Offset = Op->getOperand(3);
1529 EVT ResTy = Op->getValueType(0);
1530 EVT PtrTy = Address->getValueType(0);
1531
1532 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1533
1534 return DAG.getLoad(ResTy, DL, ChainIn, Address, MachinePointerInfo(), false,
1535 false, false, 16);
1536}
1537
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001538SDValue MipsSETargetLowering::lowerINTRINSIC_W_CHAIN(SDValue Op,
1539 SelectionDAG &DAG) const {
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001540 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1541 switch (Intr) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001542 default:
1543 return SDValue();
1544 case Intrinsic::mips_extp:
1545 return lowerDSPIntr(Op, DAG, MipsISD::EXTP);
1546 case Intrinsic::mips_extpdp:
1547 return lowerDSPIntr(Op, DAG, MipsISD::EXTPDP);
1548 case Intrinsic::mips_extr_w:
1549 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_W);
1550 case Intrinsic::mips_extr_r_w:
1551 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_R_W);
1552 case Intrinsic::mips_extr_rs_w:
1553 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_RS_W);
1554 case Intrinsic::mips_extr_s_h:
1555 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_S_H);
1556 case Intrinsic::mips_mthlip:
1557 return lowerDSPIntr(Op, DAG, MipsISD::MTHLIP);
1558 case Intrinsic::mips_mulsaq_s_w_ph:
1559 return lowerDSPIntr(Op, DAG, MipsISD::MULSAQ_S_W_PH);
1560 case Intrinsic::mips_maq_s_w_phl:
1561 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHL);
1562 case Intrinsic::mips_maq_s_w_phr:
1563 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHR);
1564 case Intrinsic::mips_maq_sa_w_phl:
1565 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHL);
1566 case Intrinsic::mips_maq_sa_w_phr:
1567 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHR);
1568 case Intrinsic::mips_dpaq_s_w_ph:
1569 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_S_W_PH);
1570 case Intrinsic::mips_dpsq_s_w_ph:
1571 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_S_W_PH);
1572 case Intrinsic::mips_dpaq_sa_l_w:
1573 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_SA_L_W);
1574 case Intrinsic::mips_dpsq_sa_l_w:
1575 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_SA_L_W);
1576 case Intrinsic::mips_dpaqx_s_w_ph:
1577 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_S_W_PH);
1578 case Intrinsic::mips_dpaqx_sa_w_ph:
1579 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_SA_W_PH);
1580 case Intrinsic::mips_dpsqx_s_w_ph:
1581 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_S_W_PH);
1582 case Intrinsic::mips_dpsqx_sa_w_ph:
1583 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_SA_W_PH);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001584 case Intrinsic::mips_ld_b:
1585 case Intrinsic::mips_ld_h:
1586 case Intrinsic::mips_ld_w:
1587 case Intrinsic::mips_ld_d:
1588 case Intrinsic::mips_ldx_b:
1589 case Intrinsic::mips_ldx_h:
1590 case Intrinsic::mips_ldx_w:
1591 case Intrinsic::mips_ldx_d:
1592 return lowerMSALoadIntr(Op, DAG, Intr);
1593 }
1594}
1595
1596static SDValue lowerMSAStoreIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1597 SDLoc DL(Op);
1598 SDValue ChainIn = Op->getOperand(0);
1599 SDValue Value = Op->getOperand(2);
1600 SDValue Address = Op->getOperand(3);
1601 SDValue Offset = Op->getOperand(4);
1602 EVT PtrTy = Address->getValueType(0);
1603
1604 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1605
1606 return DAG.getStore(ChainIn, DL, Value, Address, MachinePointerInfo(), false,
1607 false, 16);
1608}
1609
1610SDValue MipsSETargetLowering::lowerINTRINSIC_VOID(SDValue Op,
1611 SelectionDAG &DAG) const {
1612 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1613 switch (Intr) {
1614 default:
1615 return SDValue();
1616 case Intrinsic::mips_st_b:
1617 case Intrinsic::mips_st_h:
1618 case Intrinsic::mips_st_w:
1619 case Intrinsic::mips_st_d:
1620 case Intrinsic::mips_stx_b:
1621 case Intrinsic::mips_stx_h:
1622 case Intrinsic::mips_stx_w:
1623 case Intrinsic::mips_stx_d:
Daniel Sandersce09d072013-08-28 12:14:50 +00001624 return lowerMSAStoreIntr(Op, DAG, Intr);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001625 }
1626}
1627
Daniel Sanders7a289d02013-09-23 12:02:46 +00001628/// \brief Check if the given BuildVectorSDNode is a splat.
1629/// This method currently relies on DAG nodes being reused when equivalent,
1630/// so it's possible for this to return false even when isConstantSplat returns
1631/// true.
1632static bool isSplatVector(const BuildVectorSDNode *N) {
Daniel Sanders7a289d02013-09-23 12:02:46 +00001633 unsigned int nOps = N->getNumOperands();
1634 assert(nOps > 1 && "isSplat has 0 or 1 sized build vector");
1635
1636 SDValue Operand0 = N->getOperand(0);
1637
1638 for (unsigned int i = 1; i < nOps; ++i) {
1639 if (N->getOperand(i) != Operand0)
1640 return false;
1641 }
1642
1643 return true;
1644}
1645
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001646// Lower ISD::EXTRACT_VECTOR_ELT into MipsISD::VEXTRACT_SEXT_ELT.
1647//
1648// The non-value bits resulting from ISD::EXTRACT_VECTOR_ELT are undefined. We
1649// choose to sign-extend but we could have equally chosen zero-extend. The
1650// DAGCombiner will fold any sign/zero extension of the ISD::EXTRACT_VECTOR_ELT
1651// result into this node later (possibly changing it to a zero-extend in the
1652// process).
1653SDValue MipsSETargetLowering::
1654lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
1655 SDLoc DL(Op);
1656 EVT ResTy = Op->getValueType(0);
1657 SDValue Op0 = Op->getOperand(0);
1658 SDValue Op1 = Op->getOperand(1);
1659 EVT EltTy = Op0->getValueType(0).getVectorElementType();
1660 return DAG.getNode(MipsISD::VEXTRACT_SEXT_ELT, DL, ResTy, Op0, Op1,
1661 DAG.getValueType(EltTy));
1662}
1663
Daniel Sandersf49dd822013-09-24 13:33:07 +00001664static bool isConstantOrUndef(const SDValue Op) {
1665 if (Op->getOpcode() == ISD::UNDEF)
1666 return true;
1667 if (dyn_cast<ConstantSDNode>(Op))
1668 return true;
1669 if (dyn_cast<ConstantFPSDNode>(Op))
1670 return true;
1671 return false;
1672}
1673
1674static bool isConstantOrUndefBUILD_VECTOR(const BuildVectorSDNode *Op) {
1675 for (unsigned i = 0; i < Op->getNumOperands(); ++i)
1676 if (isConstantOrUndef(Op->getOperand(i)))
1677 return true;
1678 return false;
1679}
1680
Daniel Sanders7a289d02013-09-23 12:02:46 +00001681// Lowers ISD::BUILD_VECTOR into appropriate SelectionDAG nodes for the
1682// backend.
1683//
1684// Lowers according to the following rules:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001685// - Constant splats are legal as-is as long as the SplatBitSize is a power of
1686// 2 less than or equal to 64 and the value fits into a signed 10-bit
1687// immediate
1688// - Constant splats are lowered to bitconverted BUILD_VECTORs if SplatBitSize
1689// is a power of 2 less than or equal to 64 and the value does not fit into a
1690// signed 10-bit immediate
1691// - Non-constant splats are legal as-is.
1692// - Non-constant non-splats are lowered to sequences of INSERT_VECTOR_ELT.
1693// - All others are illegal and must be expanded.
Daniel Sanders7a289d02013-09-23 12:02:46 +00001694SDValue MipsSETargetLowering::lowerBUILD_VECTOR(SDValue Op,
1695 SelectionDAG &DAG) const {
1696 BuildVectorSDNode *Node = cast<BuildVectorSDNode>(Op);
1697 EVT ResTy = Op->getValueType(0);
1698 SDLoc DL(Op);
1699 APInt SplatValue, SplatUndef;
1700 unsigned SplatBitSize;
1701 bool HasAnyUndefs;
1702
1703 if (!Subtarget->hasMSA() || !ResTy.is128BitVector())
1704 return SDValue();
1705
1706 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1707 HasAnyUndefs, 8,
Daniel Sandersf49dd822013-09-24 13:33:07 +00001708 !Subtarget->isLittle()) && SplatBitSize <= 64) {
1709 // We can only cope with 8, 16, 32, or 64-bit elements
1710 if (SplatBitSize != 8 && SplatBitSize != 16 && SplatBitSize != 32 &&
1711 SplatBitSize != 64)
1712 return SDValue();
1713
1714 // If the value fits into a simm10 then we can use ldi.[bhwd]
1715 if (SplatValue.isSignedIntN(10))
1716 return Op;
1717
1718 EVT ViaVecTy;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001719
1720 switch (SplatBitSize) {
1721 default:
1722 return SDValue();
Daniel Sandersf49dd822013-09-24 13:33:07 +00001723 case 8:
1724 ViaVecTy = MVT::v16i8;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001725 break;
1726 case 16:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001727 ViaVecTy = MVT::v8i16;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001728 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001729 case 32:
1730 ViaVecTy = MVT::v4i32;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001731 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001732 case 64:
1733 // There's no fill.d to fall back on for 64-bit values
1734 return SDValue();
Daniel Sanders7a289d02013-09-23 12:02:46 +00001735 }
1736
Daniel Sandersf49dd822013-09-24 13:33:07 +00001737 SmallVector<SDValue, 16> Ops;
1738 SDValue Constant = DAG.getConstant(SplatValue.sextOrSelf(32), MVT::i32);
1739
1740 for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i)
1741 Ops.push_back(Constant);
1742
1743 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Node), ViaVecTy,
1744 &Ops[0], Ops.size());
1745
1746 if (ViaVecTy != ResTy)
1747 Result = DAG.getNode(ISD::BITCAST, SDLoc(Node), ResTy, Result);
Daniel Sanders7a289d02013-09-23 12:02:46 +00001748
1749 return Result;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001750 } else if (isSplatVector(Node))
1751 return Op;
1752 else if (!isConstantOrUndefBUILD_VECTOR(Node)) {
Daniel Sandersf86622b2013-09-24 13:16:15 +00001753 // Use INSERT_VECTOR_ELT operations rather than expand to stores.
1754 // The resulting code is the same length as the expansion, but it doesn't
1755 // use memory operations
1756 EVT ResTy = Node->getValueType(0);
1757
1758 assert(ResTy.isVector());
1759
1760 unsigned NumElts = ResTy.getVectorNumElements();
1761 SDValue Vector = DAG.getUNDEF(ResTy);
1762 for (unsigned i = 0; i < NumElts; ++i) {
1763 Vector = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, ResTy, Vector,
1764 Node->getOperand(i),
1765 DAG.getConstant(i, MVT::i32));
1766 }
1767 return Vector;
1768 }
Daniel Sanders7a289d02013-09-23 12:02:46 +00001769
1770 return SDValue();
1771}
1772
Daniel Sanders26307182013-09-24 14:20:00 +00001773// Lower VECTOR_SHUFFLE into SHF (if possible).
1774//
1775// SHF splits the vector into blocks of four elements, then shuffles these
1776// elements according to a <4 x i2> constant (encoded as an integer immediate).
1777//
1778// It is therefore possible to lower into SHF when the mask takes the form:
1779// <a, b, c, d, a+4, b+4, c+4, d+4, a+8, b+8, c+8, d+8, ...>
1780// When undef's appear they are treated as if they were whatever value is
1781// necessary in order to fit the above form.
1782//
1783// For example:
1784// %2 = shufflevector <8 x i16> %0, <8 x i16> undef,
1785// <8 x i32> <i32 3, i32 2, i32 1, i32 0,
1786// i32 7, i32 6, i32 5, i32 4>
1787// is lowered to:
1788// (SHF_H $w0, $w1, 27)
1789// where the 27 comes from:
1790// 3 + (2 << 2) + (1 << 4) + (0 << 6)
1791static SDValue lowerVECTOR_SHUFFLE_SHF(SDValue Op, EVT ResTy,
1792 SmallVector<int, 16> Indices,
1793 SelectionDAG &DAG) {
1794 int SHFIndices[4] = { -1, -1, -1, -1 };
1795
1796 if (Indices.size() < 4)
1797 return SDValue();
1798
1799 for (unsigned i = 0; i < 4; ++i) {
1800 for (unsigned j = i; j < Indices.size(); j += 4) {
1801 int Idx = Indices[j];
1802
1803 // Convert from vector index to 4-element subvector index
1804 // If an index refers to an element outside of the subvector then give up
1805 if (Idx != -1) {
1806 Idx -= 4 * (j / 4);
1807 if (Idx < 0 || Idx >= 4)
1808 return SDValue();
1809 }
1810
1811 // If the mask has an undef, replace it with the current index.
1812 // Note that it might still be undef if the current index is also undef
1813 if (SHFIndices[i] == -1)
1814 SHFIndices[i] = Idx;
1815
1816 // Check that non-undef values are the same as in the mask. If they
1817 // aren't then give up
1818 if (!(Idx == -1 || Idx == SHFIndices[i]))
1819 return SDValue();
1820 }
1821 }
1822
1823 // Calculate the immediate. Replace any remaining undefs with zero
1824 APInt Imm(32, 0);
1825 for (int i = 3; i >= 0; --i) {
1826 int Idx = SHFIndices[i];
1827
1828 if (Idx == -1)
1829 Idx = 0;
1830
1831 Imm <<= 2;
1832 Imm |= Idx & 0x3;
1833 }
1834
1835 return DAG.getNode(MipsISD::SHF, SDLoc(Op), ResTy,
1836 DAG.getConstant(Imm, MVT::i32), Op->getOperand(0));
1837}
1838
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001839// Lower VECTOR_SHUFFLE into ILVEV (if possible).
1840//
1841// ILVEV interleaves the even elements from each vector.
1842//
1843// It is possible to lower into ILVEV when the mask takes the form:
1844// <0, n, 2, n+2, 4, n+4, ...>
1845// where n is the number of elements in the vector.
1846//
1847// When undef's appear in the mask they are treated as if they were whatever
1848// value is necessary in order to fit the above form.
1849static SDValue lowerVECTOR_SHUFFLE_ILVEV(SDValue Op, EVT ResTy,
1850 SmallVector<int, 16> Indices,
1851 SelectionDAG &DAG) {
1852 assert ((Indices.size() % 2) == 0);
1853 int WsIdx = 0;
1854 int WtIdx = ResTy.getVectorNumElements();
1855
1856 for (unsigned i = 0; i < Indices.size(); i += 2) {
1857 if (Indices[i] != -1 && Indices[i] != WsIdx)
1858 return SDValue();
1859 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1860 return SDValue();
1861 WsIdx += 2;
1862 WtIdx += 2;
1863 }
1864
1865 return DAG.getNode(MipsISD::ILVEV, SDLoc(Op), ResTy, Op->getOperand(0),
1866 Op->getOperand(1));
1867}
1868
1869// Lower VECTOR_SHUFFLE into ILVOD (if possible).
1870//
1871// ILVOD interleaves the odd elements from each vector.
1872//
1873// It is possible to lower into ILVOD when the mask takes the form:
1874// <1, n+1, 3, n+3, 5, n+5, ...>
1875// where n is the number of elements in the vector.
1876//
1877// When undef's appear in the mask they are treated as if they were whatever
1878// value is necessary in order to fit the above form.
1879static SDValue lowerVECTOR_SHUFFLE_ILVOD(SDValue Op, EVT ResTy,
1880 SmallVector<int, 16> Indices,
1881 SelectionDAG &DAG) {
1882 assert ((Indices.size() % 2) == 0);
1883 int WsIdx = 1;
1884 int WtIdx = ResTy.getVectorNumElements() + 1;
1885
1886 for (unsigned i = 0; i < Indices.size(); i += 2) {
1887 if (Indices[i] != -1 && Indices[i] != WsIdx)
1888 return SDValue();
1889 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1890 return SDValue();
1891 WsIdx += 2;
1892 WtIdx += 2;
1893 }
1894
1895 return DAG.getNode(MipsISD::ILVOD, SDLoc(Op), ResTy, Op->getOperand(0),
1896 Op->getOperand(1));
1897}
1898
1899// Lower VECTOR_SHUFFLE into ILVL (if possible).
1900//
1901// ILVL interleaves consecutive elements from the left half of each vector.
1902//
1903// It is possible to lower into ILVL when the mask takes the form:
1904// <0, n, 1, n+1, 2, n+2, ...>
1905// where n is the number of elements in the vector.
1906//
1907// When undef's appear in the mask they are treated as if they were whatever
1908// value is necessary in order to fit the above form.
1909static SDValue lowerVECTOR_SHUFFLE_ILVL(SDValue Op, EVT ResTy,
1910 SmallVector<int, 16> Indices,
1911 SelectionDAG &DAG) {
1912 assert ((Indices.size() % 2) == 0);
1913 int WsIdx = 0;
1914 int WtIdx = ResTy.getVectorNumElements();
1915
1916 for (unsigned i = 0; i < Indices.size(); i += 2) {
1917 if (Indices[i] != -1 && Indices[i] != WsIdx)
1918 return SDValue();
1919 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1920 return SDValue();
1921 WsIdx ++;
1922 WtIdx ++;
1923 }
1924
1925 return DAG.getNode(MipsISD::ILVL, SDLoc(Op), ResTy, Op->getOperand(0),
1926 Op->getOperand(1));
1927}
1928
1929// Lower VECTOR_SHUFFLE into ILVR (if possible).
1930//
1931// ILVR interleaves consecutive elements from the right half of each vector.
1932//
1933// It is possible to lower into ILVR when the mask takes the form:
1934// <x, n+x, x+1, n+x+1, x+2, n+x+2, ...>
1935// where n is the number of elements in the vector and x is half n.
1936//
1937// When undef's appear in the mask they are treated as if they were whatever
1938// value is necessary in order to fit the above form.
1939static SDValue lowerVECTOR_SHUFFLE_ILVR(SDValue Op, EVT ResTy,
1940 SmallVector<int, 16> Indices,
1941 SelectionDAG &DAG) {
1942 assert ((Indices.size() % 2) == 0);
1943 unsigned NumElts = ResTy.getVectorNumElements();
1944 int WsIdx = NumElts / 2;
1945 int WtIdx = NumElts + NumElts / 2;
1946
1947 for (unsigned i = 0; i < Indices.size(); i += 2) {
1948 if (Indices[i] != -1 && Indices[i] != WsIdx)
1949 return SDValue();
1950 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1951 return SDValue();
1952 WsIdx ++;
1953 WtIdx ++;
1954 }
1955
1956 return DAG.getNode(MipsISD::ILVR, SDLoc(Op), ResTy, Op->getOperand(0),
1957 Op->getOperand(1));
1958}
1959
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001960// Lower VECTOR_SHUFFLE into PCKEV (if possible).
1961//
1962// PCKEV copies the even elements of each vector into the result vector.
1963//
1964// It is possible to lower into PCKEV when the mask takes the form:
1965// <0, 2, 4, ..., n, n+2, n+4, ...>
1966// where n is the number of elements in the vector.
1967//
1968// When undef's appear in the mask they are treated as if they were whatever
1969// value is necessary in order to fit the above form.
1970static SDValue lowerVECTOR_SHUFFLE_PCKEV(SDValue Op, EVT ResTy,
1971 SmallVector<int, 16> Indices,
1972 SelectionDAG &DAG) {
1973 assert ((Indices.size() % 2) == 0);
1974 int Idx = 0;
1975
1976 for (unsigned i = 0; i < Indices.size(); ++i) {
1977 if (Indices[i] != -1 && Indices[i] != Idx)
1978 return SDValue();
1979 Idx += 2;
1980 }
1981
1982 return DAG.getNode(MipsISD::PCKEV, SDLoc(Op), ResTy, Op->getOperand(0),
1983 Op->getOperand(1));
1984}
1985
1986// Lower VECTOR_SHUFFLE into PCKOD (if possible).
1987//
1988// PCKOD copies the odd elements of each vector into the result vector.
1989//
1990// It is possible to lower into PCKOD when the mask takes the form:
1991// <1, 3, 5, ..., n+1, n+3, n+5, ...>
1992// where n is the number of elements in the vector.
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_PCKOD(SDValue Op, EVT ResTy,
1997 SmallVector<int, 16> Indices,
1998 SelectionDAG &DAG) {
1999 assert ((Indices.size() % 2) == 0);
2000 int Idx = 1;
2001
2002 for (unsigned i = 0; i < Indices.size(); ++i) {
2003 if (Indices[i] != -1 && Indices[i] != Idx)
2004 return SDValue();
2005 Idx += 2;
2006 }
2007
2008 return DAG.getNode(MipsISD::PCKOD, SDLoc(Op), ResTy, Op->getOperand(0),
2009 Op->getOperand(1));
2010}
2011
Daniel Sanderse5087042013-09-24 14:02:15 +00002012// Lower VECTOR_SHUFFLE into VSHF.
2013//
2014// This mostly consists of converting the shuffle indices in Indices into a
2015// BUILD_VECTOR and adding it as an operand to the resulting VSHF. There is
2016// also code to eliminate unused operands of the VECTOR_SHUFFLE. For example,
2017// if the type is v8i16 and all the indices are less than 8 then the second
2018// operand is unused and can be replaced with anything. We choose to replace it
2019// with the used operand since this reduces the number of instructions overall.
2020static SDValue lowerVECTOR_SHUFFLE_VSHF(SDValue Op, EVT ResTy,
2021 SmallVector<int, 16> Indices,
2022 SelectionDAG &DAG) {
2023 SmallVector<SDValue, 16> Ops;
2024 SDValue Op0;
2025 SDValue Op1;
2026 EVT MaskVecTy = ResTy.changeVectorElementTypeToInteger();
2027 EVT MaskEltTy = MaskVecTy.getVectorElementType();
2028 bool Using1stVec = false;
2029 bool Using2ndVec = false;
2030 SDLoc DL(Op);
2031 int ResTyNumElts = ResTy.getVectorNumElements();
2032
2033 for (int i = 0; i < ResTyNumElts; ++i) {
2034 // Idx == -1 means UNDEF
2035 int Idx = Indices[i];
2036
2037 if (0 <= Idx && Idx < ResTyNumElts)
2038 Using1stVec = true;
2039 if (ResTyNumElts <= Idx && Idx < ResTyNumElts * 2)
2040 Using2ndVec = true;
2041 }
2042
2043 for (SmallVector<int, 16>::iterator I = Indices.begin(); I != Indices.end();
2044 ++I)
2045 Ops.push_back(DAG.getTargetConstant(*I, MaskEltTy));
2046
2047 SDValue MaskVec = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVecTy, &Ops[0],
2048 Ops.size());
2049
2050 if (Using1stVec && Using2ndVec) {
2051 Op0 = Op->getOperand(0);
2052 Op1 = Op->getOperand(1);
2053 } else if (Using1stVec)
2054 Op0 = Op1 = Op->getOperand(0);
2055 else if (Using2ndVec)
2056 Op0 = Op1 = Op->getOperand(1);
2057 else
2058 llvm_unreachable("shuffle vector mask references neither vector operand?");
2059
2060 return DAG.getNode(MipsISD::VSHF, DL, ResTy, MaskVec, Op0, Op1);
2061}
2062
2063// Lower VECTOR_SHUFFLE into one of a number of instructions depending on the
2064// indices in the shuffle.
2065SDValue MipsSETargetLowering::lowerVECTOR_SHUFFLE(SDValue Op,
2066 SelectionDAG &DAG) const {
2067 ShuffleVectorSDNode *Node = cast<ShuffleVectorSDNode>(Op);
2068 EVT ResTy = Op->getValueType(0);
2069
2070 if (!ResTy.is128BitVector())
2071 return SDValue();
2072
2073 int ResTyNumElts = ResTy.getVectorNumElements();
2074 SmallVector<int, 16> Indices;
2075
2076 for (int i = 0; i < ResTyNumElts; ++i)
2077 Indices.push_back(Node->getMaskElt(i));
2078
Daniel Sanders26307182013-09-24 14:20:00 +00002079 SDValue Result = lowerVECTOR_SHUFFLE_SHF(Op, ResTy, Indices, DAG);
2080 if (Result.getNode())
2081 return Result;
Daniel Sanders2ed228b2013-09-24 14:36:12 +00002082 Result = lowerVECTOR_SHUFFLE_ILVEV(Op, ResTy, Indices, DAG);
2083 if (Result.getNode())
2084 return Result;
2085 Result = lowerVECTOR_SHUFFLE_ILVOD(Op, ResTy, Indices, DAG);
2086 if (Result.getNode())
2087 return Result;
2088 Result = lowerVECTOR_SHUFFLE_ILVL(Op, ResTy, Indices, DAG);
2089 if (Result.getNode())
2090 return Result;
2091 Result = lowerVECTOR_SHUFFLE_ILVR(Op, ResTy, Indices, DAG);
2092 if (Result.getNode())
2093 return Result;
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002094 Result = lowerVECTOR_SHUFFLE_PCKEV(Op, ResTy, Indices, DAG);
2095 if (Result.getNode())
2096 return Result;
2097 Result = lowerVECTOR_SHUFFLE_PCKOD(Op, ResTy, Indices, DAG);
2098 if (Result.getNode())
2099 return Result;
Daniel Sanderse5087042013-09-24 14:02:15 +00002100 return lowerVECTOR_SHUFFLE_VSHF(Op, ResTy, Indices, DAG);
2101}
2102
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002103MachineBasicBlock * MipsSETargetLowering::
2104emitBPOSGE32(MachineInstr *MI, MachineBasicBlock *BB) const{
2105 // $bb:
2106 // bposge32_pseudo $vr0
2107 // =>
2108 // $bb:
2109 // bposge32 $tbb
2110 // $fbb:
2111 // li $vr2, 0
2112 // b $sink
2113 // $tbb:
2114 // li $vr1, 1
2115 // $sink:
2116 // $vr0 = phi($vr2, $fbb, $vr1, $tbb)
2117
2118 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2119 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +00002120 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002121 DebugLoc DL = MI->getDebugLoc();
2122 const BasicBlock *LLVM_BB = BB->getBasicBlock();
2123 MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2124 MachineFunction *F = BB->getParent();
2125 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2126 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2127 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2128 F->insert(It, FBB);
2129 F->insert(It, TBB);
2130 F->insert(It, Sink);
2131
2132 // Transfer the remainder of BB and its successor edges to Sink.
2133 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2134 BB->end());
2135 Sink->transferSuccessorsAndUpdatePHIs(BB);
2136
2137 // Add successors.
2138 BB->addSuccessor(FBB);
2139 BB->addSuccessor(TBB);
2140 FBB->addSuccessor(Sink);
2141 TBB->addSuccessor(Sink);
2142
2143 // Insert the real bposge32 instruction to $BB.
2144 BuildMI(BB, DL, TII->get(Mips::BPOSGE32)).addMBB(TBB);
2145
2146 // Fill $FBB.
2147 unsigned VR2 = RegInfo.createVirtualRegister(RC);
2148 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), VR2)
2149 .addReg(Mips::ZERO).addImm(0);
2150 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2151
2152 // Fill $TBB.
2153 unsigned VR1 = RegInfo.createVirtualRegister(RC);
2154 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), VR1)
2155 .addReg(Mips::ZERO).addImm(1);
2156
2157 // Insert phi function to $Sink.
2158 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2159 MI->getOperand(0).getReg())
2160 .addReg(VR2).addMBB(FBB).addReg(VR1).addMBB(TBB);
2161
2162 MI->eraseFromParent(); // The pseudo instruction is gone now.
2163 return Sink;
2164}
Daniel Sandersce09d072013-08-28 12:14:50 +00002165
2166MachineBasicBlock * MipsSETargetLowering::
2167emitMSACBranchPseudo(MachineInstr *MI, MachineBasicBlock *BB,
2168 unsigned BranchOp) const{
2169 // $bb:
2170 // vany_nonzero $rd, $ws
2171 // =>
2172 // $bb:
2173 // bnz.b $ws, $tbb
2174 // b $fbb
2175 // $fbb:
2176 // li $rd1, 0
2177 // b $sink
2178 // $tbb:
2179 // li $rd2, 1
2180 // $sink:
2181 // $rd = phi($rd1, $fbb, $rd2, $tbb)
2182
2183 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2184 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2185 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
2186 DebugLoc DL = MI->getDebugLoc();
2187 const BasicBlock *LLVM_BB = BB->getBasicBlock();
2188 MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2189 MachineFunction *F = BB->getParent();
2190 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2191 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2192 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2193 F->insert(It, FBB);
2194 F->insert(It, TBB);
2195 F->insert(It, Sink);
2196
2197 // Transfer the remainder of BB and its successor edges to Sink.
2198 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2199 BB->end());
2200 Sink->transferSuccessorsAndUpdatePHIs(BB);
2201
2202 // Add successors.
2203 BB->addSuccessor(FBB);
2204 BB->addSuccessor(TBB);
2205 FBB->addSuccessor(Sink);
2206 TBB->addSuccessor(Sink);
2207
2208 // Insert the real bnz.b instruction to $BB.
2209 BuildMI(BB, DL, TII->get(BranchOp))
2210 .addReg(MI->getOperand(1).getReg())
2211 .addMBB(TBB);
2212
2213 // Fill $FBB.
2214 unsigned RD1 = RegInfo.createVirtualRegister(RC);
2215 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), RD1)
2216 .addReg(Mips::ZERO).addImm(0);
2217 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2218
2219 // Fill $TBB.
2220 unsigned RD2 = RegInfo.createVirtualRegister(RC);
2221 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), RD2)
2222 .addReg(Mips::ZERO).addImm(1);
2223
2224 // Insert phi function to $Sink.
2225 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2226 MI->getOperand(0).getReg())
2227 .addReg(RD1).addMBB(FBB).addReg(RD2).addMBB(TBB);
2228
2229 MI->eraseFromParent(); // The pseudo instruction is gone now.
2230 return Sink;
2231}