blob: ca6ddfd9064f52967d6c6d30d8282ce34c273491 [file] [log] [blame]
Akira Hatanaka44ebe002013-03-14 19:09:52 +00001//===-- MipsSEISelLowering.cpp - MipsSE DAG Lowering Interface --*- C++ -*-===//
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Subclass of MipsTargetLowering specialized for mips32/64.
11//
12//===----------------------------------------------------------------------===//
13#include "MipsSEISelLowering.h"
Eric Christopher79cc1e32014-09-02 22:28:02 +000014#include "MipsMachineFunction.h"
Akira Hatanaka96ca1822013-03-13 00:54:29 +000015#include "MipsRegisterInfo.h"
16#include "MipsTargetMachine.h"
17#include "llvm/CodeGen/MachineInstrBuilder.h"
18#include "llvm/CodeGen/MachineRegisterInfo.h"
Akira Hatanakaa6bbde52013-04-13 02:13:30 +000019#include "llvm/IR/Intrinsics.h"
Akira Hatanaka96ca1822013-03-13 00:54:29 +000020#include "llvm/Support/CommandLine.h"
Daniel Sanders62aeab82013-10-30 13:31:27 +000021#include "llvm/Support/Debug.h"
Hans Wennborg3e9b1c12013-10-30 16:10:10 +000022#include "llvm/Support/raw_ostream.h"
Akira Hatanaka96ca1822013-03-13 00:54:29 +000023#include "llvm/Target/TargetInstrInfo.h"
24
25using namespace llvm;
26
Chandler Carruth84e68b22014-04-22 02:41:26 +000027#define DEBUG_TYPE "mips-isel"
28
Akira Hatanaka96ca1822013-03-13 00:54:29 +000029static cl::opt<bool>
30EnableMipsTailCalls("enable-mips-tail-calls", cl::Hidden,
31 cl::desc("MIPS: Enable tail calls."), cl::init(false));
32
Akira Hatanaka63791212013-09-07 00:52:30 +000033static cl::opt<bool> NoDPLoadStore("mno-ldc1-sdc1", cl::init(false),
34 cl::desc("Expand double precision loads and "
35 "stores to their single precision "
36 "counterparts"));
37
Eric Christopherb1526602014-09-19 23:30:42 +000038MipsSETargetLowering::MipsSETargetLowering(const MipsTargetMachine &TM,
Eric Christopher8924d272014-07-18 23:25:04 +000039 const MipsSubtarget &STI)
40 : MipsTargetLowering(TM, STI) {
Akira Hatanaka96ca1822013-03-13 00:54:29 +000041 // Set up the register classes
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +000042 addRegisterClass(MVT::i32, &Mips::GPR32RegClass);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000043
Eric Christopher1c29a652014-07-18 22:55:25 +000044 if (Subtarget.isGP64bit())
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +000045 addRegisterClass(MVT::i64, &Mips::GPR64RegClass);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000046
Eric Christopher1c29a652014-07-18 22:55:25 +000047 if (Subtarget.hasDSP() || Subtarget.hasMSA()) {
Daniel Sanders36c671e2013-09-27 09:44:59 +000048 // Expand all truncating stores and extending loads.
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +000049 for (MVT VT0 : MVT::vector_valuetypes()) {
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +000050 for (MVT VT1 : MVT::vector_valuetypes()) {
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +000051 setTruncStoreAction(VT0, VT1, Expand);
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +000052 setLoadExtAction(ISD::SEXTLOAD, VT0, VT1, Expand);
53 setLoadExtAction(ISD::ZEXTLOAD, VT0, VT1, Expand);
54 setLoadExtAction(ISD::EXTLOAD, VT0, VT1, Expand);
55 }
Daniel Sanders36c671e2013-09-27 09:44:59 +000056 }
57 }
58
Eric Christopher1c29a652014-07-18 22:55:25 +000059 if (Subtarget.hasDSP()) {
Akira Hatanaka96ca1822013-03-13 00:54:29 +000060 MVT::SimpleValueType VecTys[2] = {MVT::v2i16, MVT::v4i8};
61
62 for (unsigned i = 0; i < array_lengthof(VecTys); ++i) {
Akira Hatanaka654655f2013-08-14 00:53:38 +000063 addRegisterClass(VecTys[i], &Mips::DSPRRegClass);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000064
65 // Expand all builtin opcodes.
66 for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
67 setOperationAction(Opc, VecTys[i], Expand);
68
Akira Hatanaka2f088222013-04-13 00:55:41 +000069 setOperationAction(ISD::ADD, VecTys[i], Legal);
70 setOperationAction(ISD::SUB, VecTys[i], Legal);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000071 setOperationAction(ISD::LOAD, VecTys[i], Legal);
72 setOperationAction(ISD::STORE, VecTys[i], Legal);
73 setOperationAction(ISD::BITCAST, VecTys[i], Legal);
74 }
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +000075
76 setTargetDAGCombine(ISD::SHL);
77 setTargetDAGCombine(ISD::SRA);
78 setTargetDAGCombine(ISD::SRL);
Akira Hatanaka68741cc2013-04-30 22:37:26 +000079 setTargetDAGCombine(ISD::SETCC);
80 setTargetDAGCombine(ISD::VSELECT);
Akira Hatanaka96ca1822013-03-13 00:54:29 +000081 }
82
Eric Christopher1c29a652014-07-18 22:55:25 +000083 if (Subtarget.hasDSPR2())
Akira Hatanaka2f088222013-04-13 00:55:41 +000084 setOperationAction(ISD::MUL, MVT::v2i16, Legal);
85
Eric Christopher1c29a652014-07-18 22:55:25 +000086 if (Subtarget.hasMSA()) {
Daniel Sandersc65f58a2013-09-11 10:15:48 +000087 addMSAIntType(MVT::v16i8, &Mips::MSA128BRegClass);
88 addMSAIntType(MVT::v8i16, &Mips::MSA128HRegClass);
89 addMSAIntType(MVT::v4i32, &Mips::MSA128WRegClass);
90 addMSAIntType(MVT::v2i64, &Mips::MSA128DRegClass);
91 addMSAFloatType(MVT::v8f16, &Mips::MSA128HRegClass);
92 addMSAFloatType(MVT::v4f32, &Mips::MSA128WRegClass);
93 addMSAFloatType(MVT::v2f64, &Mips::MSA128DRegClass);
Daniel Sandersf7456c72013-09-23 13:22:24 +000094
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +000095 setTargetDAGCombine(ISD::AND);
Daniel Sanders53fe6c42013-10-30 13:51:01 +000096 setTargetDAGCombine(ISD::OR);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +000097 setTargetDAGCombine(ISD::SRA);
Daniel Sanderse1d24352013-09-24 12:04:44 +000098 setTargetDAGCombine(ISD::VSELECT);
Daniel Sandersf7456c72013-09-23 13:22:24 +000099 setTargetDAGCombine(ISD::XOR);
Jack Carter3a2c2d42013-08-13 20:54:07 +0000100 }
101
Eric Christopher1c29a652014-07-18 22:55:25 +0000102 if (!Subtarget.abiUsesSoftFloat()) {
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000103 addRegisterClass(MVT::f32, &Mips::FGR32RegClass);
104
105 // When dealing with single precision only, use libcalls
Eric Christopher1c29a652014-07-18 22:55:25 +0000106 if (!Subtarget.isSingleFloat()) {
107 if (Subtarget.isFP64bit())
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000108 addRegisterClass(MVT::f64, &Mips::FGR64RegClass);
109 else
110 addRegisterClass(MVT::f64, &Mips::AFGR64RegClass);
111 }
112 }
113
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000114 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Custom);
115 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Custom);
116 setOperationAction(ISD::MULHS, MVT::i32, Custom);
117 setOperationAction(ISD::MULHU, MVT::i32, Custom);
118
Eric Christopher1c29a652014-07-18 22:55:25 +0000119 if (Subtarget.hasCnMips())
Kai Nacke93fe5e82014-03-20 11:51:58 +0000120 setOperationAction(ISD::MUL, MVT::i64, Legal);
Eric Christopher1c29a652014-07-18 22:55:25 +0000121 else if (Subtarget.isGP64bit())
Kai Nacke93fe5e82014-03-20 11:51:58 +0000122 setOperationAction(ISD::MUL, MVT::i64, Custom);
123
Eric Christopher1c29a652014-07-18 22:55:25 +0000124 if (Subtarget.isGP64bit()) {
Vasileios Kalintirisef96a8e2015-01-26 12:33:22 +0000125 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Custom);
126 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Custom);
Akira Hatanaka4f1130e2013-04-11 19:29:26 +0000127 setOperationAction(ISD::MULHS, MVT::i64, Custom);
128 setOperationAction(ISD::MULHU, MVT::i64, Custom);
Jan Vesely54468a5a2014-10-17 14:45:28 +0000129 setOperationAction(ISD::SDIVREM, MVT::i64, Custom);
130 setOperationAction(ISD::UDIVREM, MVT::i64, Custom);
Akira Hatanaka4f1130e2013-04-11 19:29:26 +0000131 }
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000132
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000133 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::i64, Custom);
134 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i64, Custom);
135
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000136 setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
137 setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000138 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
139 setOperationAction(ISD::LOAD, MVT::i32, Custom);
140 setOperationAction(ISD::STORE, MVT::i32, Custom);
141
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000142 setTargetDAGCombine(ISD::ADDE);
143 setTargetDAGCombine(ISD::SUBE);
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000144 setTargetDAGCombine(ISD::MUL);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000145
Daniel Sandersce09d072013-08-28 12:14:50 +0000146 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +0000147 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
148 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
149
Akira Hatanaka63791212013-09-07 00:52:30 +0000150 if (NoDPLoadStore) {
151 setOperationAction(ISD::LOAD, MVT::f64, Custom);
152 setOperationAction(ISD::STORE, MVT::f64, Custom);
153 }
154
Eric Christopher1c29a652014-07-18 22:55:25 +0000155 if (Subtarget.hasMips32r6()) {
Daniel Sanders308181e2014-06-12 10:44:10 +0000156 // MIPS32r6 replaces the accumulator-based multiplies with a three register
157 // instruction
Daniel Sanders826f8b32014-06-12 10:54:16 +0000158 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
159 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
Daniel Sanders308181e2014-06-12 10:44:10 +0000160 setOperationAction(ISD::MUL, MVT::i32, Legal);
161 setOperationAction(ISD::MULHS, MVT::i32, Legal);
162 setOperationAction(ISD::MULHU, MVT::i32, Legal);
163
164 // MIPS32r6 replaces the accumulator-based division/remainder with separate
165 // three register division and remainder instructions.
166 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
167 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
168 setOperationAction(ISD::SDIV, MVT::i32, Legal);
169 setOperationAction(ISD::UDIV, MVT::i32, Legal);
170 setOperationAction(ISD::SREM, MVT::i32, Legal);
171 setOperationAction(ISD::UREM, MVT::i32, Legal);
Daniel Sanders0fa60412014-06-12 13:39:06 +0000172
173 // MIPS32r6 replaces conditional moves with an equivalent that removes the
174 // need for three GPR read ports.
175 setOperationAction(ISD::SETCC, MVT::i32, Legal);
176 setOperationAction(ISD::SELECT, MVT::i32, Legal);
177 setOperationAction(ISD::SELECT_CC, MVT::i32, Expand);
178
179 setOperationAction(ISD::SETCC, MVT::f32, Legal);
180 setOperationAction(ISD::SELECT, MVT::f32, Legal);
181 setOperationAction(ISD::SELECT_CC, MVT::f32, Expand);
182
Eric Christopher1c29a652014-07-18 22:55:25 +0000183 assert(Subtarget.isFP64bit() && "FR=1 is required for MIPS32r6");
Daniel Sanders0fa60412014-06-12 13:39:06 +0000184 setOperationAction(ISD::SETCC, MVT::f64, Legal);
185 setOperationAction(ISD::SELECT, MVT::f64, Legal);
186 setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
187
Daniel Sanders3d3ea532014-06-12 15:00:17 +0000188 setOperationAction(ISD::BRCOND, MVT::Other, Legal);
189
Daniel Sanders0fa60412014-06-12 13:39:06 +0000190 // Floating point > and >= are supported via < and <=
191 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand);
192 setCondCodeAction(ISD::SETOGT, MVT::f32, Expand);
193 setCondCodeAction(ISD::SETUGE, MVT::f32, Expand);
194 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand);
195
196 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand);
197 setCondCodeAction(ISD::SETOGT, MVT::f64, Expand);
198 setCondCodeAction(ISD::SETUGE, MVT::f64, Expand);
199 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand);
Daniel Sanders308181e2014-06-12 10:44:10 +0000200 }
201
Eric Christopher1c29a652014-07-18 22:55:25 +0000202 if (Subtarget.hasMips64r6()) {
Daniel Sanders308181e2014-06-12 10:44:10 +0000203 // MIPS64r6 replaces the accumulator-based multiplies with a three register
204 // instruction
Vasileios Kalintirisef96a8e2015-01-26 12:33:22 +0000205 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
206 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
Daniel Sanders308181e2014-06-12 10:44:10 +0000207 setOperationAction(ISD::MUL, MVT::i64, Legal);
208 setOperationAction(ISD::MULHS, MVT::i64, Legal);
209 setOperationAction(ISD::MULHU, MVT::i64, Legal);
210
211 // MIPS32r6 replaces the accumulator-based division/remainder with separate
212 // three register division and remainder instructions.
213 setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
214 setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
215 setOperationAction(ISD::SDIV, MVT::i64, Legal);
216 setOperationAction(ISD::UDIV, MVT::i64, Legal);
217 setOperationAction(ISD::SREM, MVT::i64, Legal);
218 setOperationAction(ISD::UREM, MVT::i64, Legal);
Daniel Sanders0fa60412014-06-12 13:39:06 +0000219
220 // MIPS64r6 replaces conditional moves with an equivalent that removes the
221 // need for three GPR read ports.
222 setOperationAction(ISD::SETCC, MVT::i64, Legal);
223 setOperationAction(ISD::SELECT, MVT::i64, Legal);
224 setOperationAction(ISD::SELECT_CC, MVT::i64, Expand);
Daniel Sanders308181e2014-06-12 10:44:10 +0000225 }
226
Eric Christopher23a3a7c2015-02-26 00:00:24 +0000227 computeRegisterProperties(Subtarget.getRegisterInfo());
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000228}
229
230const MipsTargetLowering *
Eric Christopherb1526602014-09-19 23:30:42 +0000231llvm::createMipsSETargetLowering(const MipsTargetMachine &TM,
Eric Christopher8924d272014-07-18 23:25:04 +0000232 const MipsSubtarget &STI) {
233 return new MipsSETargetLowering(TM, STI);
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000234}
235
Eric Christopherbf33a3c2014-07-02 23:18:40 +0000236const TargetRegisterClass *
237MipsSETargetLowering::getRepRegClassFor(MVT VT) const {
238 if (VT == MVT::Untyped)
Eric Christopher1c29a652014-07-18 22:55:25 +0000239 return Subtarget.hasDSP() ? &Mips::ACC64DSPRegClass : &Mips::ACC64RegClass;
Eric Christopherbf33a3c2014-07-02 23:18:40 +0000240
241 return TargetLowering::getRepRegClassFor(VT);
242}
243
Daniel Sanders7a289d02013-09-23 12:02:46 +0000244// Enable MSA support for the given integer type and Register class.
Daniel Sanders3c9a0ad2013-08-23 10:10:13 +0000245void MipsSETargetLowering::
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000246addMSAIntType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
247 addRegisterClass(Ty, RC);
248
249 // Expand all builtin opcodes.
250 for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
251 setOperationAction(Opc, Ty, Expand);
252
253 setOperationAction(ISD::BITCAST, Ty, Legal);
254 setOperationAction(ISD::LOAD, Ty, Legal);
255 setOperationAction(ISD::STORE, Ty, Legal);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000256 setOperationAction(ISD::EXTRACT_VECTOR_ELT, Ty, Custom);
257 setOperationAction(ISD::INSERT_VECTOR_ELT, Ty, Legal);
Daniel Sanders7a289d02013-09-23 12:02:46 +0000258 setOperationAction(ISD::BUILD_VECTOR, Ty, Custom);
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000259
Daniel Sandersfa5ab1c2013-09-11 10:28:16 +0000260 setOperationAction(ISD::ADD, Ty, Legal);
Daniel Sanders8ca81e42013-09-23 12:57:42 +0000261 setOperationAction(ISD::AND, Ty, Legal);
Daniel Sandersfbcb5822013-09-11 11:58:30 +0000262 setOperationAction(ISD::CTLZ, Ty, Legal);
Daniel Sanders766cb692013-09-23 13:40:21 +0000263 setOperationAction(ISD::CTPOP, Ty, Legal);
Daniel Sandersfbcb5822013-09-11 11:58:30 +0000264 setOperationAction(ISD::MUL, Ty, Legal);
Daniel Sanders8ca81e42013-09-23 12:57:42 +0000265 setOperationAction(ISD::OR, Ty, Legal);
Daniel Sanders607952b2013-09-11 10:38:58 +0000266 setOperationAction(ISD::SDIV, Ty, Legal);
Daniel Sanders0210dd42013-10-01 10:22:35 +0000267 setOperationAction(ISD::SREM, Ty, Legal);
Daniel Sandersfbcb5822013-09-11 11:58:30 +0000268 setOperationAction(ISD::SHL, Ty, Legal);
269 setOperationAction(ISD::SRA, Ty, Legal);
270 setOperationAction(ISD::SRL, Ty, Legal);
271 setOperationAction(ISD::SUB, Ty, Legal);
Daniel Sanders607952b2013-09-11 10:38:58 +0000272 setOperationAction(ISD::UDIV, Ty, Legal);
Daniel Sanders0210dd42013-10-01 10:22:35 +0000273 setOperationAction(ISD::UREM, Ty, Legal);
Daniel Sanderse5087042013-09-24 14:02:15 +0000274 setOperationAction(ISD::VECTOR_SHUFFLE, Ty, Custom);
Daniel Sanderse1d24352013-09-24 12:04:44 +0000275 setOperationAction(ISD::VSELECT, Ty, Legal);
Daniel Sanders8ca81e42013-09-23 12:57:42 +0000276 setOperationAction(ISD::XOR, Ty, Legal);
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000277
Daniel Sanders015972b2013-10-11 10:00:06 +0000278 if (Ty == MVT::v4i32 || Ty == MVT::v2i64) {
279 setOperationAction(ISD::FP_TO_SINT, Ty, Legal);
280 setOperationAction(ISD::FP_TO_UINT, Ty, Legal);
281 setOperationAction(ISD::SINT_TO_FP, Ty, Legal);
282 setOperationAction(ISD::UINT_TO_FP, Ty, Legal);
283 }
284
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000285 setOperationAction(ISD::SETCC, Ty, Legal);
286 setCondCodeAction(ISD::SETNE, Ty, Expand);
287 setCondCodeAction(ISD::SETGE, Ty, Expand);
288 setCondCodeAction(ISD::SETGT, Ty, Expand);
289 setCondCodeAction(ISD::SETUGE, Ty, Expand);
290 setCondCodeAction(ISD::SETUGT, Ty, Expand);
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000291}
292
Daniel Sanders7a289d02013-09-23 12:02:46 +0000293// Enable MSA support for the given floating-point type and Register class.
Daniel Sandersc65f58a2013-09-11 10:15:48 +0000294void MipsSETargetLowering::
295addMSAFloatType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
Daniel Sanders3c9a0ad2013-08-23 10:10:13 +0000296 addRegisterClass(Ty, RC);
Jack Carterbabdcc82013-08-15 12:24:57 +0000297
298 // Expand all builtin opcodes.
299 for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
300 setOperationAction(Opc, Ty, Expand);
301
302 setOperationAction(ISD::LOAD, Ty, Legal);
303 setOperationAction(ISD::STORE, Ty, Legal);
304 setOperationAction(ISD::BITCAST, Ty, Legal);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000305 setOperationAction(ISD::EXTRACT_VECTOR_ELT, Ty, Legal);
Daniel Sandersa5150702013-09-27 12:31:32 +0000306 setOperationAction(ISD::INSERT_VECTOR_ELT, Ty, Legal);
Daniel Sanders1dfddc72013-10-15 13:14:41 +0000307 setOperationAction(ISD::BUILD_VECTOR, Ty, Custom);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000308
309 if (Ty != MVT::v8f16) {
Daniel Sanders4f3ff1b2013-09-24 13:02:08 +0000310 setOperationAction(ISD::FABS, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000311 setOperationAction(ISD::FADD, Ty, Legal);
312 setOperationAction(ISD::FDIV, Ty, Legal);
Daniel Sandersa9521602013-10-23 10:36:52 +0000313 setOperationAction(ISD::FEXP2, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000314 setOperationAction(ISD::FLOG2, Ty, Legal);
Daniel Sandersd7103f32013-10-11 10:14:25 +0000315 setOperationAction(ISD::FMA, Ty, Legal);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000316 setOperationAction(ISD::FMUL, Ty, Legal);
317 setOperationAction(ISD::FRINT, Ty, Legal);
318 setOperationAction(ISD::FSQRT, Ty, Legal);
319 setOperationAction(ISD::FSUB, Ty, Legal);
Daniel Sanderse1d24352013-09-24 12:04:44 +0000320 setOperationAction(ISD::VSELECT, Ty, Legal);
Daniel Sandersfd538dc2013-09-24 10:46:19 +0000321
322 setOperationAction(ISD::SETCC, Ty, Legal);
323 setCondCodeAction(ISD::SETOGE, Ty, Expand);
324 setCondCodeAction(ISD::SETOGT, Ty, Expand);
325 setCondCodeAction(ISD::SETUGE, Ty, Expand);
326 setCondCodeAction(ISD::SETUGT, Ty, Expand);
327 setCondCodeAction(ISD::SETGE, Ty, Expand);
328 setCondCodeAction(ISD::SETGT, Ty, Expand);
Daniel Sandersf5bd9372013-09-11 10:51:30 +0000329 }
Jack Carterbabdcc82013-08-15 12:24:57 +0000330}
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000331
332bool
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000333MipsSETargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
334 unsigned,
335 unsigned,
336 bool *Fast) const {
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000337 MVT::SimpleValueType SVT = VT.getSimpleVT().SimpleTy;
338
Eric Christopher1c29a652014-07-18 22:55:25 +0000339 if (Subtarget.systemSupportsUnalignedAccess()) {
Daniel Sandersac272632014-05-23 13:18:02 +0000340 // MIPS32r6/MIPS64r6 is required to support unaligned access. It's
341 // implementation defined whether this is handled by hardware, software, or
342 // a hybrid of the two but it's expected that most implementations will
343 // handle the majority of cases in hardware.
344 if (Fast)
345 *Fast = true;
346 return true;
347 }
348
Akira Hatanaka96ca1822013-03-13 00:54:29 +0000349 switch (SVT) {
350 case MVT::i64:
351 case MVT::i32:
352 if (Fast)
353 *Fast = true;
354 return true;
355 default:
356 return false;
357 }
358}
359
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000360SDValue MipsSETargetLowering::LowerOperation(SDValue Op,
361 SelectionDAG &DAG) const {
362 switch(Op.getOpcode()) {
Akira Hatanaka63791212013-09-07 00:52:30 +0000363 case ISD::LOAD: return lowerLOAD(Op, DAG);
364 case ISD::STORE: return lowerSTORE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000365 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG);
366 case ISD::UMUL_LOHI: return lowerMulDiv(Op, MipsISD::Multu, true, true, DAG);
367 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG);
368 case ISD::MULHU: return lowerMulDiv(Op, MipsISD::Multu, false, true, DAG);
369 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG);
370 case ISD::SDIVREM: return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG);
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000371 case ISD::UDIVREM: return lowerMulDiv(Op, MipsISD::DivRemU, true, true,
372 DAG);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +0000373 case ISD::INTRINSIC_WO_CHAIN: return lowerINTRINSIC_WO_CHAIN(Op, DAG);
374 case ISD::INTRINSIC_W_CHAIN: return lowerINTRINSIC_W_CHAIN(Op, DAG);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +0000375 case ISD::INTRINSIC_VOID: return lowerINTRINSIC_VOID(Op, DAG);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000376 case ISD::EXTRACT_VECTOR_ELT: return lowerEXTRACT_VECTOR_ELT(Op, DAG);
Daniel Sanders7a289d02013-09-23 12:02:46 +0000377 case ISD::BUILD_VECTOR: return lowerBUILD_VECTOR(Op, DAG);
Daniel Sanderse5087042013-09-24 14:02:15 +0000378 case ISD::VECTOR_SHUFFLE: return lowerVECTOR_SHUFFLE(Op, DAG);
Akira Hatanakabe8612f2013-03-30 01:36:35 +0000379 }
380
381 return MipsTargetLowering::LowerOperation(Op, DAG);
382}
383
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000384// selectMADD -
385// Transforms a subgraph in CurDAG if the following pattern is found:
386// (addc multLo, Lo0), (adde multHi, Hi0),
387// where,
388// multHi/Lo: product of multiplication
389// Lo0: initial value of Lo register
390// Hi0: initial value of Hi register
391// Return true if pattern matching was successful.
392static bool selectMADD(SDNode *ADDENode, SelectionDAG *CurDAG) {
393 // ADDENode's second operand must be a flag output of an ADDC node in order
394 // for the matching to be successful.
395 SDNode *ADDCNode = ADDENode->getOperand(2).getNode();
396
397 if (ADDCNode->getOpcode() != ISD::ADDC)
398 return false;
399
400 SDValue MultHi = ADDENode->getOperand(0);
401 SDValue MultLo = ADDCNode->getOperand(0);
402 SDNode *MultNode = MultHi.getNode();
403 unsigned MultOpc = MultHi.getOpcode();
404
405 // MultHi and MultLo must be generated by the same node,
406 if (MultLo.getNode() != MultNode)
407 return false;
408
409 // and it must be a multiplication.
410 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
411 return false;
412
413 // MultLo amd MultHi must be the first and second output of MultNode
414 // respectively.
415 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
416 return false;
417
418 // Transform this to a MADD only if ADDENode and ADDCNode are the only users
419 // of the values of MultNode, in which case MultNode will be removed in later
420 // phases.
421 // If there exist users other than ADDENode or ADDCNode, this function returns
422 // here, which will result in MultNode being mapped to a single MULT
423 // instruction node rather than a pair of MULT and MADD instructions being
424 // produced.
425 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
426 return false;
427
Andrew Trickef9de2a2013-05-25 02:42:55 +0000428 SDLoc DL(ADDENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000429
430 // Initialize accumulator.
Akira Hatanakad98c99f2013-10-15 01:12:50 +0000431 SDValue ACCIn = CurDAG->getNode(MipsISD::MTLOHI, DL, MVT::Untyped,
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000432 ADDCNode->getOperand(1),
433 ADDENode->getOperand(1));
434
435 // create MipsMAdd(u) node
436 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MAddu : MipsISD::MAdd;
437
438 SDValue MAdd = CurDAG->getNode(MultOpc, DL, MVT::Untyped,
439 MultNode->getOperand(0),// Factor 0
440 MultNode->getOperand(1),// Factor 1
441 ACCIn);
442
443 // replace uses of adde and addc here
444 if (!SDValue(ADDCNode, 0).use_empty()) {
Akira Hatanakad98c99f2013-10-15 01:12:50 +0000445 SDValue LoOut = CurDAG->getNode(MipsISD::MFLO, DL, MVT::i32, MAdd);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000446 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDCNode, 0), LoOut);
447 }
448 if (!SDValue(ADDENode, 0).use_empty()) {
Akira Hatanakad98c99f2013-10-15 01:12:50 +0000449 SDValue HiOut = CurDAG->getNode(MipsISD::MFHI, DL, MVT::i32, MAdd);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000450 CurDAG->ReplaceAllUsesOfValueWith(SDValue(ADDENode, 0), HiOut);
451 }
452
453 return true;
454}
455
456// selectMSUB -
457// Transforms a subgraph in CurDAG if the following pattern is found:
458// (addc Lo0, multLo), (sube Hi0, multHi),
459// where,
460// multHi/Lo: product of multiplication
461// Lo0: initial value of Lo register
462// Hi0: initial value of Hi register
463// Return true if pattern matching was successful.
464static bool selectMSUB(SDNode *SUBENode, SelectionDAG *CurDAG) {
465 // SUBENode's second operand must be a flag output of an SUBC node in order
466 // for the matching to be successful.
467 SDNode *SUBCNode = SUBENode->getOperand(2).getNode();
468
469 if (SUBCNode->getOpcode() != ISD::SUBC)
470 return false;
471
472 SDValue MultHi = SUBENode->getOperand(1);
473 SDValue MultLo = SUBCNode->getOperand(1);
474 SDNode *MultNode = MultHi.getNode();
475 unsigned MultOpc = MultHi.getOpcode();
476
477 // MultHi and MultLo must be generated by the same node,
478 if (MultLo.getNode() != MultNode)
479 return false;
480
481 // and it must be a multiplication.
482 if (MultOpc != ISD::SMUL_LOHI && MultOpc != ISD::UMUL_LOHI)
483 return false;
484
485 // MultLo amd MultHi must be the first and second output of MultNode
486 // respectively.
487 if (MultHi.getResNo() != 1 || MultLo.getResNo() != 0)
488 return false;
489
490 // Transform this to a MSUB only if SUBENode and SUBCNode are the only users
491 // of the values of MultNode, in which case MultNode will be removed in later
492 // phases.
493 // If there exist users other than SUBENode or SUBCNode, this function returns
494 // here, which will result in MultNode being mapped to a single MULT
495 // instruction node rather than a pair of MULT and MSUB instructions being
496 // produced.
497 if (!MultHi.hasOneUse() || !MultLo.hasOneUse())
498 return false;
499
Andrew Trickef9de2a2013-05-25 02:42:55 +0000500 SDLoc DL(SUBENode);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000501
502 // Initialize accumulator.
Akira Hatanakad98c99f2013-10-15 01:12:50 +0000503 SDValue ACCIn = CurDAG->getNode(MipsISD::MTLOHI, DL, MVT::Untyped,
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000504 SUBCNode->getOperand(0),
505 SUBENode->getOperand(0));
506
507 // create MipsSub(u) node
508 MultOpc = MultOpc == ISD::UMUL_LOHI ? MipsISD::MSubu : MipsISD::MSub;
509
510 SDValue MSub = CurDAG->getNode(MultOpc, DL, MVT::Glue,
511 MultNode->getOperand(0),// Factor 0
512 MultNode->getOperand(1),// Factor 1
513 ACCIn);
514
515 // replace uses of sube and subc here
516 if (!SDValue(SUBCNode, 0).use_empty()) {
Akira Hatanakad98c99f2013-10-15 01:12:50 +0000517 SDValue LoOut = CurDAG->getNode(MipsISD::MFLO, DL, MVT::i32, MSub);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000518 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBCNode, 0), LoOut);
519 }
520 if (!SDValue(SUBENode, 0).use_empty()) {
Akira Hatanakad98c99f2013-10-15 01:12:50 +0000521 SDValue HiOut = CurDAG->getNode(MipsISD::MFHI, DL, MVT::i32, MSub);
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000522 CurDAG->ReplaceAllUsesOfValueWith(SDValue(SUBENode, 0), HiOut);
523 }
524
525 return true;
526}
527
528static SDValue performADDECombine(SDNode *N, SelectionDAG &DAG,
529 TargetLowering::DAGCombinerInfo &DCI,
Eric Christopher1c29a652014-07-18 22:55:25 +0000530 const MipsSubtarget &Subtarget) {
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000531 if (DCI.isBeforeLegalize())
532 return SDValue();
533
Eric Christopher1c29a652014-07-18 22:55:25 +0000534 if (Subtarget.hasMips32() && !Subtarget.hasMips32r6() &&
Daniel Sanders826f8b32014-06-12 10:54:16 +0000535 N->getValueType(0) == MVT::i32 && selectMADD(N, &DAG))
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000536 return SDValue(N, 0);
537
538 return SDValue();
539}
540
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000541// Fold zero extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT
542//
543// Performs the following transformations:
544// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to zero extension if its
545// sign/zero-extension is completely overwritten by the new one performed by
546// the ISD::AND.
547// - Removes redundant zero extensions performed by an ISD::AND.
548static SDValue performANDCombine(SDNode *N, SelectionDAG &DAG,
549 TargetLowering::DAGCombinerInfo &DCI,
Eric Christopher1c29a652014-07-18 22:55:25 +0000550 const MipsSubtarget &Subtarget) {
551 if (!Subtarget.hasMSA())
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000552 return SDValue();
553
554 SDValue Op0 = N->getOperand(0);
555 SDValue Op1 = N->getOperand(1);
556 unsigned Op0Opcode = Op0->getOpcode();
557
558 // (and (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d)
559 // where $d + 1 == 2^n and n == 32
560 // or $d + 1 == 2^n and n <= 32 and ZExt
561 // -> (MipsVExtractZExt $a, $b, $c)
562 if (Op0Opcode == MipsISD::VEXTRACT_SEXT_ELT ||
563 Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT) {
564 ConstantSDNode *Mask = dyn_cast<ConstantSDNode>(Op1);
565
566 if (!Mask)
567 return SDValue();
568
569 int32_t Log2IfPositive = (Mask->getAPIntValue() + 1).exactLogBase2();
570
571 if (Log2IfPositive <= 0)
572 return SDValue(); // Mask+1 is not a power of 2
573
574 SDValue Op0Op2 = Op0->getOperand(2);
575 EVT ExtendTy = cast<VTSDNode>(Op0Op2)->getVT();
576 unsigned ExtendTySize = ExtendTy.getSizeInBits();
577 unsigned Log2 = Log2IfPositive;
578
579 if ((Op0Opcode == MipsISD::VEXTRACT_ZEXT_ELT && Log2 >= ExtendTySize) ||
580 Log2 == ExtendTySize) {
581 SDValue Ops[] = { Op0->getOperand(0), Op0->getOperand(1), Op0Op2 };
Chandler Carruth356665a2014-08-01 22:09:43 +0000582 return DAG.getNode(MipsISD::VEXTRACT_ZEXT_ELT, SDLoc(Op0),
583 Op0->getVTList(),
584 makeArrayRef(Ops, Op0->getNumOperands()));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000585 }
586 }
587
588 return SDValue();
589}
590
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000591// Determine if the specified node is a constant vector splat.
592//
593// Returns true and sets Imm if:
594// * N is a ISD::BUILD_VECTOR representing a constant splat
595//
596// This function is quite similar to MipsSEDAGToDAGISel::selectVSplat. The
597// differences are that it assumes the MSA has already been checked and the
598// arbitrary requirement for a maximum of 32-bit integers isn't applied (and
599// must not be in order for binsri.d to be selectable).
600static bool isVSplat(SDValue N, APInt &Imm, bool IsLittleEndian) {
601 BuildVectorSDNode *Node = dyn_cast<BuildVectorSDNode>(N.getNode());
602
Craig Topper062a2ba2014-04-25 05:30:21 +0000603 if (!Node)
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000604 return false;
605
606 APInt SplatValue, SplatUndef;
607 unsigned SplatBitSize;
608 bool HasAnyUndefs;
609
610 if (!Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
611 8, !IsLittleEndian))
612 return false;
613
614 Imm = SplatValue;
615
616 return true;
617}
618
Daniel Sandersab94b532013-10-30 15:20:38 +0000619// Test whether the given node is an all-ones build_vector.
620static bool isVectorAllOnes(SDValue N) {
621 // Look through bitcasts. Endianness doesn't matter because we are looking
622 // for an all-ones value.
623 if (N->getOpcode() == ISD::BITCAST)
624 N = N->getOperand(0);
625
626 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N);
627
628 if (!BVN)
629 return false;
630
631 APInt SplatValue, SplatUndef;
632 unsigned SplatBitSize;
633 bool HasAnyUndefs;
634
635 // Endianness doesn't matter in this context because we are looking for
636 // an all-ones value.
637 if (BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs))
638 return SplatValue.isAllOnesValue();
639
640 return false;
641}
642
643// Test whether N is the bitwise inverse of OfNode.
644static bool isBitwiseInverse(SDValue N, SDValue OfNode) {
645 if (N->getOpcode() != ISD::XOR)
646 return false;
647
648 if (isVectorAllOnes(N->getOperand(0)))
649 return N->getOperand(1) == OfNode;
650
651 if (isVectorAllOnes(N->getOperand(1)))
652 return N->getOperand(0) == OfNode;
653
654 return false;
655}
656
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000657// Perform combines where ISD::OR is the root node.
658//
659// Performs the following transformations:
660// - (or (and $a, $mask), (and $b, $inv_mask)) => (vselect $mask, $a, $b)
661// where $inv_mask is the bitwise inverse of $mask and the 'or' has a 128-bit
662// vector type.
663static SDValue performORCombine(SDNode *N, SelectionDAG &DAG,
664 TargetLowering::DAGCombinerInfo &DCI,
Eric Christopher1c29a652014-07-18 22:55:25 +0000665 const MipsSubtarget &Subtarget) {
666 if (!Subtarget.hasMSA())
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000667 return SDValue();
668
669 EVT Ty = N->getValueType(0);
670
671 if (!Ty.is128BitVector())
672 return SDValue();
673
674 SDValue Op0 = N->getOperand(0);
675 SDValue Op1 = N->getOperand(1);
676
677 if (Op0->getOpcode() == ISD::AND && Op1->getOpcode() == ISD::AND) {
678 SDValue Op0Op0 = Op0->getOperand(0);
679 SDValue Op0Op1 = Op0->getOperand(1);
680 SDValue Op1Op0 = Op1->getOperand(0);
681 SDValue Op1Op1 = Op1->getOperand(1);
Eric Christopher1c29a652014-07-18 22:55:25 +0000682 bool IsLittleEndian = !Subtarget.isLittle();
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000683
684 SDValue IfSet, IfClr, Cond;
Daniel Sandersab94b532013-10-30 15:20:38 +0000685 bool IsConstantMask = false;
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000686 APInt Mask, InvMask;
687
688 // If Op0Op0 is an appropriate mask, try to find it's inverse in either
689 // Op1Op0, or Op1Op1. Keep track of the Cond, IfSet, and IfClr nodes, while
690 // looking.
691 // IfClr will be set if we find a valid match.
692 if (isVSplat(Op0Op0, Mask, IsLittleEndian)) {
693 Cond = Op0Op0;
694 IfSet = Op0Op1;
695
Daniel Sandersc8c50fb2013-11-21 16:11:31 +0000696 if (isVSplat(Op1Op0, InvMask, IsLittleEndian) &&
697 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask)
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000698 IfClr = Op1Op1;
Daniel Sandersc8c50fb2013-11-21 16:11:31 +0000699 else if (isVSplat(Op1Op1, InvMask, IsLittleEndian) &&
700 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask)
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000701 IfClr = Op1Op0;
Daniel Sandersab94b532013-10-30 15:20:38 +0000702
703 IsConstantMask = true;
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000704 }
705
706 // If IfClr is not yet set, and Op0Op1 is an appropriate mask, try the same
707 // thing again using this mask.
708 // IfClr will be set if we find a valid match.
709 if (!IfClr.getNode() && isVSplat(Op0Op1, Mask, IsLittleEndian)) {
710 Cond = Op0Op1;
711 IfSet = Op0Op0;
712
Daniel Sandersc8c50fb2013-11-21 16:11:31 +0000713 if (isVSplat(Op1Op0, InvMask, IsLittleEndian) &&
714 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask)
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000715 IfClr = Op1Op1;
Daniel Sandersc8c50fb2013-11-21 16:11:31 +0000716 else if (isVSplat(Op1Op1, InvMask, IsLittleEndian) &&
717 Mask.getBitWidth() == InvMask.getBitWidth() && Mask == ~InvMask)
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000718 IfClr = Op1Op0;
Daniel Sandersab94b532013-10-30 15:20:38 +0000719
720 IsConstantMask = true;
721 }
722
723 // If IfClr is not yet set, try looking for a non-constant match.
724 // IfClr will be set if we find a valid match amongst the eight
725 // possibilities.
726 if (!IfClr.getNode()) {
727 if (isBitwiseInverse(Op0Op0, Op1Op0)) {
728 Cond = Op1Op0;
729 IfSet = Op1Op1;
730 IfClr = Op0Op1;
731 } else if (isBitwiseInverse(Op0Op1, Op1Op0)) {
732 Cond = Op1Op0;
733 IfSet = Op1Op1;
734 IfClr = Op0Op0;
735 } else if (isBitwiseInverse(Op0Op0, Op1Op1)) {
736 Cond = Op1Op1;
737 IfSet = Op1Op0;
738 IfClr = Op0Op1;
739 } else if (isBitwiseInverse(Op0Op1, Op1Op1)) {
740 Cond = Op1Op1;
741 IfSet = Op1Op0;
742 IfClr = Op0Op0;
743 } else if (isBitwiseInverse(Op1Op0, Op0Op0)) {
744 Cond = Op0Op0;
745 IfSet = Op0Op1;
746 IfClr = Op1Op1;
747 } else if (isBitwiseInverse(Op1Op1, Op0Op0)) {
748 Cond = Op0Op0;
749 IfSet = Op0Op1;
750 IfClr = Op1Op0;
751 } else if (isBitwiseInverse(Op1Op0, Op0Op1)) {
752 Cond = Op0Op1;
753 IfSet = Op0Op0;
754 IfClr = Op1Op1;
755 } else if (isBitwiseInverse(Op1Op1, Op0Op1)) {
756 Cond = Op0Op1;
757 IfSet = Op0Op0;
758 IfClr = Op1Op0;
759 }
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000760 }
761
762 // At this point, IfClr will be set if we have a valid match.
763 if (!IfClr.getNode())
764 return SDValue();
765
766 assert(Cond.getNode() && IfSet.getNode());
767
768 // Fold degenerate cases.
Daniel Sandersab94b532013-10-30 15:20:38 +0000769 if (IsConstantMask) {
770 if (Mask.isAllOnesValue())
771 return IfSet;
772 else if (Mask == 0)
773 return IfClr;
774 }
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000775
776 // Transform the DAG into an equivalent VSELECT.
Daniel Sandersdf2215452014-03-12 11:54:00 +0000777 return DAG.getNode(ISD::VSELECT, SDLoc(N), Ty, Cond, IfSet, IfClr);
Daniel Sanders53fe6c42013-10-30 13:51:01 +0000778 }
779
780 return SDValue();
781}
782
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000783static SDValue performSUBECombine(SDNode *N, SelectionDAG &DAG,
784 TargetLowering::DAGCombinerInfo &DCI,
Eric Christopher1c29a652014-07-18 22:55:25 +0000785 const MipsSubtarget &Subtarget) {
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000786 if (DCI.isBeforeLegalize())
787 return SDValue();
788
Eric Christopher1c29a652014-07-18 22:55:25 +0000789 if (Subtarget.hasMips32() && N->getValueType(0) == MVT::i32 &&
Akira Hatanaka9efcd762013-03-30 01:42:24 +0000790 selectMSUB(N, &DAG))
791 return SDValue(N, 0);
792
793 return SDValue();
794}
795
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000796static SDValue genConstMult(SDValue X, uint64_t C, SDLoc DL, EVT VT,
797 EVT ShiftTy, SelectionDAG &DAG) {
798 // Clear the upper (64 - VT.sizeInBits) bits.
799 C &= ((uint64_t)-1) >> (64 - VT.getSizeInBits());
800
801 // Return 0.
802 if (C == 0)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000803 return DAG.getConstant(0, DL, VT);
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000804
805 // Return x.
806 if (C == 1)
807 return X;
808
809 // If c is power of 2, return (shl x, log2(c)).
810 if (isPowerOf2_64(C))
811 return DAG.getNode(ISD::SHL, DL, VT, X,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000812 DAG.getConstant(Log2_64(C), DL, ShiftTy));
Akira Hatanaka5832fc62013-06-26 18:48:17 +0000813
814 unsigned Log2Ceil = Log2_64_Ceil(C);
815 uint64_t Floor = 1LL << Log2_64(C);
816 uint64_t Ceil = Log2Ceil == 64 ? 0LL : 1LL << Log2Ceil;
817
818 // If |c - floor_c| <= |c - ceil_c|,
819 // where floor_c = pow(2, floor(log2(c))) and ceil_c = pow(2, ceil(log2(c))),
820 // return (add constMult(x, floor_c), constMult(x, c - floor_c)).
821 if (C - Floor <= Ceil - C) {
822 SDValue Op0 = genConstMult(X, Floor, DL, VT, ShiftTy, DAG);
823 SDValue Op1 = genConstMult(X, C - Floor, DL, VT, ShiftTy, DAG);
824 return DAG.getNode(ISD::ADD, DL, VT, Op0, Op1);
825 }
826
827 // If |c - floor_c| > |c - ceil_c|,
828 // return (sub constMult(x, ceil_c), constMult(x, ceil_c - c)).
829 SDValue Op0 = genConstMult(X, Ceil, DL, VT, ShiftTy, DAG);
830 SDValue Op1 = genConstMult(X, Ceil - C, DL, VT, ShiftTy, DAG);
831 return DAG.getNode(ISD::SUB, DL, VT, Op0, Op1);
832}
833
834static SDValue performMULCombine(SDNode *N, SelectionDAG &DAG,
835 const TargetLowering::DAGCombinerInfo &DCI,
836 const MipsSETargetLowering *TL) {
837 EVT VT = N->getValueType(0);
838
839 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
840 if (!VT.isVector())
841 return genConstMult(N->getOperand(0), C->getZExtValue(), SDLoc(N),
842 VT, TL->getScalarShiftAmountTy(VT), DAG);
843
844 return SDValue(N, 0);
845}
846
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000847static SDValue performDSPShiftCombine(unsigned Opc, SDNode *N, EVT Ty,
848 SelectionDAG &DAG,
Eric Christopher1c29a652014-07-18 22:55:25 +0000849 const MipsSubtarget &Subtarget) {
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000850 // See if this is a vector splat immediate node.
851 APInt SplatValue, SplatUndef;
852 unsigned SplatBitSize;
853 bool HasAnyUndefs;
854 unsigned EltSize = Ty.getVectorElementType().getSizeInBits();
855 BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
856
Eric Christopher1c29a652014-07-18 22:55:25 +0000857 if (!Subtarget.hasDSP())
Daniel Sanders6e664bc2013-11-21 11:40:14 +0000858 return SDValue();
859
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000860 if (!BV ||
Akira Hatanakad8fb0322013-04-22 20:13:37 +0000861 !BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
Eric Christopher1c29a652014-07-18 22:55:25 +0000862 EltSize, !Subtarget.isLittle()) ||
Akira Hatanaka0d6964c2013-04-22 19:58:23 +0000863 (SplatBitSize != EltSize) ||
Akira Hatanakae9d0b312013-04-23 18:09:42 +0000864 (SplatValue.getZExtValue() >= EltSize))
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000865 return SDValue();
866
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000867 SDLoc DL(N);
868 return DAG.getNode(Opc, DL, Ty, N->getOperand(0),
869 DAG.getConstant(SplatValue.getZExtValue(), DL, MVT::i32));
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000870}
871
872static SDValue performSHLCombine(SDNode *N, SelectionDAG &DAG,
873 TargetLowering::DAGCombinerInfo &DCI,
Eric Christopher1c29a652014-07-18 22:55:25 +0000874 const MipsSubtarget &Subtarget) {
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000875 EVT Ty = N->getValueType(0);
876
877 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
878 return SDValue();
879
880 return performDSPShiftCombine(MipsISD::SHLL_DSP, N, Ty, DAG, Subtarget);
881}
882
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000883// Fold sign-extensions into MipsISD::VEXTRACT_[SZ]EXT_ELT for MSA and fold
884// constant splats into MipsISD::SHRA_DSP for DSPr2.
885//
886// Performs the following transformations:
887// - Changes MipsISD::VEXTRACT_[SZ]EXT_ELT to sign extension if its
888// sign/zero-extension is completely overwritten by the new one performed by
889// the ISD::SRA and ISD::SHL nodes.
890// - Removes redundant sign extensions performed by an ISD::SRA and ISD::SHL
891// sequence.
892//
893// See performDSPShiftCombine for more information about the transformation
894// used for DSPr2.
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000895static SDValue performSRACombine(SDNode *N, SelectionDAG &DAG,
896 TargetLowering::DAGCombinerInfo &DCI,
Eric Christopher1c29a652014-07-18 22:55:25 +0000897 const MipsSubtarget &Subtarget) {
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000898 EVT Ty = N->getValueType(0);
899
Eric Christopher1c29a652014-07-18 22:55:25 +0000900 if (Subtarget.hasMSA()) {
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000901 SDValue Op0 = N->getOperand(0);
902 SDValue Op1 = N->getOperand(1);
903
904 // (sra (shl (MipsVExtract[SZ]Ext $a, $b, $c), imm:$d), imm:$d)
905 // where $d + sizeof($c) == 32
906 // or $d + sizeof($c) <= 32 and SExt
907 // -> (MipsVExtractSExt $a, $b, $c)
908 if (Op0->getOpcode() == ISD::SHL && Op1 == Op0->getOperand(1)) {
909 SDValue Op0Op0 = Op0->getOperand(0);
910 ConstantSDNode *ShAmount = dyn_cast<ConstantSDNode>(Op1);
911
912 if (!ShAmount)
913 return SDValue();
914
Daniel Sandersf4f1a872013-09-27 09:25:29 +0000915 if (Op0Op0->getOpcode() != MipsISD::VEXTRACT_SEXT_ELT &&
916 Op0Op0->getOpcode() != MipsISD::VEXTRACT_ZEXT_ELT)
917 return SDValue();
918
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000919 EVT ExtendTy = cast<VTSDNode>(Op0Op0->getOperand(2))->getVT();
920 unsigned TotalBits = ShAmount->getZExtValue() + ExtendTy.getSizeInBits();
921
922 if (TotalBits == 32 ||
923 (Op0Op0->getOpcode() == MipsISD::VEXTRACT_SEXT_ELT &&
924 TotalBits <= 32)) {
925 SDValue Ops[] = { Op0Op0->getOperand(0), Op0Op0->getOperand(1),
926 Op0Op0->getOperand(2) };
Chandler Carruth356665a2014-08-01 22:09:43 +0000927 return DAG.getNode(MipsISD::VEXTRACT_SEXT_ELT, SDLoc(Op0Op0),
928 Op0Op0->getVTList(),
929 makeArrayRef(Ops, Op0Op0->getNumOperands()));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +0000930 }
931 }
932 }
933
Eric Christopher1c29a652014-07-18 22:55:25 +0000934 if ((Ty != MVT::v2i16) && ((Ty != MVT::v4i8) || !Subtarget.hasDSPR2()))
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000935 return SDValue();
936
937 return performDSPShiftCombine(MipsISD::SHRA_DSP, N, Ty, DAG, Subtarget);
938}
939
940
941static SDValue performSRLCombine(SDNode *N, SelectionDAG &DAG,
942 TargetLowering::DAGCombinerInfo &DCI,
Eric Christopher1c29a652014-07-18 22:55:25 +0000943 const MipsSubtarget &Subtarget) {
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000944 EVT Ty = N->getValueType(0);
945
Eric Christopher1c29a652014-07-18 22:55:25 +0000946 if (((Ty != MVT::v2i16) || !Subtarget.hasDSPR2()) && (Ty != MVT::v4i8))
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +0000947 return SDValue();
948
949 return performDSPShiftCombine(MipsISD::SHRL_DSP, N, Ty, DAG, Subtarget);
950}
951
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000952static bool isLegalDSPCondCode(EVT Ty, ISD::CondCode CC) {
953 bool IsV216 = (Ty == MVT::v2i16);
954
955 switch (CC) {
956 case ISD::SETEQ:
957 case ISD::SETNE: return true;
958 case ISD::SETLT:
959 case ISD::SETLE:
960 case ISD::SETGT:
961 case ISD::SETGE: return IsV216;
962 case ISD::SETULT:
963 case ISD::SETULE:
964 case ISD::SETUGT:
965 case ISD::SETUGE: return !IsV216;
966 default: return false;
967 }
968}
969
970static SDValue performSETCCCombine(SDNode *N, SelectionDAG &DAG) {
971 EVT Ty = N->getValueType(0);
972
973 if ((Ty != MVT::v2i16) && (Ty != MVT::v4i8))
974 return SDValue();
975
976 if (!isLegalDSPCondCode(Ty, cast<CondCodeSDNode>(N->getOperand(2))->get()))
977 return SDValue();
978
Andrew Trickef9de2a2013-05-25 02:42:55 +0000979 return DAG.getNode(MipsISD::SETCC_DSP, SDLoc(N), Ty, N->getOperand(0),
Akira Hatanaka68741cc2013-04-30 22:37:26 +0000980 N->getOperand(1), N->getOperand(2));
981}
982
983static SDValue performVSELECTCombine(SDNode *N, SelectionDAG &DAG) {
984 EVT Ty = N->getValueType(0);
985
Daniel Sanders3ce56622013-09-24 12:18:31 +0000986 if (Ty.is128BitVector() && Ty.isInteger()) {
987 // Try the following combines:
988 // (vselect (setcc $a, $b, SETLT), $b, $a)) -> (vsmax $a, $b)
989 // (vselect (setcc $a, $b, SETLE), $b, $a)) -> (vsmax $a, $b)
990 // (vselect (setcc $a, $b, SETLT), $a, $b)) -> (vsmin $a, $b)
991 // (vselect (setcc $a, $b, SETLE), $a, $b)) -> (vsmin $a, $b)
992 // (vselect (setcc $a, $b, SETULT), $b, $a)) -> (vumax $a, $b)
993 // (vselect (setcc $a, $b, SETULE), $b, $a)) -> (vumax $a, $b)
994 // (vselect (setcc $a, $b, SETULT), $a, $b)) -> (vumin $a, $b)
995 // (vselect (setcc $a, $b, SETULE), $a, $b)) -> (vumin $a, $b)
996 // SETGT/SETGE/SETUGT/SETUGE variants of these will show up initially but
997 // will be expanded to equivalent SETLT/SETLE/SETULT/SETULE versions by the
998 // legalizer.
999 SDValue Op0 = N->getOperand(0);
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001000
Daniel Sanders3ce56622013-09-24 12:18:31 +00001001 if (Op0->getOpcode() != ISD::SETCC)
1002 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001003
Daniel Sanders3ce56622013-09-24 12:18:31 +00001004 ISD::CondCode CondCode = cast<CondCodeSDNode>(Op0->getOperand(2))->get();
1005 bool Signed;
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001006
Daniel Sanders3ce56622013-09-24 12:18:31 +00001007 if (CondCode == ISD::SETLT || CondCode == ISD::SETLE)
1008 Signed = true;
1009 else if (CondCode == ISD::SETULT || CondCode == ISD::SETULE)
1010 Signed = false;
1011 else
1012 return SDValue();
1013
1014 SDValue Op1 = N->getOperand(1);
1015 SDValue Op2 = N->getOperand(2);
1016 SDValue Op0Op0 = Op0->getOperand(0);
1017 SDValue Op0Op1 = Op0->getOperand(1);
1018
1019 if (Op1 == Op0Op0 && Op2 == Op0Op1)
1020 return DAG.getNode(Signed ? MipsISD::VSMIN : MipsISD::VUMIN, SDLoc(N),
1021 Ty, Op1, Op2);
1022 else if (Op1 == Op0Op1 && Op2 == Op0Op0)
1023 return DAG.getNode(Signed ? MipsISD::VSMAX : MipsISD::VUMAX, SDLoc(N),
1024 Ty, Op1, Op2);
1025 } else if ((Ty == MVT::v2i16) || (Ty == MVT::v4i8)) {
1026 SDValue SetCC = N->getOperand(0);
1027
1028 if (SetCC.getOpcode() != MipsISD::SETCC_DSP)
1029 return SDValue();
1030
1031 return DAG.getNode(MipsISD::SELECT_CC_DSP, SDLoc(N), Ty,
1032 SetCC.getOperand(0), SetCC.getOperand(1),
1033 N->getOperand(1), N->getOperand(2), SetCC.getOperand(2));
1034 }
1035
1036 return SDValue();
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001037}
1038
Daniel Sandersf7456c72013-09-23 13:22:24 +00001039static SDValue performXORCombine(SDNode *N, SelectionDAG &DAG,
Eric Christopher1c29a652014-07-18 22:55:25 +00001040 const MipsSubtarget &Subtarget) {
Daniel Sandersf7456c72013-09-23 13:22:24 +00001041 EVT Ty = N->getValueType(0);
1042
Eric Christopher1c29a652014-07-18 22:55:25 +00001043 if (Subtarget.hasMSA() && Ty.is128BitVector() && Ty.isInteger()) {
Daniel Sandersf7456c72013-09-23 13:22:24 +00001044 // Try the following combines:
1045 // (xor (or $a, $b), (build_vector allones))
1046 // (xor (or $a, $b), (bitcast (build_vector allones)))
1047 SDValue Op0 = N->getOperand(0);
1048 SDValue Op1 = N->getOperand(1);
1049 SDValue NotOp;
Daniel Sandersf7456c72013-09-23 13:22:24 +00001050
1051 if (ISD::isBuildVectorAllOnes(Op0.getNode()))
1052 NotOp = Op1;
1053 else if (ISD::isBuildVectorAllOnes(Op1.getNode()))
1054 NotOp = Op0;
Daniel Sandersf7456c72013-09-23 13:22:24 +00001055 else
1056 return SDValue();
1057
1058 if (NotOp->getOpcode() == ISD::OR)
1059 return DAG.getNode(MipsISD::VNOR, SDLoc(N), Ty, NotOp->getOperand(0),
1060 NotOp->getOperand(1));
1061 }
1062
1063 return SDValue();
1064}
1065
Akira Hatanaka9efcd762013-03-30 01:42:24 +00001066SDValue
1067MipsSETargetLowering::PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const {
1068 SelectionDAG &DAG = DCI.DAG;
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001069 SDValue Val;
Akira Hatanaka9efcd762013-03-30 01:42:24 +00001070
1071 switch (N->getOpcode()) {
1072 case ISD::ADDE:
1073 return performADDECombine(N, DAG, DCI, Subtarget);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001074 case ISD::AND:
1075 Val = performANDCombine(N, DAG, DCI, Subtarget);
1076 break;
Daniel Sanders53fe6c42013-10-30 13:51:01 +00001077 case ISD::OR:
1078 Val = performORCombine(N, DAG, DCI, Subtarget);
1079 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +00001080 case ISD::SUBE:
1081 return performSUBECombine(N, DAG, DCI, Subtarget);
Akira Hatanaka5832fc62013-06-26 18:48:17 +00001082 case ISD::MUL:
1083 return performMULCombine(N, DAG, DCI, this);
Akira Hatanaka1ebb2a12013-04-19 23:21:32 +00001084 case ISD::SHL:
1085 return performSHLCombine(N, DAG, DCI, Subtarget);
1086 case ISD::SRA:
1087 return performSRACombine(N, DAG, DCI, Subtarget);
1088 case ISD::SRL:
1089 return performSRLCombine(N, DAG, DCI, Subtarget);
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001090 case ISD::VSELECT:
1091 return performVSELECTCombine(N, DAG);
Daniel Sandersf7456c72013-09-23 13:22:24 +00001092 case ISD::XOR:
1093 Val = performXORCombine(N, DAG, Subtarget);
1094 break;
1095 case ISD::SETCC:
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001096 Val = performSETCCCombine(N, DAG);
1097 break;
Akira Hatanaka9efcd762013-03-30 01:42:24 +00001098 }
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001099
Daniel Sanders62aeab82013-10-30 13:31:27 +00001100 if (Val.getNode()) {
1101 DEBUG(dbgs() << "\nMipsSE DAG Combine:\n";
1102 N->printrWithDepth(dbgs(), &DAG);
1103 dbgs() << "\n=> \n";
1104 Val.getNode()->printrWithDepth(dbgs(), &DAG);
1105 dbgs() << "\n");
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001106 return Val;
Daniel Sanders62aeab82013-10-30 13:31:27 +00001107 }
Akira Hatanaka68741cc2013-04-30 22:37:26 +00001108
1109 return MipsTargetLowering::PerformDAGCombine(N, DCI);
Akira Hatanaka9efcd762013-03-30 01:42:24 +00001110}
1111
Akira Hatanaka96ca1822013-03-13 00:54:29 +00001112MachineBasicBlock *
1113MipsSETargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
1114 MachineBasicBlock *BB) const {
1115 switch (MI->getOpcode()) {
1116 default:
1117 return MipsTargetLowering::EmitInstrWithCustomInserter(MI, BB);
1118 case Mips::BPOSGE32_PSEUDO:
1119 return emitBPOSGE32(MI, BB);
Daniel Sandersce09d072013-08-28 12:14:50 +00001120 case Mips::SNZ_B_PSEUDO:
1121 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_B);
1122 case Mips::SNZ_H_PSEUDO:
1123 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_H);
1124 case Mips::SNZ_W_PSEUDO:
1125 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_W);
1126 case Mips::SNZ_D_PSEUDO:
1127 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_D);
1128 case Mips::SNZ_V_PSEUDO:
1129 return emitMSACBranchPseudo(MI, BB, Mips::BNZ_V);
1130 case Mips::SZ_B_PSEUDO:
1131 return emitMSACBranchPseudo(MI, BB, Mips::BZ_B);
1132 case Mips::SZ_H_PSEUDO:
1133 return emitMSACBranchPseudo(MI, BB, Mips::BZ_H);
1134 case Mips::SZ_W_PSEUDO:
1135 return emitMSACBranchPseudo(MI, BB, Mips::BZ_W);
1136 case Mips::SZ_D_PSEUDO:
1137 return emitMSACBranchPseudo(MI, BB, Mips::BZ_D);
1138 case Mips::SZ_V_PSEUDO:
1139 return emitMSACBranchPseudo(MI, BB, Mips::BZ_V);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00001140 case Mips::COPY_FW_PSEUDO:
1141 return emitCOPY_FW(MI, BB);
1142 case Mips::COPY_FD_PSEUDO:
1143 return emitCOPY_FD(MI, BB);
Daniel Sandersa5150702013-09-27 12:31:32 +00001144 case Mips::INSERT_FW_PSEUDO:
1145 return emitINSERT_FW(MI, BB);
1146 case Mips::INSERT_FD_PSEUDO:
1147 return emitINSERT_FD(MI, BB);
Daniel Sanderse296a0f2014-04-30 12:09:32 +00001148 case Mips::INSERT_B_VIDX_PSEUDO:
1149 return emitINSERT_DF_VIDX(MI, BB, 1, false);
1150 case Mips::INSERT_H_VIDX_PSEUDO:
1151 return emitINSERT_DF_VIDX(MI, BB, 2, false);
1152 case Mips::INSERT_W_VIDX_PSEUDO:
1153 return emitINSERT_DF_VIDX(MI, BB, 4, false);
1154 case Mips::INSERT_D_VIDX_PSEUDO:
1155 return emitINSERT_DF_VIDX(MI, BB, 8, false);
1156 case Mips::INSERT_FW_VIDX_PSEUDO:
1157 return emitINSERT_DF_VIDX(MI, BB, 4, true);
1158 case Mips::INSERT_FD_VIDX_PSEUDO:
1159 return emitINSERT_DF_VIDX(MI, BB, 8, true);
Daniel Sanders1dfddc72013-10-15 13:14:41 +00001160 case Mips::FILL_FW_PSEUDO:
1161 return emitFILL_FW(MI, BB);
1162 case Mips::FILL_FD_PSEUDO:
1163 return emitFILL_FD(MI, BB);
Daniel Sandersa9521602013-10-23 10:36:52 +00001164 case Mips::FEXP2_W_1_PSEUDO:
1165 return emitFEXP2_W_1(MI, BB);
1166 case Mips::FEXP2_D_1_PSEUDO:
1167 return emitFEXP2_D_1(MI, BB);
Akira Hatanaka96ca1822013-03-13 00:54:29 +00001168 }
1169}
1170
Daniel Sanders23e98772014-11-02 16:09:29 +00001171bool MipsSETargetLowering::isEligibleForTailCallOptimization(
1172 const CCState &CCInfo, unsigned NextStackOffset,
1173 const MipsFunctionInfo &FI) const {
Akira Hatanaka96ca1822013-03-13 00:54:29 +00001174 if (!EnableMipsTailCalls)
1175 return false;
1176
Akira Hatanaka96ca1822013-03-13 00:54:29 +00001177 // Return false if either the callee or caller has a byval argument.
Daniel Sanders23e98772014-11-02 16:09:29 +00001178 if (CCInfo.getInRegsParamsCount() > 0 || FI.hasByvalArg())
Akira Hatanaka96ca1822013-03-13 00:54:29 +00001179 return false;
1180
1181 // Return true if the callee's argument area is no larger than the
1182 // caller's.
1183 return NextStackOffset <= FI.getIncomingArgSize();
1184}
1185
1186void MipsSETargetLowering::
1187getOpndList(SmallVectorImpl<SDValue> &Ops,
1188 std::deque< std::pair<unsigned, SDValue> > &RegsToPass,
1189 bool IsPICCall, bool GlobalOrExternal, bool InternalLinkage,
Sasa Stankovic7072a792014-10-01 08:22:21 +00001190 bool IsCallReloc, CallLoweringInfo &CLI, SDValue Callee,
1191 SDValue Chain) const {
Akira Hatanaka168d4e52013-11-27 23:38:42 +00001192 Ops.push_back(Callee);
Akira Hatanaka96ca1822013-03-13 00:54:29 +00001193 MipsTargetLowering::getOpndList(Ops, RegsToPass, IsPICCall, GlobalOrExternal,
Sasa Stankovic7072a792014-10-01 08:22:21 +00001194 InternalLinkage, IsCallReloc, CLI, Callee,
1195 Chain);
Akira Hatanaka96ca1822013-03-13 00:54:29 +00001196}
1197
Akira Hatanaka63791212013-09-07 00:52:30 +00001198SDValue MipsSETargetLowering::lowerLOAD(SDValue Op, SelectionDAG &DAG) const {
1199 LoadSDNode &Nd = *cast<LoadSDNode>(Op);
1200
1201 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
1202 return MipsTargetLowering::lowerLOAD(Op, DAG);
1203
1204 // Replace a double precision load with two i32 loads and a buildpair64.
1205 SDLoc DL(Op);
1206 SDValue Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
1207 EVT PtrVT = Ptr.getValueType();
1208
1209 // i32 load from lower address.
1210 SDValue Lo = DAG.getLoad(MVT::i32, DL, Chain, Ptr,
1211 MachinePointerInfo(), Nd.isVolatile(),
1212 Nd.isNonTemporal(), Nd.isInvariant(),
1213 Nd.getAlignment());
1214
1215 // i32 load from higher address.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001216 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, DL, PtrVT));
Akira Hatanaka63791212013-09-07 00:52:30 +00001217 SDValue Hi = DAG.getLoad(MVT::i32, DL, Lo.getValue(1), Ptr,
1218 MachinePointerInfo(), Nd.isVolatile(),
1219 Nd.isNonTemporal(), Nd.isInvariant(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +00001220 std::min(Nd.getAlignment(), 4U));
Akira Hatanaka63791212013-09-07 00:52:30 +00001221
Eric Christopher1c29a652014-07-18 22:55:25 +00001222 if (!Subtarget.isLittle())
Akira Hatanaka63791212013-09-07 00:52:30 +00001223 std::swap(Lo, Hi);
1224
1225 SDValue BP = DAG.getNode(MipsISD::BuildPairF64, DL, MVT::f64, Lo, Hi);
1226 SDValue Ops[2] = {BP, Hi.getValue(1)};
Craig Topper64941d92014-04-27 19:20:57 +00001227 return DAG.getMergeValues(Ops, DL);
Akira Hatanaka63791212013-09-07 00:52:30 +00001228}
1229
1230SDValue MipsSETargetLowering::lowerSTORE(SDValue Op, SelectionDAG &DAG) const {
1231 StoreSDNode &Nd = *cast<StoreSDNode>(Op);
1232
1233 if (Nd.getMemoryVT() != MVT::f64 || !NoDPLoadStore)
1234 return MipsTargetLowering::lowerSTORE(Op, DAG);
1235
1236 // Replace a double precision store with two extractelement64s and i32 stores.
1237 SDLoc DL(Op);
1238 SDValue Val = Nd.getValue(), Ptr = Nd.getBasePtr(), Chain = Nd.getChain();
1239 EVT PtrVT = Ptr.getValueType();
1240 SDValue Lo = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001241 Val, DAG.getConstant(0, DL, MVT::i32));
Akira Hatanaka63791212013-09-07 00:52:30 +00001242 SDValue Hi = DAG.getNode(MipsISD::ExtractElementF64, DL, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001243 Val, DAG.getConstant(1, DL, MVT::i32));
Akira Hatanaka63791212013-09-07 00:52:30 +00001244
Eric Christopher1c29a652014-07-18 22:55:25 +00001245 if (!Subtarget.isLittle())
Akira Hatanaka63791212013-09-07 00:52:30 +00001246 std::swap(Lo, Hi);
1247
1248 // i32 store to lower address.
1249 Chain = DAG.getStore(Chain, DL, Lo, Ptr, MachinePointerInfo(),
1250 Nd.isVolatile(), Nd.isNonTemporal(), Nd.getAlignment(),
Hal Finkelcc39b672014-07-24 12:16:19 +00001251 Nd.getAAInfo());
Akira Hatanaka63791212013-09-07 00:52:30 +00001252
1253 // i32 store to higher address.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001254 Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Ptr, DAG.getConstant(4, DL, PtrVT));
Akira Hatanaka63791212013-09-07 00:52:30 +00001255 return DAG.getStore(Chain, DL, Hi, Ptr, MachinePointerInfo(),
Akira Hatanaka9cf069f2013-09-09 17:59:32 +00001256 Nd.isVolatile(), Nd.isNonTemporal(),
Hal Finkelcc39b672014-07-24 12:16:19 +00001257 std::min(Nd.getAlignment(), 4U), Nd.getAAInfo());
Akira Hatanaka63791212013-09-07 00:52:30 +00001258}
1259
Akira Hatanakabe8612f2013-03-30 01:36:35 +00001260SDValue MipsSETargetLowering::lowerMulDiv(SDValue Op, unsigned NewOpc,
1261 bool HasLo, bool HasHi,
1262 SelectionDAG &DAG) const {
Daniel Sanders308181e2014-06-12 10:44:10 +00001263 // MIPS32r6/MIPS64r6 removed accumulator based multiplies.
Eric Christopher1c29a652014-07-18 22:55:25 +00001264 assert(!Subtarget.hasMips32r6());
Daniel Sanders308181e2014-06-12 10:44:10 +00001265
Akira Hatanakabe8612f2013-03-30 01:36:35 +00001266 EVT Ty = Op.getOperand(0).getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001267 SDLoc DL(Op);
Akira Hatanakabe8612f2013-03-30 01:36:35 +00001268 SDValue Mult = DAG.getNode(NewOpc, DL, MVT::Untyped,
1269 Op.getOperand(0), Op.getOperand(1));
1270 SDValue Lo, Hi;
1271
1272 if (HasLo)
Akira Hatanakad98c99f2013-10-15 01:12:50 +00001273 Lo = DAG.getNode(MipsISD::MFLO, DL, Ty, Mult);
Akira Hatanakabe8612f2013-03-30 01:36:35 +00001274 if (HasHi)
Akira Hatanakad98c99f2013-10-15 01:12:50 +00001275 Hi = DAG.getNode(MipsISD::MFHI, DL, Ty, Mult);
Akira Hatanakabe8612f2013-03-30 01:36:35 +00001276
1277 if (!HasLo || !HasHi)
1278 return HasLo ? Lo : Hi;
1279
1280 SDValue Vals[] = { Lo, Hi };
Craig Topper64941d92014-04-27 19:20:57 +00001281 return DAG.getMergeValues(Vals, DL);
Akira Hatanakabe8612f2013-03-30 01:36:35 +00001282}
1283
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001284
Andrew Trickef9de2a2013-05-25 02:42:55 +00001285static SDValue initAccumulator(SDValue In, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001286 SDValue InLo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001287 DAG.getConstant(0, DL, MVT::i32));
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001288 SDValue InHi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, In,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001289 DAG.getConstant(1, DL, MVT::i32));
Akira Hatanakad98c99f2013-10-15 01:12:50 +00001290 return DAG.getNode(MipsISD::MTLOHI, DL, MVT::Untyped, InLo, InHi);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001291}
1292
Andrew Trickef9de2a2013-05-25 02:42:55 +00001293static SDValue extractLOHI(SDValue Op, SDLoc DL, SelectionDAG &DAG) {
Akira Hatanakad98c99f2013-10-15 01:12:50 +00001294 SDValue Lo = DAG.getNode(MipsISD::MFLO, DL, MVT::i32, Op);
1295 SDValue Hi = DAG.getNode(MipsISD::MFHI, DL, MVT::i32, Op);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001296 return DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Lo, Hi);
1297}
1298
1299// This function expands mips intrinsic nodes which have 64-bit input operands
1300// or output values.
1301//
1302// out64 = intrinsic-node in64
1303// =>
1304// lo = copy (extract-element (in64, 0))
1305// hi = copy (extract-element (in64, 1))
1306// mips-specific-node
1307// v0 = copy lo
1308// v1 = copy hi
1309// out64 = merge-values (v0, v1)
1310//
1311static SDValue lowerDSPIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001312 SDLoc DL(Op);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001313 bool HasChainIn = Op->getOperand(0).getValueType() == MVT::Other;
1314 SmallVector<SDValue, 3> Ops;
1315 unsigned OpNo = 0;
1316
1317 // See if Op has a chain input.
1318 if (HasChainIn)
1319 Ops.push_back(Op->getOperand(OpNo++));
1320
1321 // The next operand is the intrinsic opcode.
1322 assert(Op->getOperand(OpNo).getOpcode() == ISD::TargetConstant);
1323
1324 // See if the next operand has type i64.
1325 SDValue Opnd = Op->getOperand(++OpNo), In64;
1326
1327 if (Opnd.getValueType() == MVT::i64)
1328 In64 = initAccumulator(Opnd, DL, DAG);
1329 else
1330 Ops.push_back(Opnd);
1331
1332 // Push the remaining operands.
1333 for (++OpNo ; OpNo < Op->getNumOperands(); ++OpNo)
1334 Ops.push_back(Op->getOperand(OpNo));
1335
1336 // Add In64 to the end of the list.
1337 if (In64.getNode())
1338 Ops.push_back(In64);
1339
1340 // Scan output.
1341 SmallVector<EVT, 2> ResTys;
1342
1343 for (SDNode::value_iterator I = Op->value_begin(), E = Op->value_end();
1344 I != E; ++I)
1345 ResTys.push_back((*I == MVT::i64) ? MVT::Untyped : *I);
1346
1347 // Create node.
Craig Topper48d114b2014-04-26 18:35:24 +00001348 SDValue Val = DAG.getNode(Opc, DL, ResTys, Ops);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001349 SDValue Out = (ResTys[0] == MVT::Untyped) ? extractLOHI(Val, DL, DAG) : Val;
1350
1351 if (!HasChainIn)
1352 return Out;
1353
1354 assert(Val->getValueType(1) == MVT::Other);
1355 SDValue Vals[] = { Out, SDValue(Val.getNode(), 1) };
Craig Topper64941d92014-04-27 19:20:57 +00001356 return DAG.getMergeValues(Vals, DL);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001357}
1358
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001359// Lower an MSA copy intrinsic into the specified SelectionDAG node
1360static SDValue lowerMSACopyIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) {
1361 SDLoc DL(Op);
1362 SDValue Vec = Op->getOperand(1);
1363 SDValue Idx = Op->getOperand(2);
1364 EVT ResTy = Op->getValueType(0);
1365 EVT EltTy = Vec->getValueType(0).getVectorElementType();
1366
1367 SDValue Result = DAG.getNode(Opc, DL, ResTy, Vec, Idx,
1368 DAG.getValueType(EltTy));
1369
1370 return Result;
1371}
1372
Daniel Sanders50b80412013-11-15 12:56:49 +00001373static SDValue lowerMSASplatZExt(SDValue Op, unsigned OpNr, SelectionDAG &DAG) {
1374 EVT ResVecTy = Op->getValueType(0);
1375 EVT ViaVecTy = ResVecTy;
1376 SDLoc DL(Op);
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001377
Daniel Sanders50b80412013-11-15 12:56:49 +00001378 // When ResVecTy == MVT::v2i64, LaneA is the upper 32 bits of the lane and
1379 // LaneB is the lower 32-bits. Otherwise LaneA and LaneB are alternating
1380 // lanes.
1381 SDValue LaneA;
1382 SDValue LaneB = Op->getOperand(2);
1383
1384 if (ResVecTy == MVT::v2i64) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001385 LaneA = DAG.getConstant(0, DL, MVT::i32);
Daniel Sandersf49dd822013-09-24 13:33:07 +00001386 ViaVecTy = MVT::v4i32;
Daniel Sanders50b80412013-11-15 12:56:49 +00001387 } else
1388 LaneA = LaneB;
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001389
Daniel Sanders50b80412013-11-15 12:56:49 +00001390 SDValue Ops[16] = { LaneA, LaneB, LaneA, LaneB, LaneA, LaneB, LaneA, LaneB,
1391 LaneA, LaneB, LaneA, LaneB, LaneA, LaneB, LaneA, LaneB };
Daniel Sandersf49dd822013-09-24 13:33:07 +00001392
Craig Topper48d114b2014-04-26 18:35:24 +00001393 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, DL, ViaVecTy,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00001394 makeArrayRef(Ops, ViaVecTy.getVectorNumElements()));
Daniel Sanders50b80412013-11-15 12:56:49 +00001395
1396 if (ViaVecTy != ResVecTy)
1397 Result = DAG.getNode(ISD::BITCAST, DL, ResVecTy, Result);
Daniel Sandersf49dd822013-09-24 13:33:07 +00001398
1399 return Result;
1400}
1401
Daniel Sanders50b80412013-11-15 12:56:49 +00001402static SDValue lowerMSASplatImm(SDValue Op, unsigned ImmOp, SelectionDAG &DAG) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001403 return DAG.getConstant(Op->getConstantOperandVal(ImmOp), SDLoc(Op),
1404 Op->getValueType(0));
Daniel Sanders50b80412013-11-15 12:56:49 +00001405}
1406
1407static SDValue getBuildVectorSplat(EVT VecTy, SDValue SplatValue,
1408 bool BigEndian, SelectionDAG &DAG) {
1409 EVT ViaVecTy = VecTy;
1410 SDValue SplatValueA = SplatValue;
1411 SDValue SplatValueB = SplatValue;
1412 SDLoc DL(SplatValue);
1413
1414 if (VecTy == MVT::v2i64) {
1415 // v2i64 BUILD_VECTOR must be performed via v4i32 so split into i32's.
1416 ViaVecTy = MVT::v4i32;
1417
1418 SplatValueA = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, SplatValue);
1419 SplatValueB = DAG.getNode(ISD::SRL, DL, MVT::i64, SplatValue,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001420 DAG.getConstant(32, DL, MVT::i32));
Daniel Sanders50b80412013-11-15 12:56:49 +00001421 SplatValueB = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, SplatValueB);
1422 }
1423
1424 // We currently hold the parts in little endian order. Swap them if
1425 // necessary.
1426 if (BigEndian)
1427 std::swap(SplatValueA, SplatValueB);
1428
1429 SDValue Ops[16] = { SplatValueA, SplatValueB, SplatValueA, SplatValueB,
1430 SplatValueA, SplatValueB, SplatValueA, SplatValueB,
1431 SplatValueA, SplatValueB, SplatValueA, SplatValueB,
1432 SplatValueA, SplatValueB, SplatValueA, SplatValueB };
1433
Craig Topper48d114b2014-04-26 18:35:24 +00001434 SDValue Result = DAG.getNode(ISD::BUILD_VECTOR, DL, ViaVecTy,
Craig Topper2d2aa0c2014-04-30 07:17:30 +00001435 makeArrayRef(Ops, ViaVecTy.getVectorNumElements()));
Daniel Sanders50b80412013-11-15 12:56:49 +00001436
1437 if (VecTy != ViaVecTy)
1438 Result = DAG.getNode(ISD::BITCAST, DL, VecTy, Result);
1439
1440 return Result;
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001441}
1442
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001443static SDValue lowerMSABinaryBitImmIntr(SDValue Op, SelectionDAG &DAG,
1444 unsigned Opc, SDValue Imm,
1445 bool BigEndian) {
1446 EVT VecTy = Op->getValueType(0);
1447 SDValue Exp2Imm;
1448 SDLoc DL(Op);
1449
Daniel Sanders50b80412013-11-15 12:56:49 +00001450 // The DAG Combiner can't constant fold bitcasted vectors yet so we must do it
1451 // here for now.
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001452 if (VecTy == MVT::v2i64) {
1453 if (ConstantSDNode *CImm = dyn_cast<ConstantSDNode>(Imm)) {
1454 APInt BitImm = APInt(64, 1) << CImm->getAPIntValue();
1455
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001456 SDValue BitImmHiOp = DAG.getConstant(BitImm.lshr(32).trunc(32), DL,
1457 MVT::i32);
1458 SDValue BitImmLoOp = DAG.getConstant(BitImm.trunc(32), DL, MVT::i32);
Daniel Sanders50b80412013-11-15 12:56:49 +00001459
1460 if (BigEndian)
1461 std::swap(BitImmLoOp, BitImmHiOp);
1462
1463 Exp2Imm =
1464 DAG.getNode(ISD::BITCAST, DL, MVT::v2i64,
1465 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v4i32, BitImmLoOp,
1466 BitImmHiOp, BitImmLoOp, BitImmHiOp));
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001467 }
1468 }
1469
Craig Topper062a2ba2014-04-25 05:30:21 +00001470 if (!Exp2Imm.getNode()) {
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001471 // We couldnt constant fold, do a vector shift instead
Daniel Sanders50b80412013-11-15 12:56:49 +00001472
1473 // Extend i32 to i64 if necessary. Sign or zero extend doesn't matter since
1474 // only values 0-63 are valid.
1475 if (VecTy == MVT::v2i64)
1476 Imm = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, Imm);
1477
1478 Exp2Imm = getBuildVectorSplat(VecTy, Imm, BigEndian, DAG);
1479
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001480 Exp2Imm = DAG.getNode(ISD::SHL, DL, VecTy, DAG.getConstant(1, DL, VecTy),
1481 Exp2Imm);
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001482 }
1483
1484 return DAG.getNode(Opc, DL, VecTy, Op->getOperand(1), Exp2Imm);
1485}
1486
Daniel Sanders3f6eb542013-11-12 10:45:18 +00001487static SDValue lowerMSABitClear(SDValue Op, SelectionDAG &DAG) {
1488 EVT ResTy = Op->getValueType(0);
Daniel Sanders3f6eb542013-11-12 10:45:18 +00001489 SDLoc DL(Op);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001490 SDValue One = DAG.getConstant(1, DL, ResTy);
Daniel Sanders3f6eb542013-11-12 10:45:18 +00001491 SDValue Bit = DAG.getNode(ISD::SHL, DL, ResTy, One, Op->getOperand(2));
1492
Daniel Sanders71ce0ca2013-11-15 16:02:04 +00001493 return DAG.getNode(ISD::AND, DL, ResTy, Op->getOperand(1),
1494 DAG.getNOT(DL, Bit, ResTy));
Daniel Sanders3f6eb542013-11-12 10:45:18 +00001495}
1496
1497static SDValue lowerMSABitClearImm(SDValue Op, SelectionDAG &DAG) {
1498 SDLoc DL(Op);
1499 EVT ResTy = Op->getValueType(0);
Daniel Sanders50b80412013-11-15 12:56:49 +00001500 APInt BitImm = APInt(ResTy.getVectorElementType().getSizeInBits(), 1)
1501 << cast<ConstantSDNode>(Op->getOperand(2))->getAPIntValue();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001502 SDValue BitMask = DAG.getConstant(~BitImm, DL, ResTy);
Daniel Sanders3f6eb542013-11-12 10:45:18 +00001503
1504 return DAG.getNode(ISD::AND, DL, ResTy, Op->getOperand(1), BitMask);
1505}
1506
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001507SDValue MipsSETargetLowering::lowerINTRINSIC_WO_CHAIN(SDValue Op,
1508 SelectionDAG &DAG) const {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001509 SDLoc DL(Op);
1510
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00001511 switch (cast<ConstantSDNode>(Op->getOperand(0))->getZExtValue()) {
1512 default:
1513 return SDValue();
1514 case Intrinsic::mips_shilo:
1515 return lowerDSPIntr(Op, DAG, MipsISD::SHILO);
1516 case Intrinsic::mips_dpau_h_qbl:
1517 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBL);
1518 case Intrinsic::mips_dpau_h_qbr:
1519 return lowerDSPIntr(Op, DAG, MipsISD::DPAU_H_QBR);
1520 case Intrinsic::mips_dpsu_h_qbl:
1521 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBL);
1522 case Intrinsic::mips_dpsu_h_qbr:
1523 return lowerDSPIntr(Op, DAG, MipsISD::DPSU_H_QBR);
1524 case Intrinsic::mips_dpa_w_ph:
1525 return lowerDSPIntr(Op, DAG, MipsISD::DPA_W_PH);
1526 case Intrinsic::mips_dps_w_ph:
1527 return lowerDSPIntr(Op, DAG, MipsISD::DPS_W_PH);
1528 case Intrinsic::mips_dpax_w_ph:
1529 return lowerDSPIntr(Op, DAG, MipsISD::DPAX_W_PH);
1530 case Intrinsic::mips_dpsx_w_ph:
1531 return lowerDSPIntr(Op, DAG, MipsISD::DPSX_W_PH);
1532 case Intrinsic::mips_mulsa_w_ph:
1533 return lowerDSPIntr(Op, DAG, MipsISD::MULSA_W_PH);
1534 case Intrinsic::mips_mult:
1535 return lowerDSPIntr(Op, DAG, MipsISD::Mult);
1536 case Intrinsic::mips_multu:
1537 return lowerDSPIntr(Op, DAG, MipsISD::Multu);
1538 case Intrinsic::mips_madd:
1539 return lowerDSPIntr(Op, DAG, MipsISD::MAdd);
1540 case Intrinsic::mips_maddu:
1541 return lowerDSPIntr(Op, DAG, MipsISD::MAddu);
1542 case Intrinsic::mips_msub:
1543 return lowerDSPIntr(Op, DAG, MipsISD::MSub);
1544 case Intrinsic::mips_msubu:
1545 return lowerDSPIntr(Op, DAG, MipsISD::MSubu);
Daniel Sandersfa5ab1c2013-09-11 10:28:16 +00001546 case Intrinsic::mips_addv_b:
1547 case Intrinsic::mips_addv_h:
1548 case Intrinsic::mips_addv_w:
1549 case Intrinsic::mips_addv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001550 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1551 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00001552 case Intrinsic::mips_addvi_b:
1553 case Intrinsic::mips_addvi_h:
1554 case Intrinsic::mips_addvi_w:
1555 case Intrinsic::mips_addvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001556 return DAG.getNode(ISD::ADD, DL, Op->getValueType(0), Op->getOperand(1),
1557 lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00001558 case Intrinsic::mips_and_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001559 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1560 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00001561 case Intrinsic::mips_andi_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001562 return DAG.getNode(ISD::AND, DL, Op->getValueType(0), Op->getOperand(1),
1563 lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3f6eb542013-11-12 10:45:18 +00001564 case Intrinsic::mips_bclr_b:
1565 case Intrinsic::mips_bclr_h:
1566 case Intrinsic::mips_bclr_w:
1567 case Intrinsic::mips_bclr_d:
1568 return lowerMSABitClear(Op, DAG);
1569 case Intrinsic::mips_bclri_b:
1570 case Intrinsic::mips_bclri_h:
1571 case Intrinsic::mips_bclri_w:
1572 case Intrinsic::mips_bclri_d:
1573 return lowerMSABitClearImm(Op, DAG);
Daniel Sandersd74b1302013-10-30 14:45:14 +00001574 case Intrinsic::mips_binsli_b:
1575 case Intrinsic::mips_binsli_h:
1576 case Intrinsic::mips_binsli_w:
1577 case Intrinsic::mips_binsli_d: {
Daniel Sandersdf2215452014-03-12 11:54:00 +00001578 // binsli_x(IfClear, IfSet, nbits) -> (vselect LBitsMask, IfSet, IfClear)
Daniel Sandersd74b1302013-10-30 14:45:14 +00001579 EVT VecTy = Op->getValueType(0);
1580 EVT EltTy = VecTy.getVectorElementType();
1581 APInt Mask = APInt::getHighBitsSet(EltTy.getSizeInBits(),
1582 Op->getConstantOperandVal(3));
1583 return DAG.getNode(ISD::VSELECT, DL, VecTy,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001584 DAG.getConstant(Mask, DL, VecTy, true),
1585 Op->getOperand(2), Op->getOperand(1));
Daniel Sandersd74b1302013-10-30 14:45:14 +00001586 }
1587 case Intrinsic::mips_binsri_b:
1588 case Intrinsic::mips_binsri_h:
1589 case Intrinsic::mips_binsri_w:
1590 case Intrinsic::mips_binsri_d: {
Daniel Sandersdf2215452014-03-12 11:54:00 +00001591 // binsri_x(IfClear, IfSet, nbits) -> (vselect RBitsMask, IfSet, IfClear)
Daniel Sandersd74b1302013-10-30 14:45:14 +00001592 EVT VecTy = Op->getValueType(0);
1593 EVT EltTy = VecTy.getVectorElementType();
1594 APInt Mask = APInt::getLowBitsSet(EltTy.getSizeInBits(),
1595 Op->getConstantOperandVal(3));
1596 return DAG.getNode(ISD::VSELECT, DL, VecTy,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001597 DAG.getConstant(Mask, DL, VecTy, true),
1598 Op->getOperand(2), Op->getOperand(1));
Daniel Sandersd74b1302013-10-30 14:45:14 +00001599 }
Daniel Sandersab94b532013-10-30 15:20:38 +00001600 case Intrinsic::mips_bmnz_v:
1601 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0), Op->getOperand(3),
1602 Op->getOperand(2), Op->getOperand(1));
1603 case Intrinsic::mips_bmnzi_b:
1604 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
1605 lowerMSASplatImm(Op, 3, DAG), Op->getOperand(2),
1606 Op->getOperand(1));
1607 case Intrinsic::mips_bmz_v:
1608 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0), Op->getOperand(3),
1609 Op->getOperand(1), Op->getOperand(2));
1610 case Intrinsic::mips_bmzi_b:
1611 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
1612 lowerMSASplatImm(Op, 3, DAG), Op->getOperand(1),
1613 Op->getOperand(2));
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001614 case Intrinsic::mips_bneg_b:
1615 case Intrinsic::mips_bneg_h:
1616 case Intrinsic::mips_bneg_w:
1617 case Intrinsic::mips_bneg_d: {
1618 EVT VecTy = Op->getValueType(0);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001619 SDValue One = DAG.getConstant(1, DL, VecTy);
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001620
1621 return DAG.getNode(ISD::XOR, DL, VecTy, Op->getOperand(1),
1622 DAG.getNode(ISD::SHL, DL, VecTy, One,
1623 Op->getOperand(2)));
1624 }
1625 case Intrinsic::mips_bnegi_b:
1626 case Intrinsic::mips_bnegi_h:
1627 case Intrinsic::mips_bnegi_w:
1628 case Intrinsic::mips_bnegi_d:
1629 return lowerMSABinaryBitImmIntr(Op, DAG, ISD::XOR, Op->getOperand(2),
Eric Christopher1c29a652014-07-18 22:55:25 +00001630 !Subtarget.isLittle());
Daniel Sandersce09d072013-08-28 12:14:50 +00001631 case Intrinsic::mips_bnz_b:
1632 case Intrinsic::mips_bnz_h:
1633 case Intrinsic::mips_bnz_w:
1634 case Intrinsic::mips_bnz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001635 return DAG.getNode(MipsISD::VALL_NONZERO, DL, Op->getValueType(0),
1636 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001637 case Intrinsic::mips_bnz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001638 return DAG.getNode(MipsISD::VANY_NONZERO, DL, Op->getValueType(0),
1639 Op->getOperand(1));
Daniel Sanderse1d24352013-09-24 12:04:44 +00001640 case Intrinsic::mips_bsel_v:
Daniel Sandersdf2215452014-03-12 11:54:00 +00001641 // bsel_v(Mask, IfClear, IfSet) -> (vselect Mask, IfSet, IfClear)
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001642 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sandersdf2215452014-03-12 11:54:00 +00001643 Op->getOperand(1), Op->getOperand(3),
1644 Op->getOperand(2));
Daniel Sanderse1d24352013-09-24 12:04:44 +00001645 case Intrinsic::mips_bseli_b:
Daniel Sandersdf2215452014-03-12 11:54:00 +00001646 // bseli_v(Mask, IfClear, IfSet) -> (vselect Mask, IfSet, IfClear)
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001647 return DAG.getNode(ISD::VSELECT, DL, Op->getValueType(0),
Daniel Sandersdf2215452014-03-12 11:54:00 +00001648 Op->getOperand(1), lowerMSASplatImm(Op, 3, DAG),
1649 Op->getOperand(2));
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001650 case Intrinsic::mips_bset_b:
1651 case Intrinsic::mips_bset_h:
1652 case Intrinsic::mips_bset_w:
1653 case Intrinsic::mips_bset_d: {
1654 EVT VecTy = Op->getValueType(0);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001655 SDValue One = DAG.getConstant(1, DL, VecTy);
Daniel Sandersa5bc99f2013-11-12 10:31:49 +00001656
1657 return DAG.getNode(ISD::OR, DL, VecTy, Op->getOperand(1),
1658 DAG.getNode(ISD::SHL, DL, VecTy, One,
1659 Op->getOperand(2)));
1660 }
1661 case Intrinsic::mips_bseti_b:
1662 case Intrinsic::mips_bseti_h:
1663 case Intrinsic::mips_bseti_w:
1664 case Intrinsic::mips_bseti_d:
1665 return lowerMSABinaryBitImmIntr(Op, DAG, ISD::OR, Op->getOperand(2),
Eric Christopher1c29a652014-07-18 22:55:25 +00001666 !Subtarget.isLittle());
Daniel Sandersce09d072013-08-28 12:14:50 +00001667 case Intrinsic::mips_bz_b:
1668 case Intrinsic::mips_bz_h:
1669 case Intrinsic::mips_bz_w:
1670 case Intrinsic::mips_bz_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001671 return DAG.getNode(MipsISD::VALL_ZERO, DL, Op->getValueType(0),
1672 Op->getOperand(1));
Daniel Sandersce09d072013-08-28 12:14:50 +00001673 case Intrinsic::mips_bz_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001674 return DAG.getNode(MipsISD::VANY_ZERO, DL, Op->getValueType(0),
1675 Op->getOperand(1));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001676 case Intrinsic::mips_ceq_b:
1677 case Intrinsic::mips_ceq_h:
1678 case Intrinsic::mips_ceq_w:
1679 case Intrinsic::mips_ceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001680 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001681 Op->getOperand(2), ISD::SETEQ);
1682 case Intrinsic::mips_ceqi_b:
1683 case Intrinsic::mips_ceqi_h:
1684 case Intrinsic::mips_ceqi_w:
1685 case Intrinsic::mips_ceqi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001686 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001687 lowerMSASplatImm(Op, 2, DAG), ISD::SETEQ);
1688 case Intrinsic::mips_cle_s_b:
1689 case Intrinsic::mips_cle_s_h:
1690 case Intrinsic::mips_cle_s_w:
1691 case Intrinsic::mips_cle_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001692 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001693 Op->getOperand(2), ISD::SETLE);
1694 case Intrinsic::mips_clei_s_b:
1695 case Intrinsic::mips_clei_s_h:
1696 case Intrinsic::mips_clei_s_w:
1697 case Intrinsic::mips_clei_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001698 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001699 lowerMSASplatImm(Op, 2, DAG), ISD::SETLE);
1700 case Intrinsic::mips_cle_u_b:
1701 case Intrinsic::mips_cle_u_h:
1702 case Intrinsic::mips_cle_u_w:
1703 case Intrinsic::mips_cle_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001704 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001705 Op->getOperand(2), ISD::SETULE);
1706 case Intrinsic::mips_clei_u_b:
1707 case Intrinsic::mips_clei_u_h:
1708 case Intrinsic::mips_clei_u_w:
1709 case Intrinsic::mips_clei_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001710 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001711 lowerMSASplatImm(Op, 2, DAG), ISD::SETULE);
1712 case Intrinsic::mips_clt_s_b:
1713 case Intrinsic::mips_clt_s_h:
1714 case Intrinsic::mips_clt_s_w:
1715 case Intrinsic::mips_clt_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001716 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001717 Op->getOperand(2), ISD::SETLT);
1718 case Intrinsic::mips_clti_s_b:
1719 case Intrinsic::mips_clti_s_h:
1720 case Intrinsic::mips_clti_s_w:
1721 case Intrinsic::mips_clti_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001722 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001723 lowerMSASplatImm(Op, 2, DAG), ISD::SETLT);
1724 case Intrinsic::mips_clt_u_b:
1725 case Intrinsic::mips_clt_u_h:
1726 case Intrinsic::mips_clt_u_w:
1727 case Intrinsic::mips_clt_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001728 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001729 Op->getOperand(2), ISD::SETULT);
1730 case Intrinsic::mips_clti_u_b:
1731 case Intrinsic::mips_clti_u_h:
1732 case Intrinsic::mips_clti_u_w:
1733 case Intrinsic::mips_clti_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001734 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001735 lowerMSASplatImm(Op, 2, DAG), ISD::SETULT);
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001736 case Intrinsic::mips_copy_s_b:
1737 case Intrinsic::mips_copy_s_h:
1738 case Intrinsic::mips_copy_s_w:
1739 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_SEXT_ELT);
Daniel Sanders7f3d9462013-09-27 13:04:21 +00001740 case Intrinsic::mips_copy_s_d:
Eric Christopher1c29a652014-07-18 22:55:25 +00001741 if (Subtarget.hasMips64())
Matheus Almeida74070322014-01-29 14:05:28 +00001742 // Lower directly into VEXTRACT_SEXT_ELT since i64 is legal on Mips64.
1743 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_SEXT_ELT);
1744 else {
1745 // Lower into the generic EXTRACT_VECTOR_ELT node and let the type
1746 // legalizer and EXTRACT_VECTOR_ELT lowering sort it out.
1747 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(Op),
1748 Op->getValueType(0), Op->getOperand(1),
1749 Op->getOperand(2));
1750 }
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001751 case Intrinsic::mips_copy_u_b:
1752 case Intrinsic::mips_copy_u_h:
1753 case Intrinsic::mips_copy_u_w:
1754 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_ZEXT_ELT);
Daniel Sanders7f3d9462013-09-27 13:04:21 +00001755 case Intrinsic::mips_copy_u_d:
Eric Christopher1c29a652014-07-18 22:55:25 +00001756 if (Subtarget.hasMips64())
Matheus Almeida74070322014-01-29 14:05:28 +00001757 // Lower directly into VEXTRACT_ZEXT_ELT since i64 is legal on Mips64.
1758 return lowerMSACopyIntr(Op, DAG, MipsISD::VEXTRACT_ZEXT_ELT);
1759 else {
1760 // Lower into the generic EXTRACT_VECTOR_ELT node and let the type
1761 // legalizer and EXTRACT_VECTOR_ELT lowering sort it out.
1762 // Note: When i64 is illegal, this results in copy_s.w instructions
1763 // instead of copy_u.w instructions. This makes no difference to the
1764 // behaviour since i64 is only illegal when the register file is 32-bit.
1765 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(Op),
1766 Op->getValueType(0), Op->getOperand(1),
1767 Op->getOperand(2));
1768 }
Daniel Sanders607952b2013-09-11 10:38:58 +00001769 case Intrinsic::mips_div_s_b:
1770 case Intrinsic::mips_div_s_h:
1771 case Intrinsic::mips_div_s_w:
1772 case Intrinsic::mips_div_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001773 return DAG.getNode(ISD::SDIV, DL, Op->getValueType(0), Op->getOperand(1),
1774 Op->getOperand(2));
Daniel Sanders607952b2013-09-11 10:38:58 +00001775 case Intrinsic::mips_div_u_b:
1776 case Intrinsic::mips_div_u_h:
1777 case Intrinsic::mips_div_u_w:
1778 case Intrinsic::mips_div_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001779 return DAG.getNode(ISD::UDIV, DL, Op->getValueType(0), Op->getOperand(1),
1780 Op->getOperand(2));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001781 case Intrinsic::mips_fadd_w:
1782 case Intrinsic::mips_fadd_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001783 return DAG.getNode(ISD::FADD, DL, Op->getValueType(0), Op->getOperand(1),
1784 Op->getOperand(2));
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001785 // Don't lower mips_fcaf_[wd] since LLVM folds SETFALSE condcodes away
1786 case Intrinsic::mips_fceq_w:
1787 case Intrinsic::mips_fceq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001788 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001789 Op->getOperand(2), ISD::SETOEQ);
1790 case Intrinsic::mips_fcle_w:
1791 case Intrinsic::mips_fcle_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001792 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001793 Op->getOperand(2), ISD::SETOLE);
1794 case Intrinsic::mips_fclt_w:
1795 case Intrinsic::mips_fclt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001796 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001797 Op->getOperand(2), ISD::SETOLT);
1798 case Intrinsic::mips_fcne_w:
1799 case Intrinsic::mips_fcne_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001800 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001801 Op->getOperand(2), ISD::SETONE);
1802 case Intrinsic::mips_fcor_w:
1803 case Intrinsic::mips_fcor_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001804 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001805 Op->getOperand(2), ISD::SETO);
1806 case Intrinsic::mips_fcueq_w:
1807 case Intrinsic::mips_fcueq_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001808 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001809 Op->getOperand(2), ISD::SETUEQ);
1810 case Intrinsic::mips_fcule_w:
1811 case Intrinsic::mips_fcule_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001812 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001813 Op->getOperand(2), ISD::SETULE);
1814 case Intrinsic::mips_fcult_w:
1815 case Intrinsic::mips_fcult_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001816 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001817 Op->getOperand(2), ISD::SETULT);
1818 case Intrinsic::mips_fcun_w:
1819 case Intrinsic::mips_fcun_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001820 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001821 Op->getOperand(2), ISD::SETUO);
1822 case Intrinsic::mips_fcune_w:
1823 case Intrinsic::mips_fcune_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001824 return DAG.getSetCC(DL, Op->getValueType(0), Op->getOperand(1),
Daniel Sandersfd538dc2013-09-24 10:46:19 +00001825 Op->getOperand(2), ISD::SETUNE);
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001826 case Intrinsic::mips_fdiv_w:
1827 case Intrinsic::mips_fdiv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001828 return DAG.getNode(ISD::FDIV, DL, Op->getValueType(0), Op->getOperand(1),
1829 Op->getOperand(2));
Daniel Sanders015972b2013-10-11 10:00:06 +00001830 case Intrinsic::mips_ffint_u_w:
1831 case Intrinsic::mips_ffint_u_d:
1832 return DAG.getNode(ISD::UINT_TO_FP, DL, Op->getValueType(0),
1833 Op->getOperand(1));
1834 case Intrinsic::mips_ffint_s_w:
1835 case Intrinsic::mips_ffint_s_d:
1836 return DAG.getNode(ISD::SINT_TO_FP, DL, Op->getValueType(0),
1837 Op->getOperand(1));
Daniel Sanders7a289d02013-09-23 12:02:46 +00001838 case Intrinsic::mips_fill_b:
1839 case Intrinsic::mips_fill_h:
Daniel Sandersc72593e2013-09-27 13:20:41 +00001840 case Intrinsic::mips_fill_w:
1841 case Intrinsic::mips_fill_d: {
Daniel Sandersf49dd822013-09-24 13:33:07 +00001842 EVT ResTy = Op->getValueType(0);
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00001843 SmallVector<SDValue, 16> Ops(ResTy.getVectorNumElements(),
1844 Op->getOperand(1));
Daniel Sandersf49dd822013-09-24 13:33:07 +00001845
Daniel Sandersc72593e2013-09-27 13:20:41 +00001846 // If ResTy is v2i64 then the type legalizer will break this node down into
1847 // an equivalent v4i32.
Craig Topper48d114b2014-04-26 18:35:24 +00001848 return DAG.getNode(ISD::BUILD_VECTOR, DL, ResTy, Ops);
Daniel Sandersf49dd822013-09-24 13:33:07 +00001849 }
Daniel Sandersa9521602013-10-23 10:36:52 +00001850 case Intrinsic::mips_fexp2_w:
1851 case Intrinsic::mips_fexp2_d: {
1852 EVT ResTy = Op->getValueType(0);
1853 return DAG.getNode(
1854 ISD::FMUL, SDLoc(Op), ResTy, Op->getOperand(1),
1855 DAG.getNode(ISD::FEXP2, SDLoc(Op), ResTy, Op->getOperand(2)));
1856 }
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001857 case Intrinsic::mips_flog2_w:
1858 case Intrinsic::mips_flog2_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001859 return DAG.getNode(ISD::FLOG2, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersd7103f32013-10-11 10:14:25 +00001860 case Intrinsic::mips_fmadd_w:
1861 case Intrinsic::mips_fmadd_d:
1862 return DAG.getNode(ISD::FMA, SDLoc(Op), Op->getValueType(0),
1863 Op->getOperand(1), Op->getOperand(2), Op->getOperand(3));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001864 case Intrinsic::mips_fmul_w:
1865 case Intrinsic::mips_fmul_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001866 return DAG.getNode(ISD::FMUL, DL, Op->getValueType(0), Op->getOperand(1),
1867 Op->getOperand(2));
Daniel Sanderse67bd872013-10-11 10:27:32 +00001868 case Intrinsic::mips_fmsub_w:
1869 case Intrinsic::mips_fmsub_d: {
1870 EVT ResTy = Op->getValueType(0);
1871 return DAG.getNode(ISD::FSUB, SDLoc(Op), ResTy, Op->getOperand(1),
1872 DAG.getNode(ISD::FMUL, SDLoc(Op), ResTy,
1873 Op->getOperand(2), Op->getOperand(3)));
1874 }
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001875 case Intrinsic::mips_frint_w:
1876 case Intrinsic::mips_frint_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001877 return DAG.getNode(ISD::FRINT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001878 case Intrinsic::mips_fsqrt_w:
1879 case Intrinsic::mips_fsqrt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001880 return DAG.getNode(ISD::FSQRT, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf5bd9372013-09-11 10:51:30 +00001881 case Intrinsic::mips_fsub_w:
1882 case Intrinsic::mips_fsub_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001883 return DAG.getNode(ISD::FSUB, DL, Op->getValueType(0), Op->getOperand(1),
1884 Op->getOperand(2));
Daniel Sanders015972b2013-10-11 10:00:06 +00001885 case Intrinsic::mips_ftrunc_u_w:
1886 case Intrinsic::mips_ftrunc_u_d:
1887 return DAG.getNode(ISD::FP_TO_UINT, DL, Op->getValueType(0),
1888 Op->getOperand(1));
1889 case Intrinsic::mips_ftrunc_s_w:
1890 case Intrinsic::mips_ftrunc_s_d:
1891 return DAG.getNode(ISD::FP_TO_SINT, DL, Op->getValueType(0),
1892 Op->getOperand(1));
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001893 case Intrinsic::mips_ilvev_b:
1894 case Intrinsic::mips_ilvev_h:
1895 case Intrinsic::mips_ilvev_w:
1896 case Intrinsic::mips_ilvev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001897 return DAG.getNode(MipsISD::ILVEV, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001898 Op->getOperand(1), Op->getOperand(2));
1899 case Intrinsic::mips_ilvl_b:
1900 case Intrinsic::mips_ilvl_h:
1901 case Intrinsic::mips_ilvl_w:
1902 case Intrinsic::mips_ilvl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001903 return DAG.getNode(MipsISD::ILVL, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001904 Op->getOperand(1), Op->getOperand(2));
1905 case Intrinsic::mips_ilvod_b:
1906 case Intrinsic::mips_ilvod_h:
1907 case Intrinsic::mips_ilvod_w:
1908 case Intrinsic::mips_ilvod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001909 return DAG.getNode(MipsISD::ILVOD, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001910 Op->getOperand(1), Op->getOperand(2));
1911 case Intrinsic::mips_ilvr_b:
1912 case Intrinsic::mips_ilvr_h:
1913 case Intrinsic::mips_ilvr_w:
1914 case Intrinsic::mips_ilvr_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001915 return DAG.getNode(MipsISD::ILVR, DL, Op->getValueType(0),
Daniel Sanders2ed228b2013-09-24 14:36:12 +00001916 Op->getOperand(1), Op->getOperand(2));
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00001917 case Intrinsic::mips_insert_b:
1918 case Intrinsic::mips_insert_h:
1919 case Intrinsic::mips_insert_w:
Daniel Sanders6098b332013-09-27 13:36:54 +00001920 case Intrinsic::mips_insert_d:
1921 return DAG.getNode(ISD::INSERT_VECTOR_ELT, SDLoc(Op), Op->getValueType(0),
1922 Op->getOperand(1), Op->getOperand(3), Op->getOperand(2));
Daniel Sandersb50ccf82014-04-01 10:35:28 +00001923 case Intrinsic::mips_insve_b:
1924 case Intrinsic::mips_insve_h:
1925 case Intrinsic::mips_insve_w:
1926 case Intrinsic::mips_insve_d:
1927 return DAG.getNode(MipsISD::INSVE, DL, Op->getValueType(0),
1928 Op->getOperand(1), Op->getOperand(2), Op->getOperand(3),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001929 DAG.getConstant(0, DL, MVT::i32));
Daniel Sanders7a289d02013-09-23 12:02:46 +00001930 case Intrinsic::mips_ldi_b:
1931 case Intrinsic::mips_ldi_h:
1932 case Intrinsic::mips_ldi_w:
1933 case Intrinsic::mips_ldi_d:
Daniel Sandersf49dd822013-09-24 13:33:07 +00001934 return lowerMSASplatImm(Op, 1, DAG);
Matheus Almeida4b27eb52014-02-10 12:05:17 +00001935 case Intrinsic::mips_lsa:
1936 case Intrinsic::mips_dlsa: {
Daniel Sandersa4eaf592013-10-17 13:38:20 +00001937 EVT ResTy = Op->getValueType(0);
1938 return DAG.getNode(ISD::ADD, SDLoc(Op), ResTy, Op->getOperand(1),
1939 DAG.getNode(ISD::SHL, SDLoc(Op), ResTy,
1940 Op->getOperand(2), Op->getOperand(3)));
1941 }
Daniel Sanders50e5ed32013-10-11 10:50:42 +00001942 case Intrinsic::mips_maddv_b:
1943 case Intrinsic::mips_maddv_h:
1944 case Intrinsic::mips_maddv_w:
1945 case Intrinsic::mips_maddv_d: {
1946 EVT ResTy = Op->getValueType(0);
1947 return DAG.getNode(ISD::ADD, SDLoc(Op), ResTy, Op->getOperand(1),
1948 DAG.getNode(ISD::MUL, SDLoc(Op), ResTy,
1949 Op->getOperand(2), Op->getOperand(3)));
1950 }
Daniel Sanders3ce56622013-09-24 12:18:31 +00001951 case Intrinsic::mips_max_s_b:
1952 case Intrinsic::mips_max_s_h:
1953 case Intrinsic::mips_max_s_w:
1954 case Intrinsic::mips_max_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001955 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1956 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001957 case Intrinsic::mips_max_u_b:
1958 case Intrinsic::mips_max_u_h:
1959 case Intrinsic::mips_max_u_w:
1960 case Intrinsic::mips_max_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001961 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1962 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001963 case Intrinsic::mips_maxi_s_b:
1964 case Intrinsic::mips_maxi_s_h:
1965 case Intrinsic::mips_maxi_s_w:
1966 case Intrinsic::mips_maxi_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001967 return DAG.getNode(MipsISD::VSMAX, DL, Op->getValueType(0),
1968 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001969 case Intrinsic::mips_maxi_u_b:
1970 case Intrinsic::mips_maxi_u_h:
1971 case Intrinsic::mips_maxi_u_w:
1972 case Intrinsic::mips_maxi_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001973 return DAG.getNode(MipsISD::VUMAX, DL, Op->getValueType(0),
1974 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001975 case Intrinsic::mips_min_s_b:
1976 case Intrinsic::mips_min_s_h:
1977 case Intrinsic::mips_min_s_w:
1978 case Intrinsic::mips_min_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001979 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1980 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001981 case Intrinsic::mips_min_u_b:
1982 case Intrinsic::mips_min_u_h:
1983 case Intrinsic::mips_min_u_w:
1984 case Intrinsic::mips_min_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001985 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1986 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001987 case Intrinsic::mips_mini_s_b:
1988 case Intrinsic::mips_mini_s_h:
1989 case Intrinsic::mips_mini_s_w:
1990 case Intrinsic::mips_mini_s_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001991 return DAG.getNode(MipsISD::VSMIN, DL, Op->getValueType(0),
1992 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders3ce56622013-09-24 12:18:31 +00001993 case Intrinsic::mips_mini_u_b:
1994 case Intrinsic::mips_mini_u_h:
1995 case Intrinsic::mips_mini_u_w:
1996 case Intrinsic::mips_mini_u_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00001997 return DAG.getNode(MipsISD::VUMIN, DL, Op->getValueType(0),
1998 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanders0210dd42013-10-01 10:22:35 +00001999 case Intrinsic::mips_mod_s_b:
2000 case Intrinsic::mips_mod_s_h:
2001 case Intrinsic::mips_mod_s_w:
2002 case Intrinsic::mips_mod_s_d:
2003 return DAG.getNode(ISD::SREM, DL, Op->getValueType(0), Op->getOperand(1),
2004 Op->getOperand(2));
2005 case Intrinsic::mips_mod_u_b:
2006 case Intrinsic::mips_mod_u_h:
2007 case Intrinsic::mips_mod_u_w:
2008 case Intrinsic::mips_mod_u_d:
2009 return DAG.getNode(ISD::UREM, DL, Op->getValueType(0), Op->getOperand(1),
2010 Op->getOperand(2));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00002011 case Intrinsic::mips_mulv_b:
2012 case Intrinsic::mips_mulv_h:
2013 case Intrinsic::mips_mulv_w:
2014 case Intrinsic::mips_mulv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002015 return DAG.getNode(ISD::MUL, DL, Op->getValueType(0), Op->getOperand(1),
2016 Op->getOperand(2));
Daniel Sanders50e5ed32013-10-11 10:50:42 +00002017 case Intrinsic::mips_msubv_b:
2018 case Intrinsic::mips_msubv_h:
2019 case Intrinsic::mips_msubv_w:
2020 case Intrinsic::mips_msubv_d: {
2021 EVT ResTy = Op->getValueType(0);
2022 return DAG.getNode(ISD::SUB, SDLoc(Op), ResTy, Op->getOperand(1),
2023 DAG.getNode(ISD::MUL, SDLoc(Op), ResTy,
2024 Op->getOperand(2), Op->getOperand(3)));
2025 }
Daniel Sandersfbcb5822013-09-11 11:58:30 +00002026 case Intrinsic::mips_nlzc_b:
2027 case Intrinsic::mips_nlzc_h:
2028 case Intrinsic::mips_nlzc_w:
2029 case Intrinsic::mips_nlzc_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002030 return DAG.getNode(ISD::CTLZ, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sandersf7456c72013-09-23 13:22:24 +00002031 case Intrinsic::mips_nor_v: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002032 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
2033 Op->getOperand(1), Op->getOperand(2));
2034 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersf7456c72013-09-23 13:22:24 +00002035 }
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00002036 case Intrinsic::mips_nori_b: {
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002037 SDValue Res = DAG.getNode(ISD::OR, DL, Op->getValueType(0),
2038 Op->getOperand(1),
2039 lowerMSASplatImm(Op, 2, DAG));
2040 return DAG.getNOT(DL, Res, Res->getValueType(0));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00002041 }
Daniel Sanders8ca81e42013-09-23 12:57:42 +00002042 case Intrinsic::mips_or_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002043 return DAG.getNode(ISD::OR, DL, Op->getValueType(0), Op->getOperand(1),
2044 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00002045 case Intrinsic::mips_ori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002046 return DAG.getNode(ISD::OR, DL, Op->getValueType(0),
2047 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002048 case Intrinsic::mips_pckev_b:
2049 case Intrinsic::mips_pckev_h:
2050 case Intrinsic::mips_pckev_w:
2051 case Intrinsic::mips_pckev_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002052 return DAG.getNode(MipsISD::PCKEV, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002053 Op->getOperand(1), Op->getOperand(2));
2054 case Intrinsic::mips_pckod_b:
2055 case Intrinsic::mips_pckod_h:
2056 case Intrinsic::mips_pckod_w:
2057 case Intrinsic::mips_pckod_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002058 return DAG.getNode(MipsISD::PCKOD, DL, Op->getValueType(0),
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002059 Op->getOperand(1), Op->getOperand(2));
Daniel Sanders766cb692013-09-23 13:40:21 +00002060 case Intrinsic::mips_pcnt_b:
2061 case Intrinsic::mips_pcnt_h:
2062 case Intrinsic::mips_pcnt_w:
2063 case Intrinsic::mips_pcnt_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002064 return DAG.getNode(ISD::CTPOP, DL, Op->getValueType(0), Op->getOperand(1));
Daniel Sanders26307182013-09-24 14:20:00 +00002065 case Intrinsic::mips_shf_b:
2066 case Intrinsic::mips_shf_h:
2067 case Intrinsic::mips_shf_w:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002068 return DAG.getNode(MipsISD::SHF, DL, Op->getValueType(0),
Daniel Sanders26307182013-09-24 14:20:00 +00002069 Op->getOperand(2), Op->getOperand(1));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00002070 case Intrinsic::mips_sll_b:
2071 case Intrinsic::mips_sll_h:
2072 case Intrinsic::mips_sll_w:
2073 case Intrinsic::mips_sll_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002074 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0), Op->getOperand(1),
2075 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00002076 case Intrinsic::mips_slli_b:
2077 case Intrinsic::mips_slli_h:
2078 case Intrinsic::mips_slli_w:
2079 case Intrinsic::mips_slli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002080 return DAG.getNode(ISD::SHL, DL, Op->getValueType(0),
2081 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanderse7ef0c82013-10-30 13:07:44 +00002082 case Intrinsic::mips_splat_b:
2083 case Intrinsic::mips_splat_h:
2084 case Intrinsic::mips_splat_w:
2085 case Intrinsic::mips_splat_d:
2086 // We can't lower via VECTOR_SHUFFLE because it requires constant shuffle
2087 // masks, nor can we lower via BUILD_VECTOR & EXTRACT_VECTOR_ELT because
2088 // EXTRACT_VECTOR_ELT can't extract i64's on MIPS32.
2089 // Instead we lower to MipsISD::VSHF and match from there.
2090 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
Daniel Sanders50b80412013-11-15 12:56:49 +00002091 lowerMSASplatZExt(Op, 2, DAG), Op->getOperand(1),
Daniel Sanderse7ef0c82013-10-30 13:07:44 +00002092 Op->getOperand(1));
Daniel Sanders7e51fe12013-09-27 11:48:57 +00002093 case Intrinsic::mips_splati_b:
2094 case Intrinsic::mips_splati_h:
2095 case Intrinsic::mips_splati_w:
2096 case Intrinsic::mips_splati_d:
2097 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
2098 lowerMSASplatImm(Op, 2, DAG), Op->getOperand(1),
2099 Op->getOperand(1));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00002100 case Intrinsic::mips_sra_b:
2101 case Intrinsic::mips_sra_h:
2102 case Intrinsic::mips_sra_w:
2103 case Intrinsic::mips_sra_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002104 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0), Op->getOperand(1),
2105 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00002106 case Intrinsic::mips_srai_b:
2107 case Intrinsic::mips_srai_h:
2108 case Intrinsic::mips_srai_w:
2109 case Intrinsic::mips_srai_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002110 return DAG.getNode(ISD::SRA, DL, Op->getValueType(0),
2111 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00002112 case Intrinsic::mips_srl_b:
2113 case Intrinsic::mips_srl_h:
2114 case Intrinsic::mips_srl_w:
2115 case Intrinsic::mips_srl_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002116 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0), Op->getOperand(1),
2117 Op->getOperand(2));
Daniel Sanderscba19222013-09-24 10:28:18 +00002118 case Intrinsic::mips_srli_b:
2119 case Intrinsic::mips_srli_h:
2120 case Intrinsic::mips_srli_w:
2121 case Intrinsic::mips_srli_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002122 return DAG.getNode(ISD::SRL, DL, Op->getValueType(0),
2123 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sandersfbcb5822013-09-11 11:58:30 +00002124 case Intrinsic::mips_subv_b:
2125 case Intrinsic::mips_subv_h:
2126 case Intrinsic::mips_subv_w:
2127 case Intrinsic::mips_subv_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002128 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0), Op->getOperand(1),
2129 Op->getOperand(2));
Daniel Sanders86d0c8d2013-09-23 14:29:55 +00002130 case Intrinsic::mips_subvi_b:
2131 case Intrinsic::mips_subvi_h:
2132 case Intrinsic::mips_subvi_w:
2133 case Intrinsic::mips_subvi_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002134 return DAG.getNode(ISD::SUB, DL, Op->getValueType(0),
2135 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Daniel Sanderse5087042013-09-24 14:02:15 +00002136 case Intrinsic::mips_vshf_b:
2137 case Intrinsic::mips_vshf_h:
2138 case Intrinsic::mips_vshf_w:
2139 case Intrinsic::mips_vshf_d:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002140 return DAG.getNode(MipsISD::VSHF, DL, Op->getValueType(0),
Daniel Sanderse5087042013-09-24 14:02:15 +00002141 Op->getOperand(1), Op->getOperand(2), Op->getOperand(3));
Daniel Sanders8ca81e42013-09-23 12:57:42 +00002142 case Intrinsic::mips_xor_v:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002143 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0), Op->getOperand(1),
2144 Op->getOperand(2));
Daniel Sandersbfc39ce2013-09-24 12:32:47 +00002145 case Intrinsic::mips_xori_b:
Daniel Sanders84e7caf2013-09-27 10:25:41 +00002146 return DAG.getNode(ISD::XOR, DL, Op->getValueType(0),
2147 Op->getOperand(1), lowerMSASplatImm(Op, 2, DAG));
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00002148 }
2149}
2150
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00002151static SDValue lowerMSALoadIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
2152 SDLoc DL(Op);
2153 SDValue ChainIn = Op->getOperand(0);
2154 SDValue Address = Op->getOperand(2);
2155 SDValue Offset = Op->getOperand(3);
2156 EVT ResTy = Op->getValueType(0);
2157 EVT PtrTy = Address->getValueType(0);
2158
2159 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
2160
2161 return DAG.getLoad(ResTy, DL, ChainIn, Address, MachinePointerInfo(), false,
2162 false, false, 16);
2163}
2164
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00002165SDValue MipsSETargetLowering::lowerINTRINSIC_W_CHAIN(SDValue Op,
2166 SelectionDAG &DAG) const {
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00002167 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
2168 switch (Intr) {
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00002169 default:
2170 return SDValue();
2171 case Intrinsic::mips_extp:
2172 return lowerDSPIntr(Op, DAG, MipsISD::EXTP);
2173 case Intrinsic::mips_extpdp:
2174 return lowerDSPIntr(Op, DAG, MipsISD::EXTPDP);
2175 case Intrinsic::mips_extr_w:
2176 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_W);
2177 case Intrinsic::mips_extr_r_w:
2178 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_R_W);
2179 case Intrinsic::mips_extr_rs_w:
2180 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_RS_W);
2181 case Intrinsic::mips_extr_s_h:
2182 return lowerDSPIntr(Op, DAG, MipsISD::EXTR_S_H);
2183 case Intrinsic::mips_mthlip:
2184 return lowerDSPIntr(Op, DAG, MipsISD::MTHLIP);
2185 case Intrinsic::mips_mulsaq_s_w_ph:
2186 return lowerDSPIntr(Op, DAG, MipsISD::MULSAQ_S_W_PH);
2187 case Intrinsic::mips_maq_s_w_phl:
2188 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHL);
2189 case Intrinsic::mips_maq_s_w_phr:
2190 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_S_W_PHR);
2191 case Intrinsic::mips_maq_sa_w_phl:
2192 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHL);
2193 case Intrinsic::mips_maq_sa_w_phr:
2194 return lowerDSPIntr(Op, DAG, MipsISD::MAQ_SA_W_PHR);
2195 case Intrinsic::mips_dpaq_s_w_ph:
2196 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_S_W_PH);
2197 case Intrinsic::mips_dpsq_s_w_ph:
2198 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_S_W_PH);
2199 case Intrinsic::mips_dpaq_sa_l_w:
2200 return lowerDSPIntr(Op, DAG, MipsISD::DPAQ_SA_L_W);
2201 case Intrinsic::mips_dpsq_sa_l_w:
2202 return lowerDSPIntr(Op, DAG, MipsISD::DPSQ_SA_L_W);
2203 case Intrinsic::mips_dpaqx_s_w_ph:
2204 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_S_W_PH);
2205 case Intrinsic::mips_dpaqx_sa_w_ph:
2206 return lowerDSPIntr(Op, DAG, MipsISD::DPAQX_SA_W_PH);
2207 case Intrinsic::mips_dpsqx_s_w_ph:
2208 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_S_W_PH);
2209 case Intrinsic::mips_dpsqx_sa_w_ph:
2210 return lowerDSPIntr(Op, DAG, MipsISD::DPSQX_SA_W_PH);
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00002211 case Intrinsic::mips_ld_b:
2212 case Intrinsic::mips_ld_h:
2213 case Intrinsic::mips_ld_w:
2214 case Intrinsic::mips_ld_d:
Daniel Sanderse6ed5b72013-08-28 12:04:29 +00002215 return lowerMSALoadIntr(Op, DAG, Intr);
2216 }
2217}
2218
2219static SDValue lowerMSAStoreIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr) {
2220 SDLoc DL(Op);
2221 SDValue ChainIn = Op->getOperand(0);
2222 SDValue Value = Op->getOperand(2);
2223 SDValue Address = Op->getOperand(3);
2224 SDValue Offset = Op->getOperand(4);
2225 EVT PtrTy = Address->getValueType(0);
2226
2227 Address = DAG.getNode(ISD::ADD, DL, PtrTy, Address, Offset);
2228
2229 return DAG.getStore(ChainIn, DL, Value, Address, MachinePointerInfo(), false,
2230 false, 16);
2231}
2232
2233SDValue MipsSETargetLowering::lowerINTRINSIC_VOID(SDValue Op,
2234 SelectionDAG &DAG) const {
2235 unsigned Intr = cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue();
2236 switch (Intr) {
2237 default:
2238 return SDValue();
2239 case Intrinsic::mips_st_b:
2240 case Intrinsic::mips_st_h:
2241 case Intrinsic::mips_st_w:
2242 case Intrinsic::mips_st_d:
Daniel Sandersce09d072013-08-28 12:14:50 +00002243 return lowerMSAStoreIntr(Op, DAG, Intr);
Akira Hatanakaa6bbde52013-04-13 02:13:30 +00002244 }
2245}
2246
Daniel Sanders7a289d02013-09-23 12:02:46 +00002247/// \brief Check if the given BuildVectorSDNode is a splat.
2248/// This method currently relies on DAG nodes being reused when equivalent,
2249/// so it's possible for this to return false even when isConstantSplat returns
2250/// true.
2251static bool isSplatVector(const BuildVectorSDNode *N) {
Daniel Sanders7a289d02013-09-23 12:02:46 +00002252 unsigned int nOps = N->getNumOperands();
Daniel Sandersab94b532013-10-30 15:20:38 +00002253 assert(nOps > 1 && "isSplatVector has 0 or 1 sized build vector");
Daniel Sanders7a289d02013-09-23 12:02:46 +00002254
2255 SDValue Operand0 = N->getOperand(0);
2256
2257 for (unsigned int i = 1; i < nOps; ++i) {
2258 if (N->getOperand(i) != Operand0)
2259 return false;
2260 }
2261
2262 return true;
2263}
2264
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00002265// Lower ISD::EXTRACT_VECTOR_ELT into MipsISD::VEXTRACT_SEXT_ELT.
2266//
2267// The non-value bits resulting from ISD::EXTRACT_VECTOR_ELT are undefined. We
2268// choose to sign-extend but we could have equally chosen zero-extend. The
2269// DAGCombiner will fold any sign/zero extension of the ISD::EXTRACT_VECTOR_ELT
2270// result into this node later (possibly changing it to a zero-extend in the
2271// process).
2272SDValue MipsSETargetLowering::
2273lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
2274 SDLoc DL(Op);
2275 EVT ResTy = Op->getValueType(0);
2276 SDValue Op0 = Op->getOperand(0);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002277 EVT VecTy = Op0->getValueType(0);
2278
2279 if (!VecTy.is128BitVector())
2280 return SDValue();
2281
2282 if (ResTy.isInteger()) {
2283 SDValue Op1 = Op->getOperand(1);
2284 EVT EltTy = VecTy.getVectorElementType();
2285 return DAG.getNode(MipsISD::VEXTRACT_SEXT_ELT, DL, ResTy, Op0, Op1,
2286 DAG.getValueType(EltTy));
2287 }
2288
2289 return Op;
Daniel Sandersa4c8f3a2013-09-23 14:03:12 +00002290}
2291
Daniel Sandersf49dd822013-09-24 13:33:07 +00002292static bool isConstantOrUndef(const SDValue Op) {
2293 if (Op->getOpcode() == ISD::UNDEF)
2294 return true;
Vasileios Kalintiris46963f62015-02-13 19:12:16 +00002295 if (isa<ConstantSDNode>(Op))
Daniel Sandersf49dd822013-09-24 13:33:07 +00002296 return true;
Vasileios Kalintiris46963f62015-02-13 19:12:16 +00002297 if (isa<ConstantFPSDNode>(Op))
Daniel Sandersf49dd822013-09-24 13:33:07 +00002298 return true;
2299 return false;
2300}
2301
2302static bool isConstantOrUndefBUILD_VECTOR(const BuildVectorSDNode *Op) {
2303 for (unsigned i = 0; i < Op->getNumOperands(); ++i)
2304 if (isConstantOrUndef(Op->getOperand(i)))
2305 return true;
2306 return false;
2307}
2308
Daniel Sanders7a289d02013-09-23 12:02:46 +00002309// Lowers ISD::BUILD_VECTOR into appropriate SelectionDAG nodes for the
2310// backend.
2311//
2312// Lowers according to the following rules:
Daniel Sandersf49dd822013-09-24 13:33:07 +00002313// - Constant splats are legal as-is as long as the SplatBitSize is a power of
2314// 2 less than or equal to 64 and the value fits into a signed 10-bit
2315// immediate
2316// - Constant splats are lowered to bitconverted BUILD_VECTORs if SplatBitSize
2317// is a power of 2 less than or equal to 64 and the value does not fit into a
2318// signed 10-bit immediate
2319// - Non-constant splats are legal as-is.
2320// - Non-constant non-splats are lowered to sequences of INSERT_VECTOR_ELT.
2321// - All others are illegal and must be expanded.
Daniel Sanders7a289d02013-09-23 12:02:46 +00002322SDValue MipsSETargetLowering::lowerBUILD_VECTOR(SDValue Op,
2323 SelectionDAG &DAG) const {
2324 BuildVectorSDNode *Node = cast<BuildVectorSDNode>(Op);
2325 EVT ResTy = Op->getValueType(0);
2326 SDLoc DL(Op);
2327 APInt SplatValue, SplatUndef;
2328 unsigned SplatBitSize;
2329 bool HasAnyUndefs;
2330
Eric Christopher1c29a652014-07-18 22:55:25 +00002331 if (!Subtarget.hasMSA() || !ResTy.is128BitVector())
Daniel Sanders7a289d02013-09-23 12:02:46 +00002332 return SDValue();
2333
2334 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
2335 HasAnyUndefs, 8,
Eric Christopher1c29a652014-07-18 22:55:25 +00002336 !Subtarget.isLittle()) && SplatBitSize <= 64) {
Daniel Sandersf49dd822013-09-24 13:33:07 +00002337 // We can only cope with 8, 16, 32, or 64-bit elements
2338 if (SplatBitSize != 8 && SplatBitSize != 16 && SplatBitSize != 32 &&
2339 SplatBitSize != 64)
2340 return SDValue();
2341
2342 // If the value fits into a simm10 then we can use ldi.[bhwd]
Daniel Sandersfd8e4162013-11-22 11:24:50 +00002343 // However, if it isn't an integer type we will have to bitcast from an
Daniel Sandersd40aea82013-11-22 13:22:52 +00002344 // integer type first. Also, if there are any undefs, we must lower them
Daniel Sanders630dbe02013-11-22 13:14:06 +00002345 // to defined values first.
2346 if (ResTy.isInteger() && !HasAnyUndefs && SplatValue.isSignedIntN(10))
Daniel Sandersf49dd822013-09-24 13:33:07 +00002347 return Op;
2348
2349 EVT ViaVecTy;
Daniel Sanders7a289d02013-09-23 12:02:46 +00002350
2351 switch (SplatBitSize) {
2352 default:
2353 return SDValue();
Daniel Sandersf49dd822013-09-24 13:33:07 +00002354 case 8:
2355 ViaVecTy = MVT::v16i8;
Daniel Sanders7a289d02013-09-23 12:02:46 +00002356 break;
2357 case 16:
Daniel Sandersf49dd822013-09-24 13:33:07 +00002358 ViaVecTy = MVT::v8i16;
Daniel Sanders7a289d02013-09-23 12:02:46 +00002359 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00002360 case 32:
2361 ViaVecTy = MVT::v4i32;
Daniel Sanders7a289d02013-09-23 12:02:46 +00002362 break;
Daniel Sandersf49dd822013-09-24 13:33:07 +00002363 case 64:
2364 // There's no fill.d to fall back on for 64-bit values
2365 return SDValue();
Daniel Sanders7a289d02013-09-23 12:02:46 +00002366 }
2367
Daniel Sanders50b80412013-11-15 12:56:49 +00002368 // SelectionDAG::getConstant will promote SplatValue appropriately.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002369 SDValue Result = DAG.getConstant(SplatValue, DL, ViaVecTy);
Daniel Sandersf49dd822013-09-24 13:33:07 +00002370
Daniel Sanders50b80412013-11-15 12:56:49 +00002371 // Bitcast to the type we originally wanted
Daniel Sandersf49dd822013-09-24 13:33:07 +00002372 if (ViaVecTy != ResTy)
2373 Result = DAG.getNode(ISD::BITCAST, SDLoc(Node), ResTy, Result);
Daniel Sanders7a289d02013-09-23 12:02:46 +00002374
2375 return Result;
Daniel Sandersf49dd822013-09-24 13:33:07 +00002376 } else if (isSplatVector(Node))
2377 return Op;
2378 else if (!isConstantOrUndefBUILD_VECTOR(Node)) {
Daniel Sandersf86622b2013-09-24 13:16:15 +00002379 // Use INSERT_VECTOR_ELT operations rather than expand to stores.
2380 // The resulting code is the same length as the expansion, but it doesn't
2381 // use memory operations
2382 EVT ResTy = Node->getValueType(0);
2383
2384 assert(ResTy.isVector());
2385
2386 unsigned NumElts = ResTy.getVectorNumElements();
2387 SDValue Vector = DAG.getUNDEF(ResTy);
2388 for (unsigned i = 0; i < NumElts; ++i) {
2389 Vector = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, ResTy, Vector,
2390 Node->getOperand(i),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002391 DAG.getConstant(i, DL, MVT::i32));
Daniel Sandersf86622b2013-09-24 13:16:15 +00002392 }
2393 return Vector;
2394 }
Daniel Sanders7a289d02013-09-23 12:02:46 +00002395
2396 return SDValue();
2397}
2398
Daniel Sanders26307182013-09-24 14:20:00 +00002399// Lower VECTOR_SHUFFLE into SHF (if possible).
2400//
2401// SHF splits the vector into blocks of four elements, then shuffles these
2402// elements according to a <4 x i2> constant (encoded as an integer immediate).
2403//
2404// It is therefore possible to lower into SHF when the mask takes the form:
2405// <a, b, c, d, a+4, b+4, c+4, d+4, a+8, b+8, c+8, d+8, ...>
2406// When undef's appear they are treated as if they were whatever value is
2407// necessary in order to fit the above form.
2408//
2409// For example:
2410// %2 = shufflevector <8 x i16> %0, <8 x i16> undef,
2411// <8 x i32> <i32 3, i32 2, i32 1, i32 0,
2412// i32 7, i32 6, i32 5, i32 4>
2413// is lowered to:
2414// (SHF_H $w0, $w1, 27)
2415// where the 27 comes from:
2416// 3 + (2 << 2) + (1 << 4) + (0 << 6)
2417static SDValue lowerVECTOR_SHUFFLE_SHF(SDValue Op, EVT ResTy,
2418 SmallVector<int, 16> Indices,
2419 SelectionDAG &DAG) {
2420 int SHFIndices[4] = { -1, -1, -1, -1 };
2421
2422 if (Indices.size() < 4)
2423 return SDValue();
2424
2425 for (unsigned i = 0; i < 4; ++i) {
2426 for (unsigned j = i; j < Indices.size(); j += 4) {
2427 int Idx = Indices[j];
2428
2429 // Convert from vector index to 4-element subvector index
2430 // If an index refers to an element outside of the subvector then give up
2431 if (Idx != -1) {
2432 Idx -= 4 * (j / 4);
2433 if (Idx < 0 || Idx >= 4)
2434 return SDValue();
2435 }
2436
2437 // If the mask has an undef, replace it with the current index.
2438 // Note that it might still be undef if the current index is also undef
2439 if (SHFIndices[i] == -1)
2440 SHFIndices[i] = Idx;
2441
2442 // Check that non-undef values are the same as in the mask. If they
2443 // aren't then give up
2444 if (!(Idx == -1 || Idx == SHFIndices[i]))
2445 return SDValue();
2446 }
2447 }
2448
2449 // Calculate the immediate. Replace any remaining undefs with zero
2450 APInt Imm(32, 0);
2451 for (int i = 3; i >= 0; --i) {
2452 int Idx = SHFIndices[i];
2453
2454 if (Idx == -1)
2455 Idx = 0;
2456
2457 Imm <<= 2;
2458 Imm |= Idx & 0x3;
2459 }
2460
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002461 SDLoc DL(Op);
2462 return DAG.getNode(MipsISD::SHF, DL, ResTy,
2463 DAG.getConstant(Imm, DL, MVT::i32), Op->getOperand(0));
Daniel Sanders26307182013-09-24 14:20:00 +00002464}
2465
Daniel Sanders2ed228b2013-09-24 14:36:12 +00002466// Lower VECTOR_SHUFFLE into ILVEV (if possible).
2467//
2468// ILVEV interleaves the even elements from each vector.
2469//
2470// It is possible to lower into ILVEV when the mask takes the form:
2471// <0, n, 2, n+2, 4, n+4, ...>
2472// where n is the number of elements in the vector.
2473//
2474// When undef's appear in the mask they are treated as if they were whatever
2475// value is necessary in order to fit the above form.
2476static SDValue lowerVECTOR_SHUFFLE_ILVEV(SDValue Op, EVT ResTy,
2477 SmallVector<int, 16> Indices,
2478 SelectionDAG &DAG) {
2479 assert ((Indices.size() % 2) == 0);
2480 int WsIdx = 0;
2481 int WtIdx = ResTy.getVectorNumElements();
2482
2483 for (unsigned i = 0; i < Indices.size(); i += 2) {
2484 if (Indices[i] != -1 && Indices[i] != WsIdx)
2485 return SDValue();
2486 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
2487 return SDValue();
2488 WsIdx += 2;
2489 WtIdx += 2;
2490 }
2491
2492 return DAG.getNode(MipsISD::ILVEV, SDLoc(Op), ResTy, Op->getOperand(0),
2493 Op->getOperand(1));
2494}
2495
2496// Lower VECTOR_SHUFFLE into ILVOD (if possible).
2497//
2498// ILVOD interleaves the odd elements from each vector.
2499//
2500// It is possible to lower into ILVOD when the mask takes the form:
2501// <1, n+1, 3, n+3, 5, n+5, ...>
2502// where n is the number of elements in the vector.
2503//
2504// When undef's appear in the mask they are treated as if they were whatever
2505// value is necessary in order to fit the above form.
2506static SDValue lowerVECTOR_SHUFFLE_ILVOD(SDValue Op, EVT ResTy,
2507 SmallVector<int, 16> Indices,
2508 SelectionDAG &DAG) {
2509 assert ((Indices.size() % 2) == 0);
2510 int WsIdx = 1;
2511 int WtIdx = ResTy.getVectorNumElements() + 1;
2512
2513 for (unsigned i = 0; i < Indices.size(); i += 2) {
2514 if (Indices[i] != -1 && Indices[i] != WsIdx)
2515 return SDValue();
2516 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
2517 return SDValue();
2518 WsIdx += 2;
2519 WtIdx += 2;
2520 }
2521
2522 return DAG.getNode(MipsISD::ILVOD, SDLoc(Op), ResTy, Op->getOperand(0),
2523 Op->getOperand(1));
2524}
2525
2526// Lower VECTOR_SHUFFLE into ILVL (if possible).
2527//
2528// ILVL interleaves consecutive elements from the left half of each vector.
2529//
2530// It is possible to lower into ILVL when the mask takes the form:
2531// <0, n, 1, n+1, 2, n+2, ...>
2532// where n is the number of elements in the vector.
2533//
2534// When undef's appear in the mask they are treated as if they were whatever
2535// value is necessary in order to fit the above form.
2536static SDValue lowerVECTOR_SHUFFLE_ILVL(SDValue Op, EVT ResTy,
2537 SmallVector<int, 16> Indices,
2538 SelectionDAG &DAG) {
2539 assert ((Indices.size() % 2) == 0);
2540 int WsIdx = 0;
2541 int WtIdx = ResTy.getVectorNumElements();
2542
2543 for (unsigned i = 0; i < Indices.size(); i += 2) {
2544 if (Indices[i] != -1 && Indices[i] != WsIdx)
2545 return SDValue();
2546 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
2547 return SDValue();
2548 WsIdx ++;
2549 WtIdx ++;
2550 }
2551
2552 return DAG.getNode(MipsISD::ILVL, SDLoc(Op), ResTy, Op->getOperand(0),
2553 Op->getOperand(1));
2554}
2555
2556// Lower VECTOR_SHUFFLE into ILVR (if possible).
2557//
2558// ILVR interleaves consecutive elements from the right half of each vector.
2559//
2560// It is possible to lower into ILVR when the mask takes the form:
2561// <x, n+x, x+1, n+x+1, x+2, n+x+2, ...>
2562// where n is the number of elements in the vector and x is half n.
2563//
2564// When undef's appear in the mask they are treated as if they were whatever
2565// value is necessary in order to fit the above form.
2566static SDValue lowerVECTOR_SHUFFLE_ILVR(SDValue Op, EVT ResTy,
2567 SmallVector<int, 16> Indices,
2568 SelectionDAG &DAG) {
2569 assert ((Indices.size() % 2) == 0);
2570 unsigned NumElts = ResTy.getVectorNumElements();
2571 int WsIdx = NumElts / 2;
2572 int WtIdx = NumElts + NumElts / 2;
2573
2574 for (unsigned i = 0; i < Indices.size(); i += 2) {
2575 if (Indices[i] != -1 && Indices[i] != WsIdx)
2576 return SDValue();
2577 if (Indices[i+1] != -1 && Indices[i+1] != WtIdx)
2578 return SDValue();
2579 WsIdx ++;
2580 WtIdx ++;
2581 }
2582
2583 return DAG.getNode(MipsISD::ILVR, SDLoc(Op), ResTy, Op->getOperand(0),
2584 Op->getOperand(1));
2585}
2586
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002587// Lower VECTOR_SHUFFLE into PCKEV (if possible).
2588//
2589// PCKEV copies the even elements of each vector into the result vector.
2590//
2591// It is possible to lower into PCKEV when the mask takes the form:
2592// <0, 2, 4, ..., n, n+2, n+4, ...>
2593// where n is the number of elements in the vector.
2594//
2595// When undef's appear in the mask they are treated as if they were whatever
2596// value is necessary in order to fit the above form.
2597static SDValue lowerVECTOR_SHUFFLE_PCKEV(SDValue Op, EVT ResTy,
2598 SmallVector<int, 16> Indices,
2599 SelectionDAG &DAG) {
2600 assert ((Indices.size() % 2) == 0);
2601 int Idx = 0;
2602
2603 for (unsigned i = 0; i < Indices.size(); ++i) {
2604 if (Indices[i] != -1 && Indices[i] != Idx)
2605 return SDValue();
2606 Idx += 2;
2607 }
2608
2609 return DAG.getNode(MipsISD::PCKEV, SDLoc(Op), ResTy, Op->getOperand(0),
2610 Op->getOperand(1));
2611}
2612
2613// Lower VECTOR_SHUFFLE into PCKOD (if possible).
2614//
2615// PCKOD copies the odd elements of each vector into the result vector.
2616//
2617// It is possible to lower into PCKOD when the mask takes the form:
2618// <1, 3, 5, ..., n+1, n+3, n+5, ...>
2619// where n is the number of elements in the vector.
2620//
2621// When undef's appear in the mask they are treated as if they were whatever
2622// value is necessary in order to fit the above form.
2623static SDValue lowerVECTOR_SHUFFLE_PCKOD(SDValue Op, EVT ResTy,
2624 SmallVector<int, 16> Indices,
2625 SelectionDAG &DAG) {
2626 assert ((Indices.size() % 2) == 0);
2627 int Idx = 1;
2628
2629 for (unsigned i = 0; i < Indices.size(); ++i) {
2630 if (Indices[i] != -1 && Indices[i] != Idx)
2631 return SDValue();
2632 Idx += 2;
2633 }
2634
2635 return DAG.getNode(MipsISD::PCKOD, SDLoc(Op), ResTy, Op->getOperand(0),
2636 Op->getOperand(1));
2637}
2638
Daniel Sanderse5087042013-09-24 14:02:15 +00002639// Lower VECTOR_SHUFFLE into VSHF.
2640//
2641// This mostly consists of converting the shuffle indices in Indices into a
2642// BUILD_VECTOR and adding it as an operand to the resulting VSHF. There is
2643// also code to eliminate unused operands of the VECTOR_SHUFFLE. For example,
2644// if the type is v8i16 and all the indices are less than 8 then the second
2645// operand is unused and can be replaced with anything. We choose to replace it
2646// with the used operand since this reduces the number of instructions overall.
2647static SDValue lowerVECTOR_SHUFFLE_VSHF(SDValue Op, EVT ResTy,
2648 SmallVector<int, 16> Indices,
2649 SelectionDAG &DAG) {
2650 SmallVector<SDValue, 16> Ops;
2651 SDValue Op0;
2652 SDValue Op1;
2653 EVT MaskVecTy = ResTy.changeVectorElementTypeToInteger();
2654 EVT MaskEltTy = MaskVecTy.getVectorElementType();
2655 bool Using1stVec = false;
2656 bool Using2ndVec = false;
2657 SDLoc DL(Op);
2658 int ResTyNumElts = ResTy.getVectorNumElements();
2659
2660 for (int i = 0; i < ResTyNumElts; ++i) {
2661 // Idx == -1 means UNDEF
2662 int Idx = Indices[i];
2663
2664 if (0 <= Idx && Idx < ResTyNumElts)
2665 Using1stVec = true;
2666 if (ResTyNumElts <= Idx && Idx < ResTyNumElts * 2)
2667 Using2ndVec = true;
2668 }
2669
2670 for (SmallVector<int, 16>::iterator I = Indices.begin(); I != Indices.end();
2671 ++I)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002672 Ops.push_back(DAG.getTargetConstant(*I, DL, MaskEltTy));
Daniel Sanderse5087042013-09-24 14:02:15 +00002673
Craig Topper48d114b2014-04-26 18:35:24 +00002674 SDValue MaskVec = DAG.getNode(ISD::BUILD_VECTOR, DL, MaskVecTy, Ops);
Daniel Sanderse5087042013-09-24 14:02:15 +00002675
2676 if (Using1stVec && Using2ndVec) {
2677 Op0 = Op->getOperand(0);
2678 Op1 = Op->getOperand(1);
2679 } else if (Using1stVec)
2680 Op0 = Op1 = Op->getOperand(0);
2681 else if (Using2ndVec)
2682 Op0 = Op1 = Op->getOperand(1);
2683 else
2684 llvm_unreachable("shuffle vector mask references neither vector operand?");
2685
Daniel Sandersf88a29e2014-03-21 16:56:51 +00002686 // VECTOR_SHUFFLE concatenates the vectors in an vectorwise fashion.
2687 // <0b00, 0b01> + <0b10, 0b11> -> <0b00, 0b01, 0b10, 0b11>
2688 // VSHF concatenates the vectors in a bitwise fashion:
2689 // <0b00, 0b01> + <0b10, 0b11> ->
2690 // 0b0100 + 0b1110 -> 0b01001110
2691 // <0b10, 0b11, 0b00, 0b01>
2692 // We must therefore swap the operands to get the correct result.
2693 return DAG.getNode(MipsISD::VSHF, DL, ResTy, MaskVec, Op1, Op0);
Daniel Sanderse5087042013-09-24 14:02:15 +00002694}
2695
2696// Lower VECTOR_SHUFFLE into one of a number of instructions depending on the
2697// indices in the shuffle.
2698SDValue MipsSETargetLowering::lowerVECTOR_SHUFFLE(SDValue Op,
2699 SelectionDAG &DAG) const {
2700 ShuffleVectorSDNode *Node = cast<ShuffleVectorSDNode>(Op);
2701 EVT ResTy = Op->getValueType(0);
2702
2703 if (!ResTy.is128BitVector())
2704 return SDValue();
2705
2706 int ResTyNumElts = ResTy.getVectorNumElements();
2707 SmallVector<int, 16> Indices;
2708
2709 for (int i = 0; i < ResTyNumElts; ++i)
2710 Indices.push_back(Node->getMaskElt(i));
2711
Daniel Sanders26307182013-09-24 14:20:00 +00002712 SDValue Result = lowerVECTOR_SHUFFLE_SHF(Op, ResTy, Indices, DAG);
2713 if (Result.getNode())
2714 return Result;
Daniel Sanders2ed228b2013-09-24 14:36:12 +00002715 Result = lowerVECTOR_SHUFFLE_ILVEV(Op, ResTy, Indices, DAG);
2716 if (Result.getNode())
2717 return Result;
2718 Result = lowerVECTOR_SHUFFLE_ILVOD(Op, ResTy, Indices, DAG);
2719 if (Result.getNode())
2720 return Result;
2721 Result = lowerVECTOR_SHUFFLE_ILVL(Op, ResTy, Indices, DAG);
2722 if (Result.getNode())
2723 return Result;
2724 Result = lowerVECTOR_SHUFFLE_ILVR(Op, ResTy, Indices, DAG);
2725 if (Result.getNode())
2726 return Result;
Daniel Sandersfae5f2a2013-09-24 14:53:25 +00002727 Result = lowerVECTOR_SHUFFLE_PCKEV(Op, ResTy, Indices, DAG);
2728 if (Result.getNode())
2729 return Result;
2730 Result = lowerVECTOR_SHUFFLE_PCKOD(Op, ResTy, Indices, DAG);
2731 if (Result.getNode())
2732 return Result;
Daniel Sanderse5087042013-09-24 14:02:15 +00002733 return lowerVECTOR_SHUFFLE_VSHF(Op, ResTy, Indices, DAG);
2734}
2735
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002736MachineBasicBlock * MipsSETargetLowering::
2737emitBPOSGE32(MachineInstr *MI, MachineBasicBlock *BB) const{
2738 // $bb:
2739 // bposge32_pseudo $vr0
2740 // =>
2741 // $bb:
2742 // bposge32 $tbb
2743 // $fbb:
2744 // li $vr2, 0
2745 // b $sink
2746 // $tbb:
2747 // li $vr1, 1
2748 // $sink:
2749 // $vr0 = phi($vr2, $fbb, $vr1, $tbb)
2750
2751 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
Eric Christopher96e72c62015-01-29 23:27:36 +00002752 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Akira Hatanaka13e6ccf2013-08-06 23:08:38 +00002753 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002754 DebugLoc DL = MI->getDebugLoc();
2755 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002756 MachineFunction::iterator It = std::next(MachineFunction::iterator(BB));
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002757 MachineFunction *F = BB->getParent();
2758 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2759 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2760 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2761 F->insert(It, FBB);
2762 F->insert(It, TBB);
2763 F->insert(It, Sink);
2764
2765 // Transfer the remainder of BB and its successor edges to Sink.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002766 Sink->splice(Sink->begin(), BB, std::next(MachineBasicBlock::iterator(MI)),
Akira Hatanaka96ca1822013-03-13 00:54:29 +00002767 BB->end());
2768 Sink->transferSuccessorsAndUpdatePHIs(BB);
2769
2770 // Add successors.
2771 BB->addSuccessor(FBB);
2772 BB->addSuccessor(TBB);
2773 FBB->addSuccessor(Sink);
2774 TBB->addSuccessor(Sink);
2775
2776 // Insert the real bposge32 instruction to $BB.
2777 BuildMI(BB, DL, TII->get(Mips::BPOSGE32)).addMBB(TBB);
2778
2779 // Fill $FBB.
2780 unsigned VR2 = RegInfo.createVirtualRegister(RC);
2781 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), VR2)
2782 .addReg(Mips::ZERO).addImm(0);
2783 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2784
2785 // Fill $TBB.
2786 unsigned VR1 = RegInfo.createVirtualRegister(RC);
2787 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), VR1)
2788 .addReg(Mips::ZERO).addImm(1);
2789
2790 // Insert phi function to $Sink.
2791 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2792 MI->getOperand(0).getReg())
2793 .addReg(VR2).addMBB(FBB).addReg(VR1).addMBB(TBB);
2794
2795 MI->eraseFromParent(); // The pseudo instruction is gone now.
2796 return Sink;
2797}
Daniel Sandersce09d072013-08-28 12:14:50 +00002798
2799MachineBasicBlock * MipsSETargetLowering::
2800emitMSACBranchPseudo(MachineInstr *MI, MachineBasicBlock *BB,
2801 unsigned BranchOp) const{
2802 // $bb:
2803 // vany_nonzero $rd, $ws
2804 // =>
2805 // $bb:
2806 // bnz.b $ws, $tbb
2807 // b $fbb
2808 // $fbb:
2809 // li $rd1, 0
2810 // b $sink
2811 // $tbb:
2812 // li $rd2, 1
2813 // $sink:
2814 // $rd = phi($rd1, $fbb, $rd2, $tbb)
2815
2816 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
Eric Christopher96e72c62015-01-29 23:27:36 +00002817 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sandersce09d072013-08-28 12:14:50 +00002818 const TargetRegisterClass *RC = &Mips::GPR32RegClass;
2819 DebugLoc DL = MI->getDebugLoc();
2820 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002821 MachineFunction::iterator It = std::next(MachineFunction::iterator(BB));
Daniel Sandersce09d072013-08-28 12:14:50 +00002822 MachineFunction *F = BB->getParent();
2823 MachineBasicBlock *FBB = F->CreateMachineBasicBlock(LLVM_BB);
2824 MachineBasicBlock *TBB = F->CreateMachineBasicBlock(LLVM_BB);
2825 MachineBasicBlock *Sink = F->CreateMachineBasicBlock(LLVM_BB);
2826 F->insert(It, FBB);
2827 F->insert(It, TBB);
2828 F->insert(It, Sink);
2829
2830 // Transfer the remainder of BB and its successor edges to Sink.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002831 Sink->splice(Sink->begin(), BB, std::next(MachineBasicBlock::iterator(MI)),
Daniel Sandersce09d072013-08-28 12:14:50 +00002832 BB->end());
2833 Sink->transferSuccessorsAndUpdatePHIs(BB);
2834
2835 // Add successors.
2836 BB->addSuccessor(FBB);
2837 BB->addSuccessor(TBB);
2838 FBB->addSuccessor(Sink);
2839 TBB->addSuccessor(Sink);
2840
2841 // Insert the real bnz.b instruction to $BB.
2842 BuildMI(BB, DL, TII->get(BranchOp))
2843 .addReg(MI->getOperand(1).getReg())
2844 .addMBB(TBB);
2845
2846 // Fill $FBB.
2847 unsigned RD1 = RegInfo.createVirtualRegister(RC);
2848 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::ADDiu), RD1)
2849 .addReg(Mips::ZERO).addImm(0);
2850 BuildMI(*FBB, FBB->end(), DL, TII->get(Mips::B)).addMBB(Sink);
2851
2852 // Fill $TBB.
2853 unsigned RD2 = RegInfo.createVirtualRegister(RC);
2854 BuildMI(*TBB, TBB->end(), DL, TII->get(Mips::ADDiu), RD2)
2855 .addReg(Mips::ZERO).addImm(1);
2856
2857 // Insert phi function to $Sink.
2858 BuildMI(*Sink, Sink->begin(), DL, TII->get(Mips::PHI),
2859 MI->getOperand(0).getReg())
2860 .addReg(RD1).addMBB(FBB).addReg(RD2).addMBB(TBB);
2861
2862 MI->eraseFromParent(); // The pseudo instruction is gone now.
2863 return Sink;
2864}
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002865
2866// Emit the COPY_FW pseudo instruction.
2867//
2868// copy_fw_pseudo $fd, $ws, n
2869// =>
2870// copy_u_w $rt, $ws, $n
2871// mtc1 $rt, $fd
2872//
2873// When n is zero, the equivalent operation can be performed with (potentially)
2874// zero instructions due to register overlaps. This optimization is never valid
2875// for lane 1 because it would require FR=0 mode which isn't supported by MSA.
2876MachineBasicBlock * MipsSETargetLowering::
2877emitCOPY_FW(MachineInstr *MI, MachineBasicBlock *BB) const{
Eric Christopher96e72c62015-01-29 23:27:36 +00002878 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002879 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2880 DebugLoc DL = MI->getDebugLoc();
2881 unsigned Fd = MI->getOperand(0).getReg();
2882 unsigned Ws = MI->getOperand(1).getReg();
2883 unsigned Lane = MI->getOperand(2).getImm();
2884
Daniel Sandersafe27c72015-02-23 17:22:16 +00002885 if (Lane == 0) {
2886 unsigned Wt = Ws;
2887 if (!Subtarget.useOddSPReg()) {
2888 // We must copy to an even-numbered MSA register so that the
2889 // single-precision sub-register is also guaranteed to be even-numbered.
2890 Wt = RegInfo.createVirtualRegister(&Mips::MSA128WEvensRegClass);
2891
2892 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Wt).addReg(Ws);
2893 }
2894
2895 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Wt, 0, Mips::sub_lo);
2896 } else {
2897 unsigned Wt = RegInfo.createVirtualRegister(
2898 Subtarget.useOddSPReg() ? &Mips::MSA128WRegClass :
2899 &Mips::MSA128WEvensRegClass);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002900
Daniel Sandersd9207702014-03-04 13:54:30 +00002901 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_W), Wt).addReg(Ws).addImm(Lane);
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002902 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Wt, 0, Mips::sub_lo);
2903 }
2904
2905 MI->eraseFromParent(); // The pseudo instruction is gone now.
2906 return BB;
2907}
2908
2909// Emit the COPY_FD pseudo instruction.
2910//
2911// copy_fd_pseudo $fd, $ws, n
2912// =>
2913// splati.d $wt, $ws, $n
2914// copy $fd, $wt:sub_64
2915//
2916// When n is zero, the equivalent operation can be performed with (potentially)
2917// zero instructions due to register overlaps. This optimization is always
2918// valid because FR=1 mode which is the only supported mode in MSA.
2919MachineBasicBlock * MipsSETargetLowering::
2920emitCOPY_FD(MachineInstr *MI, MachineBasicBlock *BB) const{
Eric Christopher1c29a652014-07-18 22:55:25 +00002921 assert(Subtarget.isFP64bit());
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002922
Eric Christopher96e72c62015-01-29 23:27:36 +00002923 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sanders39bb8ba2013-09-27 12:17:32 +00002924 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2925 unsigned Fd = MI->getOperand(0).getReg();
2926 unsigned Ws = MI->getOperand(1).getReg();
2927 unsigned Lane = MI->getOperand(2).getImm() * 2;
2928 DebugLoc DL = MI->getDebugLoc();
2929
2930 if (Lane == 0)
2931 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Ws, 0, Mips::sub_64);
2932 else {
2933 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
2934
2935 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_D), Wt).addReg(Ws).addImm(1);
2936 BuildMI(*BB, MI, DL, TII->get(Mips::COPY), Fd).addReg(Wt, 0, Mips::sub_64);
2937 }
2938
2939 MI->eraseFromParent(); // The pseudo instruction is gone now.
2940 return BB;
2941}
Daniel Sandersa5150702013-09-27 12:31:32 +00002942
2943// Emit the INSERT_FW pseudo instruction.
2944//
2945// insert_fw_pseudo $wd, $wd_in, $n, $fs
2946// =>
2947// subreg_to_reg $wt:sub_lo, $fs
2948// insve_w $wd[$n], $wd_in, $wt[0]
Daniel Sanders1dfddc72013-10-15 13:14:41 +00002949MachineBasicBlock *
2950MipsSETargetLowering::emitINSERT_FW(MachineInstr *MI,
2951 MachineBasicBlock *BB) const {
Eric Christopher96e72c62015-01-29 23:27:36 +00002952 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sandersa5150702013-09-27 12:31:32 +00002953 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2954 DebugLoc DL = MI->getDebugLoc();
2955 unsigned Wd = MI->getOperand(0).getReg();
2956 unsigned Wd_in = MI->getOperand(1).getReg();
2957 unsigned Lane = MI->getOperand(2).getImm();
2958 unsigned Fs = MI->getOperand(3).getReg();
Daniel Sandersafe27c72015-02-23 17:22:16 +00002959 unsigned Wt = RegInfo.createVirtualRegister(
2960 Subtarget.useOddSPReg() ? &Mips::MSA128WRegClass :
2961 &Mips::MSA128WEvensRegClass);
Daniel Sandersa5150702013-09-27 12:31:32 +00002962
2963 BuildMI(*BB, MI, DL, TII->get(Mips::SUBREG_TO_REG), Wt)
Daniel Sanders1dfddc72013-10-15 13:14:41 +00002964 .addImm(0)
2965 .addReg(Fs)
2966 .addImm(Mips::sub_lo);
Daniel Sandersa5150702013-09-27 12:31:32 +00002967 BuildMI(*BB, MI, DL, TII->get(Mips::INSVE_W), Wd)
Daniel Sanders1dfddc72013-10-15 13:14:41 +00002968 .addReg(Wd_in)
2969 .addImm(Lane)
Daniel Sandersb50ccf82014-04-01 10:35:28 +00002970 .addReg(Wt)
2971 .addImm(0);
Daniel Sandersa5150702013-09-27 12:31:32 +00002972
Daniel Sanders1dfddc72013-10-15 13:14:41 +00002973 MI->eraseFromParent(); // The pseudo instruction is gone now.
Daniel Sandersa5150702013-09-27 12:31:32 +00002974 return BB;
2975}
2976
2977// Emit the INSERT_FD pseudo instruction.
2978//
2979// insert_fd_pseudo $wd, $fs, n
2980// =>
2981// subreg_to_reg $wt:sub_64, $fs
2982// insve_d $wd[$n], $wd_in, $wt[0]
Daniel Sanders1dfddc72013-10-15 13:14:41 +00002983MachineBasicBlock *
2984MipsSETargetLowering::emitINSERT_FD(MachineInstr *MI,
2985 MachineBasicBlock *BB) const {
Eric Christopher1c29a652014-07-18 22:55:25 +00002986 assert(Subtarget.isFP64bit());
Daniel Sandersa5150702013-09-27 12:31:32 +00002987
Eric Christopher96e72c62015-01-29 23:27:36 +00002988 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sandersa5150702013-09-27 12:31:32 +00002989 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
2990 DebugLoc DL = MI->getDebugLoc();
2991 unsigned Wd = MI->getOperand(0).getReg();
2992 unsigned Wd_in = MI->getOperand(1).getReg();
2993 unsigned Lane = MI->getOperand(2).getImm();
2994 unsigned Fs = MI->getOperand(3).getReg();
2995 unsigned Wt = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
2996
2997 BuildMI(*BB, MI, DL, TII->get(Mips::SUBREG_TO_REG), Wt)
Daniel Sanders1dfddc72013-10-15 13:14:41 +00002998 .addImm(0)
2999 .addReg(Fs)
3000 .addImm(Mips::sub_64);
Daniel Sandersa5150702013-09-27 12:31:32 +00003001 BuildMI(*BB, MI, DL, TII->get(Mips::INSVE_D), Wd)
Daniel Sanders1dfddc72013-10-15 13:14:41 +00003002 .addReg(Wd_in)
3003 .addImm(Lane)
Daniel Sandersb50ccf82014-04-01 10:35:28 +00003004 .addReg(Wt)
3005 .addImm(0);
Daniel Sanders1dfddc72013-10-15 13:14:41 +00003006
3007 MI->eraseFromParent(); // The pseudo instruction is gone now.
3008 return BB;
3009}
3010
Daniel Sanderse296a0f2014-04-30 12:09:32 +00003011// Emit the INSERT_([BHWD]|F[WD])_VIDX pseudo instruction.
3012//
3013// For integer:
3014// (INSERT_([BHWD]|F[WD])_PSEUDO $wd, $wd_in, $n, $rs)
3015// =>
3016// (SLL $lanetmp1, $lane, <log2size)
3017// (SLD_B $wdtmp1, $wd_in, $wd_in, $lanetmp1)
3018// (INSERT_[BHWD], $wdtmp2, $wdtmp1, 0, $rs)
3019// (NEG $lanetmp2, $lanetmp1)
3020// (SLD_B $wd, $wdtmp2, $wdtmp2, $lanetmp2)
3021//
3022// For floating point:
3023// (INSERT_([BHWD]|F[WD])_PSEUDO $wd, $wd_in, $n, $fs)
3024// =>
3025// (SUBREG_TO_REG $wt, $fs, <subreg>)
3026// (SLL $lanetmp1, $lane, <log2size)
3027// (SLD_B $wdtmp1, $wd_in, $wd_in, $lanetmp1)
3028// (INSVE_[WD], $wdtmp2, 0, $wdtmp1, 0)
3029// (NEG $lanetmp2, $lanetmp1)
3030// (SLD_B $wd, $wdtmp2, $wdtmp2, $lanetmp2)
3031MachineBasicBlock *
3032MipsSETargetLowering::emitINSERT_DF_VIDX(MachineInstr *MI,
3033 MachineBasicBlock *BB,
3034 unsigned EltSizeInBytes,
3035 bool IsFP) const {
Eric Christopher96e72c62015-01-29 23:27:36 +00003036 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sanderse296a0f2014-04-30 12:09:32 +00003037 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
3038 DebugLoc DL = MI->getDebugLoc();
3039 unsigned Wd = MI->getOperand(0).getReg();
3040 unsigned SrcVecReg = MI->getOperand(1).getReg();
3041 unsigned LaneReg = MI->getOperand(2).getReg();
3042 unsigned SrcValReg = MI->getOperand(3).getReg();
3043
3044 const TargetRegisterClass *VecRC = nullptr;
Eric Christopherbf33a3c2014-07-02 23:18:40 +00003045 const TargetRegisterClass *GPRRC =
Daniel Sanders4160c802015-05-05 08:48:35 +00003046 Subtarget.isABI_N64() ? &Mips::GPR64RegClass : &Mips::GPR32RegClass;
Daniel Sanderse296a0f2014-04-30 12:09:32 +00003047 unsigned EltLog2Size;
3048 unsigned InsertOp = 0;
3049 unsigned InsveOp = 0;
3050 switch (EltSizeInBytes) {
3051 default:
3052 llvm_unreachable("Unexpected size");
3053 case 1:
3054 EltLog2Size = 0;
3055 InsertOp = Mips::INSERT_B;
3056 InsveOp = Mips::INSVE_B;
3057 VecRC = &Mips::MSA128BRegClass;
3058 break;
3059 case 2:
3060 EltLog2Size = 1;
3061 InsertOp = Mips::INSERT_H;
3062 InsveOp = Mips::INSVE_H;
3063 VecRC = &Mips::MSA128HRegClass;
3064 break;
3065 case 4:
3066 EltLog2Size = 2;
3067 InsertOp = Mips::INSERT_W;
3068 InsveOp = Mips::INSVE_W;
3069 VecRC = &Mips::MSA128WRegClass;
3070 break;
3071 case 8:
3072 EltLog2Size = 3;
3073 InsertOp = Mips::INSERT_D;
3074 InsveOp = Mips::INSVE_D;
3075 VecRC = &Mips::MSA128DRegClass;
3076 break;
3077 }
3078
3079 if (IsFP) {
3080 unsigned Wt = RegInfo.createVirtualRegister(VecRC);
3081 BuildMI(*BB, MI, DL, TII->get(Mips::SUBREG_TO_REG), Wt)
3082 .addImm(0)
3083 .addReg(SrcValReg)
3084 .addImm(EltSizeInBytes == 8 ? Mips::sub_64 : Mips::sub_lo);
3085 SrcValReg = Wt;
3086 }
3087
3088 // Convert the lane index into a byte index
3089 if (EltSizeInBytes != 1) {
3090 unsigned LaneTmp1 = RegInfo.createVirtualRegister(GPRRC);
3091 BuildMI(*BB, MI, DL, TII->get(Mips::SLL), LaneTmp1)
3092 .addReg(LaneReg)
3093 .addImm(EltLog2Size);
3094 LaneReg = LaneTmp1;
3095 }
3096
3097 // Rotate bytes around so that the desired lane is element zero
3098 unsigned WdTmp1 = RegInfo.createVirtualRegister(VecRC);
3099 BuildMI(*BB, MI, DL, TII->get(Mips::SLD_B), WdTmp1)
3100 .addReg(SrcVecReg)
3101 .addReg(SrcVecReg)
3102 .addReg(LaneReg);
3103
3104 unsigned WdTmp2 = RegInfo.createVirtualRegister(VecRC);
3105 if (IsFP) {
3106 // Use insve.df to insert to element zero
3107 BuildMI(*BB, MI, DL, TII->get(InsveOp), WdTmp2)
3108 .addReg(WdTmp1)
3109 .addImm(0)
3110 .addReg(SrcValReg)
3111 .addImm(0);
3112 } else {
3113 // Use insert.df to insert to element zero
3114 BuildMI(*BB, MI, DL, TII->get(InsertOp), WdTmp2)
3115 .addReg(WdTmp1)
3116 .addReg(SrcValReg)
3117 .addImm(0);
3118 }
3119
3120 // Rotate elements the rest of the way for a full rotation.
3121 // sld.df inteprets $rt modulo the number of columns so we only need to negate
3122 // the lane index to do this.
3123 unsigned LaneTmp2 = RegInfo.createVirtualRegister(GPRRC);
Daniel Sanders4160c802015-05-05 08:48:35 +00003124 BuildMI(*BB, MI, DL, TII->get(Subtarget.isABI_N64() ? Mips::DSUB : Mips::SUB),
3125 LaneTmp2)
3126 .addReg(Subtarget.isABI_N64() ? Mips::ZERO_64 : Mips::ZERO)
Daniel Sanderse296a0f2014-04-30 12:09:32 +00003127 .addReg(LaneReg);
3128 BuildMI(*BB, MI, DL, TII->get(Mips::SLD_B), Wd)
3129 .addReg(WdTmp2)
3130 .addReg(WdTmp2)
3131 .addReg(LaneTmp2);
3132
3133 MI->eraseFromParent(); // The pseudo instruction is gone now.
3134 return BB;
3135}
3136
Daniel Sanders1dfddc72013-10-15 13:14:41 +00003137// Emit the FILL_FW pseudo instruction.
3138//
3139// fill_fw_pseudo $wd, $fs
3140// =>
3141// implicit_def $wt1
3142// insert_subreg $wt2:subreg_lo, $wt1, $fs
3143// splati.w $wd, $wt2[0]
3144MachineBasicBlock *
3145MipsSETargetLowering::emitFILL_FW(MachineInstr *MI,
3146 MachineBasicBlock *BB) const {
Eric Christopher96e72c62015-01-29 23:27:36 +00003147 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sanders1dfddc72013-10-15 13:14:41 +00003148 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
3149 DebugLoc DL = MI->getDebugLoc();
3150 unsigned Wd = MI->getOperand(0).getReg();
3151 unsigned Fs = MI->getOperand(1).getReg();
3152 unsigned Wt1 = RegInfo.createVirtualRegister(&Mips::MSA128WRegClass);
3153 unsigned Wt2 = RegInfo.createVirtualRegister(&Mips::MSA128WRegClass);
3154
3155 BuildMI(*BB, MI, DL, TII->get(Mips::IMPLICIT_DEF), Wt1);
3156 BuildMI(*BB, MI, DL, TII->get(Mips::INSERT_SUBREG), Wt2)
3157 .addReg(Wt1)
3158 .addReg(Fs)
3159 .addImm(Mips::sub_lo);
3160 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_W), Wd).addReg(Wt2).addImm(0);
3161
3162 MI->eraseFromParent(); // The pseudo instruction is gone now.
3163 return BB;
3164}
3165
3166// Emit the FILL_FD pseudo instruction.
3167//
3168// fill_fd_pseudo $wd, $fs
3169// =>
3170// implicit_def $wt1
3171// insert_subreg $wt2:subreg_64, $wt1, $fs
3172// splati.d $wd, $wt2[0]
3173MachineBasicBlock *
3174MipsSETargetLowering::emitFILL_FD(MachineInstr *MI,
3175 MachineBasicBlock *BB) const {
Eric Christopher1c29a652014-07-18 22:55:25 +00003176 assert(Subtarget.isFP64bit());
Daniel Sanders1dfddc72013-10-15 13:14:41 +00003177
Eric Christopher96e72c62015-01-29 23:27:36 +00003178 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sanders1dfddc72013-10-15 13:14:41 +00003179 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
3180 DebugLoc DL = MI->getDebugLoc();
3181 unsigned Wd = MI->getOperand(0).getReg();
3182 unsigned Fs = MI->getOperand(1).getReg();
3183 unsigned Wt1 = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
3184 unsigned Wt2 = RegInfo.createVirtualRegister(&Mips::MSA128DRegClass);
3185
3186 BuildMI(*BB, MI, DL, TII->get(Mips::IMPLICIT_DEF), Wt1);
3187 BuildMI(*BB, MI, DL, TII->get(Mips::INSERT_SUBREG), Wt2)
3188 .addReg(Wt1)
3189 .addReg(Fs)
3190 .addImm(Mips::sub_64);
3191 BuildMI(*BB, MI, DL, TII->get(Mips::SPLATI_D), Wd).addReg(Wt2).addImm(0);
Daniel Sandersa5150702013-09-27 12:31:32 +00003192
3193 MI->eraseFromParent(); // The pseudo instruction is gone now.
3194 return BB;
3195}
Daniel Sandersa9521602013-10-23 10:36:52 +00003196
3197// Emit the FEXP2_W_1 pseudo instructions.
3198//
3199// fexp2_w_1_pseudo $wd, $wt
3200// =>
3201// ldi.w $ws, 1
3202// fexp2.w $wd, $ws, $wt
3203MachineBasicBlock *
3204MipsSETargetLowering::emitFEXP2_W_1(MachineInstr *MI,
3205 MachineBasicBlock *BB) const {
Eric Christopher96e72c62015-01-29 23:27:36 +00003206 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sandersa9521602013-10-23 10:36:52 +00003207 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
3208 const TargetRegisterClass *RC = &Mips::MSA128WRegClass;
3209 unsigned Ws1 = RegInfo.createVirtualRegister(RC);
3210 unsigned Ws2 = RegInfo.createVirtualRegister(RC);
3211 DebugLoc DL = MI->getDebugLoc();
3212
3213 // Splat 1.0 into a vector
3214 BuildMI(*BB, MI, DL, TII->get(Mips::LDI_W), Ws1).addImm(1);
3215 BuildMI(*BB, MI, DL, TII->get(Mips::FFINT_U_W), Ws2).addReg(Ws1);
3216
3217 // Emit 1.0 * fexp2(Wt)
3218 BuildMI(*BB, MI, DL, TII->get(Mips::FEXP2_W), MI->getOperand(0).getReg())
3219 .addReg(Ws2)
3220 .addReg(MI->getOperand(1).getReg());
3221
3222 MI->eraseFromParent(); // The pseudo instruction is gone now.
3223 return BB;
3224}
3225
3226// Emit the FEXP2_D_1 pseudo instructions.
3227//
3228// fexp2_d_1_pseudo $wd, $wt
3229// =>
3230// ldi.d $ws, 1
3231// fexp2.d $wd, $ws, $wt
3232MachineBasicBlock *
3233MipsSETargetLowering::emitFEXP2_D_1(MachineInstr *MI,
3234 MachineBasicBlock *BB) const {
Eric Christopher96e72c62015-01-29 23:27:36 +00003235 const TargetInstrInfo *TII = Subtarget.getInstrInfo();
Daniel Sandersa9521602013-10-23 10:36:52 +00003236 MachineRegisterInfo &RegInfo = BB->getParent()->getRegInfo();
3237 const TargetRegisterClass *RC = &Mips::MSA128DRegClass;
3238 unsigned Ws1 = RegInfo.createVirtualRegister(RC);
3239 unsigned Ws2 = RegInfo.createVirtualRegister(RC);
3240 DebugLoc DL = MI->getDebugLoc();
3241
3242 // Splat 1.0 into a vector
3243 BuildMI(*BB, MI, DL, TII->get(Mips::LDI_D), Ws1).addImm(1);
3244 BuildMI(*BB, MI, DL, TII->get(Mips::FFINT_U_D), Ws2).addReg(Ws1);
3245
3246 // Emit 1.0 * fexp2(Wt)
3247 BuildMI(*BB, MI, DL, TII->get(Mips::FEXP2_D), MI->getOperand(0).getReg())
3248 .addReg(Ws2)
3249 .addReg(MI->getOperand(1).getReg());
3250
3251 MI->eraseFromParent(); // The pseudo instruction is gone now.
3252 return BB;
3253}