blob: b05ab343413f9a2f4bea85d8cc538af058829c28 [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 Sandersa5150702013-09-27 12:31:32 +0000210 setOperationAction(ISD::INSERT_VECTOR_ELT, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000211
212 if (Ty != MVT::v8f16) {
Daniel Sanders4f3ff1b2013-09-24 13:02:08 +0000213 setOperationAction(ISD::FABS, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000214 setOperationAction(ISD::FADD, Ty, Legal);
215 setOperationAction(ISD::FDIV, Ty, Legal);
216 setOperationAction(ISD::FLOG2, Ty, Legal);
217 setOperationAction(ISD::FMUL, Ty, Legal);
218 setOperationAction(ISD::FRINT, Ty, Legal);
219 setOperationAction(ISD::FSQRT, Ty, Legal);
220 setOperationAction(ISD::FSUB, Ty, Legal);
Daniel Sanderse1d24352013-09-24 12:04:44 +0000221 setOperationAction(ISD::VSELECT, Ty, Legal);
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000222
223 setOperationAction(ISD::SETCC, Ty, Legal);
224 setCondCodeAction(ISD::SETOGE, Ty, Expand);
225 setCondCodeAction(ISD::SETOGT, Ty, Expand);
226 setCondCodeAction(ISD::SETUGE, Ty, Expand);
227 setCondCodeAction(ISD::SETUGT, Ty, Expand);
228 setCondCodeAction(ISD::SETGE, Ty, Expand);
229 setCondCodeAction(ISD::SETGT, Ty, Expand);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000230 }
Jack Carterbabdcc82013-08-15 12:24:57 +0000231}
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000232
233bool
234MipsSETargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
235 MVT::SimpleValueType SVT = VT.getSimpleVT().SimpleTy;
236
237 switch (SVT) {
238 case MVT::i64:
239 case MVT::i32:
240 if (Fast)
241 *Fast = true;
242 return true;
243 default:
244 return false;
245 }
246}
247
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000248SDValue MipsSETargetLowering::LowerOperation(SDValue Op,
249 SelectionDAG &DAG) const {
250 switch(Op.getOpcode()) {
Akira Hatanaka63791212013-09-07 00:52:30 +0000251 case ISD::LOAD: return lowerLOAD(Op, DAG);
252 case ISD::STORE: return lowerSTORE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000253 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG);
254 case ISD::UMUL_LOHI: return lowerMulDiv(Op, MipsISD::Multu, true, true, DAG);
255 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG);
256 case ISD::MULHU: return lowerMulDiv(Op, MipsISD::Multu, false, true, DAG);
257 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG);
258 case ISD::SDIVREM: return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG);
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000259 case ISD::UDIVREM: return lowerMulDiv(Op, MipsISD::DivRemU, true, true,
260 DAG);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000261 case ISD::INTRINSIC_WO_CHAIN: return lowerINTRINSIC_WO_CHAIN(Op, DAG);
262 case ISD::INTRINSIC_W_CHAIN: return lowerINTRINSIC_W_CHAIN(Op, DAG);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +0000263 case ISD::INTRINSIC_VOID: return lowerINTRINSIC_VOID(Op, DAG);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000264 case ISD::EXTRACT_VECTOR_ELT: return lowerEXTRACT_VECTOR_ELT(Op, DAG);
Daniel Sanders7a289d02013-09-23 12:02:46 +0000265 case ISD::BUILD_VECTOR: return lowerBUILD_VECTOR(Op, DAG);
Daniel Sanderse5087042013-09-24 14:02:15 +0000266 case ISD::VECTOR_SHUFFLE: return lowerVECTOR_SHUFFLE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000267 }
268
269 return MipsTargetLowering::LowerOperation(Op, DAG);
270}
271
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000272// selectMADD -
273// Transforms a subgraph in CurDAG if the following pattern is found:
274// (addc multLo, Lo0), (adde multHi, Hi0),
275// where,
276// multHi/Lo: product of multiplication
277// Lo0: initial value of Lo register
278// Hi0: initial value of Hi register
279// Return true if pattern matching was successful.
280static bool selectMADD(SDNode *ADDENode, SelectionDAG *CurDAG) {
281 // ADDENode's second operand must be a flag output of an ADDC node in order
282 // for the matching to be successful.
283 SDNode *ADDCNode = ADDENode->getOperand(2).getNode();
284
285 if (ADDCNode->getOpcode() != ISD::ADDC)
286 return false;
287
288 SDValue MultHi = ADDENode->getOperand(0);
289 SDValue MultLo = ADDCNode->getOperand(0);
290 SDNode *MultNode = MultHi.getNode();
291 unsigned MultOpc = MultHi.getOpcode();
292
293 // MultHi and MultLo must be generated by the same node,
294 if (MultLo.getNode() != MultNode)
295 return false;
296
297 // and it must be a multiplication.
298 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
299 return false;
300
301 // MultLo amd MultHi must be the first and second output of MultNode
302 // respectively.
303 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
304 return false;
305
306 // Transform this to a MADD only if ADDENode and ADDCNode are the only users
307 // of the values of MultNode, in which case MultNode will be removed in later
308 // phases.
309 // If there exist users other than ADDENode or ADDCNode, this function returns
310 // here, which will result in MultNode being mapped to a single MULT
311 // instruction node rather than a pair of MULT and MADD instructions being
312 // produced.
313 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
314 return false;
315
Andrew Trickef9de2a2013-05-25 02:42:55 +0000316 SDLoc DL(ADDENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000317
318 // Initialize accumulator.
319 SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
320 ADDCNode->getOperand(1),
321 ADDENode->getOperand(1));
322
323 // create MipsMAdd(u) node
324 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MAddu : MipsISD::MAdd;
325
326 SDValue MAdd = CurDAG->getNode(MultOpc, DL, MVT::Untyped,
327 MultNode->getOperand(0),// Factor 0
328 MultNode->getOperand(1),// Factor 1
329 ACCIn);
330
331 // replace uses of adde and addc here
332 if (!SDValue(ADDCNode, 0).use_empty()) {
333 SDValue LoIdx = CurDAG->getConstant(Mips::sub_lo, MVT::i32);
334 SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MAdd,
335 LoIdx);
336 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDCNode, 0), LoOut);
337 }
338 if (!SDValue(ADDENode, 0).use_empty()) {
339 SDValue HiIdx = CurDAG->getConstant(Mips::sub_hi, MVT::i32);
340 SDValue HiOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MAdd,
341 HiIdx);
342 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDENode, 0), HiOut);
343 }
344
345 return true;
346}
347
348// selectMSUB -
349// Transforms a subgraph in CurDAG if the following pattern is found:
350// (addc Lo0, multLo), (sube Hi0, multHi),
351// where,
352// multHi/Lo: product of multiplication
353// Lo0: initial value of Lo register
354// Hi0: initial value of Hi register
355// Return true if pattern matching was successful.
356static bool selectMSUB(SDNode *SUBENode, SelectionDAG *CurDAG) {
357 // SUBENode's second operand must be a flag output of an SUBC node in order
358 // for the matching to be successful.
359 SDNode *SUBCNode = SUBENode->getOperand(2).getNode();
360
361 if (SUBCNode->getOpcode() != ISD::SUBC)
362 return false;
363
364 SDValue MultHi = SUBENode->getOperand(1);
365 SDValue MultLo = SUBCNode->getOperand(1);
366 SDNode *MultNode = MultHi.getNode();
367 unsigned MultOpc = MultHi.getOpcode();
368
369 // MultHi and MultLo must be generated by the same node,
370 if (MultLo.getNode() != MultNode)
371 return false;
372
373 // and it must be a multiplication.
374 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
375 return false;
376
377 // MultLo amd MultHi must be the first and second output of MultNode
378 // respectively.
379 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
380 return false;
381
382 // Transform this to a MSUB only if SUBENode and SUBCNode are the only users
383 // of the values of MultNode, in which case MultNode will be removed in later
384 // phases.
385 // If there exist users other than SUBENode or SUBCNode, this function returns
386 // here, which will result in MultNode being mapped to a single MULT
387 // instruction node rather than a pair of MULT and MSUB instructions being
388 // produced.
389 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
390 return false;
391
Andrew Trickef9de2a2013-05-25 02:42:55 +0000392 SDLoc DL(SUBENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000393
394 // Initialize accumulator.
395 SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
396 SUBCNode->getOperand(0),
397 SUBENode->getOperand(0));
398
399 // create MipsSub(u) node
400 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MSubu : MipsISD::MSub;
401
402 SDValue MSub = CurDAG->getNode(MultOpc, DL, MVT::Glue,
403 MultNode->getOperand(0),// Factor 0
404 MultNode->getOperand(1),// Factor 1
405 ACCIn);
406
407 // replace uses of sube and subc here
408 if (!SDValue(SUBCNode, 0).use_empty()) {
409 SDValue LoIdx = CurDAG->getConstant(Mips::sub_lo, MVT::i32);
410 SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MSub,
411 LoIdx);
412 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBCNode, 0), LoOut);
413 }
414 if (!SDValue(SUBENode, 0).use_empty()) {
415 SDValue HiIdx = CurDAG->getConstant(Mips::sub_hi, MVT::i32);
416 SDValue HiOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MSub,
417 HiIdx);
418 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBENode, 0), HiOut);
419 }
420
421 return true;
422}
423
424static SDValue performADDECombine(SDNode *N, SelectionDAG &DAG,
425 TargetLowering::DAGCombinerInfo &DCI,
426 const MipsSubtarget *Subtarget) {
427 if (DCI.isBeforeLegalize())
428 return SDValue();
429
430 if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
431 selectMADD(N, &DAG))
432 return SDValue(N, 0);
433
434 return SDValue();
435}
436
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000437// Fold zero extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT
438//
439// Performs the following transformations:
440// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to zero extension if its
441// sign/zero-extension is completely overwritten by the new one performed by
442// the ISD::AND.
443// - Removes redundant zero extensions performed by an ISD::AND.
444static SDValue performANDCombine(SDNode *N, SelectionDAG &DAG,
445 TargetLowering::DAGCombinerInfo &DCI,
446 const MipsSubtarget *Subtarget) {
447 if (!Subtarget->hasMSA())
448 return SDValue();
449
450 SDValue Op0 = N->getOperand(0);
451 SDValue Op1 = N->getOperand(1);
452 unsigned Op0Opcode = Op0->getOpcode();
453
454 // (and (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d)
455 // where $d + 1 == 2^n and n == 32
456 // or $d + 1 == 2^n and n <= 32 and ZExt
457 // -> (MipsVExtractZExt $a, $b, $c)
458 if (Op0Opcode == MipsISD::VEXTRACT_SEXT_ELT ||
459 Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT) {
460 ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(Op1);
461
462 if (!Mask)
463 return SDValue();
464
465 int32_t Log2IfPositive = (Mask->getAPIntValue() + 1).exactLogBase2();
466
467 if (Log2IfPositive <= 0)
468 return SDValue(); // Mask+1 is not a power of 2
469
470 SDValue Op0Op2 = Op0->getOperand(2);
471 EVT ExtendTy = cast<VTSDNode>(Op0Op2)->getVT();
472 unsigned ExtendTySize = ExtendTy.getSizeInBits();
473 unsigned Log2 = Log2IfPositive;
474
475 if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT && Log2 >= ExtendTySize) ||
476 Log2 == ExtendTySize) {
477 SDValue Ops[] = { Op0->getOperand(0), Op0->getOperand(1), Op0Op2 };
478 DAG.MorphNodeTo(Op0.getNode(), MipsISD::VEXTRACT_ZEXT_ELT,
479 Op0->getVTList(), Ops, Op0->getNumOperands());
480 return Op0;
481 }
482 }
483
484 return SDValue();
485}
486
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000487static SDValue performSUBECombine(SDNode *N, SelectionDAG &DAG,
488 TargetLowering::DAGCombinerInfo &DCI,
489 const MipsSubtarget *Subtarget) {
490 if (DCI.isBeforeLegalize())
491 return SDValue();
492
493 if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
494 selectMSUB(N, &DAG))
495 return SDValue(N, 0);
496
497 return SDValue();
498}
499
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000500static SDValue genConstMult(SDValue X, uint64_t C, SDLoc DL, EVT VT,
501 EVT ShiftTy, SelectionDAG &DAG) {
502 // Clear the upper (64 - VT.sizeInBits) bits.
503 C &= ((uint64_t)-1) >> (64 - VT.getSizeInBits());
504
505 // Return 0.
506 if (C == 0)
507 return DAG.getConstant(0, VT);
508
509 // Return x.
510 if (C == 1)
511 return X;
512
513 // If c is power of 2, return (shl x, log2(c)).
514 if (isPowerOf2_64(C))
515 return DAG.getNode(ISD::SHL, DL, VT, X,
516 DAG.getConstant(Log2_64(C), ShiftTy));
517
518 unsigned Log2Ceil = Log2_64_Ceil(C);
519 uint64_t Floor = 1LL << Log2_64(C);
520 uint64_t Ceil = Log2Ceil == 64 ? 0LL : 1LL << Log2Ceil;
521
522 // If |c - floor_c| <= |c - ceil_c|,
523 // where floor_c = pow(2, floor(log2(c))) and ceil_c = pow(2, ceil(log2(c))),
524 // return (add constMult(x, floor_c), constMult(x, c - floor_c)).
525 if (C - Floor <= Ceil - C) {
526 SDValue Op0 = genConstMult(X, Floor, DL, VT, ShiftTy, DAG);
527 SDValue Op1 = genConstMult(X, C - Floor, DL, VT, ShiftTy, DAG);
528 return DAG.getNode(ISD::ADD, DL, VT, Op0, Op1);
529 }
530
531 // If |c - floor_c| > |c - ceil_c|,
532 // return (sub constMult(x, ceil_c), constMult(x, ceil_c - c)).
533 SDValue Op0 = genConstMult(X, Ceil, DL, VT, ShiftTy, DAG);
534 SDValue Op1 = genConstMult(X, Ceil - C, DL, VT, ShiftTy, DAG);
535 return DAG.getNode(ISD::SUB, DL, VT, Op0, Op1);
536}
537
538static SDValue performMULCombine(SDNode *N, SelectionDAG &DAG,
539 const TargetLowering::DAGCombinerInfo &DCI,
540 const MipsSETargetLowering *TL) {
541 EVT VT = N->getValueType(0);
542
543 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
544 if (!VT.isVector())
545 return genConstMult(N->getOperand(0), C->getZExtValue(), SDLoc(N),
546 VT, TL->getScalarShiftAmountTy(VT), DAG);
547
548 return SDValue(N, 0);
549}
550
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000551static SDValue performDSPShiftCombine(unsigned Opc, SDNode *N, EVT Ty,
552 SelectionDAG &DAG,
553 const MipsSubtarget *Subtarget) {
554 // See if this is a vector splat immediate node.
555 APInt SplatValue, SplatUndef;
556 unsigned SplatBitSize;
557 bool HasAnyUndefs;
558 unsigned EltSize = Ty.getVectorElementType().getSizeInBits();
559 BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
560
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000561 if (!BV ||
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000562 !BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
Akira Hatanakae9d0b312013-04-23 18:09:42 +0000563 EltSize, !Subtarget->isLittle()) ||
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000564 (SplatBitSize != EltSize) ||
Akira Hatanakae9d0b312013-04-23 18:09:42 +0000565 (SplatValue.getZExtValue() >= EltSize))
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000566 return SDValue();
567
Andrew Trickef9de2a2013-05-25 02:42:55 +0000568 return DAG.getNode(Opc, SDLoc(N), Ty, N->getOperand(0),
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000569 DAG.getConstant(SplatValue.getZExtValue(), MVT::i32));
570}
571
572static SDValue performSHLCombine(SDNode *N, SelectionDAG &DAG,
573 TargetLowering::DAGCombinerInfo &DCI,
574 const MipsSubtarget *Subtarget) {
575 EVT Ty = N->getValueType(0);
576
577 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
578 return SDValue();
579
580 return performDSPShiftCombine(MipsISD::SHLL_DSP, N, Ty, DAG, Subtarget);
581}
582
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000583// Fold sign-extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT for MSA and fold
584// constant splats into MipsISD::SHRA_DSP for DSPr2.
585//
586// Performs the following transformations:
587// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to sign extension if its
588// sign/zero-extension is completely overwritten by the new one performed by
589// the ISD::SRA and ISD::SHL nodes.
590// - Removes redundant sign extensions performed by an ISD::SRA and ISD::SHL
591// sequence.
592//
593// See performDSPShiftCombine for more information about the transformation
594// used for DSPr2.
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000595static SDValue performSRACombine(SDNode *N, SelectionDAG &DAG,
596 TargetLowering::DAGCombinerInfo &DCI,
597 const MipsSubtarget *Subtarget) {
598 EVT Ty = N->getValueType(0);
599
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000600 if (Subtarget->hasMSA()) {
601 SDValue Op0 = N->getOperand(0);
602 SDValue Op1 = N->getOperand(1);
603
604 // (sra (shl (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d), imm:$d)
605 // where $d + sizeof($c) == 32
606 // or $d + sizeof($c) <= 32 and SExt
607 // -> (MipsVExtractSExt $a, $b, $c)
608 if (Op0->getOpcode() == ISD::SHL && Op1 == Op0->getOperand(1)) {
609 SDValue Op0Op0 = Op0->getOperand(0);
610 ConstantSDNode *ShAmount = dyn_cast<ConstantSDNode>(Op1);
611
612 if (!ShAmount)
613 return SDValue();
614
Daniel Sandersf4f1a872013-09-27 09:25:29 +0000615 if (Op0Op0->getOpcode() != MipsISD::VEXTRACT_SEXT_ELT &&
616 Op0Op0->getOpcode() != MipsISD::VEXTRACT_ZEXT_ELT)
617 return SDValue();
618
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000619 EVT ExtendTy = cast<VTSDNode>(Op0Op0->getOperand(2))->getVT();
620 unsigned TotalBits = ShAmount->getZExtValue() + ExtendTy.getSizeInBits();
621
622 if (TotalBits == 32 ||
623 (Op0Op0->getOpcode() == MipsISD::VEXTRACT_SEXT_ELT &&
624 TotalBits <= 32)) {
625 SDValue Ops[] = { Op0Op0->getOperand(0), Op0Op0->getOperand(1),
626 Op0Op0->getOperand(2) };
627 DAG.MorphNodeTo(Op0Op0.getNode(), MipsISD::VEXTRACT_SEXT_ELT,
628 Op0Op0->getVTList(), Ops, Op0Op0->getNumOperands());
629 return Op0Op0;
630 }
631 }
632 }
633
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000634 if ((Ty != MVT::v2i16) && ((Ty != MVT::v4i8) || !Subtarget->hasDSPR2()))
635 return SDValue();
636
637 return performDSPShiftCombine(MipsISD::SHRA_DSP, N, Ty, DAG, Subtarget);
638}
639
640
641static SDValue performSRLCombine(SDNode *N, SelectionDAG &DAG,
642 TargetLowering::DAGCombinerInfo &DCI,
643 const MipsSubtarget *Subtarget) {
644 EVT Ty = N->getValueType(0);
645
646 if (((Ty != MVT::v2i16) || !Subtarget->hasDSPR2()) && (Ty != MVT::v4i8))
647 return SDValue();
648
649 return performDSPShiftCombine(MipsISD::SHRL_DSP, N, Ty, DAG, Subtarget);
650}
651
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000652static bool isLegalDSPCondCode(EVT Ty, ISD::CondCode CC) {
653 bool IsV216 = (Ty == MVT::v2i16);
654
655 switch (CC) {
656 case ISD::SETEQ:
657 case ISD::SETNE: return true;
658 case ISD::SETLT:
659 case ISD::SETLE:
660 case ISD::SETGT:
661 case ISD::SETGE: return IsV216;
662 case ISD::SETULT:
663 case ISD::SETULE:
664 case ISD::SETUGT:
665 case ISD::SETUGE: return !IsV216;
666 default: return false;
667 }
668}
669
670static SDValue performSETCCCombine(SDNode *N, SelectionDAG &DAG) {
671 EVT Ty = N->getValueType(0);
672
673 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
674 return SDValue();
675
676 if (!isLegalDSPCondCode(Ty, cast<CondCodeSDNode>(N->getOperand(2))->get()))
677 return SDValue();
678
Andrew Trickef9de2a2013-05-25 02:42:55 +0000679 return DAG.getNode(MipsISD::SETCC_DSP, SDLoc(N), Ty, N->getOperand(0),
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000680 N->getOperand(1), N->getOperand(2));
681}
682
683static SDValue performVSELECTCombine(SDNode *N, SelectionDAG &DAG) {
684 EVT Ty = N->getValueType(0);
685
Daniel Sanders3ce56622013-09-24 12:18:31 +0000686 if (Ty.is128BitVector() && Ty.isInteger()) {
687 // Try the following combines:
688 // (vselect (setcc $a, $b, SETLT), $b, $a)) -> (vsmax $a, $b)
689 // (vselect (setcc $a, $b, SETLE), $b, $a)) -> (vsmax $a, $b)
690 // (vselect (setcc $a, $b, SETLT), $a, $b)) -> (vsmin $a, $b)
691 // (vselect (setcc $a, $b, SETLE), $a, $b)) -> (vsmin $a, $b)
692 // (vselect (setcc $a, $b, SETULT), $b, $a)) -> (vumax $a, $b)
693 // (vselect (setcc $a, $b, SETULE), $b, $a)) -> (vumax $a, $b)
694 // (vselect (setcc $a, $b, SETULT), $a, $b)) -> (vumin $a, $b)
695 // (vselect (setcc $a, $b, SETULE), $a, $b)) -> (vumin $a, $b)
696 // SETGT/SETGE/SETUGT/SETUGE variants of these will show up initially but
697 // will be expanded to equivalent SETLT/SETLE/SETULT/SETULE versions by the
698 // legalizer.
699 SDValue Op0 = N->getOperand(0);
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000700
Daniel Sanders3ce56622013-09-24 12:18:31 +0000701 if (Op0->getOpcode() != ISD::SETCC)
702 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000703
Daniel Sanders3ce56622013-09-24 12:18:31 +0000704 ISD::CondCode CondCode = cast<CondCodeSDNode>(Op0->getOperand(2))->get();
705 bool Signed;
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000706
Daniel Sanders3ce56622013-09-24 12:18:31 +0000707 if (CondCode == ISD::SETLT || CondCode == ISD::SETLE)
708 Signed = true;
709 else if (CondCode == ISD::SETULT || CondCode == ISD::SETULE)
710 Signed = false;
711 else
712 return SDValue();
713
714 SDValue Op1 = N->getOperand(1);
715 SDValue Op2 = N->getOperand(2);
716 SDValue Op0Op0 = Op0->getOperand(0);
717 SDValue Op0Op1 = Op0->getOperand(1);
718
719 if (Op1 == Op0Op0 && Op2 == Op0Op1)
720 return DAG.getNode(Signed ? MipsISD::VSMIN : MipsISD::VUMIN, SDLoc(N),
721 Ty, Op1, Op2);
722 else if (Op1 == Op0Op1 && Op2 == Op0Op0)
723 return DAG.getNode(Signed ? MipsISD::VSMAX : MipsISD::VUMAX, SDLoc(N),
724 Ty, Op1, Op2);
725 } else if ((Ty == MVT::v2i16) || (Ty == MVT::v4i8)) {
726 SDValue SetCC = N->getOperand(0);
727
728 if (SetCC.getOpcode() != MipsISD::SETCC_DSP)
729 return SDValue();
730
731 return DAG.getNode(MipsISD::SELECT_CC_DSP, SDLoc(N), Ty,
732 SetCC.getOperand(0), SetCC.getOperand(1),
733 N->getOperand(1), N->getOperand(2), SetCC.getOperand(2));
734 }
735
736 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000737}
738
Daniel Sandersf7456c72013-09-23 13:22:24 +0000739static SDValue performXORCombine(SDNode *N, SelectionDAG &DAG,
740 const MipsSubtarget *Subtarget) {
741 EVT Ty = N->getValueType(0);
742
743 if (Subtarget->hasMSA() && Ty.is128BitVector() && Ty.isInteger()) {
744 // Try the following combines:
745 // (xor (or $a, $b), (build_vector allones))
746 // (xor (or $a, $b), (bitcast (build_vector allones)))
747 SDValue Op0 = N->getOperand(0);
748 SDValue Op1 = N->getOperand(1);
749 SDValue NotOp;
Daniel Sandersf7456c72013-09-23 13:22:24 +0000750
751 if (ISD::isBuildVectorAllOnes(Op0.getNode()))
752 NotOp = Op1;
753 else if (ISD::isBuildVectorAllOnes(Op1.getNode()))
754 NotOp = Op0;
Daniel Sandersf7456c72013-09-23 13:22:24 +0000755 else
756 return SDValue();
757
758 if (NotOp->getOpcode() == ISD::OR)
759 return DAG.getNode(MipsISD::VNOR, SDLoc(N), Ty, NotOp->getOperand(0),
760 NotOp->getOperand(1));
761 }
762
763 return SDValue();
764}
765
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000766SDValue
767MipsSETargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const {
768 SelectionDAG &DAG = DCI.DAG;
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000769 SDValue Val;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000770
771 switch (N->getOpcode()) {
772 case ISD::ADDE:
773 return performADDECombine(N, DAG, DCI, Subtarget);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000774 case ISD::AND:
775 Val = performANDCombine(N, DAG, DCI, Subtarget);
776 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000777 case ISD::SUBE:
778 return performSUBECombine(N, DAG, DCI, Subtarget);
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000779 case ISD::MUL:
780 return performMULCombine(N, DAG, DCI, this);
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000781 case ISD::SHL:
782 return performSHLCombine(N, DAG, DCI, Subtarget);
783 case ISD::SRA:
784 return performSRACombine(N, DAG, DCI, Subtarget);
785 case ISD::SRL:
786 return performSRLCombine(N, DAG, DCI, Subtarget);
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000787 case ISD::VSELECT:
788 return performVSELECTCombine(N, DAG);
Daniel Sandersf7456c72013-09-23 13:22:24 +0000789 case ISD::XOR:
790 Val = performXORCombine(N, DAG, Subtarget);
791 break;
792 case ISD::SETCC:
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000793 Val = performSETCCCombine(N, DAG);
794 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000795 }
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000796
797 if (Val.getNode())
798 return Val;
799
800 return MipsTargetLowering::PerformDAGCombine(N, DCI);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000801}
802
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000803MachineBasicBlock *
804MipsSETargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
805 MachineBasicBlock *BB) const {
806 switch (MI->getOpcode()) {
807 default:
808 return MipsTargetLowering::EmitInstrWithCustomInserter(MI, BB);
809 case Mips::BPOSGE32_PSEUDO:
810 return emitBPOSGE32(MI, BB);
Daniel Sandersce09d072013-08-28 12:14:50 +0000811 case Mips::SNZ_B_PSEUDO:
812 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_B);
813 case Mips::SNZ_H_PSEUDO:
814 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_H);
815 case Mips::SNZ_W_PSEUDO:
816 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_W);
817 case Mips::SNZ_D_PSEUDO:
818 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_D);
819 case Mips::SNZ_V_PSEUDO:
820 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_V);
821 case Mips::SZ_B_PSEUDO:
822 return emitMSACBranchPseudo(MI, BB, Mips::BZ_B);
823 case Mips::SZ_H_PSEUDO:
824 return emitMSACBranchPseudo(MI, BB, Mips::BZ_H);
825 case Mips::SZ_W_PSEUDO:
826 return emitMSACBranchPseudo(MI, BB, Mips::BZ_W);
827 case Mips::SZ_D_PSEUDO:
828 return emitMSACBranchPseudo(MI, BB, Mips::BZ_D);
829 case Mips::SZ_V_PSEUDO:
830 return emitMSACBranchPseudo(MI, BB, Mips::BZ_V);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +0000831 case Mips::COPY_FW_PSEUDO:
832 return emitCOPY_FW(MI, BB);
833 case Mips::COPY_FD_PSEUDO:
834 return emitCOPY_FD(MI, BB);
Daniel Sandersa5150702013-09-27 12:31:32 +0000835 case Mips::INSERT_FW_PSEUDO:
836 return emitINSERT_FW(MI, BB);
837 case Mips::INSERT_FD_PSEUDO:
838 return emitINSERT_FD(MI, BB);
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000839 }
840}
841
842bool MipsSETargetLowering::
843isEligibleForTailCallOptimization(const MipsCC &MipsCCInfo,
844 unsigned NextStackOffset,
845 const MipsFunctionInfo& FI) const {
846 if (!EnableMipsTailCalls)
847 return false;
848
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000849 // Return false if either the callee or caller has a byval argument.
850 if (MipsCCInfo.hasByValArg() || FI.hasByvalArg())
851 return false;
852
853 // Return true if the callee's argument area is no larger than the
854 // caller's.
855 return NextStackOffset <= FI.getIncomingArgSize();
856}
857
858void MipsSETargetLowering::
859getOpndList(SmallVectorImpl<SDValue> &Ops,
860 std::deque< std::pair<unsigned, SDValue> > &RegsToPass,
861 bool IsPICCall, bool GlobalOrExternal, bool InternalLinkage,
862 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const {
863 // T9 should contain the address of the callee function if
864 // -reloction-model=pic or it is an indirect call.
865 if (IsPICCall || !GlobalOrExternal) {
866 unsigned T9Reg = IsN64 ? Mips::T9_64 : Mips::T9;
867 RegsToPass.push_front(std::make_pair(T9Reg, Callee));
868 } else
869 Ops.push_back(Callee);
870
871 MipsTargetLowering::getOpndList(Ops, RegsToPass, IsPICCall, GlobalOrExternal,
872 InternalLinkage, CLI, Callee, Chain);
873}
874
Akira Hatanaka63791212013-09-07 00:52:30 +0000875SDValue MipsSETargetLowering::lowerLOAD(SDValue Op, SelectionDAG &DAG) const {
876 LoadSDNode &Nd = *cast<LoadSDNode>(Op);
877
878 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
879 return MipsTargetLowering::lowerLOAD(Op, DAG);
880
881 // Replace a double precision load with two i32 loads and a buildpair64.
882 SDLoc DL(Op);
883 SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
884 EVT PtrVT = Ptr.getValueType();
885
886 // i32 load from lower address.
887 SDValue Lo = DAG.getLoad(MVT::i32, DL, Chain, Ptr,
888 MachinePointerInfo(), Nd.isVolatile(),
889 Nd.isNonTemporal(), Nd.isInvariant(),
890 Nd.getAlignment());
891
892 // i32 load from higher address.
893 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
894 SDValue Hi = DAG.getLoad(MVT::i32, DL, Lo.getValue(1), Ptr,
895 MachinePointerInfo(), Nd.isVolatile(),
896 Nd.isNonTemporal(), Nd.isInvariant(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +0000897 std::min(Nd.getAlignment(), 4U));
Akira Hatanaka63791212013-09-07 00:52:30 +0000898
899 if (!Subtarget->isLittle())
900 std::swap(Lo, Hi);
901
902 SDValue BP = DAG.getNode(MipsISD::BuildPairF64, DL, MVT::f64, Lo, Hi);
903 SDValue Ops[2] = {BP, Hi.getValue(1)};
904 return DAG.getMergeValues(Ops, 2, DL);
905}
906
907SDValue MipsSETargetLowering::lowerSTORE(SDValue Op, SelectionDAG &DAG) const {
908 StoreSDNode &Nd = *cast<StoreSDNode>(Op);
909
910 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
911 return MipsTargetLowering::lowerSTORE(Op, DAG);
912
913 // Replace a double precision store with two extractelement64s and i32 stores.
914 SDLoc DL(Op);
915 SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
916 EVT PtrVT = Ptr.getValueType();
917 SDValue Lo = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
918 Val, DAG.getConstant(0, MVT::i32));
919 SDValue Hi = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
920 Val, DAG.getConstant(1, MVT::i32));
921
922 if (!Subtarget->isLittle())
923 std::swap(Lo, Hi);
924
925 // i32 store to lower address.
926 Chain = DAG.getStore(Chain, DL, Lo, Ptr, MachinePointerInfo(),
927 Nd.isVolatile(), Nd.isNonTemporal(), Nd.getAlignment(),
928 Nd.getTBAAInfo());
929
930 // i32 store to higher address.
931 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
932 return DAG.getStore(Chain, DL, Hi, Ptr, MachinePointerInfo(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +0000933 Nd.isVolatile(), Nd.isNonTemporal(),
934 std::min(Nd.getAlignment(), 4U), Nd.getTBAAInfo());
Akira Hatanaka63791212013-09-07 00:52:30 +0000935}
936
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000937SDValue MipsSETargetLowering::lowerMulDiv(SDValue Op, unsigned NewOpc,
938 bool HasLo, bool HasHi,
939 SelectionDAG &DAG) const {
940 EVT Ty = Op.getOperand(0).getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000941 SDLoc DL(Op);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000942 SDValue Mult = DAG.getNode(NewOpc, DL, MVT::Untyped,
943 Op.getOperand(0), Op.getOperand(1));
944 SDValue Lo, Hi;
945
946 if (HasLo)
947 Lo = DAG.getNode(MipsISD::ExtractLOHI, DL, Ty, Mult,
948 DAG.getConstant(Mips::sub_lo, MVT::i32));
949 if (HasHi)
950 Hi = DAG.getNode(MipsISD::ExtractLOHI, DL, Ty, Mult,
951 DAG.getConstant(Mips::sub_hi, MVT::i32));
952
953 if (!HasLo || !HasHi)
954 return HasLo ? Lo : Hi;
955
956 SDValue Vals[] = { Lo, Hi };
957 return DAG.getMergeValues(Vals, 2, DL);
958}
959
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000960
Andrew Trickef9de2a2013-05-25 02:42:55 +0000961static SDValue initAccumulator(SDValue In, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000962 SDValue InLo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
963 DAG.getConstant(0, MVT::i32));
964 SDValue InHi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
965 DAG.getConstant(1, MVT::i32));
966 return DAG.getNode(MipsISD::InsertLOHI, DL, MVT::Untyped, InLo, InHi);
967}
968
Andrew Trickef9de2a2013-05-25 02:42:55 +0000969static SDValue extractLOHI(SDValue Op, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000970 SDValue Lo = DAG.getNode(MipsISD::ExtractLOHI, DL, MVT::i32, Op,
971 DAG.getConstant(Mips::sub_lo, MVT::i32));
972 SDValue Hi = DAG.getNode(MipsISD::ExtractLOHI, DL, MVT::i32, Op,
973 DAG.getConstant(Mips::sub_hi, MVT::i32));
974 return DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Lo, Hi);
975}
976
977// This function expands mips intrinsic nodes which have 64-bit input operands
978// or output values.
979//
980// out64 = intrinsic-node in64
981// =>
982// lo = copy (extract-element (in64, 0))
983// hi = copy (extract-element (in64, 1))
984// mips-specific-node
985// v0 = copy lo
986// v1 = copy hi
987// out64 = merge-values (v0, v1)
988//
989static SDValue lowerDSPIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000990 SDLoc DL(Op);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000991 bool HasChainIn = Op->getOperand(0).getValueType() == MVT::Other;
992 SmallVector<SDValue, 3> Ops;
993 unsigned OpNo = 0;
994
995 // See if Op has a chain input.
996 if (HasChainIn)
997 Ops.push_back(Op->getOperand(OpNo++));
998
999 // The next operand is the intrinsic opcode.
1000 assert(Op->getOperand(OpNo).getOpcode() == ISD::TargetConstant);
1001
1002 // See if the next operand has type i64.
1003 SDValue Opnd = Op->getOperand(++OpNo), In64;
1004
1005 if (Opnd.getValueType() == MVT::i64)
1006 In64 = initAccumulator(Opnd, DL, DAG);
1007 else
1008 Ops.push_back(Opnd);
1009
1010 // Push the remaining operands.
1011 for (++OpNo ; OpNo < Op->getNumOperands(); ++OpNo)
1012 Ops.push_back(Op->getOperand(OpNo));
1013
1014 // Add In64 to the end of the list.
1015 if (In64.getNode())
1016 Ops.push_back(In64);
1017
1018 // Scan output.
1019 SmallVector<EVT, 2> ResTys;
1020
1021 for (SDNode::value_iterator I = Op->value_begin(), E = Op->value_end();
1022 I != E; ++I)
1023 ResTys.push_back((*I == MVT::i64) ? MVT::Untyped : *I);
1024
1025 // Create node.
1026 SDValue Val = DAG.getNode(Opc, DL, ResTys, &Ops[0], Ops.size());
1027 SDValue Out = (ResTys[0] == MVT::Untyped) ? extractLOHI(Val, DL, DAG) : Val;
1028
1029 if (!HasChainIn)
1030 return Out;
1031
1032 assert(Val->getValueType(1) == MVT::Other);
1033 SDValue Vals[] = { Out, SDValue(Val.getNode(), 1) };
1034 return DAG.getMergeValues(Vals, 2, DL);
1035}
1036
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001037// Lower an MSA copy intrinsic into the specified SelectionDAG node
1038static SDValue lowerMSACopyIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1039 SDLoc DL(Op);
1040 SDValue Vec = Op->getOperand(1);
1041 SDValue Idx = Op->getOperand(2);
1042 EVT ResTy = Op->getValueType(0);
1043 EVT EltTy = Vec->getValueType(0).getVectorElementType();
1044
1045 SDValue Result = DAG.getNode(Opc, DL, ResTy, Vec, Idx,
1046 DAG.getValueType(EltTy));
1047
1048 return Result;
1049}
1050
1051// Lower an MSA insert intrinsic into the specified SelectionDAG node
1052static SDValue lowerMSAInsertIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1053 SDLoc DL(Op);
1054 SDValue Op0 = Op->getOperand(1);
1055 SDValue Op1 = Op->getOperand(2);
1056 SDValue Op2 = Op->getOperand(3);
1057 EVT ResTy = Op->getValueType(0);
1058
1059 SDValue Result = DAG.getNode(Opc, DL, ResTy, Op0, Op2, Op1);
1060
1061 return Result;
1062}
1063
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001064static SDValue
1065lowerMSASplatImm(SDLoc DL, EVT ResTy, SDValue ImmOp, SelectionDAG &DAG) {
Daniel Sandersf49dd822013-09-24 13:33:07 +00001066 EVT ViaVecTy = ResTy;
1067 SmallVector<SDValue, 16> Ops;
1068 SDValue ImmHiOp;
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001069
Daniel Sandersf49dd822013-09-24 13:33:07 +00001070 if (ViaVecTy == MVT::v2i64) {
1071 ImmHiOp = DAG.getNode(ISD::SRA, DL, MVT::i32, ImmOp,
1072 DAG.getConstant(31, MVT::i32));
1073 for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i) {
1074 Ops.push_back(ImmHiOp);
1075 Ops.push_back(ImmOp);
1076 }
1077 ViaVecTy = MVT::v4i32;
1078 } else {
1079 for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1080 Ops.push_back(ImmOp);
1081 }
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001082
Daniel Sandersf49dd822013-09-24 13:33:07 +00001083 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, DL, ViaVecTy, &Ops[0],
1084 Ops.size());
1085
1086 if (ResTy != ViaVecTy)
1087 Result = DAG.getNode(ISD::BITCAST, DL, ResTy, Result);
1088
1089 return Result;
1090}
1091
1092static SDValue
1093lowerMSASplatImm(SDValue Op, unsigned ImmOp, SelectionDAG &DAG) {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001094 return lowerMSASplatImm(SDLoc(Op), Op->getValueType(0),
1095 Op->getOperand(ImmOp), DAG);
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001096}
1097
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001098SDValue MipsSETargetLowering::lowerINTRINSIC_WO_CHAIN(SDValue Op,
1099 SelectionDAG &DAG) const {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001100 SDLoc DL(Op);
1101
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001102 switch (cast<ConstantSDNode>(Op->getOperand(0))->getZExtValue()) {
1103 default:
1104 return SDValue();
1105 case Intrinsic::mips_shilo:
1106 return lowerDSPIntr(Op, DAG, MipsISD::SHILO);
1107 case Intrinsic::mips_dpau_h_qbl:
1108 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBL);
1109 case Intrinsic::mips_dpau_h_qbr:
1110 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBR);
1111 case Intrinsic::mips_dpsu_h_qbl:
1112 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBL);
1113 case Intrinsic::mips_dpsu_h_qbr:
1114 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBR);
1115 case Intrinsic::mips_dpa_w_ph:
1116 return lowerDSPIntr(Op, DAG, MipsISD::DPA_W_PH);
1117 case Intrinsic::mips_dps_w_ph:
1118 return lowerDSPIntr(Op, DAG, MipsISD::DPS_W_PH);
1119 case Intrinsic::mips_dpax_w_ph:
1120 return lowerDSPIntr(Op, DAG, MipsISD::DPAX_W_PH);
1121 case Intrinsic::mips_dpsx_w_ph:
1122 return lowerDSPIntr(Op, DAG, MipsISD::DPSX_W_PH);
1123 case Intrinsic::mips_mulsa_w_ph:
1124 return lowerDSPIntr(Op, DAG, MipsISD::MULSA_W_PH);
1125 case Intrinsic::mips_mult:
1126 return lowerDSPIntr(Op, DAG, MipsISD::Mult);
1127 case Intrinsic::mips_multu:
1128 return lowerDSPIntr(Op, DAG, MipsISD::Multu);
1129 case Intrinsic::mips_madd:
1130 return lowerDSPIntr(Op, DAG, MipsISD::MAdd);
1131 case Intrinsic::mips_maddu:
1132 return lowerDSPIntr(Op, DAG, MipsISD::MAddu);
1133 case Intrinsic::mips_msub:
1134 return lowerDSPIntr(Op, DAG, MipsISD::MSub);
1135 case Intrinsic::mips_msubu:
1136 return lowerDSPIntr(Op, DAG, MipsISD::MSubu);
Daniel Sandersfa5ab1c2013-09-11 10:28:16 +00001137 case Intrinsic::mips_addv_b:
1138 case Intrinsic::mips_addv_h:
1139 case Intrinsic::mips_addv_w:
1140 case Intrinsic::mips_addv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001141 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1142 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001143 case Intrinsic::mips_addvi_b:
1144 case Intrinsic::mips_addvi_h:
1145 case Intrinsic::mips_addvi_w:
1146 case Intrinsic::mips_addvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001147 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1148 lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001149 case Intrinsic::mips_and_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001150 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1151 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001152 case Intrinsic::mips_andi_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001153 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1154 lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersce09d072013-08-28 12:14:50 +00001155 case Intrinsic::mips_bnz_b:
1156 case Intrinsic::mips_bnz_h:
1157 case Intrinsic::mips_bnz_w:
1158 case Intrinsic::mips_bnz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001159 return DAG.getNode(MipsISD::VALL_NONZERO, DL, Op->getValueType(0),
1160 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001161 case Intrinsic::mips_bnz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001162 return DAG.getNode(MipsISD::VANY_NONZERO, DL, Op->getValueType(0),
1163 Op->getOperand(1));
Daniel Sanderse1d24352013-09-24 12:04:44 +00001164 case Intrinsic::mips_bsel_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001165 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sanderse1d24352013-09-24 12:04:44 +00001166 Op->getOperand(1), Op->getOperand(2),
1167 Op->getOperand(3));
1168 case Intrinsic::mips_bseli_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001169 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sanderse1d24352013-09-24 12:04:44 +00001170 Op->getOperand(1), Op->getOperand(2),
1171 lowerMSASplatImm(Op, 3, DAG));
Daniel Sandersce09d072013-08-28 12:14:50 +00001172 case Intrinsic::mips_bz_b:
1173 case Intrinsic::mips_bz_h:
1174 case Intrinsic::mips_bz_w:
1175 case Intrinsic::mips_bz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001176 return DAG.getNode(MipsISD::VALL_ZERO, DL, Op->getValueType(0),
1177 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001178 case Intrinsic::mips_bz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001179 return DAG.getNode(MipsISD::VANY_ZERO, DL, Op->getValueType(0),
1180 Op->getOperand(1));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001181 case Intrinsic::mips_ceq_b:
1182 case Intrinsic::mips_ceq_h:
1183 case Intrinsic::mips_ceq_w:
1184 case Intrinsic::mips_ceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001185 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001186 Op->getOperand(2), ISD::SETEQ);
1187 case Intrinsic::mips_ceqi_b:
1188 case Intrinsic::mips_ceqi_h:
1189 case Intrinsic::mips_ceqi_w:
1190 case Intrinsic::mips_ceqi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001191 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001192 lowerMSASplatImm(Op, 2, DAG), ISD::SETEQ);
1193 case Intrinsic::mips_cle_s_b:
1194 case Intrinsic::mips_cle_s_h:
1195 case Intrinsic::mips_cle_s_w:
1196 case Intrinsic::mips_cle_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001197 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001198 Op->getOperand(2), ISD::SETLE);
1199 case Intrinsic::mips_clei_s_b:
1200 case Intrinsic::mips_clei_s_h:
1201 case Intrinsic::mips_clei_s_w:
1202 case Intrinsic::mips_clei_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001203 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001204 lowerMSASplatImm(Op, 2, DAG), ISD::SETLE);
1205 case Intrinsic::mips_cle_u_b:
1206 case Intrinsic::mips_cle_u_h:
1207 case Intrinsic::mips_cle_u_w:
1208 case Intrinsic::mips_cle_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001209 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001210 Op->getOperand(2), ISD::SETULE);
1211 case Intrinsic::mips_clei_u_b:
1212 case Intrinsic::mips_clei_u_h:
1213 case Intrinsic::mips_clei_u_w:
1214 case Intrinsic::mips_clei_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001215 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001216 lowerMSASplatImm(Op, 2, DAG), ISD::SETULE);
1217 case Intrinsic::mips_clt_s_b:
1218 case Intrinsic::mips_clt_s_h:
1219 case Intrinsic::mips_clt_s_w:
1220 case Intrinsic::mips_clt_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001221 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001222 Op->getOperand(2), ISD::SETLT);
1223 case Intrinsic::mips_clti_s_b:
1224 case Intrinsic::mips_clti_s_h:
1225 case Intrinsic::mips_clti_s_w:
1226 case Intrinsic::mips_clti_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001227 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001228 lowerMSASplatImm(Op, 2, DAG), ISD::SETLT);
1229 case Intrinsic::mips_clt_u_b:
1230 case Intrinsic::mips_clt_u_h:
1231 case Intrinsic::mips_clt_u_w:
1232 case Intrinsic::mips_clt_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001233 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001234 Op->getOperand(2), ISD::SETULT);
1235 case Intrinsic::mips_clti_u_b:
1236 case Intrinsic::mips_clti_u_h:
1237 case Intrinsic::mips_clti_u_w:
1238 case Intrinsic::mips_clti_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001239 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001240 lowerMSASplatImm(Op, 2, DAG), ISD::SETULT);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001241 case Intrinsic::mips_copy_s_b:
1242 case Intrinsic::mips_copy_s_h:
1243 case Intrinsic::mips_copy_s_w:
1244 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_SEXT_ELT);
Daniel Sanders7f3d9462013-09-27 13:04:21 +00001245 case Intrinsic::mips_copy_s_d:
1246 // Don't lower directly into VEXTRACT_SEXT_ELT since i64 might be illegal.
1247 // Instead lower to the generic EXTRACT_VECTOR_ELT node and let the type
1248 // legalizer and EXTRACT_VECTOR_ELT lowering sort it out.
1249 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(Op), Op->getValueType(0),
1250 Op->getOperand(1), Op->getOperand(2));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001251 case Intrinsic::mips_copy_u_b:
1252 case Intrinsic::mips_copy_u_h:
1253 case Intrinsic::mips_copy_u_w:
1254 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_ZEXT_ELT);
Daniel Sanders7f3d9462013-09-27 13:04:21 +00001255 case Intrinsic::mips_copy_u_d:
1256 // Don't lower directly into VEXTRACT_ZEXT_ELT since i64 might be illegal.
1257 // Instead lower to the generic EXTRACT_VECTOR_ELT node and let the type
1258 // legalizer and EXTRACT_VECTOR_ELT lowering sort it out.
1259 //
1260 // Note: When i64 is illegal, this results in copy_s.w instructions instead
1261 // of copy_u.w instructions. This makes no difference to the behaviour
1262 // since i64 is only illegal when the register file is 32-bit.
1263 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(Op), Op->getValueType(0),
1264 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders607952b2013-09-11 10:38:58 +00001265 case Intrinsic::mips_div_s_b:
1266 case Intrinsic::mips_div_s_h:
1267 case Intrinsic::mips_div_s_w:
1268 case Intrinsic::mips_div_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001269 return DAG.getNode(ISD::SDIV, DL, Op->getValueType(0), Op->getOperand(1),
1270 Op->getOperand(2));
Daniel Sanders607952b2013-09-11 10:38:58 +00001271 case Intrinsic::mips_div_u_b:
1272 case Intrinsic::mips_div_u_h:
1273 case Intrinsic::mips_div_u_w:
1274 case Intrinsic::mips_div_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001275 return DAG.getNode(ISD::UDIV, DL, Op->getValueType(0), Op->getOperand(1),
1276 Op->getOperand(2));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001277 case Intrinsic::mips_fadd_w:
1278 case Intrinsic::mips_fadd_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001279 return DAG.getNode(ISD::FADD, DL, Op->getValueType(0), Op->getOperand(1),
1280 Op->getOperand(2));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001281 // Don't lower mips_fcaf_[wd] since LLVM folds SETFALSE condcodes away
1282 case Intrinsic::mips_fceq_w:
1283 case Intrinsic::mips_fceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001284 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001285 Op->getOperand(2), ISD::SETOEQ);
1286 case Intrinsic::mips_fcle_w:
1287 case Intrinsic::mips_fcle_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001288 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001289 Op->getOperand(2), ISD::SETOLE);
1290 case Intrinsic::mips_fclt_w:
1291 case Intrinsic::mips_fclt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001292 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001293 Op->getOperand(2), ISD::SETOLT);
1294 case Intrinsic::mips_fcne_w:
1295 case Intrinsic::mips_fcne_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001296 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001297 Op->getOperand(2), ISD::SETONE);
1298 case Intrinsic::mips_fcor_w:
1299 case Intrinsic::mips_fcor_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001300 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001301 Op->getOperand(2), ISD::SETO);
1302 case Intrinsic::mips_fcueq_w:
1303 case Intrinsic::mips_fcueq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001304 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001305 Op->getOperand(2), ISD::SETUEQ);
1306 case Intrinsic::mips_fcule_w:
1307 case Intrinsic::mips_fcule_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001308 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001309 Op->getOperand(2), ISD::SETULE);
1310 case Intrinsic::mips_fcult_w:
1311 case Intrinsic::mips_fcult_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001312 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001313 Op->getOperand(2), ISD::SETULT);
1314 case Intrinsic::mips_fcun_w:
1315 case Intrinsic::mips_fcun_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001316 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001317 Op->getOperand(2), ISD::SETUO);
1318 case Intrinsic::mips_fcune_w:
1319 case Intrinsic::mips_fcune_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001320 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001321 Op->getOperand(2), ISD::SETUNE);
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001322 case Intrinsic::mips_fdiv_w:
1323 case Intrinsic::mips_fdiv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001324 return DAG.getNode(ISD::FDIV, DL, Op->getValueType(0), Op->getOperand(1),
1325 Op->getOperand(2));
Daniel Sanders7a289d02013-09-23 12:02:46 +00001326 case Intrinsic::mips_fill_b:
1327 case Intrinsic::mips_fill_h:
Daniel Sandersc72593e2013-09-27 13:20:41 +00001328 case Intrinsic::mips_fill_w:
1329 case Intrinsic::mips_fill_d: {
Daniel Sandersf49dd822013-09-24 13:33:07 +00001330 SmallVector<SDValue, 16> Ops;
1331 EVT ResTy = Op->getValueType(0);
1332
1333 for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1334 Ops.push_back(Op->getOperand(1));
1335
Daniel Sandersc72593e2013-09-27 13:20:41 +00001336 // If ResTy is v2i64 then the type legalizer will break this node down into
1337 // an equivalent v4i32.
1338 return DAG.getNode(ISD::BUILD_VECTOR, DL, ResTy, &Ops[0], Ops.size());
Daniel Sandersf49dd822013-09-24 13:33:07 +00001339 }
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001340 case Intrinsic::mips_flog2_w:
1341 case Intrinsic::mips_flog2_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001342 return DAG.getNode(ISD::FLOG2, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001343 case Intrinsic::mips_fmul_w:
1344 case Intrinsic::mips_fmul_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001345 return DAG.getNode(ISD::FMUL, DL, Op->getValueType(0), Op->getOperand(1),
1346 Op->getOperand(2));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001347 case Intrinsic::mips_frint_w:
1348 case Intrinsic::mips_frint_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001349 return DAG.getNode(ISD::FRINT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001350 case Intrinsic::mips_fsqrt_w:
1351 case Intrinsic::mips_fsqrt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001352 return DAG.getNode(ISD::FSQRT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001353 case Intrinsic::mips_fsub_w:
1354 case Intrinsic::mips_fsub_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001355 return DAG.getNode(ISD::FSUB, DL, Op->getValueType(0), Op->getOperand(1),
1356 Op->getOperand(2));
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001357 case Intrinsic::mips_ilvev_b:
1358 case Intrinsic::mips_ilvev_h:
1359 case Intrinsic::mips_ilvev_w:
1360 case Intrinsic::mips_ilvev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001361 return DAG.getNode(MipsISD::ILVEV, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001362 Op->getOperand(1), Op->getOperand(2));
1363 case Intrinsic::mips_ilvl_b:
1364 case Intrinsic::mips_ilvl_h:
1365 case Intrinsic::mips_ilvl_w:
1366 case Intrinsic::mips_ilvl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001367 return DAG.getNode(MipsISD::ILVL, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001368 Op->getOperand(1), Op->getOperand(2));
1369 case Intrinsic::mips_ilvod_b:
1370 case Intrinsic::mips_ilvod_h:
1371 case Intrinsic::mips_ilvod_w:
1372 case Intrinsic::mips_ilvod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001373 return DAG.getNode(MipsISD::ILVOD, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001374 Op->getOperand(1), Op->getOperand(2));
1375 case Intrinsic::mips_ilvr_b:
1376 case Intrinsic::mips_ilvr_h:
1377 case Intrinsic::mips_ilvr_w:
1378 case Intrinsic::mips_ilvr_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001379 return DAG.getNode(MipsISD::ILVR, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001380 Op->getOperand(1), Op->getOperand(2));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001381 case Intrinsic::mips_insert_b:
1382 case Intrinsic::mips_insert_h:
1383 case Intrinsic::mips_insert_w:
1384 return lowerMSAInsertIntr(Op, DAG, ISD::INSERT_VECTOR_ELT);
Daniel Sanders7a289d02013-09-23 12:02:46 +00001385 case Intrinsic::mips_ldi_b:
1386 case Intrinsic::mips_ldi_h:
1387 case Intrinsic::mips_ldi_w:
1388 case Intrinsic::mips_ldi_d:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001389 return lowerMSASplatImm(Op, 1, DAG);
Daniel Sanders3ce56622013-09-24 12:18:31 +00001390 case Intrinsic::mips_max_s_b:
1391 case Intrinsic::mips_max_s_h:
1392 case Intrinsic::mips_max_s_w:
1393 case Intrinsic::mips_max_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001394 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1395 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001396 case Intrinsic::mips_max_u_b:
1397 case Intrinsic::mips_max_u_h:
1398 case Intrinsic::mips_max_u_w:
1399 case Intrinsic::mips_max_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001400 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1401 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001402 case Intrinsic::mips_maxi_s_b:
1403 case Intrinsic::mips_maxi_s_h:
1404 case Intrinsic::mips_maxi_s_w:
1405 case Intrinsic::mips_maxi_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001406 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1407 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001408 case Intrinsic::mips_maxi_u_b:
1409 case Intrinsic::mips_maxi_u_h:
1410 case Intrinsic::mips_maxi_u_w:
1411 case Intrinsic::mips_maxi_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001412 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1413 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001414 case Intrinsic::mips_min_s_b:
1415 case Intrinsic::mips_min_s_h:
1416 case Intrinsic::mips_min_s_w:
1417 case Intrinsic::mips_min_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001418 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1419 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001420 case Intrinsic::mips_min_u_b:
1421 case Intrinsic::mips_min_u_h:
1422 case Intrinsic::mips_min_u_w:
1423 case Intrinsic::mips_min_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001424 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1425 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001426 case Intrinsic::mips_mini_s_b:
1427 case Intrinsic::mips_mini_s_h:
1428 case Intrinsic::mips_mini_s_w:
1429 case Intrinsic::mips_mini_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001430 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1431 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001432 case Intrinsic::mips_mini_u_b:
1433 case Intrinsic::mips_mini_u_h:
1434 case Intrinsic::mips_mini_u_w:
1435 case Intrinsic::mips_mini_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001436 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1437 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001438 case Intrinsic::mips_mulv_b:
1439 case Intrinsic::mips_mulv_h:
1440 case Intrinsic::mips_mulv_w:
1441 case Intrinsic::mips_mulv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001442 return DAG.getNode(ISD::MUL, DL, Op->getValueType(0), Op->getOperand(1),
1443 Op->getOperand(2));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001444 case Intrinsic::mips_nlzc_b:
1445 case Intrinsic::mips_nlzc_h:
1446 case Intrinsic::mips_nlzc_w:
1447 case Intrinsic::mips_nlzc_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001448 return DAG.getNode(ISD::CTLZ, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf7456c72013-09-23 13:22:24 +00001449 case Intrinsic::mips_nor_v: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001450 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1451 Op->getOperand(1), Op->getOperand(2));
1452 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersf7456c72013-09-23 13:22:24 +00001453 }
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001454 case Intrinsic::mips_nori_b: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001455 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1456 Op->getOperand(1),
1457 lowerMSASplatImm(Op, 2, DAG));
1458 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001459 }
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001460 case Intrinsic::mips_or_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001461 return DAG.getNode(ISD::OR, DL, Op->getValueType(0), Op->getOperand(1),
1462 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001463 case Intrinsic::mips_ori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001464 return DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1465 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001466 case Intrinsic::mips_pckev_b:
1467 case Intrinsic::mips_pckev_h:
1468 case Intrinsic::mips_pckev_w:
1469 case Intrinsic::mips_pckev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001470 return DAG.getNode(MipsISD::PCKEV, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001471 Op->getOperand(1), Op->getOperand(2));
1472 case Intrinsic::mips_pckod_b:
1473 case Intrinsic::mips_pckod_h:
1474 case Intrinsic::mips_pckod_w:
1475 case Intrinsic::mips_pckod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001476 return DAG.getNode(MipsISD::PCKOD, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00001477 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders766cb692013-09-23 13:40:21 +00001478 case Intrinsic::mips_pcnt_b:
1479 case Intrinsic::mips_pcnt_h:
1480 case Intrinsic::mips_pcnt_w:
1481 case Intrinsic::mips_pcnt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001482 return DAG.getNode(ISD::CTPOP, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sanders26307182013-09-24 14:20:00 +00001483 case Intrinsic::mips_shf_b:
1484 case Intrinsic::mips_shf_h:
1485 case Intrinsic::mips_shf_w:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001486 return DAG.getNode(MipsISD::SHF, DL, Op->getValueType(0),
Daniel Sanders26307182013-09-24 14:20:00 +00001487 Op->getOperand(2), Op->getOperand(1));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001488 case Intrinsic::mips_sll_b:
1489 case Intrinsic::mips_sll_h:
1490 case Intrinsic::mips_sll_w:
1491 case Intrinsic::mips_sll_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001492 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0), Op->getOperand(1),
1493 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001494 case Intrinsic::mips_slli_b:
1495 case Intrinsic::mips_slli_h:
1496 case Intrinsic::mips_slli_w:
1497 case Intrinsic::mips_slli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001498 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0),
1499 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders7e51fe12013-09-27 11:48:57 +00001500 case Intrinsic::mips_splati_b:
1501 case Intrinsic::mips_splati_h:
1502 case Intrinsic::mips_splati_w:
1503 case Intrinsic::mips_splati_d:
1504 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
1505 lowerMSASplatImm(Op, 2, DAG), Op->getOperand(1),
1506 Op->getOperand(1));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001507 case Intrinsic::mips_sra_b:
1508 case Intrinsic::mips_sra_h:
1509 case Intrinsic::mips_sra_w:
1510 case Intrinsic::mips_sra_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001511 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0), Op->getOperand(1),
1512 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001513 case Intrinsic::mips_srai_b:
1514 case Intrinsic::mips_srai_h:
1515 case Intrinsic::mips_srai_w:
1516 case Intrinsic::mips_srai_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001517 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0),
1518 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001519 case Intrinsic::mips_srl_b:
1520 case Intrinsic::mips_srl_h:
1521 case Intrinsic::mips_srl_w:
1522 case Intrinsic::mips_srl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001523 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0), Op->getOperand(1),
1524 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00001525 case Intrinsic::mips_srli_b:
1526 case Intrinsic::mips_srli_h:
1527 case Intrinsic::mips_srli_w:
1528 case Intrinsic::mips_srli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001529 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0),
1530 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00001531 case Intrinsic::mips_subv_b:
1532 case Intrinsic::mips_subv_h:
1533 case Intrinsic::mips_subv_w:
1534 case Intrinsic::mips_subv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001535 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0), Op->getOperand(1),
1536 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001537 case Intrinsic::mips_subvi_b:
1538 case Intrinsic::mips_subvi_h:
1539 case Intrinsic::mips_subvi_w:
1540 case Intrinsic::mips_subvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001541 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0),
1542 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanderse5087042013-09-24 14:02:15 +00001543 case Intrinsic::mips_vshf_b:
1544 case Intrinsic::mips_vshf_h:
1545 case Intrinsic::mips_vshf_w:
1546 case Intrinsic::mips_vshf_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001547 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
Daniel Sanderse5087042013-09-24 14:02:15 +00001548 Op->getOperand(1), Op->getOperand(2), Op->getOperand(3));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001549 case Intrinsic::mips_xor_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001550 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0), Op->getOperand(1),
1551 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001552 case Intrinsic::mips_xori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001553 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0),
1554 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001555 }
1556}
1557
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001558static SDValue lowerMSALoadIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1559 SDLoc DL(Op);
1560 SDValue ChainIn = Op->getOperand(0);
1561 SDValue Address = Op->getOperand(2);
1562 SDValue Offset = Op->getOperand(3);
1563 EVT ResTy = Op->getValueType(0);
1564 EVT PtrTy = Address->getValueType(0);
1565
1566 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1567
1568 return DAG.getLoad(ResTy, DL, ChainIn, Address, MachinePointerInfo(), false,
1569 false, false, 16);
1570}
1571
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001572SDValue MipsSETargetLowering::lowerINTRINSIC_W_CHAIN(SDValue Op,
1573 SelectionDAG &DAG) const {
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001574 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1575 switch (Intr) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001576 default:
1577 return SDValue();
1578 case Intrinsic::mips_extp:
1579 return lowerDSPIntr(Op, DAG, MipsISD::EXTP);
1580 case Intrinsic::mips_extpdp:
1581 return lowerDSPIntr(Op, DAG, MipsISD::EXTPDP);
1582 case Intrinsic::mips_extr_w:
1583 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_W);
1584 case Intrinsic::mips_extr_r_w:
1585 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_R_W);
1586 case Intrinsic::mips_extr_rs_w:
1587 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_RS_W);
1588 case Intrinsic::mips_extr_s_h:
1589 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_S_H);
1590 case Intrinsic::mips_mthlip:
1591 return lowerDSPIntr(Op, DAG, MipsISD::MTHLIP);
1592 case Intrinsic::mips_mulsaq_s_w_ph:
1593 return lowerDSPIntr(Op, DAG, MipsISD::MULSAQ_S_W_PH);
1594 case Intrinsic::mips_maq_s_w_phl:
1595 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHL);
1596 case Intrinsic::mips_maq_s_w_phr:
1597 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHR);
1598 case Intrinsic::mips_maq_sa_w_phl:
1599 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHL);
1600 case Intrinsic::mips_maq_sa_w_phr:
1601 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHR);
1602 case Intrinsic::mips_dpaq_s_w_ph:
1603 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_S_W_PH);
1604 case Intrinsic::mips_dpsq_s_w_ph:
1605 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_S_W_PH);
1606 case Intrinsic::mips_dpaq_sa_l_w:
1607 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_SA_L_W);
1608 case Intrinsic::mips_dpsq_sa_l_w:
1609 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_SA_L_W);
1610 case Intrinsic::mips_dpaqx_s_w_ph:
1611 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_S_W_PH);
1612 case Intrinsic::mips_dpaqx_sa_w_ph:
1613 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_SA_W_PH);
1614 case Intrinsic::mips_dpsqx_s_w_ph:
1615 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_S_W_PH);
1616 case Intrinsic::mips_dpsqx_sa_w_ph:
1617 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_SA_W_PH);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00001618 case Intrinsic::mips_ld_b:
1619 case Intrinsic::mips_ld_h:
1620 case Intrinsic::mips_ld_w:
1621 case Intrinsic::mips_ld_d:
1622 case Intrinsic::mips_ldx_b:
1623 case Intrinsic::mips_ldx_h:
1624 case Intrinsic::mips_ldx_w:
1625 case Intrinsic::mips_ldx_d:
1626 return lowerMSALoadIntr(Op, DAG, Intr);
1627 }
1628}
1629
1630static SDValue lowerMSAStoreIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1631 SDLoc DL(Op);
1632 SDValue ChainIn = Op->getOperand(0);
1633 SDValue Value = Op->getOperand(2);
1634 SDValue Address = Op->getOperand(3);
1635 SDValue Offset = Op->getOperand(4);
1636 EVT PtrTy = Address->getValueType(0);
1637
1638 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1639
1640 return DAG.getStore(ChainIn, DL, Value, Address, MachinePointerInfo(), false,
1641 false, 16);
1642}
1643
1644SDValue MipsSETargetLowering::lowerINTRINSIC_VOID(SDValue Op,
1645 SelectionDAG &DAG) const {
1646 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1647 switch (Intr) {
1648 default:
1649 return SDValue();
1650 case Intrinsic::mips_st_b:
1651 case Intrinsic::mips_st_h:
1652 case Intrinsic::mips_st_w:
1653 case Intrinsic::mips_st_d:
1654 case Intrinsic::mips_stx_b:
1655 case Intrinsic::mips_stx_h:
1656 case Intrinsic::mips_stx_w:
1657 case Intrinsic::mips_stx_d:
Daniel Sandersce09d072013-08-28 12:14:50 +00001658 return lowerMSAStoreIntr(Op, DAG, Intr);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001659 }
1660}
1661
Daniel Sanders7a289d02013-09-23 12:02:46 +00001662/// \brief Check if the given BuildVectorSDNode is a splat.
1663/// This method currently relies on DAG nodes being reused when equivalent,
1664/// so it's possible for this to return false even when isConstantSplat returns
1665/// true.
1666static bool isSplatVector(const BuildVectorSDNode *N) {
Daniel Sanders7a289d02013-09-23 12:02:46 +00001667 unsigned int nOps = N->getNumOperands();
1668 assert(nOps > 1 && "isSplat has 0 or 1 sized build vector");
1669
1670 SDValue Operand0 = N->getOperand(0);
1671
1672 for (unsigned int i = 1; i < nOps; ++i) {
1673 if (N->getOperand(i) != Operand0)
1674 return false;
1675 }
1676
1677 return true;
1678}
1679
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001680// Lower ISD::EXTRACT_VECTOR_ELT into MipsISD::VEXTRACT_SEXT_ELT.
1681//
1682// The non-value bits resulting from ISD::EXTRACT_VECTOR_ELT are undefined. We
1683// choose to sign-extend but we could have equally chosen zero-extend. The
1684// DAGCombiner will fold any sign/zero extension of the ISD::EXTRACT_VECTOR_ELT
1685// result into this node later (possibly changing it to a zero-extend in the
1686// process).
1687SDValue MipsSETargetLowering::
1688lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
1689 SDLoc DL(Op);
1690 EVT ResTy = Op->getValueType(0);
1691 SDValue Op0 = Op->getOperand(0);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00001692 EVT VecTy = Op0->getValueType(0);
1693
1694 if (!VecTy.is128BitVector())
1695 return SDValue();
1696
1697 if (ResTy.isInteger()) {
1698 SDValue Op1 = Op->getOperand(1);
1699 EVT EltTy = VecTy.getVectorElementType();
1700 return DAG.getNode(MipsISD::VEXTRACT_SEXT_ELT, DL, ResTy, Op0, Op1,
1701 DAG.getValueType(EltTy));
1702 }
1703
1704 return Op;
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001705}
1706
Daniel Sandersf49dd822013-09-24 13:33:07 +00001707static bool isConstantOrUndef(const SDValue Op) {
1708 if (Op->getOpcode() == ISD::UNDEF)
1709 return true;
1710 if (dyn_cast<ConstantSDNode>(Op))
1711 return true;
1712 if (dyn_cast<ConstantFPSDNode>(Op))
1713 return true;
1714 return false;
1715}
1716
1717static bool isConstantOrUndefBUILD_VECTOR(const BuildVectorSDNode *Op) {
1718 for (unsigned i = 0; i < Op->getNumOperands(); ++i)
1719 if (isConstantOrUndef(Op->getOperand(i)))
1720 return true;
1721 return false;
1722}
1723
Daniel Sanders7a289d02013-09-23 12:02:46 +00001724// Lowers ISD::BUILD_VECTOR into appropriate SelectionDAG nodes for the
1725// backend.
1726//
1727// Lowers according to the following rules:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001728// - Constant splats are legal as-is as long as the SplatBitSize is a power of
1729// 2 less than or equal to 64 and the value fits into a signed 10-bit
1730// immediate
1731// - Constant splats are lowered to bitconverted BUILD_VECTORs if SplatBitSize
1732// is a power of 2 less than or equal to 64 and the value does not fit into a
1733// signed 10-bit immediate
1734// - Non-constant splats are legal as-is.
1735// - Non-constant non-splats are lowered to sequences of INSERT_VECTOR_ELT.
1736// - All others are illegal and must be expanded.
Daniel Sanders7a289d02013-09-23 12:02:46 +00001737SDValue MipsSETargetLowering::lowerBUILD_VECTOR(SDValue Op,
1738 SelectionDAG &DAG) const {
1739 BuildVectorSDNode *Node = cast<BuildVectorSDNode>(Op);
1740 EVT ResTy = Op->getValueType(0);
1741 SDLoc DL(Op);
1742 APInt SplatValue, SplatUndef;
1743 unsigned SplatBitSize;
1744 bool HasAnyUndefs;
1745
1746 if (!Subtarget->hasMSA() || !ResTy.is128BitVector())
1747 return SDValue();
1748
1749 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1750 HasAnyUndefs, 8,
Daniel Sandersf49dd822013-09-24 13:33:07 +00001751 !Subtarget->isLittle()) && SplatBitSize <= 64) {
1752 // We can only cope with 8, 16, 32, or 64-bit elements
1753 if (SplatBitSize != 8 && SplatBitSize != 16 && SplatBitSize != 32 &&
1754 SplatBitSize != 64)
1755 return SDValue();
1756
1757 // If the value fits into a simm10 then we can use ldi.[bhwd]
1758 if (SplatValue.isSignedIntN(10))
1759 return Op;
1760
1761 EVT ViaVecTy;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001762
1763 switch (SplatBitSize) {
1764 default:
1765 return SDValue();
Daniel Sandersf49dd822013-09-24 13:33:07 +00001766 case 8:
1767 ViaVecTy = MVT::v16i8;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001768 break;
1769 case 16:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001770 ViaVecTy = MVT::v8i16;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001771 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001772 case 32:
1773 ViaVecTy = MVT::v4i32;
Daniel Sanders7a289d02013-09-23 12:02:46 +00001774 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001775 case 64:
1776 // There's no fill.d to fall back on for 64-bit values
1777 return SDValue();
Daniel Sanders7a289d02013-09-23 12:02:46 +00001778 }
1779
Daniel Sandersf49dd822013-09-24 13:33:07 +00001780 SmallVector<SDValue, 16> Ops;
1781 SDValue Constant = DAG.getConstant(SplatValue.sextOrSelf(32), MVT::i32);
1782
1783 for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i)
1784 Ops.push_back(Constant);
1785
1786 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Node), ViaVecTy,
1787 &Ops[0], Ops.size());
1788
1789 if (ViaVecTy != ResTy)
1790 Result = DAG.getNode(ISD::BITCAST, SDLoc(Node), ResTy, Result);
Daniel Sanders7a289d02013-09-23 12:02:46 +00001791
1792 return Result;
Daniel Sandersf49dd822013-09-24 13:33:07 +00001793 } else if (isSplatVector(Node))
1794 return Op;
1795 else if (!isConstantOrUndefBUILD_VECTOR(Node)) {
Daniel Sandersf86622b2013-09-24 13:16:15 +00001796 // Use INSERT_VECTOR_ELT operations rather than expand to stores.
1797 // The resulting code is the same length as the expansion, but it doesn't
1798 // use memory operations
1799 EVT ResTy = Node->getValueType(0);
1800
1801 assert(ResTy.isVector());
1802
1803 unsigned NumElts = ResTy.getVectorNumElements();
1804 SDValue Vector = DAG.getUNDEF(ResTy);
1805 for (unsigned i = 0; i < NumElts; ++i) {
1806 Vector = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, ResTy, Vector,
1807 Node->getOperand(i),
1808 DAG.getConstant(i, MVT::i32));
1809 }
1810 return Vector;
1811 }
Daniel Sanders7a289d02013-09-23 12:02:46 +00001812
1813 return SDValue();
1814}
1815
Daniel Sanders26307182013-09-24 14:20:00 +00001816// Lower VECTOR_SHUFFLE into SHF (if possible).
1817//
1818// SHF splits the vector into blocks of four elements, then shuffles these
1819// elements according to a <4 x i2> constant (encoded as an integer immediate).
1820//
1821// It is therefore possible to lower into SHF when the mask takes the form:
1822// <a, b, c, d, a+4, b+4, c+4, d+4, a+8, b+8, c+8, d+8, ...>
1823// When undef's appear they are treated as if they were whatever value is
1824// necessary in order to fit the above form.
1825//
1826// For example:
1827// %2 = shufflevector <8 x i16> %0, <8 x i16> undef,
1828// <8 x i32> <i32 3, i32 2, i32 1, i32 0,
1829// i32 7, i32 6, i32 5, i32 4>
1830// is lowered to:
1831// (SHF_H $w0, $w1, 27)
1832// where the 27 comes from:
1833// 3 + (2 << 2) + (1 << 4) + (0 << 6)
1834static SDValue lowerVECTOR_SHUFFLE_SHF(SDValue Op, EVT ResTy,
1835 SmallVector<int, 16> Indices,
1836 SelectionDAG &DAG) {
1837 int SHFIndices[4] = { -1, -1, -1, -1 };
1838
1839 if (Indices.size() < 4)
1840 return SDValue();
1841
1842 for (unsigned i = 0; i < 4; ++i) {
1843 for (unsigned j = i; j < Indices.size(); j += 4) {
1844 int Idx = Indices[j];
1845
1846 // Convert from vector index to 4-element subvector index
1847 // If an index refers to an element outside of the subvector then give up
1848 if (Idx != -1) {
1849 Idx -= 4 * (j / 4);
1850 if (Idx < 0 || Idx >= 4)
1851 return SDValue();
1852 }
1853
1854 // If the mask has an undef, replace it with the current index.
1855 // Note that it might still be undef if the current index is also undef
1856 if (SHFIndices[i] == -1)
1857 SHFIndices[i] = Idx;
1858
1859 // Check that non-undef values are the same as in the mask. If they
1860 // aren't then give up
1861 if (!(Idx == -1 || Idx == SHFIndices[i]))
1862 return SDValue();
1863 }
1864 }
1865
1866 // Calculate the immediate. Replace any remaining undefs with zero
1867 APInt Imm(32, 0);
1868 for (int i = 3; i >= 0; --i) {
1869 int Idx = SHFIndices[i];
1870
1871 if (Idx == -1)
1872 Idx = 0;
1873
1874 Imm <<= 2;
1875 Imm |= Idx & 0x3;
1876 }
1877
1878 return DAG.getNode(MipsISD::SHF, SDLoc(Op), ResTy,
1879 DAG.getConstant(Imm, MVT::i32), Op->getOperand(0));
1880}
1881
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001882// Lower VECTOR_SHUFFLE into ILVEV (if possible).
1883//
1884// ILVEV interleaves the even elements from each vector.
1885//
1886// It is possible to lower into ILVEV when the mask takes the form:
1887// <0, n, 2, n+2, 4, n+4, ...>
1888// where n is the number of elements in the vector.
1889//
1890// When undef's appear in the mask they are treated as if they were whatever
1891// value is necessary in order to fit the above form.
1892static SDValue lowerVECTOR_SHUFFLE_ILVEV(SDValue Op, EVT ResTy,
1893 SmallVector<int, 16> Indices,
1894 SelectionDAG &DAG) {
1895 assert ((Indices.size() % 2) == 0);
1896 int WsIdx = 0;
1897 int WtIdx = ResTy.getVectorNumElements();
1898
1899 for (unsigned i = 0; i < Indices.size(); i += 2) {
1900 if (Indices[i] != -1 && Indices[i] != WsIdx)
1901 return SDValue();
1902 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1903 return SDValue();
1904 WsIdx += 2;
1905 WtIdx += 2;
1906 }
1907
1908 return DAG.getNode(MipsISD::ILVEV, SDLoc(Op), ResTy, Op->getOperand(0),
1909 Op->getOperand(1));
1910}
1911
1912// Lower VECTOR_SHUFFLE into ILVOD (if possible).
1913//
1914// ILVOD interleaves the odd elements from each vector.
1915//
1916// It is possible to lower into ILVOD when the mask takes the form:
1917// <1, n+1, 3, n+3, 5, n+5, ...>
1918// where n is the number of elements in the vector.
1919//
1920// When undef's appear in the mask they are treated as if they were whatever
1921// value is necessary in order to fit the above form.
1922static SDValue lowerVECTOR_SHUFFLE_ILVOD(SDValue Op, EVT ResTy,
1923 SmallVector<int, 16> Indices,
1924 SelectionDAG &DAG) {
1925 assert ((Indices.size() % 2) == 0);
1926 int WsIdx = 1;
1927 int WtIdx = ResTy.getVectorNumElements() + 1;
1928
1929 for (unsigned i = 0; i < Indices.size(); i += 2) {
1930 if (Indices[i] != -1 && Indices[i] != WsIdx)
1931 return SDValue();
1932 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1933 return SDValue();
1934 WsIdx += 2;
1935 WtIdx += 2;
1936 }
1937
1938 return DAG.getNode(MipsISD::ILVOD, SDLoc(Op), ResTy, Op->getOperand(0),
1939 Op->getOperand(1));
1940}
1941
1942// Lower VECTOR_SHUFFLE into ILVL (if possible).
1943//
1944// ILVL interleaves consecutive elements from the left half of each vector.
1945//
1946// It is possible to lower into ILVL when the mask takes the form:
1947// <0, n, 1, n+1, 2, n+2, ...>
1948// where n is the number of elements in the vector.
1949//
1950// When undef's appear in the mask they are treated as if they were whatever
1951// value is necessary in order to fit the above form.
1952static SDValue lowerVECTOR_SHUFFLE_ILVL(SDValue Op, EVT ResTy,
1953 SmallVector<int, 16> Indices,
1954 SelectionDAG &DAG) {
1955 assert ((Indices.size() % 2) == 0);
1956 int WsIdx = 0;
1957 int WtIdx = ResTy.getVectorNumElements();
1958
1959 for (unsigned i = 0; i < Indices.size(); i += 2) {
1960 if (Indices[i] != -1 && Indices[i] != WsIdx)
1961 return SDValue();
1962 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1963 return SDValue();
1964 WsIdx ++;
1965 WtIdx ++;
1966 }
1967
1968 return DAG.getNode(MipsISD::ILVL, SDLoc(Op), ResTy, Op->getOperand(0),
1969 Op->getOperand(1));
1970}
1971
1972// Lower VECTOR_SHUFFLE into ILVR (if possible).
1973//
1974// ILVR interleaves consecutive elements from the right half of each vector.
1975//
1976// It is possible to lower into ILVR when the mask takes the form:
1977// <x, n+x, x+1, n+x+1, x+2, n+x+2, ...>
1978// where n is the number of elements in the vector and x is half n.
1979//
1980// When undef's appear in the mask they are treated as if they were whatever
1981// value is necessary in order to fit the above form.
1982static SDValue lowerVECTOR_SHUFFLE_ILVR(SDValue Op, EVT ResTy,
1983 SmallVector<int, 16> Indices,
1984 SelectionDAG &DAG) {
1985 assert ((Indices.size() % 2) == 0);
1986 unsigned NumElts = ResTy.getVectorNumElements();
1987 int WsIdx = NumElts / 2;
1988 int WtIdx = NumElts + NumElts / 2;
1989
1990 for (unsigned i = 0; i < Indices.size(); i += 2) {
1991 if (Indices[i] != -1 && Indices[i] != WsIdx)
1992 return SDValue();
1993 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1994 return SDValue();
1995 WsIdx ++;
1996 WtIdx ++;
1997 }
1998
1999 return DAG.getNode(MipsISD::ILVR, SDLoc(Op), ResTy, Op->getOperand(0),
2000 Op->getOperand(1));
2001}
2002
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002003// Lower VECTOR_SHUFFLE into PCKEV (if possible).
2004//
2005// PCKEV copies the even elements of each vector into the result vector.
2006//
2007// It is possible to lower into PCKEV when the mask takes the form:
2008// <0, 2, 4, ..., n, n+2, n+4, ...>
2009// where n is the number of elements in the vector.
2010//
2011// When undef's appear in the mask they are treated as if they were whatever
2012// value is necessary in order to fit the above form.
2013static SDValue lowerVECTOR_SHUFFLE_PCKEV(SDValue Op, EVT ResTy,
2014 SmallVector<int, 16> Indices,
2015 SelectionDAG &DAG) {
2016 assert ((Indices.size() % 2) == 0);
2017 int Idx = 0;
2018
2019 for (unsigned i = 0; i < Indices.size(); ++i) {
2020 if (Indices[i] != -1 && Indices[i] != Idx)
2021 return SDValue();
2022 Idx += 2;
2023 }
2024
2025 return DAG.getNode(MipsISD::PCKEV, SDLoc(Op), ResTy, Op->getOperand(0),
2026 Op->getOperand(1));
2027}
2028
2029// Lower VECTOR_SHUFFLE into PCKOD (if possible).
2030//
2031// PCKOD copies the odd elements of each vector into the result vector.
2032//
2033// It is possible to lower into PCKOD when the mask takes the form:
2034// <1, 3, 5, ..., n+1, n+3, n+5, ...>
2035// where n is the number of elements in the vector.
2036//
2037// When undef's appear in the mask they are treated as if they were whatever
2038// value is necessary in order to fit the above form.
2039static SDValue lowerVECTOR_SHUFFLE_PCKOD(SDValue Op, EVT ResTy,
2040 SmallVector<int, 16> Indices,
2041 SelectionDAG &DAG) {
2042 assert ((Indices.size() % 2) == 0);
2043 int Idx = 1;
2044
2045 for (unsigned i = 0; i < Indices.size(); ++i) {
2046 if (Indices[i] != -1 && Indices[i] != Idx)
2047 return SDValue();
2048 Idx += 2;
2049 }
2050
2051 return DAG.getNode(MipsISD::PCKOD, SDLoc(Op), ResTy, Op->getOperand(0),
2052 Op->getOperand(1));
2053}
2054
Daniel Sanderse5087042013-09-24 14:02:15 +00002055// Lower VECTOR_SHUFFLE into VSHF.
2056//
2057// This mostly consists of converting the shuffle indices in Indices into a
2058// BUILD_VECTOR and adding it as an operand to the resulting VSHF. There is
2059// also code to eliminate unused operands of the VECTOR_SHUFFLE. For example,
2060// if the type is v8i16 and all the indices are less than 8 then the second
2061// operand is unused and can be replaced with anything. We choose to replace it
2062// with the used operand since this reduces the number of instructions overall.
2063static SDValue lowerVECTOR_SHUFFLE_VSHF(SDValue Op, EVT ResTy,
2064 SmallVector<int, 16> Indices,
2065 SelectionDAG &DAG) {
2066 SmallVector<SDValue, 16> Ops;
2067 SDValue Op0;
2068 SDValue Op1;
2069 EVT MaskVecTy = ResTy.changeVectorElementTypeToInteger();
2070 EVT MaskEltTy = MaskVecTy.getVectorElementType();
2071 bool Using1stVec = false;
2072 bool Using2ndVec = false;
2073 SDLoc DL(Op);
2074 int ResTyNumElts = ResTy.getVectorNumElements();
2075
2076 for (int i = 0; i < ResTyNumElts; ++i) {
2077 // Idx == -1 means UNDEF
2078 int Idx = Indices[i];
2079
2080 if (0 <= Idx && Idx < ResTyNumElts)
2081 Using1stVec = true;
2082 if (ResTyNumElts <= Idx && Idx < ResTyNumElts * 2)
2083 Using2ndVec = true;
2084 }
2085
2086 for (SmallVector<int, 16>::iterator I = Indices.begin(); I != Indices.end();
2087 ++I)
2088 Ops.push_back(DAG.getTargetConstant(*I, MaskEltTy));
2089
2090 SDValue MaskVec = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVecTy, &Ops[0],
2091 Ops.size());
2092
2093 if (Using1stVec && Using2ndVec) {
2094 Op0 = Op->getOperand(0);
2095 Op1 = Op->getOperand(1);
2096 } else if (Using1stVec)
2097 Op0 = Op1 = Op->getOperand(0);
2098 else if (Using2ndVec)
2099 Op0 = Op1 = Op->getOperand(1);
2100 else
2101 llvm_unreachable("shuffle vector mask references neither vector operand?");
2102
2103 return DAG.getNode(MipsISD::VSHF, DL, ResTy, MaskVec, Op0, Op1);
2104}
2105
2106// Lower VECTOR_SHUFFLE into one of a number of instructions depending on the
2107// indices in the shuffle.
2108SDValue MipsSETargetLowering::lowerVECTOR_SHUFFLE(SDValue Op,
2109 SelectionDAG &DAG) const {
2110 ShuffleVectorSDNode *Node = cast<ShuffleVectorSDNode>(Op);
2111 EVT ResTy = Op->getValueType(0);
2112
2113 if (!ResTy.is128BitVector())
2114 return SDValue();
2115
2116 int ResTyNumElts = ResTy.getVectorNumElements();
2117 SmallVector<int, 16> Indices;
2118
2119 for (int i = 0; i < ResTyNumElts; ++i)
2120 Indices.push_back(Node->getMaskElt(i));
2121
Daniel Sanders26307182013-09-24 14:20:00 +00002122 SDValue Result = lowerVECTOR_SHUFFLE_SHF(Op, ResTy, Indices, DAG);
2123 if (Result.getNode())
2124 return Result;
Daniel Sanders2ed228b2013-09-24 14:36:12 +00002125 Result = lowerVECTOR_SHUFFLE_ILVEV(Op, ResTy, Indices, DAG);
2126 if (Result.getNode())
2127 return Result;
2128 Result = lowerVECTOR_SHUFFLE_ILVOD(Op, ResTy, Indices, DAG);
2129 if (Result.getNode())
2130 return Result;
2131 Result = lowerVECTOR_SHUFFLE_ILVL(Op, ResTy, Indices, DAG);
2132 if (Result.getNode())
2133 return Result;
2134 Result = lowerVECTOR_SHUFFLE_ILVR(Op, ResTy, Indices, DAG);
2135 if (Result.getNode())
2136 return Result;
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002137 Result = lowerVECTOR_SHUFFLE_PCKEV(Op, ResTy, Indices, DAG);
2138 if (Result.getNode())
2139 return Result;
2140 Result = lowerVECTOR_SHUFFLE_PCKOD(Op, ResTy, Indices, DAG);
2141 if (Result.getNode())
2142 return Result;
Daniel Sanderse5087042013-09-24 14:02:15 +00002143 return lowerVECTOR_SHUFFLE_VSHF(Op, ResTy, Indices, DAG);
2144}
2145
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002146MachineBasicBlock * MipsSETargetLowering::
2147emitBPOSGE32(MachineInstr *MI, MachineBasicBlock *BB) const{
2148 // $bb:
2149 // bposge32_pseudo $vr0
2150 // =>
2151 // $bb:
2152 // bposge32 $tbb
2153 // $fbb:
2154 // li $vr2, 0
2155 // b $sink
2156 // $tbb:
2157 // li $vr1, 1
2158 // $sink:
2159 // $vr0 = phi($vr2, $fbb, $vr1, $tbb)
2160
2161 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2162 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +00002163 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002164 DebugLoc DL = MI->getDebugLoc();
2165 const BasicBlock *LLVM_BB = BB->getBasicBlock();
2166 MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2167 MachineFunction *F = BB->getParent();
2168 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2169 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2170 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2171 F->insert(It, FBB);
2172 F->insert(It, TBB);
2173 F->insert(It, Sink);
2174
2175 // Transfer the remainder of BB and its successor edges to Sink.
2176 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2177 BB->end());
2178 Sink->transferSuccessorsAndUpdatePHIs(BB);
2179
2180 // Add successors.
2181 BB->addSuccessor(FBB);
2182 BB->addSuccessor(TBB);
2183 FBB->addSuccessor(Sink);
2184 TBB->addSuccessor(Sink);
2185
2186 // Insert the real bposge32 instruction to $BB.
2187 BuildMI(BB, DL, TII->get(Mips::BPOSGE32)).addMBB(TBB);
2188
2189 // Fill $FBB.
2190 unsigned VR2 = RegInfo.createVirtualRegister(RC);
2191 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), VR2)
2192 .addReg(Mips::ZERO).addImm(0);
2193 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2194
2195 // Fill $TBB.
2196 unsigned VR1 = RegInfo.createVirtualRegister(RC);
2197 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), VR1)
2198 .addReg(Mips::ZERO).addImm(1);
2199
2200 // Insert phi function to $Sink.
2201 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2202 MI->getOperand(0).getReg())
2203 .addReg(VR2).addMBB(FBB).addReg(VR1).addMBB(TBB);
2204
2205 MI->eraseFromParent(); // The pseudo instruction is gone now.
2206 return Sink;
2207}
Daniel Sandersce09d072013-08-28 12:14:50 +00002208
2209MachineBasicBlock * MipsSETargetLowering::
2210emitMSACBranchPseudo(MachineInstr *MI, MachineBasicBlock *BB,
2211 unsigned BranchOp) const{
2212 // $bb:
2213 // vany_nonzero $rd, $ws
2214 // =>
2215 // $bb:
2216 // bnz.b $ws, $tbb
2217 // b $fbb
2218 // $fbb:
2219 // li $rd1, 0
2220 // b $sink
2221 // $tbb:
2222 // li $rd2, 1
2223 // $sink:
2224 // $rd = phi($rd1, $fbb, $rd2, $tbb)
2225
2226 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2227 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2228 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
2229 DebugLoc DL = MI->getDebugLoc();
2230 const BasicBlock *LLVM_BB = BB->getBasicBlock();
2231 MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2232 MachineFunction *F = BB->getParent();
2233 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2234 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2235 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2236 F->insert(It, FBB);
2237 F->insert(It, TBB);
2238 F->insert(It, Sink);
2239
2240 // Transfer the remainder of BB and its successor edges to Sink.
2241 Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2242 BB->end());
2243 Sink->transferSuccessorsAndUpdatePHIs(BB);
2244
2245 // Add successors.
2246 BB->addSuccessor(FBB);
2247 BB->addSuccessor(TBB);
2248 FBB->addSuccessor(Sink);
2249 TBB->addSuccessor(Sink);
2250
2251 // Insert the real bnz.b instruction to $BB.
2252 BuildMI(BB, DL, TII->get(BranchOp))
2253 .addReg(MI->getOperand(1).getReg())
2254 .addMBB(TBB);
2255
2256 // Fill $FBB.
2257 unsigned RD1 = RegInfo.createVirtualRegister(RC);
2258 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), RD1)
2259 .addReg(Mips::ZERO).addImm(0);
2260 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2261
2262 // Fill $TBB.
2263 unsigned RD2 = RegInfo.createVirtualRegister(RC);
2264 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), RD2)
2265 .addReg(Mips::ZERO).addImm(1);
2266
2267 // Insert phi function to $Sink.
2268 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2269 MI->getOperand(0).getReg())
2270 .addReg(RD1).addMBB(FBB).addReg(RD2).addMBB(TBB);
2271
2272 MI->eraseFromParent(); // The pseudo instruction is gone now.
2273 return Sink;
2274}
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002275
2276// Emit the COPY_FW pseudo instruction.
2277//
2278// copy_fw_pseudo $fd, $ws, n
2279// =>
2280// copy_u_w $rt, $ws, $n
2281// mtc1 $rt, $fd
2282//
2283// When n is zero, the equivalent operation can be performed with (potentially)
2284// zero instructions due to register overlaps. This optimization is never valid
2285// for lane 1 because it would require FR=0 mode which isn't supported by MSA.
2286MachineBasicBlock * MipsSETargetLowering::
2287emitCOPY_FW(MachineInstr *MI, MachineBasicBlock *BB) const{
2288 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2289 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2290 DebugLoc DL = MI->getDebugLoc();
2291 unsigned Fd = MI->getOperand(0).getReg();
2292 unsigned Ws = MI->getOperand(1).getReg();
2293 unsigned Lane = MI->getOperand(2).getImm();
2294
2295 if (Lane == 0)
2296 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Ws, 0, Mips::sub_lo);
2297 else {
2298 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128WRegClass);
2299
2300 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_W), Wt).addReg(Ws).addImm(1);
2301 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Wt, 0, Mips::sub_lo);
2302 }
2303
2304 MI->eraseFromParent(); // The pseudo instruction is gone now.
2305 return BB;
2306}
2307
2308// Emit the COPY_FD pseudo instruction.
2309//
2310// copy_fd_pseudo $fd, $ws, n
2311// =>
2312// splati.d $wt, $ws, $n
2313// copy $fd, $wt:sub_64
2314//
2315// When n is zero, the equivalent operation can be performed with (potentially)
2316// zero instructions due to register overlaps. This optimization is always
2317// valid because FR=1 mode which is the only supported mode in MSA.
2318MachineBasicBlock * MipsSETargetLowering::
2319emitCOPY_FD(MachineInstr *MI, MachineBasicBlock *BB) const{
2320 assert(Subtarget->isFP64bit());
2321
2322 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2323 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2324 unsigned Fd = MI->getOperand(0).getReg();
2325 unsigned Ws = MI->getOperand(1).getReg();
2326 unsigned Lane = MI->getOperand(2).getImm() * 2;
2327 DebugLoc DL = MI->getDebugLoc();
2328
2329 if (Lane == 0)
2330 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Ws, 0, Mips::sub_64);
2331 else {
2332 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
2333
2334 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_D), Wt).addReg(Ws).addImm(1);
2335 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Wt, 0, Mips::sub_64);
2336 }
2337
2338 MI->eraseFromParent(); // The pseudo instruction is gone now.
2339 return BB;
2340}
Daniel Sandersa5150702013-09-27 12:31:32 +00002341
2342// Emit the INSERT_FW pseudo instruction.
2343//
2344// insert_fw_pseudo $wd, $wd_in, $n, $fs
2345// =>
2346// subreg_to_reg $wt:sub_lo, $fs
2347// insve_w $wd[$n], $wd_in, $wt[0]
2348MachineBasicBlock * MipsSETargetLowering::
2349emitINSERT_FW(MachineInstr *MI, MachineBasicBlock *BB) const{
2350 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2351 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2352 DebugLoc DL = MI->getDebugLoc();
2353 unsigned Wd = MI->getOperand(0).getReg();
2354 unsigned Wd_in = MI->getOperand(1).getReg();
2355 unsigned Lane = MI->getOperand(2).getImm();
2356 unsigned Fs = MI->getOperand(3).getReg();
2357 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128WRegClass);
2358
2359 BuildMI(*BB, MI, DL, TII->get(Mips::SUBREG_TO_REG), Wt)
2360 .addImm(0).addReg(Fs).addImm(Mips::sub_lo);
2361 BuildMI(*BB, MI, DL, TII->get(Mips::INSVE_W), Wd)
2362 .addReg(Wd_in).addImm(Lane).addReg(Wt);
2363
2364 MI->eraseFromParent(); // The pseudo instruction is gone now.
2365 return BB;
2366}
2367
2368// Emit the INSERT_FD pseudo instruction.
2369//
2370// insert_fd_pseudo $wd, $fs, n
2371// =>
2372// subreg_to_reg $wt:sub_64, $fs
2373// insve_d $wd[$n], $wd_in, $wt[0]
2374MachineBasicBlock * MipsSETargetLowering::
2375emitINSERT_FD(MachineInstr *MI, MachineBasicBlock *BB) const{
2376 assert(Subtarget->isFP64bit());
2377
2378 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2379 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2380 DebugLoc DL = MI->getDebugLoc();
2381 unsigned Wd = MI->getOperand(0).getReg();
2382 unsigned Wd_in = MI->getOperand(1).getReg();
2383 unsigned Lane = MI->getOperand(2).getImm();
2384 unsigned Fs = MI->getOperand(3).getReg();
2385 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
2386
2387 BuildMI(*BB, MI, DL, TII->get(Mips::SUBREG_TO_REG), Wt)
2388 .addImm(0).addReg(Fs).addImm(Mips::sub_64);
2389 BuildMI(*BB, MI, DL, TII->get(Mips::INSVE_D), Wd)
2390 .addReg(Wd_in).addImm(Lane).addReg(Wt);
2391
2392 MI->eraseFromParent(); // The pseudo instruction is gone now.
2393 return BB;
2394}