[mips][msa] Added support for matching splati from normal IR (i.e. not intrinsics)
[oota-llvm.git] / lib / Target / Mips / MipsSEISelLowering.cpp
1 //===-- MipsSEISelLowering.cpp - MipsSE DAG Lowering Interface --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // 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"
18 #include "llvm/IR/Intrinsics.h"
19 #include "llvm/Support/CommandLine.h"
20 #include "llvm/Target/TargetInstrInfo.h"
21
22 using namespace llvm;
23
24 static cl::opt<bool>
25 EnableMipsTailCalls("enable-mips-tail-calls", cl::Hidden,
26                     cl::desc("MIPS: Enable tail calls."), cl::init(false));
27
28 static 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
33 MipsSETargetLowering::MipsSETargetLowering(MipsTargetMachine &TM)
34   : MipsTargetLowering(TM) {
35   // Set up the register classes
36
37   clearRegisterClasses();
38
39   addRegisterClass(MVT::i32, &Mips::GPR32RegClass);
40
41   if (HasMips64)
42     addRegisterClass(MVT::i64, &Mips::GPR64RegClass);
43
44   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
60   if (Subtarget->hasDSP()) {
61     MVT::SimpleValueType VecTys[2] = {MVT::v2i16, MVT::v4i8};
62
63     for (unsigned i = 0; i < array_lengthof(VecTys); ++i) {
64       addRegisterClass(VecTys[i], &Mips::DSPRRegClass);
65
66       // Expand all builtin opcodes.
67       for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
68         setOperationAction(Opc, VecTys[i], Expand);
69
70       setOperationAction(ISD::ADD, VecTys[i], Legal);
71       setOperationAction(ISD::SUB, VecTys[i], Legal);
72       setOperationAction(ISD::LOAD, VecTys[i], Legal);
73       setOperationAction(ISD::STORE, VecTys[i], Legal);
74       setOperationAction(ISD::BITCAST, VecTys[i], Legal);
75     }
76
77     setTargetDAGCombine(ISD::SHL);
78     setTargetDAGCombine(ISD::SRA);
79     setTargetDAGCombine(ISD::SRL);
80     setTargetDAGCombine(ISD::SETCC);
81     setTargetDAGCombine(ISD::VSELECT);
82   }
83
84   if (Subtarget->hasDSPR2())
85     setOperationAction(ISD::MUL, MVT::v2i16, Legal);
86
87   if (Subtarget->hasMSA()) {
88     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);
95
96     setTargetDAGCombine(ISD::AND);
97     setTargetDAGCombine(ISD::SRA);
98     setTargetDAGCombine(ISD::VSELECT);
99     setTargetDAGCombine(ISD::XOR);
100   }
101
102   if (!Subtarget->mipsSEUsesSoftFloat()) {
103     addRegisterClass(MVT::f32, &Mips::FGR32RegClass);
104
105     // When dealing with single precision only, use libcalls
106     if (!Subtarget->isSingleFloat()) {
107       if (Subtarget->isFP64bit())
108         addRegisterClass(MVT::f64, &Mips::FGR64RegClass);
109       else
110         addRegisterClass(MVT::f64, &Mips::AFGR64RegClass);
111     }
112   }
113
114   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
119   if (HasMips64) {
120     setOperationAction(ISD::MULHS,            MVT::i64, Custom);
121     setOperationAction(ISD::MULHU,            MVT::i64, Custom);
122     setOperationAction(ISD::MUL,              MVT::i64, Custom);
123   }
124
125   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i64, Custom);
126   setOperationAction(ISD::INTRINSIC_W_CHAIN,  MVT::i64, Custom);
127
128   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);
132   setOperationAction(ISD::ATOMIC_FENCE,       MVT::Other, Custom);
133   setOperationAction(ISD::LOAD,               MVT::i32, Custom);
134   setOperationAction(ISD::STORE,              MVT::i32, Custom);
135
136   setTargetDAGCombine(ISD::ADDE);
137   setTargetDAGCombine(ISD::SUBE);
138   setTargetDAGCombine(ISD::MUL);
139
140   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
141   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
142   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
143
144   if (NoDPLoadStore) {
145     setOperationAction(ISD::LOAD, MVT::f64, Custom);
146     setOperationAction(ISD::STORE, MVT::f64, Custom);
147   }
148
149   computeRegisterProperties();
150 }
151
152 const MipsTargetLowering *
153 llvm::createMipsSETargetLowering(MipsTargetMachine &TM) {
154   return new MipsSETargetLowering(TM);
155 }
156
157 // Enable MSA support for the given integer type and Register class.
158 void MipsSETargetLowering::
159 addMSAIntType(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);
169   setOperationAction(ISD::EXTRACT_VECTOR_ELT, Ty, Custom);
170   setOperationAction(ISD::INSERT_VECTOR_ELT, Ty, Legal);
171   setOperationAction(ISD::BUILD_VECTOR, Ty, Custom);
172
173   setOperationAction(ISD::ADD, Ty, Legal);
174   setOperationAction(ISD::AND, Ty, Legal);
175   setOperationAction(ISD::CTLZ, Ty, Legal);
176   setOperationAction(ISD::CTPOP, Ty, Legal);
177   setOperationAction(ISD::MUL, Ty, Legal);
178   setOperationAction(ISD::OR, Ty, Legal);
179   setOperationAction(ISD::SDIV, Ty, Legal);
180   setOperationAction(ISD::SHL, Ty, Legal);
181   setOperationAction(ISD::SRA, Ty, Legal);
182   setOperationAction(ISD::SRL, Ty, Legal);
183   setOperationAction(ISD::SUB, Ty, Legal);
184   setOperationAction(ISD::UDIV, Ty, Legal);
185   setOperationAction(ISD::VECTOR_SHUFFLE, Ty, Custom);
186   setOperationAction(ISD::VSELECT, Ty, Legal);
187   setOperationAction(ISD::XOR, Ty, Legal);
188
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);
195 }
196
197 // Enable MSA support for the given floating-point type and Register class.
198 void MipsSETargetLowering::
199 addMSAFloatType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
200   addRegisterClass(Ty, RC);
201
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);
209   setOperationAction(ISD::EXTRACT_VECTOR_ELT, Ty, Legal);
210
211   if (Ty != MVT::v8f16) {
212     setOperationAction(ISD::FABS,  Ty, Legal);
213     setOperationAction(ISD::FADD,  Ty, Legal);
214     setOperationAction(ISD::FDIV,  Ty, Legal);
215     setOperationAction(ISD::FLOG2, Ty, Legal);
216     setOperationAction(ISD::FMUL,  Ty, Legal);
217     setOperationAction(ISD::FRINT, Ty, Legal);
218     setOperationAction(ISD::FSQRT, Ty, Legal);
219     setOperationAction(ISD::FSUB,  Ty, Legal);
220     setOperationAction(ISD::VSELECT, Ty, Legal);
221
222     setOperationAction(ISD::SETCC, Ty, Legal);
223     setCondCodeAction(ISD::SETOGE, Ty, Expand);
224     setCondCodeAction(ISD::SETOGT, Ty, Expand);
225     setCondCodeAction(ISD::SETUGE, Ty, Expand);
226     setCondCodeAction(ISD::SETUGT, Ty, Expand);
227     setCondCodeAction(ISD::SETGE,  Ty, Expand);
228     setCondCodeAction(ISD::SETGT,  Ty, Expand);
229   }
230 }
231
232 bool
233 MipsSETargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
234   MVT::SimpleValueType SVT = VT.getSimpleVT().SimpleTy;
235
236   switch (SVT) {
237   case MVT::i64:
238   case MVT::i32:
239     if (Fast)
240       *Fast = true;
241     return true;
242   default:
243     return false;
244   }
245 }
246
247 SDValue MipsSETargetLowering::LowerOperation(SDValue Op,
248                                              SelectionDAG &DAG) const {
249   switch(Op.getOpcode()) {
250   case ISD::LOAD:  return lowerLOAD(Op, DAG);
251   case ISD::STORE: return lowerSTORE(Op, DAG);
252   case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG);
253   case ISD::UMUL_LOHI: return lowerMulDiv(Op, MipsISD::Multu, true, true, DAG);
254   case ISD::MULHS:     return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG);
255   case ISD::MULHU:     return lowerMulDiv(Op, MipsISD::Multu, false, true, DAG);
256   case ISD::MUL:       return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG);
257   case ISD::SDIVREM:   return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG);
258   case ISD::UDIVREM:   return lowerMulDiv(Op, MipsISD::DivRemU, true, true,
259                                           DAG);
260   case ISD::INTRINSIC_WO_CHAIN: return lowerINTRINSIC_WO_CHAIN(Op, DAG);
261   case ISD::INTRINSIC_W_CHAIN:  return lowerINTRINSIC_W_CHAIN(Op, DAG);
262   case ISD::INTRINSIC_VOID:     return lowerINTRINSIC_VOID(Op, DAG);
263   case ISD::EXTRACT_VECTOR_ELT: return lowerEXTRACT_VECTOR_ELT(Op, DAG);
264   case ISD::BUILD_VECTOR:       return lowerBUILD_VECTOR(Op, DAG);
265   case ISD::VECTOR_SHUFFLE:     return lowerVECTOR_SHUFFLE(Op, DAG);
266   }
267
268   return MipsTargetLowering::LowerOperation(Op, DAG);
269 }
270
271 // selectMADD -
272 // Transforms a subgraph in CurDAG if the following pattern is found:
273 //  (addc multLo, Lo0), (adde multHi, Hi0),
274 // where,
275 //  multHi/Lo: product of multiplication
276 //  Lo0: initial value of Lo register
277 //  Hi0: initial value of Hi register
278 // Return true if pattern matching was successful.
279 static bool selectMADD(SDNode *ADDENode, SelectionDAG *CurDAG) {
280   // ADDENode's second operand must be a flag output of an ADDC node in order
281   // for the matching to be successful.
282   SDNode *ADDCNode = ADDENode->getOperand(2).getNode();
283
284   if (ADDCNode->getOpcode() != ISD::ADDC)
285     return false;
286
287   SDValue MultHi = ADDENode->getOperand(0);
288   SDValue MultLo = ADDCNode->getOperand(0);
289   SDNode *MultNode = MultHi.getNode();
290   unsigned MultOpc = MultHi.getOpcode();
291
292   // MultHi and MultLo must be generated by the same node,
293   if (MultLo.getNode() != MultNode)
294     return false;
295
296   // and it must be a multiplication.
297   if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
298     return false;
299
300   // MultLo amd MultHi must be the first and second output of MultNode
301   // respectively.
302   if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
303     return false;
304
305   // Transform this to a MADD only if ADDENode and ADDCNode are the only users
306   // of the values of MultNode, in which case MultNode will be removed in later
307   // phases.
308   // If there exist users other than ADDENode or ADDCNode, this function returns
309   // here, which will result in MultNode being mapped to a single MULT
310   // instruction node rather than a pair of MULT and MADD instructions being
311   // produced.
312   if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
313     return false;
314
315   SDLoc DL(ADDENode);
316
317   // Initialize accumulator.
318   SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
319                                   ADDCNode->getOperand(1),
320                                   ADDENode->getOperand(1));
321
322   // create MipsMAdd(u) node
323   MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MAddu : MipsISD::MAdd;
324
325   SDValue MAdd = CurDAG->getNode(MultOpc, DL, MVT::Untyped,
326                                  MultNode->getOperand(0),// Factor 0
327                                  MultNode->getOperand(1),// Factor 1
328                                  ACCIn);
329
330   // replace uses of adde and addc here
331   if (!SDValue(ADDCNode, 0).use_empty()) {
332     SDValue LoIdx = CurDAG->getConstant(Mips::sub_lo, MVT::i32);
333     SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MAdd,
334                                     LoIdx);
335     CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDCNode, 0), LoOut);
336   }
337   if (!SDValue(ADDENode, 0).use_empty()) {
338     SDValue HiIdx = CurDAG->getConstant(Mips::sub_hi, MVT::i32);
339     SDValue HiOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MAdd,
340                                     HiIdx);
341     CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDENode, 0), HiOut);
342   }
343
344   return true;
345 }
346
347 // selectMSUB -
348 // Transforms a subgraph in CurDAG if the following pattern is found:
349 //  (addc Lo0, multLo), (sube Hi0, multHi),
350 // where,
351 //  multHi/Lo: product of multiplication
352 //  Lo0: initial value of Lo register
353 //  Hi0: initial value of Hi register
354 // Return true if pattern matching was successful.
355 static bool selectMSUB(SDNode *SUBENode, SelectionDAG *CurDAG) {
356   // SUBENode's second operand must be a flag output of an SUBC node in order
357   // for the matching to be successful.
358   SDNode *SUBCNode = SUBENode->getOperand(2).getNode();
359
360   if (SUBCNode->getOpcode() != ISD::SUBC)
361     return false;
362
363   SDValue MultHi = SUBENode->getOperand(1);
364   SDValue MultLo = SUBCNode->getOperand(1);
365   SDNode *MultNode = MultHi.getNode();
366   unsigned MultOpc = MultHi.getOpcode();
367
368   // MultHi and MultLo must be generated by the same node,
369   if (MultLo.getNode() != MultNode)
370     return false;
371
372   // and it must be a multiplication.
373   if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
374     return false;
375
376   // MultLo amd MultHi must be the first and second output of MultNode
377   // respectively.
378   if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
379     return false;
380
381   // Transform this to a MSUB only if SUBENode and SUBCNode are the only users
382   // of the values of MultNode, in which case MultNode will be removed in later
383   // phases.
384   // If there exist users other than SUBENode or SUBCNode, this function returns
385   // here, which will result in MultNode being mapped to a single MULT
386   // instruction node rather than a pair of MULT and MSUB instructions being
387   // produced.
388   if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
389     return false;
390
391   SDLoc DL(SUBENode);
392
393   // Initialize accumulator.
394   SDValue ACCIn = CurDAG->getNode(MipsISD::InsertLOHI, DL, MVT::Untyped,
395                                   SUBCNode->getOperand(0),
396                                   SUBENode->getOperand(0));
397
398   // create MipsSub(u) node
399   MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MSubu : MipsISD::MSub;
400
401   SDValue MSub = CurDAG->getNode(MultOpc, DL, MVT::Glue,
402                                  MultNode->getOperand(0),// Factor 0
403                                  MultNode->getOperand(1),// Factor 1
404                                  ACCIn);
405
406   // replace uses of sube and subc here
407   if (!SDValue(SUBCNode, 0).use_empty()) {
408     SDValue LoIdx = CurDAG->getConstant(Mips::sub_lo, MVT::i32);
409     SDValue LoOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MSub,
410                                     LoIdx);
411     CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBCNode, 0), LoOut);
412   }
413   if (!SDValue(SUBENode, 0).use_empty()) {
414     SDValue HiIdx = CurDAG->getConstant(Mips::sub_hi, MVT::i32);
415     SDValue HiOut = CurDAG->getNode(MipsISD::ExtractLOHI, DL, MVT::i32, MSub,
416                                     HiIdx);
417     CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBENode, 0), HiOut);
418   }
419
420   return true;
421 }
422
423 static SDValue performADDECombine(SDNode *N, SelectionDAG &DAG,
424                                   TargetLowering::DAGCombinerInfo &DCI,
425                                   const MipsSubtarget *Subtarget) {
426   if (DCI.isBeforeLegalize())
427     return SDValue();
428
429   if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
430       selectMADD(N, &DAG))
431     return SDValue(N, 0);
432
433   return SDValue();
434 }
435
436 // Fold zero extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT
437 //
438 // Performs the following transformations:
439 // - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to zero extension if its
440 //   sign/zero-extension is completely overwritten by the new one performed by
441 //   the ISD::AND.
442 // - Removes redundant zero extensions performed by an ISD::AND.
443 static SDValue performANDCombine(SDNode *N, SelectionDAG &DAG,
444                                  TargetLowering::DAGCombinerInfo &DCI,
445                                  const MipsSubtarget *Subtarget) {
446   if (!Subtarget->hasMSA())
447     return SDValue();
448
449   SDValue Op0 = N->getOperand(0);
450   SDValue Op1 = N->getOperand(1);
451   unsigned Op0Opcode = Op0->getOpcode();
452
453   // (and (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d)
454   // where $d + 1 == 2^n and n == 32
455   // or    $d + 1 == 2^n and n <= 32 and ZExt
456   // -> (MipsVExtractZExt $a, $b, $c)
457   if (Op0Opcode == MipsISD::VEXTRACT_SEXT_ELT ||
458       Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT) {
459     ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(Op1);
460
461     if (!Mask)
462       return SDValue();
463
464     int32_t Log2IfPositive = (Mask->getAPIntValue() + 1).exactLogBase2();
465
466     if (Log2IfPositive <= 0)
467       return SDValue(); // Mask+1 is not a power of 2
468
469     SDValue Op0Op2 = Op0->getOperand(2);
470     EVT ExtendTy = cast<VTSDNode>(Op0Op2)->getVT();
471     unsigned ExtendTySize = ExtendTy.getSizeInBits();
472     unsigned Log2 = Log2IfPositive;
473
474     if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT && Log2 >= ExtendTySize) ||
475         Log2 == ExtendTySize) {
476       SDValue Ops[] = { Op0->getOperand(0), Op0->getOperand(1), Op0Op2 };
477       DAG.MorphNodeTo(Op0.getNode(), MipsISD::VEXTRACT_ZEXT_ELT,
478                       Op0->getVTList(), Ops, Op0->getNumOperands());
479       return Op0;
480     }
481   }
482
483   return SDValue();
484 }
485
486 static SDValue performSUBECombine(SDNode *N, SelectionDAG &DAG,
487                                   TargetLowering::DAGCombinerInfo &DCI,
488                                   const MipsSubtarget *Subtarget) {
489   if (DCI.isBeforeLegalize())
490     return SDValue();
491
492   if (Subtarget->hasMips32() && N->getValueType(0) == MVT::i32 &&
493       selectMSUB(N, &DAG))
494     return SDValue(N, 0);
495
496   return SDValue();
497 }
498
499 static SDValue genConstMult(SDValue X, uint64_t C, SDLoc DL, EVT VT,
500                             EVT ShiftTy, SelectionDAG &DAG) {
501   // Clear the upper (64 - VT.sizeInBits) bits.
502   C &= ((uint64_t)-1) >> (64 - VT.getSizeInBits());
503
504   // Return 0.
505   if (C == 0)
506     return DAG.getConstant(0, VT);
507
508   // Return x.
509   if (C == 1)
510     return X;
511
512   // If c is power of 2, return (shl x, log2(c)).
513   if (isPowerOf2_64(C))
514     return DAG.getNode(ISD::SHL, DL, VT, X,
515                        DAG.getConstant(Log2_64(C), ShiftTy));
516
517   unsigned Log2Ceil = Log2_64_Ceil(C);
518   uint64_t Floor = 1LL << Log2_64(C);
519   uint64_t Ceil = Log2Ceil == 64 ? 0LL : 1LL << Log2Ceil;
520
521   // If |c - floor_c| <= |c - ceil_c|,
522   // where floor_c = pow(2, floor(log2(c))) and ceil_c = pow(2, ceil(log2(c))),
523   // return (add constMult(x, floor_c), constMult(x, c - floor_c)).
524   if (C - Floor <= Ceil - C) {
525     SDValue Op0 = genConstMult(X, Floor, DL, VT, ShiftTy, DAG);
526     SDValue Op1 = genConstMult(X, C - Floor, DL, VT, ShiftTy, DAG);
527     return DAG.getNode(ISD::ADD, DL, VT, Op0, Op1);
528   }
529
530   // If |c - floor_c| > |c - ceil_c|,
531   // return (sub constMult(x, ceil_c), constMult(x, ceil_c - c)).
532   SDValue Op0 = genConstMult(X, Ceil, DL, VT, ShiftTy, DAG);
533   SDValue Op1 = genConstMult(X, Ceil - C, DL, VT, ShiftTy, DAG);
534   return DAG.getNode(ISD::SUB, DL, VT, Op0, Op1);
535 }
536
537 static SDValue performMULCombine(SDNode *N, SelectionDAG &DAG,
538                                  const TargetLowering::DAGCombinerInfo &DCI,
539                                  const MipsSETargetLowering *TL) {
540   EVT VT = N->getValueType(0);
541
542   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
543     if (!VT.isVector())
544       return genConstMult(N->getOperand(0), C->getZExtValue(), SDLoc(N),
545                           VT, TL->getScalarShiftAmountTy(VT), DAG);
546
547   return SDValue(N, 0);
548 }
549
550 static SDValue performDSPShiftCombine(unsigned Opc, SDNode *N, EVT Ty,
551                                       SelectionDAG &DAG,
552                                       const MipsSubtarget *Subtarget) {
553   // See if this is a vector splat immediate node.
554   APInt SplatValue, SplatUndef;
555   unsigned SplatBitSize;
556   bool HasAnyUndefs;
557   unsigned EltSize = Ty.getVectorElementType().getSizeInBits();
558   BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
559
560   if (!BV ||
561       !BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
562                            EltSize, !Subtarget->isLittle()) ||
563       (SplatBitSize != EltSize) ||
564       (SplatValue.getZExtValue() >= EltSize))
565     return SDValue();
566
567   return DAG.getNode(Opc, SDLoc(N), Ty, N->getOperand(0),
568                      DAG.getConstant(SplatValue.getZExtValue(), MVT::i32));
569 }
570
571 static SDValue performSHLCombine(SDNode *N, SelectionDAG &DAG,
572                                  TargetLowering::DAGCombinerInfo &DCI,
573                                  const MipsSubtarget *Subtarget) {
574   EVT Ty = N->getValueType(0);
575
576   if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
577     return SDValue();
578
579   return performDSPShiftCombine(MipsISD::SHLL_DSP, N, Ty, DAG, Subtarget);
580 }
581
582 // Fold sign-extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT for MSA and fold
583 // constant splats into MipsISD::SHRA_DSP for DSPr2.
584 //
585 // Performs the following transformations:
586 // - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to sign extension if its
587 //   sign/zero-extension is completely overwritten by the new one performed by
588 //   the ISD::SRA and ISD::SHL nodes.
589 // - Removes redundant sign extensions performed by an ISD::SRA and ISD::SHL
590 //   sequence.
591 //
592 // See performDSPShiftCombine for more information about the transformation
593 // used for DSPr2.
594 static SDValue performSRACombine(SDNode *N, SelectionDAG &DAG,
595                                  TargetLowering::DAGCombinerInfo &DCI,
596                                  const MipsSubtarget *Subtarget) {
597   EVT Ty = N->getValueType(0);
598
599   if (Subtarget->hasMSA()) {
600     SDValue Op0 = N->getOperand(0);
601     SDValue Op1 = N->getOperand(1);
602
603     // (sra (shl (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d), imm:$d)
604     // where $d + sizeof($c) == 32
605     // or    $d + sizeof($c) <= 32 and SExt
606     // -> (MipsVExtractSExt $a, $b, $c)
607     if (Op0->getOpcode() == ISD::SHL && Op1 == Op0->getOperand(1)) {
608       SDValue Op0Op0 = Op0->getOperand(0);
609       ConstantSDNode *ShAmount = dyn_cast<ConstantSDNode>(Op1);
610
611       if (!ShAmount)
612         return SDValue();
613
614       if (Op0Op0->getOpcode() != MipsISD::VEXTRACT_SEXT_ELT &&
615           Op0Op0->getOpcode() != MipsISD::VEXTRACT_ZEXT_ELT)
616         return SDValue();
617
618       EVT ExtendTy = cast<VTSDNode>(Op0Op0->getOperand(2))->getVT();
619       unsigned TotalBits = ShAmount->getZExtValue() + ExtendTy.getSizeInBits();
620
621       if (TotalBits == 32 ||
622           (Op0Op0->getOpcode() == MipsISD::VEXTRACT_SEXT_ELT &&
623            TotalBits <= 32)) {
624         SDValue Ops[] = { Op0Op0->getOperand(0), Op0Op0->getOperand(1),
625                           Op0Op0->getOperand(2) };
626         DAG.MorphNodeTo(Op0Op0.getNode(), MipsISD::VEXTRACT_SEXT_ELT,
627                         Op0Op0->getVTList(), Ops, Op0Op0->getNumOperands());
628         return Op0Op0;
629       }
630     }
631   }
632
633   if ((Ty != MVT::v2i16) && ((Ty != MVT::v4i8) || !Subtarget->hasDSPR2()))
634     return SDValue();
635
636   return performDSPShiftCombine(MipsISD::SHRA_DSP, N, Ty, DAG, Subtarget);
637 }
638
639
640 static SDValue performSRLCombine(SDNode *N, SelectionDAG &DAG,
641                                  TargetLowering::DAGCombinerInfo &DCI,
642                                  const MipsSubtarget *Subtarget) {
643   EVT Ty = N->getValueType(0);
644
645   if (((Ty != MVT::v2i16) || !Subtarget->hasDSPR2()) && (Ty != MVT::v4i8))
646     return SDValue();
647
648   return performDSPShiftCombine(MipsISD::SHRL_DSP, N, Ty, DAG, Subtarget);
649 }
650
651 static bool isLegalDSPCondCode(EVT Ty, ISD::CondCode CC) {
652   bool IsV216 = (Ty == MVT::v2i16);
653
654   switch (CC) {
655   case ISD::SETEQ:
656   case ISD::SETNE:  return true;
657   case ISD::SETLT:
658   case ISD::SETLE:
659   case ISD::SETGT:
660   case ISD::SETGE:  return IsV216;
661   case ISD::SETULT:
662   case ISD::SETULE:
663   case ISD::SETUGT:
664   case ISD::SETUGE: return !IsV216;
665   default:          return false;
666   }
667 }
668
669 static SDValue performSETCCCombine(SDNode *N, SelectionDAG &DAG) {
670   EVT Ty = N->getValueType(0);
671
672   if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
673     return SDValue();
674
675   if (!isLegalDSPCondCode(Ty, cast<CondCodeSDNode>(N->getOperand(2))->get()))
676     return SDValue();
677
678   return DAG.getNode(MipsISD::SETCC_DSP, SDLoc(N), Ty, N->getOperand(0),
679                      N->getOperand(1), N->getOperand(2));
680 }
681
682 static SDValue performVSELECTCombine(SDNode *N, SelectionDAG &DAG) {
683   EVT Ty = N->getValueType(0);
684
685   if (Ty.is128BitVector() && Ty.isInteger()) {
686     // Try the following combines:
687     //   (vselect (setcc $a, $b, SETLT), $b, $a)) -> (vsmax $a, $b)
688     //   (vselect (setcc $a, $b, SETLE), $b, $a)) -> (vsmax $a, $b)
689     //   (vselect (setcc $a, $b, SETLT), $a, $b)) -> (vsmin $a, $b)
690     //   (vselect (setcc $a, $b, SETLE), $a, $b)) -> (vsmin $a, $b)
691     //   (vselect (setcc $a, $b, SETULT), $b, $a)) -> (vumax $a, $b)
692     //   (vselect (setcc $a, $b, SETULE), $b, $a)) -> (vumax $a, $b)
693     //   (vselect (setcc $a, $b, SETULT), $a, $b)) -> (vumin $a, $b)
694     //   (vselect (setcc $a, $b, SETULE), $a, $b)) -> (vumin $a, $b)
695     // SETGT/SETGE/SETUGT/SETUGE variants of these will show up initially but
696     // will be expanded to equivalent SETLT/SETLE/SETULT/SETULE versions by the
697     // legalizer.
698     SDValue Op0 = N->getOperand(0);
699
700     if (Op0->getOpcode() != ISD::SETCC)
701       return SDValue();
702
703     ISD::CondCode CondCode = cast<CondCodeSDNode>(Op0->getOperand(2))->get();
704     bool Signed;
705
706     if (CondCode == ISD::SETLT  || CondCode == ISD::SETLE)
707       Signed = true;
708     else if (CondCode == ISD::SETULT || CondCode == ISD::SETULE)
709       Signed = false;
710     else
711       return SDValue();
712
713     SDValue Op1 = N->getOperand(1);
714     SDValue Op2 = N->getOperand(2);
715     SDValue Op0Op0 = Op0->getOperand(0);
716     SDValue Op0Op1 = Op0->getOperand(1);
717
718     if (Op1 == Op0Op0 && Op2 == Op0Op1)
719       return DAG.getNode(Signed ? MipsISD::VSMIN : MipsISD::VUMIN, SDLoc(N),
720                          Ty, Op1, Op2);
721     else if (Op1 == Op0Op1 && Op2 == Op0Op0)
722       return DAG.getNode(Signed ? MipsISD::VSMAX : MipsISD::VUMAX, SDLoc(N),
723                          Ty, Op1, Op2);
724   } else if ((Ty == MVT::v2i16) || (Ty == MVT::v4i8)) {
725     SDValue SetCC = N->getOperand(0);
726
727     if (SetCC.getOpcode() != MipsISD::SETCC_DSP)
728       return SDValue();
729
730     return DAG.getNode(MipsISD::SELECT_CC_DSP, SDLoc(N), Ty,
731                        SetCC.getOperand(0), SetCC.getOperand(1),
732                        N->getOperand(1), N->getOperand(2), SetCC.getOperand(2));
733   }
734
735   return SDValue();
736 }
737
738 static SDValue performXORCombine(SDNode *N, SelectionDAG &DAG,
739                                  const MipsSubtarget *Subtarget) {
740   EVT Ty = N->getValueType(0);
741
742   if (Subtarget->hasMSA() && Ty.is128BitVector() && Ty.isInteger()) {
743     // Try the following combines:
744     //   (xor (or $a, $b), (build_vector allones))
745     //   (xor (or $a, $b), (bitcast (build_vector allones)))
746     SDValue Op0 = N->getOperand(0);
747     SDValue Op1 = N->getOperand(1);
748     SDValue NotOp;
749
750     if (ISD::isBuildVectorAllOnes(Op0.getNode()))
751       NotOp = Op1;
752     else if (ISD::isBuildVectorAllOnes(Op1.getNode()))
753       NotOp = Op0;
754     else
755       return SDValue();
756
757     if (NotOp->getOpcode() == ISD::OR)
758       return DAG.getNode(MipsISD::VNOR, SDLoc(N), Ty, NotOp->getOperand(0),
759                          NotOp->getOperand(1));
760   }
761
762   return SDValue();
763 }
764
765 SDValue
766 MipsSETargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const {
767   SelectionDAG &DAG = DCI.DAG;
768   SDValue Val;
769
770   switch (N->getOpcode()) {
771   case ISD::ADDE:
772     return performADDECombine(N, DAG, DCI, Subtarget);
773   case ISD::AND:
774     Val = performANDCombine(N, DAG, DCI, Subtarget);
775     break;
776   case ISD::SUBE:
777     return performSUBECombine(N, DAG, DCI, Subtarget);
778   case ISD::MUL:
779     return performMULCombine(N, DAG, DCI, this);
780   case ISD::SHL:
781     return performSHLCombine(N, DAG, DCI, Subtarget);
782   case ISD::SRA:
783     return performSRACombine(N, DAG, DCI, Subtarget);
784   case ISD::SRL:
785     return performSRLCombine(N, DAG, DCI, Subtarget);
786   case ISD::VSELECT:
787     return performVSELECTCombine(N, DAG);
788   case ISD::XOR:
789     Val = performXORCombine(N, DAG, Subtarget);
790     break;
791   case ISD::SETCC:
792     Val = performSETCCCombine(N, DAG);
793     break;
794   }
795
796   if (Val.getNode())
797     return Val;
798
799   return MipsTargetLowering::PerformDAGCombine(N, DCI);
800 }
801
802 MachineBasicBlock *
803 MipsSETargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
804                                                   MachineBasicBlock *BB) const {
805   switch (MI->getOpcode()) {
806   default:
807     return MipsTargetLowering::EmitInstrWithCustomInserter(MI, BB);
808   case Mips::BPOSGE32_PSEUDO:
809     return emitBPOSGE32(MI, BB);
810   case Mips::SNZ_B_PSEUDO:
811     return emitMSACBranchPseudo(MI, BB, Mips::BNZ_B);
812   case Mips::SNZ_H_PSEUDO:
813     return emitMSACBranchPseudo(MI, BB, Mips::BNZ_H);
814   case Mips::SNZ_W_PSEUDO:
815     return emitMSACBranchPseudo(MI, BB, Mips::BNZ_W);
816   case Mips::SNZ_D_PSEUDO:
817     return emitMSACBranchPseudo(MI, BB, Mips::BNZ_D);
818   case Mips::SNZ_V_PSEUDO:
819     return emitMSACBranchPseudo(MI, BB, Mips::BNZ_V);
820   case Mips::SZ_B_PSEUDO:
821     return emitMSACBranchPseudo(MI, BB, Mips::BZ_B);
822   case Mips::SZ_H_PSEUDO:
823     return emitMSACBranchPseudo(MI, BB, Mips::BZ_H);
824   case Mips::SZ_W_PSEUDO:
825     return emitMSACBranchPseudo(MI, BB, Mips::BZ_W);
826   case Mips::SZ_D_PSEUDO:
827     return emitMSACBranchPseudo(MI, BB, Mips::BZ_D);
828   case Mips::SZ_V_PSEUDO:
829     return emitMSACBranchPseudo(MI, BB, Mips::BZ_V);
830   }
831 }
832
833 bool MipsSETargetLowering::
834 isEligibleForTailCallOptimization(const MipsCC &MipsCCInfo,
835                                   unsigned NextStackOffset,
836                                   const MipsFunctionInfo& FI) const {
837   if (!EnableMipsTailCalls)
838     return false;
839
840   // Return false if either the callee or caller has a byval argument.
841   if (MipsCCInfo.hasByValArg() || FI.hasByvalArg())
842     return false;
843
844   // Return true if the callee's argument area is no larger than the
845   // caller's.
846   return NextStackOffset <= FI.getIncomingArgSize();
847 }
848
849 void MipsSETargetLowering::
850 getOpndList(SmallVectorImpl<SDValue> &Ops,
851             std::deque< std::pair<unsigned, SDValue> > &RegsToPass,
852             bool IsPICCall, bool GlobalOrExternal, bool InternalLinkage,
853             CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const {
854   // T9 should contain the address of the callee function if
855   // -reloction-model=pic or it is an indirect call.
856   if (IsPICCall || !GlobalOrExternal) {
857     unsigned T9Reg = IsN64 ? Mips::T9_64 : Mips::T9;
858     RegsToPass.push_front(std::make_pair(T9Reg, Callee));
859   } else
860     Ops.push_back(Callee);
861
862   MipsTargetLowering::getOpndList(Ops, RegsToPass, IsPICCall, GlobalOrExternal,
863                                   InternalLinkage, CLI, Callee, Chain);
864 }
865
866 SDValue MipsSETargetLowering::lowerLOAD(SDValue Op, SelectionDAG &DAG) const {
867   LoadSDNode &Nd = *cast<LoadSDNode>(Op);
868
869   if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
870     return MipsTargetLowering::lowerLOAD(Op, DAG);
871
872   // Replace a double precision load with two i32 loads and a buildpair64.
873   SDLoc DL(Op);
874   SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
875   EVT PtrVT = Ptr.getValueType();
876
877   // i32 load from lower address.
878   SDValue Lo = DAG.getLoad(MVT::i32, DL, Chain, Ptr,
879                            MachinePointerInfo(), Nd.isVolatile(),
880                            Nd.isNonTemporal(), Nd.isInvariant(),
881                            Nd.getAlignment());
882
883   // i32 load from higher address.
884   Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
885   SDValue Hi = DAG.getLoad(MVT::i32, DL, Lo.getValue(1), Ptr,
886                            MachinePointerInfo(), Nd.isVolatile(),
887                            Nd.isNonTemporal(), Nd.isInvariant(),
888                            std::min(Nd.getAlignment(), 4U));
889
890   if (!Subtarget->isLittle())
891     std::swap(Lo, Hi);
892
893   SDValue BP = DAG.getNode(MipsISD::BuildPairF64, DL, MVT::f64, Lo, Hi);
894   SDValue Ops[2] = {BP, Hi.getValue(1)};
895   return DAG.getMergeValues(Ops, 2, DL);
896 }
897
898 SDValue MipsSETargetLowering::lowerSTORE(SDValue Op, SelectionDAG &DAG) const {
899   StoreSDNode &Nd = *cast<StoreSDNode>(Op);
900
901   if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
902     return MipsTargetLowering::lowerSTORE(Op, DAG);
903
904   // Replace a double precision store with two extractelement64s and i32 stores.
905   SDLoc DL(Op);
906   SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
907   EVT PtrVT = Ptr.getValueType();
908   SDValue Lo = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
909                            Val, DAG.getConstant(0, MVT::i32));
910   SDValue Hi = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
911                            Val, DAG.getConstant(1, MVT::i32));
912
913   if (!Subtarget->isLittle())
914     std::swap(Lo, Hi);
915
916   // i32 store to lower address.
917   Chain = DAG.getStore(Chain, DL, Lo, Ptr, MachinePointerInfo(),
918                        Nd.isVolatile(), Nd.isNonTemporal(), Nd.getAlignment(),
919                        Nd.getTBAAInfo());
920
921   // i32 store to higher address.
922   Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, PtrVT));
923   return DAG.getStore(Chain, DL, Hi, Ptr, MachinePointerInfo(),
924                       Nd.isVolatile(), Nd.isNonTemporal(),
925                       std::min(Nd.getAlignment(), 4U), Nd.getTBAAInfo());
926 }
927
928 SDValue MipsSETargetLowering::lowerMulDiv(SDValue Op, unsigned NewOpc,
929                                           bool HasLo, bool HasHi,
930                                           SelectionDAG &DAG) const {
931   EVT Ty = Op.getOperand(0).getValueType();
932   SDLoc DL(Op);
933   SDValue Mult = DAG.getNode(NewOpc, DL, MVT::Untyped,
934                              Op.getOperand(0), Op.getOperand(1));
935   SDValue Lo, Hi;
936
937   if (HasLo)
938     Lo = DAG.getNode(MipsISD::ExtractLOHI, DL, Ty, Mult,
939                      DAG.getConstant(Mips::sub_lo, MVT::i32));
940   if (HasHi)
941     Hi = DAG.getNode(MipsISD::ExtractLOHI, DL, Ty, Mult,
942                      DAG.getConstant(Mips::sub_hi, MVT::i32));
943
944   if (!HasLo || !HasHi)
945     return HasLo ? Lo : Hi;
946
947   SDValue Vals[] = { Lo, Hi };
948   return DAG.getMergeValues(Vals, 2, DL);
949 }
950
951
952 static SDValue initAccumulator(SDValue In, SDLoc DL, SelectionDAG &DAG) {
953   SDValue InLo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
954                              DAG.getConstant(0, MVT::i32));
955   SDValue InHi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
956                              DAG.getConstant(1, MVT::i32));
957   return DAG.getNode(MipsISD::InsertLOHI, DL, MVT::Untyped, InLo, InHi);
958 }
959
960 static SDValue extractLOHI(SDValue Op, SDLoc DL, SelectionDAG &DAG) {
961   SDValue Lo = DAG.getNode(MipsISD::ExtractLOHI, DL, MVT::i32, Op,
962                            DAG.getConstant(Mips::sub_lo, MVT::i32));
963   SDValue Hi = DAG.getNode(MipsISD::ExtractLOHI, DL, MVT::i32, Op,
964                            DAG.getConstant(Mips::sub_hi, MVT::i32));
965   return DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Lo, Hi);
966 }
967
968 // This function expands mips intrinsic nodes which have 64-bit input operands
969 // or output values.
970 //
971 // out64 = intrinsic-node in64
972 // =>
973 // lo = copy (extract-element (in64, 0))
974 // hi = copy (extract-element (in64, 1))
975 // mips-specific-node
976 // v0 = copy lo
977 // v1 = copy hi
978 // out64 = merge-values (v0, v1)
979 //
980 static SDValue lowerDSPIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
981   SDLoc DL(Op);
982   bool HasChainIn = Op->getOperand(0).getValueType() == MVT::Other;
983   SmallVector<SDValue, 3> Ops;
984   unsigned OpNo = 0;
985
986   // See if Op has a chain input.
987   if (HasChainIn)
988     Ops.push_back(Op->getOperand(OpNo++));
989
990   // The next operand is the intrinsic opcode.
991   assert(Op->getOperand(OpNo).getOpcode() == ISD::TargetConstant);
992
993   // See if the next operand has type i64.
994   SDValue Opnd = Op->getOperand(++OpNo), In64;
995
996   if (Opnd.getValueType() == MVT::i64)
997     In64 = initAccumulator(Opnd, DL, DAG);
998   else
999     Ops.push_back(Opnd);
1000
1001   // Push the remaining operands.
1002   for (++OpNo ; OpNo < Op->getNumOperands(); ++OpNo)
1003     Ops.push_back(Op->getOperand(OpNo));
1004
1005   // Add In64 to the end of the list.
1006   if (In64.getNode())
1007     Ops.push_back(In64);
1008
1009   // Scan output.
1010   SmallVector<EVT, 2> ResTys;
1011
1012   for (SDNode::value_iterator I = Op->value_begin(), E = Op->value_end();
1013        I != E; ++I)
1014     ResTys.push_back((*I == MVT::i64) ? MVT::Untyped : *I);
1015
1016   // Create node.
1017   SDValue Val = DAG.getNode(Opc, DL, ResTys, &Ops[0], Ops.size());
1018   SDValue Out = (ResTys[0] == MVT::Untyped) ? extractLOHI(Val, DL, DAG) : Val;
1019
1020   if (!HasChainIn)
1021     return Out;
1022
1023   assert(Val->getValueType(1) == MVT::Other);
1024   SDValue Vals[] = { Out, SDValue(Val.getNode(), 1) };
1025   return DAG.getMergeValues(Vals, 2, DL);
1026 }
1027
1028 // Lower an MSA copy intrinsic into the specified SelectionDAG node
1029 static SDValue lowerMSACopyIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1030   SDLoc DL(Op);
1031   SDValue Vec = Op->getOperand(1);
1032   SDValue Idx = Op->getOperand(2);
1033   EVT ResTy = Op->getValueType(0);
1034   EVT EltTy = Vec->getValueType(0).getVectorElementType();
1035
1036   SDValue Result = DAG.getNode(Opc, DL, ResTy, Vec, Idx,
1037                                DAG.getValueType(EltTy));
1038
1039   return Result;
1040 }
1041
1042 // Lower an MSA insert intrinsic into the specified SelectionDAG node
1043 static SDValue lowerMSAInsertIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1044   SDLoc DL(Op);
1045   SDValue Op0 = Op->getOperand(1);
1046   SDValue Op1 = Op->getOperand(2);
1047   SDValue Op2 = Op->getOperand(3);
1048   EVT ResTy = Op->getValueType(0);
1049
1050   SDValue Result = DAG.getNode(Opc, DL, ResTy, Op0, Op2, Op1);
1051
1052   return Result;
1053 }
1054
1055 static SDValue
1056 lowerMSASplatImm(SDLoc DL, EVT ResTy, SDValue ImmOp, SelectionDAG &DAG) {
1057   EVT ViaVecTy = ResTy;
1058   SmallVector<SDValue, 16> Ops;
1059   SDValue ImmHiOp;
1060
1061   if (ViaVecTy == MVT::v2i64) {
1062     ImmHiOp = DAG.getNode(ISD::SRA, DL, MVT::i32, ImmOp,
1063                           DAG.getConstant(31, MVT::i32));
1064     for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i) {
1065       Ops.push_back(ImmHiOp);
1066       Ops.push_back(ImmOp);
1067     }
1068     ViaVecTy = MVT::v4i32;
1069   } else {
1070     for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1071       Ops.push_back(ImmOp);
1072   }
1073
1074   SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, DL, ViaVecTy, &Ops[0],
1075                                Ops.size());
1076
1077   if (ResTy != ViaVecTy)
1078     Result = DAG.getNode(ISD::BITCAST, DL, ResTy, Result);
1079
1080   return Result;
1081 }
1082
1083 static SDValue
1084 lowerMSASplatImm(SDValue Op, unsigned ImmOp, SelectionDAG &DAG) {
1085   return lowerMSASplatImm(SDLoc(Op), Op->getValueType(0),
1086                           Op->getOperand(ImmOp), DAG);
1087 }
1088
1089 SDValue MipsSETargetLowering::lowerINTRINSIC_WO_CHAIN(SDValue Op,
1090                                                       SelectionDAG &DAG) const {
1091   SDLoc DL(Op);
1092
1093   switch (cast<ConstantSDNode>(Op->getOperand(0))->getZExtValue()) {
1094   default:
1095     return SDValue();
1096   case Intrinsic::mips_shilo:
1097     return lowerDSPIntr(Op, DAG, MipsISD::SHILO);
1098   case Intrinsic::mips_dpau_h_qbl:
1099     return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBL);
1100   case Intrinsic::mips_dpau_h_qbr:
1101     return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBR);
1102   case Intrinsic::mips_dpsu_h_qbl:
1103     return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBL);
1104   case Intrinsic::mips_dpsu_h_qbr:
1105     return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBR);
1106   case Intrinsic::mips_dpa_w_ph:
1107     return lowerDSPIntr(Op, DAG, MipsISD::DPA_W_PH);
1108   case Intrinsic::mips_dps_w_ph:
1109     return lowerDSPIntr(Op, DAG, MipsISD::DPS_W_PH);
1110   case Intrinsic::mips_dpax_w_ph:
1111     return lowerDSPIntr(Op, DAG, MipsISD::DPAX_W_PH);
1112   case Intrinsic::mips_dpsx_w_ph:
1113     return lowerDSPIntr(Op, DAG, MipsISD::DPSX_W_PH);
1114   case Intrinsic::mips_mulsa_w_ph:
1115     return lowerDSPIntr(Op, DAG, MipsISD::MULSA_W_PH);
1116   case Intrinsic::mips_mult:
1117     return lowerDSPIntr(Op, DAG, MipsISD::Mult);
1118   case Intrinsic::mips_multu:
1119     return lowerDSPIntr(Op, DAG, MipsISD::Multu);
1120   case Intrinsic::mips_madd:
1121     return lowerDSPIntr(Op, DAG, MipsISD::MAdd);
1122   case Intrinsic::mips_maddu:
1123     return lowerDSPIntr(Op, DAG, MipsISD::MAddu);
1124   case Intrinsic::mips_msub:
1125     return lowerDSPIntr(Op, DAG, MipsISD::MSub);
1126   case Intrinsic::mips_msubu:
1127     return lowerDSPIntr(Op, DAG, MipsISD::MSubu);
1128   case Intrinsic::mips_addv_b:
1129   case Intrinsic::mips_addv_h:
1130   case Intrinsic::mips_addv_w:
1131   case Intrinsic::mips_addv_d:
1132     return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1133                        Op->getOperand(2));
1134   case Intrinsic::mips_addvi_b:
1135   case Intrinsic::mips_addvi_h:
1136   case Intrinsic::mips_addvi_w:
1137   case Intrinsic::mips_addvi_d:
1138     return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1139                        lowerMSASplatImm(Op, 2, DAG));
1140   case Intrinsic::mips_and_v:
1141     return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1142                        Op->getOperand(2));
1143   case Intrinsic::mips_andi_b:
1144     return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1145                        lowerMSASplatImm(Op, 2, DAG));
1146   case Intrinsic::mips_bnz_b:
1147   case Intrinsic::mips_bnz_h:
1148   case Intrinsic::mips_bnz_w:
1149   case Intrinsic::mips_bnz_d:
1150     return DAG.getNode(MipsISD::VALL_NONZERO, DL, Op->getValueType(0),
1151                        Op->getOperand(1));
1152   case Intrinsic::mips_bnz_v:
1153     return DAG.getNode(MipsISD::VANY_NONZERO, DL, Op->getValueType(0),
1154                        Op->getOperand(1));
1155   case Intrinsic::mips_bsel_v:
1156     return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
1157                        Op->getOperand(1), Op->getOperand(2),
1158                        Op->getOperand(3));
1159   case Intrinsic::mips_bseli_b:
1160     return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
1161                        Op->getOperand(1), Op->getOperand(2),
1162                        lowerMSASplatImm(Op, 3, DAG));
1163   case Intrinsic::mips_bz_b:
1164   case Intrinsic::mips_bz_h:
1165   case Intrinsic::mips_bz_w:
1166   case Intrinsic::mips_bz_d:
1167     return DAG.getNode(MipsISD::VALL_ZERO, DL, Op->getValueType(0),
1168                        Op->getOperand(1));
1169   case Intrinsic::mips_bz_v:
1170     return DAG.getNode(MipsISD::VANY_ZERO, DL, Op->getValueType(0),
1171                        Op->getOperand(1));
1172   case Intrinsic::mips_ceq_b:
1173   case Intrinsic::mips_ceq_h:
1174   case Intrinsic::mips_ceq_w:
1175   case Intrinsic::mips_ceq_d:
1176     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1177                         Op->getOperand(2), ISD::SETEQ);
1178   case Intrinsic::mips_ceqi_b:
1179   case Intrinsic::mips_ceqi_h:
1180   case Intrinsic::mips_ceqi_w:
1181   case Intrinsic::mips_ceqi_d:
1182     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1183                         lowerMSASplatImm(Op, 2, DAG), ISD::SETEQ);
1184   case Intrinsic::mips_cle_s_b:
1185   case Intrinsic::mips_cle_s_h:
1186   case Intrinsic::mips_cle_s_w:
1187   case Intrinsic::mips_cle_s_d:
1188     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1189                         Op->getOperand(2), ISD::SETLE);
1190   case Intrinsic::mips_clei_s_b:
1191   case Intrinsic::mips_clei_s_h:
1192   case Intrinsic::mips_clei_s_w:
1193   case Intrinsic::mips_clei_s_d:
1194     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1195                         lowerMSASplatImm(Op, 2, DAG), ISD::SETLE);
1196   case Intrinsic::mips_cle_u_b:
1197   case Intrinsic::mips_cle_u_h:
1198   case Intrinsic::mips_cle_u_w:
1199   case Intrinsic::mips_cle_u_d:
1200     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1201                         Op->getOperand(2), ISD::SETULE);
1202   case Intrinsic::mips_clei_u_b:
1203   case Intrinsic::mips_clei_u_h:
1204   case Intrinsic::mips_clei_u_w:
1205   case Intrinsic::mips_clei_u_d:
1206     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1207                         lowerMSASplatImm(Op, 2, DAG), ISD::SETULE);
1208   case Intrinsic::mips_clt_s_b:
1209   case Intrinsic::mips_clt_s_h:
1210   case Intrinsic::mips_clt_s_w:
1211   case Intrinsic::mips_clt_s_d:
1212     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1213                         Op->getOperand(2), ISD::SETLT);
1214   case Intrinsic::mips_clti_s_b:
1215   case Intrinsic::mips_clti_s_h:
1216   case Intrinsic::mips_clti_s_w:
1217   case Intrinsic::mips_clti_s_d:
1218     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1219                         lowerMSASplatImm(Op, 2, DAG), ISD::SETLT);
1220   case Intrinsic::mips_clt_u_b:
1221   case Intrinsic::mips_clt_u_h:
1222   case Intrinsic::mips_clt_u_w:
1223   case Intrinsic::mips_clt_u_d:
1224     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1225                         Op->getOperand(2), ISD::SETULT);
1226   case Intrinsic::mips_clti_u_b:
1227   case Intrinsic::mips_clti_u_h:
1228   case Intrinsic::mips_clti_u_w:
1229   case Intrinsic::mips_clti_u_d:
1230     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1231                         lowerMSASplatImm(Op, 2, DAG), ISD::SETULT);
1232   case Intrinsic::mips_copy_s_b:
1233   case Intrinsic::mips_copy_s_h:
1234   case Intrinsic::mips_copy_s_w:
1235     return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_SEXT_ELT);
1236   case Intrinsic::mips_copy_u_b:
1237   case Intrinsic::mips_copy_u_h:
1238   case Intrinsic::mips_copy_u_w:
1239     return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_ZEXT_ELT);
1240   case Intrinsic::mips_div_s_b:
1241   case Intrinsic::mips_div_s_h:
1242   case Intrinsic::mips_div_s_w:
1243   case Intrinsic::mips_div_s_d:
1244     return DAG.getNode(ISD::SDIV, DL, Op->getValueType(0), Op->getOperand(1),
1245                        Op->getOperand(2));
1246   case Intrinsic::mips_div_u_b:
1247   case Intrinsic::mips_div_u_h:
1248   case Intrinsic::mips_div_u_w:
1249   case Intrinsic::mips_div_u_d:
1250     return DAG.getNode(ISD::UDIV, DL, Op->getValueType(0), Op->getOperand(1),
1251                        Op->getOperand(2));
1252   case Intrinsic::mips_fadd_w:
1253   case Intrinsic::mips_fadd_d:
1254     return DAG.getNode(ISD::FADD, DL, Op->getValueType(0), Op->getOperand(1),
1255                        Op->getOperand(2));
1256   // Don't lower mips_fcaf_[wd] since LLVM folds SETFALSE condcodes away
1257   case Intrinsic::mips_fceq_w:
1258   case Intrinsic::mips_fceq_d:
1259     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1260                         Op->getOperand(2), ISD::SETOEQ);
1261   case Intrinsic::mips_fcle_w:
1262   case Intrinsic::mips_fcle_d:
1263     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1264                         Op->getOperand(2), ISD::SETOLE);
1265   case Intrinsic::mips_fclt_w:
1266   case Intrinsic::mips_fclt_d:
1267     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1268                         Op->getOperand(2), ISD::SETOLT);
1269   case Intrinsic::mips_fcne_w:
1270   case Intrinsic::mips_fcne_d:
1271     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1272                         Op->getOperand(2), ISD::SETONE);
1273   case Intrinsic::mips_fcor_w:
1274   case Intrinsic::mips_fcor_d:
1275     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1276                         Op->getOperand(2), ISD::SETO);
1277   case Intrinsic::mips_fcueq_w:
1278   case Intrinsic::mips_fcueq_d:
1279     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1280                         Op->getOperand(2), ISD::SETUEQ);
1281   case Intrinsic::mips_fcule_w:
1282   case Intrinsic::mips_fcule_d:
1283     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1284                         Op->getOperand(2), ISD::SETULE);
1285   case Intrinsic::mips_fcult_w:
1286   case Intrinsic::mips_fcult_d:
1287     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1288                         Op->getOperand(2), ISD::SETULT);
1289   case Intrinsic::mips_fcun_w:
1290   case Intrinsic::mips_fcun_d:
1291     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1292                         Op->getOperand(2), ISD::SETUO);
1293   case Intrinsic::mips_fcune_w:
1294   case Intrinsic::mips_fcune_d:
1295     return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
1296                         Op->getOperand(2), ISD::SETUNE);
1297   case Intrinsic::mips_fdiv_w:
1298   case Intrinsic::mips_fdiv_d:
1299     return DAG.getNode(ISD::FDIV, DL, Op->getValueType(0), Op->getOperand(1),
1300                        Op->getOperand(2));
1301   case Intrinsic::mips_fill_b:
1302   case Intrinsic::mips_fill_h:
1303   case Intrinsic::mips_fill_w: {
1304     SmallVector<SDValue, 16> Ops;
1305     EVT ResTy = Op->getValueType(0);
1306
1307     for (unsigned i = 0; i < ResTy.getVectorNumElements(); ++i)
1308       Ops.push_back(Op->getOperand(1));
1309
1310     return DAG.getNode(ISD::BUILD_VECTOR, DL, ResTy, &Ops[0],
1311                        Ops.size());
1312   }
1313   case Intrinsic::mips_flog2_w:
1314   case Intrinsic::mips_flog2_d:
1315     return DAG.getNode(ISD::FLOG2, DL, Op->getValueType(0), Op->getOperand(1));
1316   case Intrinsic::mips_fmul_w:
1317   case Intrinsic::mips_fmul_d:
1318     return DAG.getNode(ISD::FMUL, DL, Op->getValueType(0), Op->getOperand(1),
1319                        Op->getOperand(2));
1320   case Intrinsic::mips_frint_w:
1321   case Intrinsic::mips_frint_d:
1322     return DAG.getNode(ISD::FRINT, DL, Op->getValueType(0), Op->getOperand(1));
1323   case Intrinsic::mips_fsqrt_w:
1324   case Intrinsic::mips_fsqrt_d:
1325     return DAG.getNode(ISD::FSQRT, DL, Op->getValueType(0), Op->getOperand(1));
1326   case Intrinsic::mips_fsub_w:
1327   case Intrinsic::mips_fsub_d:
1328     return DAG.getNode(ISD::FSUB, DL, Op->getValueType(0), Op->getOperand(1),
1329                        Op->getOperand(2));
1330   case Intrinsic::mips_ilvev_b:
1331   case Intrinsic::mips_ilvev_h:
1332   case Intrinsic::mips_ilvev_w:
1333   case Intrinsic::mips_ilvev_d:
1334     return DAG.getNode(MipsISD::ILVEV, DL, Op->getValueType(0),
1335                        Op->getOperand(1), Op->getOperand(2));
1336   case Intrinsic::mips_ilvl_b:
1337   case Intrinsic::mips_ilvl_h:
1338   case Intrinsic::mips_ilvl_w:
1339   case Intrinsic::mips_ilvl_d:
1340     return DAG.getNode(MipsISD::ILVL, DL, Op->getValueType(0),
1341                        Op->getOperand(1), Op->getOperand(2));
1342   case Intrinsic::mips_ilvod_b:
1343   case Intrinsic::mips_ilvod_h:
1344   case Intrinsic::mips_ilvod_w:
1345   case Intrinsic::mips_ilvod_d:
1346     return DAG.getNode(MipsISD::ILVOD, DL, Op->getValueType(0),
1347                        Op->getOperand(1), Op->getOperand(2));
1348   case Intrinsic::mips_ilvr_b:
1349   case Intrinsic::mips_ilvr_h:
1350   case Intrinsic::mips_ilvr_w:
1351   case Intrinsic::mips_ilvr_d:
1352     return DAG.getNode(MipsISD::ILVR, DL, Op->getValueType(0),
1353                        Op->getOperand(1), Op->getOperand(2));
1354   case Intrinsic::mips_insert_b:
1355   case Intrinsic::mips_insert_h:
1356   case Intrinsic::mips_insert_w:
1357     return lowerMSAInsertIntr(Op, DAG, ISD::INSERT_VECTOR_ELT);
1358   case Intrinsic::mips_ldi_b:
1359   case Intrinsic::mips_ldi_h:
1360   case Intrinsic::mips_ldi_w:
1361   case Intrinsic::mips_ldi_d:
1362     return lowerMSASplatImm(Op, 1, DAG);
1363   case Intrinsic::mips_max_s_b:
1364   case Intrinsic::mips_max_s_h:
1365   case Intrinsic::mips_max_s_w:
1366   case Intrinsic::mips_max_s_d:
1367     return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1368                        Op->getOperand(1), Op->getOperand(2));
1369   case Intrinsic::mips_max_u_b:
1370   case Intrinsic::mips_max_u_h:
1371   case Intrinsic::mips_max_u_w:
1372   case Intrinsic::mips_max_u_d:
1373     return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1374                        Op->getOperand(1), Op->getOperand(2));
1375   case Intrinsic::mips_maxi_s_b:
1376   case Intrinsic::mips_maxi_s_h:
1377   case Intrinsic::mips_maxi_s_w:
1378   case Intrinsic::mips_maxi_s_d:
1379     return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1380                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1381   case Intrinsic::mips_maxi_u_b:
1382   case Intrinsic::mips_maxi_u_h:
1383   case Intrinsic::mips_maxi_u_w:
1384   case Intrinsic::mips_maxi_u_d:
1385     return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1386                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1387   case Intrinsic::mips_min_s_b:
1388   case Intrinsic::mips_min_s_h:
1389   case Intrinsic::mips_min_s_w:
1390   case Intrinsic::mips_min_s_d:
1391     return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1392                        Op->getOperand(1), Op->getOperand(2));
1393   case Intrinsic::mips_min_u_b:
1394   case Intrinsic::mips_min_u_h:
1395   case Intrinsic::mips_min_u_w:
1396   case Intrinsic::mips_min_u_d:
1397     return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1398                        Op->getOperand(1), Op->getOperand(2));
1399   case Intrinsic::mips_mini_s_b:
1400   case Intrinsic::mips_mini_s_h:
1401   case Intrinsic::mips_mini_s_w:
1402   case Intrinsic::mips_mini_s_d:
1403     return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1404                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1405   case Intrinsic::mips_mini_u_b:
1406   case Intrinsic::mips_mini_u_h:
1407   case Intrinsic::mips_mini_u_w:
1408   case Intrinsic::mips_mini_u_d:
1409     return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1410                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1411   case Intrinsic::mips_mulv_b:
1412   case Intrinsic::mips_mulv_h:
1413   case Intrinsic::mips_mulv_w:
1414   case Intrinsic::mips_mulv_d:
1415     return DAG.getNode(ISD::MUL, DL, Op->getValueType(0), Op->getOperand(1),
1416                        Op->getOperand(2));
1417   case Intrinsic::mips_nlzc_b:
1418   case Intrinsic::mips_nlzc_h:
1419   case Intrinsic::mips_nlzc_w:
1420   case Intrinsic::mips_nlzc_d:
1421     return DAG.getNode(ISD::CTLZ, DL, Op->getValueType(0), Op->getOperand(1));
1422   case Intrinsic::mips_nor_v: {
1423     SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1424                               Op->getOperand(1), Op->getOperand(2));
1425     return DAG.getNOT(DL, Res, Res->getValueType(0));
1426   }
1427   case Intrinsic::mips_nori_b: {
1428     SDValue Res =  DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1429                                Op->getOperand(1),
1430                                lowerMSASplatImm(Op, 2, DAG));
1431     return DAG.getNOT(DL, Res, Res->getValueType(0));
1432   }
1433   case Intrinsic::mips_or_v:
1434     return DAG.getNode(ISD::OR, DL, Op->getValueType(0), Op->getOperand(1),
1435                        Op->getOperand(2));
1436   case Intrinsic::mips_ori_b:
1437     return DAG.getNode(ISD::OR, DL, Op->getValueType(0),
1438                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1439   case Intrinsic::mips_pckev_b:
1440   case Intrinsic::mips_pckev_h:
1441   case Intrinsic::mips_pckev_w:
1442   case Intrinsic::mips_pckev_d:
1443     return DAG.getNode(MipsISD::PCKEV, DL, Op->getValueType(0),
1444                        Op->getOperand(1), Op->getOperand(2));
1445   case Intrinsic::mips_pckod_b:
1446   case Intrinsic::mips_pckod_h:
1447   case Intrinsic::mips_pckod_w:
1448   case Intrinsic::mips_pckod_d:
1449     return DAG.getNode(MipsISD::PCKOD, DL, Op->getValueType(0),
1450                        Op->getOperand(1), Op->getOperand(2));
1451   case Intrinsic::mips_pcnt_b:
1452   case Intrinsic::mips_pcnt_h:
1453   case Intrinsic::mips_pcnt_w:
1454   case Intrinsic::mips_pcnt_d:
1455     return DAG.getNode(ISD::CTPOP, DL, Op->getValueType(0), Op->getOperand(1));
1456   case Intrinsic::mips_shf_b:
1457   case Intrinsic::mips_shf_h:
1458   case Intrinsic::mips_shf_w:
1459     return DAG.getNode(MipsISD::SHF, DL, Op->getValueType(0),
1460                        Op->getOperand(2), Op->getOperand(1));
1461   case Intrinsic::mips_sll_b:
1462   case Intrinsic::mips_sll_h:
1463   case Intrinsic::mips_sll_w:
1464   case Intrinsic::mips_sll_d:
1465     return DAG.getNode(ISD::SHL, DL, Op->getValueType(0), Op->getOperand(1),
1466                        Op->getOperand(2));
1467   case Intrinsic::mips_slli_b:
1468   case Intrinsic::mips_slli_h:
1469   case Intrinsic::mips_slli_w:
1470   case Intrinsic::mips_slli_d:
1471     return DAG.getNode(ISD::SHL, DL, Op->getValueType(0),
1472                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1473   case Intrinsic::mips_splati_b:
1474   case Intrinsic::mips_splati_h:
1475   case Intrinsic::mips_splati_w:
1476   case Intrinsic::mips_splati_d:
1477     return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
1478                        lowerMSASplatImm(Op, 2, DAG), Op->getOperand(1),
1479                        Op->getOperand(1));
1480   case Intrinsic::mips_sra_b:
1481   case Intrinsic::mips_sra_h:
1482   case Intrinsic::mips_sra_w:
1483   case Intrinsic::mips_sra_d:
1484     return DAG.getNode(ISD::SRA, DL, Op->getValueType(0), Op->getOperand(1),
1485                        Op->getOperand(2));
1486   case Intrinsic::mips_srai_b:
1487   case Intrinsic::mips_srai_h:
1488   case Intrinsic::mips_srai_w:
1489   case Intrinsic::mips_srai_d:
1490     return DAG.getNode(ISD::SRA, DL, Op->getValueType(0),
1491                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1492   case Intrinsic::mips_srl_b:
1493   case Intrinsic::mips_srl_h:
1494   case Intrinsic::mips_srl_w:
1495   case Intrinsic::mips_srl_d:
1496     return DAG.getNode(ISD::SRL, DL, Op->getValueType(0), Op->getOperand(1),
1497                        Op->getOperand(2));
1498   case Intrinsic::mips_srli_b:
1499   case Intrinsic::mips_srli_h:
1500   case Intrinsic::mips_srli_w:
1501   case Intrinsic::mips_srli_d:
1502     return DAG.getNode(ISD::SRL, DL, Op->getValueType(0),
1503                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1504   case Intrinsic::mips_subv_b:
1505   case Intrinsic::mips_subv_h:
1506   case Intrinsic::mips_subv_w:
1507   case Intrinsic::mips_subv_d:
1508     return DAG.getNode(ISD::SUB, DL, Op->getValueType(0), Op->getOperand(1),
1509                        Op->getOperand(2));
1510   case Intrinsic::mips_subvi_b:
1511   case Intrinsic::mips_subvi_h:
1512   case Intrinsic::mips_subvi_w:
1513   case Intrinsic::mips_subvi_d:
1514     return DAG.getNode(ISD::SUB, DL, Op->getValueType(0),
1515                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1516   case Intrinsic::mips_vshf_b:
1517   case Intrinsic::mips_vshf_h:
1518   case Intrinsic::mips_vshf_w:
1519   case Intrinsic::mips_vshf_d:
1520     return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
1521                        Op->getOperand(1), Op->getOperand(2), Op->getOperand(3));
1522   case Intrinsic::mips_xor_v:
1523     return DAG.getNode(ISD::XOR, DL, Op->getValueType(0), Op->getOperand(1),
1524                        Op->getOperand(2));
1525   case Intrinsic::mips_xori_b:
1526     return DAG.getNode(ISD::XOR, DL, Op->getValueType(0),
1527                        Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
1528   }
1529 }
1530
1531 static SDValue lowerMSALoadIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1532   SDLoc DL(Op);
1533   SDValue ChainIn = Op->getOperand(0);
1534   SDValue Address = Op->getOperand(2);
1535   SDValue Offset  = Op->getOperand(3);
1536   EVT ResTy = Op->getValueType(0);
1537   EVT PtrTy = Address->getValueType(0);
1538
1539   Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1540
1541   return DAG.getLoad(ResTy, DL, ChainIn, Address, MachinePointerInfo(), false,
1542                      false, false, 16);
1543 }
1544
1545 SDValue MipsSETargetLowering::lowerINTRINSIC_W_CHAIN(SDValue Op,
1546                                                      SelectionDAG &DAG) const {
1547   unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1548   switch (Intr) {
1549   default:
1550     return SDValue();
1551   case Intrinsic::mips_extp:
1552     return lowerDSPIntr(Op, DAG, MipsISD::EXTP);
1553   case Intrinsic::mips_extpdp:
1554     return lowerDSPIntr(Op, DAG, MipsISD::EXTPDP);
1555   case Intrinsic::mips_extr_w:
1556     return lowerDSPIntr(Op, DAG, MipsISD::EXTR_W);
1557   case Intrinsic::mips_extr_r_w:
1558     return lowerDSPIntr(Op, DAG, MipsISD::EXTR_R_W);
1559   case Intrinsic::mips_extr_rs_w:
1560     return lowerDSPIntr(Op, DAG, MipsISD::EXTR_RS_W);
1561   case Intrinsic::mips_extr_s_h:
1562     return lowerDSPIntr(Op, DAG, MipsISD::EXTR_S_H);
1563   case Intrinsic::mips_mthlip:
1564     return lowerDSPIntr(Op, DAG, MipsISD::MTHLIP);
1565   case Intrinsic::mips_mulsaq_s_w_ph:
1566     return lowerDSPIntr(Op, DAG, MipsISD::MULSAQ_S_W_PH);
1567   case Intrinsic::mips_maq_s_w_phl:
1568     return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHL);
1569   case Intrinsic::mips_maq_s_w_phr:
1570     return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHR);
1571   case Intrinsic::mips_maq_sa_w_phl:
1572     return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHL);
1573   case Intrinsic::mips_maq_sa_w_phr:
1574     return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHR);
1575   case Intrinsic::mips_dpaq_s_w_ph:
1576     return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_S_W_PH);
1577   case Intrinsic::mips_dpsq_s_w_ph:
1578     return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_S_W_PH);
1579   case Intrinsic::mips_dpaq_sa_l_w:
1580     return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_SA_L_W);
1581   case Intrinsic::mips_dpsq_sa_l_w:
1582     return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_SA_L_W);
1583   case Intrinsic::mips_dpaqx_s_w_ph:
1584     return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_S_W_PH);
1585   case Intrinsic::mips_dpaqx_sa_w_ph:
1586     return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_SA_W_PH);
1587   case Intrinsic::mips_dpsqx_s_w_ph:
1588     return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_S_W_PH);
1589   case Intrinsic::mips_dpsqx_sa_w_ph:
1590     return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_SA_W_PH);
1591   case Intrinsic::mips_ld_b:
1592   case Intrinsic::mips_ld_h:
1593   case Intrinsic::mips_ld_w:
1594   case Intrinsic::mips_ld_d:
1595   case Intrinsic::mips_ldx_b:
1596   case Intrinsic::mips_ldx_h:
1597   case Intrinsic::mips_ldx_w:
1598   case Intrinsic::mips_ldx_d:
1599    return lowerMSALoadIntr(Op, DAG, Intr);
1600   }
1601 }
1602
1603 static SDValue lowerMSAStoreIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
1604   SDLoc DL(Op);
1605   SDValue ChainIn = Op->getOperand(0);
1606   SDValue Value   = Op->getOperand(2);
1607   SDValue Address = Op->getOperand(3);
1608   SDValue Offset  = Op->getOperand(4);
1609   EVT PtrTy = Address->getValueType(0);
1610
1611   Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
1612
1613   return DAG.getStore(ChainIn, DL, Value, Address, MachinePointerInfo(), false,
1614                       false, 16);
1615 }
1616
1617 SDValue MipsSETargetLowering::lowerINTRINSIC_VOID(SDValue Op,
1618                                                   SelectionDAG &DAG) const {
1619   unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
1620   switch (Intr) {
1621   default:
1622     return SDValue();
1623   case Intrinsic::mips_st_b:
1624   case Intrinsic::mips_st_h:
1625   case Intrinsic::mips_st_w:
1626   case Intrinsic::mips_st_d:
1627   case Intrinsic::mips_stx_b:
1628   case Intrinsic::mips_stx_h:
1629   case Intrinsic::mips_stx_w:
1630   case Intrinsic::mips_stx_d:
1631     return lowerMSAStoreIntr(Op, DAG, Intr);
1632   }
1633 }
1634
1635 /// \brief Check if the given BuildVectorSDNode is a splat.
1636 /// This method currently relies on DAG nodes being reused when equivalent,
1637 /// so it's possible for this to return false even when isConstantSplat returns
1638 /// true.
1639 static bool isSplatVector(const BuildVectorSDNode *N) {
1640   unsigned int nOps = N->getNumOperands();
1641   assert(nOps > 1 && "isSplat has 0 or 1 sized build vector");
1642
1643   SDValue Operand0 = N->getOperand(0);
1644
1645   for (unsigned int i = 1; i < nOps; ++i) {
1646     if (N->getOperand(i) != Operand0)
1647       return false;
1648   }
1649
1650   return true;
1651 }
1652
1653 // Lower ISD::EXTRACT_VECTOR_ELT into MipsISD::VEXTRACT_SEXT_ELT.
1654 //
1655 // The non-value bits resulting from ISD::EXTRACT_VECTOR_ELT are undefined. We
1656 // choose to sign-extend but we could have equally chosen zero-extend. The
1657 // DAGCombiner will fold any sign/zero extension of the ISD::EXTRACT_VECTOR_ELT
1658 // result into this node later (possibly changing it to a zero-extend in the
1659 // process).
1660 SDValue MipsSETargetLowering::
1661 lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
1662   SDLoc DL(Op);
1663   EVT ResTy = Op->getValueType(0);
1664   SDValue Op0 = Op->getOperand(0);
1665   SDValue Op1 = Op->getOperand(1);
1666   EVT EltTy = Op0->getValueType(0).getVectorElementType();
1667   return DAG.getNode(MipsISD::VEXTRACT_SEXT_ELT, DL, ResTy, Op0, Op1,
1668                      DAG.getValueType(EltTy));
1669 }
1670
1671 static bool isConstantOrUndef(const SDValue Op) {
1672   if (Op->getOpcode() == ISD::UNDEF)
1673     return true;
1674   if (dyn_cast<ConstantSDNode>(Op))
1675     return true;
1676   if (dyn_cast<ConstantFPSDNode>(Op))
1677     return true;
1678   return false;
1679 }
1680
1681 static bool isConstantOrUndefBUILD_VECTOR(const BuildVectorSDNode *Op) {
1682   for (unsigned i = 0; i < Op->getNumOperands(); ++i)
1683     if (isConstantOrUndef(Op->getOperand(i)))
1684       return true;
1685   return false;
1686 }
1687
1688 // Lowers ISD::BUILD_VECTOR into appropriate SelectionDAG nodes for the
1689 // backend.
1690 //
1691 // Lowers according to the following rules:
1692 // - Constant splats are legal as-is as long as the SplatBitSize is a power of
1693 //   2 less than or equal to 64 and the value fits into a signed 10-bit
1694 //   immediate
1695 // - Constant splats are lowered to bitconverted BUILD_VECTORs if SplatBitSize
1696 //   is a power of 2 less than or equal to 64 and the value does not fit into a
1697 //   signed 10-bit immediate
1698 // - Non-constant splats are legal as-is.
1699 // - Non-constant non-splats are lowered to sequences of INSERT_VECTOR_ELT.
1700 // - All others are illegal and must be expanded.
1701 SDValue MipsSETargetLowering::lowerBUILD_VECTOR(SDValue Op,
1702                                                 SelectionDAG &DAG) const {
1703   BuildVectorSDNode *Node = cast<BuildVectorSDNode>(Op);
1704   EVT ResTy = Op->getValueType(0);
1705   SDLoc DL(Op);
1706   APInt SplatValue, SplatUndef;
1707   unsigned SplatBitSize;
1708   bool HasAnyUndefs;
1709
1710   if (!Subtarget->hasMSA() || !ResTy.is128BitVector())
1711     return SDValue();
1712
1713   if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1714                             HasAnyUndefs, 8,
1715                             !Subtarget->isLittle()) && SplatBitSize <= 64) {
1716     // We can only cope with 8, 16, 32, or 64-bit elements
1717     if (SplatBitSize != 8 && SplatBitSize != 16 && SplatBitSize != 32 &&
1718         SplatBitSize != 64)
1719       return SDValue();
1720
1721     // If the value fits into a simm10 then we can use ldi.[bhwd]
1722     if (SplatValue.isSignedIntN(10))
1723       return Op;
1724
1725     EVT ViaVecTy;
1726
1727     switch (SplatBitSize) {
1728     default:
1729       return SDValue();
1730     case 8:
1731       ViaVecTy = MVT::v16i8;
1732       break;
1733     case 16:
1734       ViaVecTy = MVT::v8i16;
1735       break;
1736     case 32:
1737       ViaVecTy = MVT::v4i32;
1738       break;
1739     case 64:
1740       // There's no fill.d to fall back on for 64-bit values
1741       return SDValue();
1742     }
1743
1744     SmallVector<SDValue, 16> Ops;
1745     SDValue Constant = DAG.getConstant(SplatValue.sextOrSelf(32), MVT::i32);
1746
1747     for (unsigned i = 0; i < ViaVecTy.getVectorNumElements(); ++i)
1748       Ops.push_back(Constant);
1749
1750     SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Node), ViaVecTy,
1751                                  &Ops[0], Ops.size());
1752
1753     if (ViaVecTy != ResTy)
1754       Result = DAG.getNode(ISD::BITCAST, SDLoc(Node), ResTy, Result);
1755
1756     return Result;
1757   } else if (isSplatVector(Node))
1758     return Op;
1759   else if (!isConstantOrUndefBUILD_VECTOR(Node)) {
1760     // Use INSERT_VECTOR_ELT operations rather than expand to stores.
1761     // The resulting code is the same length as the expansion, but it doesn't
1762     // use memory operations
1763     EVT ResTy = Node->getValueType(0);
1764
1765     assert(ResTy.isVector());
1766
1767     unsigned NumElts = ResTy.getVectorNumElements();
1768     SDValue Vector = DAG.getUNDEF(ResTy);
1769     for (unsigned i = 0; i < NumElts; ++i) {
1770       Vector = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, ResTy, Vector,
1771                            Node->getOperand(i),
1772                            DAG.getConstant(i, MVT::i32));
1773     }
1774     return Vector;
1775   }
1776
1777   return SDValue();
1778 }
1779
1780 // Lower VECTOR_SHUFFLE into SHF (if possible).
1781 //
1782 // SHF splits the vector into blocks of four elements, then shuffles these
1783 // elements according to a <4 x i2> constant (encoded as an integer immediate).
1784 //
1785 // It is therefore possible to lower into SHF when the mask takes the form:
1786 //   <a, b, c, d, a+4, b+4, c+4, d+4, a+8, b+8, c+8, d+8, ...>
1787 // When undef's appear they are treated as if they were whatever value is
1788 // necessary in order to fit the above form.
1789 //
1790 // For example:
1791 //   %2 = shufflevector <8 x i16> %0, <8 x i16> undef,
1792 //                      <8 x i32> <i32 3, i32 2, i32 1, i32 0,
1793 //                                 i32 7, i32 6, i32 5, i32 4>
1794 // is lowered to:
1795 //   (SHF_H $w0, $w1, 27)
1796 // where the 27 comes from:
1797 //   3 + (2 << 2) + (1 << 4) + (0 << 6)
1798 static SDValue lowerVECTOR_SHUFFLE_SHF(SDValue Op, EVT ResTy,
1799                                        SmallVector<int, 16> Indices,
1800                                        SelectionDAG &DAG) {
1801   int SHFIndices[4] = { -1, -1, -1, -1 };
1802
1803   if (Indices.size() < 4)
1804     return SDValue();
1805
1806   for (unsigned i = 0; i < 4; ++i) {
1807     for (unsigned j = i; j < Indices.size(); j += 4) {
1808       int Idx = Indices[j];
1809
1810       // Convert from vector index to 4-element subvector index
1811       // If an index refers to an element outside of the subvector then give up
1812       if (Idx != -1) {
1813         Idx -= 4 * (j / 4);
1814         if (Idx < 0 || Idx >= 4)
1815           return SDValue();
1816       }
1817
1818       // If the mask has an undef, replace it with the current index.
1819       // Note that it might still be undef if the current index is also undef
1820       if (SHFIndices[i] == -1)
1821         SHFIndices[i] = Idx;
1822
1823       // Check that non-undef values are the same as in the mask. If they
1824       // aren't then give up
1825       if (!(Idx == -1 || Idx == SHFIndices[i]))
1826         return SDValue();
1827     }
1828   }
1829
1830   // Calculate the immediate. Replace any remaining undefs with zero
1831   APInt Imm(32, 0);
1832   for (int i = 3; i >= 0; --i) {
1833     int Idx = SHFIndices[i];
1834
1835     if (Idx == -1)
1836       Idx = 0;
1837
1838     Imm <<= 2;
1839     Imm |= Idx & 0x3;
1840   }
1841
1842   return DAG.getNode(MipsISD::SHF, SDLoc(Op), ResTy,
1843                      DAG.getConstant(Imm, MVT::i32), Op->getOperand(0));
1844 }
1845
1846 // Lower VECTOR_SHUFFLE into ILVEV (if possible).
1847 //
1848 // ILVEV interleaves the even elements from each vector.
1849 //
1850 // It is possible to lower into ILVEV when the mask takes the form:
1851 //   <0, n, 2, n+2, 4, n+4, ...>
1852 // where n is the number of elements in the vector.
1853 //
1854 // When undef's appear in the mask they are treated as if they were whatever
1855 // value is necessary in order to fit the above form.
1856 static SDValue lowerVECTOR_SHUFFLE_ILVEV(SDValue Op, EVT ResTy,
1857                                          SmallVector<int, 16> Indices,
1858                                          SelectionDAG &DAG) {
1859   assert ((Indices.size() % 2) == 0);
1860   int WsIdx = 0;
1861   int WtIdx = ResTy.getVectorNumElements();
1862
1863   for (unsigned i = 0; i < Indices.size(); i += 2) {
1864     if (Indices[i] != -1 && Indices[i] != WsIdx)
1865       return SDValue();
1866     if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1867       return SDValue();
1868     WsIdx += 2;
1869     WtIdx += 2;
1870   }
1871
1872   return DAG.getNode(MipsISD::ILVEV, SDLoc(Op), ResTy, Op->getOperand(0),
1873                      Op->getOperand(1));
1874 }
1875
1876 // Lower VECTOR_SHUFFLE into ILVOD (if possible).
1877 //
1878 // ILVOD interleaves the odd elements from each vector.
1879 //
1880 // It is possible to lower into ILVOD when the mask takes the form:
1881 //   <1, n+1, 3, n+3, 5, n+5, ...>
1882 // where n is the number of elements in the vector.
1883 //
1884 // When undef's appear in the mask they are treated as if they were whatever
1885 // value is necessary in order to fit the above form.
1886 static SDValue lowerVECTOR_SHUFFLE_ILVOD(SDValue Op, EVT ResTy,
1887                                          SmallVector<int, 16> Indices,
1888                                          SelectionDAG &DAG) {
1889   assert ((Indices.size() % 2) == 0);
1890   int WsIdx = 1;
1891   int WtIdx = ResTy.getVectorNumElements() + 1;
1892
1893   for (unsigned i = 0; i < Indices.size(); i += 2) {
1894     if (Indices[i] != -1 && Indices[i] != WsIdx)
1895       return SDValue();
1896     if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1897       return SDValue();
1898     WsIdx += 2;
1899     WtIdx += 2;
1900   }
1901
1902   return DAG.getNode(MipsISD::ILVOD, SDLoc(Op), ResTy, Op->getOperand(0),
1903                      Op->getOperand(1));
1904 }
1905
1906 // Lower VECTOR_SHUFFLE into ILVL (if possible).
1907 //
1908 // ILVL interleaves consecutive elements from the left half of each vector.
1909 //
1910 // It is possible to lower into ILVL when the mask takes the form:
1911 //   <0, n, 1, n+1, 2, n+2, ...>
1912 // where n is the number of elements in the vector.
1913 //
1914 // When undef's appear in the mask they are treated as if they were whatever
1915 // value is necessary in order to fit the above form.
1916 static SDValue lowerVECTOR_SHUFFLE_ILVL(SDValue Op, EVT ResTy,
1917                                         SmallVector<int, 16> Indices,
1918                                         SelectionDAG &DAG) {
1919   assert ((Indices.size() % 2) == 0);
1920   int WsIdx = 0;
1921   int WtIdx = ResTy.getVectorNumElements();
1922
1923   for (unsigned i = 0; i < Indices.size(); i += 2) {
1924     if (Indices[i] != -1 && Indices[i] != WsIdx)
1925       return SDValue();
1926     if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1927       return SDValue();
1928     WsIdx ++;
1929     WtIdx ++;
1930   }
1931
1932   return DAG.getNode(MipsISD::ILVL, SDLoc(Op), ResTy, Op->getOperand(0),
1933                      Op->getOperand(1));
1934 }
1935
1936 // Lower VECTOR_SHUFFLE into ILVR (if possible).
1937 //
1938 // ILVR interleaves consecutive elements from the right half of each vector.
1939 //
1940 // It is possible to lower into ILVR when the mask takes the form:
1941 //   <x, n+x, x+1, n+x+1, x+2, n+x+2, ...>
1942 // where n is the number of elements in the vector and x is half n.
1943 //
1944 // When undef's appear in the mask they are treated as if they were whatever
1945 // value is necessary in order to fit the above form.
1946 static SDValue lowerVECTOR_SHUFFLE_ILVR(SDValue Op, EVT ResTy,
1947                                         SmallVector<int, 16> Indices,
1948                                         SelectionDAG &DAG) {
1949   assert ((Indices.size() % 2) == 0);
1950   unsigned NumElts = ResTy.getVectorNumElements();
1951   int WsIdx = NumElts / 2;
1952   int WtIdx = NumElts + NumElts / 2;
1953
1954   for (unsigned i = 0; i < Indices.size(); i += 2) {
1955     if (Indices[i] != -1 && Indices[i] != WsIdx)
1956       return SDValue();
1957     if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
1958       return SDValue();
1959     WsIdx ++;
1960     WtIdx ++;
1961   }
1962
1963   return DAG.getNode(MipsISD::ILVR, SDLoc(Op), ResTy, Op->getOperand(0),
1964                      Op->getOperand(1));
1965 }
1966
1967 // Lower VECTOR_SHUFFLE into PCKEV (if possible).
1968 //
1969 // PCKEV copies the even elements of each vector into the result vector.
1970 //
1971 // It is possible to lower into PCKEV when the mask takes the form:
1972 //   <0, 2, 4, ..., n, n+2, n+4, ...>
1973 // where n is the number of elements in the vector.
1974 //
1975 // When undef's appear in the mask they are treated as if they were whatever
1976 // value is necessary in order to fit the above form.
1977 static SDValue lowerVECTOR_SHUFFLE_PCKEV(SDValue Op, EVT ResTy,
1978                                          SmallVector<int, 16> Indices,
1979                                          SelectionDAG &DAG) {
1980   assert ((Indices.size() % 2) == 0);
1981   int Idx = 0;
1982
1983   for (unsigned i = 0; i < Indices.size(); ++i) {
1984     if (Indices[i] != -1 && Indices[i] != Idx)
1985       return SDValue();
1986     Idx += 2;
1987   }
1988
1989   return DAG.getNode(MipsISD::PCKEV, SDLoc(Op), ResTy, Op->getOperand(0),
1990                      Op->getOperand(1));
1991 }
1992
1993 // Lower VECTOR_SHUFFLE into PCKOD (if possible).
1994 //
1995 // PCKOD copies the odd elements of each vector into the result vector.
1996 //
1997 // It is possible to lower into PCKOD when the mask takes the form:
1998 //   <1, 3, 5, ..., n+1, n+3, n+5, ...>
1999 // where n is the number of elements in the vector.
2000 //
2001 // When undef's appear in the mask they are treated as if they were whatever
2002 // value is necessary in order to fit the above form.
2003 static SDValue lowerVECTOR_SHUFFLE_PCKOD(SDValue Op, EVT ResTy,
2004                                          SmallVector<int, 16> Indices,
2005                                          SelectionDAG &DAG) {
2006   assert ((Indices.size() % 2) == 0);
2007   int Idx = 1;
2008
2009   for (unsigned i = 0; i < Indices.size(); ++i) {
2010     if (Indices[i] != -1 && Indices[i] != Idx)
2011       return SDValue();
2012     Idx += 2;
2013   }
2014
2015   return DAG.getNode(MipsISD::PCKOD, SDLoc(Op), ResTy, Op->getOperand(0),
2016                      Op->getOperand(1));
2017 }
2018
2019 // Lower VECTOR_SHUFFLE into VSHF.
2020 //
2021 // This mostly consists of converting the shuffle indices in Indices into a
2022 // BUILD_VECTOR and adding it as an operand to the resulting VSHF. There is
2023 // also code to eliminate unused operands of the VECTOR_SHUFFLE. For example,
2024 // if the type is v8i16 and all the indices are less than 8 then the second
2025 // operand is unused and can be replaced with anything. We choose to replace it
2026 // with the used operand since this reduces the number of instructions overall.
2027 static SDValue lowerVECTOR_SHUFFLE_VSHF(SDValue Op, EVT ResTy,
2028                                         SmallVector<int, 16> Indices,
2029                                         SelectionDAG &DAG) {
2030   SmallVector<SDValue, 16> Ops;
2031   SDValue Op0;
2032   SDValue Op1;
2033   EVT MaskVecTy = ResTy.changeVectorElementTypeToInteger();
2034   EVT MaskEltTy = MaskVecTy.getVectorElementType();
2035   bool Using1stVec = false;
2036   bool Using2ndVec = false;
2037   SDLoc DL(Op);
2038   int ResTyNumElts = ResTy.getVectorNumElements();
2039
2040   for (int i = 0; i < ResTyNumElts; ++i) {
2041     // Idx == -1 means UNDEF
2042     int Idx = Indices[i];
2043
2044     if (0 <= Idx && Idx < ResTyNumElts)
2045       Using1stVec = true;
2046     if (ResTyNumElts <= Idx && Idx < ResTyNumElts * 2)
2047       Using2ndVec = true;
2048   }
2049
2050   for (SmallVector<int, 16>::iterator I = Indices.begin(); I != Indices.end();
2051        ++I)
2052     Ops.push_back(DAG.getTargetConstant(*I, MaskEltTy));
2053
2054   SDValue MaskVec = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVecTy, &Ops[0],
2055                                 Ops.size());
2056
2057   if (Using1stVec && Using2ndVec) {
2058     Op0 = Op->getOperand(0);
2059     Op1 = Op->getOperand(1);
2060   } else if (Using1stVec)
2061     Op0 = Op1 = Op->getOperand(0);
2062   else if (Using2ndVec)
2063     Op0 = Op1 = Op->getOperand(1);
2064   else
2065     llvm_unreachable("shuffle vector mask references neither vector operand?");
2066
2067   return DAG.getNode(MipsISD::VSHF, DL, ResTy, MaskVec, Op0, Op1);
2068 }
2069
2070 // Lower VECTOR_SHUFFLE into one of a number of instructions depending on the
2071 // indices in the shuffle.
2072 SDValue MipsSETargetLowering::lowerVECTOR_SHUFFLE(SDValue Op,
2073                                                   SelectionDAG &DAG) const {
2074   ShuffleVectorSDNode *Node = cast<ShuffleVectorSDNode>(Op);
2075   EVT ResTy = Op->getValueType(0);
2076
2077   if (!ResTy.is128BitVector())
2078     return SDValue();
2079
2080   int ResTyNumElts = ResTy.getVectorNumElements();
2081   SmallVector<int, 16> Indices;
2082
2083   for (int i = 0; i < ResTyNumElts; ++i)
2084     Indices.push_back(Node->getMaskElt(i));
2085
2086   SDValue Result = lowerVECTOR_SHUFFLE_SHF(Op, ResTy, Indices, DAG);
2087   if (Result.getNode())
2088     return Result;
2089   Result = lowerVECTOR_SHUFFLE_ILVEV(Op, ResTy, Indices, DAG);
2090   if (Result.getNode())
2091     return Result;
2092   Result = lowerVECTOR_SHUFFLE_ILVOD(Op, ResTy, Indices, DAG);
2093   if (Result.getNode())
2094     return Result;
2095   Result = lowerVECTOR_SHUFFLE_ILVL(Op, ResTy, Indices, DAG);
2096   if (Result.getNode())
2097     return Result;
2098   Result = lowerVECTOR_SHUFFLE_ILVR(Op, ResTy, Indices, DAG);
2099   if (Result.getNode())
2100     return Result;
2101   Result = lowerVECTOR_SHUFFLE_PCKEV(Op, ResTy, Indices, DAG);
2102   if (Result.getNode())
2103     return Result;
2104   Result = lowerVECTOR_SHUFFLE_PCKOD(Op, ResTy, Indices, DAG);
2105   if (Result.getNode())
2106     return Result;
2107   return lowerVECTOR_SHUFFLE_VSHF(Op, ResTy, Indices, DAG);
2108 }
2109
2110 MachineBasicBlock * MipsSETargetLowering::
2111 emitBPOSGE32(MachineInstr *MI, MachineBasicBlock *BB) const{
2112   // $bb:
2113   //  bposge32_pseudo $vr0
2114   //  =>
2115   // $bb:
2116   //  bposge32 $tbb
2117   // $fbb:
2118   //  li $vr2, 0
2119   //  b $sink
2120   // $tbb:
2121   //  li $vr1, 1
2122   // $sink:
2123   //  $vr0 = phi($vr2, $fbb, $vr1, $tbb)
2124
2125   MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2126   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2127   const TargetRegisterClass *RC = &Mips::GPR32RegClass;
2128   DebugLoc DL = MI->getDebugLoc();
2129   const BasicBlock *LLVM_BB = BB->getBasicBlock();
2130   MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2131   MachineFunction *F = BB->getParent();
2132   MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2133   MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2134   MachineBasicBlock *Sink  = F->CreateMachineBasicBlock(LLVM_BB);
2135   F->insert(It, FBB);
2136   F->insert(It, TBB);
2137   F->insert(It, Sink);
2138
2139   // Transfer the remainder of BB and its successor edges to Sink.
2140   Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2141                BB->end());
2142   Sink->transferSuccessorsAndUpdatePHIs(BB);
2143
2144   // Add successors.
2145   BB->addSuccessor(FBB);
2146   BB->addSuccessor(TBB);
2147   FBB->addSuccessor(Sink);
2148   TBB->addSuccessor(Sink);
2149
2150   // Insert the real bposge32 instruction to $BB.
2151   BuildMI(BB, DL, TII->get(Mips::BPOSGE32)).addMBB(TBB);
2152
2153   // Fill $FBB.
2154   unsigned VR2 = RegInfo.createVirtualRegister(RC);
2155   BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), VR2)
2156     .addReg(Mips::ZERO).addImm(0);
2157   BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2158
2159   // Fill $TBB.
2160   unsigned VR1 = RegInfo.createVirtualRegister(RC);
2161   BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), VR1)
2162     .addReg(Mips::ZERO).addImm(1);
2163
2164   // Insert phi function to $Sink.
2165   BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2166           MI->getOperand(0).getReg())
2167     .addReg(VR2).addMBB(FBB).addReg(VR1).addMBB(TBB);
2168
2169   MI->eraseFromParent();   // The pseudo instruction is gone now.
2170   return Sink;
2171 }
2172
2173 MachineBasicBlock * MipsSETargetLowering::
2174 emitMSACBranchPseudo(MachineInstr *MI, MachineBasicBlock *BB,
2175                      unsigned BranchOp) const{
2176   // $bb:
2177   //  vany_nonzero $rd, $ws
2178   //  =>
2179   // $bb:
2180   //  bnz.b $ws, $tbb
2181   //  b $fbb
2182   // $fbb:
2183   //  li $rd1, 0
2184   //  b $sink
2185   // $tbb:
2186   //  li $rd2, 1
2187   // $sink:
2188   //  $rd = phi($rd1, $fbb, $rd2, $tbb)
2189
2190   MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2191   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
2192   const TargetRegisterClass *RC = &Mips::GPR32RegClass;
2193   DebugLoc DL = MI->getDebugLoc();
2194   const BasicBlock *LLVM_BB = BB->getBasicBlock();
2195   MachineFunction::iterator It = llvm::next(MachineFunction::iterator(BB));
2196   MachineFunction *F = BB->getParent();
2197   MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2198   MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2199   MachineBasicBlock *Sink  = F->CreateMachineBasicBlock(LLVM_BB);
2200   F->insert(It, FBB);
2201   F->insert(It, TBB);
2202   F->insert(It, Sink);
2203
2204   // Transfer the remainder of BB and its successor edges to Sink.
2205   Sink->splice(Sink->begin(), BB, llvm::next(MachineBasicBlock::iterator(MI)),
2206                BB->end());
2207   Sink->transferSuccessorsAndUpdatePHIs(BB);
2208
2209   // Add successors.
2210   BB->addSuccessor(FBB);
2211   BB->addSuccessor(TBB);
2212   FBB->addSuccessor(Sink);
2213   TBB->addSuccessor(Sink);
2214
2215   // Insert the real bnz.b instruction to $BB.
2216   BuildMI(BB, DL, TII->get(BranchOp))
2217     .addReg(MI->getOperand(1).getReg())
2218     .addMBB(TBB);
2219
2220   // Fill $FBB.
2221   unsigned RD1 = RegInfo.createVirtualRegister(RC);
2222   BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), RD1)
2223     .addReg(Mips::ZERO).addImm(0);
2224   BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2225
2226   // Fill $TBB.
2227   unsigned RD2 = RegInfo.createVirtualRegister(RC);
2228   BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), RD2)
2229     .addReg(Mips::ZERO).addImm(1);
2230
2231   // Insert phi function to $Sink.
2232   BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2233           MI->getOperand(0).getReg())
2234     .addReg(RD1).addMBB(FBB).addReg(RD2).addMBB(TBB);
2235
2236   MI->eraseFromParent();   // The pseudo instruction is gone now.
2237   return Sink;
2238 }