blob: 2a113118cf6f0f86a563ffb8c701562c642f3161 [file] [log] [blame]
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001//===-- HexagonISelLowering.cpp - Hexagon DAG Lowering Implementation -----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the interfaces that Hexagon uses to lower LLVM code
11// into a selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#include "HexagonISelLowering.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000016#include "HexagonMachineFunctionInfo.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000017#include "HexagonSubtarget.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "HexagonTargetMachine.h"
19#include "HexagonTargetObjectFile.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000020#include "llvm/CodeGen/CallingConvLower.h"
21#include "llvm/CodeGen/MachineFrameInfo.h"
22#include "llvm/CodeGen/MachineFunction.h"
23#include "llvm/CodeGen/MachineInstrBuilder.h"
Craig Topperb25fda92012-03-17 18:46:09 +000024#include "llvm/CodeGen/MachineJumpTableInfo.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
26#include "llvm/CodeGen/SelectionDAGISel.h"
27#include "llvm/CodeGen/ValueTypes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/CallingConv.h"
29#include "llvm/IR/DerivedTypes.h"
30#include "llvm/IR/Function.h"
31#include "llvm/IR/GlobalAlias.h"
32#include "llvm/IR/GlobalVariable.h"
33#include "llvm/IR/InlineAsm.h"
34#include "llvm/IR/Intrinsics.h"
NAKAMURA Takumi54eed762012-04-21 15:31:36 +000035#include "llvm/Support/CommandLine.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000036#include "llvm/Support/Debug.h"
37#include "llvm/Support/ErrorHandling.h"
NAKAMURA Takumie30303f2012-04-21 15:31:45 +000038#include "llvm/Support/raw_ostream.h"
NAKAMURA Takumi54eed762012-04-21 15:31:36 +000039
Craig Topperb25fda92012-03-17 18:46:09 +000040using namespace llvm;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000041
Chandler Carruthe96dd892014-04-21 22:55:11 +000042#define DEBUG_TYPE "hexagon-lowering"
43
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +000044static cl::opt<bool> EmitJumpTables("hexagon-emit-jump-tables",
45 cl::init(true), cl::Hidden,
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +000046 cl::desc("Control jump table emission on Hexagon target"));
47
48static cl::opt<bool> EnableHexSDNodeSched("enable-hexagon-sdnode-sched",
49 cl::Hidden, cl::ZeroOrMore, cl::init(false),
50 cl::desc("Enable Hexagon SDNode scheduling"));
51
52static cl::opt<bool> EnableFastMath("ffast-math",
53 cl::Hidden, cl::ZeroOrMore, cl::init(false),
54 cl::desc("Enable Fast Math processing"));
55
56static cl::opt<int> MinimumJumpTables("minimum-jump-tables",
57 cl::Hidden, cl::ZeroOrMore, cl::init(5),
58 cl::desc("Set minimum jump tables"));
59
60static cl::opt<int> MaxStoresPerMemcpyCL("max-store-memcpy",
61 cl::Hidden, cl::ZeroOrMore, cl::init(6),
62 cl::desc("Max #stores to inline memcpy"));
63
64static cl::opt<int> MaxStoresPerMemcpyOptSizeCL("max-store-memcpy-Os",
65 cl::Hidden, cl::ZeroOrMore, cl::init(4),
66 cl::desc("Max #stores to inline memcpy"));
67
68static cl::opt<int> MaxStoresPerMemmoveCL("max-store-memmove",
69 cl::Hidden, cl::ZeroOrMore, cl::init(6),
70 cl::desc("Max #stores to inline memmove"));
71
72static cl::opt<int> MaxStoresPerMemmoveOptSizeCL("max-store-memmove-Os",
73 cl::Hidden, cl::ZeroOrMore, cl::init(4),
74 cl::desc("Max #stores to inline memmove"));
75
76static cl::opt<int> MaxStoresPerMemsetCL("max-store-memset",
77 cl::Hidden, cl::ZeroOrMore, cl::init(8),
78 cl::desc("Max #stores to inline memset"));
79
80static cl::opt<int> MaxStoresPerMemsetOptSizeCL("max-store-memset-Os",
81 cl::Hidden, cl::ZeroOrMore, cl::init(4),
82 cl::desc("Max #stores to inline memset"));
83
Tony Linthicum1213a7a2011-12-12 21:14:40 +000084
Benjamin Kramer602bb4a2013-10-27 11:16:09 +000085namespace {
86class HexagonCCState : public CCState {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +000087 unsigned NumNamedVarArgParams;
Benjamin Kramer602bb4a2013-10-27 11:16:09 +000088
89public:
90 HexagonCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
Eric Christopherb5217502014-08-06 18:45:26 +000091 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
92 int NumNamedVarArgParams)
93 : CCState(CC, isVarArg, MF, locs, C),
Benjamin Kramer602bb4a2013-10-27 11:16:09 +000094 NumNamedVarArgParams(NumNamedVarArgParams) {}
95
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +000096 unsigned getNumNamedVarArgParams() const { return NumNamedVarArgParams; }
Benjamin Kramer602bb4a2013-10-27 11:16:09 +000097};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000098}
Tony Linthicum1213a7a2011-12-12 21:14:40 +000099
100// Implement calling convention for Hexagon.
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000101
102static bool IsHvxVectorType(MVT ty);
103
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000104static bool
105CC_Hexagon(unsigned ValNo, MVT ValVT,
106 MVT LocVT, CCValAssign::LocInfo LocInfo,
107 ISD::ArgFlagsTy ArgFlags, CCState &State);
108
109static bool
110CC_Hexagon32(unsigned ValNo, MVT ValVT,
111 MVT LocVT, CCValAssign::LocInfo LocInfo,
112 ISD::ArgFlagsTy ArgFlags, CCState &State);
113
114static bool
115CC_Hexagon64(unsigned ValNo, MVT ValVT,
116 MVT LocVT, CCValAssign::LocInfo LocInfo,
117 ISD::ArgFlagsTy ArgFlags, CCState &State);
118
119static bool
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000120CC_HexagonVector(unsigned ValNo, MVT ValVT,
121 MVT LocVT, CCValAssign::LocInfo LocInfo,
122 ISD::ArgFlagsTy ArgFlags, CCState &State);
123
124static bool
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000125RetCC_Hexagon(unsigned ValNo, MVT ValVT,
126 MVT LocVT, CCValAssign::LocInfo LocInfo,
127 ISD::ArgFlagsTy ArgFlags, CCState &State);
128
129static bool
130RetCC_Hexagon32(unsigned ValNo, MVT ValVT,
131 MVT LocVT, CCValAssign::LocInfo LocInfo,
132 ISD::ArgFlagsTy ArgFlags, CCState &State);
133
134static bool
135RetCC_Hexagon64(unsigned ValNo, MVT ValVT,
136 MVT LocVT, CCValAssign::LocInfo LocInfo,
137 ISD::ArgFlagsTy ArgFlags, CCState &State);
138
139static bool
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000140RetCC_HexagonVector(unsigned ValNo, MVT ValVT,
141 MVT LocVT, CCValAssign::LocInfo LocInfo,
142 ISD::ArgFlagsTy ArgFlags, CCState &State);
143
144static bool
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000145CC_Hexagon_VarArg (unsigned ValNo, MVT ValVT,
146 MVT LocVT, CCValAssign::LocInfo LocInfo,
147 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000148 HexagonCCState &HState = static_cast<HexagonCCState &>(State);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000149
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000150 if (ValNo < HState.getNumNamedVarArgParams()) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000151 // Deal with named arguments.
152 return CC_Hexagon(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State);
153 }
154
155 // Deal with un-named arguments.
156 unsigned ofst;
157 if (ArgFlags.isByVal()) {
158 // If pass-by-value, the size allocated on stack is decided
159 // by ArgFlags.getByValSize(), not by the size of LocVT.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000160 ofst = State.AllocateStack(ArgFlags.getByValSize(),
161 ArgFlags.getByValAlign());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000162 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
163 return false;
164 }
Jyotsna Vermac7dcc2f2013-03-07 20:28:34 +0000165 if (LocVT == MVT::i1 || LocVT == MVT::i8 || LocVT == MVT::i16) {
166 LocVT = MVT::i32;
167 ValVT = MVT::i32;
168 if (ArgFlags.isSExt())
169 LocInfo = CCValAssign::SExt;
170 else if (ArgFlags.isZExt())
171 LocInfo = CCValAssign::ZExt;
172 else
173 LocInfo = CCValAssign::AExt;
174 }
Sirish Pande69295b82012-05-10 20:20:25 +0000175 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000176 ofst = State.AllocateStack(4, 4);
177 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
178 return false;
179 }
Sirish Pande69295b82012-05-10 20:20:25 +0000180 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000181 ofst = State.AllocateStack(8, 8);
182 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
183 return false;
184 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000185 if (LocVT == MVT::v2i64 || LocVT == MVT::v4i32 || LocVT == MVT::v8i16 ||
186 LocVT == MVT::v16i8) {
187 ofst = State.AllocateStack(16, 16);
188 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
189 return false;
190 }
191 if (LocVT == MVT::v4i64 || LocVT == MVT::v8i32 || LocVT == MVT::v16i16 ||
192 LocVT == MVT::v32i8) {
193 ofst = State.AllocateStack(32, 32);
194 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
195 return false;
196 }
197 if (LocVT == MVT::v8i64 || LocVT == MVT::v16i32 || LocVT == MVT::v32i16 ||
198 LocVT == MVT::v64i8 || LocVT == MVT::v512i1) {
199 ofst = State.AllocateStack(64, 64);
200 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
201 return false;
202 }
203 if (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
204 LocVT == MVT::v128i8 || LocVT == MVT::v1024i1) {
205 ofst = State.AllocateStack(128, 128);
206 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
207 return false;
208 }
209 if (LocVT == MVT::v32i64 || LocVT == MVT::v64i32 || LocVT == MVT::v128i16 ||
210 LocVT == MVT::v256i8) {
211 ofst = State.AllocateStack(256, 256);
212 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
213 return false;
214 }
215
Craig Toppere73658d2014-04-28 04:05:08 +0000216 llvm_unreachable(nullptr);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000217}
218
219
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000220static bool CC_Hexagon (unsigned ValNo, MVT ValVT, MVT LocVT,
221 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, CCState &State) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000222 if (ArgFlags.isByVal()) {
223 // Passed on stack.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000224 unsigned Offset = State.AllocateStack(ArgFlags.getByValSize(),
225 ArgFlags.getByValAlign());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000226 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
227 return false;
228 }
229
230 if (LocVT == MVT::i1 || LocVT == MVT::i8 || LocVT == MVT::i16) {
231 LocVT = MVT::i32;
232 ValVT = MVT::i32;
233 if (ArgFlags.isSExt())
234 LocInfo = CCValAssign::SExt;
235 else if (ArgFlags.isZExt())
236 LocInfo = CCValAssign::ZExt;
237 else
238 LocInfo = CCValAssign::AExt;
Krzysztof Parzyszek42113342015-03-19 16:33:08 +0000239 } else if (LocVT == MVT::v4i8 || LocVT == MVT::v2i16) {
240 LocVT = MVT::i32;
241 LocInfo = CCValAssign::BCvt;
242 } else if (LocVT == MVT::v8i8 || LocVT == MVT::v4i16 || LocVT == MVT::v2i32) {
243 LocVT = MVT::i64;
244 LocInfo = CCValAssign::BCvt;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000245 }
246
Sirish Pande69295b82012-05-10 20:20:25 +0000247 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000248 if (!CC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
249 return false;
250 }
251
Sirish Pande69295b82012-05-10 20:20:25 +0000252 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000253 if (!CC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
254 return false;
255 }
256
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000257 if (LocVT == MVT::v8i32 || LocVT == MVT::v16i16 || LocVT == MVT::v32i8) {
258 unsigned Offset = State.AllocateStack(ArgFlags.getByValSize(), 32);
259 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
260 return false;
261 }
262
263 if (IsHvxVectorType(LocVT)) {
264 if (!CC_HexagonVector(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
265 return false;
266 }
267
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000268 return true; // CC didn't match.
269}
270
271
272static bool CC_Hexagon32(unsigned ValNo, MVT ValVT,
273 MVT LocVT, CCValAssign::LocInfo LocInfo,
274 ISD::ArgFlagsTy ArgFlags, CCState &State) {
275
Craig Topper840beec2014-04-04 05:16:06 +0000276 static const MCPhysReg RegList[] = {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000277 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
278 Hexagon::R5
279 };
Tim Northover3b6b7ca2015-02-21 02:11:17 +0000280 if (unsigned Reg = State.AllocateReg(RegList)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000281 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
282 return false;
283 }
284
285 unsigned Offset = State.AllocateStack(4, 4);
286 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
287 return false;
288}
289
290static bool CC_Hexagon64(unsigned ValNo, MVT ValVT,
291 MVT LocVT, CCValAssign::LocInfo LocInfo,
292 ISD::ArgFlagsTy ArgFlags, CCState &State) {
293
294 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
295 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
296 return false;
297 }
298
Craig Topper840beec2014-04-04 05:16:06 +0000299 static const MCPhysReg RegList1[] = {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000300 Hexagon::D1, Hexagon::D2
301 };
Craig Topper840beec2014-04-04 05:16:06 +0000302 static const MCPhysReg RegList2[] = {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000303 Hexagon::R1, Hexagon::R3
304 };
Tim Northover3b6b7ca2015-02-21 02:11:17 +0000305 if (unsigned Reg = State.AllocateReg(RegList1, RegList2)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000306 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
307 return false;
308 }
309
310 unsigned Offset = State.AllocateStack(8, 8, Hexagon::D2);
311 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
312 return false;
313}
314
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000315static bool CC_HexagonVector(unsigned ValNo, MVT ValVT,
316 MVT LocVT, CCValAssign::LocInfo LocInfo,
317 ISD::ArgFlagsTy ArgFlags, CCState &State) {
318
Craig Toppere5e035a32015-12-05 07:13:35 +0000319 static const MCPhysReg VecLstS[] = { Hexagon::V0, Hexagon::V1,
320 Hexagon::V2, Hexagon::V3,
321 Hexagon::V4, Hexagon::V5,
322 Hexagon::V6, Hexagon::V7,
323 Hexagon::V8, Hexagon::V9,
324 Hexagon::V10, Hexagon::V11,
325 Hexagon::V12, Hexagon::V13,
326 Hexagon::V14, Hexagon::V15};
327 static const MCPhysReg VecLstD[] = { Hexagon::W0, Hexagon::W1,
328 Hexagon::W2, Hexagon::W3,
329 Hexagon::W4, Hexagon::W5,
330 Hexagon::W6, Hexagon::W7};
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000331 auto &MF = State.getMachineFunction();
332 auto &HST = MF.getSubtarget<HexagonSubtarget>();
333 bool UseHVX = HST.useHVXOps();
334 bool UseHVXDbl = HST.useHVXDblOps();
335
336 if ((UseHVX && !UseHVXDbl) &&
337 (LocVT == MVT::v8i64 || LocVT == MVT::v16i32 || LocVT == MVT::v32i16 ||
338 LocVT == MVT::v64i8 || LocVT == MVT::v512i1)) {
339 if (unsigned Reg = State.AllocateReg(VecLstS)) {
340 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
341 return false;
342 }
343 unsigned Offset = State.AllocateStack(64, 64);
344 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
345 return false;
346 }
347 if ((UseHVX && !UseHVXDbl) &&
348 (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
349 LocVT == MVT::v128i8)) {
350 if (unsigned Reg = State.AllocateReg(VecLstD)) {
351 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
352 return false;
353 }
354 unsigned Offset = State.AllocateStack(128, 128);
355 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
356 return false;
357 }
358 // 128B Mode
359 if ((UseHVX && UseHVXDbl) &&
360 (LocVT == MVT::v32i64 || LocVT == MVT::v64i32 || LocVT == MVT::v128i16 ||
361 LocVT == MVT::v256i8)) {
362 if (unsigned Reg = State.AllocateReg(VecLstD)) {
363 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
364 return false;
365 }
366 unsigned Offset = State.AllocateStack(256, 256);
367 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
368 return false;
369 }
370 if ((UseHVX && UseHVXDbl) &&
371 (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
372 LocVT == MVT::v128i8 || LocVT == MVT::v1024i1)) {
373 if (unsigned Reg = State.AllocateReg(VecLstS)) {
374 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
375 return false;
376 }
377 unsigned Offset = State.AllocateStack(128, 128);
378 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
379 return false;
380 }
381 return true;
382}
383
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000384static bool RetCC_Hexagon(unsigned ValNo, MVT ValVT,
385 MVT LocVT, CCValAssign::LocInfo LocInfo,
386 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000387 auto &MF = State.getMachineFunction();
388 auto &HST = MF.getSubtarget<HexagonSubtarget>();
389 bool UseHVX = HST.useHVXOps();
390 bool UseHVXDbl = HST.useHVXDblOps();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000391
392 if (LocVT == MVT::i1 ||
393 LocVT == MVT::i8 ||
394 LocVT == MVT::i16) {
395 LocVT = MVT::i32;
396 ValVT = MVT::i32;
397 if (ArgFlags.isSExt())
398 LocInfo = CCValAssign::SExt;
399 else if (ArgFlags.isZExt())
400 LocInfo = CCValAssign::ZExt;
401 else
402 LocInfo = CCValAssign::AExt;
Krzysztof Parzyszek42113342015-03-19 16:33:08 +0000403 } else if (LocVT == MVT::v4i8 || LocVT == MVT::v2i16) {
404 LocVT = MVT::i32;
405 LocInfo = CCValAssign::BCvt;
406 } else if (LocVT == MVT::v8i8 || LocVT == MVT::v4i16 || LocVT == MVT::v2i32) {
407 LocVT = MVT::i64;
408 LocInfo = CCValAssign::BCvt;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000409 } else if (LocVT == MVT::v64i8 || LocVT == MVT::v32i16 ||
410 LocVT == MVT::v16i32 || LocVT == MVT::v8i64 ||
411 LocVT == MVT::v512i1) {
412 LocVT = MVT::v16i32;
413 ValVT = MVT::v16i32;
414 LocInfo = CCValAssign::Full;
415 } else if (LocVT == MVT::v128i8 || LocVT == MVT::v64i16 ||
416 LocVT == MVT::v32i32 || LocVT == MVT::v16i64 ||
417 (LocVT == MVT::v1024i1 && UseHVX && UseHVXDbl)) {
418 LocVT = MVT::v32i32;
419 ValVT = MVT::v32i32;
420 LocInfo = CCValAssign::Full;
421 } else if (LocVT == MVT::v256i8 || LocVT == MVT::v128i16 ||
422 LocVT == MVT::v64i32 || LocVT == MVT::v32i64) {
423 LocVT = MVT::v64i32;
424 ValVT = MVT::v64i32;
425 LocInfo = CCValAssign::Full;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000426 }
Sirish Pande69295b82012-05-10 20:20:25 +0000427 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000428 if (!RetCC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
429 return false;
430 }
431
Sirish Pande69295b82012-05-10 20:20:25 +0000432 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000433 if (!RetCC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
434 return false;
435 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000436 if (LocVT == MVT::v16i32 || LocVT == MVT::v32i32 || LocVT == MVT::v64i32) {
437 if (!RetCC_HexagonVector(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
438 return false;
439 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000440 return true; // CC didn't match.
441}
442
443static bool RetCC_Hexagon32(unsigned ValNo, MVT ValVT,
444 MVT LocVT, CCValAssign::LocInfo LocInfo,
445 ISD::ArgFlagsTy ArgFlags, CCState &State) {
446
Sirish Pande69295b82012-05-10 20:20:25 +0000447 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000448 if (unsigned Reg = State.AllocateReg(Hexagon::R0)) {
449 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
450 return false;
451 }
452 }
453
454 unsigned Offset = State.AllocateStack(4, 4);
455 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
456 return false;
457}
458
459static bool RetCC_Hexagon64(unsigned ValNo, MVT ValVT,
460 MVT LocVT, CCValAssign::LocInfo LocInfo,
461 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Sirish Pande69295b82012-05-10 20:20:25 +0000462 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000463 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
464 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
465 return false;
466 }
467 }
468
469 unsigned Offset = State.AllocateStack(8, 8);
470 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
471 return false;
472}
473
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000474static bool RetCC_HexagonVector(unsigned ValNo, MVT ValVT,
475 MVT LocVT, CCValAssign::LocInfo LocInfo,
476 ISD::ArgFlagsTy ArgFlags, CCState &State) {
477 auto &MF = State.getMachineFunction();
478 auto &HST = MF.getSubtarget<HexagonSubtarget>();
479 bool UseHVX = HST.useHVXOps();
480 bool UseHVXDbl = HST.useHVXDblOps();
481
482 unsigned OffSiz = 64;
483 if (LocVT == MVT::v16i32) {
484 if (unsigned Reg = State.AllocateReg(Hexagon::V0)) {
485 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
486 return false;
487 }
488 } else if (LocVT == MVT::v32i32) {
489 unsigned Req = (UseHVX && UseHVXDbl) ? Hexagon::V0 : Hexagon::W0;
490 if (unsigned Reg = State.AllocateReg(Req)) {
491 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
492 return false;
493 }
494 OffSiz = 128;
495 } else if (LocVT == MVT::v64i32) {
496 if (unsigned Reg = State.AllocateReg(Hexagon::W0)) {
497 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
498 return false;
499 }
500 OffSiz = 256;
501 }
502
503 unsigned Offset = State.AllocateStack(OffSiz, OffSiz);
504 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
505 return false;
506}
507
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000508void HexagonTargetLowering::promoteLdStType(EVT VT, EVT PromotedLdStVT) {
509 if (VT != PromotedLdStVT) {
510 setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
511 AddPromotedToType(ISD::LOAD, VT.getSimpleVT(),
512 PromotedLdStVT.getSimpleVT());
513
514 setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
515 AddPromotedToType(ISD::STORE, VT.getSimpleVT(),
516 PromotedLdStVT.getSimpleVT());
517 }
518}
519
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000520SDValue
521HexagonTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG)
522const {
523 return SDValue();
524}
525
526/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
527/// by "Src" to address "Dst" of size "Size". Alignment information is
528/// specified by the specific parameter attribute. The copy will be passed as
529/// a byval function parameter. Sometimes what we are copying is the end of a
530/// larger object, the part that does not fit in registers.
531static SDValue
532CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
533 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000534 SDLoc dl) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000535
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000536 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000537 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
538 /*isVolatile=*/false, /*AlwaysInline=*/false,
Krzysztof Parzyszeka46c36b2015-04-13 17:16:45 +0000539 /*isTailCall=*/false,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000540 MachinePointerInfo(), MachinePointerInfo());
541}
542
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000543static bool IsHvxVectorType(MVT ty) {
544 return (ty == MVT::v8i64 || ty == MVT::v16i32 || ty == MVT::v32i16 ||
545 ty == MVT::v64i8 ||
546 ty == MVT::v16i64 || ty == MVT::v32i32 || ty == MVT::v64i16 ||
547 ty == MVT::v128i8 ||
548 ty == MVT::v32i64 || ty == MVT::v64i32 || ty == MVT::v128i16 ||
549 ty == MVT::v256i8 ||
550 ty == MVT::v512i1 || ty == MVT::v1024i1);
551}
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000552
553// LowerReturn - Lower ISD::RET. If a struct is larger than 8 bytes and is
554// passed by value, the function prototype is modified to return void and
555// the value is stored in memory pointed by a pointer passed by caller.
556SDValue
557HexagonTargetLowering::LowerReturn(SDValue Chain,
558 CallingConv::ID CallConv, bool isVarArg,
559 const SmallVectorImpl<ISD::OutputArg> &Outs,
560 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000561 SDLoc dl, SelectionDAG &DAG) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000562
563 // CCValAssign - represent the assignment of the return value to locations.
564 SmallVector<CCValAssign, 16> RVLocs;
565
566 // CCState - Info about the registers and stack slot.
Eric Christopherb5217502014-08-06 18:45:26 +0000567 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
568 *DAG.getContext());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000569
570 // Analyze return values of ISD::RET
571 CCInfo.AnalyzeReturn(Outs, RetCC_Hexagon);
572
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000573 SDValue Flag;
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000574 SmallVector<SDValue, 4> RetOps(1, Chain);
575
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000576 // Copy the result values into the output registers.
577 for (unsigned i = 0; i != RVLocs.size(); ++i) {
578 CCValAssign &VA = RVLocs[i];
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000579
580 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
581
582 // Guarantee that all emitted copies are stuck together with flags.
583 Flag = Chain.getValue(1);
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000584 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000585 }
586
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000587 RetOps[0] = Chain; // Update chain.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000588
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000589 // Add the flag if we have it.
590 if (Flag.getNode())
591 RetOps.push_back(Flag);
592
Craig Topper48d114b2014-04-26 18:35:24 +0000593 return DAG.getNode(HexagonISD::RET_FLAG, dl, MVT::Other, RetOps);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000594}
595
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000596bool HexagonTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
597 // If either no tail call or told not to tail call at all, don't.
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000598 auto Attr =
599 CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
600 if (!CI->isTailCall() || Attr.getValueAsString() == "true")
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000601 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000602
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000603 return true;
604}
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000605
606/// LowerCallResult - Lower the result values of an ISD::CALL into the
607/// appropriate copies out of appropriate physical registers. This assumes that
608/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
609/// being lowered. Returns a SDNode with the same number of values as the
610/// ISD::CALL.
611SDValue
612HexagonTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
613 CallingConv::ID CallConv, bool isVarArg,
614 const
615 SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +0000616 SDLoc dl, SelectionDAG &DAG,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000617 SmallVectorImpl<SDValue> &InVals,
618 const SmallVectorImpl<SDValue> &OutVals,
619 SDValue Callee) const {
620
621 // Assign locations to each value returned by this call.
622 SmallVector<CCValAssign, 16> RVLocs;
623
Eric Christopherb5217502014-08-06 18:45:26 +0000624 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
625 *DAG.getContext());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000626
627 CCInfo.AnalyzeCallResult(Ins, RetCC_Hexagon);
628
629 // Copy all of the result registers out of their specified physreg.
630 for (unsigned i = 0; i != RVLocs.size(); ++i) {
631 Chain = DAG.getCopyFromReg(Chain, dl,
632 RVLocs[i].getLocReg(),
633 RVLocs[i].getValVT(), InFlag).getValue(1);
634 InFlag = Chain.getValue(2);
635 InVals.push_back(Chain.getValue(0));
636 }
637
638 return Chain;
639}
640
641/// LowerCall - Functions arguments are copied from virtual regs to
642/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
643SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +0000644HexagonTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000645 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +0000646 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +0000647 SDLoc &dl = CLI.DL;
648 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
649 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
650 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +0000651 SDValue Chain = CLI.Chain;
652 SDValue Callee = CLI.Callee;
653 bool &isTailCall = CLI.IsTailCall;
654 CallingConv::ID CallConv = CLI.CallConv;
655 bool isVarArg = CLI.IsVarArg;
Colin LeMahieu2e3a26d2015-01-16 17:05:27 +0000656 bool doesNotReturn = CLI.DoesNotReturn;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000657
658 bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000659 MachineFunction &MF = DAG.getMachineFunction();
Mehdi Amini44ede332015-07-09 02:09:04 +0000660 auto PtrVT = getPointerTy(MF.getDataLayout());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000661
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000662 // Check for varargs.
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000663 int NumNamedVarArgParams = -1;
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000664 if (GlobalAddressSDNode *GAN = dyn_cast<GlobalAddressSDNode>(Callee)) {
665 const GlobalValue *GV = GAN->getGlobal();
666 Callee = DAG.getTargetGlobalAddress(GV, dl, MVT::i32);
667 if (const Function* F = dyn_cast<Function>(GV)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000668 // If a function has zero args and is a vararg function, that's
669 // disallowed so it must be an undeclared function. Do not assume
670 // varargs if the callee is undefined.
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000671 if (F->isVarArg() && F->getFunctionType()->getNumParams() != 0)
672 NumNamedVarArgParams = F->getFunctionType()->getNumParams();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000673 }
674 }
675
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000676 // Analyze operands of the call, assigning locations to each operand.
677 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +0000678 HexagonCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
679 *DAG.getContext(), NumNamedVarArgParams);
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000680
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000681 if (isVarArg)
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000682 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon_VarArg);
683 else
684 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon);
685
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000686 auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
687 if (Attr.getValueAsString() == "true")
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000688 isTailCall = false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000689
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000690 if (isTailCall) {
691 bool StructAttrFlag = MF.getFunction()->hasStructRetAttr();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000692 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
693 isVarArg, IsStructRet,
694 StructAttrFlag,
695 Outs, OutVals, Ins, DAG);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000696 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000697 CCValAssign &VA = ArgLocs[i];
698 if (VA.isMemLoc()) {
699 isTailCall = false;
700 break;
701 }
702 }
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000703 DEBUG(dbgs() << (isTailCall ? "Eligible for Tail Call\n"
704 : "Argument must be passed on stack. "
705 "Not eligible for Tail Call\n"));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000706 }
707 // Get a count of how many bytes are to be pushed on the stack.
708 unsigned NumBytes = CCInfo.getNextStackOffset();
709 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
710 SmallVector<SDValue, 8> MemOpChains;
711
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000712 auto &HRI = *Subtarget.getRegisterInfo();
Mehdi Amini44ede332015-07-09 02:09:04 +0000713 SDValue StackPtr =
714 DAG.getCopyFromReg(Chain, dl, HRI.getStackRegister(), PtrVT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000715
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000716 bool NeedsArgAlign = false;
717 unsigned LargestAlignSeen = 0;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000718 // Walk the register/memloc assignments, inserting copies/loads.
719 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
720 CCValAssign &VA = ArgLocs[i];
721 SDValue Arg = OutVals[i];
722 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000723 // Record if we need > 8 byte alignment on an argument.
724 bool ArgAlign = IsHvxVectorType(VA.getValVT());
725 NeedsArgAlign |= ArgAlign;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000726
727 // Promote the value if needed.
728 switch (VA.getLocInfo()) {
729 default:
730 // Loc info must be one of Full, SExt, ZExt, or AExt.
Craig Toppere55c5562012-02-07 02:50:20 +0000731 llvm_unreachable("Unknown loc info!");
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000732 case CCValAssign::BCvt:
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000733 case CCValAssign::Full:
734 break;
735 case CCValAssign::SExt:
736 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
737 break;
738 case CCValAssign::ZExt:
739 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
740 break;
741 case CCValAssign::AExt:
742 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
743 break;
744 }
745
746 if (VA.isMemLoc()) {
747 unsigned LocMemOffset = VA.getLocMemOffset();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000748 SDValue MemAddr = DAG.getConstant(LocMemOffset, dl,
749 StackPtr.getValueType());
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000750 MemAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, MemAddr);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000751 if (ArgAlign)
752 LargestAlignSeen = std::max(LargestAlignSeen,
753 VA.getLocVT().getStoreSizeInBits() >> 3);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000754 if (Flags.isByVal()) {
755 // The argument is a struct passed by value. According to LLVM, "Arg"
756 // is is pointer.
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000757 MemOpChains.push_back(CreateCopyOfByValArgument(Arg, MemAddr, Chain,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000758 Flags, DAG, dl));
759 } else {
Alex Lorenze40c8a22015-08-11 23:09:45 +0000760 MachinePointerInfo LocPI = MachinePointerInfo::getStack(
761 DAG.getMachineFunction(), LocMemOffset);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000762 SDValue S = DAG.getStore(Chain, dl, Arg, MemAddr, LocPI, false,
763 false, 0);
764 MemOpChains.push_back(S);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000765 }
766 continue;
767 }
768
769 // Arguments that can be passed on register must be kept at RegsToPass
770 // vector.
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000771 if (VA.isRegLoc())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000772 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000773 }
774
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000775 if (NeedsArgAlign && Subtarget.hasV60TOps()) {
776 DEBUG(dbgs() << "Function needs byte stack align due to call args\n");
777 MachineFrameInfo* MFI = DAG.getMachineFunction().getFrameInfo();
778 // V6 vectors passed by value have 64 or 128 byte alignment depending
779 // on whether we are 64 byte vector mode or 128 byte.
780 bool UseHVXDbl = Subtarget.useHVXDblOps();
781 assert(Subtarget.useHVXOps());
782 const unsigned ObjAlign = UseHVXDbl ? 128 : 64;
783 LargestAlignSeen = std::max(LargestAlignSeen, ObjAlign);
784 MFI->ensureMaxAlignment(LargestAlignSeen);
785 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000786 // Transform all store nodes into one single node because all store
787 // nodes are independent of each other.
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000788 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +0000789 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000790
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000791 if (!isTailCall) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000792 SDValue C = DAG.getConstant(NumBytes, dl, PtrVT, true);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000793 Chain = DAG.getCALLSEQ_START(Chain, C, dl);
794 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000795
796 // Build a sequence of copy-to-reg nodes chained together with token
797 // chain and flag operands which copy the outgoing args into registers.
Benjamin Kramerbde91762012-06-02 10:20:22 +0000798 // The InFlag in necessary since all emitted instructions must be
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000799 // stuck together.
800 SDValue InFlag;
801 if (!isTailCall) {
802 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
803 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
804 RegsToPass[i].second, InFlag);
805 InFlag = Chain.getValue(1);
806 }
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000807 } else {
808 // For tail calls lower the arguments to the 'real' stack slot.
809 //
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000810 // Force all the incoming stack arguments to be loaded from the stack
811 // before any new outgoing arguments are stored to the stack, because the
812 // outgoing stack slots may alias the incoming argument stack slots, and
813 // the alias isn't otherwise explicit. This is slightly more conservative
814 // than necessary, because it means that each store effectively depends
815 // on every argument instead of just those arguments it would clobber.
816 //
Benjamin Kramerbde91762012-06-02 10:20:22 +0000817 // Do not flag preceding copytoreg stuff together with the following stuff.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000818 InFlag = SDValue();
819 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
820 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
821 RegsToPass[i].second, InFlag);
822 InFlag = Chain.getValue(1);
823 }
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000824 InFlag = SDValue();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000825 }
826
827 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
828 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
829 // node so that legalize doesn't hack it.
Tobias Edler von Kochb51460c2015-12-16 17:29:37 +0000830 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000831 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, PtrVT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000832 } else if (ExternalSymbolSDNode *S =
833 dyn_cast<ExternalSymbolSDNode>(Callee)) {
Mehdi Amini44ede332015-07-09 02:09:04 +0000834 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), PtrVT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000835 }
836
837 // Returns a chain & a flag for retval copy to use.
838 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
839 SmallVector<SDValue, 8> Ops;
840 Ops.push_back(Chain);
841 Ops.push_back(Callee);
842
843 // Add argument registers to the end of the list so that they are
844 // known live into the call.
845 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
846 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
847 RegsToPass[i].second.getValueType()));
848 }
849
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000850 if (InFlag.getNode())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000851 Ops.push_back(InFlag);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000852
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +0000853 if (isTailCall) {
854 MF.getFrameInfo()->setHasTailCall();
Craig Topper48d114b2014-04-26 18:35:24 +0000855 return DAG.getNode(HexagonISD::TC_RETURN, dl, NodeTys, Ops);
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +0000856 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000857
Colin LeMahieu2e3a26d2015-01-16 17:05:27 +0000858 int OpCode = doesNotReturn ? HexagonISD::CALLv3nr : HexagonISD::CALLv3;
859 Chain = DAG.getNode(OpCode, dl, NodeTys, Ops);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000860 InFlag = Chain.getValue(1);
861
862 // Create the CALLSEQ_END node.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000863 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
864 DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000865 InFlag = Chain.getValue(1);
866
867 // Handle result values, copying them out of physregs into vregs that we
868 // return.
869 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
870 InVals, OutVals, Callee);
871}
872
873static bool getIndexedAddressParts(SDNode *Ptr, EVT VT,
874 bool isSEXTLoad, SDValue &Base,
875 SDValue &Offset, bool &isInc,
876 SelectionDAG &DAG) {
877 if (Ptr->getOpcode() != ISD::ADD)
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000878 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000879
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000880 auto &HST = static_cast<const HexagonSubtarget&>(DAG.getSubtarget());
881 bool UseHVX = HST.useHVXOps();
882 bool UseHVXDbl = HST.useHVXDblOps();
883
884 bool ValidHVXDblType =
885 (UseHVX && UseHVXDbl) && (VT == MVT::v32i32 || VT == MVT::v16i64 ||
886 VT == MVT::v64i16 || VT == MVT::v128i8);
887 bool ValidHVXType =
888 UseHVX && !UseHVXDbl && (VT == MVT::v16i32 || VT == MVT::v8i64 ||
889 VT == MVT::v32i16 || VT == MVT::v64i8);
890
891 if (ValidHVXDblType || ValidHVXType ||
892 VT == MVT::i64 || VT == MVT::i32 || VT == MVT::i16 || VT == MVT::i8) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000893 isInc = (Ptr->getOpcode() == ISD::ADD);
894 Base = Ptr->getOperand(0);
895 Offset = Ptr->getOperand(1);
896 // Ensure that Offset is a constant.
897 return (isa<ConstantSDNode>(Offset));
898 }
899
900 return false;
901}
902
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000903/// getPostIndexedAddressParts - returns true by value, base pointer and
904/// offset pointer and addressing mode by reference if this node can be
905/// combined with a load / store to form a post-indexed load / store.
906bool HexagonTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
907 SDValue &Base,
908 SDValue &Offset,
909 ISD::MemIndexedMode &AM,
910 SelectionDAG &DAG) const
911{
912 EVT VT;
913 SDValue Ptr;
914 bool isSEXTLoad = false;
915
916 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
917 VT = LD->getMemoryVT();
918 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
919 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
920 VT = ST->getMemoryVT();
921 if (ST->getValue().getValueType() == MVT::i64 && ST->isTruncatingStore()) {
922 return false;
923 }
924 } else {
925 return false;
926 }
927
Chad Rosier64dc8aa2012-01-06 20:11:59 +0000928 bool isInc = false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000929 bool isLegal = getIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
930 isInc, DAG);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000931 if (isLegal) {
932 auto &HII = *Subtarget.getInstrInfo();
933 int32_t OffsetVal = cast<ConstantSDNode>(Offset.getNode())->getSExtValue();
934 if (HII.isValidAutoIncImm(VT, OffsetVal)) {
935 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
936 return true;
937 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000938 }
939
940 return false;
941}
942
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000943SDValue
944HexagonTargetLowering::LowerINLINEASM(SDValue Op, SelectionDAG &DAG) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000945 SDNode *Node = Op.getNode();
946 MachineFunction &MF = DAG.getMachineFunction();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000947 auto &FuncInfo = *MF.getInfo<HexagonMachineFunctionInfo>();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000948 switch (Node->getOpcode()) {
949 case ISD::INLINEASM: {
950 unsigned NumOps = Node->getNumOperands();
951 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
952 --NumOps; // Ignore the flag operand.
953
954 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000955 if (FuncInfo.hasClobberLR())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000956 break;
957 unsigned Flags =
958 cast<ConstantSDNode>(Node->getOperand(i))->getZExtValue();
959 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
960 ++i; // Skip the ID value.
961
962 switch (InlineAsm::getKind(Flags)) {
963 default: llvm_unreachable("Bad flags!");
964 case InlineAsm::Kind_RegDef:
965 case InlineAsm::Kind_RegUse:
966 case InlineAsm::Kind_Imm:
967 case InlineAsm::Kind_Clobber:
968 case InlineAsm::Kind_Mem: {
969 for (; NumVals; --NumVals, ++i) {}
970 break;
971 }
972 case InlineAsm::Kind_RegDefEarlyClobber: {
973 for (; NumVals; --NumVals, ++i) {
974 unsigned Reg =
975 cast<RegisterSDNode>(Node->getOperand(i))->getReg();
976
977 // Check it to be lr
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000978 const HexagonRegisterInfo *QRI = Subtarget.getRegisterInfo();
Eric Christopherdbe1cb02014-06-27 00:13:52 +0000979 if (Reg == QRI->getRARegister()) {
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000980 FuncInfo.setHasClobberLR(true);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000981 break;
982 }
983 }
984 break;
985 }
986 }
987 }
988 }
989 } // Node->getOpcode
990 return Op;
991}
992
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +0000993// Need to transform ISD::PREFETCH into something that doesn't inherit
994// all of the properties of ISD::PREFETCH, specifically SDNPMayLoad and
995// SDNPMayStore.
996SDValue HexagonTargetLowering::LowerPREFETCH(SDValue Op,
997 SelectionDAG &DAG) const {
998 SDValue Chain = Op.getOperand(0);
999 SDValue Addr = Op.getOperand(1);
1000 // Lower it to DCFETCH($reg, #0). A "pat" will try to merge the offset in,
1001 // if the "reg" is fed by an "add".
1002 SDLoc DL(Op);
1003 SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
1004 return DAG.getNode(HexagonISD::DCFETCH, DL, MVT::Other, Chain, Addr, Zero);
1005}
1006
1007SDValue HexagonTargetLowering::LowerINTRINSIC_VOID(SDValue Op,
1008 SelectionDAG &DAG) const {
1009 SDValue Chain = Op.getOperand(0);
1010 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1011 // Lower the hexagon_prefetch builtin to DCFETCH, as above.
1012 if (IntNo == Intrinsic::hexagon_prefetch) {
1013 SDValue Addr = Op.getOperand(2);
1014 SDLoc DL(Op);
1015 SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
1016 return DAG.getNode(HexagonISD::DCFETCH, DL, MVT::Other, Chain, Addr, Zero);
1017 }
1018 return SDValue();
1019}
1020
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001021SDValue
1022HexagonTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
1023 SelectionDAG &DAG) const {
1024 SDValue Chain = Op.getOperand(0);
1025 SDValue Size = Op.getOperand(1);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001026 SDValue Align = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001027 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001028
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001029 ConstantSDNode *AlignConst = dyn_cast<ConstantSDNode>(Align);
1030 assert(AlignConst && "Non-constant Align in LowerDYNAMIC_STACKALLOC");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001031
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001032 unsigned A = AlignConst->getSExtValue();
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001033 auto &HFI = *Subtarget.getFrameLowering();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001034 // "Zero" means natural stack alignment.
1035 if (A == 0)
1036 A = HFI.getStackAlignment();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001037
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001038 DEBUG({
Krzysztof Parzyszek9ee04e42015-04-22 17:19:44 +00001039 dbgs () << LLVM_FUNCTION_NAME << " Align: " << A << " Size: ";
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001040 Size.getNode()->dump(&DAG);
1041 dbgs() << "\n";
1042 });
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001043
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001044 SDValue AC = DAG.getConstant(A, dl, MVT::i32);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001045 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
Krzysztof Parzyszek23920ec2015-10-19 18:30:27 +00001046 SDValue AA = DAG.getNode(HexagonISD::ALLOCA, dl, VTs, Chain, Size, AC);
1047 if (Op.getNode()->getHasDebugValue())
1048 DAG.TransferDbgValues(Op, AA);
1049 return AA;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001050}
1051
1052SDValue
1053HexagonTargetLowering::LowerFormalArguments(SDValue Chain,
1054 CallingConv::ID CallConv,
1055 bool isVarArg,
1056 const
1057 SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001058 SDLoc dl, SelectionDAG &DAG,
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001059 SmallVectorImpl<SDValue> &InVals)
1060const {
1061
1062 MachineFunction &MF = DAG.getMachineFunction();
1063 MachineFrameInfo *MFI = MF.getFrameInfo();
1064 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001065 auto &FuncInfo = *MF.getInfo<HexagonMachineFunctionInfo>();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001066
1067 // Assign locations to all of the incoming arguments.
1068 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001069 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
1070 *DAG.getContext());
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001071
1072 CCInfo.AnalyzeFormalArguments(Ins, CC_Hexagon);
1073
1074 // For LLVM, in the case when returning a struct by value (>8byte),
1075 // the first argument is a pointer that points to the location on caller's
1076 // stack where the return value will be stored. For Hexagon, the location on
1077 // caller's stack is passed only when the struct size is smaller than (and
1078 // equal to) 8 bytes. If not, no address will be passed into callee and
1079 // callee return the result direclty through R0/R1.
1080
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001081 SmallVector<SDValue, 8> MemOps;
1082 bool UseHVX = Subtarget.useHVXOps(), UseHVXDbl = Subtarget.useHVXDblOps();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001083
1084 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1085 CCValAssign &VA = ArgLocs[i];
1086 ISD::ArgFlagsTy Flags = Ins[i].Flags;
1087 unsigned ObjSize;
1088 unsigned StackLocation;
1089 int FI;
1090
1091 if ( (VA.isRegLoc() && !Flags.isByVal())
1092 || (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() > 8)) {
1093 // Arguments passed in registers
1094 // 1. int, long long, ptr args that get allocated in register.
1095 // 2. Large struct that gets an register to put its address in.
1096 EVT RegVT = VA.getLocVT();
Sirish Pande69295b82012-05-10 20:20:25 +00001097 if (RegVT == MVT::i8 || RegVT == MVT::i16 ||
1098 RegVT == MVT::i32 || RegVT == MVT::f32) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001099 unsigned VReg =
Craig Topperc7242e02012-04-20 07:30:17 +00001100 RegInfo.createVirtualRegister(&Hexagon::IntRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001101 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1102 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
Colin LeMahieu4379d102015-01-28 22:08:16 +00001103 } else if (RegVT == MVT::i64 || RegVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001104 unsigned VReg =
Craig Topperc7242e02012-04-20 07:30:17 +00001105 RegInfo.createVirtualRegister(&Hexagon::DoubleRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001106 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1107 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001108
1109 // Single Vector
1110 } else if ((RegVT == MVT::v8i64 || RegVT == MVT::v16i32 ||
1111 RegVT == MVT::v32i16 || RegVT == MVT::v64i8)) {
1112 unsigned VReg =
1113 RegInfo.createVirtualRegister(&Hexagon::VectorRegsRegClass);
1114 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1115 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1116 } else if (UseHVX && UseHVXDbl &&
1117 ((RegVT == MVT::v16i64 || RegVT == MVT::v32i32 ||
1118 RegVT == MVT::v64i16 || RegVT == MVT::v128i8))) {
1119 unsigned VReg =
1120 RegInfo.createVirtualRegister(&Hexagon::VectorRegs128BRegClass);
1121 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1122 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1123
1124 // Double Vector
1125 } else if ((RegVT == MVT::v16i64 || RegVT == MVT::v32i32 ||
1126 RegVT == MVT::v64i16 || RegVT == MVT::v128i8)) {
1127 unsigned VReg =
1128 RegInfo.createVirtualRegister(&Hexagon::VecDblRegsRegClass);
1129 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1130 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1131 } else if (UseHVX && UseHVXDbl &&
1132 ((RegVT == MVT::v32i64 || RegVT == MVT::v64i32 ||
1133 RegVT == MVT::v128i16 || RegVT == MVT::v256i8))) {
1134 unsigned VReg =
1135 RegInfo.createVirtualRegister(&Hexagon::VecDblRegs128BRegClass);
1136 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1137 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1138 } else if (RegVT == MVT::v512i1 || RegVT == MVT::v1024i1) {
1139 assert(0 && "need to support VecPred regs");
1140 unsigned VReg =
1141 RegInfo.createVirtualRegister(&Hexagon::VecPredRegsRegClass);
1142 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1143 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001144 } else {
1145 assert (0);
1146 }
1147 } else if (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() <= 8) {
1148 assert (0 && "ByValSize must be bigger than 8 bytes");
1149 } else {
1150 // Sanity check.
1151 assert(VA.isMemLoc());
1152
1153 if (Flags.isByVal()) {
1154 // If it's a byval parameter, then we need to compute the
1155 // "real" size, not the size of the pointer.
1156 ObjSize = Flags.getByValSize();
1157 } else {
1158 ObjSize = VA.getLocVT().getStoreSizeInBits() >> 3;
1159 }
1160
1161 StackLocation = HEXAGON_LRFP_SIZE + VA.getLocMemOffset();
1162 // Create the frame index object for this incoming parameter...
1163 FI = MFI->CreateFixedObject(ObjSize, StackLocation, true);
1164
1165 // Create the SelectionDAG nodes cordl, responding to a load
1166 // from this parameter.
1167 SDValue FIN = DAG.getFrameIndex(FI, MVT::i32);
1168
1169 if (Flags.isByVal()) {
1170 // If it's a pass-by-value aggregate, then do not dereference the stack
1171 // location. Instead, we should generate a reference to the stack
1172 // location.
1173 InVals.push_back(FIN);
1174 } else {
1175 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
1176 MachinePointerInfo(), false, false,
1177 false, 0));
1178 }
1179 }
1180 }
1181
1182 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00001183 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001184
1185 if (isVarArg) {
1186 // This will point to the next argument passed via stack.
1187 int FrameIndex = MFI->CreateFixedObject(Hexagon_PointerSize,
1188 HEXAGON_LRFP_SIZE +
1189 CCInfo.getNextStackOffset(),
1190 true);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001191 FuncInfo.setVarArgsFrameIndex(FrameIndex);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001192 }
1193
1194 return Chain;
1195}
1196
1197SDValue
1198HexagonTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
1199 // VASTART stores the address of the VarArgsFrameIndex slot into the
1200 // memory location argument.
1201 MachineFunction &MF = DAG.getMachineFunction();
1202 HexagonMachineFunctionInfo *QFI = MF.getInfo<HexagonMachineFunctionInfo>();
1203 SDValue Addr = DAG.getFrameIndex(QFI->getVarArgsFrameIndex(), MVT::i32);
1204 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001205 return DAG.getStore(Op.getOperand(0), SDLoc(Op), Addr,
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001206 Op.getOperand(1), MachinePointerInfo(SV), false,
1207 false, 0);
1208}
1209
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001210// Creates a SPLAT instruction for a constant value VAL.
1211static SDValue createSplat(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue Val) {
1212 if (VT.getSimpleVT() == MVT::v4i8)
1213 return DAG.getNode(HexagonISD::VSPLATB, dl, VT, Val);
1214
1215 if (VT.getSimpleVT() == MVT::v4i16)
1216 return DAG.getNode(HexagonISD::VSPLATH, dl, VT, Val);
1217
1218 return SDValue();
1219}
1220
1221static bool isSExtFree(SDValue N) {
1222 // A sign-extend of a truncate of a sign-extend is free.
1223 if (N.getOpcode() == ISD::TRUNCATE &&
1224 N.getOperand(0).getOpcode() == ISD::AssertSext)
1225 return true;
1226 // We have sign-extended loads.
1227 if (N.getOpcode() == ISD::LOAD)
1228 return true;
1229 return false;
1230}
1231
1232SDValue HexagonTargetLowering::LowerCTPOP(SDValue Op, SelectionDAG &DAG) const {
1233 SDLoc dl(Op);
1234 SDValue InpVal = Op.getOperand(0);
1235 if (isa<ConstantSDNode>(InpVal)) {
1236 uint64_t V = cast<ConstantSDNode>(InpVal)->getZExtValue();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001237 return DAG.getTargetConstant(countPopulation(V), dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001238 }
1239 SDValue PopOut = DAG.getNode(HexagonISD::POPCOUNT, dl, MVT::i32, InpVal);
1240 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, PopOut);
1241}
1242
1243SDValue HexagonTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
1244 SDLoc dl(Op);
1245
1246 SDValue LHS = Op.getOperand(0);
1247 SDValue RHS = Op.getOperand(1);
1248 SDValue Cmp = Op.getOperand(2);
1249 ISD::CondCode CC = cast<CondCodeSDNode>(Cmp)->get();
1250
1251 EVT VT = Op.getValueType();
1252 EVT LHSVT = LHS.getValueType();
1253 EVT RHSVT = RHS.getValueType();
1254
1255 if (LHSVT == MVT::v2i16) {
1256 assert(ISD::isSignedIntSetCC(CC) || ISD::isUnsignedIntSetCC(CC));
1257 unsigned ExtOpc = ISD::isSignedIntSetCC(CC) ? ISD::SIGN_EXTEND
1258 : ISD::ZERO_EXTEND;
1259 SDValue LX = DAG.getNode(ExtOpc, dl, MVT::v2i32, LHS);
1260 SDValue RX = DAG.getNode(ExtOpc, dl, MVT::v2i32, RHS);
1261 SDValue SC = DAG.getNode(ISD::SETCC, dl, MVT::v2i1, LX, RX, Cmp);
1262 return SC;
1263 }
1264
1265 // Treat all other vector types as legal.
1266 if (VT.isVector())
1267 return Op;
1268
1269 // Equals and not equals should use sign-extend, not zero-extend, since
1270 // we can represent small negative values in the compare instructions.
1271 // The LLVM default is to use zero-extend arbitrarily in these cases.
1272 if ((CC == ISD::SETEQ || CC == ISD::SETNE) &&
1273 (RHSVT == MVT::i8 || RHSVT == MVT::i16) &&
1274 (LHSVT == MVT::i8 || LHSVT == MVT::i16)) {
1275 ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS);
1276 if (C && C->getAPIntValue().isNegative()) {
1277 LHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, LHS);
1278 RHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, RHS);
1279 return DAG.getNode(ISD::SETCC, dl, Op.getValueType(),
1280 LHS, RHS, Op.getOperand(2));
1281 }
1282 if (isSExtFree(LHS) || isSExtFree(RHS)) {
1283 LHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, LHS);
1284 RHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, RHS);
1285 return DAG.getNode(ISD::SETCC, dl, Op.getValueType(),
1286 LHS, RHS, Op.getOperand(2));
1287 }
1288 }
1289 return SDValue();
1290}
1291
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001292SDValue
1293HexagonTargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001294 SDValue PredOp = Op.getOperand(0);
1295 SDValue Op1 = Op.getOperand(1), Op2 = Op.getOperand(2);
1296 EVT OpVT = Op1.getValueType();
1297 SDLoc DL(Op);
1298
1299 if (OpVT == MVT::v2i16) {
1300 SDValue X1 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v2i32, Op1);
1301 SDValue X2 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v2i32, Op2);
1302 SDValue SL = DAG.getNode(ISD::VSELECT, DL, MVT::v2i32, PredOp, X1, X2);
1303 SDValue TR = DAG.getNode(ISD::TRUNCATE, DL, MVT::v2i16, SL);
1304 return TR;
1305 }
1306
1307 return SDValue();
1308}
1309
1310// Handle only specific vector loads.
1311SDValue HexagonTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
1312 EVT VT = Op.getValueType();
1313 SDLoc DL(Op);
1314 LoadSDNode *LoadNode = cast<LoadSDNode>(Op);
1315 SDValue Chain = LoadNode->getChain();
1316 SDValue Ptr = Op.getOperand(1);
1317 SDValue LoweredLoad;
1318 SDValue Result;
1319 SDValue Base = LoadNode->getBasePtr();
1320 ISD::LoadExtType Ext = LoadNode->getExtensionType();
1321 unsigned Alignment = LoadNode->getAlignment();
1322 SDValue LoadChain;
1323
1324 if(Ext == ISD::NON_EXTLOAD)
1325 Ext = ISD::ZEXTLOAD;
1326
1327 if (VT == MVT::v4i16) {
1328 if (Alignment == 2) {
1329 SDValue Loads[4];
1330 // Base load.
1331 Loads[0] = DAG.getExtLoad(Ext, DL, MVT::i32, Chain, Base,
1332 LoadNode->getPointerInfo(), MVT::i16,
1333 LoadNode->isVolatile(),
1334 LoadNode->isNonTemporal(),
1335 LoadNode->isInvariant(),
1336 Alignment);
1337 // Base+2 load.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001338 SDValue Increment = DAG.getConstant(2, DL, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001339 Ptr = DAG.getNode(ISD::ADD, DL, Base.getValueType(), Base, Increment);
1340 Loads[1] = DAG.getExtLoad(Ext, DL, MVT::i32, Chain, Ptr,
1341 LoadNode->getPointerInfo(), MVT::i16,
1342 LoadNode->isVolatile(),
1343 LoadNode->isNonTemporal(),
1344 LoadNode->isInvariant(),
1345 Alignment);
1346 // SHL 16, then OR base and base+2.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001347 SDValue ShiftAmount = DAG.getConstant(16, DL, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001348 SDValue Tmp1 = DAG.getNode(ISD::SHL, DL, MVT::i32, Loads[1], ShiftAmount);
1349 SDValue Tmp2 = DAG.getNode(ISD::OR, DL, MVT::i32, Tmp1, Loads[0]);
1350 // Base + 4.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001351 Increment = DAG.getConstant(4, DL, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001352 Ptr = DAG.getNode(ISD::ADD, DL, Base.getValueType(), Base, Increment);
1353 Loads[2] = DAG.getExtLoad(Ext, DL, MVT::i32, Chain, Ptr,
1354 LoadNode->getPointerInfo(), MVT::i16,
1355 LoadNode->isVolatile(),
1356 LoadNode->isNonTemporal(),
1357 LoadNode->isInvariant(),
1358 Alignment);
1359 // Base + 6.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001360 Increment = DAG.getConstant(6, DL, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001361 Ptr = DAG.getNode(ISD::ADD, DL, Base.getValueType(), Base, Increment);
1362 Loads[3] = DAG.getExtLoad(Ext, DL, MVT::i32, Chain, Ptr,
1363 LoadNode->getPointerInfo(), MVT::i16,
1364 LoadNode->isVolatile(),
1365 LoadNode->isNonTemporal(),
1366 LoadNode->isInvariant(),
1367 Alignment);
1368 // SHL 16, then OR base+4 and base+6.
1369 Tmp1 = DAG.getNode(ISD::SHL, DL, MVT::i32, Loads[3], ShiftAmount);
1370 SDValue Tmp4 = DAG.getNode(ISD::OR, DL, MVT::i32, Tmp1, Loads[2]);
1371 // Combine to i64. This could be optimised out later if we can
1372 // affect reg allocation of this code.
1373 Result = DAG.getNode(HexagonISD::COMBINE, DL, MVT::i64, Tmp4, Tmp2);
1374 LoadChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
1375 Loads[0].getValue(1), Loads[1].getValue(1),
1376 Loads[2].getValue(1), Loads[3].getValue(1));
1377 } else {
1378 // Perform default type expansion.
1379 Result = DAG.getLoad(MVT::i64, DL, Chain, Ptr, LoadNode->getPointerInfo(),
1380 LoadNode->isVolatile(), LoadNode->isNonTemporal(),
1381 LoadNode->isInvariant(), LoadNode->getAlignment());
1382 LoadChain = Result.getValue(1);
1383 }
1384 } else
1385 llvm_unreachable("Custom lowering unsupported load");
1386
1387 Result = DAG.getNode(ISD::BITCAST, DL, VT, Result);
1388 // Since we pretend to lower a load, we need the original chain
1389 // info attached to the result.
1390 SDValue Ops[] = { Result, LoadChain };
1391
1392 return DAG.getMergeValues(Ops, DL);
1393}
1394
1395
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001396SDValue
Sirish Pande69295b82012-05-10 20:20:25 +00001397HexagonTargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
1398 EVT ValTy = Op.getValueType();
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001399 ConstantPoolSDNode *CPN = cast<ConstantPoolSDNode>(Op);
1400 unsigned Align = CPN->getAlignment();
1401 Reloc::Model RM = HTM.getRelocationModel();
1402 unsigned char TF = (RM == Reloc::PIC_) ? HexagonII::MO_PCREL : 0;
1403
1404 SDValue T;
1405 if (CPN->isMachineConstantPoolEntry())
1406 T = DAG.getTargetConstantPool(CPN->getMachineCPVal(), ValTy, Align, TF);
Sirish Pande69295b82012-05-10 20:20:25 +00001407 else
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001408 T = DAG.getTargetConstantPool(CPN->getConstVal(), ValTy, Align, TF);
1409 if (RM == Reloc::PIC_)
1410 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), ValTy, T);
1411 return DAG.getNode(HexagonISD::CP, SDLoc(Op), ValTy, T);
1412}
1413
1414SDValue
1415HexagonTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
1416 EVT VT = Op.getValueType();
1417 int Idx = cast<JumpTableSDNode>(Op)->getIndex();
1418 Reloc::Model RM = HTM.getRelocationModel();
1419 if (RM == Reloc::PIC_) {
1420 SDValue T = DAG.getTargetJumpTable(Idx, VT, HexagonII::MO_PCREL);
1421 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), VT, T);
1422 }
1423
1424 SDValue T = DAG.getTargetJumpTable(Idx, VT);
1425 return DAG.getNode(HexagonISD::JT, SDLoc(Op), VT, T);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001426}
1427
1428SDValue
1429HexagonTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001430 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001431 MachineFunction &MF = DAG.getMachineFunction();
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001432 MachineFrameInfo &MFI = *MF.getFrameInfo();
1433 MFI.setReturnAddressIsTaken(true);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001434
Bill Wendling908bf812014-01-06 00:43:20 +00001435 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00001436 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00001437
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001438 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001439 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001440 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1441 if (Depth) {
1442 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001443 SDValue Offset = DAG.getConstant(4, dl, MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001444 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
1445 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
1446 MachinePointerInfo(), false, false, false, 0);
1447 }
1448
1449 // Return LR, which contains the return address. Mark it an implicit live-in.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001450 unsigned Reg = MF.addLiveIn(HRI.getRARegister(), getRegClassFor(MVT::i32));
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001451 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
1452}
1453
1454SDValue
1455HexagonTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001456 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
1457 MachineFrameInfo &MFI = *DAG.getMachineFunction().getFrameInfo();
1458 MFI.setFrameAddressIsTaken(true);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001459
1460 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001461 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001462 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1463 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001464 HRI.getFrameRegister(), VT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001465 while (Depth--)
1466 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
1467 MachinePointerInfo(),
1468 false, false, false, 0);
1469 return FrameAddr;
1470}
1471
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001472SDValue
1473HexagonTargetLowering::LowerATOMIC_FENCE(SDValue Op, SelectionDAG& DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001474 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001475 return DAG.getNode(HexagonISD::BARRIER, dl, MVT::Other, Op.getOperand(0));
1476}
1477
1478
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001479SDValue
1480HexagonTargetLowering::LowerGLOBALADDRESS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001481 SDLoc dl(Op);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001482 auto *GAN = cast<GlobalAddressSDNode>(Op);
Mehdi Amini44ede332015-07-09 02:09:04 +00001483 auto PtrVT = getPointerTy(DAG.getDataLayout());
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001484 auto *GV = GAN->getGlobal();
1485 int64_t Offset = GAN->getOffset();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001486
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001487 auto &HLOF = *HTM.getObjFileLowering();
1488 Reloc::Model RM = HTM.getRelocationModel();
1489
1490 if (RM == Reloc::Static) {
1491 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset);
1492 if (HLOF.IsGlobalInSmallSection(GV, HTM))
1493 return DAG.getNode(HexagonISD::CONST32_GP, dl, PtrVT, GA);
1494 return DAG.getNode(HexagonISD::CONST32, dl, PtrVT, GA);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001495 }
1496
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001497 bool UsePCRel = GV->hasInternalLinkage() || GV->hasHiddenVisibility() ||
1498 (GV->hasLocalLinkage() && !isa<Function>(GV));
1499 if (UsePCRel) {
1500 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset,
1501 HexagonII::MO_PCREL);
1502 return DAG.getNode(HexagonISD::AT_PCREL, dl, PtrVT, GA);
1503 }
1504
1505 // Use GOT index.
1506 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
1507 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, HexagonII::MO_GOT);
1508 SDValue Off = DAG.getConstant(Offset, dl, MVT::i32);
1509 return DAG.getNode(HexagonISD::AT_GOT, dl, PtrVT, GOT, GA, Off);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001510}
1511
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001512// Specifies that for loads and stores VT can be promoted to PromotedLdStVT.
Jyotsna Verma2ba0c0b2013-03-07 19:10:28 +00001513SDValue
1514HexagonTargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
1515 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001516 SDLoc dl(Op);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001517 EVT PtrVT = getPointerTy(DAG.getDataLayout());
1518
1519 Reloc::Model RM = HTM.getRelocationModel();
1520 if (RM == Reloc::Static) {
1521 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT);
1522 return DAG.getNode(HexagonISD::CONST32_GP, dl, PtrVT, A);
1523 }
1524
1525 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT, 0, HexagonII::MO_PCREL);
1526 return DAG.getNode(HexagonISD::AT_PCREL, dl, PtrVT, A);
1527}
1528
1529SDValue
1530HexagonTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG)
1531 const {
1532 EVT PtrVT = getPointerTy(DAG.getDataLayout());
1533 SDValue GOTSym = DAG.getTargetExternalSymbol(HEXAGON_GOT_SYM_NAME, PtrVT,
1534 HexagonII::MO_PCREL);
1535 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), PtrVT, GOTSym);
Jyotsna Verma2ba0c0b2013-03-07 19:10:28 +00001536}
1537
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001538//===----------------------------------------------------------------------===//
1539// TargetLowering Implementation
1540//===----------------------------------------------------------------------===//
1541
Eric Christopherd737b762015-02-02 22:11:36 +00001542HexagonTargetLowering::HexagonTargetLowering(const TargetMachine &TM,
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001543 const HexagonSubtarget &ST)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001544 : TargetLowering(TM), HTM(static_cast<const HexagonTargetMachine&>(TM)),
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001545 Subtarget(ST) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001546 bool IsV4 = !Subtarget.hasV5TOps();
1547 auto &HRI = *Subtarget.getRegisterInfo();
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00001548 bool UseHVX = Subtarget.useHVXOps();
1549 bool UseHVXSgl = Subtarget.useHVXSglOps();
1550 bool UseHVXDbl = Subtarget.useHVXDblOps();
Sirish Pande69295b82012-05-10 20:20:25 +00001551
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001552 setPrefLoopAlignment(4);
1553 setPrefFunctionAlignment(4);
1554 setMinFunctionAlignment(2);
1555 setInsertFencesForAtomic(false);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001556 setStackPointerRegisterToSaveRestore(HRI.getStackRegister());
1557
1558 if (EnableHexSDNodeSched)
1559 setSchedulingPreference(Sched::VLIW);
1560 else
1561 setSchedulingPreference(Sched::Source);
1562
1563 // Limits for inline expansion of memcpy/memmove
1564 MaxStoresPerMemcpy = MaxStoresPerMemcpyCL;
1565 MaxStoresPerMemcpyOptSize = MaxStoresPerMemcpyOptSizeCL;
1566 MaxStoresPerMemmove = MaxStoresPerMemmoveCL;
1567 MaxStoresPerMemmoveOptSize = MaxStoresPerMemmoveOptSizeCL;
1568 MaxStoresPerMemset = MaxStoresPerMemsetCL;
1569 MaxStoresPerMemsetOptSize = MaxStoresPerMemsetOptSizeCL;
1570
1571 //
1572 // Set up register classes.
1573 //
1574
1575 addRegisterClass(MVT::i1, &Hexagon::PredRegsRegClass);
1576 addRegisterClass(MVT::v2i1, &Hexagon::PredRegsRegClass); // bbbbaaaa
1577 addRegisterClass(MVT::v4i1, &Hexagon::PredRegsRegClass); // ddccbbaa
1578 addRegisterClass(MVT::v8i1, &Hexagon::PredRegsRegClass); // hgfedcba
1579 addRegisterClass(MVT::i32, &Hexagon::IntRegsRegClass);
1580 addRegisterClass(MVT::v4i8, &Hexagon::IntRegsRegClass);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001581 addRegisterClass(MVT::v2i16, &Hexagon::IntRegsRegClass);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001582 addRegisterClass(MVT::i64, &Hexagon::DoubleRegsRegClass);
1583 addRegisterClass(MVT::v8i8, &Hexagon::DoubleRegsRegClass);
1584 addRegisterClass(MVT::v4i16, &Hexagon::DoubleRegsRegClass);
1585 addRegisterClass(MVT::v2i32, &Hexagon::DoubleRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001586
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001587 if (Subtarget.hasV5TOps()) {
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001588 addRegisterClass(MVT::f32, &Hexagon::IntRegsRegClass);
1589 addRegisterClass(MVT::f64, &Hexagon::DoubleRegsRegClass);
1590 }
Sirish Pande69295b82012-05-10 20:20:25 +00001591
Krzysztof Parzyszek195dc8d2015-11-26 04:33:11 +00001592 if (Subtarget.hasV60TOps()) {
1593 if (Subtarget.useHVXSglOps()) {
1594 addRegisterClass(MVT::v64i8, &Hexagon::VectorRegsRegClass);
1595 addRegisterClass(MVT::v32i16, &Hexagon::VectorRegsRegClass);
1596 addRegisterClass(MVT::v16i32, &Hexagon::VectorRegsRegClass);
1597 addRegisterClass(MVT::v8i64, &Hexagon::VectorRegsRegClass);
1598 addRegisterClass(MVT::v128i8, &Hexagon::VecDblRegsRegClass);
1599 addRegisterClass(MVT::v64i16, &Hexagon::VecDblRegsRegClass);
1600 addRegisterClass(MVT::v32i32, &Hexagon::VecDblRegsRegClass);
1601 addRegisterClass(MVT::v16i64, &Hexagon::VecDblRegsRegClass);
1602 addRegisterClass(MVT::v512i1, &Hexagon::VecPredRegsRegClass);
1603 } else if (Subtarget.useHVXDblOps()) {
1604 addRegisterClass(MVT::v128i8, &Hexagon::VectorRegs128BRegClass);
1605 addRegisterClass(MVT::v64i16, &Hexagon::VectorRegs128BRegClass);
1606 addRegisterClass(MVT::v32i32, &Hexagon::VectorRegs128BRegClass);
1607 addRegisterClass(MVT::v16i64, &Hexagon::VectorRegs128BRegClass);
1608 addRegisterClass(MVT::v256i8, &Hexagon::VecDblRegs128BRegClass);
1609 addRegisterClass(MVT::v128i16, &Hexagon::VecDblRegs128BRegClass);
1610 addRegisterClass(MVT::v64i32, &Hexagon::VecDblRegs128BRegClass);
1611 addRegisterClass(MVT::v32i64, &Hexagon::VecDblRegs128BRegClass);
1612 addRegisterClass(MVT::v1024i1, &Hexagon::VecPredRegs128BRegClass);
1613 }
1614
1615 }
1616
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001617 //
1618 // Handling of scalar operations.
1619 //
1620 // All operations default to "legal", except:
1621 // - indexed loads and stores (pre-/post-incremented),
1622 // - ANY_EXTEND_VECTOR_INREG, ATOMIC_CMP_SWAP_WITH_SUCCESS, CONCAT_VECTORS,
1623 // ConstantFP, DEBUGTRAP, FCEIL, FCOPYSIGN, FEXP, FEXP2, FFLOOR, FGETSIGN,
1624 // FLOG, FLOG2, FLOG10, FMAXNUM, FMINNUM, FNEARBYINT, FRINT, FROUND, TRAP,
1625 // FTRUNC, PREFETCH, SIGN_EXTEND_VECTOR_INREG, ZERO_EXTEND_VECTOR_INREG,
1626 // which default to "expand" for at least one type.
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001627
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001628 // Misc operations.
1629 setOperationAction(ISD::ConstantFP, MVT::f32, Legal); // Default: expand
1630 setOperationAction(ISD::ConstantFP, MVT::f64, Legal); // Default: expand
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001631
1632 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001633 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001634 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001635 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
1636 setOperationAction(ISD::INLINEASM, MVT::Other, Custom);
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00001637 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
1638 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001639 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001640 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001641 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001642
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001643 // Custom legalize GlobalAddress nodes into CONST32.
1644 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001645 setOperationAction(ISD::GlobalAddress, MVT::i8, Custom);
1646 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001647
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001648 // Hexagon needs to optimize cases with negative constants.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001649 setOperationAction(ISD::SETCC, MVT::i8, Custom);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001650 setOperationAction(ISD::SETCC, MVT::i16, Custom);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001651
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001652 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
1653 setOperationAction(ISD::VASTART, MVT::Other, Custom);
1654 setOperationAction(ISD::VAEND, MVT::Other, Expand);
1655 setOperationAction(ISD::VAARG, MVT::Other, Expand);
1656
1657 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
1658 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
1659 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
1660
1661 if (EmitJumpTables)
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001662 setMinimumJumpTableEntries(MinimumJumpTables);
Krzysztof Parzyszeka61f7da2016-01-13 21:43:13 +00001663 else
1664 setMinimumJumpTableEntries(INT_MAX);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001665 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001666
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001667 // Hexagon has instructions for add/sub with carry. The problem with
1668 // modeling these instructions is that they produce 2 results: Rdd and Px.
1669 // To model the update of Px, we will have to use Defs[p0..p3] which will
1670 // cause any predicate live range to spill. So, we pretend we dont't have
1671 // these instructions.
1672 setOperationAction(ISD::ADDE, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001673 setOperationAction(ISD::ADDE, MVT::i16, Expand);
1674 setOperationAction(ISD::ADDE, MVT::i32, Expand);
1675 setOperationAction(ISD::ADDE, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001676 setOperationAction(ISD::SUBE, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001677 setOperationAction(ISD::SUBE, MVT::i16, Expand);
1678 setOperationAction(ISD::SUBE, MVT::i32, Expand);
1679 setOperationAction(ISD::SUBE, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001680 setOperationAction(ISD::ADDC, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001681 setOperationAction(ISD::ADDC, MVT::i16, Expand);
1682 setOperationAction(ISD::ADDC, MVT::i32, Expand);
1683 setOperationAction(ISD::ADDC, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001684 setOperationAction(ISD::SUBC, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001685 setOperationAction(ISD::SUBC, MVT::i16, Expand);
1686 setOperationAction(ISD::SUBC, MVT::i32, Expand);
1687 setOperationAction(ISD::SUBC, MVT::i64, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001688
Krzysztof Parzyszek2c4487d2015-04-13 20:37:01 +00001689 // Only add and sub that detect overflow are the saturating ones.
1690 for (MVT VT : MVT::integer_valuetypes()) {
1691 setOperationAction(ISD::UADDO, VT, Expand);
1692 setOperationAction(ISD::SADDO, VT, Expand);
1693 setOperationAction(ISD::USUBO, VT, Expand);
1694 setOperationAction(ISD::SSUBO, VT, Expand);
1695 }
1696
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001697 setOperationAction(ISD::CTLZ, MVT::i8, Promote);
1698 setOperationAction(ISD::CTLZ, MVT::i16, Promote);
1699 setOperationAction(ISD::CTTZ, MVT::i8, Promote);
1700 setOperationAction(ISD::CTTZ, MVT::i16, Promote);
1701 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8, Promote);
1702 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16, Promote);
1703 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i8, Promote);
1704 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16, Promote);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001705
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001706 // In V5, popcount can count # of 1s in i64 but returns i32.
1707 // On V4 it will be expanded (set later).
1708 setOperationAction(ISD::CTPOP, MVT::i8, Promote);
1709 setOperationAction(ISD::CTPOP, MVT::i16, Promote);
1710 setOperationAction(ISD::CTPOP, MVT::i32, Promote);
1711 setOperationAction(ISD::CTPOP, MVT::i64, Custom);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001712
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001713 // We custom lower i64 to i64 mul, so that it is not considered as a legal
1714 // operation. There is a pattern that will match i64 mul and transform it
1715 // to a series of instructions.
1716 setOperationAction(ISD::MUL, MVT::i64, Expand);
Colin LeMahieude68b662015-02-05 21:13:25 +00001717 setOperationAction(ISD::MULHS, MVT::i64, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001718
Benjamin Kramer62460692015-04-25 14:46:53 +00001719 for (unsigned IntExpOp :
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001720 { ISD::SDIV, ISD::UDIV, ISD::SREM, ISD::UREM,
1721 ISD::SDIVREM, ISD::UDIVREM, ISD::ROTL, ISD::ROTR,
1722 ISD::BSWAP, ISD::SHL_PARTS, ISD::SRA_PARTS, ISD::SRL_PARTS,
1723 ISD::SMUL_LOHI, ISD::UMUL_LOHI }) {
Benjamin Kramer62460692015-04-25 14:46:53 +00001724 setOperationAction(IntExpOp, MVT::i32, Expand);
1725 setOperationAction(IntExpOp, MVT::i64, Expand);
1726 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001727
Benjamin Kramer62460692015-04-25 14:46:53 +00001728 for (unsigned FPExpOp :
1729 {ISD::FDIV, ISD::FREM, ISD::FSQRT, ISD::FSIN, ISD::FCOS, ISD::FSINCOS,
1730 ISD::FPOW, ISD::FCOPYSIGN}) {
1731 setOperationAction(FPExpOp, MVT::f32, Expand);
1732 setOperationAction(FPExpOp, MVT::f64, Expand);
1733 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001734
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001735 // No extending loads from i32.
1736 for (MVT VT : MVT::integer_valuetypes()) {
1737 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i32, Expand);
1738 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i32, Expand);
1739 setLoadExtAction(ISD::EXTLOAD, VT, MVT::i32, Expand);
1740 }
1741 // Turn FP truncstore into trunc + store.
1742 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1743 // Turn FP extload into load/fextend.
1744 for (MVT VT : MVT::fp_valuetypes())
1745 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001746
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001747 // Expand BR_CC and SELECT_CC for all integer and fp types.
1748 for (MVT VT : MVT::integer_valuetypes()) {
1749 setOperationAction(ISD::BR_CC, VT, Expand);
1750 setOperationAction(ISD::SELECT_CC, VT, Expand);
1751 }
1752 for (MVT VT : MVT::fp_valuetypes()) {
1753 setOperationAction(ISD::BR_CC, VT, Expand);
1754 setOperationAction(ISD::SELECT_CC, VT, Expand);
1755 }
1756 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001757
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001758 //
1759 // Handling of vector operations.
1760 //
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001761
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001762 // Custom lower v4i16 load only. Let v4i16 store to be
1763 // promoted for now.
1764 promoteLdStType(MVT::v4i8, MVT::i32);
1765 promoteLdStType(MVT::v2i16, MVT::i32);
1766 promoteLdStType(MVT::v8i8, MVT::i64);
1767 promoteLdStType(MVT::v2i32, MVT::i64);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001768
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001769 setOperationAction(ISD::LOAD, MVT::v4i16, Custom);
1770 setOperationAction(ISD::STORE, MVT::v4i16, Promote);
1771 AddPromotedToType(ISD::LOAD, MVT::v4i16, MVT::i64);
1772 AddPromotedToType(ISD::STORE, MVT::v4i16, MVT::i64);
1773
1774 // Set the action for vector operations to "expand", then override it with
1775 // either "custom" or "legal" for specific cases.
Craig Topper26260942015-10-18 05:15:34 +00001776 static const unsigned VectExpOps[] = {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001777 // Integer arithmetic:
1778 ISD::ADD, ISD::SUB, ISD::MUL, ISD::SDIV, ISD::UDIV,
1779 ISD::SREM, ISD::UREM, ISD::SDIVREM, ISD::UDIVREM, ISD::ADDC,
1780 ISD::SUBC, ISD::SADDO, ISD::UADDO, ISD::SSUBO, ISD::USUBO,
1781 ISD::SMUL_LOHI, ISD::UMUL_LOHI,
1782 // Logical/bit:
1783 ISD::AND, ISD::OR, ISD::XOR, ISD::ROTL, ISD::ROTR,
1784 ISD::CTPOP, ISD::CTLZ, ISD::CTTZ, ISD::CTLZ_ZERO_UNDEF,
1785 ISD::CTTZ_ZERO_UNDEF,
1786 // Floating point arithmetic/math functions:
1787 ISD::FADD, ISD::FSUB, ISD::FMUL, ISD::FMA, ISD::FDIV,
1788 ISD::FREM, ISD::FNEG, ISD::FABS, ISD::FSQRT, ISD::FSIN,
1789 ISD::FCOS, ISD::FPOWI, ISD::FPOW, ISD::FLOG, ISD::FLOG2,
1790 ISD::FLOG10, ISD::FEXP, ISD::FEXP2, ISD::FCEIL, ISD::FTRUNC,
1791 ISD::FRINT, ISD::FNEARBYINT, ISD::FROUND, ISD::FFLOOR,
1792 ISD::FMINNUM, ISD::FMAXNUM, ISD::FSINCOS,
1793 // Misc:
1794 ISD::SELECT, ISD::ConstantPool,
1795 // Vector:
1796 ISD::BUILD_VECTOR, ISD::SCALAR_TO_VECTOR,
1797 ISD::EXTRACT_VECTOR_ELT, ISD::INSERT_VECTOR_ELT,
1798 ISD::EXTRACT_SUBVECTOR, ISD::INSERT_SUBVECTOR,
1799 ISD::CONCAT_VECTORS, ISD::VECTOR_SHUFFLE
1800 };
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001801
1802 for (MVT VT : MVT::vector_valuetypes()) {
Benjamin Kramer62460692015-04-25 14:46:53 +00001803 for (unsigned VectExpOp : VectExpOps)
1804 setOperationAction(VectExpOp, VT, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001805
1806 // Expand all extended loads and truncating stores:
1807 for (MVT TargetVT : MVT::vector_valuetypes()) {
1808 setLoadExtAction(ISD::EXTLOAD, TargetVT, VT, Expand);
1809 setTruncStoreAction(VT, TargetVT, Expand);
1810 }
1811
1812 setOperationAction(ISD::SRA, VT, Custom);
1813 setOperationAction(ISD::SHL, VT, Custom);
1814 setOperationAction(ISD::SRL, VT, Custom);
1815 }
1816
1817 // Types natively supported:
Benjamin Kramer62460692015-04-25 14:46:53 +00001818 for (MVT NativeVT : {MVT::v2i1, MVT::v4i1, MVT::v8i1, MVT::v32i1, MVT::v64i1,
1819 MVT::v4i8, MVT::v8i8, MVT::v2i16, MVT::v4i16, MVT::v1i32,
1820 MVT::v2i32, MVT::v1i64}) {
1821 setOperationAction(ISD::BUILD_VECTOR, NativeVT, Custom);
1822 setOperationAction(ISD::EXTRACT_VECTOR_ELT, NativeVT, Custom);
1823 setOperationAction(ISD::INSERT_VECTOR_ELT, NativeVT, Custom);
1824 setOperationAction(ISD::EXTRACT_SUBVECTOR, NativeVT, Custom);
1825 setOperationAction(ISD::INSERT_SUBVECTOR, NativeVT, Custom);
1826 setOperationAction(ISD::CONCAT_VECTORS, NativeVT, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001827
Benjamin Kramer62460692015-04-25 14:46:53 +00001828 setOperationAction(ISD::ADD, NativeVT, Legal);
1829 setOperationAction(ISD::SUB, NativeVT, Legal);
1830 setOperationAction(ISD::MUL, NativeVT, Legal);
1831 setOperationAction(ISD::AND, NativeVT, Legal);
1832 setOperationAction(ISD::OR, NativeVT, Legal);
1833 setOperationAction(ISD::XOR, NativeVT, Legal);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001834 }
1835
1836 setOperationAction(ISD::SETCC, MVT::v2i16, Custom);
1837 setOperationAction(ISD::VSELECT, MVT::v2i16, Custom);
1838 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
1839 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001840 if (UseHVX) {
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00001841 if (UseHVXSgl) {
1842 setOperationAction(ISD::CONCAT_VECTORS, MVT::v128i8, Custom);
1843 setOperationAction(ISD::CONCAT_VECTORS, MVT::v64i16, Custom);
1844 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i32, Custom);
1845 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i64, Custom);
1846 } else if (UseHVXDbl) {
1847 setOperationAction(ISD::CONCAT_VECTORS, MVT::v256i8, Custom);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001848 setOperationAction(ISD::CONCAT_VECTORS, MVT::v128i16, Custom);
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00001849 setOperationAction(ISD::CONCAT_VECTORS, MVT::v64i32, Custom);
1850 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i64, Custom);
1851 } else {
1852 llvm_unreachable("Unrecognized HVX mode");
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001853 }
1854 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001855 // Subtarget-specific operation actions.
1856 //
1857 if (Subtarget.hasV5TOps()) {
1858 setOperationAction(ISD::FMA, MVT::f64, Expand);
1859 setOperationAction(ISD::FADD, MVT::f64, Expand);
1860 setOperationAction(ISD::FSUB, MVT::f64, Expand);
1861 setOperationAction(ISD::FMUL, MVT::f64, Expand);
1862
1863 setOperationAction(ISD::FP_TO_UINT, MVT::i1, Promote);
1864 setOperationAction(ISD::FP_TO_UINT, MVT::i8, Promote);
1865 setOperationAction(ISD::FP_TO_UINT, MVT::i16, Promote);
1866 setOperationAction(ISD::FP_TO_SINT, MVT::i1, Promote);
1867 setOperationAction(ISD::FP_TO_SINT, MVT::i8, Promote);
1868 setOperationAction(ISD::FP_TO_SINT, MVT::i16, Promote);
1869 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
1870 setOperationAction(ISD::UINT_TO_FP, MVT::i8, Promote);
1871 setOperationAction(ISD::UINT_TO_FP, MVT::i16, Promote);
1872 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
1873 setOperationAction(ISD::SINT_TO_FP, MVT::i8, Promote);
1874 setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote);
1875
1876 } else { // V4
1877 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
1878 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Expand);
1879 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
1880 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
1881 setOperationAction(ISD::FP_TO_SINT, MVT::f64, Expand);
1882 setOperationAction(ISD::FP_TO_SINT, MVT::f32, Expand);
1883 setOperationAction(ISD::FP_EXTEND, MVT::f32, Expand);
1884 setOperationAction(ISD::FP_ROUND, MVT::f64, Expand);
1885 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
1886
1887 setOperationAction(ISD::CTPOP, MVT::i8, Expand);
1888 setOperationAction(ISD::CTPOP, MVT::i16, Expand);
1889 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
1890 setOperationAction(ISD::CTPOP, MVT::i64, Expand);
1891
1892 // Expand these operations for both f32 and f64:
Benjamin Kramer62460692015-04-25 14:46:53 +00001893 for (unsigned FPExpOpV4 :
1894 {ISD::FADD, ISD::FSUB, ISD::FMUL, ISD::FABS, ISD::FNEG, ISD::FMA}) {
1895 setOperationAction(FPExpOpV4, MVT::f32, Expand);
1896 setOperationAction(FPExpOpV4, MVT::f64, Expand);
1897 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001898
Benjamin Kramer62460692015-04-25 14:46:53 +00001899 for (ISD::CondCode FPExpCCV4 :
1900 {ISD::SETOEQ, ISD::SETOGT, ISD::SETOLT, ISD::SETOGE, ISD::SETOLE,
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001901 ISD::SETUO, ISD::SETO}) {
Benjamin Kramer62460692015-04-25 14:46:53 +00001902 setCondCodeAction(FPExpCCV4, MVT::f32, Expand);
1903 setCondCodeAction(FPExpCCV4, MVT::f64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001904 }
1905 }
1906
1907 // Handling of indexed loads/stores: default is "expand".
1908 //
Benjamin Kramer62460692015-04-25 14:46:53 +00001909 for (MVT LSXTy : {MVT::i8, MVT::i16, MVT::i32, MVT::i64}) {
1910 setIndexedLoadAction(ISD::POST_INC, LSXTy, Legal);
1911 setIndexedStoreAction(ISD::POST_INC, LSXTy, Legal);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001912 }
1913
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001914 if (UseHVXDbl) {
1915 for (MVT VT : {MVT::v128i8, MVT::v64i16, MVT::v32i32, MVT::v16i64}) {
1916 setIndexedLoadAction(ISD::POST_INC, VT, Legal);
1917 setIndexedStoreAction(ISD::POST_INC, VT, Legal);
1918 }
1919 }
1920
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001921 computeRegisterProperties(&HRI);
1922
1923 //
1924 // Library calls for unsupported operations
1925 //
1926 bool FastMath = EnableFastMath;
1927
Benjamin Kramera37c8092015-04-25 14:46:46 +00001928 setLibcallName(RTLIB::SDIV_I32, "__hexagon_divsi3");
1929 setLibcallName(RTLIB::SDIV_I64, "__hexagon_divdi3");
1930 setLibcallName(RTLIB::UDIV_I32, "__hexagon_udivsi3");
1931 setLibcallName(RTLIB::UDIV_I64, "__hexagon_udivdi3");
1932 setLibcallName(RTLIB::SREM_I32, "__hexagon_modsi3");
1933 setLibcallName(RTLIB::SREM_I64, "__hexagon_moddi3");
1934 setLibcallName(RTLIB::UREM_I32, "__hexagon_umodsi3");
1935 setLibcallName(RTLIB::UREM_I64, "__hexagon_umoddi3");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001936
Benjamin Kramera37c8092015-04-25 14:46:46 +00001937 setLibcallName(RTLIB::SINTTOFP_I128_F64, "__hexagon_floattidf");
1938 setLibcallName(RTLIB::SINTTOFP_I128_F32, "__hexagon_floattisf");
1939 setLibcallName(RTLIB::FPTOUINT_F32_I128, "__hexagon_fixunssfti");
1940 setLibcallName(RTLIB::FPTOUINT_F64_I128, "__hexagon_fixunsdfti");
1941 setLibcallName(RTLIB::FPTOSINT_F32_I128, "__hexagon_fixsfti");
1942 setLibcallName(RTLIB::FPTOSINT_F64_I128, "__hexagon_fixdfti");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001943
1944 if (IsV4) {
1945 // Handle single-precision floating point operations on V4.
Benjamin Kramera37c8092015-04-25 14:46:46 +00001946 if (FastMath) {
1947 setLibcallName(RTLIB::ADD_F32, "__hexagon_fast_addsf3");
1948 setLibcallName(RTLIB::SUB_F32, "__hexagon_fast_subsf3");
1949 setLibcallName(RTLIB::MUL_F32, "__hexagon_fast_mulsf3");
1950 setLibcallName(RTLIB::OGT_F32, "__hexagon_fast_gtsf2");
1951 setLibcallName(RTLIB::OLT_F32, "__hexagon_fast_ltsf2");
1952 // Double-precision compares.
1953 setLibcallName(RTLIB::OGT_F64, "__hexagon_fast_gtdf2");
1954 setLibcallName(RTLIB::OLT_F64, "__hexagon_fast_ltdf2");
1955 } else {
1956 setLibcallName(RTLIB::ADD_F32, "__hexagon_addsf3");
1957 setLibcallName(RTLIB::SUB_F32, "__hexagon_subsf3");
1958 setLibcallName(RTLIB::MUL_F32, "__hexagon_mulsf3");
1959 setLibcallName(RTLIB::OGT_F32, "__hexagon_gtsf2");
1960 setLibcallName(RTLIB::OLT_F32, "__hexagon_ltsf2");
1961 // Double-precision compares.
1962 setLibcallName(RTLIB::OGT_F64, "__hexagon_gtdf2");
1963 setLibcallName(RTLIB::OLT_F64, "__hexagon_ltdf2");
1964 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001965 }
1966
1967 // This is the only fast library function for sqrtd.
1968 if (FastMath)
Benjamin Kramera37c8092015-04-25 14:46:46 +00001969 setLibcallName(RTLIB::SQRT_F64, "__hexagon_fast2_sqrtdf2");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001970
Benjamin Kramera37c8092015-04-25 14:46:46 +00001971 // Prefix is: nothing for "slow-math",
1972 // "fast2_" for V4 fast-math and V5+ fast-math double-precision
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001973 // (actually, keep fast-math and fast-math2 separate for now)
Benjamin Kramera37c8092015-04-25 14:46:46 +00001974 if (FastMath) {
1975 setLibcallName(RTLIB::ADD_F64, "__hexagon_fast_adddf3");
1976 setLibcallName(RTLIB::SUB_F64, "__hexagon_fast_subdf3");
1977 setLibcallName(RTLIB::MUL_F64, "__hexagon_fast_muldf3");
1978 setLibcallName(RTLIB::DIV_F64, "__hexagon_fast_divdf3");
1979 // Calling __hexagon_fast2_divsf3 with fast-math on V5 (ok).
1980 setLibcallName(RTLIB::DIV_F32, "__hexagon_fast_divsf3");
1981 } else {
1982 setLibcallName(RTLIB::ADD_F64, "__hexagon_adddf3");
1983 setLibcallName(RTLIB::SUB_F64, "__hexagon_subdf3");
1984 setLibcallName(RTLIB::MUL_F64, "__hexagon_muldf3");
1985 setLibcallName(RTLIB::DIV_F64, "__hexagon_divdf3");
1986 setLibcallName(RTLIB::DIV_F32, "__hexagon_divsf3");
1987 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001988
1989 if (Subtarget.hasV5TOps()) {
1990 if (FastMath)
Benjamin Kramera37c8092015-04-25 14:46:46 +00001991 setLibcallName(RTLIB::SQRT_F32, "__hexagon_fast2_sqrtf");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001992 else
Benjamin Kramera37c8092015-04-25 14:46:46 +00001993 setLibcallName(RTLIB::SQRT_F32, "__hexagon_sqrtf");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001994 } else {
1995 // V4
Benjamin Kramera37c8092015-04-25 14:46:46 +00001996 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__hexagon_floatsisf");
1997 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__hexagon_floatsidf");
1998 setLibcallName(RTLIB::SINTTOFP_I64_F32, "__hexagon_floatdisf");
1999 setLibcallName(RTLIB::SINTTOFP_I64_F64, "__hexagon_floatdidf");
2000 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__hexagon_floatunsisf");
2001 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__hexagon_floatunsidf");
2002 setLibcallName(RTLIB::UINTTOFP_I64_F32, "__hexagon_floatundisf");
2003 setLibcallName(RTLIB::UINTTOFP_I64_F64, "__hexagon_floatundidf");
2004 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__hexagon_fixunssfsi");
2005 setLibcallName(RTLIB::FPTOUINT_F32_I64, "__hexagon_fixunssfdi");
2006 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__hexagon_fixunsdfsi");
2007 setLibcallName(RTLIB::FPTOUINT_F64_I64, "__hexagon_fixunsdfdi");
2008 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__hexagon_fixsfsi");
2009 setLibcallName(RTLIB::FPTOSINT_F32_I64, "__hexagon_fixsfdi");
2010 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__hexagon_fixdfsi");
2011 setLibcallName(RTLIB::FPTOSINT_F64_I64, "__hexagon_fixdfdi");
2012 setLibcallName(RTLIB::FPEXT_F32_F64, "__hexagon_extendsfdf2");
2013 setLibcallName(RTLIB::FPROUND_F64_F32, "__hexagon_truncdfsf2");
2014 setLibcallName(RTLIB::OEQ_F32, "__hexagon_eqsf2");
2015 setLibcallName(RTLIB::OEQ_F64, "__hexagon_eqdf2");
2016 setLibcallName(RTLIB::OGE_F32, "__hexagon_gesf2");
2017 setLibcallName(RTLIB::OGE_F64, "__hexagon_gedf2");
2018 setLibcallName(RTLIB::OLE_F32, "__hexagon_lesf2");
2019 setLibcallName(RTLIB::OLE_F64, "__hexagon_ledf2");
2020 setLibcallName(RTLIB::UNE_F32, "__hexagon_nesf2");
2021 setLibcallName(RTLIB::UNE_F64, "__hexagon_nedf2");
2022 setLibcallName(RTLIB::UO_F32, "__hexagon_unordsf2");
2023 setLibcallName(RTLIB::UO_F64, "__hexagon_unorddf2");
2024 setLibcallName(RTLIB::O_F32, "__hexagon_unordsf2");
2025 setLibcallName(RTLIB::O_F64, "__hexagon_unorddf2");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002026 }
2027
2028 // These cause problems when the shift amount is non-constant.
2029 setLibcallName(RTLIB::SHL_I128, nullptr);
2030 setLibcallName(RTLIB::SRL_I128, nullptr);
2031 setLibcallName(RTLIB::SRA_I128, nullptr);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002032}
2033
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002034
2035const char* HexagonTargetLowering::getTargetNodeName(unsigned Opcode) const {
Matthias Braund04893f2015-05-07 21:33:59 +00002036 switch ((HexagonISD::NodeType)Opcode) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002037 case HexagonISD::ALLOCA: return "HexagonISD::ALLOCA";
2038 case HexagonISD::ARGEXTEND: return "HexagonISD::ARGEXTEND";
2039 case HexagonISD::AT_GOT: return "HexagonISD::AT_GOT";
2040 case HexagonISD::AT_PCREL: return "HexagonISD::AT_PCREL";
2041 case HexagonISD::BARRIER: return "HexagonISD::BARRIER";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002042 case HexagonISD::CALLR: return "HexagonISD::CALLR";
2043 case HexagonISD::CALLv3nr: return "HexagonISD::CALLv3nr";
2044 case HexagonISD::CALLv3: return "HexagonISD::CALLv3";
2045 case HexagonISD::COMBINE: return "HexagonISD::COMBINE";
2046 case HexagonISD::CONST32_GP: return "HexagonISD::CONST32_GP";
2047 case HexagonISD::CONST32: return "HexagonISD::CONST32";
2048 case HexagonISD::CP: return "HexagonISD::CP";
2049 case HexagonISD::DCFETCH: return "HexagonISD::DCFETCH";
2050 case HexagonISD::EH_RETURN: return "HexagonISD::EH_RETURN";
2051 case HexagonISD::EXTRACTU: return "HexagonISD::EXTRACTU";
2052 case HexagonISD::EXTRACTURP: return "HexagonISD::EXTRACTURP";
2053 case HexagonISD::FCONST32: return "HexagonISD::FCONST32";
2054 case HexagonISD::INSERT: return "HexagonISD::INSERT";
2055 case HexagonISD::INSERTRP: return "HexagonISD::INSERTRP";
2056 case HexagonISD::JT: return "HexagonISD::JT";
2057 case HexagonISD::PACKHL: return "HexagonISD::PACKHL";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002058 case HexagonISD::POPCOUNT: return "HexagonISD::POPCOUNT";
2059 case HexagonISD::RET_FLAG: return "HexagonISD::RET_FLAG";
2060 case HexagonISD::SHUFFEB: return "HexagonISD::SHUFFEB";
2061 case HexagonISD::SHUFFEH: return "HexagonISD::SHUFFEH";
2062 case HexagonISD::SHUFFOB: return "HexagonISD::SHUFFOB";
2063 case HexagonISD::SHUFFOH: return "HexagonISD::SHUFFOH";
2064 case HexagonISD::TC_RETURN: return "HexagonISD::TC_RETURN";
2065 case HexagonISD::VCMPBEQ: return "HexagonISD::VCMPBEQ";
2066 case HexagonISD::VCMPBGT: return "HexagonISD::VCMPBGT";
2067 case HexagonISD::VCMPBGTU: return "HexagonISD::VCMPBGTU";
2068 case HexagonISD::VCMPHEQ: return "HexagonISD::VCMPHEQ";
2069 case HexagonISD::VCMPHGT: return "HexagonISD::VCMPHGT";
2070 case HexagonISD::VCMPHGTU: return "HexagonISD::VCMPHGTU";
2071 case HexagonISD::VCMPWEQ: return "HexagonISD::VCMPWEQ";
2072 case HexagonISD::VCMPWGT: return "HexagonISD::VCMPWGT";
2073 case HexagonISD::VCMPWGTU: return "HexagonISD::VCMPWGTU";
Krzysztof Parzyszekc168c012015-12-03 16:47:20 +00002074 case HexagonISD::VCOMBINE: return "HexagonISD::VCOMBINE";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002075 case HexagonISD::VSHLH: return "HexagonISD::VSHLH";
2076 case HexagonISD::VSHLW: return "HexagonISD::VSHLW";
2077 case HexagonISD::VSPLATB: return "HexagonISD::VSPLTB";
2078 case HexagonISD::VSPLATH: return "HexagonISD::VSPLATH";
2079 case HexagonISD::VSRAH: return "HexagonISD::VSRAH";
2080 case HexagonISD::VSRAW: return "HexagonISD::VSRAW";
2081 case HexagonISD::VSRLH: return "HexagonISD::VSRLH";
2082 case HexagonISD::VSRLW: return "HexagonISD::VSRLW";
2083 case HexagonISD::VSXTBH: return "HexagonISD::VSXTBH";
2084 case HexagonISD::VSXTBW: return "HexagonISD::VSXTBW";
Matthias Braund04893f2015-05-07 21:33:59 +00002085 case HexagonISD::OP_END: break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002086 }
Matthias Braund04893f2015-05-07 21:33:59 +00002087 return nullptr;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002088}
2089
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002090bool HexagonTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002091 EVT MTy1 = EVT::getEVT(Ty1);
2092 EVT MTy2 = EVT::getEVT(Ty2);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002093 if (!MTy1.isSimple() || !MTy2.isSimple())
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002094 return false;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002095 return (MTy1.getSimpleVT() == MVT::i64) && (MTy2.getSimpleVT() == MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002096}
2097
2098bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002099 if (!VT1.isSimple() || !VT2.isSimple())
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002100 return false;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002101 return (VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002102}
2103
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002104// shouldExpandBuildVectorWithShuffles
2105// Should we expand the build vector with shuffles?
2106bool
2107HexagonTargetLowering::shouldExpandBuildVectorWithShuffles(EVT VT,
2108 unsigned DefinedValues) const {
2109
2110 // Hexagon vector shuffle operates on element sizes of bytes or halfwords
2111 EVT EltVT = VT.getVectorElementType();
2112 int EltBits = EltVT.getSizeInBits();
2113 if ((EltBits != 8) && (EltBits != 16))
2114 return false;
2115
2116 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
2117}
2118
2119// LowerVECTOR_SHUFFLE - Lower a vector shuffle (V1, V2, V3). V1 and
2120// V2 are the two vectors to select data from, V3 is the permutation.
2121static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
2122 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
2123 SDValue V1 = Op.getOperand(0);
2124 SDValue V2 = Op.getOperand(1);
2125 SDLoc dl(Op);
2126 EVT VT = Op.getValueType();
2127
2128 if (V2.getOpcode() == ISD::UNDEF)
2129 V2 = V1;
2130
2131 if (SVN->isSplat()) {
2132 int Lane = SVN->getSplatIndex();
2133 if (Lane == -1) Lane = 0;
2134
2135 // Test if V1 is a SCALAR_TO_VECTOR.
2136 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR)
2137 return createSplat(DAG, dl, VT, V1.getOperand(0));
2138
2139 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
2140 // (and probably will turn into a SCALAR_TO_VECTOR once legalization
2141 // reaches it).
2142 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
2143 !isa<ConstantSDNode>(V1.getOperand(0))) {
2144 bool IsScalarToVector = true;
2145 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
2146 if (V1.getOperand(i).getOpcode() != ISD::UNDEF) {
2147 IsScalarToVector = false;
2148 break;
2149 }
2150 if (IsScalarToVector)
2151 return createSplat(DAG, dl, VT, V1.getOperand(0));
2152 }
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002153 return createSplat(DAG, dl, VT, DAG.getConstant(Lane, dl, MVT::i32));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002154 }
2155
2156 // FIXME: We need to support more general vector shuffles. See
2157 // below the comment from the ARM backend that deals in the general
2158 // case with the vector shuffles. For now, let expand handle these.
2159 return SDValue();
2160
2161 // If the shuffle is not directly supported and it has 4 elements, use
2162 // the PerfectShuffle-generated table to synthesize it from other shuffles.
2163}
2164
2165// If BUILD_VECTOR has same base element repeated several times,
2166// report true.
2167static bool isCommonSplatElement(BuildVectorSDNode *BVN) {
2168 unsigned NElts = BVN->getNumOperands();
2169 SDValue V0 = BVN->getOperand(0);
2170
2171 for (unsigned i = 1, e = NElts; i != e; ++i) {
2172 if (BVN->getOperand(i) != V0)
2173 return false;
2174 }
2175 return true;
2176}
2177
2178// LowerVECTOR_SHIFT - Lower a vector shift. Try to convert
2179// <VT> = SHL/SRA/SRL <VT> by <VT> to Hexagon specific
2180// <VT> = SHL/SRA/SRL <VT> by <IT/i32>.
2181static SDValue LowerVECTOR_SHIFT(SDValue Op, SelectionDAG &DAG) {
2182 BuildVectorSDNode *BVN = 0;
2183 SDValue V1 = Op.getOperand(0);
2184 SDValue V2 = Op.getOperand(1);
2185 SDValue V3;
2186 SDLoc dl(Op);
2187 EVT VT = Op.getValueType();
2188
2189 if ((BVN = dyn_cast<BuildVectorSDNode>(V1.getNode())) &&
2190 isCommonSplatElement(BVN))
2191 V3 = V2;
2192 else if ((BVN = dyn_cast<BuildVectorSDNode>(V2.getNode())) &&
2193 isCommonSplatElement(BVN))
2194 V3 = V1;
2195 else
2196 return SDValue();
2197
2198 SDValue CommonSplat = BVN->getOperand(0);
2199 SDValue Result;
2200
2201 if (VT.getSimpleVT() == MVT::v4i16) {
2202 switch (Op.getOpcode()) {
2203 case ISD::SRA:
2204 Result = DAG.getNode(HexagonISD::VSRAH, dl, VT, V3, CommonSplat);
2205 break;
2206 case ISD::SHL:
2207 Result = DAG.getNode(HexagonISD::VSHLH, dl, VT, V3, CommonSplat);
2208 break;
2209 case ISD::SRL:
2210 Result = DAG.getNode(HexagonISD::VSRLH, dl, VT, V3, CommonSplat);
2211 break;
2212 default:
2213 return SDValue();
2214 }
2215 } else if (VT.getSimpleVT() == MVT::v2i32) {
2216 switch (Op.getOpcode()) {
2217 case ISD::SRA:
2218 Result = DAG.getNode(HexagonISD::VSRAW, dl, VT, V3, CommonSplat);
2219 break;
2220 case ISD::SHL:
2221 Result = DAG.getNode(HexagonISD::VSHLW, dl, VT, V3, CommonSplat);
2222 break;
2223 case ISD::SRL:
2224 Result = DAG.getNode(HexagonISD::VSRLW, dl, VT, V3, CommonSplat);
2225 break;
2226 default:
2227 return SDValue();
2228 }
2229 } else {
2230 return SDValue();
2231 }
2232
2233 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
2234}
2235
2236SDValue
2237HexagonTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
2238 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
2239 SDLoc dl(Op);
2240 EVT VT = Op.getValueType();
2241
2242 unsigned Size = VT.getSizeInBits();
2243
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002244 // Only handle vectors of 64 bits or shorter.
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002245 if (Size > 64)
2246 return SDValue();
2247
2248 APInt APSplatBits, APSplatUndef;
2249 unsigned SplatBitSize;
2250 bool HasAnyUndefs;
2251 unsigned NElts = BVN->getNumOperands();
2252
2253 // Try to generate a SPLAT instruction.
2254 if ((VT.getSimpleVT() == MVT::v4i8 || VT.getSimpleVT() == MVT::v4i16) &&
2255 (BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
2256 HasAnyUndefs, 0, true) && SplatBitSize <= 16)) {
2257 unsigned SplatBits = APSplatBits.getZExtValue();
2258 int32_t SextVal = ((int32_t) (SplatBits << (32 - SplatBitSize)) >>
2259 (32 - SplatBitSize));
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002260 return createSplat(DAG, dl, VT, DAG.getConstant(SextVal, dl, MVT::i32));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002261 }
2262
2263 // Try to generate COMBINE to build v2i32 vectors.
2264 if (VT.getSimpleVT() == MVT::v2i32) {
2265 SDValue V0 = BVN->getOperand(0);
2266 SDValue V1 = BVN->getOperand(1);
2267
2268 if (V0.getOpcode() == ISD::UNDEF)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002269 V0 = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002270 if (V1.getOpcode() == ISD::UNDEF)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002271 V1 = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002272
2273 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(V0);
2274 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(V1);
2275 // If the element isn't a constant, it is in a register:
2276 // generate a COMBINE Register Register instruction.
2277 if (!C0 || !C1)
2278 return DAG.getNode(HexagonISD::COMBINE, dl, VT, V1, V0);
2279
2280 // If one of the operands is an 8 bit integer constant, generate
2281 // a COMBINE Immediate Immediate instruction.
2282 if (isInt<8>(C0->getSExtValue()) ||
2283 isInt<8>(C1->getSExtValue()))
2284 return DAG.getNode(HexagonISD::COMBINE, dl, VT, V1, V0);
2285 }
2286
2287 // Try to generate a S2_packhl to build v2i16 vectors.
2288 if (VT.getSimpleVT() == MVT::v2i16) {
2289 for (unsigned i = 0, e = NElts; i != e; ++i) {
2290 if (BVN->getOperand(i).getOpcode() == ISD::UNDEF)
2291 continue;
2292 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(BVN->getOperand(i));
2293 // If the element isn't a constant, it is in a register:
2294 // generate a S2_packhl instruction.
2295 if (!Cst) {
2296 SDValue pack = DAG.getNode(HexagonISD::PACKHL, dl, MVT::v4i16,
2297 BVN->getOperand(1), BVN->getOperand(0));
2298
2299 return DAG.getTargetExtractSubreg(Hexagon::subreg_loreg, dl, MVT::v2i16,
2300 pack);
2301 }
2302 }
2303 }
2304
2305 // In the general case, generate a CONST32 or a CONST64 for constant vectors,
2306 // and insert_vector_elt for all the other cases.
2307 uint64_t Res = 0;
2308 unsigned EltSize = Size / NElts;
2309 SDValue ConstVal;
2310 uint64_t Mask = ~uint64_t(0ULL) >> (64 - EltSize);
2311 bool HasNonConstantElements = false;
2312
2313 for (unsigned i = 0, e = NElts; i != e; ++i) {
2314 // LLVM's BUILD_VECTOR operands are in Little Endian mode, whereas Hexagon's
2315 // combine, const64, etc. are Big Endian.
2316 unsigned OpIdx = NElts - i - 1;
2317 SDValue Operand = BVN->getOperand(OpIdx);
2318 if (Operand.getOpcode() == ISD::UNDEF)
2319 continue;
2320
2321 int64_t Val = 0;
2322 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Operand))
2323 Val = Cst->getSExtValue();
2324 else
2325 HasNonConstantElements = true;
2326
2327 Val &= Mask;
2328 Res = (Res << EltSize) | Val;
2329 }
2330
2331 if (Size == 64)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002332 ConstVal = DAG.getConstant(Res, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002333 else
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002334 ConstVal = DAG.getConstant(Res, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002335
2336 // When there are non constant operands, add them with INSERT_VECTOR_ELT to
2337 // ConstVal, the constant part of the vector.
2338 if (HasNonConstantElements) {
2339 EVT EltVT = VT.getVectorElementType();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002340 SDValue Width = DAG.getConstant(EltVT.getSizeInBits(), dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002341 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002342 DAG.getConstant(32, dl, MVT::i64));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002343
2344 for (unsigned i = 0, e = NElts; i != e; ++i) {
2345 // LLVM's BUILD_VECTOR operands are in Little Endian mode, whereas Hexagon
2346 // is Big Endian.
2347 unsigned OpIdx = NElts - i - 1;
2348 SDValue Operand = BVN->getOperand(OpIdx);
Benjamin Kramer619c4e52015-04-10 11:24:51 +00002349 if (isa<ConstantSDNode>(Operand))
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002350 // This operand is already in ConstVal.
2351 continue;
2352
2353 if (VT.getSizeInBits() == 64 &&
2354 Operand.getValueType().getSizeInBits() == 32) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002355 SDValue C = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002356 Operand = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, Operand);
2357 }
2358
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002359 SDValue Idx = DAG.getConstant(OpIdx, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002360 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i64, Idx, Width);
2361 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2362 const SDValue Ops[] = {ConstVal, Operand, Combined};
2363
2364 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002365 ConstVal = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002366 else
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002367 ConstVal = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002368 }
2369 }
2370
2371 return DAG.getNode(ISD::BITCAST, dl, VT, ConstVal);
2372}
2373
2374SDValue
2375HexagonTargetLowering::LowerCONCAT_VECTORS(SDValue Op,
2376 SelectionDAG &DAG) const {
2377 SDLoc dl(Op);
Krzysztof Parzyszekc168c012015-12-03 16:47:20 +00002378 bool UseHVX = Subtarget.useHVXOps();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002379 EVT VT = Op.getValueType();
2380 unsigned NElts = Op.getNumOperands();
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002381 SDValue Vec0 = Op.getOperand(0);
2382 EVT VecVT = Vec0.getValueType();
2383 unsigned Width = VecVT.getSizeInBits();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002384
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002385 if (NElts == 2) {
2386 MVT ST = VecVT.getSimpleVT();
2387 // We are trying to concat two v2i16 to a single v4i16, or two v4i8
2388 // into a single v8i8.
2389 if (ST == MVT::v2i16 || ST == MVT::v4i8)
2390 return DAG.getNode(HexagonISD::COMBINE, dl, VT, Op.getOperand(1), Vec0);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002391
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002392 if (UseHVX) {
2393 assert((Width == 64*8 && Subtarget.useHVXSglOps()) ||
2394 (Width == 128*8 && Subtarget.useHVXDblOps()));
2395 SDValue Vec1 = Op.getOperand(1);
2396 MVT OpTy = Subtarget.useHVXSglOps() ? MVT::v16i32 : MVT::v32i32;
2397 MVT ReTy = Subtarget.useHVXSglOps() ? MVT::v32i32 : MVT::v64i32;
2398 SDValue B0 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec0);
2399 SDValue B1 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec1);
2400 SDValue VC = DAG.getNode(HexagonISD::VCOMBINE, dl, ReTy, B1, B0);
2401 return DAG.getNode(ISD::BITCAST, dl, VT, VC);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002402 }
2403 }
2404
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002405 if (VT.getSizeInBits() != 32 && VT.getSizeInBits() != 64)
2406 return SDValue();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002407
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002408 SDValue C0 = DAG.getConstant(0, dl, MVT::i64);
2409 SDValue C32 = DAG.getConstant(32, dl, MVT::i64);
2410 SDValue W = DAG.getConstant(Width, dl, MVT::i64);
2411 // Create the "width" part of the argument to insert_rp/insertp_rp.
2412 SDValue S = DAG.getNode(ISD::SHL, dl, MVT::i64, W, C32);
2413 SDValue V = C0;
2414
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002415 for (unsigned i = 0, e = NElts; i != e; ++i) {
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002416 unsigned N = NElts-i-1;
2417 SDValue OpN = Op.getOperand(N);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002418
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002419 if (VT.getSizeInBits() == 64 && OpN.getValueType().getSizeInBits() == 32) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002420 SDValue C = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002421 OpN = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, OpN);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002422 }
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002423 SDValue Idx = DAG.getConstant(N, dl, MVT::i64);
2424 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i64, Idx, W);
2425 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, S, Offset);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002426 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002427 V = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, {V, OpN, Or});
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002428 else
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002429 V = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, {V, OpN, Or});
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002430 }
2431
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002432 return DAG.getNode(ISD::BITCAST, dl, VT, V);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002433}
2434
2435SDValue
2436HexagonTargetLowering::LowerEXTRACT_VECTOR(SDValue Op,
2437 SelectionDAG &DAG) const {
2438 EVT VT = Op.getValueType();
2439 int VTN = VT.isVector() ? VT.getVectorNumElements() : 1;
2440 SDLoc dl(Op);
2441 SDValue Idx = Op.getOperand(1);
2442 SDValue Vec = Op.getOperand(0);
2443 EVT VecVT = Vec.getValueType();
2444 EVT EltVT = VecVT.getVectorElementType();
2445 int EltSize = EltVT.getSizeInBits();
2446 SDValue Width = DAG.getConstant(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT ?
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002447 EltSize : VTN * EltSize, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002448
2449 // Constant element number.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002450 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Idx)) {
2451 uint64_t X = CI->getZExtValue();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002452 SDValue Offset = DAG.getConstant(X * EltSize, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002453 const SDValue Ops[] = {Vec, Width, Offset};
2454
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002455 ConstantSDNode *CW = dyn_cast<ConstantSDNode>(Width);
2456 assert(CW && "Non constant width in LowerEXTRACT_VECTOR");
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002457
2458 SDValue N;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002459 MVT SVT = VecVT.getSimpleVT();
2460 uint64_t W = CW->getZExtValue();
2461
2462 if (W == 32) {
2463 // Translate this node into EXTRACT_SUBREG.
2464 unsigned Subreg = (X == 0) ? Hexagon::subreg_loreg : 0;
2465
2466 if (X == 0)
2467 Subreg = Hexagon::subreg_loreg;
2468 else if (SVT == MVT::v2i32 && X == 1)
2469 Subreg = Hexagon::subreg_hireg;
2470 else if (SVT == MVT::v4i16 && X == 2)
2471 Subreg = Hexagon::subreg_hireg;
2472 else if (SVT == MVT::v8i8 && X == 4)
2473 Subreg = Hexagon::subreg_hireg;
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002474 else
2475 llvm_unreachable("Bad offset");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002476 N = DAG.getTargetExtractSubreg(Subreg, dl, MVT::i32, Vec);
2477
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002478 } else if (VecVT.getSizeInBits() == 32) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002479 N = DAG.getNode(HexagonISD::EXTRACTU, dl, MVT::i32, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002480 } else {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002481 N = DAG.getNode(HexagonISD::EXTRACTU, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002482 if (VT.getSizeInBits() == 32)
2483 N = DAG.getTargetExtractSubreg(Hexagon::subreg_loreg, dl, MVT::i32, N);
2484 }
2485
2486 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2487 }
2488
2489 // Variable element number.
2490 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i32, Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002491 DAG.getConstant(EltSize, dl, MVT::i32));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002492 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002493 DAG.getConstant(32, dl, MVT::i64));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002494 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2495
2496 const SDValue Ops[] = {Vec, Combined};
2497
2498 SDValue N;
2499 if (VecVT.getSizeInBits() == 32) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002500 N = DAG.getNode(HexagonISD::EXTRACTURP, dl, MVT::i32, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002501 } else {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002502 N = DAG.getNode(HexagonISD::EXTRACTURP, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002503 if (VT.getSizeInBits() == 32)
2504 N = DAG.getTargetExtractSubreg(Hexagon::subreg_loreg, dl, MVT::i32, N);
2505 }
2506 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2507}
2508
2509SDValue
2510HexagonTargetLowering::LowerINSERT_VECTOR(SDValue Op,
2511 SelectionDAG &DAG) const {
2512 EVT VT = Op.getValueType();
2513 int VTN = VT.isVector() ? VT.getVectorNumElements() : 1;
2514 SDLoc dl(Op);
2515 SDValue Vec = Op.getOperand(0);
2516 SDValue Val = Op.getOperand(1);
2517 SDValue Idx = Op.getOperand(2);
2518 EVT VecVT = Vec.getValueType();
2519 EVT EltVT = VecVT.getVectorElementType();
2520 int EltSize = EltVT.getSizeInBits();
2521 SDValue Width = DAG.getConstant(Op.getOpcode() == ISD::INSERT_VECTOR_ELT ?
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002522 EltSize : VTN * EltSize, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002523
2524 if (ConstantSDNode *C = cast<ConstantSDNode>(Idx)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002525 SDValue Offset = DAG.getConstant(C->getSExtValue() * EltSize, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002526 const SDValue Ops[] = {Vec, Val, Width, Offset};
2527
2528 SDValue N;
2529 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002530 N = DAG.getNode(HexagonISD::INSERT, dl, MVT::i32, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002531 else
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002532 N = DAG.getNode(HexagonISD::INSERT, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002533
2534 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2535 }
2536
2537 // Variable element number.
2538 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i32, Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002539 DAG.getConstant(EltSize, dl, MVT::i32));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002540 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002541 DAG.getConstant(32, dl, MVT::i64));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002542 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2543
2544 if (VT.getSizeInBits() == 64 &&
2545 Val.getValueType().getSizeInBits() == 32) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002546 SDValue C = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002547 Val = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, Val);
2548 }
2549
2550 const SDValue Ops[] = {Vec, Val, Combined};
2551
2552 SDValue N;
2553 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002554 N = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002555 else
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002556 N = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002557
2558 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2559}
2560
Tim Northovera4415852013-08-06 09:12:35 +00002561bool
2562HexagonTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
2563 // Assuming the caller does not have either a signext or zeroext modifier, and
2564 // only one value is accepted, any reasonable truncation is allowed.
2565 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
2566 return false;
2567
2568 // FIXME: in principle up to 64-bit could be made safe, but it would be very
2569 // fragile at the moment: any support for multiple value returns would be
2570 // liable to disallow tail calls involving i64 -> iN truncation in many cases.
2571 return Ty1->getPrimitiveSizeInBits() <= 32;
2572}
2573
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002574SDValue
Jyotsna Verma5ed51812013-05-01 21:37:34 +00002575HexagonTargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
2576 SDValue Chain = Op.getOperand(0);
2577 SDValue Offset = Op.getOperand(1);
2578 SDValue Handler = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002579 SDLoc dl(Op);
Mehdi Amini44ede332015-07-09 02:09:04 +00002580 auto PtrVT = getPointerTy(DAG.getDataLayout());
Jyotsna Verma5ed51812013-05-01 21:37:34 +00002581
2582 // Mark function as containing a call to EH_RETURN.
2583 HexagonMachineFunctionInfo *FuncInfo =
2584 DAG.getMachineFunction().getInfo<HexagonMachineFunctionInfo>();
2585 FuncInfo->setHasEHReturn();
2586
2587 unsigned OffsetReg = Hexagon::R28;
2588
Mehdi Amini44ede332015-07-09 02:09:04 +00002589 SDValue StoreAddr =
2590 DAG.getNode(ISD::ADD, dl, PtrVT, DAG.getRegister(Hexagon::R30, PtrVT),
2591 DAG.getIntPtrConstant(4, dl));
Jyotsna Verma5ed51812013-05-01 21:37:34 +00002592 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
2593 false, false, 0);
2594 Chain = DAG.getCopyToReg(Chain, dl, OffsetReg, Offset);
2595
2596 // Not needed we already use it as explict input to EH_RETURN.
2597 // MF.getRegInfo().addLiveOut(OffsetReg);
2598
2599 return DAG.getNode(HexagonISD::EH_RETURN, dl, MVT::Other, Chain);
2600}
2601
2602SDValue
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002603HexagonTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002604 unsigned Opc = Op.getOpcode();
2605 switch (Opc) {
2606 default:
2607#ifndef NDEBUG
2608 Op.getNode()->dumpr(&DAG);
2609 if (Opc > HexagonISD::OP_BEGIN && Opc < HexagonISD::OP_END)
2610 errs() << "Check for a non-legal type in this operation\n";
2611#endif
2612 llvm_unreachable("Should not custom lower this!");
2613 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
2614 case ISD::INSERT_SUBVECTOR: return LowerINSERT_VECTOR(Op, DAG);
2615 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR(Op, DAG);
2616 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_VECTOR(Op, DAG);
2617 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR(Op, DAG);
2618 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
2619 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002620 case ISD::SRA:
2621 case ISD::SHL:
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002622 case ISD::SRL: return LowerVECTOR_SHIFT(Op, DAG);
2623 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00002624 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002625 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
2626 // Frame & Return address. Currently unimplemented.
2627 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
2628 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
2629 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG);
2630 case ISD::GlobalAddress: return LowerGLOBALADDRESS(Op, DAG);
2631 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00002632 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002633 case ISD::VASTART: return LowerVASTART(Op, DAG);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002634 // Custom lower some vector loads.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002635 case ISD::LOAD: return LowerLOAD(Op, DAG);
2636 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
2637 case ISD::SETCC: return LowerSETCC(Op, DAG);
2638 case ISD::VSELECT: return LowerVSELECT(Op, DAG);
2639 case ISD::CTPOP: return LowerCTPOP(Op, DAG);
2640 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00002641 case ISD::INTRINSIC_VOID: return LowerINTRINSIC_VOID(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002642 case ISD::INLINEASM: return LowerINLINEASM(Op, DAG);
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00002643 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002644 }
2645}
2646
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00002647/// Returns relocation base for the given PIC jumptable.
2648SDValue
2649HexagonTargetLowering::getPICJumpTableRelocBase(SDValue Table,
2650 SelectionDAG &DAG) const {
2651 int Idx = cast<JumpTableSDNode>(Table)->getIndex();
2652 EVT VT = Table.getValueType();
2653 SDValue T = DAG.getTargetJumpTable(Idx, VT, HexagonII::MO_PCREL);
2654 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Table), VT, T);
2655}
2656
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002657MachineBasicBlock *
2658HexagonTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
2659 MachineBasicBlock *BB)
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00002660 const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002661 switch (MI->getOpcode()) {
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00002662 case Hexagon::ALLOCA: {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002663 MachineFunction *MF = BB->getParent();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00002664 auto *FuncInfo = MF->getInfo<HexagonMachineFunctionInfo>();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002665 FuncInfo->addAllocaAdjustInst(MI);
2666 return BB;
2667 }
Craig Toppere55c5562012-02-07 02:50:20 +00002668 default: llvm_unreachable("Unexpected instr type to insert");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002669 } // switch
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002670}
2671
2672//===----------------------------------------------------------------------===//
2673// Inline Assembly Support
2674//===----------------------------------------------------------------------===//
2675
Eric Christopher11e4df72015-02-26 22:38:43 +00002676std::pair<unsigned, const TargetRegisterClass *>
2677HexagonTargetLowering::getRegForInlineAsmConstraint(
Benjamin Kramer9bfb6272015-07-05 19:29:18 +00002678 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002679 bool UseHVX = Subtarget.useHVXOps(), UseHVXDbl = Subtarget.useHVXDblOps();
2680
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002681 if (Constraint.size() == 1) {
2682 switch (Constraint[0]) {
2683 case 'r': // R0-R31
Chad Rosier295bd432013-06-22 18:37:38 +00002684 switch (VT.SimpleTy) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002685 default:
Craig Toppere55c5562012-02-07 02:50:20 +00002686 llvm_unreachable("getRegForInlineAsmConstraint Unhandled data type");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002687 case MVT::i32:
2688 case MVT::i16:
2689 case MVT::i8:
Sirish Pande69295b82012-05-10 20:20:25 +00002690 case MVT::f32:
Craig Topperc7242e02012-04-20 07:30:17 +00002691 return std::make_pair(0U, &Hexagon::IntRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002692 case MVT::i64:
Sirish Pande69295b82012-05-10 20:20:25 +00002693 case MVT::f64:
Craig Topperc7242e02012-04-20 07:30:17 +00002694 return std::make_pair(0U, &Hexagon::DoubleRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002695 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002696 case 'q': // q0-q3
2697 switch (VT.SimpleTy) {
2698 default:
2699 llvm_unreachable("getRegForInlineAsmConstraint Unhandled data type");
2700 case MVT::v1024i1:
2701 case MVT::v512i1:
2702 case MVT::v32i16:
2703 case MVT::v16i32:
2704 case MVT::v64i8:
2705 case MVT::v8i64:
2706 return std::make_pair(0U, &Hexagon::VecPredRegsRegClass);
2707 }
2708 case 'v': // V0-V31
2709 switch (VT.SimpleTy) {
2710 default:
2711 llvm_unreachable("getRegForInlineAsmConstraint Unhandled data type");
2712 case MVT::v16i32:
2713 case MVT::v32i16:
2714 case MVT::v64i8:
2715 case MVT::v8i64:
2716 return std::make_pair(0U, &Hexagon::VectorRegsRegClass);
2717 case MVT::v32i32:
2718 case MVT::v64i16:
2719 case MVT::v16i64:
2720 case MVT::v128i8:
2721 if (Subtarget.hasV60TOps() && UseHVX && UseHVXDbl)
2722 return std::make_pair(0U, &Hexagon::VectorRegs128BRegClass);
2723 else
2724 return std::make_pair(0U, &Hexagon::VecDblRegsRegClass);
2725 case MVT::v256i8:
2726 case MVT::v128i16:
2727 case MVT::v64i32:
2728 case MVT::v32i64:
2729 return std::make_pair(0U, &Hexagon::VecDblRegs128BRegClass);
2730 }
2731
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002732 default:
Craig Toppere55c5562012-02-07 02:50:20 +00002733 llvm_unreachable("Unknown asm register class");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002734 }
2735 }
2736
Eric Christopher11e4df72015-02-26 22:38:43 +00002737 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002738}
2739
Sirish Pande69295b82012-05-10 20:20:25 +00002740/// isFPImmLegal - Returns true if the target can instruction select the
2741/// specified FP immediate natively. If false, the legalizer will
2742/// materialize the FP immediate as a load from a constant pool.
2743bool HexagonTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002744 return Subtarget.hasV5TOps();
Sirish Pande69295b82012-05-10 20:20:25 +00002745}
2746
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002747/// isLegalAddressingMode - Return true if the addressing mode represented by
2748/// AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +00002749bool HexagonTargetLowering::isLegalAddressingMode(const DataLayout &DL,
2750 const AddrMode &AM, Type *Ty,
Matt Arsenaultbd7d80a2015-06-01 05:31:59 +00002751 unsigned AS) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002752 // Allows a signed-extended 11-bit immediate field.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002753 if (AM.BaseOffs <= -(1LL << 13) || AM.BaseOffs >= (1LL << 13)-1)
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002754 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002755
2756 // No global is ever allowed as a base.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002757 if (AM.BaseGV)
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002758 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002759
2760 int Scale = AM.Scale;
2761 if (Scale < 0) Scale = -Scale;
2762 switch (Scale) {
2763 case 0: // No scale reg, "r+i", "r", or just "i".
2764 break;
2765 default: // No scaled addressing mode.
2766 return false;
2767 }
2768 return true;
2769}
2770
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00002771/// Return true if folding a constant offset with the given GlobalAddress is
2772/// legal. It is frequently not legal in PIC relocation models.
2773bool HexagonTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA)
2774 const {
2775 return HTM.getRelocationModel() == Reloc::Static;
2776}
2777
2778
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002779/// isLegalICmpImmediate - Return true if the specified immediate is legal
2780/// icmp immediate, that is the target has icmp instructions which can compare
2781/// a register against the immediate without having to materialize the
2782/// immediate into a register.
2783bool HexagonTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
2784 return Imm >= -512 && Imm <= 511;
2785}
2786
2787/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2788/// for tail call optimization. Targets which want to do tail call
2789/// optimization should implement this function.
2790bool HexagonTargetLowering::IsEligibleForTailCallOptimization(
2791 SDValue Callee,
2792 CallingConv::ID CalleeCC,
2793 bool isVarArg,
2794 bool isCalleeStructRet,
2795 bool isCallerStructRet,
2796 const SmallVectorImpl<ISD::OutputArg> &Outs,
2797 const SmallVectorImpl<SDValue> &OutVals,
2798 const SmallVectorImpl<ISD::InputArg> &Ins,
2799 SelectionDAG& DAG) const {
2800 const Function *CallerF = DAG.getMachineFunction().getFunction();
2801 CallingConv::ID CallerCC = CallerF->getCallingConv();
2802 bool CCMatch = CallerCC == CalleeCC;
2803
2804 // ***************************************************************************
2805 // Look for obvious safe cases to perform tail call optimization that do not
2806 // require ABI changes.
2807 // ***************************************************************************
2808
2809 // If this is a tail call via a function pointer, then don't do it!
Craig Topper66059c92015-11-18 07:07:59 +00002810 if (!(isa<GlobalAddressSDNode>(Callee)) &&
2811 !(isa<ExternalSymbolSDNode>(Callee))) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002812 return false;
2813 }
2814
2815 // Do not optimize if the calling conventions do not match.
2816 if (!CCMatch)
2817 return false;
2818
2819 // Do not tail call optimize vararg calls.
2820 if (isVarArg)
2821 return false;
2822
2823 // Also avoid tail call optimization if either caller or callee uses struct
2824 // return semantics.
2825 if (isCalleeStructRet || isCallerStructRet)
2826 return false;
2827
2828 // In addition to the cases above, we also disable Tail Call Optimization if
2829 // the calling convention code that at least one outgoing argument needs to
2830 // go on the stack. We cannot check that here because at this point that
2831 // information is not available.
2832 return true;
2833}
Colin LeMahieu025f8602014-12-08 21:19:18 +00002834
2835// Return true when the given node fits in a positive half word.
2836bool llvm::isPositiveHalfWord(SDNode *N) {
2837 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
2838 if (CN && CN->getSExtValue() > 0 && isInt<16>(CN->getSExtValue()))
2839 return true;
2840
2841 switch (N->getOpcode()) {
2842 default:
2843 return false;
2844 case ISD::SIGN_EXTEND_INREG:
2845 return true;
2846 }
2847}
Krzysztof Parzyszekfeaf7b82015-07-09 14:51:21 +00002848
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002849std::pair<const TargetRegisterClass*, uint8_t>
2850HexagonTargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
2851 MVT VT) const {
2852 const TargetRegisterClass *RRC = nullptr;
2853
2854 uint8_t Cost = 1;
2855 switch (VT.SimpleTy) {
2856 default:
2857 return TargetLowering::findRepresentativeClass(TRI, VT);
2858 case MVT::v64i8:
2859 case MVT::v32i16:
2860 case MVT::v16i32:
2861 case MVT::v8i64:
2862 RRC = &Hexagon::VectorRegsRegClass;
2863 break;
2864 case MVT::v128i8:
2865 case MVT::v64i16:
2866 case MVT::v32i32:
2867 case MVT::v16i64:
2868 if (Subtarget.hasV60TOps() && Subtarget.useHVXOps() &&
2869 Subtarget.useHVXDblOps())
2870 RRC = &Hexagon::VectorRegs128BRegClass;
2871 else
2872 RRC = &Hexagon::VecDblRegsRegClass;
2873 break;
2874 case MVT::v256i8:
2875 case MVT::v128i16:
2876 case MVT::v64i32:
2877 case MVT::v32i64:
2878 RRC = &Hexagon::VecDblRegs128BRegClass;
2879 break;
2880 }
2881 return std::make_pair(RRC, Cost);
2882}
2883
Krzysztof Parzyszekfeaf7b82015-07-09 14:51:21 +00002884Value *HexagonTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
2885 AtomicOrdering Ord) const {
2886 BasicBlock *BB = Builder.GetInsertBlock();
2887 Module *M = BB->getParent()->getParent();
2888 Type *Ty = cast<PointerType>(Addr->getType())->getElementType();
2889 unsigned SZ = Ty->getPrimitiveSizeInBits();
2890 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic loads supported");
2891 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_L2_loadw_locked
2892 : Intrinsic::hexagon_L4_loadd_locked;
2893 Value *Fn = Intrinsic::getDeclaration(M, IntID);
2894 return Builder.CreateCall(Fn, Addr, "larx");
2895}
2896
2897/// Perform a store-conditional operation to Addr. Return the status of the
2898/// store. This should be 0 if the store succeeded, non-zero otherwise.
2899Value *HexagonTargetLowering::emitStoreConditional(IRBuilder<> &Builder,
2900 Value *Val, Value *Addr, AtomicOrdering Ord) const {
2901 BasicBlock *BB = Builder.GetInsertBlock();
2902 Module *M = BB->getParent()->getParent();
2903 Type *Ty = Val->getType();
2904 unsigned SZ = Ty->getPrimitiveSizeInBits();
2905 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic stores supported");
2906 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_S2_storew_locked
2907 : Intrinsic::hexagon_S4_stored_locked;
2908 Value *Fn = Intrinsic::getDeclaration(M, IntID);
2909 Value *Call = Builder.CreateCall(Fn, {Addr, Val}, "stcx");
2910 Value *Cmp = Builder.CreateICmpEQ(Call, Builder.getInt32(0), "");
2911 Value *Ext = Builder.CreateZExt(Cmp, Type::getInt32Ty(M->getContext()));
2912 return Ext;
2913}
2914
Ahmed Bougacha52468672015-09-11 17:08:28 +00002915TargetLowering::AtomicExpansionKind
2916HexagonTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
Krzysztof Parzyszekfeaf7b82015-07-09 14:51:21 +00002917 // Do not expand loads and stores that don't exceed 64 bits.
Ahmed Bougacha52468672015-09-11 17:08:28 +00002918 return LI->getType()->getPrimitiveSizeInBits() > 64
Tim Northoverf520eff2015-12-02 18:12:57 +00002919 ? AtomicExpansionKind::LLOnly
Ahmed Bougacha52468672015-09-11 17:08:28 +00002920 : AtomicExpansionKind::None;
Krzysztof Parzyszekfeaf7b82015-07-09 14:51:21 +00002921}
2922
2923bool HexagonTargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
2924 // Do not expand loads and stores that don't exceed 64 bits.
2925 return SI->getValueOperand()->getType()->getPrimitiveSizeInBits() > 64;
2926}