blob: fcde4224a0075f3d6f0b85850786c93f3a914adb [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"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000016#include "Hexagon.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000017#include "HexagonMachineFunctionInfo.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000018#include "HexagonRegisterInfo.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000019#include "HexagonSubtarget.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "HexagonTargetMachine.h"
21#include "HexagonTargetObjectFile.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000022#include "llvm/ADT/APInt.h"
23#include "llvm/ADT/ArrayRef.h"
24#include "llvm/ADT/SmallVector.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000025#include "llvm/CodeGen/CallingConvLower.h"
26#include "llvm/CodeGen/MachineFrameInfo.h"
27#include "llvm/CodeGen/MachineFunction.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000028#include "llvm/CodeGen/MachineMemOperand.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000029#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000030#include "llvm/CodeGen/RuntimeLibcalls.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000031#include "llvm/CodeGen/SelectionDAG.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000032#include "llvm/CodeGen/ValueTypes.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000033#include "llvm/IR/BasicBlock.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/CallingConv.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000035#include "llvm/IR/DataLayout.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000036#include "llvm/IR/DerivedTypes.h"
37#include "llvm/IR/Function.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000038#include "llvm/IR/GlobalValue.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000039#include "llvm/IR/InlineAsm.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000040#include "llvm/IR/Instructions.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000041#include "llvm/IR/Intrinsics.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000042#include "llvm/IR/Module.h"
43#include "llvm/IR/Type.h"
44#include "llvm/IR/Value.h"
45#include "llvm/MC/MCRegisterInfo.h"
46#include "llvm/Support/Casting.h"
47#include "llvm/Support/CodeGen.h"
NAKAMURA Takumi54eed762012-04-21 15:31:36 +000048#include "llvm/Support/CommandLine.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000049#include "llvm/Support/Debug.h"
50#include "llvm/Support/ErrorHandling.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000051#include "llvm/Support/MathExtras.h"
NAKAMURA Takumie30303f2012-04-21 15:31:45 +000052#include "llvm/Support/raw_ostream.h"
Eugene Zelenko58655bb2016-12-17 01:09:05 +000053#include "llvm/Target/TargetCallingConv.h"
54#include "llvm/Target/TargetMachine.h"
55#include <algorithm>
56#include <cassert>
57#include <cstddef>
58#include <cstdint>
59#include <limits>
60#include <utility>
NAKAMURA Takumi54eed762012-04-21 15:31:36 +000061
Craig Topperb25fda92012-03-17 18:46:09 +000062using namespace llvm;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000063
Chandler Carruthe96dd892014-04-21 22:55:11 +000064#define DEBUG_TYPE "hexagon-lowering"
65
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +000066static cl::opt<bool> EmitJumpTables("hexagon-emit-jump-tables",
67 cl::init(true), cl::Hidden,
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +000068 cl::desc("Control jump table emission on Hexagon target"));
69
70static cl::opt<bool> EnableHexSDNodeSched("enable-hexagon-sdnode-sched",
71 cl::Hidden, cl::ZeroOrMore, cl::init(false),
72 cl::desc("Enable Hexagon SDNode scheduling"));
73
74static cl::opt<bool> EnableFastMath("ffast-math",
75 cl::Hidden, cl::ZeroOrMore, cl::init(false),
76 cl::desc("Enable Fast Math processing"));
77
78static cl::opt<int> MinimumJumpTables("minimum-jump-tables",
79 cl::Hidden, cl::ZeroOrMore, cl::init(5),
80 cl::desc("Set minimum jump tables"));
81
82static cl::opt<int> MaxStoresPerMemcpyCL("max-store-memcpy",
83 cl::Hidden, cl::ZeroOrMore, cl::init(6),
84 cl::desc("Max #stores to inline memcpy"));
85
86static cl::opt<int> MaxStoresPerMemcpyOptSizeCL("max-store-memcpy-Os",
87 cl::Hidden, cl::ZeroOrMore, cl::init(4),
88 cl::desc("Max #stores to inline memcpy"));
89
90static cl::opt<int> MaxStoresPerMemmoveCL("max-store-memmove",
91 cl::Hidden, cl::ZeroOrMore, cl::init(6),
92 cl::desc("Max #stores to inline memmove"));
93
94static cl::opt<int> MaxStoresPerMemmoveOptSizeCL("max-store-memmove-Os",
95 cl::Hidden, cl::ZeroOrMore, cl::init(4),
96 cl::desc("Max #stores to inline memmove"));
97
98static cl::opt<int> MaxStoresPerMemsetCL("max-store-memset",
99 cl::Hidden, cl::ZeroOrMore, cl::init(8),
100 cl::desc("Max #stores to inline memset"));
101
102static cl::opt<int> MaxStoresPerMemsetOptSizeCL("max-store-memset-Os",
103 cl::Hidden, cl::ZeroOrMore, cl::init(4),
104 cl::desc("Max #stores to inline memset"));
105
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000106
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000107namespace {
Eugene Zelenko58655bb2016-12-17 01:09:05 +0000108
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +0000109 class HexagonCCState : public CCState {
110 unsigned NumNamedVarArgParams;
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000111
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +0000112 public:
113 HexagonCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
114 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
115 int NumNamedVarArgParams)
116 : CCState(CC, isVarArg, MF, locs, C),
117 NumNamedVarArgParams(NumNamedVarArgParams) {}
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000118
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +0000119 unsigned getNumNamedVarArgParams() const { return NumNamedVarArgParams; }
120 };
121
122 enum StridedLoadKind {
123 Even = 0,
124 Odd,
125 NoPattern
126 };
Eugene Zelenko58655bb2016-12-17 01:09:05 +0000127
128} // end anonymous namespace
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000129
130// Implement calling convention for Hexagon.
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000131
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000132static bool isHvxVectorType(MVT ty);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000133
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000134static bool
135CC_Hexagon(unsigned ValNo, MVT ValVT,
136 MVT LocVT, CCValAssign::LocInfo LocInfo,
137 ISD::ArgFlagsTy ArgFlags, CCState &State);
138
139static bool
140CC_Hexagon32(unsigned ValNo, MVT ValVT,
141 MVT LocVT, CCValAssign::LocInfo LocInfo,
142 ISD::ArgFlagsTy ArgFlags, CCState &State);
143
144static bool
145CC_Hexagon64(unsigned ValNo, MVT ValVT,
146 MVT LocVT, CCValAssign::LocInfo LocInfo,
147 ISD::ArgFlagsTy ArgFlags, CCState &State);
148
149static bool
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000150CC_HexagonVector(unsigned ValNo, MVT ValVT,
151 MVT LocVT, CCValAssign::LocInfo LocInfo,
152 ISD::ArgFlagsTy ArgFlags, CCState &State);
153
154static bool
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000155RetCC_Hexagon(unsigned ValNo, MVT ValVT,
156 MVT LocVT, CCValAssign::LocInfo LocInfo,
157 ISD::ArgFlagsTy ArgFlags, CCState &State);
158
159static bool
160RetCC_Hexagon32(unsigned ValNo, MVT ValVT,
161 MVT LocVT, CCValAssign::LocInfo LocInfo,
162 ISD::ArgFlagsTy ArgFlags, CCState &State);
163
164static bool
165RetCC_Hexagon64(unsigned ValNo, MVT ValVT,
166 MVT LocVT, CCValAssign::LocInfo LocInfo,
167 ISD::ArgFlagsTy ArgFlags, CCState &State);
168
169static bool
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000170RetCC_HexagonVector(unsigned ValNo, MVT ValVT,
171 MVT LocVT, CCValAssign::LocInfo LocInfo,
172 ISD::ArgFlagsTy ArgFlags, CCState &State);
173
174static bool
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000175CC_Hexagon_VarArg (unsigned ValNo, MVT ValVT,
176 MVT LocVT, CCValAssign::LocInfo LocInfo,
177 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000178 HexagonCCState &HState = static_cast<HexagonCCState &>(State);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000179
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000180 if (ValNo < HState.getNumNamedVarArgParams()) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000181 // Deal with named arguments.
182 return CC_Hexagon(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State);
183 }
184
185 // Deal with un-named arguments.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000186 unsigned Offset;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000187 if (ArgFlags.isByVal()) {
188 // If pass-by-value, the size allocated on stack is decided
189 // by ArgFlags.getByValSize(), not by the size of LocVT.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000190 Offset = State.AllocateStack(ArgFlags.getByValSize(),
191 ArgFlags.getByValAlign());
192 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000193 return false;
194 }
Jyotsna Vermac7dcc2f2013-03-07 20:28:34 +0000195 if (LocVT == MVT::i1 || LocVT == MVT::i8 || LocVT == MVT::i16) {
196 LocVT = MVT::i32;
197 ValVT = MVT::i32;
198 if (ArgFlags.isSExt())
199 LocInfo = CCValAssign::SExt;
200 else if (ArgFlags.isZExt())
201 LocInfo = CCValAssign::ZExt;
202 else
203 LocInfo = CCValAssign::AExt;
204 }
Sirish Pande69295b82012-05-10 20:20:25 +0000205 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000206 Offset = State.AllocateStack(4, 4);
207 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000208 return false;
209 }
Sirish Pande69295b82012-05-10 20:20:25 +0000210 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000211 Offset = State.AllocateStack(8, 8);
212 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000213 return false;
214 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000215 if (LocVT == MVT::v2i64 || LocVT == MVT::v4i32 || LocVT == MVT::v8i16 ||
216 LocVT == MVT::v16i8) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000217 Offset = State.AllocateStack(16, 16);
218 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000219 return false;
220 }
221 if (LocVT == MVT::v4i64 || LocVT == MVT::v8i32 || LocVT == MVT::v16i16 ||
222 LocVT == MVT::v32i8) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000223 Offset = State.AllocateStack(32, 32);
224 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000225 return false;
226 }
227 if (LocVT == MVT::v8i64 || LocVT == MVT::v16i32 || LocVT == MVT::v32i16 ||
228 LocVT == MVT::v64i8 || LocVT == MVT::v512i1) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000229 Offset = State.AllocateStack(64, 64);
230 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000231 return false;
232 }
233 if (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
234 LocVT == MVT::v128i8 || LocVT == MVT::v1024i1) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000235 Offset = State.AllocateStack(128, 128);
236 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000237 return false;
238 }
239 if (LocVT == MVT::v32i64 || LocVT == MVT::v64i32 || LocVT == MVT::v128i16 ||
240 LocVT == MVT::v256i8) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000241 Offset = State.AllocateStack(256, 256);
242 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000243 return false;
244 }
245
Craig Toppere73658d2014-04-28 04:05:08 +0000246 llvm_unreachable(nullptr);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000247}
248
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000249static bool CC_Hexagon (unsigned ValNo, MVT ValVT, MVT LocVT,
250 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, CCState &State) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000251 if (ArgFlags.isByVal()) {
252 // Passed on stack.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000253 unsigned Offset = State.AllocateStack(ArgFlags.getByValSize(),
254 ArgFlags.getByValAlign());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000255 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
256 return false;
257 }
258
Krzysztof Parzyszek8f23dd62017-03-01 17:30:10 +0000259 if (LocVT == MVT::i1) {
260 LocVT = MVT::i32;
261 } else if (LocVT == MVT::i8 || LocVT == MVT::i16) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000262 LocVT = MVT::i32;
263 ValVT = MVT::i32;
264 if (ArgFlags.isSExt())
265 LocInfo = CCValAssign::SExt;
266 else if (ArgFlags.isZExt())
267 LocInfo = CCValAssign::ZExt;
268 else
269 LocInfo = CCValAssign::AExt;
Krzysztof Parzyszek42113342015-03-19 16:33:08 +0000270 } else if (LocVT == MVT::v4i8 || LocVT == MVT::v2i16) {
271 LocVT = MVT::i32;
272 LocInfo = CCValAssign::BCvt;
273 } else if (LocVT == MVT::v8i8 || LocVT == MVT::v4i16 || LocVT == MVT::v2i32) {
274 LocVT = MVT::i64;
275 LocInfo = CCValAssign::BCvt;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000276 }
277
Sirish Pande69295b82012-05-10 20:20:25 +0000278 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000279 if (!CC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
280 return false;
281 }
282
Sirish Pande69295b82012-05-10 20:20:25 +0000283 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000284 if (!CC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
285 return false;
286 }
287
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000288 if (LocVT == MVT::v8i32 || LocVT == MVT::v16i16 || LocVT == MVT::v32i8) {
289 unsigned Offset = State.AllocateStack(ArgFlags.getByValSize(), 32);
290 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
291 return false;
292 }
293
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000294 if (isHvxVectorType(LocVT)) {
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000295 if (!CC_HexagonVector(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
296 return false;
297 }
298
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000299 return true; // CC didn't match.
300}
301
302
303static bool CC_Hexagon32(unsigned ValNo, MVT ValVT,
304 MVT LocVT, CCValAssign::LocInfo LocInfo,
305 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Craig Topper840beec2014-04-04 05:16:06 +0000306 static const MCPhysReg RegList[] = {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000307 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
308 Hexagon::R5
309 };
Tim Northover3b6b7ca2015-02-21 02:11:17 +0000310 if (unsigned Reg = State.AllocateReg(RegList)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000311 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
312 return false;
313 }
314
315 unsigned Offset = State.AllocateStack(4, 4);
316 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
317 return false;
318}
319
320static bool CC_Hexagon64(unsigned ValNo, MVT ValVT,
321 MVT LocVT, CCValAssign::LocInfo LocInfo,
322 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000323 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
324 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
325 return false;
326 }
327
Craig Topper840beec2014-04-04 05:16:06 +0000328 static const MCPhysReg RegList1[] = {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000329 Hexagon::D1, Hexagon::D2
330 };
Craig Topper840beec2014-04-04 05:16:06 +0000331 static const MCPhysReg RegList2[] = {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000332 Hexagon::R1, Hexagon::R3
333 };
Tim Northover3b6b7ca2015-02-21 02:11:17 +0000334 if (unsigned Reg = State.AllocateReg(RegList1, RegList2)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000335 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
336 return false;
337 }
338
339 unsigned Offset = State.AllocateStack(8, 8, Hexagon::D2);
340 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
341 return false;
342}
343
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000344static bool CC_HexagonVector(unsigned ValNo, MVT ValVT,
345 MVT LocVT, CCValAssign::LocInfo LocInfo,
346 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000347 static const MCPhysReg VecLstS[] = {
348 Hexagon::V0, Hexagon::V1, Hexagon::V2, Hexagon::V3, Hexagon::V4,
349 Hexagon::V5, Hexagon::V6, Hexagon::V7, Hexagon::V8, Hexagon::V9,
350 Hexagon::V10, Hexagon::V11, Hexagon::V12, Hexagon::V13, Hexagon::V14,
351 Hexagon::V15
352 };
353 static const MCPhysReg VecLstD[] = {
354 Hexagon::W0, Hexagon::W1, Hexagon::W2, Hexagon::W3, Hexagon::W4,
355 Hexagon::W5, Hexagon::W6, Hexagon::W7
356 };
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000357 auto &MF = State.getMachineFunction();
358 auto &HST = MF.getSubtarget<HexagonSubtarget>();
359 bool UseHVX = HST.useHVXOps();
360 bool UseHVXDbl = HST.useHVXDblOps();
361
362 if ((UseHVX && !UseHVXDbl) &&
363 (LocVT == MVT::v8i64 || LocVT == MVT::v16i32 || LocVT == MVT::v32i16 ||
364 LocVT == MVT::v64i8 || LocVT == MVT::v512i1)) {
365 if (unsigned Reg = State.AllocateReg(VecLstS)) {
366 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
367 return false;
368 }
369 unsigned Offset = State.AllocateStack(64, 64);
370 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
371 return false;
372 }
373 if ((UseHVX && !UseHVXDbl) &&
374 (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
375 LocVT == MVT::v128i8)) {
376 if (unsigned Reg = State.AllocateReg(VecLstD)) {
377 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
378 return false;
379 }
380 unsigned Offset = State.AllocateStack(128, 128);
381 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
382 return false;
383 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000384 if ((UseHVX && UseHVXDbl) &&
385 (LocVT == MVT::v32i64 || LocVT == MVT::v64i32 || LocVT == MVT::v128i16 ||
386 LocVT == MVT::v256i8)) {
387 if (unsigned Reg = State.AllocateReg(VecLstD)) {
388 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
389 return false;
390 }
391 unsigned Offset = State.AllocateStack(256, 256);
392 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
393 return false;
394 }
395 if ((UseHVX && UseHVXDbl) &&
396 (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
397 LocVT == MVT::v128i8 || LocVT == MVT::v1024i1)) {
398 if (unsigned Reg = State.AllocateReg(VecLstS)) {
399 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
400 return false;
401 }
402 unsigned Offset = State.AllocateStack(128, 128);
403 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
404 return false;
405 }
406 return true;
407}
408
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000409static bool RetCC_Hexagon(unsigned ValNo, MVT ValVT,
410 MVT LocVT, CCValAssign::LocInfo LocInfo,
411 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000412 auto &MF = State.getMachineFunction();
413 auto &HST = MF.getSubtarget<HexagonSubtarget>();
414 bool UseHVX = HST.useHVXOps();
415 bool UseHVXDbl = HST.useHVXDblOps();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000416
Krzysztof Parzyszek51155fc2016-03-04 17:38:05 +0000417 if (LocVT == MVT::i1) {
418 // Return values of type MVT::i1 still need to be assigned to R0, but
419 // the value type needs to remain i1. LowerCallResult will deal with it,
420 // but it needs to recognize i1 as the value type.
421 LocVT = MVT::i32;
422 } else if (LocVT == MVT::i8 || LocVT == MVT::i16) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000423 LocVT = MVT::i32;
424 ValVT = MVT::i32;
425 if (ArgFlags.isSExt())
426 LocInfo = CCValAssign::SExt;
427 else if (ArgFlags.isZExt())
428 LocInfo = CCValAssign::ZExt;
429 else
430 LocInfo = CCValAssign::AExt;
Krzysztof Parzyszek42113342015-03-19 16:33:08 +0000431 } else if (LocVT == MVT::v4i8 || LocVT == MVT::v2i16) {
432 LocVT = MVT::i32;
433 LocInfo = CCValAssign::BCvt;
434 } else if (LocVT == MVT::v8i8 || LocVT == MVT::v4i16 || LocVT == MVT::v2i32) {
435 LocVT = MVT::i64;
436 LocInfo = CCValAssign::BCvt;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000437 } else if (LocVT == MVT::v64i8 || LocVT == MVT::v32i16 ||
438 LocVT == MVT::v16i32 || LocVT == MVT::v8i64 ||
439 LocVT == MVT::v512i1) {
440 LocVT = MVT::v16i32;
441 ValVT = MVT::v16i32;
442 LocInfo = CCValAssign::Full;
443 } else if (LocVT == MVT::v128i8 || LocVT == MVT::v64i16 ||
444 LocVT == MVT::v32i32 || LocVT == MVT::v16i64 ||
445 (LocVT == MVT::v1024i1 && UseHVX && UseHVXDbl)) {
446 LocVT = MVT::v32i32;
447 ValVT = MVT::v32i32;
448 LocInfo = CCValAssign::Full;
449 } else if (LocVT == MVT::v256i8 || LocVT == MVT::v128i16 ||
450 LocVT == MVT::v64i32 || LocVT == MVT::v32i64) {
451 LocVT = MVT::v64i32;
452 ValVT = MVT::v64i32;
453 LocInfo = CCValAssign::Full;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000454 }
Sirish Pande69295b82012-05-10 20:20:25 +0000455 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000456 if (!RetCC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000457 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000458 }
459
Sirish Pande69295b82012-05-10 20:20:25 +0000460 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000461 if (!RetCC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000462 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000463 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000464 if (LocVT == MVT::v16i32 || LocVT == MVT::v32i32 || LocVT == MVT::v64i32) {
465 if (!RetCC_HexagonVector(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000466 return false;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000467 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000468 return true; // CC didn't match.
469}
470
471static bool RetCC_Hexagon32(unsigned ValNo, MVT ValVT,
472 MVT LocVT, CCValAssign::LocInfo LocInfo,
473 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Sirish Pande69295b82012-05-10 20:20:25 +0000474 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
Krzysztof Parzyszek14412ef2016-07-18 17:36:46 +0000475 // Note that use of registers beyond R1 is not ABI compliant. However there
476 // are (experimental) IR passes which generate internal functions that
477 // return structs using these additional registers.
478 static const uint16_t RegList[] = { Hexagon::R0, Hexagon::R1,
479 Hexagon::R2, Hexagon::R3,
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000480 Hexagon::R4, Hexagon::R5 };
Krzysztof Parzyszek14412ef2016-07-18 17:36:46 +0000481 if (unsigned Reg = State.AllocateReg(RegList)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000482 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
483 return false;
484 }
485 }
486
Krzysztof Parzyszek56199522017-04-13 15:05:51 +0000487 return true;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000488}
489
490static bool RetCC_Hexagon64(unsigned ValNo, MVT ValVT,
491 MVT LocVT, CCValAssign::LocInfo LocInfo,
492 ISD::ArgFlagsTy ArgFlags, CCState &State) {
Sirish Pande69295b82012-05-10 20:20:25 +0000493 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000494 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
495 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
496 return false;
497 }
498 }
499
Krzysztof Parzyszek56199522017-04-13 15:05:51 +0000500 return true;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000501}
502
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000503static bool RetCC_HexagonVector(unsigned ValNo, MVT ValVT,
504 MVT LocVT, CCValAssign::LocInfo LocInfo,
505 ISD::ArgFlagsTy ArgFlags, CCState &State) {
506 auto &MF = State.getMachineFunction();
507 auto &HST = MF.getSubtarget<HexagonSubtarget>();
508 bool UseHVX = HST.useHVXOps();
509 bool UseHVXDbl = HST.useHVXDblOps();
510
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000511 if (LocVT == MVT::v16i32) {
512 if (unsigned Reg = State.AllocateReg(Hexagon::V0)) {
513 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
514 return false;
515 }
516 } else if (LocVT == MVT::v32i32) {
517 unsigned Req = (UseHVX && UseHVXDbl) ? Hexagon::V0 : Hexagon::W0;
518 if (unsigned Reg = State.AllocateReg(Req)) {
519 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
520 return false;
521 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000522 } else if (LocVT == MVT::v64i32) {
523 if (unsigned Reg = State.AllocateReg(Hexagon::W0)) {
524 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
525 return false;
526 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000527 }
528
Krzysztof Parzyszek56199522017-04-13 15:05:51 +0000529 return true;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000530}
531
Craig Topper18e69f42016-04-15 06:20:21 +0000532void HexagonTargetLowering::promoteLdStType(MVT VT, MVT PromotedLdStVT) {
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000533 if (VT != PromotedLdStVT) {
Craig Topper18e69f42016-04-15 06:20:21 +0000534 setOperationAction(ISD::LOAD, VT, Promote);
535 AddPromotedToType(ISD::LOAD, VT, PromotedLdStVT);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000536
Craig Topper18e69f42016-04-15 06:20:21 +0000537 setOperationAction(ISD::STORE, VT, Promote);
538 AddPromotedToType(ISD::STORE, VT, PromotedLdStVT);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000539 }
540}
541
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000542SDValue
543HexagonTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG)
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000544 const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000545 return SDValue();
546}
547
548/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
549/// by "Src" to address "Dst" of size "Size". Alignment information is
550/// specified by the specific parameter attribute. The copy will be passed as
551/// a byval function parameter. Sometimes what we are copying is the end of a
552/// larger object, the part that does not fit in registers.
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000553static SDValue CreateCopyOfByValArgument(SDValue Src, SDValue Dst,
554 SDValue Chain, ISD::ArgFlagsTy Flags,
555 SelectionDAG &DAG, const SDLoc &dl) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000556 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000557 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
558 /*isVolatile=*/false, /*AlwaysInline=*/false,
Krzysztof Parzyszeka46c36b2015-04-13 17:16:45 +0000559 /*isTailCall=*/false,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000560 MachinePointerInfo(), MachinePointerInfo());
561}
562
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000563static bool isHvxVectorType(MVT Ty) {
564 switch (Ty.SimpleTy) {
565 case MVT::v8i64:
566 case MVT::v16i32:
567 case MVT::v32i16:
568 case MVT::v64i8:
569 case MVT::v16i64:
570 case MVT::v32i32:
571 case MVT::v64i16:
572 case MVT::v128i8:
573 case MVT::v32i64:
574 case MVT::v64i32:
575 case MVT::v128i16:
576 case MVT::v256i8:
577 case MVT::v512i1:
578 case MVT::v1024i1:
579 return true;
580 default:
581 return false;
582 }
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000583}
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000584
Krzysztof Parzyszek56199522017-04-13 15:05:51 +0000585bool
586HexagonTargetLowering::CanLowerReturn(
587 CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
588 const SmallVectorImpl<ISD::OutputArg> &Outs,
589 LLVMContext &Context) const {
590 SmallVector<CCValAssign, 16> RVLocs;
591 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
592 return CCInfo.CheckReturn(Outs, RetCC_Hexagon);
593}
594
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000595// LowerReturn - Lower ISD::RET. If a struct is larger than 8 bytes and is
596// passed by value, the function prototype is modified to return void and
597// the value is stored in memory pointed by a pointer passed by caller.
598SDValue
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000599HexagonTargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
600 bool isVarArg,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000601 const SmallVectorImpl<ISD::OutputArg> &Outs,
602 const SmallVectorImpl<SDValue> &OutVals,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000603 const SDLoc &dl, SelectionDAG &DAG) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000604 // CCValAssign - represent the assignment of the return value to locations.
605 SmallVector<CCValAssign, 16> RVLocs;
606
607 // CCState - Info about the registers and stack slot.
Eric Christopherb5217502014-08-06 18:45:26 +0000608 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
609 *DAG.getContext());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000610
611 // Analyze return values of ISD::RET
612 CCInfo.AnalyzeReturn(Outs, RetCC_Hexagon);
613
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000614 SDValue Flag;
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000615 SmallVector<SDValue, 4> RetOps(1, Chain);
616
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000617 // Copy the result values into the output registers.
618 for (unsigned i = 0; i != RVLocs.size(); ++i) {
619 CCValAssign &VA = RVLocs[i];
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000620
621 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
622
623 // Guarantee that all emitted copies are stuck together with flags.
624 Flag = Chain.getValue(1);
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000625 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000626 }
627
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000628 RetOps[0] = Chain; // Update chain.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000629
Jakob Stoklund Olesen0af477c2013-02-05 18:08:43 +0000630 // Add the flag if we have it.
631 if (Flag.getNode())
632 RetOps.push_back(Flag);
633
Craig Topper48d114b2014-04-26 18:35:24 +0000634 return DAG.getNode(HexagonISD::RET_FLAG, dl, MVT::Other, RetOps);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000635}
636
Matt Arsenault31380752017-04-18 21:16:46 +0000637bool HexagonTargetLowering::mayBeEmittedAsTailCall(const CallInst *CI) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000638 // If either no tail call or told not to tail call at all, don't.
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000639 auto Attr =
640 CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
641 if (!CI->isTailCall() || Attr.getValueAsString() == "true")
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000642 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000643
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000644 return true;
645}
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000646
647/// LowerCallResult - Lower the result values of an ISD::CALL into the
648/// appropriate copies out of appropriate physical registers. This assumes that
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000649/// Chain/Glue are the input chain/glue to use, and that TheCall is the call
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000650/// being lowered. Returns a SDNode with the same number of values as the
651/// ISD::CALL.
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000652SDValue HexagonTargetLowering::LowerCallResult(
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000653 SDValue Chain, SDValue Glue, CallingConv::ID CallConv, bool isVarArg,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000654 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl,
655 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals,
656 const SmallVectorImpl<SDValue> &OutVals, SDValue Callee) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000657 // Assign locations to each value returned by this call.
658 SmallVector<CCValAssign, 16> RVLocs;
659
Eric Christopherb5217502014-08-06 18:45:26 +0000660 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
661 *DAG.getContext());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000662
663 CCInfo.AnalyzeCallResult(Ins, RetCC_Hexagon);
664
665 // Copy all of the result registers out of their specified physreg.
666 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Krzysztof Parzyszek51155fc2016-03-04 17:38:05 +0000667 SDValue RetVal;
668 if (RVLocs[i].getValVT() == MVT::i1) {
669 // Return values of type MVT::i1 require special handling. The reason
670 // is that MVT::i1 is associated with the PredRegs register class, but
671 // values of that type are still returned in R0. Generate an explicit
672 // copy into a predicate register from R0, and treat the value of the
673 // predicate register as the call result.
674 auto &MRI = DAG.getMachineFunction().getRegInfo();
675 SDValue FR0 = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000676 MVT::i32, Glue);
Krzysztof Parzyszek51155fc2016-03-04 17:38:05 +0000677 // FR0 = (Value, Chain, Glue)
678 unsigned PredR = MRI.createVirtualRegister(&Hexagon::PredRegsRegClass);
679 SDValue TPR = DAG.getCopyToReg(FR0.getValue(1), dl, PredR,
680 FR0.getValue(0), FR0.getValue(2));
681 // TPR = (Chain, Glue)
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000682 // Don't glue this CopyFromReg, because it copies from a virtual
683 // register. If it is glued to the call, InstrEmitter will add it
684 // as an implicit def to the call (EmitMachineNode).
685 RetVal = DAG.getCopyFromReg(TPR.getValue(0), dl, PredR, MVT::i1);
686 Glue = TPR.getValue(1);
Krzysztof Parzyszek51155fc2016-03-04 17:38:05 +0000687 } else {
688 RetVal = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000689 RVLocs[i].getValVT(), Glue);
690 Glue = RetVal.getValue(2);
Krzysztof Parzyszek51155fc2016-03-04 17:38:05 +0000691 }
692 InVals.push_back(RetVal.getValue(0));
693 Chain = RetVal.getValue(1);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000694 }
695
696 return Chain;
697}
698
699/// LowerCall - Functions arguments are copied from virtual regs to
700/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
701SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +0000702HexagonTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000703 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +0000704 SelectionDAG &DAG = CLI.DAG;
Craig Topperb94011f2013-07-14 04:42:23 +0000705 SDLoc &dl = CLI.DL;
706 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
707 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
708 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +0000709 SDValue Chain = CLI.Chain;
710 SDValue Callee = CLI.Callee;
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000711 bool &IsTailCall = CLI.IsTailCall;
Justin Holewinskiaa583972012-05-25 16:35:28 +0000712 CallingConv::ID CallConv = CLI.CallConv;
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000713 bool IsVarArg = CLI.IsVarArg;
714 bool DoesNotReturn = CLI.DoesNotReturn;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000715
716 bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000717 MachineFunction &MF = DAG.getMachineFunction();
Krzysztof Parzyszekf67cd822017-07-11 17:11:54 +0000718 MachineFrameInfo &MFI = MF.getFrameInfo();
Mehdi Amini44ede332015-07-09 02:09:04 +0000719 auto PtrVT = getPointerTy(MF.getDataLayout());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000720
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000721 // Check for varargs.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000722 unsigned NumNamedVarArgParams = -1U;
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000723 if (GlobalAddressSDNode *GAN = dyn_cast<GlobalAddressSDNode>(Callee)) {
724 const GlobalValue *GV = GAN->getGlobal();
725 Callee = DAG.getTargetGlobalAddress(GV, dl, MVT::i32);
726 if (const Function* F = dyn_cast<Function>(GV)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000727 // If a function has zero args and is a vararg function, that's
728 // disallowed so it must be an undeclared function. Do not assume
729 // varargs if the callee is undefined.
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +0000730 if (F->isVarArg() && F->getFunctionType()->getNumParams() != 0)
731 NumNamedVarArgParams = F->getFunctionType()->getNumParams();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000732 }
733 }
734
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000735 // Analyze operands of the call, assigning locations to each operand.
736 SmallVector<CCValAssign, 16> ArgLocs;
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000737 HexagonCCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(), ArgLocs,
Eric Christopherb5217502014-08-06 18:45:26 +0000738 *DAG.getContext(), NumNamedVarArgParams);
Benjamin Kramer602bb4a2013-10-27 11:16:09 +0000739
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000740 if (IsVarArg)
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000741 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon_VarArg);
742 else
743 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon);
744
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000745 auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
746 if (Attr.getValueAsString() == "true")
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000747 IsTailCall = false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000748
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000749 if (IsTailCall) {
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000750 bool StructAttrFlag = MF.getFunction()->hasStructRetAttr();
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000751 IsTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
752 IsVarArg, IsStructRet,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000753 StructAttrFlag,
754 Outs, OutVals, Ins, DAG);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000755 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000756 CCValAssign &VA = ArgLocs[i];
757 if (VA.isMemLoc()) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000758 IsTailCall = false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000759 break;
760 }
761 }
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000762 DEBUG(dbgs() << (IsTailCall ? "Eligible for Tail Call\n"
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000763 : "Argument must be passed on stack. "
764 "Not eligible for Tail Call\n"));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000765 }
766 // Get a count of how many bytes are to be pushed on the stack.
767 unsigned NumBytes = CCInfo.getNextStackOffset();
768 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
769 SmallVector<SDValue, 8> MemOpChains;
770
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +0000771 auto &HRI = *Subtarget.getRegisterInfo();
Mehdi Amini44ede332015-07-09 02:09:04 +0000772 SDValue StackPtr =
773 DAG.getCopyFromReg(Chain, dl, HRI.getStackRegister(), PtrVT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000774
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000775 bool NeedsArgAlign = false;
776 unsigned LargestAlignSeen = 0;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000777 // Walk the register/memloc assignments, inserting copies/loads.
778 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
779 CCValAssign &VA = ArgLocs[i];
780 SDValue Arg = OutVals[i];
781 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000782 // Record if we need > 8 byte alignment on an argument.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000783 bool ArgAlign = isHvxVectorType(VA.getValVT());
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000784 NeedsArgAlign |= ArgAlign;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000785
786 // Promote the value if needed.
787 switch (VA.getLocInfo()) {
788 default:
789 // Loc info must be one of Full, SExt, ZExt, or AExt.
Craig Toppere55c5562012-02-07 02:50:20 +0000790 llvm_unreachable("Unknown loc info!");
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000791 case CCValAssign::BCvt:
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000792 case CCValAssign::Full:
793 break;
794 case CCValAssign::SExt:
795 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
796 break;
797 case CCValAssign::ZExt:
798 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
799 break;
800 case CCValAssign::AExt:
801 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
802 break;
803 }
804
805 if (VA.isMemLoc()) {
806 unsigned LocMemOffset = VA.getLocMemOffset();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000807 SDValue MemAddr = DAG.getConstant(LocMemOffset, dl,
808 StackPtr.getValueType());
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000809 MemAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, MemAddr);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000810 if (ArgAlign)
811 LargestAlignSeen = std::max(LargestAlignSeen,
812 VA.getLocVT().getStoreSizeInBits() >> 3);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000813 if (Flags.isByVal()) {
814 // The argument is a struct passed by value. According to LLVM, "Arg"
815 // is is pointer.
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000816 MemOpChains.push_back(CreateCopyOfByValArgument(Arg, MemAddr, Chain,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000817 Flags, DAG, dl));
818 } else {
Alex Lorenze40c8a22015-08-11 23:09:45 +0000819 MachinePointerInfo LocPI = MachinePointerInfo::getStack(
820 DAG.getMachineFunction(), LocMemOffset);
Justin Lebar9c375812016-07-15 18:27:10 +0000821 SDValue S = DAG.getStore(Chain, dl, Arg, MemAddr, LocPI);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000822 MemOpChains.push_back(S);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000823 }
824 continue;
825 }
826
827 // Arguments that can be passed on register must be kept at RegsToPass
828 // vector.
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000829 if (VA.isRegLoc())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000830 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000831 }
832
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000833 if (NeedsArgAlign && Subtarget.hasV60TOps()) {
834 DEBUG(dbgs() << "Function needs byte stack align due to call args\n");
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000835 // V6 vectors passed by value have 64 or 128 byte alignment depending
836 // on whether we are 64 byte vector mode or 128 byte.
837 bool UseHVXDbl = Subtarget.useHVXDblOps();
838 assert(Subtarget.useHVXOps());
839 const unsigned ObjAlign = UseHVXDbl ? 128 : 64;
840 LargestAlignSeen = std::max(LargestAlignSeen, ObjAlign);
Matthias Braun941a7052016-07-28 18:40:00 +0000841 MFI.ensureMaxAlignment(LargestAlignSeen);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000842 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000843 // Transform all store nodes into one single node because all store
844 // nodes are independent of each other.
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000845 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +0000846 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000847
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000848 SDValue Glue;
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000849 if (!IsTailCall) {
Serge Pavlovd526b132017-05-09 13:35:13 +0000850 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl);
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000851 Glue = Chain.getValue(1);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000852 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000853
854 // Build a sequence of copy-to-reg nodes chained together with token
855 // chain and flag operands which copy the outgoing args into registers.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000856 // The Glue is necessary since all emitted instructions must be
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000857 // stuck together.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000858 if (!IsTailCall) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000859 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
860 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000861 RegsToPass[i].second, Glue);
862 Glue = Chain.getValue(1);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000863 }
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000864 } else {
865 // For tail calls lower the arguments to the 'real' stack slot.
866 //
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000867 // Force all the incoming stack arguments to be loaded from the stack
868 // before any new outgoing arguments are stored to the stack, because the
869 // outgoing stack slots may alias the incoming argument stack slots, and
870 // the alias isn't otherwise explicit. This is slightly more conservative
871 // than necessary, because it means that each store effectively depends
872 // on every argument instead of just those arguments it would clobber.
873 //
Benjamin Kramerbde91762012-06-02 10:20:22 +0000874 // Do not flag preceding copytoreg stuff together with the following stuff.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000875 Glue = SDValue();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000876 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
877 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000878 RegsToPass[i].second, Glue);
879 Glue = Chain.getValue(1);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000880 }
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000881 Glue = SDValue();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000882 }
883
Krzysztof Parzyszek080bebd2016-07-25 14:42:11 +0000884 bool LongCalls = MF.getSubtarget<HexagonSubtarget>().useLongCalls();
885 unsigned Flags = LongCalls ? HexagonII::HMOTF_ConstExtended : 0;
886
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000887 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
888 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
889 // node so that legalize doesn't hack it.
Tobias Edler von Kochb51460c2015-12-16 17:29:37 +0000890 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Krzysztof Parzyszek080bebd2016-07-25 14:42:11 +0000891 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, PtrVT, 0, Flags);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000892 } else if (ExternalSymbolSDNode *S =
893 dyn_cast<ExternalSymbolSDNode>(Callee)) {
Krzysztof Parzyszek080bebd2016-07-25 14:42:11 +0000894 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), PtrVT, Flags);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000895 }
896
897 // Returns a chain & a flag for retval copy to use.
898 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
899 SmallVector<SDValue, 8> Ops;
900 Ops.push_back(Chain);
901 Ops.push_back(Callee);
902
903 // Add argument registers to the end of the list so that they are
904 // known live into the call.
905 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
906 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
907 RegsToPass[i].second.getValueType()));
908 }
909
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +0000910 const uint32_t *Mask = HRI.getCallPreservedMask(MF, CallConv);
911 assert(Mask && "Missing call preserved mask for calling convention");
912 Ops.push_back(DAG.getRegisterMask(Mask));
913
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000914 if (Glue.getNode())
915 Ops.push_back(Glue);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000916
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000917 if (IsTailCall) {
Krzysztof Parzyszekf67cd822017-07-11 17:11:54 +0000918 MFI.setHasTailCall();
Craig Topper48d114b2014-04-26 18:35:24 +0000919 return DAG.getNode(HexagonISD::TC_RETURN, dl, NodeTys, Ops);
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +0000920 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000921
Krzysztof Parzyszekf67cd822017-07-11 17:11:54 +0000922 // Set this here because we need to know this for "hasFP" in frame lowering.
923 // The target-independent code calls getFrameRegister before setting it, and
924 // getFrameRegister uses hasFP to determine whether the function has FP.
925 MFI.setHasCalls(true);
926
Krzysztof Parzyszekbe976d42016-08-12 11:12:02 +0000927 unsigned OpCode = DoesNotReturn ? HexagonISD::CALLnr : HexagonISD::CALL;
Colin LeMahieu2e3a26d2015-01-16 17:05:27 +0000928 Chain = DAG.getNode(OpCode, dl, NodeTys, Ops);
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000929 Glue = Chain.getValue(1);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000930
931 // Create the CALLSEQ_END node.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000932 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000933 DAG.getIntPtrConstant(0, dl, true), Glue, dl);
934 Glue = Chain.getValue(1);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000935
936 // Handle result values, copying them out of physregs into vregs that we
937 // return.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000938 return LowerCallResult(Chain, Glue, CallConv, IsVarArg, Ins, dl, DAG,
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000939 InVals, OutVals, Callee);
940}
941
942static bool getIndexedAddressParts(SDNode *Ptr, EVT VT,
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000943 SDValue &Base, SDValue &Offset,
944 bool &IsInc, SelectionDAG &DAG) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000945 if (Ptr->getOpcode() != ISD::ADD)
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +0000946 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000947
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000948 auto &HST = static_cast<const HexagonSubtarget&>(DAG.getSubtarget());
949 bool UseHVX = HST.useHVXOps();
950 bool UseHVXDbl = HST.useHVXDblOps();
951
952 bool ValidHVXDblType =
953 (UseHVX && UseHVXDbl) && (VT == MVT::v32i32 || VT == MVT::v16i64 ||
954 VT == MVT::v64i16 || VT == MVT::v128i8);
955 bool ValidHVXType =
956 UseHVX && !UseHVXDbl && (VT == MVT::v16i32 || VT == MVT::v8i64 ||
957 VT == MVT::v32i16 || VT == MVT::v64i8);
958
959 if (ValidHVXDblType || ValidHVXType ||
960 VT == MVT::i64 || VT == MVT::i32 || VT == MVT::i16 || VT == MVT::i8) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000961 IsInc = (Ptr->getOpcode() == ISD::ADD);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000962 Base = Ptr->getOperand(0);
963 Offset = Ptr->getOperand(1);
964 // Ensure that Offset is a constant.
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000965 return isa<ConstantSDNode>(Offset);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000966 }
967
968 return false;
969}
970
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000971/// getPostIndexedAddressParts - returns true by value, base pointer and
972/// offset pointer and addressing mode by reference if this node can be
973/// combined with a load / store to form a post-indexed load / store.
974bool HexagonTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
975 SDValue &Base,
976 SDValue &Offset,
977 ISD::MemIndexedMode &AM,
978 SelectionDAG &DAG) const
979{
980 EVT VT;
981 SDValue Ptr;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000982
983 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
984 VT = LD->getMemoryVT();
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000985 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
986 VT = ST->getMemoryVT();
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000987 if (ST->getValue().getValueType() == MVT::i64 && ST->isTruncatingStore())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000988 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000989 } else {
990 return false;
991 }
992
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000993 bool IsInc = false;
994 bool isLegal = getIndexedAddressParts(Op, VT, Base, Offset, IsInc, DAG);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +0000995 if (isLegal) {
996 auto &HII = *Subtarget.getInstrInfo();
997 int32_t OffsetVal = cast<ConstantSDNode>(Offset.getNode())->getSExtValue();
998 if (HII.isValidAutoIncImm(VT, OffsetVal)) {
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +0000999 AM = IsInc ? ISD::POST_INC : ISD::POST_DEC;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001000 return true;
1001 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001002 }
1003
1004 return false;
1005}
1006
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001007SDValue
1008HexagonTargetLowering::LowerINLINEASM(SDValue Op, SelectionDAG &DAG) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001009 MachineFunction &MF = DAG.getMachineFunction();
Krzysztof Parzyszek9eb75c42017-06-30 21:21:40 +00001010 auto &HMFI = *MF.getInfo<HexagonMachineFunctionInfo>();
1011 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
1012 unsigned LR = HRI.getRARegister();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001013
Krzysztof Parzyszek9eb75c42017-06-30 21:21:40 +00001014 if (Op.getOpcode() != ISD::INLINEASM || HMFI.hasClobberLR())
1015 return Op;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001016
Krzysztof Parzyszek9eb75c42017-06-30 21:21:40 +00001017 unsigned NumOps = Op.getNumOperands();
1018 if (Op.getOperand(NumOps-1).getValueType() == MVT::Glue)
1019 --NumOps; // Ignore the flag operand.
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001020
Krzysztof Parzyszek9eb75c42017-06-30 21:21:40 +00001021 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
1022 unsigned Flags = cast<ConstantSDNode>(Op.getOperand(i))->getZExtValue();
1023 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
1024 ++i; // Skip the ID value.
1025
1026 switch (InlineAsm::getKind(Flags)) {
1027 default:
1028 llvm_unreachable("Bad flags!");
1029 case InlineAsm::Kind_RegUse:
1030 case InlineAsm::Kind_Imm:
1031 case InlineAsm::Kind_Mem:
1032 i += NumVals;
1033 break;
1034 case InlineAsm::Kind_Clobber:
1035 case InlineAsm::Kind_RegDef:
1036 case InlineAsm::Kind_RegDefEarlyClobber: {
1037 for (; NumVals; --NumVals, ++i) {
1038 unsigned Reg = cast<RegisterSDNode>(Op.getOperand(i))->getReg();
1039 if (Reg != LR)
1040 continue;
1041 HMFI.setHasClobberLR(true);
1042 return Op;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001043 }
Krzysztof Parzyszek9eb75c42017-06-30 21:21:40 +00001044 break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001045 }
1046 }
Krzysztof Parzyszek9eb75c42017-06-30 21:21:40 +00001047 }
1048
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001049 return Op;
1050}
1051
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00001052// Need to transform ISD::PREFETCH into something that doesn't inherit
1053// all of the properties of ISD::PREFETCH, specifically SDNPMayLoad and
1054// SDNPMayStore.
1055SDValue HexagonTargetLowering::LowerPREFETCH(SDValue Op,
1056 SelectionDAG &DAG) const {
1057 SDValue Chain = Op.getOperand(0);
1058 SDValue Addr = Op.getOperand(1);
1059 // Lower it to DCFETCH($reg, #0). A "pat" will try to merge the offset in,
1060 // if the "reg" is fed by an "add".
1061 SDLoc DL(Op);
1062 SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
1063 return DAG.getNode(HexagonISD::DCFETCH, DL, MVT::Other, Chain, Addr, Zero);
1064}
1065
Krzysztof Parzyszekab57c2b2017-02-22 22:28:47 +00001066// Custom-handle ISD::READCYCLECOUNTER because the target-independent SDNode
1067// is marked as having side-effects, while the register read on Hexagon does
1068// not have any. TableGen refuses to accept the direct pattern from that node
1069// to the A4_tfrcpp.
1070SDValue HexagonTargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
1071 SelectionDAG &DAG) const {
1072 SDValue Chain = Op.getOperand(0);
1073 SDLoc dl(Op);
1074 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
1075 return DAG.getNode(HexagonISD::READCYCLE, dl, VTs, Chain);
1076}
1077
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00001078SDValue HexagonTargetLowering::LowerINTRINSIC_VOID(SDValue Op,
1079 SelectionDAG &DAG) const {
1080 SDValue Chain = Op.getOperand(0);
1081 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1082 // Lower the hexagon_prefetch builtin to DCFETCH, as above.
1083 if (IntNo == Intrinsic::hexagon_prefetch) {
1084 SDValue Addr = Op.getOperand(2);
1085 SDLoc DL(Op);
1086 SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
1087 return DAG.getNode(HexagonISD::DCFETCH, DL, MVT::Other, Chain, Addr, Zero);
1088 }
1089 return SDValue();
1090}
1091
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001092SDValue
1093HexagonTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
1094 SelectionDAG &DAG) const {
1095 SDValue Chain = Op.getOperand(0);
1096 SDValue Size = Op.getOperand(1);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001097 SDValue Align = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00001098 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001099
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001100 ConstantSDNode *AlignConst = dyn_cast<ConstantSDNode>(Align);
1101 assert(AlignConst && "Non-constant Align in LowerDYNAMIC_STACKALLOC");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001102
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001103 unsigned A = AlignConst->getSExtValue();
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001104 auto &HFI = *Subtarget.getFrameLowering();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001105 // "Zero" means natural stack alignment.
1106 if (A == 0)
1107 A = HFI.getStackAlignment();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001108
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001109 DEBUG({
Reid Kleckner40d72302016-10-20 00:22:23 +00001110 dbgs () << __func__ << " Align: " << A << " Size: ";
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001111 Size.getNode()->dump(&DAG);
1112 dbgs() << "\n";
1113 });
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001114
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001115 SDValue AC = DAG.getConstant(A, dl, MVT::i32);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001116 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
Krzysztof Parzyszek23920ec2015-10-19 18:30:27 +00001117 SDValue AA = DAG.getNode(HexagonISD::ALLOCA, dl, VTs, Chain, Size, AC);
Nirav Davebfdb4832016-06-23 17:52:57 +00001118
1119 DAG.ReplaceAllUsesOfValueWith(Op, AA);
Krzysztof Parzyszek23920ec2015-10-19 18:30:27 +00001120 return AA;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001121}
1122
Benjamin Kramerbdc49562016-06-12 15:39:02 +00001123SDValue HexagonTargetLowering::LowerFormalArguments(
1124 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
1125 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl,
1126 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001127 MachineFunction &MF = DAG.getMachineFunction();
Matthias Braun941a7052016-07-28 18:40:00 +00001128 MachineFrameInfo &MFI = MF.getFrameInfo();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001129 MachineRegisterInfo &RegInfo = MF.getRegInfo();
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001130 auto &FuncInfo = *MF.getInfo<HexagonMachineFunctionInfo>();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001131
1132 // Assign locations to all of the incoming arguments.
1133 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001134 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
1135 *DAG.getContext());
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001136
1137 CCInfo.AnalyzeFormalArguments(Ins, CC_Hexagon);
1138
1139 // For LLVM, in the case when returning a struct by value (>8byte),
1140 // the first argument is a pointer that points to the location on caller's
1141 // stack where the return value will be stored. For Hexagon, the location on
1142 // caller's stack is passed only when the struct size is smaller than (and
1143 // equal to) 8 bytes. If not, no address will be passed into callee and
1144 // callee return the result direclty through R0/R1.
1145
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001146 SmallVector<SDValue, 8> MemOps;
1147 bool UseHVX = Subtarget.useHVXOps(), UseHVXDbl = Subtarget.useHVXDblOps();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001148
1149 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1150 CCValAssign &VA = ArgLocs[i];
1151 ISD::ArgFlagsTy Flags = Ins[i].Flags;
1152 unsigned ObjSize;
1153 unsigned StackLocation;
1154 int FI;
1155
1156 if ( (VA.isRegLoc() && !Flags.isByVal())
1157 || (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() > 8)) {
1158 // Arguments passed in registers
1159 // 1. int, long long, ptr args that get allocated in register.
1160 // 2. Large struct that gets an register to put its address in.
1161 EVT RegVT = VA.getLocVT();
Sirish Pande69295b82012-05-10 20:20:25 +00001162 if (RegVT == MVT::i8 || RegVT == MVT::i16 ||
1163 RegVT == MVT::i32 || RegVT == MVT::f32) {
Krzysztof Parzyszek8f23dd62017-03-01 17:30:10 +00001164 unsigned VReg =
Craig Topperc7242e02012-04-20 07:30:17 +00001165 RegInfo.createVirtualRegister(&Hexagon::IntRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001166 RegInfo.addLiveIn(VA.getLocReg(), VReg);
Krzysztof Parzyszek8f23dd62017-03-01 17:30:10 +00001167 SDValue Copy = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
1168 // Treat values of type MVT::i1 specially: they are passed in
1169 // registers of type i32, but they need to remain as values of
1170 // type i1 for consistency of the argument lowering.
1171 if (VA.getValVT() == MVT::i1) {
1172 // Generate a copy into a predicate register and use the value
1173 // of the register as the "InVal".
1174 unsigned PReg =
1175 RegInfo.createVirtualRegister(&Hexagon::PredRegsRegClass);
1176 SDNode *T = DAG.getMachineNode(Hexagon::C2_tfrrp, dl, MVT::i1,
1177 Copy.getValue(0));
1178 Copy = DAG.getCopyToReg(Copy.getValue(1), dl, PReg, SDValue(T, 0));
1179 Copy = DAG.getCopyFromReg(Copy, dl, PReg, MVT::i1);
1180 }
1181 InVals.push_back(Copy);
1182 Chain = Copy.getValue(1);
Colin LeMahieu4379d102015-01-28 22:08:16 +00001183 } else if (RegVT == MVT::i64 || RegVT == MVT::f64) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001184 unsigned VReg =
Craig Topperc7242e02012-04-20 07:30:17 +00001185 RegInfo.createVirtualRegister(&Hexagon::DoubleRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001186 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1187 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001188
1189 // Single Vector
1190 } else if ((RegVT == MVT::v8i64 || RegVT == MVT::v16i32 ||
1191 RegVT == MVT::v32i16 || RegVT == MVT::v64i8)) {
1192 unsigned VReg =
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00001193 RegInfo.createVirtualRegister(&Hexagon::HvxVRRegClass);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001194 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1195 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1196 } else if (UseHVX && UseHVXDbl &&
1197 ((RegVT == MVT::v16i64 || RegVT == MVT::v32i32 ||
1198 RegVT == MVT::v64i16 || RegVT == MVT::v128i8))) {
1199 unsigned VReg =
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00001200 RegInfo.createVirtualRegister(&Hexagon::HvxVRRegClass);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001201 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1202 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1203
1204 // Double Vector
1205 } else if ((RegVT == MVT::v16i64 || RegVT == MVT::v32i32 ||
1206 RegVT == MVT::v64i16 || RegVT == MVT::v128i8)) {
1207 unsigned VReg =
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00001208 RegInfo.createVirtualRegister(&Hexagon::HvxWRRegClass);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001209 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1210 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1211 } else if (UseHVX && UseHVXDbl &&
1212 ((RegVT == MVT::v32i64 || RegVT == MVT::v64i32 ||
1213 RegVT == MVT::v128i16 || RegVT == MVT::v256i8))) {
1214 unsigned VReg =
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00001215 RegInfo.createVirtualRegister(&Hexagon::HvxWRRegClass);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001216 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1217 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1218 } else if (RegVT == MVT::v512i1 || RegVT == MVT::v1024i1) {
1219 assert(0 && "need to support VecPred regs");
1220 unsigned VReg =
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00001221 RegInfo.createVirtualRegister(&Hexagon::HvxQRRegClass);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001222 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1223 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001224 } else {
1225 assert (0);
1226 }
1227 } else if (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() <= 8) {
1228 assert (0 && "ByValSize must be bigger than 8 bytes");
1229 } else {
1230 // Sanity check.
1231 assert(VA.isMemLoc());
1232
1233 if (Flags.isByVal()) {
1234 // If it's a byval parameter, then we need to compute the
1235 // "real" size, not the size of the pointer.
1236 ObjSize = Flags.getByValSize();
1237 } else {
1238 ObjSize = VA.getLocVT().getStoreSizeInBits() >> 3;
1239 }
1240
1241 StackLocation = HEXAGON_LRFP_SIZE + VA.getLocMemOffset();
1242 // Create the frame index object for this incoming parameter...
Matthias Braun941a7052016-07-28 18:40:00 +00001243 FI = MFI.CreateFixedObject(ObjSize, StackLocation, true);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001244
1245 // Create the SelectionDAG nodes cordl, responding to a load
1246 // from this parameter.
1247 SDValue FIN = DAG.getFrameIndex(FI, MVT::i32);
1248
1249 if (Flags.isByVal()) {
1250 // If it's a pass-by-value aggregate, then do not dereference the stack
1251 // location. Instead, we should generate a reference to the stack
1252 // location.
1253 InVals.push_back(FIN);
1254 } else {
Justin Lebar9c375812016-07-15 18:27:10 +00001255 InVals.push_back(
Krzysztof Parzyszek3e2046c2017-04-13 15:00:18 +00001256 DAG.getLoad(VA.getValVT(), dl, Chain, FIN, MachinePointerInfo()));
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001257 }
1258 }
1259 }
1260
1261 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00001262 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001263
1264 if (isVarArg) {
1265 // This will point to the next argument passed via stack.
Matthias Braun941a7052016-07-28 18:40:00 +00001266 int FrameIndex = MFI.CreateFixedObject(Hexagon_PointerSize,
1267 HEXAGON_LRFP_SIZE +
1268 CCInfo.getNextStackOffset(),
1269 true);
Krzysztof Parzyszek4fa2a9f2015-04-22 16:43:53 +00001270 FuncInfo.setVarArgsFrameIndex(FrameIndex);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001271 }
1272
1273 return Chain;
1274}
1275
1276SDValue
1277HexagonTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
1278 // VASTART stores the address of the VarArgsFrameIndex slot into the
1279 // memory location argument.
1280 MachineFunction &MF = DAG.getMachineFunction();
1281 HexagonMachineFunctionInfo *QFI = MF.getInfo<HexagonMachineFunctionInfo>();
1282 SDValue Addr = DAG.getFrameIndex(QFI->getVarArgsFrameIndex(), MVT::i32);
1283 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Justin Lebar9c375812016-07-15 18:27:10 +00001284 return DAG.getStore(Op.getOperand(0), SDLoc(Op), Addr, Op.getOperand(1),
1285 MachinePointerInfo(SV));
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001286}
1287
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001288static bool isSExtFree(SDValue N) {
1289 // A sign-extend of a truncate of a sign-extend is free.
1290 if (N.getOpcode() == ISD::TRUNCATE &&
1291 N.getOperand(0).getOpcode() == ISD::AssertSext)
1292 return true;
1293 // We have sign-extended loads.
1294 if (N.getOpcode() == ISD::LOAD)
1295 return true;
1296 return false;
1297}
1298
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001299SDValue HexagonTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
1300 SDLoc dl(Op);
1301
1302 SDValue LHS = Op.getOperand(0);
1303 SDValue RHS = Op.getOperand(1);
1304 SDValue Cmp = Op.getOperand(2);
1305 ISD::CondCode CC = cast<CondCodeSDNode>(Cmp)->get();
1306
1307 EVT VT = Op.getValueType();
1308 EVT LHSVT = LHS.getValueType();
1309 EVT RHSVT = RHS.getValueType();
1310
1311 if (LHSVT == MVT::v2i16) {
1312 assert(ISD::isSignedIntSetCC(CC) || ISD::isUnsignedIntSetCC(CC));
1313 unsigned ExtOpc = ISD::isSignedIntSetCC(CC) ? ISD::SIGN_EXTEND
1314 : ISD::ZERO_EXTEND;
1315 SDValue LX = DAG.getNode(ExtOpc, dl, MVT::v2i32, LHS);
1316 SDValue RX = DAG.getNode(ExtOpc, dl, MVT::v2i32, RHS);
1317 SDValue SC = DAG.getNode(ISD::SETCC, dl, MVT::v2i1, LX, RX, Cmp);
1318 return SC;
1319 }
1320
1321 // Treat all other vector types as legal.
1322 if (VT.isVector())
1323 return Op;
1324
1325 // Equals and not equals should use sign-extend, not zero-extend, since
1326 // we can represent small negative values in the compare instructions.
1327 // The LLVM default is to use zero-extend arbitrarily in these cases.
1328 if ((CC == ISD::SETEQ || CC == ISD::SETNE) &&
1329 (RHSVT == MVT::i8 || RHSVT == MVT::i16) &&
1330 (LHSVT == MVT::i8 || LHSVT == MVT::i16)) {
1331 ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS);
1332 if (C && C->getAPIntValue().isNegative()) {
1333 LHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, LHS);
1334 RHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, RHS);
1335 return DAG.getNode(ISD::SETCC, dl, Op.getValueType(),
1336 LHS, RHS, Op.getOperand(2));
1337 }
1338 if (isSExtFree(LHS) || isSExtFree(RHS)) {
1339 LHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, LHS);
1340 RHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, RHS);
1341 return DAG.getNode(ISD::SETCC, dl, Op.getValueType(),
1342 LHS, RHS, Op.getOperand(2));
1343 }
1344 }
1345 return SDValue();
1346}
1347
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001348SDValue
1349HexagonTargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001350 SDValue PredOp = Op.getOperand(0);
1351 SDValue Op1 = Op.getOperand(1), Op2 = Op.getOperand(2);
1352 EVT OpVT = Op1.getValueType();
1353 SDLoc DL(Op);
1354
1355 if (OpVT == MVT::v2i16) {
1356 SDValue X1 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v2i32, Op1);
1357 SDValue X2 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v2i32, Op2);
1358 SDValue SL = DAG.getNode(ISD::VSELECT, DL, MVT::v2i32, PredOp, X1, X2);
1359 SDValue TR = DAG.getNode(ISD::TRUNCATE, DL, MVT::v2i16, SL);
1360 return TR;
1361 }
1362
1363 return SDValue();
1364}
1365
Krzysztof Parzyszek91ff5c62017-08-01 13:12:53 +00001366static Constant *convert_i1_to_i8(const Constant *ConstVal) {
1367 SmallVector<Constant *, 128> NewConst;
1368 const ConstantVector *CV = dyn_cast<ConstantVector>(ConstVal);
1369 if (!CV)
1370 return nullptr;
1371
1372 LLVMContext &Ctx = ConstVal->getContext();
1373 IRBuilder<> IRB(Ctx);
1374 unsigned NumVectorElements = CV->getNumOperands();
1375 assert(isPowerOf2_32(NumVectorElements) &&
1376 "conversion only supported for pow2 VectorSize!");
1377
1378 for (unsigned i = 0; i < NumVectorElements / 8; ++i) {
1379 uint8_t x = 0;
1380 for (unsigned j = 0; j < 8; ++j) {
1381 uint8_t y = CV->getOperand(i * 8 + j)->getUniqueInteger().getZExtValue();
1382 x |= y << (7 - j);
1383 }
1384 assert((x == 0 || x == 255) && "Either all 0's or all 1's expected!");
1385 NewConst.push_back(IRB.getInt8(x));
1386 }
1387 return ConstantVector::get(NewConst);
1388}
1389
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001390SDValue
Sirish Pande69295b82012-05-10 20:20:25 +00001391HexagonTargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
1392 EVT ValTy = Op.getValueType();
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001393 ConstantPoolSDNode *CPN = cast<ConstantPoolSDNode>(Op);
Krzysztof Parzyszek91ff5c62017-08-01 13:12:53 +00001394 Constant *CVal = nullptr;
1395 bool isVTi1Type = false;
1396 if (const Constant *ConstVal = dyn_cast<Constant>(CPN->getConstVal())) {
1397 Type *CValTy = ConstVal->getType();
1398 if (CValTy->isVectorTy() &&
1399 CValTy->getVectorElementType()->isIntegerTy(1)) {
1400 CVal = convert_i1_to_i8(ConstVal);
1401 isVTi1Type = (CVal != nullptr);
1402 }
1403 }
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001404 unsigned Align = CPN->getAlignment();
Rafael Espindola405e25a2016-06-26 22:24:01 +00001405 bool IsPositionIndependent = isPositionIndependent();
1406 unsigned char TF = IsPositionIndependent ? HexagonII::MO_PCREL : 0;
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001407
Ron Lieberman822ee882016-08-13 23:41:11 +00001408 unsigned Offset = 0;
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001409 SDValue T;
1410 if (CPN->isMachineConstantPoolEntry())
Ron Lieberman822ee882016-08-13 23:41:11 +00001411 T = DAG.getTargetConstantPool(CPN->getMachineCPVal(), ValTy, Align, Offset,
1412 TF);
Krzysztof Parzyszek91ff5c62017-08-01 13:12:53 +00001413 else if (isVTi1Type)
1414 T = DAG.getTargetConstantPool(CVal, ValTy, Align, Offset, TF);
Sirish Pande69295b82012-05-10 20:20:25 +00001415 else
Ron Lieberman822ee882016-08-13 23:41:11 +00001416 T = DAG.getTargetConstantPool(CPN->getConstVal(), ValTy, Align, Offset,
1417 TF);
1418
1419 assert(cast<ConstantPoolSDNode>(T)->getTargetFlags() == TF &&
1420 "Inconsistent target flag encountered");
1421
Rafael Espindola405e25a2016-06-26 22:24:01 +00001422 if (IsPositionIndependent)
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001423 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), ValTy, T);
1424 return DAG.getNode(HexagonISD::CP, SDLoc(Op), ValTy, T);
1425}
1426
1427SDValue
1428HexagonTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
1429 EVT VT = Op.getValueType();
1430 int Idx = cast<JumpTableSDNode>(Op)->getIndex();
Rafael Espindola405e25a2016-06-26 22:24:01 +00001431 if (isPositionIndependent()) {
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001432 SDValue T = DAG.getTargetJumpTable(Idx, VT, HexagonII::MO_PCREL);
1433 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), VT, T);
1434 }
1435
1436 SDValue T = DAG.getTargetJumpTable(Idx, VT);
1437 return DAG.getNode(HexagonISD::JT, SDLoc(Op), VT, T);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001438}
1439
1440SDValue
1441HexagonTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001442 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001443 MachineFunction &MF = DAG.getMachineFunction();
Matthias Braun941a7052016-07-28 18:40:00 +00001444 MachineFrameInfo &MFI = MF.getFrameInfo();
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001445 MFI.setReturnAddressIsTaken(true);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001446
Bill Wendling908bf812014-01-06 00:43:20 +00001447 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00001448 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00001449
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001450 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001451 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001452 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1453 if (Depth) {
1454 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001455 SDValue Offset = DAG.getConstant(4, dl, MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001456 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
1457 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
Justin Lebar9c375812016-07-15 18:27:10 +00001458 MachinePointerInfo());
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001459 }
1460
1461 // Return LR, which contains the return address. Mark it an implicit live-in.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001462 unsigned Reg = MF.addLiveIn(HRI.getRARegister(), getRegClassFor(MVT::i32));
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001463 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
1464}
1465
1466SDValue
1467HexagonTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001468 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
Matthias Braun941a7052016-07-28 18:40:00 +00001469 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001470 MFI.setFrameAddressIsTaken(true);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001471
1472 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001473 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001474 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1475 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001476 HRI.getFrameRegister(), VT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001477 while (Depth--)
1478 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
Justin Lebar9c375812016-07-15 18:27:10 +00001479 MachinePointerInfo());
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001480 return FrameAddr;
1481}
1482
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001483SDValue
1484HexagonTargetLowering::LowerATOMIC_FENCE(SDValue Op, SelectionDAG& DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001485 SDLoc dl(Op);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001486 return DAG.getNode(HexagonISD::BARRIER, dl, MVT::Other, Op.getOperand(0));
1487}
1488
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001489SDValue
1490HexagonTargetLowering::LowerGLOBALADDRESS(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00001491 SDLoc dl(Op);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001492 auto *GAN = cast<GlobalAddressSDNode>(Op);
Mehdi Amini44ede332015-07-09 02:09:04 +00001493 auto PtrVT = getPointerTy(DAG.getDataLayout());
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001494 auto *GV = GAN->getGlobal();
1495 int64_t Offset = GAN->getOffset();
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001496
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001497 auto &HLOF = *HTM.getObjFileLowering();
1498 Reloc::Model RM = HTM.getRelocationModel();
1499
1500 if (RM == Reloc::Static) {
1501 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset);
Peter Collingbourne67335642016-10-24 19:23:39 +00001502 const GlobalObject *GO = GV->getBaseObject();
1503 if (GO && HLOF.isGlobalInSmallSection(GO, HTM))
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001504 return DAG.getNode(HexagonISD::CONST32_GP, dl, PtrVT, GA);
1505 return DAG.getNode(HexagonISD::CONST32, dl, PtrVT, GA);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001506 }
1507
Rafael Espindola3beef8d2016-06-27 23:15:57 +00001508 bool UsePCRel = getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001509 if (UsePCRel) {
1510 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset,
1511 HexagonII::MO_PCREL);
1512 return DAG.getNode(HexagonISD::AT_PCREL, dl, PtrVT, GA);
1513 }
1514
1515 // Use GOT index.
1516 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
1517 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, HexagonII::MO_GOT);
1518 SDValue Off = DAG.getConstant(Offset, dl, MVT::i32);
1519 return DAG.getNode(HexagonISD::AT_GOT, dl, PtrVT, GOT, GA, Off);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001520}
1521
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001522// Specifies that for loads and stores VT can be promoted to PromotedLdStVT.
Jyotsna Verma2ba0c0b2013-03-07 19:10:28 +00001523SDValue
1524HexagonTargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
1525 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Andrew Trickef9de2a2013-05-25 02:42:55 +00001526 SDLoc dl(Op);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001527 EVT PtrVT = getPointerTy(DAG.getDataLayout());
1528
1529 Reloc::Model RM = HTM.getRelocationModel();
1530 if (RM == Reloc::Static) {
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001531 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001532 return DAG.getNode(HexagonISD::CONST32_GP, dl, PtrVT, A);
1533 }
1534
1535 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT, 0, HexagonII::MO_PCREL);
1536 return DAG.getNode(HexagonISD::AT_PCREL, dl, PtrVT, A);
1537}
1538
1539SDValue
1540HexagonTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG)
1541 const {
1542 EVT PtrVT = getPointerTy(DAG.getDataLayout());
1543 SDValue GOTSym = DAG.getTargetExternalSymbol(HEXAGON_GOT_SYM_NAME, PtrVT,
1544 HexagonII::MO_PCREL);
1545 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), PtrVT, GOTSym);
Jyotsna Verma2ba0c0b2013-03-07 19:10:28 +00001546}
1547
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001548SDValue
1549HexagonTargetLowering::GetDynamicTLSAddr(SelectionDAG &DAG, SDValue Chain,
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +00001550 GlobalAddressSDNode *GA, SDValue Glue, EVT PtrVT, unsigned ReturnReg,
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001551 unsigned char OperandFlags) const {
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +00001552 MachineFunction &MF = DAG.getMachineFunction();
1553 MachineFrameInfo &MFI = MF.getFrameInfo();
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001554 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1555 SDLoc dl(GA);
1556 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
1557 GA->getValueType(0),
1558 GA->getOffset(),
1559 OperandFlags);
1560 // Create Operands for the call.The Operands should have the following:
1561 // 1. Chain SDValue
1562 // 2. Callee which in this case is the Global address value.
1563 // 3. Registers live into the call.In this case its R0, as we
1564 // have just one argument to be passed.
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +00001565 // 4. Glue.
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001566 // Note: The order is important.
1567
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +00001568 const auto &HRI = *Subtarget.getRegisterInfo();
1569 const uint32_t *Mask = HRI.getCallPreservedMask(MF, CallingConv::C);
1570 assert(Mask && "Missing call preserved mask for calling convention");
1571 SDValue Ops[] = { Chain, TGA, DAG.getRegister(Hexagon::R0, PtrVT),
1572 DAG.getRegisterMask(Mask), Glue };
1573 Chain = DAG.getNode(HexagonISD::CALL, dl, NodeTys, Ops);
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001574
1575 // Inform MFI that function has calls.
Matthias Braun941a7052016-07-28 18:40:00 +00001576 MFI.setAdjustsStack(true);
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001577
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +00001578 Glue = Chain.getValue(1);
1579 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Glue);
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001580}
1581
1582//
1583// Lower using the intial executable model for TLS addresses
1584//
1585SDValue
1586HexagonTargetLowering::LowerToTLSInitialExecModel(GlobalAddressSDNode *GA,
1587 SelectionDAG &DAG) const {
1588 SDLoc dl(GA);
1589 int64_t Offset = GA->getOffset();
1590 auto PtrVT = getPointerTy(DAG.getDataLayout());
1591
1592 // Get the thread pointer.
1593 SDValue TP = DAG.getCopyFromReg(DAG.getEntryNode(), dl, Hexagon::UGP, PtrVT);
1594
Rafael Espindola405e25a2016-06-26 22:24:01 +00001595 bool IsPositionIndependent = isPositionIndependent();
1596 unsigned char TF =
1597 IsPositionIndependent ? HexagonII::MO_IEGOT : HexagonII::MO_IE;
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001598
1599 // First generate the TLS symbol address
1600 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, PtrVT,
1601 Offset, TF);
1602
1603 SDValue Sym = DAG.getNode(HexagonISD::CONST32, dl, PtrVT, TGA);
1604
Rafael Espindola405e25a2016-06-26 22:24:01 +00001605 if (IsPositionIndependent) {
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001606 // Generate the GOT pointer in case of position independent code
1607 SDValue GOT = LowerGLOBAL_OFFSET_TABLE(Sym, DAG);
1608
1609 // Add the TLS Symbol address to GOT pointer.This gives
1610 // GOT relative relocation for the symbol.
1611 Sym = DAG.getNode(ISD::ADD, dl, PtrVT, GOT, Sym);
1612 }
1613
1614 // Load the offset value for TLS symbol.This offset is relative to
1615 // thread pointer.
Justin Lebar9c375812016-07-15 18:27:10 +00001616 SDValue LoadOffset =
1617 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Sym, MachinePointerInfo());
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001618
1619 // Address of the thread local variable is the add of thread
1620 // pointer and the offset of the variable.
1621 return DAG.getNode(ISD::ADD, dl, PtrVT, TP, LoadOffset);
1622}
1623
1624//
1625// Lower using the local executable model for TLS addresses
1626//
1627SDValue
1628HexagonTargetLowering::LowerToTLSLocalExecModel(GlobalAddressSDNode *GA,
1629 SelectionDAG &DAG) const {
1630 SDLoc dl(GA);
1631 int64_t Offset = GA->getOffset();
1632 auto PtrVT = getPointerTy(DAG.getDataLayout());
1633
1634 // Get the thread pointer.
1635 SDValue TP = DAG.getCopyFromReg(DAG.getEntryNode(), dl, Hexagon::UGP, PtrVT);
1636 // Generate the TLS symbol address
1637 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, PtrVT, Offset,
1638 HexagonII::MO_TPREL);
1639 SDValue Sym = DAG.getNode(HexagonISD::CONST32, dl, PtrVT, TGA);
1640
1641 // Address of the thread local variable is the add of thread
1642 // pointer and the offset of the variable.
1643 return DAG.getNode(ISD::ADD, dl, PtrVT, TP, Sym);
1644}
1645
1646//
1647// Lower using the general dynamic model for TLS addresses
1648//
1649SDValue
1650HexagonTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
1651 SelectionDAG &DAG) const {
1652 SDLoc dl(GA);
1653 int64_t Offset = GA->getOffset();
1654 auto PtrVT = getPointerTy(DAG.getDataLayout());
1655
1656 // First generate the TLS symbol address
1657 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, PtrVT, Offset,
1658 HexagonII::MO_GDGOT);
1659
1660 // Then, generate the GOT pointer
1661 SDValue GOT = LowerGLOBAL_OFFSET_TABLE(TGA, DAG);
1662
1663 // Add the TLS symbol and the GOT pointer
1664 SDValue Sym = DAG.getNode(HexagonISD::CONST32, dl, PtrVT, TGA);
1665 SDValue Chain = DAG.getNode(ISD::ADD, dl, PtrVT, GOT, Sym);
1666
1667 // Copy over the argument to R0
1668 SDValue InFlag;
1669 Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, Hexagon::R0, Chain, InFlag);
1670 InFlag = Chain.getValue(1);
1671
Krzysztof Parzyszeka7503832017-05-02 18:15:33 +00001672 unsigned Flags =
1673 static_cast<const HexagonSubtarget &>(DAG.getSubtarget()).useLongCalls()
1674 ? HexagonII::MO_GDPLT | HexagonII::HMOTF_ConstExtended
1675 : HexagonII::MO_GDPLT;
1676
Krzysztof Parzyszek1aaf41a2017-02-17 22:14:51 +00001677 return GetDynamicTLSAddr(DAG, Chain, GA, InFlag, PtrVT,
Krzysztof Parzyszeka7503832017-05-02 18:15:33 +00001678 Hexagon::R0, Flags);
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001679}
1680
1681//
1682// Lower TLS addresses.
1683//
1684// For now for dynamic models, we only support the general dynamic model.
1685//
1686SDValue
1687HexagonTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1688 SelectionDAG &DAG) const {
1689 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
1690
1691 switch (HTM.getTLSModel(GA->getGlobal())) {
1692 case TLSModel::GeneralDynamic:
1693 case TLSModel::LocalDynamic:
1694 return LowerToTLSGeneralDynamicModel(GA, DAG);
1695 case TLSModel::InitialExec:
1696 return LowerToTLSInitialExecModel(GA, DAG);
1697 case TLSModel::LocalExec:
1698 return LowerToTLSLocalExecModel(GA, DAG);
1699 }
1700 llvm_unreachable("Bogus TLS model");
1701}
1702
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001703//===----------------------------------------------------------------------===//
1704// TargetLowering Implementation
1705//===----------------------------------------------------------------------===//
1706
Eric Christopherd737b762015-02-02 22:11:36 +00001707HexagonTargetLowering::HexagonTargetLowering(const TargetMachine &TM,
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001708 const HexagonSubtarget &ST)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001709 : TargetLowering(TM), HTM(static_cast<const HexagonTargetMachine&>(TM)),
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001710 Subtarget(ST) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001711 bool IsV4 = !Subtarget.hasV5TOps();
1712 auto &HRI = *Subtarget.getRegisterInfo();
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00001713 bool UseHVX = Subtarget.useHVXOps();
1714 bool UseHVXSgl = Subtarget.useHVXSglOps();
1715 bool UseHVXDbl = Subtarget.useHVXDblOps();
Sirish Pande69295b82012-05-10 20:20:25 +00001716
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001717 setPrefLoopAlignment(4);
1718 setPrefFunctionAlignment(4);
1719 setMinFunctionAlignment(2);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001720 setStackPointerRegisterToSaveRestore(HRI.getStackRegister());
1721
Krzysztof Parzyszekf228c952016-06-22 16:07:10 +00001722 setMaxAtomicSizeInBitsSupported(64);
1723 setMinCmpXchgSizeInBits(32);
1724
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001725 if (EnableHexSDNodeSched)
1726 setSchedulingPreference(Sched::VLIW);
1727 else
1728 setSchedulingPreference(Sched::Source);
1729
1730 // Limits for inline expansion of memcpy/memmove
1731 MaxStoresPerMemcpy = MaxStoresPerMemcpyCL;
1732 MaxStoresPerMemcpyOptSize = MaxStoresPerMemcpyOptSizeCL;
1733 MaxStoresPerMemmove = MaxStoresPerMemmoveCL;
1734 MaxStoresPerMemmoveOptSize = MaxStoresPerMemmoveOptSizeCL;
1735 MaxStoresPerMemset = MaxStoresPerMemsetCL;
1736 MaxStoresPerMemsetOptSize = MaxStoresPerMemsetOptSizeCL;
1737
1738 //
1739 // Set up register classes.
1740 //
1741
1742 addRegisterClass(MVT::i1, &Hexagon::PredRegsRegClass);
1743 addRegisterClass(MVT::v2i1, &Hexagon::PredRegsRegClass); // bbbbaaaa
1744 addRegisterClass(MVT::v4i1, &Hexagon::PredRegsRegClass); // ddccbbaa
1745 addRegisterClass(MVT::v8i1, &Hexagon::PredRegsRegClass); // hgfedcba
1746 addRegisterClass(MVT::i32, &Hexagon::IntRegsRegClass);
1747 addRegisterClass(MVT::v4i8, &Hexagon::IntRegsRegClass);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001748 addRegisterClass(MVT::v2i16, &Hexagon::IntRegsRegClass);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001749 addRegisterClass(MVT::i64, &Hexagon::DoubleRegsRegClass);
1750 addRegisterClass(MVT::v8i8, &Hexagon::DoubleRegsRegClass);
1751 addRegisterClass(MVT::v4i16, &Hexagon::DoubleRegsRegClass);
1752 addRegisterClass(MVT::v2i32, &Hexagon::DoubleRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001753
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001754 if (Subtarget.hasV5TOps()) {
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001755 addRegisterClass(MVT::f32, &Hexagon::IntRegsRegClass);
1756 addRegisterClass(MVT::f64, &Hexagon::DoubleRegsRegClass);
1757 }
Sirish Pande69295b82012-05-10 20:20:25 +00001758
Krzysztof Parzyszek195dc8d2015-11-26 04:33:11 +00001759 if (Subtarget.hasV60TOps()) {
1760 if (Subtarget.useHVXSglOps()) {
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00001761 addRegisterClass(MVT::v64i8, &Hexagon::HvxVRRegClass);
1762 addRegisterClass(MVT::v32i16, &Hexagon::HvxVRRegClass);
1763 addRegisterClass(MVT::v16i32, &Hexagon::HvxVRRegClass);
1764 addRegisterClass(MVT::v8i64, &Hexagon::HvxVRRegClass);
1765 addRegisterClass(MVT::v128i8, &Hexagon::HvxWRRegClass);
1766 addRegisterClass(MVT::v64i16, &Hexagon::HvxWRRegClass);
1767 addRegisterClass(MVT::v32i32, &Hexagon::HvxWRRegClass);
1768 addRegisterClass(MVT::v16i64, &Hexagon::HvxWRRegClass);
1769 addRegisterClass(MVT::v512i1, &Hexagon::HvxQRRegClass);
Krzysztof Parzyszek195dc8d2015-11-26 04:33:11 +00001770 } else if (Subtarget.useHVXDblOps()) {
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00001771 addRegisterClass(MVT::v128i8, &Hexagon::HvxVRRegClass);
1772 addRegisterClass(MVT::v64i16, &Hexagon::HvxVRRegClass);
1773 addRegisterClass(MVT::v32i32, &Hexagon::HvxVRRegClass);
1774 addRegisterClass(MVT::v16i64, &Hexagon::HvxVRRegClass);
1775 addRegisterClass(MVT::v256i8, &Hexagon::HvxWRRegClass);
1776 addRegisterClass(MVT::v128i16, &Hexagon::HvxWRRegClass);
1777 addRegisterClass(MVT::v64i32, &Hexagon::HvxWRRegClass);
1778 addRegisterClass(MVT::v32i64, &Hexagon::HvxWRRegClass);
1779 addRegisterClass(MVT::v1024i1, &Hexagon::HvxQRRegClass);
Krzysztof Parzyszek195dc8d2015-11-26 04:33:11 +00001780 }
Krzysztof Parzyszek195dc8d2015-11-26 04:33:11 +00001781 }
1782
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001783 //
1784 // Handling of scalar operations.
1785 //
1786 // All operations default to "legal", except:
1787 // - indexed loads and stores (pre-/post-incremented),
1788 // - ANY_EXTEND_VECTOR_INREG, ATOMIC_CMP_SWAP_WITH_SUCCESS, CONCAT_VECTORS,
1789 // ConstantFP, DEBUGTRAP, FCEIL, FCOPYSIGN, FEXP, FEXP2, FFLOOR, FGETSIGN,
1790 // FLOG, FLOG2, FLOG10, FMAXNUM, FMINNUM, FNEARBYINT, FRINT, FROUND, TRAP,
1791 // FTRUNC, PREFETCH, SIGN_EXTEND_VECTOR_INREG, ZERO_EXTEND_VECTOR_INREG,
1792 // which default to "expand" for at least one type.
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001793
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001794 // Misc operations.
1795 setOperationAction(ISD::ConstantFP, MVT::f32, Legal); // Default: expand
1796 setOperationAction(ISD::ConstantFP, MVT::f64, Legal); // Default: expand
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001797
1798 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001799 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001800 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001801 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
1802 setOperationAction(ISD::INLINEASM, MVT::Other, Custom);
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00001803 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
Krzysztof Parzyszekab57c2b2017-02-22 22:28:47 +00001804 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00001805 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001806 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001807 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00001808 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001809 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001810
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001811 // Custom legalize GlobalAddress nodes into CONST32.
1812 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001813 setOperationAction(ISD::GlobalAddress, MVT::i8, Custom);
1814 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001815
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001816 // Hexagon needs to optimize cases with negative constants.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001817 setOperationAction(ISD::SETCC, MVT::i8, Custom);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001818 setOperationAction(ISD::SETCC, MVT::i16, Custom);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001819
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001820 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
1821 setOperationAction(ISD::VASTART, MVT::Other, Custom);
1822 setOperationAction(ISD::VAEND, MVT::Other, Expand);
1823 setOperationAction(ISD::VAARG, MVT::Other, Expand);
1824
1825 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
1826 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
1827 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
1828
1829 if (EmitJumpTables)
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001830 setMinimumJumpTableEntries(MinimumJumpTables);
Krzysztof Parzyszeka61f7da2016-01-13 21:43:13 +00001831 else
Eugene Zelenko58655bb2016-12-17 01:09:05 +00001832 setMinimumJumpTableEntries(std::numeric_limits<int>::max());
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00001833 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001834
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001835 // Hexagon has instructions for add/sub with carry. The problem with
1836 // modeling these instructions is that they produce 2 results: Rdd and Px.
1837 // To model the update of Px, we will have to use Defs[p0..p3] which will
1838 // cause any predicate live range to spill. So, we pretend we dont't have
1839 // these instructions.
1840 setOperationAction(ISD::ADDE, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001841 setOperationAction(ISD::ADDE, MVT::i16, Expand);
1842 setOperationAction(ISD::ADDE, MVT::i32, Expand);
1843 setOperationAction(ISD::ADDE, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001844 setOperationAction(ISD::SUBE, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001845 setOperationAction(ISD::SUBE, MVT::i16, Expand);
1846 setOperationAction(ISD::SUBE, MVT::i32, Expand);
1847 setOperationAction(ISD::SUBE, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001848 setOperationAction(ISD::ADDC, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001849 setOperationAction(ISD::ADDC, MVT::i16, Expand);
1850 setOperationAction(ISD::ADDC, MVT::i32, Expand);
1851 setOperationAction(ISD::ADDC, MVT::i64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001852 setOperationAction(ISD::SUBC, MVT::i8, Expand);
Eric Christopher6e9bcd12014-06-27 00:13:49 +00001853 setOperationAction(ISD::SUBC, MVT::i16, Expand);
1854 setOperationAction(ISD::SUBC, MVT::i32, Expand);
1855 setOperationAction(ISD::SUBC, MVT::i64, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001856
Krzysztof Parzyszek2c4487d2015-04-13 20:37:01 +00001857 // Only add and sub that detect overflow are the saturating ones.
1858 for (MVT VT : MVT::integer_valuetypes()) {
1859 setOperationAction(ISD::UADDO, VT, Expand);
1860 setOperationAction(ISD::SADDO, VT, Expand);
1861 setOperationAction(ISD::USUBO, VT, Expand);
1862 setOperationAction(ISD::SSUBO, VT, Expand);
1863 }
1864
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001865 setOperationAction(ISD::CTLZ, MVT::i8, Promote);
1866 setOperationAction(ISD::CTLZ, MVT::i16, Promote);
1867 setOperationAction(ISD::CTTZ, MVT::i8, Promote);
1868 setOperationAction(ISD::CTTZ, MVT::i16, Promote);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00001869
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001870 // In V5, popcount can count # of 1s in i64 but returns i32.
1871 // On V4 it will be expanded (set later).
1872 setOperationAction(ISD::CTPOP, MVT::i8, Promote);
1873 setOperationAction(ISD::CTPOP, MVT::i16, Promote);
1874 setOperationAction(ISD::CTPOP, MVT::i32, Promote);
Krzysztof Parzyszekaf5ff652017-02-23 15:02:09 +00001875 setOperationAction(ISD::CTPOP, MVT::i64, Legal);
1876
1877 setOperationAction(ISD::BITREVERSE, MVT::i32, Legal);
1878 setOperationAction(ISD::BITREVERSE, MVT::i64, Legal);
1879 setOperationAction(ISD::BSWAP, MVT::i32, Legal);
1880 setOperationAction(ISD::BSWAP, MVT::i64, Legal);
Krzysztof Parzyszekef580172017-05-30 17:47:51 +00001881 setOperationAction(ISD::MUL, MVT::i64, Legal);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001882
Benjamin Kramer62460692015-04-25 14:46:53 +00001883 for (unsigned IntExpOp :
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001884 { ISD::SDIV, ISD::UDIV, ISD::SREM, ISD::UREM,
1885 ISD::SDIVREM, ISD::UDIVREM, ISD::ROTL, ISD::ROTR,
Krzysztof Parzyszekaf5ff652017-02-23 15:02:09 +00001886 ISD::SHL_PARTS, ISD::SRA_PARTS, ISD::SRL_PARTS,
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00001887 ISD::SMUL_LOHI, ISD::UMUL_LOHI }) {
Benjamin Kramer62460692015-04-25 14:46:53 +00001888 setOperationAction(IntExpOp, MVT::i32, Expand);
1889 setOperationAction(IntExpOp, MVT::i64, Expand);
1890 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001891
Benjamin Kramer62460692015-04-25 14:46:53 +00001892 for (unsigned FPExpOp :
1893 {ISD::FDIV, ISD::FREM, ISD::FSQRT, ISD::FSIN, ISD::FCOS, ISD::FSINCOS,
1894 ISD::FPOW, ISD::FCOPYSIGN}) {
1895 setOperationAction(FPExpOp, MVT::f32, Expand);
1896 setOperationAction(FPExpOp, MVT::f64, Expand);
1897 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001898
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001899 // No extending loads from i32.
1900 for (MVT VT : MVT::integer_valuetypes()) {
1901 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i32, Expand);
1902 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i32, Expand);
1903 setLoadExtAction(ISD::EXTLOAD, VT, MVT::i32, Expand);
1904 }
1905 // Turn FP truncstore into trunc + store.
1906 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Michael Kuperstein2bc3d4d2016-08-18 20:08:15 +00001907 // Turn FP extload into load/fpextend.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001908 for (MVT VT : MVT::fp_valuetypes())
1909 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001910
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001911 // Expand BR_CC and SELECT_CC for all integer and fp types.
1912 for (MVT VT : MVT::integer_valuetypes()) {
1913 setOperationAction(ISD::BR_CC, VT, Expand);
1914 setOperationAction(ISD::SELECT_CC, VT, Expand);
1915 }
1916 for (MVT VT : MVT::fp_valuetypes()) {
1917 setOperationAction(ISD::BR_CC, VT, Expand);
1918 setOperationAction(ISD::SELECT_CC, VT, Expand);
1919 }
1920 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001921
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001922 //
1923 // Handling of vector operations.
1924 //
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001925
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001926 promoteLdStType(MVT::v4i8, MVT::i32);
1927 promoteLdStType(MVT::v2i16, MVT::i32);
1928 promoteLdStType(MVT::v8i8, MVT::i64);
Krzysztof Parzyszek5eef92e2017-07-17 15:45:45 +00001929 promoteLdStType(MVT::v4i16, MVT::i64);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001930 promoteLdStType(MVT::v2i32, MVT::i64);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00001931
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001932 // Set the action for vector operations to "expand", then override it with
1933 // either "custom" or "legal" for specific cases.
Craig Topper26260942015-10-18 05:15:34 +00001934 static const unsigned VectExpOps[] = {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001935 // Integer arithmetic:
1936 ISD::ADD, ISD::SUB, ISD::MUL, ISD::SDIV, ISD::UDIV,
1937 ISD::SREM, ISD::UREM, ISD::SDIVREM, ISD::UDIVREM, ISD::ADDC,
1938 ISD::SUBC, ISD::SADDO, ISD::UADDO, ISD::SSUBO, ISD::USUBO,
1939 ISD::SMUL_LOHI, ISD::UMUL_LOHI,
1940 // Logical/bit:
1941 ISD::AND, ISD::OR, ISD::XOR, ISD::ROTL, ISD::ROTR,
Craig Topper33772c52016-04-28 03:34:31 +00001942 ISD::CTPOP, ISD::CTLZ, ISD::CTTZ,
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001943 // Floating point arithmetic/math functions:
1944 ISD::FADD, ISD::FSUB, ISD::FMUL, ISD::FMA, ISD::FDIV,
1945 ISD::FREM, ISD::FNEG, ISD::FABS, ISD::FSQRT, ISD::FSIN,
Craig Topperf6d4dc52017-05-30 15:27:55 +00001946 ISD::FCOS, ISD::FPOW, ISD::FLOG, ISD::FLOG2,
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001947 ISD::FLOG10, ISD::FEXP, ISD::FEXP2, ISD::FCEIL, ISD::FTRUNC,
1948 ISD::FRINT, ISD::FNEARBYINT, ISD::FROUND, ISD::FFLOOR,
1949 ISD::FMINNUM, ISD::FMAXNUM, ISD::FSINCOS,
1950 // Misc:
Krzysztof Parzyszek046da742016-10-27 14:30:16 +00001951 ISD::BR_CC, ISD::SELECT_CC, ISD::ConstantPool,
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001952 // Vector:
1953 ISD::BUILD_VECTOR, ISD::SCALAR_TO_VECTOR,
1954 ISD::EXTRACT_VECTOR_ELT, ISD::INSERT_VECTOR_ELT,
1955 ISD::EXTRACT_SUBVECTOR, ISD::INSERT_SUBVECTOR,
1956 ISD::CONCAT_VECTORS, ISD::VECTOR_SHUFFLE
1957 };
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001958
1959 for (MVT VT : MVT::vector_valuetypes()) {
Benjamin Kramer62460692015-04-25 14:46:53 +00001960 for (unsigned VectExpOp : VectExpOps)
1961 setOperationAction(VectExpOp, VT, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001962
Krzysztof Parzyszeka696b1b2016-09-08 17:42:14 +00001963 // Expand all extending loads and truncating stores:
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001964 for (MVT TargetVT : MVT::vector_valuetypes()) {
Krzysztof Parzyszeka696b1b2016-09-08 17:42:14 +00001965 if (TargetVT == VT)
1966 continue;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001967 setLoadExtAction(ISD::EXTLOAD, TargetVT, VT, Expand);
Krzysztof Parzyszeka696b1b2016-09-08 17:42:14 +00001968 setLoadExtAction(ISD::ZEXTLOAD, TargetVT, VT, Expand);
1969 setLoadExtAction(ISD::SEXTLOAD, TargetVT, VT, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001970 setTruncStoreAction(VT, TargetVT, Expand);
1971 }
1972
Krzysztof Parzyszek046da742016-10-27 14:30:16 +00001973 // Normalize all inputs to SELECT to be vectors of i32.
1974 if (VT.getVectorElementType() != MVT::i32) {
1975 MVT VT32 = MVT::getVectorVT(MVT::i32, VT.getSizeInBits()/32);
1976 setOperationAction(ISD::SELECT, VT, Promote);
1977 AddPromotedToType(ISD::SELECT, VT, VT32);
1978 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001979 setOperationAction(ISD::SRA, VT, Custom);
1980 setOperationAction(ISD::SHL, VT, Custom);
1981 setOperationAction(ISD::SRL, VT, Custom);
1982 }
1983
1984 // Types natively supported:
Benjamin Kramer62460692015-04-25 14:46:53 +00001985 for (MVT NativeVT : {MVT::v2i1, MVT::v4i1, MVT::v8i1, MVT::v32i1, MVT::v64i1,
1986 MVT::v4i8, MVT::v8i8, MVT::v2i16, MVT::v4i16, MVT::v1i32,
1987 MVT::v2i32, MVT::v1i64}) {
1988 setOperationAction(ISD::BUILD_VECTOR, NativeVT, Custom);
1989 setOperationAction(ISD::EXTRACT_VECTOR_ELT, NativeVT, Custom);
1990 setOperationAction(ISD::INSERT_VECTOR_ELT, NativeVT, Custom);
1991 setOperationAction(ISD::EXTRACT_SUBVECTOR, NativeVT, Custom);
1992 setOperationAction(ISD::INSERT_SUBVECTOR, NativeVT, Custom);
1993 setOperationAction(ISD::CONCAT_VECTORS, NativeVT, Custom);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00001994
Benjamin Kramer62460692015-04-25 14:46:53 +00001995 setOperationAction(ISD::ADD, NativeVT, Legal);
1996 setOperationAction(ISD::SUB, NativeVT, Legal);
1997 setOperationAction(ISD::MUL, NativeVT, Legal);
1998 setOperationAction(ISD::AND, NativeVT, Legal);
1999 setOperationAction(ISD::OR, NativeVT, Legal);
2000 setOperationAction(ISD::XOR, NativeVT, Legal);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002001 }
2002
2003 setOperationAction(ISD::SETCC, MVT::v2i16, Custom);
2004 setOperationAction(ISD::VSELECT, MVT::v2i16, Custom);
2005 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
2006 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
Krzysztof Parzyszekd19d0502016-09-13 21:16:07 +00002007
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002008 if (UseHVX) {
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002009 if (UseHVXSgl) {
2010 setOperationAction(ISD::CONCAT_VECTORS, MVT::v128i8, Custom);
2011 setOperationAction(ISD::CONCAT_VECTORS, MVT::v64i16, Custom);
2012 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i32, Custom);
2013 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i64, Custom);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002014 // We try to generate the vpack{e/o} instructions. If we fail
2015 // we fall back upon ExpandOp.
2016 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v64i8, Custom);
2017 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v32i16, Custom);
2018 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v64i8, Custom);
2019 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v32i16, Custom);
2020 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v16i32, Custom);
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002021 } else if (UseHVXDbl) {
2022 setOperationAction(ISD::CONCAT_VECTORS, MVT::v256i8, Custom);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002023 setOperationAction(ISD::CONCAT_VECTORS, MVT::v128i16, Custom);
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002024 setOperationAction(ISD::CONCAT_VECTORS, MVT::v64i32, Custom);
2025 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i64, Custom);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002026 // We try to generate the vpack{e/o} instructions. If we fail
2027 // we fall back upon ExpandOp.
2028 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v128i8, Custom);
2029 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v64i16, Custom);
2030 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4i32, Custom);
2031 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v128i8, Custom);
2032 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v64i16, Custom);
2033 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v32i32, Custom);
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002034 } else {
2035 llvm_unreachable("Unrecognized HVX mode");
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002036 }
2037 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002038 // Subtarget-specific operation actions.
2039 //
2040 if (Subtarget.hasV5TOps()) {
2041 setOperationAction(ISD::FMA, MVT::f64, Expand);
2042 setOperationAction(ISD::FADD, MVT::f64, Expand);
2043 setOperationAction(ISD::FSUB, MVT::f64, Expand);
2044 setOperationAction(ISD::FMUL, MVT::f64, Expand);
2045
Krzysztof Parzyszekbd8ef4b2016-08-19 13:34:31 +00002046 setOperationAction(ISD::FMINNUM, MVT::f32, Legal);
2047 setOperationAction(ISD::FMAXNUM, MVT::f32, Legal);
2048
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002049 setOperationAction(ISD::FP_TO_UINT, MVT::i1, Promote);
2050 setOperationAction(ISD::FP_TO_UINT, MVT::i8, Promote);
2051 setOperationAction(ISD::FP_TO_UINT, MVT::i16, Promote);
2052 setOperationAction(ISD::FP_TO_SINT, MVT::i1, Promote);
2053 setOperationAction(ISD::FP_TO_SINT, MVT::i8, Promote);
2054 setOperationAction(ISD::FP_TO_SINT, MVT::i16, Promote);
2055 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
2056 setOperationAction(ISD::UINT_TO_FP, MVT::i8, Promote);
2057 setOperationAction(ISD::UINT_TO_FP, MVT::i16, Promote);
2058 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
2059 setOperationAction(ISD::SINT_TO_FP, MVT::i8, Promote);
2060 setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002061 } else { // V4
2062 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
2063 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Expand);
2064 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
2065 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
2066 setOperationAction(ISD::FP_TO_SINT, MVT::f64, Expand);
2067 setOperationAction(ISD::FP_TO_SINT, MVT::f32, Expand);
2068 setOperationAction(ISD::FP_EXTEND, MVT::f32, Expand);
2069 setOperationAction(ISD::FP_ROUND, MVT::f64, Expand);
2070 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
2071
2072 setOperationAction(ISD::CTPOP, MVT::i8, Expand);
2073 setOperationAction(ISD::CTPOP, MVT::i16, Expand);
2074 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
2075 setOperationAction(ISD::CTPOP, MVT::i64, Expand);
2076
2077 // Expand these operations for both f32 and f64:
Benjamin Kramer62460692015-04-25 14:46:53 +00002078 for (unsigned FPExpOpV4 :
2079 {ISD::FADD, ISD::FSUB, ISD::FMUL, ISD::FABS, ISD::FNEG, ISD::FMA}) {
2080 setOperationAction(FPExpOpV4, MVT::f32, Expand);
2081 setOperationAction(FPExpOpV4, MVT::f64, Expand);
2082 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002083
Benjamin Kramer62460692015-04-25 14:46:53 +00002084 for (ISD::CondCode FPExpCCV4 :
2085 {ISD::SETOEQ, ISD::SETOGT, ISD::SETOLT, ISD::SETOGE, ISD::SETOLE,
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002086 ISD::SETUO, ISD::SETO}) {
Benjamin Kramer62460692015-04-25 14:46:53 +00002087 setCondCodeAction(FPExpCCV4, MVT::f32, Expand);
2088 setCondCodeAction(FPExpCCV4, MVT::f64, Expand);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002089 }
2090 }
2091
2092 // Handling of indexed loads/stores: default is "expand".
2093 //
Krzysztof Parzyszek2a480592016-07-26 20:30:30 +00002094 for (MVT VT : {MVT::i8, MVT::i16, MVT::i32, MVT::i64}) {
2095 setIndexedLoadAction(ISD::POST_INC, VT, Legal);
2096 setIndexedStoreAction(ISD::POST_INC, VT, Legal);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002097 }
2098
Krzysztof Parzyszek2a480592016-07-26 20:30:30 +00002099 if (UseHVXSgl) {
2100 for (MVT VT : {MVT::v64i8, MVT::v32i16, MVT::v16i32, MVT::v8i64,
2101 MVT::v128i8, MVT::v64i16, MVT::v32i32, MVT::v16i64}) {
2102 setIndexedLoadAction(ISD::POST_INC, VT, Legal);
2103 setIndexedStoreAction(ISD::POST_INC, VT, Legal);
2104 }
2105 } else if (UseHVXDbl) {
2106 for (MVT VT : {MVT::v128i8, MVT::v64i16, MVT::v32i32, MVT::v16i64,
2107 MVT::v256i8, MVT::v128i16, MVT::v64i32, MVT::v32i64}) {
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002108 setIndexedLoadAction(ISD::POST_INC, VT, Legal);
2109 setIndexedStoreAction(ISD::POST_INC, VT, Legal);
2110 }
2111 }
2112
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002113 computeRegisterProperties(&HRI);
2114
2115 //
2116 // Library calls for unsupported operations
2117 //
2118 bool FastMath = EnableFastMath;
2119
Benjamin Kramera37c8092015-04-25 14:46:46 +00002120 setLibcallName(RTLIB::SDIV_I32, "__hexagon_divsi3");
2121 setLibcallName(RTLIB::SDIV_I64, "__hexagon_divdi3");
2122 setLibcallName(RTLIB::UDIV_I32, "__hexagon_udivsi3");
2123 setLibcallName(RTLIB::UDIV_I64, "__hexagon_udivdi3");
2124 setLibcallName(RTLIB::SREM_I32, "__hexagon_modsi3");
2125 setLibcallName(RTLIB::SREM_I64, "__hexagon_moddi3");
2126 setLibcallName(RTLIB::UREM_I32, "__hexagon_umodsi3");
2127 setLibcallName(RTLIB::UREM_I64, "__hexagon_umoddi3");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002128
Benjamin Kramera37c8092015-04-25 14:46:46 +00002129 setLibcallName(RTLIB::SINTTOFP_I128_F64, "__hexagon_floattidf");
2130 setLibcallName(RTLIB::SINTTOFP_I128_F32, "__hexagon_floattisf");
2131 setLibcallName(RTLIB::FPTOUINT_F32_I128, "__hexagon_fixunssfti");
2132 setLibcallName(RTLIB::FPTOUINT_F64_I128, "__hexagon_fixunsdfti");
2133 setLibcallName(RTLIB::FPTOSINT_F32_I128, "__hexagon_fixsfti");
2134 setLibcallName(RTLIB::FPTOSINT_F64_I128, "__hexagon_fixdfti");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002135
2136 if (IsV4) {
2137 // Handle single-precision floating point operations on V4.
Benjamin Kramera37c8092015-04-25 14:46:46 +00002138 if (FastMath) {
2139 setLibcallName(RTLIB::ADD_F32, "__hexagon_fast_addsf3");
2140 setLibcallName(RTLIB::SUB_F32, "__hexagon_fast_subsf3");
2141 setLibcallName(RTLIB::MUL_F32, "__hexagon_fast_mulsf3");
2142 setLibcallName(RTLIB::OGT_F32, "__hexagon_fast_gtsf2");
2143 setLibcallName(RTLIB::OLT_F32, "__hexagon_fast_ltsf2");
2144 // Double-precision compares.
2145 setLibcallName(RTLIB::OGT_F64, "__hexagon_fast_gtdf2");
2146 setLibcallName(RTLIB::OLT_F64, "__hexagon_fast_ltdf2");
2147 } else {
2148 setLibcallName(RTLIB::ADD_F32, "__hexagon_addsf3");
2149 setLibcallName(RTLIB::SUB_F32, "__hexagon_subsf3");
2150 setLibcallName(RTLIB::MUL_F32, "__hexagon_mulsf3");
2151 setLibcallName(RTLIB::OGT_F32, "__hexagon_gtsf2");
2152 setLibcallName(RTLIB::OLT_F32, "__hexagon_ltsf2");
2153 // Double-precision compares.
2154 setLibcallName(RTLIB::OGT_F64, "__hexagon_gtdf2");
2155 setLibcallName(RTLIB::OLT_F64, "__hexagon_ltdf2");
2156 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002157 }
2158
2159 // This is the only fast library function for sqrtd.
2160 if (FastMath)
Benjamin Kramera37c8092015-04-25 14:46:46 +00002161 setLibcallName(RTLIB::SQRT_F64, "__hexagon_fast2_sqrtdf2");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002162
Benjamin Kramera37c8092015-04-25 14:46:46 +00002163 // Prefix is: nothing for "slow-math",
2164 // "fast2_" for V4 fast-math and V5+ fast-math double-precision
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002165 // (actually, keep fast-math and fast-math2 separate for now)
Benjamin Kramera37c8092015-04-25 14:46:46 +00002166 if (FastMath) {
2167 setLibcallName(RTLIB::ADD_F64, "__hexagon_fast_adddf3");
2168 setLibcallName(RTLIB::SUB_F64, "__hexagon_fast_subdf3");
2169 setLibcallName(RTLIB::MUL_F64, "__hexagon_fast_muldf3");
2170 setLibcallName(RTLIB::DIV_F64, "__hexagon_fast_divdf3");
2171 // Calling __hexagon_fast2_divsf3 with fast-math on V5 (ok).
2172 setLibcallName(RTLIB::DIV_F32, "__hexagon_fast_divsf3");
2173 } else {
2174 setLibcallName(RTLIB::ADD_F64, "__hexagon_adddf3");
2175 setLibcallName(RTLIB::SUB_F64, "__hexagon_subdf3");
2176 setLibcallName(RTLIB::MUL_F64, "__hexagon_muldf3");
2177 setLibcallName(RTLIB::DIV_F64, "__hexagon_divdf3");
2178 setLibcallName(RTLIB::DIV_F32, "__hexagon_divsf3");
2179 }
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002180
2181 if (Subtarget.hasV5TOps()) {
2182 if (FastMath)
Benjamin Kramera37c8092015-04-25 14:46:46 +00002183 setLibcallName(RTLIB::SQRT_F32, "__hexagon_fast2_sqrtf");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002184 else
Benjamin Kramera37c8092015-04-25 14:46:46 +00002185 setLibcallName(RTLIB::SQRT_F32, "__hexagon_sqrtf");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002186 } else {
2187 // V4
Benjamin Kramera37c8092015-04-25 14:46:46 +00002188 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__hexagon_floatsisf");
2189 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__hexagon_floatsidf");
2190 setLibcallName(RTLIB::SINTTOFP_I64_F32, "__hexagon_floatdisf");
2191 setLibcallName(RTLIB::SINTTOFP_I64_F64, "__hexagon_floatdidf");
2192 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__hexagon_floatunsisf");
2193 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__hexagon_floatunsidf");
2194 setLibcallName(RTLIB::UINTTOFP_I64_F32, "__hexagon_floatundisf");
2195 setLibcallName(RTLIB::UINTTOFP_I64_F64, "__hexagon_floatundidf");
2196 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__hexagon_fixunssfsi");
2197 setLibcallName(RTLIB::FPTOUINT_F32_I64, "__hexagon_fixunssfdi");
2198 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__hexagon_fixunsdfsi");
2199 setLibcallName(RTLIB::FPTOUINT_F64_I64, "__hexagon_fixunsdfdi");
2200 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__hexagon_fixsfsi");
2201 setLibcallName(RTLIB::FPTOSINT_F32_I64, "__hexagon_fixsfdi");
2202 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__hexagon_fixdfsi");
2203 setLibcallName(RTLIB::FPTOSINT_F64_I64, "__hexagon_fixdfdi");
2204 setLibcallName(RTLIB::FPEXT_F32_F64, "__hexagon_extendsfdf2");
2205 setLibcallName(RTLIB::FPROUND_F64_F32, "__hexagon_truncdfsf2");
2206 setLibcallName(RTLIB::OEQ_F32, "__hexagon_eqsf2");
2207 setLibcallName(RTLIB::OEQ_F64, "__hexagon_eqdf2");
2208 setLibcallName(RTLIB::OGE_F32, "__hexagon_gesf2");
2209 setLibcallName(RTLIB::OGE_F64, "__hexagon_gedf2");
2210 setLibcallName(RTLIB::OLE_F32, "__hexagon_lesf2");
2211 setLibcallName(RTLIB::OLE_F64, "__hexagon_ledf2");
2212 setLibcallName(RTLIB::UNE_F32, "__hexagon_nesf2");
2213 setLibcallName(RTLIB::UNE_F64, "__hexagon_nedf2");
2214 setLibcallName(RTLIB::UO_F32, "__hexagon_unordsf2");
2215 setLibcallName(RTLIB::UO_F64, "__hexagon_unorddf2");
2216 setLibcallName(RTLIB::O_F32, "__hexagon_unordsf2");
2217 setLibcallName(RTLIB::O_F64, "__hexagon_unorddf2");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002218 }
2219
2220 // These cause problems when the shift amount is non-constant.
2221 setLibcallName(RTLIB::SHL_I128, nullptr);
2222 setLibcallName(RTLIB::SRL_I128, nullptr);
2223 setLibcallName(RTLIB::SRA_I128, nullptr);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002224}
2225
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002226const char* HexagonTargetLowering::getTargetNodeName(unsigned Opcode) const {
Matthias Braund04893f2015-05-07 21:33:59 +00002227 switch ((HexagonISD::NodeType)Opcode) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002228 case HexagonISD::ALLOCA: return "HexagonISD::ALLOCA";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002229 case HexagonISD::AT_GOT: return "HexagonISD::AT_GOT";
2230 case HexagonISD::AT_PCREL: return "HexagonISD::AT_PCREL";
2231 case HexagonISD::BARRIER: return "HexagonISD::BARRIER";
Krzysztof Parzyszekbe976d42016-08-12 11:12:02 +00002232 case HexagonISD::CALL: return "HexagonISD::CALL";
2233 case HexagonISD::CALLnr: return "HexagonISD::CALLnr";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002234 case HexagonISD::CALLR: return "HexagonISD::CALLR";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002235 case HexagonISD::COMBINE: return "HexagonISD::COMBINE";
2236 case HexagonISD::CONST32_GP: return "HexagonISD::CONST32_GP";
2237 case HexagonISD::CONST32: return "HexagonISD::CONST32";
2238 case HexagonISD::CP: return "HexagonISD::CP";
2239 case HexagonISD::DCFETCH: return "HexagonISD::DCFETCH";
2240 case HexagonISD::EH_RETURN: return "HexagonISD::EH_RETURN";
2241 case HexagonISD::EXTRACTU: return "HexagonISD::EXTRACTU";
2242 case HexagonISD::EXTRACTURP: return "HexagonISD::EXTRACTURP";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002243 case HexagonISD::INSERT: return "HexagonISD::INSERT";
2244 case HexagonISD::INSERTRP: return "HexagonISD::INSERTRP";
2245 case HexagonISD::JT: return "HexagonISD::JT";
2246 case HexagonISD::PACKHL: return "HexagonISD::PACKHL";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002247 case HexagonISD::RET_FLAG: return "HexagonISD::RET_FLAG";
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002248 case HexagonISD::TC_RETURN: return "HexagonISD::TC_RETURN";
Krzysztof Parzyszekc168c012015-12-03 16:47:20 +00002249 case HexagonISD::VCOMBINE: return "HexagonISD::VCOMBINE";
Krzysztof Parzyszek302a9d42017-07-14 19:02:32 +00002250 case HexagonISD::VPACKE: return "HexagonISD::VPACKE";
2251 case HexagonISD::VPACKO: return "HexagonISD::VPACKO";
Krzysztof Parzyszekf85dd9f2017-07-10 20:16:44 +00002252 case HexagonISD::VASL: return "HexagonISD::VASL";
2253 case HexagonISD::VASR: return "HexagonISD::VASR";
2254 case HexagonISD::VLSR: return "HexagonISD::VLSR";
2255 case HexagonISD::VSPLAT: return "HexagonISD::VSPLAT";
Krzysztof Parzyszekab57c2b2017-02-22 22:28:47 +00002256 case HexagonISD::READCYCLE: return "HexagonISD::READCYCLE";
Matthias Braund04893f2015-05-07 21:33:59 +00002257 case HexagonISD::OP_END: break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002258 }
Matthias Braund04893f2015-05-07 21:33:59 +00002259 return nullptr;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002260}
2261
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002262bool HexagonTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002263 EVT MTy1 = EVT::getEVT(Ty1);
2264 EVT MTy2 = EVT::getEVT(Ty2);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002265 if (!MTy1.isSimple() || !MTy2.isSimple())
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002266 return false;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002267 return (MTy1.getSimpleVT() == MVT::i64) && (MTy2.getSimpleVT() == MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002268}
2269
2270bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002271 if (!VT1.isSimple() || !VT2.isSimple())
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002272 return false;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002273 return (VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002274}
2275
Krzysztof Parzyszekbd8ef4b2016-08-19 13:34:31 +00002276bool HexagonTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
2277 return isOperationLegalOrCustom(ISD::FMA, VT);
2278}
2279
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002280// Should we expand the build vector with shuffles?
Krzysztof Parzyszekd19d0502016-09-13 21:16:07 +00002281bool HexagonTargetLowering::shouldExpandBuildVectorWithShuffles(EVT VT,
2282 unsigned DefinedValues) const {
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002283 // Hexagon vector shuffle operates on element sizes of bytes or halfwords
2284 EVT EltVT = VT.getVectorElementType();
2285 int EltBits = EltVT.getSizeInBits();
2286 if ((EltBits != 8) && (EltBits != 16))
2287 return false;
2288
2289 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
2290}
2291
Krzysztof Parzyszekd19d0502016-09-13 21:16:07 +00002292static StridedLoadKind isStridedLoad(const ArrayRef<int> &Mask) {
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002293 int even_start = -2;
2294 int odd_start = -1;
2295 size_t mask_len = Mask.size();
2296 for (auto idx : Mask) {
2297 if ((idx - even_start) == 2)
2298 even_start = idx;
2299 else
2300 break;
2301 }
2302 if (even_start == (int)(mask_len * 2) - 2)
2303 return StridedLoadKind::Even;
2304 for (auto idx : Mask) {
2305 if ((idx - odd_start) == 2)
2306 odd_start = idx;
2307 else
2308 break;
2309 }
2310 if (odd_start == (int)(mask_len * 2) - 1)
2311 return StridedLoadKind::Odd;
2312
2313 return StridedLoadKind::NoPattern;
2314}
2315
Zvi Rackover1b736822017-07-26 08:06:58 +00002316bool HexagonTargetLowering::isShuffleMaskLegal(ArrayRef<int> Mask,
2317 EVT VT) const {
Krzysztof Parzyszekd19d0502016-09-13 21:16:07 +00002318 if (Subtarget.useHVXOps())
2319 return isStridedLoad(Mask) != StridedLoadKind::NoPattern;
2320 return true;
2321}
2322
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002323// Lower a vector shuffle (V1, V2, V3). V1 and V2 are the two vectors
2324// to select data from, V3 is the permutation.
2325SDValue
2326HexagonTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG)
2327 const {
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002328 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
2329 SDValue V1 = Op.getOperand(0);
2330 SDValue V2 = Op.getOperand(1);
2331 SDLoc dl(Op);
2332 EVT VT = Op.getValueType();
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002333 bool UseHVX = Subtarget.useHVXOps();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002334
Sanjay Patel57195842016-03-14 17:28:46 +00002335 if (V2.isUndef())
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002336 V2 = V1;
2337
2338 if (SVN->isSplat()) {
2339 int Lane = SVN->getSplatIndex();
2340 if (Lane == -1) Lane = 0;
2341
2342 // Test if V1 is a SCALAR_TO_VECTOR.
2343 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR)
Krzysztof Parzyszek89b2d7c2017-07-13 18:17:58 +00002344 return DAG.getNode(HexagonISD::VSPLAT, dl, VT, V1.getOperand(0));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002345
2346 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
2347 // (and probably will turn into a SCALAR_TO_VECTOR once legalization
2348 // reaches it).
2349 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
2350 !isa<ConstantSDNode>(V1.getOperand(0))) {
2351 bool IsScalarToVector = true;
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +00002352 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i) {
Sanjay Patel75068522016-03-14 18:09:43 +00002353 if (!V1.getOperand(i).isUndef()) {
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002354 IsScalarToVector = false;
2355 break;
2356 }
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +00002357 }
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002358 if (IsScalarToVector)
Krzysztof Parzyszek89b2d7c2017-07-13 18:17:58 +00002359 return DAG.getNode(HexagonISD::VSPLAT, dl, VT, V1.getOperand(0));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002360 }
Krzysztof Parzyszek89b2d7c2017-07-13 18:17:58 +00002361 return DAG.getNode(HexagonISD::VSPLAT, dl, VT,
2362 DAG.getConstant(Lane, dl, MVT::i32));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002363 }
2364
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002365 if (UseHVX) {
2366 ArrayRef<int> Mask = SVN->getMask();
2367 size_t MaskLen = Mask.size();
Krzysztof Parzyszek302a9d42017-07-14 19:02:32 +00002368 unsigned SizeInBits = VT.getScalarSizeInBits() * MaskLen;
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002369
Krzysztof Parzyszek302a9d42017-07-14 19:02:32 +00002370 if ((Subtarget.useHVXSglOps() && SizeInBits == 64 * 8) ||
2371 (Subtarget.useHVXDblOps() && SizeInBits == 128 * 8)) {
2372 StridedLoadKind Pattern = isStridedLoad(Mask);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002373 if (Pattern == StridedLoadKind::NoPattern)
2374 return SDValue();
2375
Krzysztof Parzyszek302a9d42017-07-14 19:02:32 +00002376 unsigned Opc = Pattern == StridedLoadKind::Even ? HexagonISD::VPACKE
2377 : HexagonISD::VPACKO;
2378 return DAG.getNode(Opc, dl, VT, {Op.getOperand(1), Op.getOperand(0)});
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002379 }
2380 // We used to assert in the "else" part here, but that is bad for Halide
2381 // Halide creates intermediate double registers by interleaving two
2382 // concatenated vector registers. The interleaving requires vector_shuffle
2383 // nodes and we shouldn't barf on a double register result of a
2384 // vector_shuffle because it is most likely an intermediate result.
2385 }
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002386 // FIXME: We need to support more general vector shuffles. See
2387 // below the comment from the ARM backend that deals in the general
2388 // case with the vector shuffles. For now, let expand handle these.
2389 return SDValue();
2390
2391 // If the shuffle is not directly supported and it has 4 elements, use
2392 // the PerfectShuffle-generated table to synthesize it from other shuffles.
2393}
2394
2395// If BUILD_VECTOR has same base element repeated several times,
2396// report true.
2397static bool isCommonSplatElement(BuildVectorSDNode *BVN) {
2398 unsigned NElts = BVN->getNumOperands();
2399 SDValue V0 = BVN->getOperand(0);
2400
2401 for (unsigned i = 1, e = NElts; i != e; ++i) {
2402 if (BVN->getOperand(i) != V0)
2403 return false;
2404 }
2405 return true;
2406}
2407
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002408// Lower a vector shift. Try to convert
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002409// <VT> = SHL/SRA/SRL <VT> by <VT> to Hexagon specific
2410// <VT> = SHL/SRA/SRL <VT> by <IT/i32>.
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002411SDValue
2412HexagonTargetLowering::LowerVECTOR_SHIFT(SDValue Op, SelectionDAG &DAG) const {
Eugene Zelenko58655bb2016-12-17 01:09:05 +00002413 BuildVectorSDNode *BVN = nullptr;
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002414 SDValue V1 = Op.getOperand(0);
2415 SDValue V2 = Op.getOperand(1);
2416 SDValue V3;
2417 SDLoc dl(Op);
2418 EVT VT = Op.getValueType();
2419
2420 if ((BVN = dyn_cast<BuildVectorSDNode>(V1.getNode())) &&
2421 isCommonSplatElement(BVN))
2422 V3 = V2;
2423 else if ((BVN = dyn_cast<BuildVectorSDNode>(V2.getNode())) &&
2424 isCommonSplatElement(BVN))
2425 V3 = V1;
2426 else
2427 return SDValue();
2428
2429 SDValue CommonSplat = BVN->getOperand(0);
2430 SDValue Result;
2431
2432 if (VT.getSimpleVT() == MVT::v4i16) {
2433 switch (Op.getOpcode()) {
2434 case ISD::SRA:
Krzysztof Parzyszekf85dd9f2017-07-10 20:16:44 +00002435 Result = DAG.getNode(HexagonISD::VASR, dl, VT, V3, CommonSplat);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002436 break;
2437 case ISD::SHL:
Krzysztof Parzyszekf85dd9f2017-07-10 20:16:44 +00002438 Result = DAG.getNode(HexagonISD::VASL, dl, VT, V3, CommonSplat);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002439 break;
2440 case ISD::SRL:
Krzysztof Parzyszekf85dd9f2017-07-10 20:16:44 +00002441 Result = DAG.getNode(HexagonISD::VLSR, dl, VT, V3, CommonSplat);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002442 break;
2443 default:
2444 return SDValue();
2445 }
2446 } else if (VT.getSimpleVT() == MVT::v2i32) {
2447 switch (Op.getOpcode()) {
2448 case ISD::SRA:
Krzysztof Parzyszekf85dd9f2017-07-10 20:16:44 +00002449 Result = DAG.getNode(HexagonISD::VASR, dl, VT, V3, CommonSplat);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002450 break;
2451 case ISD::SHL:
Krzysztof Parzyszekf85dd9f2017-07-10 20:16:44 +00002452 Result = DAG.getNode(HexagonISD::VASL, dl, VT, V3, CommonSplat);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002453 break;
2454 case ISD::SRL:
Krzysztof Parzyszekf85dd9f2017-07-10 20:16:44 +00002455 Result = DAG.getNode(HexagonISD::VLSR, dl, VT, V3, CommonSplat);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002456 break;
2457 default:
2458 return SDValue();
2459 }
2460 } else {
2461 return SDValue();
2462 }
2463
2464 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
2465}
2466
2467SDValue
2468HexagonTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
2469 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
2470 SDLoc dl(Op);
2471 EVT VT = Op.getValueType();
2472
2473 unsigned Size = VT.getSizeInBits();
2474
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002475 // Only handle vectors of 64 bits or shorter.
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002476 if (Size > 64)
2477 return SDValue();
2478
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002479 unsigned NElts = BVN->getNumOperands();
2480
2481 // Try to generate a SPLAT instruction.
Krzysztof Parzyszek89b2d7c2017-07-13 18:17:58 +00002482 if (VT == MVT::v4i8 || VT == MVT::v4i16 || VT == MVT::v2i32) {
2483 APInt APSplatBits, APSplatUndef;
2484 unsigned SplatBitSize;
2485 bool HasAnyUndefs;
2486 if (BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize,
2487 HasAnyUndefs, 0, false)) {
2488 if (SplatBitSize == VT.getVectorElementType().getSizeInBits()) {
2489 unsigned ZV = APSplatBits.getZExtValue();
2490 assert(SplatBitSize <= 32 && "Can only handle up to i32");
2491 // Sign-extend the splat value from SplatBitSize to 32.
2492 int32_t SV = SplatBitSize < 32
2493 ? int32_t(ZV << (32-SplatBitSize)) >> (32-SplatBitSize)
2494 : int32_t(ZV);
2495 return DAG.getNode(HexagonISD::VSPLAT, dl, VT,
2496 DAG.getConstant(SV, dl, MVT::i32));
2497 }
2498 }
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002499 }
2500
2501 // Try to generate COMBINE to build v2i32 vectors.
2502 if (VT.getSimpleVT() == MVT::v2i32) {
2503 SDValue V0 = BVN->getOperand(0);
2504 SDValue V1 = BVN->getOperand(1);
2505
Sanjay Patel57195842016-03-14 17:28:46 +00002506 if (V0.isUndef())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002507 V0 = DAG.getConstant(0, dl, MVT::i32);
Sanjay Patel57195842016-03-14 17:28:46 +00002508 if (V1.isUndef())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002509 V1 = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002510
2511 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(V0);
2512 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(V1);
2513 // If the element isn't a constant, it is in a register:
2514 // generate a COMBINE Register Register instruction.
2515 if (!C0 || !C1)
2516 return DAG.getNode(HexagonISD::COMBINE, dl, VT, V1, V0);
2517
2518 // If one of the operands is an 8 bit integer constant, generate
2519 // a COMBINE Immediate Immediate instruction.
2520 if (isInt<8>(C0->getSExtValue()) ||
2521 isInt<8>(C1->getSExtValue()))
2522 return DAG.getNode(HexagonISD::COMBINE, dl, VT, V1, V0);
2523 }
2524
2525 // Try to generate a S2_packhl to build v2i16 vectors.
2526 if (VT.getSimpleVT() == MVT::v2i16) {
2527 for (unsigned i = 0, e = NElts; i != e; ++i) {
Sanjay Patel57195842016-03-14 17:28:46 +00002528 if (BVN->getOperand(i).isUndef())
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002529 continue;
2530 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(BVN->getOperand(i));
2531 // If the element isn't a constant, it is in a register:
2532 // generate a S2_packhl instruction.
2533 if (!Cst) {
2534 SDValue pack = DAG.getNode(HexagonISD::PACKHL, dl, MVT::v4i16,
2535 BVN->getOperand(1), BVN->getOperand(0));
2536
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002537 return DAG.getTargetExtractSubreg(Hexagon::isub_lo, dl, MVT::v2i16,
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002538 pack);
2539 }
2540 }
2541 }
2542
2543 // In the general case, generate a CONST32 or a CONST64 for constant vectors,
2544 // and insert_vector_elt for all the other cases.
2545 uint64_t Res = 0;
2546 unsigned EltSize = Size / NElts;
2547 SDValue ConstVal;
2548 uint64_t Mask = ~uint64_t(0ULL) >> (64 - EltSize);
2549 bool HasNonConstantElements = false;
2550
2551 for (unsigned i = 0, e = NElts; i != e; ++i) {
2552 // LLVM's BUILD_VECTOR operands are in Little Endian mode, whereas Hexagon's
2553 // combine, const64, etc. are Big Endian.
2554 unsigned OpIdx = NElts - i - 1;
2555 SDValue Operand = BVN->getOperand(OpIdx);
Sanjay Patel57195842016-03-14 17:28:46 +00002556 if (Operand.isUndef())
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002557 continue;
2558
2559 int64_t Val = 0;
2560 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Operand))
2561 Val = Cst->getSExtValue();
2562 else
2563 HasNonConstantElements = true;
2564
2565 Val &= Mask;
2566 Res = (Res << EltSize) | Val;
2567 }
2568
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002569 if (Size > 64)
2570 return SDValue();
2571
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002572 if (Size == 64)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002573 ConstVal = DAG.getConstant(Res, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002574 else
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002575 ConstVal = DAG.getConstant(Res, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002576
2577 // When there are non constant operands, add them with INSERT_VECTOR_ELT to
2578 // ConstVal, the constant part of the vector.
2579 if (HasNonConstantElements) {
2580 EVT EltVT = VT.getVectorElementType();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002581 SDValue Width = DAG.getConstant(EltVT.getSizeInBits(), dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002582 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002583 DAG.getConstant(32, dl, MVT::i64));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002584
2585 for (unsigned i = 0, e = NElts; i != e; ++i) {
2586 // LLVM's BUILD_VECTOR operands are in Little Endian mode, whereas Hexagon
2587 // is Big Endian.
2588 unsigned OpIdx = NElts - i - 1;
2589 SDValue Operand = BVN->getOperand(OpIdx);
Benjamin Kramer619c4e52015-04-10 11:24:51 +00002590 if (isa<ConstantSDNode>(Operand))
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002591 // This operand is already in ConstVal.
2592 continue;
2593
2594 if (VT.getSizeInBits() == 64 &&
Sanjay Patelb1f0a0f2016-09-14 16:05:51 +00002595 Operand.getValueSizeInBits() == 32) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002596 SDValue C = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002597 Operand = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, Operand);
2598 }
2599
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002600 SDValue Idx = DAG.getConstant(OpIdx, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002601 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i64, Idx, Width);
2602 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2603 const SDValue Ops[] = {ConstVal, Operand, Combined};
2604
2605 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002606 ConstVal = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002607 else
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002608 ConstVal = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002609 }
2610 }
2611
2612 return DAG.getNode(ISD::BITCAST, dl, VT, ConstVal);
2613}
2614
2615SDValue
2616HexagonTargetLowering::LowerCONCAT_VECTORS(SDValue Op,
2617 SelectionDAG &DAG) const {
2618 SDLoc dl(Op);
Krzysztof Parzyszekc168c012015-12-03 16:47:20 +00002619 bool UseHVX = Subtarget.useHVXOps();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002620 EVT VT = Op.getValueType();
2621 unsigned NElts = Op.getNumOperands();
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002622 SDValue Vec0 = Op.getOperand(0);
2623 EVT VecVT = Vec0.getValueType();
2624 unsigned Width = VecVT.getSizeInBits();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002625
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002626 if (NElts == 2) {
2627 MVT ST = VecVT.getSimpleVT();
2628 // We are trying to concat two v2i16 to a single v4i16, or two v4i8
2629 // into a single v8i8.
2630 if (ST == MVT::v2i16 || ST == MVT::v4i8)
2631 return DAG.getNode(HexagonISD::COMBINE, dl, VT, Op.getOperand(1), Vec0);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002632
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002633 if (UseHVX) {
2634 assert((Width == 64*8 && Subtarget.useHVXSglOps()) ||
2635 (Width == 128*8 && Subtarget.useHVXDblOps()));
2636 SDValue Vec1 = Op.getOperand(1);
2637 MVT OpTy = Subtarget.useHVXSglOps() ? MVT::v16i32 : MVT::v32i32;
2638 MVT ReTy = Subtarget.useHVXSglOps() ? MVT::v32i32 : MVT::v64i32;
2639 SDValue B0 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec0);
2640 SDValue B1 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec1);
2641 SDValue VC = DAG.getNode(HexagonISD::VCOMBINE, dl, ReTy, B1, B0);
2642 return DAG.getNode(ISD::BITCAST, dl, VT, VC);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002643 }
2644 }
2645
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002646 if (VT.getSizeInBits() != 32 && VT.getSizeInBits() != 64)
2647 return SDValue();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002648
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002649 SDValue C0 = DAG.getConstant(0, dl, MVT::i64);
2650 SDValue C32 = DAG.getConstant(32, dl, MVT::i64);
2651 SDValue W = DAG.getConstant(Width, dl, MVT::i64);
2652 // Create the "width" part of the argument to insert_rp/insertp_rp.
2653 SDValue S = DAG.getNode(ISD::SHL, dl, MVT::i64, W, C32);
2654 SDValue V = C0;
2655
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002656 for (unsigned i = 0, e = NElts; i != e; ++i) {
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002657 unsigned N = NElts-i-1;
2658 SDValue OpN = Op.getOperand(N);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002659
Sanjay Patelb1f0a0f2016-09-14 16:05:51 +00002660 if (VT.getSizeInBits() == 64 && OpN.getValueSizeInBits() == 32) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002661 SDValue C = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002662 OpN = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, OpN);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002663 }
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002664 SDValue Idx = DAG.getConstant(N, dl, MVT::i64);
2665 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i64, Idx, W);
2666 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, S, Offset);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002667 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002668 V = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, {V, OpN, Or});
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002669 else if (VT.getSizeInBits() == 64)
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002670 V = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, {V, OpN, Or});
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002671 else
2672 return SDValue();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002673 }
2674
Krzysztof Parzyszekf1b3e5e2015-12-04 16:18:15 +00002675 return DAG.getNode(ISD::BITCAST, dl, VT, V);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002676}
2677
2678SDValue
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002679HexagonTargetLowering::LowerEXTRACT_SUBVECTOR_HVX(SDValue Op,
2680 SelectionDAG &DAG) const {
2681 EVT VT = Op.getOperand(0).getValueType();
2682 SDLoc dl(Op);
2683 bool UseHVX = Subtarget.useHVXOps();
2684 bool UseHVXSgl = Subtarget.useHVXSglOps();
2685 // Just in case...
2686
2687 if (!VT.isVector() || !UseHVX)
2688 return SDValue();
2689
2690 EVT ResVT = Op.getValueType();
2691 unsigned ResSize = ResVT.getSizeInBits();
2692 unsigned VectorSizeInBits = UseHVXSgl ? (64 * 8) : (128 * 8);
2693 unsigned OpSize = VT.getSizeInBits();
2694
2695 // We deal only with cases where the result is the vector size
2696 // and the vector operand is a double register.
2697 if (!(ResVT.isByteSized() && ResSize == VectorSizeInBits) ||
2698 !(VT.isByteSized() && OpSize == 2 * VectorSizeInBits))
2699 return SDValue();
2700
2701 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(1));
2702 if (!Cst)
2703 return SDValue();
2704 unsigned Val = Cst->getZExtValue();
2705
2706 // These two will get lowered to an appropriate EXTRACT_SUBREG in ISel.
2707 if (Val == 0) {
2708 SDValue Vec = Op.getOperand(0);
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002709 return DAG.getTargetExtractSubreg(Hexagon::vsub_lo, dl, ResVT, Vec);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002710 }
2711
2712 if (ResVT.getVectorNumElements() == Val) {
2713 SDValue Vec = Op.getOperand(0);
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002714 return DAG.getTargetExtractSubreg(Hexagon::vsub_hi, dl, ResVT, Vec);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002715 }
2716
2717 return SDValue();
2718}
2719
2720SDValue
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002721HexagonTargetLowering::LowerEXTRACT_VECTOR(SDValue Op,
2722 SelectionDAG &DAG) const {
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002723 // If we are dealing with EXTRACT_SUBVECTOR on a HVX type, we may
2724 // be able to simplify it to an EXTRACT_SUBREG.
2725 if (Op.getOpcode() == ISD::EXTRACT_SUBVECTOR && Subtarget.useHVXOps() &&
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +00002726 isHvxVectorType(Op.getValueType().getSimpleVT()))
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002727 return LowerEXTRACT_SUBVECTOR_HVX(Op, DAG);
2728
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002729 EVT VT = Op.getValueType();
2730 int VTN = VT.isVector() ? VT.getVectorNumElements() : 1;
2731 SDLoc dl(Op);
2732 SDValue Idx = Op.getOperand(1);
2733 SDValue Vec = Op.getOperand(0);
2734 EVT VecVT = Vec.getValueType();
2735 EVT EltVT = VecVT.getVectorElementType();
2736 int EltSize = EltVT.getSizeInBits();
2737 SDValue Width = DAG.getConstant(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT ?
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002738 EltSize : VTN * EltSize, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002739
2740 // Constant element number.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002741 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Idx)) {
2742 uint64_t X = CI->getZExtValue();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002743 SDValue Offset = DAG.getConstant(X * EltSize, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002744 const SDValue Ops[] = {Vec, Width, Offset};
2745
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002746 ConstantSDNode *CW = dyn_cast<ConstantSDNode>(Width);
2747 assert(CW && "Non constant width in LowerEXTRACT_VECTOR");
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002748
2749 SDValue N;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002750 MVT SVT = VecVT.getSimpleVT();
2751 uint64_t W = CW->getZExtValue();
2752
2753 if (W == 32) {
2754 // Translate this node into EXTRACT_SUBREG.
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002755 unsigned Subreg = (X == 0) ? Hexagon::isub_lo : 0;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002756
2757 if (X == 0)
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002758 Subreg = Hexagon::isub_lo;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002759 else if (SVT == MVT::v2i32 && X == 1)
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002760 Subreg = Hexagon::isub_hi;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002761 else if (SVT == MVT::v4i16 && X == 2)
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002762 Subreg = Hexagon::isub_hi;
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002763 else if (SVT == MVT::v8i8 && X == 4)
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002764 Subreg = Hexagon::isub_hi;
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002765 else
2766 llvm_unreachable("Bad offset");
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002767 N = DAG.getTargetExtractSubreg(Subreg, dl, MVT::i32, Vec);
2768
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002769 } else if (SVT.getSizeInBits() == 32) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002770 N = DAG.getNode(HexagonISD::EXTRACTU, dl, MVT::i32, Ops);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002771 } else if (SVT.getSizeInBits() == 64) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002772 N = DAG.getNode(HexagonISD::EXTRACTU, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002773 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002774 N = DAG.getTargetExtractSubreg(Hexagon::isub_lo, dl, MVT::i32, N);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002775 } else
2776 return SDValue();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002777
2778 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2779 }
2780
2781 // Variable element number.
2782 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i32, Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002783 DAG.getConstant(EltSize, dl, MVT::i32));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002784 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002785 DAG.getConstant(32, dl, MVT::i64));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002786 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2787
2788 const SDValue Ops[] = {Vec, Combined};
2789
2790 SDValue N;
2791 if (VecVT.getSizeInBits() == 32) {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002792 N = DAG.getNode(HexagonISD::EXTRACTURP, dl, MVT::i32, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002793 } else {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002794 N = DAG.getNode(HexagonISD::EXTRACTURP, dl, MVT::i64, Ops);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002795 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +00002796 N = DAG.getTargetExtractSubreg(Hexagon::isub_lo, dl, MVT::i32, N);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002797 }
2798 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2799}
2800
2801SDValue
2802HexagonTargetLowering::LowerINSERT_VECTOR(SDValue Op,
2803 SelectionDAG &DAG) const {
2804 EVT VT = Op.getValueType();
2805 int VTN = VT.isVector() ? VT.getVectorNumElements() : 1;
2806 SDLoc dl(Op);
2807 SDValue Vec = Op.getOperand(0);
2808 SDValue Val = Op.getOperand(1);
2809 SDValue Idx = Op.getOperand(2);
2810 EVT VecVT = Vec.getValueType();
2811 EVT EltVT = VecVT.getVectorElementType();
2812 int EltSize = EltVT.getSizeInBits();
2813 SDValue Width = DAG.getConstant(Op.getOpcode() == ISD::INSERT_VECTOR_ELT ?
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002814 EltSize : VTN * EltSize, dl, MVT::i64);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002815
2816 if (ConstantSDNode *C = cast<ConstantSDNode>(Idx)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002817 SDValue Offset = DAG.getConstant(C->getSExtValue() * EltSize, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002818 const SDValue Ops[] = {Vec, Val, Width, Offset};
2819
2820 SDValue N;
2821 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002822 N = DAG.getNode(HexagonISD::INSERT, dl, MVT::i32, Ops);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002823 else if (VT.getSizeInBits() == 64)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002824 N = DAG.getNode(HexagonISD::INSERT, dl, MVT::i64, Ops);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002825 else
2826 return SDValue();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002827
2828 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2829 }
2830
2831 // Variable element number.
2832 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i32, Idx,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002833 DAG.getConstant(EltSize, dl, MVT::i32));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002834 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002835 DAG.getConstant(32, dl, MVT::i64));
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002836 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2837
Sanjay Patelb1f0a0f2016-09-14 16:05:51 +00002838 if (VT.getSizeInBits() == 64 && Val.getValueSizeInBits() == 32) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002839 SDValue C = DAG.getConstant(0, dl, MVT::i32);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002840 Val = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, Val);
2841 }
2842
2843 const SDValue Ops[] = {Vec, Val, Combined};
2844
2845 SDValue N;
2846 if (VT.getSizeInBits() == 32)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002847 N = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, Ops);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002848 else if (VT.getSizeInBits() == 64)
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002849 N = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, Ops);
Krzysztof Parzyszek0bd55a72016-07-29 16:44:27 +00002850 else
2851 return SDValue();
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002852
2853 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2854}
2855
Tim Northovera4415852013-08-06 09:12:35 +00002856bool
2857HexagonTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
2858 // Assuming the caller does not have either a signext or zeroext modifier, and
2859 // only one value is accepted, any reasonable truncation is allowed.
2860 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
2861 return false;
2862
2863 // FIXME: in principle up to 64-bit could be made safe, but it would be very
2864 // fragile at the moment: any support for multiple value returns would be
2865 // liable to disallow tail calls involving i64 -> iN truncation in many cases.
2866 return Ty1->getPrimitiveSizeInBits() <= 32;
2867}
2868
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002869SDValue
Jyotsna Verma5ed51812013-05-01 21:37:34 +00002870HexagonTargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
2871 SDValue Chain = Op.getOperand(0);
2872 SDValue Offset = Op.getOperand(1);
2873 SDValue Handler = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00002874 SDLoc dl(Op);
Mehdi Amini44ede332015-07-09 02:09:04 +00002875 auto PtrVT = getPointerTy(DAG.getDataLayout());
Jyotsna Verma5ed51812013-05-01 21:37:34 +00002876
2877 // Mark function as containing a call to EH_RETURN.
2878 HexagonMachineFunctionInfo *FuncInfo =
2879 DAG.getMachineFunction().getInfo<HexagonMachineFunctionInfo>();
2880 FuncInfo->setHasEHReturn();
2881
2882 unsigned OffsetReg = Hexagon::R28;
2883
Mehdi Amini44ede332015-07-09 02:09:04 +00002884 SDValue StoreAddr =
2885 DAG.getNode(ISD::ADD, dl, PtrVT, DAG.getRegister(Hexagon::R30, PtrVT),
2886 DAG.getIntPtrConstant(4, dl));
Justin Lebar9c375812016-07-15 18:27:10 +00002887 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo());
Jyotsna Verma5ed51812013-05-01 21:37:34 +00002888 Chain = DAG.getCopyToReg(Chain, dl, OffsetReg, Offset);
2889
2890 // Not needed we already use it as explict input to EH_RETURN.
2891 // MF.getRegInfo().addLiveOut(OffsetReg);
2892
2893 return DAG.getNode(HexagonISD::EH_RETURN, dl, MVT::Other, Chain);
2894}
2895
2896SDValue
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002897HexagonTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002898 unsigned Opc = Op.getOpcode();
2899 switch (Opc) {
2900 default:
2901#ifndef NDEBUG
2902 Op.getNode()->dumpr(&DAG);
2903 if (Opc > HexagonISD::OP_BEGIN && Opc < HexagonISD::OP_END)
2904 errs() << "Check for a non-legal type in this operation\n";
2905#endif
2906 llvm_unreachable("Should not custom lower this!");
2907 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
2908 case ISD::INSERT_SUBVECTOR: return LowerINSERT_VECTOR(Op, DAG);
2909 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR(Op, DAG);
2910 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_VECTOR(Op, DAG);
2911 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR(Op, DAG);
2912 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
2913 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
Krzysztof Parzyszek42113342015-03-19 16:33:08 +00002914 case ISD::SRA:
2915 case ISD::SHL:
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002916 case ISD::SRL: return LowerVECTOR_SHIFT(Op, DAG);
2917 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00002918 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002919 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
2920 // Frame & Return address. Currently unimplemented.
2921 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
2922 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Krzysztof Parzyszek7a737d12016-02-18 15:42:57 +00002923 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002924 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG);
2925 case ISD::GlobalAddress: return LowerGLOBALADDRESS(Op, DAG);
2926 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00002927 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002928 case ISD::VASTART: return LowerVASTART(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002929 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
2930 case ISD::SETCC: return LowerSETCC(Op, DAG);
2931 case ISD::VSELECT: return LowerVSELECT(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002932 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00002933 case ISD::INTRINSIC_VOID: return LowerINTRINSIC_VOID(Op, DAG);
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00002934 case ISD::INLINEASM: return LowerINLINEASM(Op, DAG);
Krzysztof Parzyszek6895b2c2016-02-18 13:58:38 +00002935 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG);
Krzysztof Parzyszekab57c2b2017-02-22 22:28:47 +00002936 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002937 }
2938}
2939
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00002940/// Returns relocation base for the given PIC jumptable.
2941SDValue
2942HexagonTargetLowering::getPICJumpTableRelocBase(SDValue Table,
2943 SelectionDAG &DAG) const {
2944 int Idx = cast<JumpTableSDNode>(Table)->getIndex();
2945 EVT VT = Table.getValueType();
2946 SDValue T = DAG.getTargetJumpTable(Idx, VT, HexagonII::MO_PCREL);
2947 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Table), VT, T);
2948}
2949
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002950//===----------------------------------------------------------------------===//
2951// Inline Assembly Support
2952//===----------------------------------------------------------------------===//
2953
Krzysztof Parzyszekca3b5322016-05-18 14:34:51 +00002954TargetLowering::ConstraintType
2955HexagonTargetLowering::getConstraintType(StringRef Constraint) const {
2956 if (Constraint.size() == 1) {
2957 switch (Constraint[0]) {
2958 case 'q':
2959 case 'v':
2960 if (Subtarget.useHVXOps())
Krzysztof Parzyszek3ad0d012017-07-21 17:51:27 +00002961 return C_RegisterClass;
2962 break;
2963 case 'a':
2964 return C_RegisterClass;
2965 default:
Krzysztof Parzyszekca3b5322016-05-18 14:34:51 +00002966 break;
2967 }
2968 }
2969 return TargetLowering::getConstraintType(Constraint);
2970}
2971
Krzysztof Parzyszekfb4c4172016-08-19 19:29:15 +00002972std::pair<unsigned, const TargetRegisterClass*>
Eric Christopher11e4df72015-02-26 22:38:43 +00002973HexagonTargetLowering::getRegForInlineAsmConstraint(
Benjamin Kramer9bfb6272015-07-05 19:29:18 +00002974 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002975 bool UseHVX = Subtarget.useHVXOps(), UseHVXDbl = Subtarget.useHVXDblOps();
2976
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002977 if (Constraint.size() == 1) {
2978 switch (Constraint[0]) {
2979 case 'r': // R0-R31
Krzysztof Parzyszekfb4c4172016-08-19 19:29:15 +00002980 switch (VT.SimpleTy) {
2981 default:
2982 llvm_unreachable("getRegForInlineAsmConstraint Unhandled data type");
2983 case MVT::i1:
2984 case MVT::i8:
2985 case MVT::i16:
2986 case MVT::i32:
2987 case MVT::f32:
2988 return std::make_pair(0U, &Hexagon::IntRegsRegClass);
2989 case MVT::i64:
2990 case MVT::f64:
2991 return std::make_pair(0U, &Hexagon::DoubleRegsRegClass);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002992 }
Krzysztof Parzyszek3ad0d012017-07-21 17:51:27 +00002993 break;
2994 case 'a': // M0-M1
2995 return std::make_pair(0U, &Hexagon::ModRegsRegClass);
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00002996 case 'q': // q0-q3
Krzysztof Parzyszekfcbb7d12017-03-02 17:50:24 +00002997 switch (VT.getSizeInBits()) {
Krzysztof Parzyszekfb4c4172016-08-19 19:29:15 +00002998 default:
Krzysztof Parzyszekfcbb7d12017-03-02 17:50:24 +00002999 llvm_unreachable("getRegForInlineAsmConstraint Unhandled vector size");
3000 case 512:
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003001 return std::make_pair(0U, &Hexagon::HvxQRRegClass);
Krzysztof Parzyszekfcbb7d12017-03-02 17:50:24 +00003002 case 1024:
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003003 return std::make_pair(0U, &Hexagon::HvxQRRegClass);
Krzysztof Parzyszekfb4c4172016-08-19 19:29:15 +00003004 }
Krzysztof Parzyszek3ad0d012017-07-21 17:51:27 +00003005 break;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00003006 case 'v': // V0-V31
Krzysztof Parzyszekfcbb7d12017-03-02 17:50:24 +00003007 switch (VT.getSizeInBits()) {
Krzysztof Parzyszekfb4c4172016-08-19 19:29:15 +00003008 default:
Krzysztof Parzyszekfcbb7d12017-03-02 17:50:24 +00003009 llvm_unreachable("getRegForInlineAsmConstraint Unhandled vector size");
3010 case 512:
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003011 return std::make_pair(0U, &Hexagon::HvxVRRegClass);
Krzysztof Parzyszekfcbb7d12017-03-02 17:50:24 +00003012 case 1024:
Krzysztof Parzyszekfb4c4172016-08-19 19:29:15 +00003013 if (Subtarget.hasV60TOps() && UseHVX && UseHVXDbl)
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003014 return std::make_pair(0U, &Hexagon::HvxVRRegClass);
3015 return std::make_pair(0U, &Hexagon::HvxWRRegClass);
Krzysztof Parzyszekfcbb7d12017-03-02 17:50:24 +00003016 case 2048:
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003017 return std::make_pair(0U, &Hexagon::HvxWRRegClass);
Krzysztof Parzyszekfb4c4172016-08-19 19:29:15 +00003018 }
Krzysztof Parzyszek3ad0d012017-07-21 17:51:27 +00003019 break;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003020 default:
Craig Toppere55c5562012-02-07 02:50:20 +00003021 llvm_unreachable("Unknown asm register class");
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003022 }
3023 }
3024
Eric Christopher11e4df72015-02-26 22:38:43 +00003025 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003026}
3027
Sirish Pande69295b82012-05-10 20:20:25 +00003028/// isFPImmLegal - Returns true if the target can instruction select the
3029/// specified FP immediate natively. If false, the legalizer will
3030/// materialize the FP immediate as a load from a constant pool.
3031bool HexagonTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00003032 return Subtarget.hasV5TOps();
Sirish Pande69295b82012-05-10 20:20:25 +00003033}
3034
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003035/// isLegalAddressingMode - Return true if the addressing mode represented by
3036/// AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +00003037bool HexagonTargetLowering::isLegalAddressingMode(const DataLayout &DL,
3038 const AddrMode &AM, Type *Ty,
Jonas Paulsson024e3192017-07-21 11:59:37 +00003039 unsigned AS, Instruction *I) const {
Krzysztof Parzyszeked4e7822016-08-03 15:06:18 +00003040 if (Ty->isSized()) {
3041 // When LSR detects uses of the same base address to access different
3042 // types (e.g. unions), it will assume a conservative type for these
3043 // uses:
3044 // LSR Use: Kind=Address of void in addrspace(4294967295), ...
3045 // The type Ty passed here would then be "void". Skip the alignment
3046 // checks, but do not return false right away, since that confuses
3047 // LSR into crashing.
3048 unsigned A = DL.getABITypeAlignment(Ty);
3049 // The base offset must be a multiple of the alignment.
3050 if ((AM.BaseOffs % A) != 0)
3051 return false;
3052 // The shifted offset must fit in 11 bits.
3053 if (!isInt<11>(AM.BaseOffs >> Log2_32(A)))
3054 return false;
3055 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003056
3057 // No global is ever allowed as a base.
Krzysztof Parzyszek952d9512015-04-22 21:17:00 +00003058 if (AM.BaseGV)
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003059 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003060
3061 int Scale = AM.Scale;
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +00003062 if (Scale < 0)
3063 Scale = -Scale;
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003064 switch (Scale) {
3065 case 0: // No scale reg, "r+i", "r", or just "i".
3066 break;
3067 default: // No scaled addressing mode.
3068 return false;
3069 }
3070 return true;
3071}
3072
Krzysztof Parzyszek21dc8bd2015-12-18 20:19:30 +00003073/// Return true if folding a constant offset with the given GlobalAddress is
3074/// legal. It is frequently not legal in PIC relocation models.
3075bool HexagonTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA)
3076 const {
3077 return HTM.getRelocationModel() == Reloc::Static;
3078}
3079
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003080/// isLegalICmpImmediate - Return true if the specified immediate is legal
3081/// icmp immediate, that is the target has icmp instructions which can compare
3082/// a register against the immediate without having to materialize the
3083/// immediate into a register.
3084bool HexagonTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
3085 return Imm >= -512 && Imm <= 511;
3086}
3087
3088/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3089/// for tail call optimization. Targets which want to do tail call
3090/// optimization should implement this function.
3091bool HexagonTargetLowering::IsEligibleForTailCallOptimization(
3092 SDValue Callee,
3093 CallingConv::ID CalleeCC,
3094 bool isVarArg,
3095 bool isCalleeStructRet,
3096 bool isCallerStructRet,
3097 const SmallVectorImpl<ISD::OutputArg> &Outs,
3098 const SmallVectorImpl<SDValue> &OutVals,
3099 const SmallVectorImpl<ISD::InputArg> &Ins,
3100 SelectionDAG& DAG) const {
3101 const Function *CallerF = DAG.getMachineFunction().getFunction();
3102 CallingConv::ID CallerCC = CallerF->getCallingConv();
3103 bool CCMatch = CallerCC == CalleeCC;
3104
3105 // ***************************************************************************
3106 // Look for obvious safe cases to perform tail call optimization that do not
3107 // require ABI changes.
3108 // ***************************************************************************
3109
3110 // If this is a tail call via a function pointer, then don't do it!
Krzysztof Parzyszek317d42c2016-08-01 20:31:50 +00003111 if (!isa<GlobalAddressSDNode>(Callee) &&
3112 !isa<ExternalSymbolSDNode>(Callee)) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003113 return false;
3114 }
3115
Krzysztof Parzyszek0ba97542016-08-19 15:02:18 +00003116 // Do not optimize if the calling conventions do not match and the conventions
3117 // used are not C or Fast.
3118 if (!CCMatch) {
3119 bool R = (CallerCC == CallingConv::C || CallerCC == CallingConv::Fast);
3120 bool E = (CalleeCC == CallingConv::C || CalleeCC == CallingConv::Fast);
3121 // If R & E, then ok.
3122 if (!R || !E)
3123 return false;
3124 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +00003125
3126 // Do not tail call optimize vararg calls.
3127 if (isVarArg)
3128 return false;
3129
3130 // Also avoid tail call optimization if either caller or callee uses struct
3131 // return semantics.
3132 if (isCalleeStructRet || isCallerStructRet)
3133 return false;
3134
3135 // In addition to the cases above, we also disable Tail Call Optimization if
3136 // the calling convention code that at least one outgoing argument needs to
3137 // go on the stack. We cannot check that here because at this point that
3138 // information is not available.
3139 return true;
3140}
Colin LeMahieu025f8602014-12-08 21:19:18 +00003141
Krzysztof Parzyszek3e409e12016-08-02 18:34:31 +00003142/// Returns the target specific optimal type for load and store operations as
3143/// a result of memset, memcpy, and memmove lowering.
3144///
3145/// If DstAlign is zero that means it's safe to destination alignment can
3146/// satisfy any constraint. Similarly if SrcAlign is zero it means there isn't
3147/// a need to check it against alignment requirement, probably because the
3148/// source does not need to be loaded. If 'IsMemset' is true, that means it's
3149/// expanding a memset. If 'ZeroMemset' is true, that means it's a memset of
3150/// zero. 'MemcpyStrSrc' indicates whether the memcpy source is constant so it
3151/// does not need to be loaded. It returns EVT::Other if the type should be
3152/// determined using generic target-independent logic.
3153EVT HexagonTargetLowering::getOptimalMemOpType(uint64_t Size,
3154 unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset,
3155 bool MemcpyStrSrc, MachineFunction &MF) const {
3156
3157 auto Aligned = [](unsigned GivenA, unsigned MinA) -> bool {
3158 return (GivenA % MinA) == 0;
3159 };
3160
3161 if (Size >= 8 && Aligned(DstAlign, 8) && (IsMemset || Aligned(SrcAlign, 8)))
3162 return MVT::i64;
3163 if (Size >= 4 && Aligned(DstAlign, 4) && (IsMemset || Aligned(SrcAlign, 4)))
3164 return MVT::i32;
3165 if (Size >= 2 && Aligned(DstAlign, 2) && (IsMemset || Aligned(SrcAlign, 2)))
3166 return MVT::i16;
3167
3168 return MVT::Other;
3169}
3170
Krzysztof Parzyszek2d65ea72016-03-28 15:43:03 +00003171bool HexagonTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
3172 unsigned AS, unsigned Align, bool *Fast) const {
3173 if (Fast)
3174 *Fast = false;
3175
3176 switch (VT.getSimpleVT().SimpleTy) {
3177 default:
3178 return false;
3179 case MVT::v64i8:
3180 case MVT::v128i8:
3181 case MVT::v256i8:
3182 case MVT::v32i16:
3183 case MVT::v64i16:
3184 case MVT::v128i16:
3185 case MVT::v16i32:
3186 case MVT::v32i32:
3187 case MVT::v64i32:
3188 case MVT::v8i64:
3189 case MVT::v16i64:
3190 case MVT::v32i64:
3191 return true;
3192 }
3193 return false;
3194}
3195
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00003196std::pair<const TargetRegisterClass*, uint8_t>
3197HexagonTargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
3198 MVT VT) const {
3199 const TargetRegisterClass *RRC = nullptr;
3200
3201 uint8_t Cost = 1;
3202 switch (VT.SimpleTy) {
3203 default:
3204 return TargetLowering::findRepresentativeClass(TRI, VT);
3205 case MVT::v64i8:
3206 case MVT::v32i16:
3207 case MVT::v16i32:
3208 case MVT::v8i64:
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003209 RRC = &Hexagon::HvxVRRegClass;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00003210 break;
3211 case MVT::v128i8:
3212 case MVT::v64i16:
3213 case MVT::v32i32:
3214 case MVT::v16i64:
3215 if (Subtarget.hasV60TOps() && Subtarget.useHVXOps() &&
3216 Subtarget.useHVXDblOps())
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003217 RRC = &Hexagon::HvxVRRegClass;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00003218 else
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003219 RRC = &Hexagon::HvxWRRegClass;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00003220 break;
3221 case MVT::v256i8:
3222 case MVT::v128i16:
3223 case MVT::v64i32:
3224 case MVT::v32i64:
Krzysztof Parzyszek55772972017-09-15 15:46:05 +00003225 RRC = &Hexagon::HvxWRRegClass;
Krzysztof Parzyszek08ff8882015-11-26 18:38:27 +00003226 break;
3227 }
3228 return std::make_pair(RRC, Cost);
3229}
3230
Krzysztof Parzyszekfeaf7b82015-07-09 14:51:21 +00003231Value *HexagonTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
3232 AtomicOrdering Ord) const {
3233 BasicBlock *BB = Builder.GetInsertBlock();
3234 Module *M = BB->getParent()->getParent();
3235 Type *Ty = cast<PointerType>(Addr->getType())->getElementType();
3236 unsigned SZ = Ty->getPrimitiveSizeInBits();
3237 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic loads supported");
3238 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_L2_loadw_locked
3239 : Intrinsic::hexagon_L4_loadd_locked;
3240 Value *Fn = Intrinsic::getDeclaration(M, IntID);
3241 return Builder.CreateCall(Fn, Addr, "larx");
3242}
3243
3244/// Perform a store-conditional operation to Addr. Return the status of the
3245/// store. This should be 0 if the store succeeded, non-zero otherwise.
3246Value *HexagonTargetLowering::emitStoreConditional(IRBuilder<> &Builder,
3247 Value *Val, Value *Addr, AtomicOrdering Ord) const {
3248 BasicBlock *BB = Builder.GetInsertBlock();
3249 Module *M = BB->getParent()->getParent();
3250 Type *Ty = Val->getType();
3251 unsigned SZ = Ty->getPrimitiveSizeInBits();
3252 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic stores supported");
3253 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_S2_storew_locked
3254 : Intrinsic::hexagon_S4_stored_locked;
3255 Value *Fn = Intrinsic::getDeclaration(M, IntID);
3256 Value *Call = Builder.CreateCall(Fn, {Addr, Val}, "stcx");
3257 Value *Cmp = Builder.CreateICmpEQ(Call, Builder.getInt32(0), "");
3258 Value *Ext = Builder.CreateZExt(Cmp, Type::getInt32Ty(M->getContext()));
3259 return Ext;
3260}
3261
Ahmed Bougacha52468672015-09-11 17:08:28 +00003262TargetLowering::AtomicExpansionKind
3263HexagonTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
Krzysztof Parzyszekfeaf7b82015-07-09 14:51:21 +00003264 // Do not expand loads and stores that don't exceed 64 bits.
Ahmed Bougacha52468672015-09-11 17:08:28 +00003265 return LI->getType()->getPrimitiveSizeInBits() > 64
Tim Northoverf520eff2015-12-02 18:12:57 +00003266 ? AtomicExpansionKind::LLOnly
Ahmed Bougacha52468672015-09-11 17:08:28 +00003267 : AtomicExpansionKind::None;
Krzysztof Parzyszekfeaf7b82015-07-09 14:51:21 +00003268}
3269
3270bool HexagonTargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
3271 // Do not expand loads and stores that don't exceed 64 bits.
3272 return SI->getValueOperand()->getType()->getPrimitiveSizeInBits() > 64;
3273}
Krzysztof Parzyszekf228c952016-06-22 16:07:10 +00003274
3275bool HexagonTargetLowering::shouldExpandAtomicCmpXchgInIR(
3276 AtomicCmpXchgInst *AI) const {
3277 const DataLayout &DL = AI->getModule()->getDataLayout();
3278 unsigned Size = DL.getTypeStoreSize(AI->getCompareOperand()->getType());
3279 return Size >= 4 && Size <= 8;
3280}