Bug Summary

File:lib/Target/Hexagon/HexagonISelLowering.cpp
Warning:line 2765, column 16
Value stored to 'Subreg' during its initialization is never read

Annotated Source Code

1//===-- 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"
16#include "Hexagon.h"
17#include "HexagonMachineFunctionInfo.h"
18#include "HexagonRegisterInfo.h"
19#include "HexagonSubtarget.h"
20#include "HexagonTargetMachine.h"
21#include "HexagonTargetObjectFile.h"
22#include "llvm/ADT/APInt.h"
23#include "llvm/ADT/ArrayRef.h"
24#include "llvm/ADT/SmallVector.h"
25#include "llvm/CodeGen/CallingConvLower.h"
26#include "llvm/CodeGen/MachineFrameInfo.h"
27#include "llvm/CodeGen/MachineFunction.h"
28#include "llvm/CodeGen/MachineMemOperand.h"
29#include "llvm/CodeGen/MachineRegisterInfo.h"
30#include "llvm/CodeGen/RuntimeLibcalls.h"
31#include "llvm/CodeGen/SelectionDAG.h"
32#include "llvm/CodeGen/TargetCallingConv.h"
33#include "llvm/CodeGen/ValueTypes.h"
34#include "llvm/IR/BasicBlock.h"
35#include "llvm/IR/CallingConv.h"
36#include "llvm/IR/DataLayout.h"
37#include "llvm/IR/DerivedTypes.h"
38#include "llvm/IR/Function.h"
39#include "llvm/IR/GlobalValue.h"
40#include "llvm/IR/InlineAsm.h"
41#include "llvm/IR/Instructions.h"
42#include "llvm/IR/Intrinsics.h"
43#include "llvm/IR/Module.h"
44#include "llvm/IR/Type.h"
45#include "llvm/IR/Value.h"
46#include "llvm/MC/MCRegisterInfo.h"
47#include "llvm/Support/Casting.h"
48#include "llvm/Support/CodeGen.h"
49#include "llvm/Support/CommandLine.h"
50#include "llvm/Support/Debug.h"
51#include "llvm/Support/ErrorHandling.h"
52#include "llvm/Support/MathExtras.h"
53#include "llvm/Support/raw_ostream.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>
61
62using namespace llvm;
63
64#define DEBUG_TYPE"hexagon-lowering" "hexagon-lowering"
65
66static cl::opt<bool> EmitJumpTables("hexagon-emit-jump-tables",
67 cl::init(true), cl::Hidden,
68 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
106
107namespace {
108
109 class HexagonCCState : public CCState {
110 unsigned NumNamedVarArgParams;
111
112 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) {}
118
119 unsigned getNumNamedVarArgParams() const { return NumNamedVarArgParams; }
120 };
121
122 enum StridedLoadKind {
123 Even = 0,
124 Odd,
125 NoPattern
126 };
127
128} // end anonymous namespace
129
130// Implement calling convention for Hexagon.
131
132static bool isHvxVectorType(MVT ty);
133
134static 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
150CC_HexagonVector(unsigned ValNo, MVT ValVT,
151 MVT LocVT, CCValAssign::LocInfo LocInfo,
152 ISD::ArgFlagsTy ArgFlags, CCState &State);
153
154static bool
155RetCC_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
170RetCC_HexagonVector(unsigned ValNo, MVT ValVT,
171 MVT LocVT, CCValAssign::LocInfo LocInfo,
172 ISD::ArgFlagsTy ArgFlags, CCState &State);
173
174static bool
175CC_Hexagon_VarArg (unsigned ValNo, MVT ValVT,
176 MVT LocVT, CCValAssign::LocInfo LocInfo,
177 ISD::ArgFlagsTy ArgFlags, CCState &State) {
178 HexagonCCState &HState = static_cast<HexagonCCState &>(State);
179
180 if (ValNo < HState.getNumNamedVarArgParams()) {
181 // Deal with named arguments.
182 return CC_Hexagon(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State);
183 }
184
185 // Deal with un-named arguments.
186 unsigned Offset;
187 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.
190 Offset = State.AllocateStack(ArgFlags.getByValSize(),
191 ArgFlags.getByValAlign());
192 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
193 return false;
194 }
195 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 }
205 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
206 Offset = State.AllocateStack(4, 4);
207 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
208 return false;
209 }
210 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
211 Offset = State.AllocateStack(8, 8);
212 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
213 return false;
214 }
215 if (LocVT == MVT::v2i64 || LocVT == MVT::v4i32 || LocVT == MVT::v8i16 ||
216 LocVT == MVT::v16i8) {
217 Offset = State.AllocateStack(16, 16);
218 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
219 return false;
220 }
221 if (LocVT == MVT::v4i64 || LocVT == MVT::v8i32 || LocVT == MVT::v16i16 ||
222 LocVT == MVT::v32i8) {
223 Offset = State.AllocateStack(32, 32);
224 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
225 return false;
226 }
227 if (LocVT == MVT::v8i64 || LocVT == MVT::v16i32 || LocVT == MVT::v32i16 ||
228 LocVT == MVT::v64i8 || LocVT == MVT::v512i1) {
229 Offset = State.AllocateStack(64, 64);
230 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
231 return false;
232 }
233 if (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
234 LocVT == MVT::v128i8 || LocVT == MVT::v1024i1) {
235 Offset = State.AllocateStack(128, 128);
236 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
237 return false;
238 }
239 if (LocVT == MVT::v32i64 || LocVT == MVT::v64i32 || LocVT == MVT::v128i16 ||
240 LocVT == MVT::v256i8) {
241 Offset = State.AllocateStack(256, 256);
242 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
243 return false;
244 }
245
246 llvm_unreachable(nullptr)::llvm::llvm_unreachable_internal(nullptr, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 246)
;
247}
248
249static bool CC_Hexagon (unsigned ValNo, MVT ValVT, MVT LocVT,
250 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, CCState &State) {
251 if (ArgFlags.isByVal()) {
252 // Passed on stack.
253 unsigned Offset = State.AllocateStack(ArgFlags.getByValSize(),
254 ArgFlags.getByValAlign());
255 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
256 return false;
257 }
258
259 if (LocVT == MVT::i1) {
260 LocVT = MVT::i32;
261 } else if (LocVT == MVT::i8 || LocVT == MVT::i16) {
262 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;
270 } 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;
276 }
277
278 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
279 if (!CC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
280 return false;
281 }
282
283 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
284 if (!CC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
285 return false;
286 }
287
288 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
294 if (isHvxVectorType(LocVT)) {
295 if (!CC_HexagonVector(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
296 return false;
297 }
298
299 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) {
306 static const MCPhysReg RegList[] = {
307 Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4,
308 Hexagon::R5
309 };
310 if (unsigned Reg = State.AllocateReg(RegList)) {
311 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) {
323 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
324 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
325 return false;
326 }
327
328 static const MCPhysReg RegList1[] = {
329 Hexagon::D1, Hexagon::D2
330 };
331 static const MCPhysReg RegList2[] = {
332 Hexagon::R1, Hexagon::R3
333 };
334 if (unsigned Reg = State.AllocateReg(RegList1, RegList2)) {
335 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
344static bool CC_HexagonVector(unsigned ValNo, MVT ValVT,
345 MVT LocVT, CCValAssign::LocInfo LocInfo,
346 ISD::ArgFlagsTy ArgFlags, CCState &State) {
347 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 };
357 auto &MF = State.getMachineFunction();
358 auto &HST = MF.getSubtarget<HexagonSubtarget>();
359
360 if (HST.useHVX64BOps() &&
361 (LocVT == MVT::v8i64 || LocVT == MVT::v16i32 || LocVT == MVT::v32i16 ||
362 LocVT == MVT::v64i8 || LocVT == MVT::v512i1)) {
363 if (unsigned Reg = State.AllocateReg(VecLstS)) {
364 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
365 return false;
366 }
367 unsigned Offset = State.AllocateStack(64, 64);
368 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
369 return false;
370 }
371 if (HST.useHVX64BOps() && (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 ||
372 LocVT == MVT::v64i16 || LocVT == MVT::v128i8)) {
373 if (unsigned Reg = State.AllocateReg(VecLstD)) {
374 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
375 return false;
376 }
377 unsigned Offset = State.AllocateStack(128, 128);
378 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
379 return false;
380 }
381 // 128B Mode
382 if (HST.useHVX128BOps() && (LocVT == MVT::v32i64 || LocVT == MVT::v64i32 ||
383 LocVT == MVT::v128i16 || LocVT == MVT::v256i8)) {
384 if (unsigned Reg = State.AllocateReg(VecLstD)) {
385 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
386 return false;
387 }
388 unsigned Offset = State.AllocateStack(256, 256);
389 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
390 return false;
391 }
392 if (HST.useHVX128BOps() &&
393 (LocVT == MVT::v16i64 || LocVT == MVT::v32i32 || LocVT == MVT::v64i16 ||
394 LocVT == MVT::v128i8 || LocVT == MVT::v1024i1)) {
395 if (unsigned Reg = State.AllocateReg(VecLstS)) {
396 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
397 return false;
398 }
399 unsigned Offset = State.AllocateStack(128, 128);
400 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
401 return false;
402 }
403 return true;
404}
405
406static bool RetCC_Hexagon(unsigned ValNo, MVT ValVT,
407 MVT LocVT, CCValAssign::LocInfo LocInfo,
408 ISD::ArgFlagsTy ArgFlags, CCState &State) {
409 auto &MF = State.getMachineFunction();
410 auto &HST = MF.getSubtarget<HexagonSubtarget>();
411
412 if (LocVT == MVT::i1) {
413 // Return values of type MVT::i1 still need to be assigned to R0, but
414 // the value type needs to remain i1. LowerCallResult will deal with it,
415 // but it needs to recognize i1 as the value type.
416 LocVT = MVT::i32;
417 } else if (LocVT == MVT::i8 || LocVT == MVT::i16) {
418 LocVT = MVT::i32;
419 ValVT = MVT::i32;
420 if (ArgFlags.isSExt())
421 LocInfo = CCValAssign::SExt;
422 else if (ArgFlags.isZExt())
423 LocInfo = CCValAssign::ZExt;
424 else
425 LocInfo = CCValAssign::AExt;
426 } else if (LocVT == MVT::v4i8 || LocVT == MVT::v2i16) {
427 LocVT = MVT::i32;
428 LocInfo = CCValAssign::BCvt;
429 } else if (LocVT == MVT::v8i8 || LocVT == MVT::v4i16 || LocVT == MVT::v2i32) {
430 LocVT = MVT::i64;
431 LocInfo = CCValAssign::BCvt;
432 } else if (LocVT == MVT::v64i8 || LocVT == MVT::v32i16 ||
433 LocVT == MVT::v16i32 || LocVT == MVT::v8i64 ||
434 LocVT == MVT::v512i1) {
435 LocVT = MVT::v16i32;
436 ValVT = MVT::v16i32;
437 LocInfo = CCValAssign::Full;
438 } else if (LocVT == MVT::v128i8 || LocVT == MVT::v64i16 ||
439 LocVT == MVT::v32i32 || LocVT == MVT::v16i64 ||
440 (LocVT == MVT::v1024i1 && HST.useHVX128BOps())) {
441 LocVT = MVT::v32i32;
442 ValVT = MVT::v32i32;
443 LocInfo = CCValAssign::Full;
444 } else if (LocVT == MVT::v256i8 || LocVT == MVT::v128i16 ||
445 LocVT == MVT::v64i32 || LocVT == MVT::v32i64) {
446 LocVT = MVT::v64i32;
447 ValVT = MVT::v64i32;
448 LocInfo = CCValAssign::Full;
449 }
450 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
451 if (!RetCC_Hexagon32(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
452 return false;
453 }
454
455 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
456 if (!RetCC_Hexagon64(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
457 return false;
458 }
459 if (LocVT == MVT::v16i32 || LocVT == MVT::v32i32 || LocVT == MVT::v64i32) {
460 if (!RetCC_HexagonVector(ValNo, ValVT, LocVT, LocInfo, ArgFlags, State))
461 return false;
462 }
463 return true; // CC didn't match.
464}
465
466static bool RetCC_Hexagon32(unsigned ValNo, MVT ValVT,
467 MVT LocVT, CCValAssign::LocInfo LocInfo,
468 ISD::ArgFlagsTy ArgFlags, CCState &State) {
469 if (LocVT == MVT::i32 || LocVT == MVT::f32) {
470 // Note that use of registers beyond R1 is not ABI compliant. However there
471 // are (experimental) IR passes which generate internal functions that
472 // return structs using these additional registers.
473 static const uint16_t RegList[] = { Hexagon::R0, Hexagon::R1,
474 Hexagon::R2, Hexagon::R3,
475 Hexagon::R4, Hexagon::R5 };
476 if (unsigned Reg = State.AllocateReg(RegList)) {
477 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
478 return false;
479 }
480 }
481
482 return true;
483}
484
485static bool RetCC_Hexagon64(unsigned ValNo, MVT ValVT,
486 MVT LocVT, CCValAssign::LocInfo LocInfo,
487 ISD::ArgFlagsTy ArgFlags, CCState &State) {
488 if (LocVT == MVT::i64 || LocVT == MVT::f64) {
489 if (unsigned Reg = State.AllocateReg(Hexagon::D0)) {
490 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
491 return false;
492 }
493 }
494
495 return true;
496}
497
498static bool RetCC_HexagonVector(unsigned ValNo, MVT ValVT,
499 MVT LocVT, CCValAssign::LocInfo LocInfo,
500 ISD::ArgFlagsTy ArgFlags, CCState &State) {
501 auto &MF = State.getMachineFunction();
502 auto &HST = MF.getSubtarget<HexagonSubtarget>();
503
504 if (LocVT == MVT::v16i32) {
505 if (unsigned Reg = State.AllocateReg(Hexagon::V0)) {
506 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
507 return false;
508 }
509 } else if (LocVT == MVT::v32i32) {
510 unsigned Req = HST.useHVX128BOps() ? Hexagon::V0 : Hexagon::W0;
511 if (unsigned Reg = State.AllocateReg(Req)) {
512 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
513 return false;
514 }
515 } else if (LocVT == MVT::v64i32) {
516 if (unsigned Reg = State.AllocateReg(Hexagon::W0)) {
517 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
518 return false;
519 }
520 }
521
522 return true;
523}
524
525void HexagonTargetLowering::promoteLdStType(MVT VT, MVT PromotedLdStVT) {
526 if (VT != PromotedLdStVT) {
527 setOperationAction(ISD::LOAD, VT, Promote);
528 AddPromotedToType(ISD::LOAD, VT, PromotedLdStVT);
529
530 setOperationAction(ISD::STORE, VT, Promote);
531 AddPromotedToType(ISD::STORE, VT, PromotedLdStVT);
532 }
533}
534
535SDValue
536HexagonTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG)
537 const {
538 return SDValue();
539}
540
541/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
542/// by "Src" to address "Dst" of size "Size". Alignment information is
543/// specified by the specific parameter attribute. The copy will be passed as
544/// a byval function parameter. Sometimes what we are copying is the end of a
545/// larger object, the part that does not fit in registers.
546static SDValue CreateCopyOfByValArgument(SDValue Src, SDValue Dst,
547 SDValue Chain, ISD::ArgFlagsTy Flags,
548 SelectionDAG &DAG, const SDLoc &dl) {
549 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32);
550 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
551 /*isVolatile=*/false, /*AlwaysInline=*/false,
552 /*isTailCall=*/false,
553 MachinePointerInfo(), MachinePointerInfo());
554}
555
556static bool isHvxVectorType(MVT Ty) {
557 switch (Ty.SimpleTy) {
558 case MVT::v8i64:
559 case MVT::v16i32:
560 case MVT::v32i16:
561 case MVT::v64i8:
562 case MVT::v16i64:
563 case MVT::v32i32:
564 case MVT::v64i16:
565 case MVT::v128i8:
566 case MVT::v32i64:
567 case MVT::v64i32:
568 case MVT::v128i16:
569 case MVT::v256i8:
570 case MVT::v512i1:
571 case MVT::v1024i1:
572 return true;
573 default:
574 return false;
575 }
576}
577
578bool
579HexagonTargetLowering::CanLowerReturn(
580 CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
581 const SmallVectorImpl<ISD::OutputArg> &Outs,
582 LLVMContext &Context) const {
583 SmallVector<CCValAssign, 16> RVLocs;
584 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
585 return CCInfo.CheckReturn(Outs, RetCC_Hexagon);
586}
587
588// LowerReturn - Lower ISD::RET. If a struct is larger than 8 bytes and is
589// passed by value, the function prototype is modified to return void and
590// the value is stored in memory pointed by a pointer passed by caller.
591SDValue
592HexagonTargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
593 bool isVarArg,
594 const SmallVectorImpl<ISD::OutputArg> &Outs,
595 const SmallVectorImpl<SDValue> &OutVals,
596 const SDLoc &dl, SelectionDAG &DAG) const {
597 // CCValAssign - represent the assignment of the return value to locations.
598 SmallVector<CCValAssign, 16> RVLocs;
599
600 // CCState - Info about the registers and stack slot.
601 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
602 *DAG.getContext());
603
604 // Analyze return values of ISD::RET
605 CCInfo.AnalyzeReturn(Outs, RetCC_Hexagon);
606
607 SDValue Flag;
608 SmallVector<SDValue, 4> RetOps(1, Chain);
609
610 // Copy the result values into the output registers.
611 for (unsigned i = 0; i != RVLocs.size(); ++i) {
612 CCValAssign &VA = RVLocs[i];
613
614 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
615
616 // Guarantee that all emitted copies are stuck together with flags.
617 Flag = Chain.getValue(1);
618 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
619 }
620
621 RetOps[0] = Chain; // Update chain.
622
623 // Add the flag if we have it.
624 if (Flag.getNode())
625 RetOps.push_back(Flag);
626
627 return DAG.getNode(HexagonISD::RET_FLAG, dl, MVT::Other, RetOps);
628}
629
630bool HexagonTargetLowering::mayBeEmittedAsTailCall(const CallInst *CI) const {
631 // If either no tail call or told not to tail call at all, don't.
632 auto Attr =
633 CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
634 if (!CI->isTailCall() || Attr.getValueAsString() == "true")
635 return false;
636
637 return true;
638}
639
640/// LowerCallResult - Lower the result values of an ISD::CALL into the
641/// appropriate copies out of appropriate physical registers. This assumes that
642/// Chain/Glue are the input chain/glue to use, and that TheCall is the call
643/// being lowered. Returns a SDNode with the same number of values as the
644/// ISD::CALL.
645SDValue HexagonTargetLowering::LowerCallResult(
646 SDValue Chain, SDValue Glue, CallingConv::ID CallConv, bool isVarArg,
647 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl,
648 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals,
649 const SmallVectorImpl<SDValue> &OutVals, SDValue Callee) const {
650 // Assign locations to each value returned by this call.
651 SmallVector<CCValAssign, 16> RVLocs;
652
653 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
654 *DAG.getContext());
655
656 CCInfo.AnalyzeCallResult(Ins, RetCC_Hexagon);
657
658 // Copy all of the result registers out of their specified physreg.
659 for (unsigned i = 0; i != RVLocs.size(); ++i) {
660 SDValue RetVal;
661 if (RVLocs[i].getValVT() == MVT::i1) {
662 // Return values of type MVT::i1 require special handling. The reason
663 // is that MVT::i1 is associated with the PredRegs register class, but
664 // values of that type are still returned in R0. Generate an explicit
665 // copy into a predicate register from R0, and treat the value of the
666 // predicate register as the call result.
667 auto &MRI = DAG.getMachineFunction().getRegInfo();
668 SDValue FR0 = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
669 MVT::i32, Glue);
670 // FR0 = (Value, Chain, Glue)
671 unsigned PredR = MRI.createVirtualRegister(&Hexagon::PredRegsRegClass);
672 SDValue TPR = DAG.getCopyToReg(FR0.getValue(1), dl, PredR,
673 FR0.getValue(0), FR0.getValue(2));
674 // TPR = (Chain, Glue)
675 // Don't glue this CopyFromReg, because it copies from a virtual
676 // register. If it is glued to the call, InstrEmitter will add it
677 // as an implicit def to the call (EmitMachineNode).
678 RetVal = DAG.getCopyFromReg(TPR.getValue(0), dl, PredR, MVT::i1);
679 Glue = TPR.getValue(1);
680 Chain = TPR.getValue(0);
681 } else {
682 RetVal = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
683 RVLocs[i].getValVT(), Glue);
684 Glue = RetVal.getValue(2);
685 Chain = RetVal.getValue(1);
686 }
687 InVals.push_back(RetVal.getValue(0));
688 }
689
690 return Chain;
691}
692
693/// LowerCall - Functions arguments are copied from virtual regs to
694/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
695SDValue
696HexagonTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
697 SmallVectorImpl<SDValue> &InVals) const {
698 SelectionDAG &DAG = CLI.DAG;
699 SDLoc &dl = CLI.DL;
700 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
701 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
702 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
703 SDValue Chain = CLI.Chain;
704 SDValue Callee = CLI.Callee;
705 bool &IsTailCall = CLI.IsTailCall;
706 CallingConv::ID CallConv = CLI.CallConv;
707 bool IsVarArg = CLI.IsVarArg;
708 bool DoesNotReturn = CLI.DoesNotReturn;
709
710 bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
711 MachineFunction &MF = DAG.getMachineFunction();
712 MachineFrameInfo &MFI = MF.getFrameInfo();
713 auto PtrVT = getPointerTy(MF.getDataLayout());
714
715 // Check for varargs.
716 unsigned NumNamedVarArgParams = -1U;
717 if (GlobalAddressSDNode *GAN = dyn_cast<GlobalAddressSDNode>(Callee)) {
718 const GlobalValue *GV = GAN->getGlobal();
719 Callee = DAG.getTargetGlobalAddress(GV, dl, MVT::i32);
720 if (const Function* F = dyn_cast<Function>(GV)) {
721 // If a function has zero args and is a vararg function, that's
722 // disallowed so it must be an undeclared function. Do not assume
723 // varargs if the callee is undefined.
724 if (F->isVarArg() && F->getFunctionType()->getNumParams() != 0)
725 NumNamedVarArgParams = F->getFunctionType()->getNumParams();
726 }
727 }
728
729 // Analyze operands of the call, assigning locations to each operand.
730 SmallVector<CCValAssign, 16> ArgLocs;
731 HexagonCCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(), ArgLocs,
732 *DAG.getContext(), NumNamedVarArgParams);
733
734 if (IsVarArg)
735 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon_VarArg);
736 else
737 CCInfo.AnalyzeCallOperands(Outs, CC_Hexagon);
738
739 auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
740 if (Attr.getValueAsString() == "true")
741 IsTailCall = false;
742
743 if (IsTailCall) {
744 bool StructAttrFlag = MF.getFunction()->hasStructRetAttr();
745 IsTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
746 IsVarArg, IsStructRet,
747 StructAttrFlag,
748 Outs, OutVals, Ins, DAG);
749 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
750 CCValAssign &VA = ArgLocs[i];
751 if (VA.isMemLoc()) {
752 IsTailCall = false;
753 break;
754 }
755 }
756 DEBUG(dbgs() << (IsTailCall ? "Eligible for Tail Call\n"do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { dbgs() << (IsTailCall ? "Eligible for Tail Call\n"
: "Argument must be passed on stack. " "Not eligible for Tail Call\n"
); } } while (false)
757 : "Argument must be passed on stack. "do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { dbgs() << (IsTailCall ? "Eligible for Tail Call\n"
: "Argument must be passed on stack. " "Not eligible for Tail Call\n"
); } } while (false)
758 "Not eligible for Tail Call\n"))do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { dbgs() << (IsTailCall ? "Eligible for Tail Call\n"
: "Argument must be passed on stack. " "Not eligible for Tail Call\n"
); } } while (false)
;
759 }
760 // Get a count of how many bytes are to be pushed on the stack.
761 unsigned NumBytes = CCInfo.getNextStackOffset();
762 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
763 SmallVector<SDValue, 8> MemOpChains;
764
765 auto &HRI = *Subtarget.getRegisterInfo();
766 SDValue StackPtr =
767 DAG.getCopyFromReg(Chain, dl, HRI.getStackRegister(), PtrVT);
768
769 bool NeedsArgAlign = false;
770 unsigned LargestAlignSeen = 0;
771 // Walk the register/memloc assignments, inserting copies/loads.
772 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
773 CCValAssign &VA = ArgLocs[i];
774 SDValue Arg = OutVals[i];
775 ISD::ArgFlagsTy Flags = Outs[i].Flags;
776 // Record if we need > 8 byte alignment on an argument.
777 bool ArgAlign = isHvxVectorType(VA.getValVT());
778 NeedsArgAlign |= ArgAlign;
779
780 // Promote the value if needed.
781 switch (VA.getLocInfo()) {
782 default:
783 // Loc info must be one of Full, SExt, ZExt, or AExt.
784 llvm_unreachable("Unknown loc info!")::llvm::llvm_unreachable_internal("Unknown loc info!", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 784)
;
785 case CCValAssign::BCvt:
786 case CCValAssign::Full:
787 break;
788 case CCValAssign::SExt:
789 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
790 break;
791 case CCValAssign::ZExt:
792 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
793 break;
794 case CCValAssign::AExt:
795 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
796 break;
797 }
798
799 if (VA.isMemLoc()) {
800 unsigned LocMemOffset = VA.getLocMemOffset();
801 SDValue MemAddr = DAG.getConstant(LocMemOffset, dl,
802 StackPtr.getValueType());
803 MemAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, MemAddr);
804 if (ArgAlign)
805 LargestAlignSeen = std::max(LargestAlignSeen,
806 VA.getLocVT().getStoreSizeInBits() >> 3);
807 if (Flags.isByVal()) {
808 // The argument is a struct passed by value. According to LLVM, "Arg"
809 // is is pointer.
810 MemOpChains.push_back(CreateCopyOfByValArgument(Arg, MemAddr, Chain,
811 Flags, DAG, dl));
812 } else {
813 MachinePointerInfo LocPI = MachinePointerInfo::getStack(
814 DAG.getMachineFunction(), LocMemOffset);
815 SDValue S = DAG.getStore(Chain, dl, Arg, MemAddr, LocPI);
816 MemOpChains.push_back(S);
817 }
818 continue;
819 }
820
821 // Arguments that can be passed on register must be kept at RegsToPass
822 // vector.
823 if (VA.isRegLoc())
824 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
825 }
826
827 if (NeedsArgAlign && Subtarget.hasV60TOps()) {
828 DEBUG(dbgs() << "Function needs byte stack align due to call args\n")do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { dbgs() << "Function needs byte stack align due to call args\n"
; } } while (false)
;
829 // V6 vectors passed by value have 64 or 128 byte alignment depending
830 // on whether we are 64 byte vector mode or 128 byte.
831 bool UseHVX128B = Subtarget.useHVX128BOps();
832 assert(Subtarget.useHVXOps())(static_cast <bool> (Subtarget.useHVXOps()) ? void (0) :
__assert_fail ("Subtarget.useHVXOps()", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 832, __extension__ __PRETTY_FUNCTION__))
;
833 const unsigned ObjAlign = UseHVX128B ? 128 : 64;
834 LargestAlignSeen = std::max(LargestAlignSeen, ObjAlign);
835 MFI.ensureMaxAlignment(LargestAlignSeen);
836 }
837 // Transform all store nodes into one single node because all store
838 // nodes are independent of each other.
839 if (!MemOpChains.empty())
840 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
841
842 SDValue Glue;
843 if (!IsTailCall) {
844 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl);
845 Glue = Chain.getValue(1);
846 }
847
848 // Build a sequence of copy-to-reg nodes chained together with token
849 // chain and flag operands which copy the outgoing args into registers.
850 // The Glue is necessary since all emitted instructions must be
851 // stuck together.
852 if (!IsTailCall) {
853 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
854 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
855 RegsToPass[i].second, Glue);
856 Glue = Chain.getValue(1);
857 }
858 } else {
859 // For tail calls lower the arguments to the 'real' stack slot.
860 //
861 // Force all the incoming stack arguments to be loaded from the stack
862 // before any new outgoing arguments are stored to the stack, because the
863 // outgoing stack slots may alias the incoming argument stack slots, and
864 // the alias isn't otherwise explicit. This is slightly more conservative
865 // than necessary, because it means that each store effectively depends
866 // on every argument instead of just those arguments it would clobber.
867 //
868 // Do not flag preceding copytoreg stuff together with the following stuff.
869 Glue = SDValue();
870 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
871 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
872 RegsToPass[i].second, Glue);
873 Glue = Chain.getValue(1);
874 }
875 Glue = SDValue();
876 }
877
878 bool LongCalls = MF.getSubtarget<HexagonSubtarget>().useLongCalls();
879 unsigned Flags = LongCalls ? HexagonII::HMOTF_ConstExtended : 0;
880
881 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
882 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
883 // node so that legalize doesn't hack it.
884 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
885 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, PtrVT, 0, Flags);
886 } else if (ExternalSymbolSDNode *S =
887 dyn_cast<ExternalSymbolSDNode>(Callee)) {
888 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), PtrVT, Flags);
889 }
890
891 // Returns a chain & a flag for retval copy to use.
892 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
893 SmallVector<SDValue, 8> Ops;
894 Ops.push_back(Chain);
895 Ops.push_back(Callee);
896
897 // Add argument registers to the end of the list so that they are
898 // known live into the call.
899 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
900 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
901 RegsToPass[i].second.getValueType()));
902 }
903
904 const uint32_t *Mask = HRI.getCallPreservedMask(MF, CallConv);
905 assert(Mask && "Missing call preserved mask for calling convention")(static_cast <bool> (Mask && "Missing call preserved mask for calling convention"
) ? void (0) : __assert_fail ("Mask && \"Missing call preserved mask for calling convention\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 905, __extension__ __PRETTY_FUNCTION__))
;
906 Ops.push_back(DAG.getRegisterMask(Mask));
907
908 if (Glue.getNode())
909 Ops.push_back(Glue);
910
911 if (IsTailCall) {
912 MFI.setHasTailCall();
913 return DAG.getNode(HexagonISD::TC_RETURN, dl, NodeTys, Ops);
914 }
915
916 // Set this here because we need to know this for "hasFP" in frame lowering.
917 // The target-independent code calls getFrameRegister before setting it, and
918 // getFrameRegister uses hasFP to determine whether the function has FP.
919 MFI.setHasCalls(true);
920
921 unsigned OpCode = DoesNotReturn ? HexagonISD::CALLnr : HexagonISD::CALL;
922 Chain = DAG.getNode(OpCode, dl, NodeTys, Ops);
923 Glue = Chain.getValue(1);
924
925 // Create the CALLSEQ_END node.
926 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
927 DAG.getIntPtrConstant(0, dl, true), Glue, dl);
928 Glue = Chain.getValue(1);
929
930 // Handle result values, copying them out of physregs into vregs that we
931 // return.
932 return LowerCallResult(Chain, Glue, CallConv, IsVarArg, Ins, dl, DAG,
933 InVals, OutVals, Callee);
934}
935
936static bool getIndexedAddressParts(SDNode *Ptr, EVT VT,
937 SDValue &Base, SDValue &Offset,
938 bool &IsInc, SelectionDAG &DAG) {
939 if (Ptr->getOpcode() != ISD::ADD)
940 return false;
941
942 auto &HST = static_cast<const HexagonSubtarget&>(DAG.getSubtarget());
943
944 bool ValidHVX128BType =
945 HST.useHVX128BOps() && (VT == MVT::v32i32 || VT == MVT::v16i64 ||
946 VT == MVT::v64i16 || VT == MVT::v128i8);
947 bool ValidHVXType =
948 HST.useHVX64BOps() && (VT == MVT::v16i32 || VT == MVT::v8i64 ||
949 VT == MVT::v32i16 || VT == MVT::v64i8);
950
951 if (ValidHVX128BType || ValidHVXType || VT == MVT::i64 || VT == MVT::i32 ||
952 VT == MVT::i16 || VT == MVT::i8) {
953 IsInc = (Ptr->getOpcode() == ISD::ADD);
954 Base = Ptr->getOperand(0);
955 Offset = Ptr->getOperand(1);
956 // Ensure that Offset is a constant.
957 return isa<ConstantSDNode>(Offset);
958 }
959
960 return false;
961}
962
963/// getPostIndexedAddressParts - returns true by value, base pointer and
964/// offset pointer and addressing mode by reference if this node can be
965/// combined with a load / store to form a post-indexed load / store.
966bool HexagonTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
967 SDValue &Base,
968 SDValue &Offset,
969 ISD::MemIndexedMode &AM,
970 SelectionDAG &DAG) const
971{
972 EVT VT;
973
974 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
975 VT = LD->getMemoryVT();
976 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
977 VT = ST->getMemoryVT();
978 if (ST->getValue().getValueType() == MVT::i64 && ST->isTruncatingStore())
979 return false;
980 } else {
981 return false;
982 }
983
984 bool IsInc = false;
985 bool isLegal = getIndexedAddressParts(Op, VT, Base, Offset, IsInc, DAG);
986 if (isLegal) {
987 auto &HII = *Subtarget.getInstrInfo();
988 int32_t OffsetVal = cast<ConstantSDNode>(Offset.getNode())->getSExtValue();
989 if (HII.isValidAutoIncImm(VT, OffsetVal)) {
990 AM = IsInc ? ISD::POST_INC : ISD::POST_DEC;
991 return true;
992 }
993 }
994
995 return false;
996}
997
998SDValue
999HexagonTargetLowering::LowerINLINEASM(SDValue Op, SelectionDAG &DAG) const {
1000 MachineFunction &MF = DAG.getMachineFunction();
1001 auto &HMFI = *MF.getInfo<HexagonMachineFunctionInfo>();
1002 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
1003 unsigned LR = HRI.getRARegister();
1004
1005 if (Op.getOpcode() != ISD::INLINEASM || HMFI.hasClobberLR())
1006 return Op;
1007
1008 unsigned NumOps = Op.getNumOperands();
1009 if (Op.getOperand(NumOps-1).getValueType() == MVT::Glue)
1010 --NumOps; // Ignore the flag operand.
1011
1012 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
1013 unsigned Flags = cast<ConstantSDNode>(Op.getOperand(i))->getZExtValue();
1014 unsigned NumVals = InlineAsm::getNumOperandRegisters(Flags);
1015 ++i; // Skip the ID value.
1016
1017 switch (InlineAsm::getKind(Flags)) {
1018 default:
1019 llvm_unreachable("Bad flags!")::llvm::llvm_unreachable_internal("Bad flags!", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1019)
;
1020 case InlineAsm::Kind_RegUse:
1021 case InlineAsm::Kind_Imm:
1022 case InlineAsm::Kind_Mem:
1023 i += NumVals;
1024 break;
1025 case InlineAsm::Kind_Clobber:
1026 case InlineAsm::Kind_RegDef:
1027 case InlineAsm::Kind_RegDefEarlyClobber: {
1028 for (; NumVals; --NumVals, ++i) {
1029 unsigned Reg = cast<RegisterSDNode>(Op.getOperand(i))->getReg();
1030 if (Reg != LR)
1031 continue;
1032 HMFI.setHasClobberLR(true);
1033 return Op;
1034 }
1035 break;
1036 }
1037 }
1038 }
1039
1040 return Op;
1041}
1042
1043// Need to transform ISD::PREFETCH into something that doesn't inherit
1044// all of the properties of ISD::PREFETCH, specifically SDNPMayLoad and
1045// SDNPMayStore.
1046SDValue HexagonTargetLowering::LowerPREFETCH(SDValue Op,
1047 SelectionDAG &DAG) const {
1048 SDValue Chain = Op.getOperand(0);
1049 SDValue Addr = Op.getOperand(1);
1050 // Lower it to DCFETCH($reg, #0). A "pat" will try to merge the offset in,
1051 // if the "reg" is fed by an "add".
1052 SDLoc DL(Op);
1053 SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
1054 return DAG.getNode(HexagonISD::DCFETCH, DL, MVT::Other, Chain, Addr, Zero);
1055}
1056
1057// Custom-handle ISD::READCYCLECOUNTER because the target-independent SDNode
1058// is marked as having side-effects, while the register read on Hexagon does
1059// not have any. TableGen refuses to accept the direct pattern from that node
1060// to the A4_tfrcpp.
1061SDValue HexagonTargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
1062 SelectionDAG &DAG) const {
1063 SDValue Chain = Op.getOperand(0);
1064 SDLoc dl(Op);
1065 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
1066 return DAG.getNode(HexagonISD::READCYCLE, dl, VTs, Chain);
1067}
1068
1069SDValue HexagonTargetLowering::LowerINTRINSIC_VOID(SDValue Op,
1070 SelectionDAG &DAG) const {
1071 SDValue Chain = Op.getOperand(0);
1072 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1073 // Lower the hexagon_prefetch builtin to DCFETCH, as above.
1074 if (IntNo == Intrinsic::hexagon_prefetch) {
1075 SDValue Addr = Op.getOperand(2);
1076 SDLoc DL(Op);
1077 SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
1078 return DAG.getNode(HexagonISD::DCFETCH, DL, MVT::Other, Chain, Addr, Zero);
1079 }
1080 return SDValue();
1081}
1082
1083SDValue
1084HexagonTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
1085 SelectionDAG &DAG) const {
1086 SDValue Chain = Op.getOperand(0);
1087 SDValue Size = Op.getOperand(1);
1088 SDValue Align = Op.getOperand(2);
1089 SDLoc dl(Op);
1090
1091 ConstantSDNode *AlignConst = dyn_cast<ConstantSDNode>(Align);
1092 assert(AlignConst && "Non-constant Align in LowerDYNAMIC_STACKALLOC")(static_cast <bool> (AlignConst && "Non-constant Align in LowerDYNAMIC_STACKALLOC"
) ? void (0) : __assert_fail ("AlignConst && \"Non-constant Align in LowerDYNAMIC_STACKALLOC\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1092, __extension__ __PRETTY_FUNCTION__))
;
1093
1094 unsigned A = AlignConst->getSExtValue();
1095 auto &HFI = *Subtarget.getFrameLowering();
1096 // "Zero" means natural stack alignment.
1097 if (A == 0)
1098 A = HFI.getStackAlignment();
1099
1100 DEBUG({do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { { dbgs () << __func__ << " Align: "
<< A << " Size: "; Size.getNode()->dump(&
DAG); dbgs() << "\n"; }; } } while (false)
1101 dbgs () << __func__ << " Align: " << A << " Size: ";do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { { dbgs () << __func__ << " Align: "
<< A << " Size: "; Size.getNode()->dump(&
DAG); dbgs() << "\n"; }; } } while (false)
1102 Size.getNode()->dump(&DAG);do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { { dbgs () << __func__ << " Align: "
<< A << " Size: "; Size.getNode()->dump(&
DAG); dbgs() << "\n"; }; } } while (false)
1103 dbgs() << "\n";do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { { dbgs () << __func__ << " Align: "
<< A << " Size: "; Size.getNode()->dump(&
DAG); dbgs() << "\n"; }; } } while (false)
1104 })do { if (::llvm::DebugFlag && ::llvm::isCurrentDebugType
("hexagon-lowering")) { { dbgs () << __func__ << " Align: "
<< A << " Size: "; Size.getNode()->dump(&
DAG); dbgs() << "\n"; }; } } while (false)
;
1105
1106 SDValue AC = DAG.getConstant(A, dl, MVT::i32);
1107 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Other);
1108 SDValue AA = DAG.getNode(HexagonISD::ALLOCA, dl, VTs, Chain, Size, AC);
1109
1110 DAG.ReplaceAllUsesOfValueWith(Op, AA);
1111 return AA;
1112}
1113
1114SDValue HexagonTargetLowering::LowerFormalArguments(
1115 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
1116 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl,
1117 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
1118 MachineFunction &MF = DAG.getMachineFunction();
1119 MachineFrameInfo &MFI = MF.getFrameInfo();
1120 MachineRegisterInfo &RegInfo = MF.getRegInfo();
1121 auto &FuncInfo = *MF.getInfo<HexagonMachineFunctionInfo>();
1122
1123 // Assign locations to all of the incoming arguments.
1124 SmallVector<CCValAssign, 16> ArgLocs;
1125 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
1126 *DAG.getContext());
1127
1128 CCInfo.AnalyzeFormalArguments(Ins, CC_Hexagon);
1129
1130 // For LLVM, in the case when returning a struct by value (>8byte),
1131 // the first argument is a pointer that points to the location on caller's
1132 // stack where the return value will be stored. For Hexagon, the location on
1133 // caller's stack is passed only when the struct size is smaller than (and
1134 // equal to) 8 bytes. If not, no address will be passed into callee and
1135 // callee return the result direclty through R0/R1.
1136
1137 SmallVector<SDValue, 8> MemOps;
1138
1139 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1140 CCValAssign &VA = ArgLocs[i];
1141 ISD::ArgFlagsTy Flags = Ins[i].Flags;
1142 unsigned ObjSize;
1143 unsigned StackLocation;
1144 int FI;
1145
1146 if ( (VA.isRegLoc() && !Flags.isByVal())
1147 || (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() > 8)) {
1148 // Arguments passed in registers
1149 // 1. int, long long, ptr args that get allocated in register.
1150 // 2. Large struct that gets an register to put its address in.
1151 EVT RegVT = VA.getLocVT();
1152 if (RegVT == MVT::i8 || RegVT == MVT::i16 ||
1153 RegVT == MVT::i32 || RegVT == MVT::f32) {
1154 unsigned VReg =
1155 RegInfo.createVirtualRegister(&Hexagon::IntRegsRegClass);
1156 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1157 SDValue Copy = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
1158 // Treat values of type MVT::i1 specially: they are passed in
1159 // registers of type i32, but they need to remain as values of
1160 // type i1 for consistency of the argument lowering.
1161 if (VA.getValVT() == MVT::i1) {
1162 // Generate a copy into a predicate register and use the value
1163 // of the register as the "InVal".
1164 unsigned PReg =
1165 RegInfo.createVirtualRegister(&Hexagon::PredRegsRegClass);
1166 SDNode *T = DAG.getMachineNode(Hexagon::C2_tfrrp, dl, MVT::i1,
1167 Copy.getValue(0));
1168 Copy = DAG.getCopyToReg(Copy.getValue(1), dl, PReg, SDValue(T, 0));
1169 Copy = DAG.getCopyFromReg(Copy, dl, PReg, MVT::i1);
1170 }
1171 InVals.push_back(Copy);
1172 Chain = Copy.getValue(1);
1173 } else if (RegVT == MVT::i64 || RegVT == MVT::f64) {
1174 unsigned VReg =
1175 RegInfo.createVirtualRegister(&Hexagon::DoubleRegsRegClass);
1176 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1177 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1178
1179 // Single Vector
1180 } else if ((RegVT == MVT::v8i64 || RegVT == MVT::v16i32 ||
1181 RegVT == MVT::v32i16 || RegVT == MVT::v64i8)) {
1182 unsigned VReg =
1183 RegInfo.createVirtualRegister(&Hexagon::HvxVRRegClass);
1184 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1185 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1186 } else if (Subtarget.useHVX128BOps() &&
1187 ((RegVT == MVT::v16i64 || RegVT == MVT::v32i32 ||
1188 RegVT == MVT::v64i16 || RegVT == MVT::v128i8))) {
1189 unsigned VReg =
1190 RegInfo.createVirtualRegister(&Hexagon::HvxVRRegClass);
1191 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1192 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1193
1194 // Double Vector
1195 } else if ((RegVT == MVT::v16i64 || RegVT == MVT::v32i32 ||
1196 RegVT == MVT::v64i16 || RegVT == MVT::v128i8)) {
1197 unsigned VReg =
1198 RegInfo.createVirtualRegister(&Hexagon::HvxWRRegClass);
1199 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1200 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1201 } else if (Subtarget.useHVX128BOps() &&
1202 ((RegVT == MVT::v32i64 || RegVT == MVT::v64i32 ||
1203 RegVT == MVT::v128i16 || RegVT == MVT::v256i8))) {
1204 unsigned VReg =
1205 RegInfo.createVirtualRegister(&Hexagon::HvxWRRegClass);
1206 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1207 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1208 } else if (RegVT == MVT::v512i1 || RegVT == MVT::v1024i1) {
1209 assert(0 && "need to support VecPred regs")(static_cast <bool> (0 && "need to support VecPred regs"
) ? void (0) : __assert_fail ("0 && \"need to support VecPred regs\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1209, __extension__ __PRETTY_FUNCTION__))
;
1210 unsigned VReg =
1211 RegInfo.createVirtualRegister(&Hexagon::HvxQRRegClass);
1212 RegInfo.addLiveIn(VA.getLocReg(), VReg);
1213 InVals.push_back(DAG.getCopyFromReg(Chain, dl, VReg, RegVT));
1214 } else {
1215 assert (0)(static_cast <bool> (0) ? void (0) : __assert_fail ("0"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1215, __extension__ __PRETTY_FUNCTION__))
;
1216 }
1217 } else if (VA.isRegLoc() && Flags.isByVal() && Flags.getByValSize() <= 8) {
1218 assert (0 && "ByValSize must be bigger than 8 bytes")(static_cast <bool> (0 && "ByValSize must be bigger than 8 bytes"
) ? void (0) : __assert_fail ("0 && \"ByValSize must be bigger than 8 bytes\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1218, __extension__ __PRETTY_FUNCTION__))
;
1219 } else {
1220 // Sanity check.
1221 assert(VA.isMemLoc())(static_cast <bool> (VA.isMemLoc()) ? void (0) : __assert_fail
("VA.isMemLoc()", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1221, __extension__ __PRETTY_FUNCTION__))
;
1222
1223 if (Flags.isByVal()) {
1224 // If it's a byval parameter, then we need to compute the
1225 // "real" size, not the size of the pointer.
1226 ObjSize = Flags.getByValSize();
1227 } else {
1228 ObjSize = VA.getLocVT().getStoreSizeInBits() >> 3;
1229 }
1230
1231 StackLocation = HEXAGON_LRFP_SIZE8 + VA.getLocMemOffset();
1232 // Create the frame index object for this incoming parameter...
1233 FI = MFI.CreateFixedObject(ObjSize, StackLocation, true);
1234
1235 // Create the SelectionDAG nodes cordl, responding to a load
1236 // from this parameter.
1237 SDValue FIN = DAG.getFrameIndex(FI, MVT::i32);
1238
1239 if (Flags.isByVal()) {
1240 // If it's a pass-by-value aggregate, then do not dereference the stack
1241 // location. Instead, we should generate a reference to the stack
1242 // location.
1243 InVals.push_back(FIN);
1244 } else {
1245 InVals.push_back(
1246 DAG.getLoad(VA.getValVT(), dl, Chain, FIN, MachinePointerInfo()));
1247 }
1248 }
1249 }
1250
1251 if (!MemOps.empty())
1252 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
1253
1254 if (isVarArg) {
1255 // This will point to the next argument passed via stack.
1256 int FrameIndex = MFI.CreateFixedObject(Hexagon_PointerSize(4),
1257 HEXAGON_LRFP_SIZE8 +
1258 CCInfo.getNextStackOffset(),
1259 true);
1260 FuncInfo.setVarArgsFrameIndex(FrameIndex);
1261 }
1262
1263 return Chain;
1264}
1265
1266SDValue
1267HexagonTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
1268 // VASTART stores the address of the VarArgsFrameIndex slot into the
1269 // memory location argument.
1270 MachineFunction &MF = DAG.getMachineFunction();
1271 HexagonMachineFunctionInfo *QFI = MF.getInfo<HexagonMachineFunctionInfo>();
1272 SDValue Addr = DAG.getFrameIndex(QFI->getVarArgsFrameIndex(), MVT::i32);
1273 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
1274 return DAG.getStore(Op.getOperand(0), SDLoc(Op), Addr, Op.getOperand(1),
1275 MachinePointerInfo(SV));
1276}
1277
1278static bool isSExtFree(SDValue N) {
1279 // A sign-extend of a truncate of a sign-extend is free.
1280 if (N.getOpcode() == ISD::TRUNCATE &&
1281 N.getOperand(0).getOpcode() == ISD::AssertSext)
1282 return true;
1283 // We have sign-extended loads.
1284 if (N.getOpcode() == ISD::LOAD)
1285 return true;
1286 return false;
1287}
1288
1289SDValue HexagonTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
1290 SDLoc dl(Op);
1291
1292 SDValue LHS = Op.getOperand(0);
1293 SDValue RHS = Op.getOperand(1);
1294 SDValue Cmp = Op.getOperand(2);
1295 ISD::CondCode CC = cast<CondCodeSDNode>(Cmp)->get();
1296
1297 EVT VT = Op.getValueType();
1298 EVT LHSVT = LHS.getValueType();
1299 EVT RHSVT = RHS.getValueType();
1300
1301 if (LHSVT == MVT::v2i16) {
1302 assert(ISD::isSignedIntSetCC(CC) || ISD::isUnsignedIntSetCC(CC))(static_cast <bool> (ISD::isSignedIntSetCC(CC) || ISD::
isUnsignedIntSetCC(CC)) ? void (0) : __assert_fail ("ISD::isSignedIntSetCC(CC) || ISD::isUnsignedIntSetCC(CC)"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1302, __extension__ __PRETTY_FUNCTION__))
;
1303 unsigned ExtOpc = ISD::isSignedIntSetCC(CC) ? ISD::SIGN_EXTEND
1304 : ISD::ZERO_EXTEND;
1305 SDValue LX = DAG.getNode(ExtOpc, dl, MVT::v2i32, LHS);
1306 SDValue RX = DAG.getNode(ExtOpc, dl, MVT::v2i32, RHS);
1307 SDValue SC = DAG.getNode(ISD::SETCC, dl, MVT::v2i1, LX, RX, Cmp);
1308 return SC;
1309 }
1310
1311 // Treat all other vector types as legal.
1312 if (VT.isVector())
1313 return Op;
1314
1315 // Equals and not equals should use sign-extend, not zero-extend, since
1316 // we can represent small negative values in the compare instructions.
1317 // The LLVM default is to use zero-extend arbitrarily in these cases.
1318 if ((CC == ISD::SETEQ || CC == ISD::SETNE) &&
1319 (RHSVT == MVT::i8 || RHSVT == MVT::i16) &&
1320 (LHSVT == MVT::i8 || LHSVT == MVT::i16)) {
1321 ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS);
1322 if (C && C->getAPIntValue().isNegative()) {
1323 LHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, LHS);
1324 RHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, RHS);
1325 return DAG.getNode(ISD::SETCC, dl, Op.getValueType(),
1326 LHS, RHS, Op.getOperand(2));
1327 }
1328 if (isSExtFree(LHS) || isSExtFree(RHS)) {
1329 LHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, LHS);
1330 RHS = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i32, RHS);
1331 return DAG.getNode(ISD::SETCC, dl, Op.getValueType(),
1332 LHS, RHS, Op.getOperand(2));
1333 }
1334 }
1335 return SDValue();
1336}
1337
1338SDValue
1339HexagonTargetLowering::LowerVSELECT(SDValue Op, SelectionDAG &DAG) const {
1340 SDValue PredOp = Op.getOperand(0);
1341 SDValue Op1 = Op.getOperand(1), Op2 = Op.getOperand(2);
1342 EVT OpVT = Op1.getValueType();
1343 SDLoc DL(Op);
1344
1345 if (OpVT == MVT::v2i16) {
1346 SDValue X1 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v2i32, Op1);
1347 SDValue X2 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v2i32, Op2);
1348 SDValue SL = DAG.getNode(ISD::VSELECT, DL, MVT::v2i32, PredOp, X1, X2);
1349 SDValue TR = DAG.getNode(ISD::TRUNCATE, DL, MVT::v2i16, SL);
1350 return TR;
1351 }
1352
1353 return SDValue();
1354}
1355
1356static Constant *convert_i1_to_i8(const Constant *ConstVal) {
1357 SmallVector<Constant *, 128> NewConst;
1358 const ConstantVector *CV = dyn_cast<ConstantVector>(ConstVal);
1359 if (!CV)
1360 return nullptr;
1361
1362 LLVMContext &Ctx = ConstVal->getContext();
1363 IRBuilder<> IRB(Ctx);
1364 unsigned NumVectorElements = CV->getNumOperands();
1365 assert(isPowerOf2_32(NumVectorElements) &&(static_cast <bool> (isPowerOf2_32(NumVectorElements) &&
"conversion only supported for pow2 VectorSize!") ? void (0)
: __assert_fail ("isPowerOf2_32(NumVectorElements) && \"conversion only supported for pow2 VectorSize!\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1366, __extension__ __PRETTY_FUNCTION__))
1366 "conversion only supported for pow2 VectorSize!")(static_cast <bool> (isPowerOf2_32(NumVectorElements) &&
"conversion only supported for pow2 VectorSize!") ? void (0)
: __assert_fail ("isPowerOf2_32(NumVectorElements) && \"conversion only supported for pow2 VectorSize!\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1366, __extension__ __PRETTY_FUNCTION__))
;
1367
1368 for (unsigned i = 0; i < NumVectorElements / 8; ++i) {
1369 uint8_t x = 0;
1370 for (unsigned j = 0; j < 8; ++j) {
1371 uint8_t y = CV->getOperand(i * 8 + j)->getUniqueInteger().getZExtValue();
1372 x |= y << (7 - j);
1373 }
1374 assert((x == 0 || x == 255) && "Either all 0's or all 1's expected!")(static_cast <bool> ((x == 0 || x == 255) && "Either all 0's or all 1's expected!"
) ? void (0) : __assert_fail ("(x == 0 || x == 255) && \"Either all 0's or all 1's expected!\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1374, __extension__ __PRETTY_FUNCTION__))
;
1375 NewConst.push_back(IRB.getInt8(x));
1376 }
1377 return ConstantVector::get(NewConst);
1378}
1379
1380SDValue
1381HexagonTargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
1382 EVT ValTy = Op.getValueType();
1383 ConstantPoolSDNode *CPN = cast<ConstantPoolSDNode>(Op);
1384 Constant *CVal = nullptr;
1385 bool isVTi1Type = false;
1386 if (const Constant *ConstVal = dyn_cast<Constant>(CPN->getConstVal())) {
1387 Type *CValTy = ConstVal->getType();
1388 if (CValTy->isVectorTy() &&
1389 CValTy->getVectorElementType()->isIntegerTy(1)) {
1390 CVal = convert_i1_to_i8(ConstVal);
1391 isVTi1Type = (CVal != nullptr);
1392 }
1393 }
1394 unsigned Align = CPN->getAlignment();
1395 bool IsPositionIndependent = isPositionIndependent();
1396 unsigned char TF = IsPositionIndependent ? HexagonII::MO_PCREL : 0;
1397
1398 unsigned Offset = 0;
1399 SDValue T;
1400 if (CPN->isMachineConstantPoolEntry())
1401 T = DAG.getTargetConstantPool(CPN->getMachineCPVal(), ValTy, Align, Offset,
1402 TF);
1403 else if (isVTi1Type)
1404 T = DAG.getTargetConstantPool(CVal, ValTy, Align, Offset, TF);
1405 else
1406 T = DAG.getTargetConstantPool(CPN->getConstVal(), ValTy, Align, Offset,
1407 TF);
1408
1409 assert(cast<ConstantPoolSDNode>(T)->getTargetFlags() == TF &&(static_cast <bool> (cast<ConstantPoolSDNode>(T)->
getTargetFlags() == TF && "Inconsistent target flag encountered"
) ? void (0) : __assert_fail ("cast<ConstantPoolSDNode>(T)->getTargetFlags() == TF && \"Inconsistent target flag encountered\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1410, __extension__ __PRETTY_FUNCTION__))
1410 "Inconsistent target flag encountered")(static_cast <bool> (cast<ConstantPoolSDNode>(T)->
getTargetFlags() == TF && "Inconsistent target flag encountered"
) ? void (0) : __assert_fail ("cast<ConstantPoolSDNode>(T)->getTargetFlags() == TF && \"Inconsistent target flag encountered\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1410, __extension__ __PRETTY_FUNCTION__))
;
1411
1412 if (IsPositionIndependent)
1413 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), ValTy, T);
1414 return DAG.getNode(HexagonISD::CP, SDLoc(Op), ValTy, T);
1415}
1416
1417SDValue
1418HexagonTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
1419 EVT VT = Op.getValueType();
1420 int Idx = cast<JumpTableSDNode>(Op)->getIndex();
1421 if (isPositionIndependent()) {
1422 SDValue T = DAG.getTargetJumpTable(Idx, VT, HexagonII::MO_PCREL);
1423 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), VT, T);
1424 }
1425
1426 SDValue T = DAG.getTargetJumpTable(Idx, VT);
1427 return DAG.getNode(HexagonISD::JT, SDLoc(Op), VT, T);
1428}
1429
1430SDValue
1431HexagonTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const {
1432 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
1433 MachineFunction &MF = DAG.getMachineFunction();
1434 MachineFrameInfo &MFI = MF.getFrameInfo();
1435 MFI.setReturnAddressIsTaken(true);
1436
1437 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
1438 return SDValue();
1439
1440 EVT VT = Op.getValueType();
1441 SDLoc dl(Op);
1442 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1443 if (Depth) {
1444 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
1445 SDValue Offset = DAG.getConstant(4, dl, MVT::i32);
1446 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
1447 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
1448 MachinePointerInfo());
1449 }
1450
1451 // Return LR, which contains the return address. Mark it an implicit live-in.
1452 unsigned Reg = MF.addLiveIn(HRI.getRARegister(), getRegClassFor(MVT::i32));
1453 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
1454}
1455
1456SDValue
1457HexagonTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
1458 const HexagonRegisterInfo &HRI = *Subtarget.getRegisterInfo();
1459 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo();
1460 MFI.setFrameAddressIsTaken(true);
1461
1462 EVT VT = Op.getValueType();
1463 SDLoc dl(Op);
1464 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
1465 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
1466 HRI.getFrameRegister(), VT);
1467 while (Depth--)
1468 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
1469 MachinePointerInfo());
1470 return FrameAddr;
1471}
1472
1473SDValue
1474HexagonTargetLowering::LowerATOMIC_FENCE(SDValue Op, SelectionDAG& DAG) const {
1475 SDLoc dl(Op);
1476 return DAG.getNode(HexagonISD::BARRIER, dl, MVT::Other, Op.getOperand(0));
1477}
1478
1479SDValue
1480HexagonTargetLowering::LowerGLOBALADDRESS(SDValue Op, SelectionDAG &DAG) const {
1481 SDLoc dl(Op);
1482 auto *GAN = cast<GlobalAddressSDNode>(Op);
1483 auto PtrVT = getPointerTy(DAG.getDataLayout());
1484 auto *GV = GAN->getGlobal();
1485 int64_t Offset = GAN->getOffset();
1486
1487 auto &HLOF = *HTM.getObjFileLowering();
1488 Reloc::Model RM = HTM.getRelocationModel();
1489
1490 if (RM == Reloc::Static) {
1491 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset);
1492 const GlobalObject *GO = GV->getBaseObject();
1493 if (GO && HLOF.isGlobalInSmallSection(GO, HTM))
1494 return DAG.getNode(HexagonISD::CONST32_GP, dl, PtrVT, GA);
1495 return DAG.getNode(HexagonISD::CONST32, dl, PtrVT, GA);
1496 }
1497
1498 bool UsePCRel = getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV);
1499 if (UsePCRel) {
1500 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, Offset,
1501 HexagonII::MO_PCREL);
1502 return DAG.getNode(HexagonISD::AT_PCREL, dl, PtrVT, GA);
1503 }
1504
1505 // Use GOT index.
1506 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
1507 SDValue GA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, HexagonII::MO_GOT);
1508 SDValue Off = DAG.getConstant(Offset, dl, MVT::i32);
1509 return DAG.getNode(HexagonISD::AT_GOT, dl, PtrVT, GOT, GA, Off);
1510}
1511
1512// Specifies that for loads and stores VT can be promoted to PromotedLdStVT.
1513SDValue
1514HexagonTargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
1515 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
1516 SDLoc dl(Op);
1517 EVT PtrVT = getPointerTy(DAG.getDataLayout());
1518
1519 Reloc::Model RM = HTM.getRelocationModel();
1520 if (RM == Reloc::Static) {
1521 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT);
1522 return DAG.getNode(HexagonISD::CONST32_GP, dl, PtrVT, A);
1523 }
1524
1525 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT, 0, HexagonII::MO_PCREL);
1526 return DAG.getNode(HexagonISD::AT_PCREL, dl, PtrVT, A);
1527}
1528
1529SDValue
1530HexagonTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op, SelectionDAG &DAG)
1531 const {
1532 EVT PtrVT = getPointerTy(DAG.getDataLayout());
1533 SDValue GOTSym = DAG.getTargetExternalSymbol(HEXAGON_GOT_SYM_NAME"_GLOBAL_OFFSET_TABLE_", PtrVT,
1534 HexagonII::MO_PCREL);
1535 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Op), PtrVT, GOTSym);
1536}
1537
1538SDValue
1539HexagonTargetLowering::GetDynamicTLSAddr(SelectionDAG &DAG, SDValue Chain,
1540 GlobalAddressSDNode *GA, SDValue Glue, EVT PtrVT, unsigned ReturnReg,
1541 unsigned char OperandFlags) const {
1542 MachineFunction &MF = DAG.getMachineFunction();
1543 MachineFrameInfo &MFI = MF.getFrameInfo();
1544 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1545 SDLoc dl(GA);
1546 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
1547 GA->getValueType(0),
1548 GA->getOffset(),
1549 OperandFlags);
1550 // Create Operands for the call.The Operands should have the following:
1551 // 1. Chain SDValue
1552 // 2. Callee which in this case is the Global address value.
1553 // 3. Registers live into the call.In this case its R0, as we
1554 // have just one argument to be passed.
1555 // 4. Glue.
1556 // Note: The order is important.
1557
1558 const auto &HRI = *Subtarget.getRegisterInfo();
1559 const uint32_t *Mask = HRI.getCallPreservedMask(MF, CallingConv::C);
1560 assert(Mask && "Missing call preserved mask for calling convention")(static_cast <bool> (Mask && "Missing call preserved mask for calling convention"
) ? void (0) : __assert_fail ("Mask && \"Missing call preserved mask for calling convention\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1560, __extension__ __PRETTY_FUNCTION__))
;
1561 SDValue Ops[] = { Chain, TGA, DAG.getRegister(Hexagon::R0, PtrVT),
1562 DAG.getRegisterMask(Mask), Glue };
1563 Chain = DAG.getNode(HexagonISD::CALL, dl, NodeTys, Ops);
1564
1565 // Inform MFI that function has calls.
1566 MFI.setAdjustsStack(true);
1567
1568 Glue = Chain.getValue(1);
1569 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Glue);
1570}
1571
1572//
1573// Lower using the intial executable model for TLS addresses
1574//
1575SDValue
1576HexagonTargetLowering::LowerToTLSInitialExecModel(GlobalAddressSDNode *GA,
1577 SelectionDAG &DAG) const {
1578 SDLoc dl(GA);
1579 int64_t Offset = GA->getOffset();
1580 auto PtrVT = getPointerTy(DAG.getDataLayout());
1581
1582 // Get the thread pointer.
1583 SDValue TP = DAG.getCopyFromReg(DAG.getEntryNode(), dl, Hexagon::UGP, PtrVT);
1584
1585 bool IsPositionIndependent = isPositionIndependent();
1586 unsigned char TF =
1587 IsPositionIndependent ? HexagonII::MO_IEGOT : HexagonII::MO_IE;
1588
1589 // First generate the TLS symbol address
1590 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, PtrVT,
1591 Offset, TF);
1592
1593 SDValue Sym = DAG.getNode(HexagonISD::CONST32, dl, PtrVT, TGA);
1594
1595 if (IsPositionIndependent) {
1596 // Generate the GOT pointer in case of position independent code
1597 SDValue GOT = LowerGLOBAL_OFFSET_TABLE(Sym, DAG);
1598
1599 // Add the TLS Symbol address to GOT pointer.This gives
1600 // GOT relative relocation for the symbol.
1601 Sym = DAG.getNode(ISD::ADD, dl, PtrVT, GOT, Sym);
1602 }
1603
1604 // Load the offset value for TLS symbol.This offset is relative to
1605 // thread pointer.
1606 SDValue LoadOffset =
1607 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Sym, MachinePointerInfo());
1608
1609 // Address of the thread local variable is the add of thread
1610 // pointer and the offset of the variable.
1611 return DAG.getNode(ISD::ADD, dl, PtrVT, TP, LoadOffset);
1612}
1613
1614//
1615// Lower using the local executable model for TLS addresses
1616//
1617SDValue
1618HexagonTargetLowering::LowerToTLSLocalExecModel(GlobalAddressSDNode *GA,
1619 SelectionDAG &DAG) const {
1620 SDLoc dl(GA);
1621 int64_t Offset = GA->getOffset();
1622 auto PtrVT = getPointerTy(DAG.getDataLayout());
1623
1624 // Get the thread pointer.
1625 SDValue TP = DAG.getCopyFromReg(DAG.getEntryNode(), dl, Hexagon::UGP, PtrVT);
1626 // Generate the TLS symbol address
1627 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, PtrVT, Offset,
1628 HexagonII::MO_TPREL);
1629 SDValue Sym = DAG.getNode(HexagonISD::CONST32, dl, PtrVT, TGA);
1630
1631 // Address of the thread local variable is the add of thread
1632 // pointer and the offset of the variable.
1633 return DAG.getNode(ISD::ADD, dl, PtrVT, TP, Sym);
1634}
1635
1636//
1637// Lower using the general dynamic model for TLS addresses
1638//
1639SDValue
1640HexagonTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
1641 SelectionDAG &DAG) const {
1642 SDLoc dl(GA);
1643 int64_t Offset = GA->getOffset();
1644 auto PtrVT = getPointerTy(DAG.getDataLayout());
1645
1646 // First generate the TLS symbol address
1647 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl, PtrVT, Offset,
1648 HexagonII::MO_GDGOT);
1649
1650 // Then, generate the GOT pointer
1651 SDValue GOT = LowerGLOBAL_OFFSET_TABLE(TGA, DAG);
1652
1653 // Add the TLS symbol and the GOT pointer
1654 SDValue Sym = DAG.getNode(HexagonISD::CONST32, dl, PtrVT, TGA);
1655 SDValue Chain = DAG.getNode(ISD::ADD, dl, PtrVT, GOT, Sym);
1656
1657 // Copy over the argument to R0
1658 SDValue InFlag;
1659 Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, Hexagon::R0, Chain, InFlag);
1660 InFlag = Chain.getValue(1);
1661
1662 unsigned Flags =
1663 static_cast<const HexagonSubtarget &>(DAG.getSubtarget()).useLongCalls()
1664 ? HexagonII::MO_GDPLT | HexagonII::HMOTF_ConstExtended
1665 : HexagonII::MO_GDPLT;
1666
1667 return GetDynamicTLSAddr(DAG, Chain, GA, InFlag, PtrVT,
1668 Hexagon::R0, Flags);
1669}
1670
1671//
1672// Lower TLS addresses.
1673//
1674// For now for dynamic models, we only support the general dynamic model.
1675//
1676SDValue
1677HexagonTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1678 SelectionDAG &DAG) const {
1679 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
1680
1681 switch (HTM.getTLSModel(GA->getGlobal())) {
1682 case TLSModel::GeneralDynamic:
1683 case TLSModel::LocalDynamic:
1684 return LowerToTLSGeneralDynamicModel(GA, DAG);
1685 case TLSModel::InitialExec:
1686 return LowerToTLSInitialExecModel(GA, DAG);
1687 case TLSModel::LocalExec:
1688 return LowerToTLSLocalExecModel(GA, DAG);
1689 }
1690 llvm_unreachable("Bogus TLS model")::llvm::llvm_unreachable_internal("Bogus TLS model", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 1690)
;
1691}
1692
1693//===----------------------------------------------------------------------===//
1694// TargetLowering Implementation
1695//===----------------------------------------------------------------------===//
1696
1697HexagonTargetLowering::HexagonTargetLowering(const TargetMachine &TM,
1698 const HexagonSubtarget &ST)
1699 : TargetLowering(TM), HTM(static_cast<const HexagonTargetMachine&>(TM)),
1700 Subtarget(ST) {
1701 bool IsV4 = !Subtarget.hasV5TOps();
1702 auto &HRI = *Subtarget.getRegisterInfo();
1703
1704 setPrefLoopAlignment(4);
1705 setPrefFunctionAlignment(4);
1706 setMinFunctionAlignment(2);
1707 setStackPointerRegisterToSaveRestore(HRI.getStackRegister());
1708
1709 setMaxAtomicSizeInBitsSupported(64);
1710 setMinCmpXchgSizeInBits(32);
1711
1712 if (EnableHexSDNodeSched)
1713 setSchedulingPreference(Sched::VLIW);
1714 else
1715 setSchedulingPreference(Sched::Source);
1716
1717 // Limits for inline expansion of memcpy/memmove
1718 MaxStoresPerMemcpy = MaxStoresPerMemcpyCL;
1719 MaxStoresPerMemcpyOptSize = MaxStoresPerMemcpyOptSizeCL;
1720 MaxStoresPerMemmove = MaxStoresPerMemmoveCL;
1721 MaxStoresPerMemmoveOptSize = MaxStoresPerMemmoveOptSizeCL;
1722 MaxStoresPerMemset = MaxStoresPerMemsetCL;
1723 MaxStoresPerMemsetOptSize = MaxStoresPerMemsetOptSizeCL;
1724
1725 //
1726 // Set up register classes.
1727 //
1728
1729 addRegisterClass(MVT::i1, &Hexagon::PredRegsRegClass);
1730 addRegisterClass(MVT::v2i1, &Hexagon::PredRegsRegClass); // bbbbaaaa
1731 addRegisterClass(MVT::v4i1, &Hexagon::PredRegsRegClass); // ddccbbaa
1732 addRegisterClass(MVT::v8i1, &Hexagon::PredRegsRegClass); // hgfedcba
1733 addRegisterClass(MVT::i32, &Hexagon::IntRegsRegClass);
1734 addRegisterClass(MVT::v4i8, &Hexagon::IntRegsRegClass);
1735 addRegisterClass(MVT::v2i16, &Hexagon::IntRegsRegClass);
1736 addRegisterClass(MVT::i64, &Hexagon::DoubleRegsRegClass);
1737 addRegisterClass(MVT::v8i8, &Hexagon::DoubleRegsRegClass);
1738 addRegisterClass(MVT::v4i16, &Hexagon::DoubleRegsRegClass);
1739 addRegisterClass(MVT::v2i32, &Hexagon::DoubleRegsRegClass);
1740
1741 if (Subtarget.hasV5TOps()) {
1742 addRegisterClass(MVT::f32, &Hexagon::IntRegsRegClass);
1743 addRegisterClass(MVT::f64, &Hexagon::DoubleRegsRegClass);
1744 }
1745
1746 if (Subtarget.hasV60TOps()) {
1747 if (Subtarget.useHVX64BOps()) {
1748 addRegisterClass(MVT::v64i8, &Hexagon::HvxVRRegClass);
1749 addRegisterClass(MVT::v32i16, &Hexagon::HvxVRRegClass);
1750 addRegisterClass(MVT::v16i32, &Hexagon::HvxVRRegClass);
1751 addRegisterClass(MVT::v8i64, &Hexagon::HvxVRRegClass);
1752 addRegisterClass(MVT::v128i8, &Hexagon::HvxWRRegClass);
1753 addRegisterClass(MVT::v64i16, &Hexagon::HvxWRRegClass);
1754 addRegisterClass(MVT::v32i32, &Hexagon::HvxWRRegClass);
1755 addRegisterClass(MVT::v16i64, &Hexagon::HvxWRRegClass);
1756 addRegisterClass(MVT::v512i1, &Hexagon::HvxQRRegClass);
1757 } else if (Subtarget.useHVX128BOps()) {
1758 addRegisterClass(MVT::v128i8, &Hexagon::HvxVRRegClass);
1759 addRegisterClass(MVT::v64i16, &Hexagon::HvxVRRegClass);
1760 addRegisterClass(MVT::v32i32, &Hexagon::HvxVRRegClass);
1761 addRegisterClass(MVT::v16i64, &Hexagon::HvxVRRegClass);
1762 addRegisterClass(MVT::v256i8, &Hexagon::HvxWRRegClass);
1763 addRegisterClass(MVT::v128i16, &Hexagon::HvxWRRegClass);
1764 addRegisterClass(MVT::v64i32, &Hexagon::HvxWRRegClass);
1765 addRegisterClass(MVT::v32i64, &Hexagon::HvxWRRegClass);
1766 addRegisterClass(MVT::v1024i1, &Hexagon::HvxQRRegClass);
1767 }
1768 }
1769
1770 //
1771 // Handling of scalar operations.
1772 //
1773 // All operations default to "legal", except:
1774 // - indexed loads and stores (pre-/post-incremented),
1775 // - ANY_EXTEND_VECTOR_INREG, ATOMIC_CMP_SWAP_WITH_SUCCESS, CONCAT_VECTORS,
1776 // ConstantFP, DEBUGTRAP, FCEIL, FCOPYSIGN, FEXP, FEXP2, FFLOOR, FGETSIGN,
1777 // FLOG, FLOG2, FLOG10, FMAXNUM, FMINNUM, FNEARBYINT, FRINT, FROUND, TRAP,
1778 // FTRUNC, PREFETCH, SIGN_EXTEND_VECTOR_INREG, ZERO_EXTEND_VECTOR_INREG,
1779 // which default to "expand" for at least one type.
1780
1781 // Misc operations.
1782 setOperationAction(ISD::ConstantFP, MVT::f32, Legal); // Default: expand
1783 setOperationAction(ISD::ConstantFP, MVT::f64, Legal); // Default: expand
1784
1785 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
1786 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
1787 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
1788 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
1789 setOperationAction(ISD::INLINEASM, MVT::Other, Custom);
1790 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
1791 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
1792 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1793 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom);
1794 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
1795 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
1796 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
1797
1798 // Custom legalize GlobalAddress nodes into CONST32.
1799 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
1800 setOperationAction(ISD::GlobalAddress, MVT::i8, Custom);
1801 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
1802
1803 // Hexagon needs to optimize cases with negative constants.
1804 setOperationAction(ISD::SETCC, MVT::i8, Custom);
1805 setOperationAction(ISD::SETCC, MVT::i16, Custom);
1806
1807 // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
1808 setOperationAction(ISD::VASTART, MVT::Other, Custom);
1809 setOperationAction(ISD::VAEND, MVT::Other, Expand);
1810 setOperationAction(ISD::VAARG, MVT::Other, Expand);
1811
1812 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
1813 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
1814 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
1815
1816 if (EmitJumpTables)
1817 setMinimumJumpTableEntries(MinimumJumpTables);
1818 else
1819 setMinimumJumpTableEntries(std::numeric_limits<int>::max());
1820 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
1821
1822 // Hexagon has instructions for add/sub with carry. The problem with
1823 // modeling these instructions is that they produce 2 results: Rdd and Px.
1824 // To model the update of Px, we will have to use Defs[p0..p3] which will
1825 // cause any predicate live range to spill. So, we pretend we dont't have
1826 // these instructions.
1827 setOperationAction(ISD::ADDE, MVT::i8, Expand);
1828 setOperationAction(ISD::ADDE, MVT::i16, Expand);
1829 setOperationAction(ISD::ADDE, MVT::i32, Expand);
1830 setOperationAction(ISD::ADDE, MVT::i64, Expand);
1831 setOperationAction(ISD::SUBE, MVT::i8, Expand);
1832 setOperationAction(ISD::SUBE, MVT::i16, Expand);
1833 setOperationAction(ISD::SUBE, MVT::i32, Expand);
1834 setOperationAction(ISD::SUBE, MVT::i64, Expand);
1835 setOperationAction(ISD::ADDC, MVT::i8, Expand);
1836 setOperationAction(ISD::ADDC, MVT::i16, Expand);
1837 setOperationAction(ISD::ADDC, MVT::i32, Expand);
1838 setOperationAction(ISD::ADDC, MVT::i64, Expand);
1839 setOperationAction(ISD::SUBC, MVT::i8, Expand);
1840 setOperationAction(ISD::SUBC, MVT::i16, Expand);
1841 setOperationAction(ISD::SUBC, MVT::i32, Expand);
1842 setOperationAction(ISD::SUBC, MVT::i64, Expand);
1843
1844 // Only add and sub that detect overflow are the saturating ones.
1845 for (MVT VT : MVT::integer_valuetypes()) {
1846 setOperationAction(ISD::UADDO, VT, Expand);
1847 setOperationAction(ISD::SADDO, VT, Expand);
1848 setOperationAction(ISD::USUBO, VT, Expand);
1849 setOperationAction(ISD::SSUBO, VT, Expand);
1850 }
1851
1852 setOperationAction(ISD::CTLZ, MVT::i8, Promote);
1853 setOperationAction(ISD::CTLZ, MVT::i16, Promote);
1854 setOperationAction(ISD::CTTZ, MVT::i8, Promote);
1855 setOperationAction(ISD::CTTZ, MVT::i16, Promote);
1856
1857 // In V5, popcount can count # of 1s in i64 but returns i32.
1858 // On V4 it will be expanded (set later).
1859 setOperationAction(ISD::CTPOP, MVT::i8, Promote);
1860 setOperationAction(ISD::CTPOP, MVT::i16, Promote);
1861 setOperationAction(ISD::CTPOP, MVT::i32, Promote);
1862 setOperationAction(ISD::CTPOP, MVT::i64, Legal);
1863
1864 setOperationAction(ISD::BITREVERSE, MVT::i32, Legal);
1865 setOperationAction(ISD::BITREVERSE, MVT::i64, Legal);
1866 setOperationAction(ISD::BSWAP, MVT::i32, Legal);
1867 setOperationAction(ISD::BSWAP, MVT::i64, Legal);
1868 setOperationAction(ISD::MUL, MVT::i64, Legal);
1869
1870 for (unsigned IntExpOp :
1871 { ISD::SDIV, ISD::UDIV, ISD::SREM, ISD::UREM,
1872 ISD::SDIVREM, ISD::UDIVREM, ISD::ROTL, ISD::ROTR,
1873 ISD::SHL_PARTS, ISD::SRA_PARTS, ISD::SRL_PARTS,
1874 ISD::SMUL_LOHI, ISD::UMUL_LOHI }) {
1875 setOperationAction(IntExpOp, MVT::i32, Expand);
1876 setOperationAction(IntExpOp, MVT::i64, Expand);
1877 }
1878
1879 for (unsigned FPExpOp :
1880 {ISD::FDIV, ISD::FREM, ISD::FSQRT, ISD::FSIN, ISD::FCOS, ISD::FSINCOS,
1881 ISD::FPOW, ISD::FCOPYSIGN}) {
1882 setOperationAction(FPExpOp, MVT::f32, Expand);
1883 setOperationAction(FPExpOp, MVT::f64, Expand);
1884 }
1885
1886 // No extending loads from i32.
1887 for (MVT VT : MVT::integer_valuetypes()) {
1888 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i32, Expand);
1889 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i32, Expand);
1890 setLoadExtAction(ISD::EXTLOAD, VT, MVT::i32, Expand);
1891 }
1892 // Turn FP truncstore into trunc + store.
1893 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1894 // Turn FP extload into load/fpextend.
1895 for (MVT VT : MVT::fp_valuetypes())
1896 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
1897
1898 // Expand BR_CC and SELECT_CC for all integer and fp types.
1899 for (MVT VT : MVT::integer_valuetypes()) {
1900 setOperationAction(ISD::BR_CC, VT, Expand);
1901 setOperationAction(ISD::SELECT_CC, VT, Expand);
1902 }
1903 for (MVT VT : MVT::fp_valuetypes()) {
1904 setOperationAction(ISD::BR_CC, VT, Expand);
1905 setOperationAction(ISD::SELECT_CC, VT, Expand);
1906 }
1907 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
1908
1909 //
1910 // Handling of vector operations.
1911 //
1912
1913 promoteLdStType(MVT::v4i8, MVT::i32);
1914 promoteLdStType(MVT::v2i16, MVT::i32);
1915 promoteLdStType(MVT::v8i8, MVT::i64);
1916 promoteLdStType(MVT::v4i16, MVT::i64);
1917 promoteLdStType(MVT::v2i32, MVT::i64);
1918
1919 // Set the action for vector operations to "expand", then override it with
1920 // either "custom" or "legal" for specific cases.
1921 static const unsigned VectExpOps[] = {
1922 // Integer arithmetic:
1923 ISD::ADD, ISD::SUB, ISD::MUL, ISD::SDIV, ISD::UDIV,
1924 ISD::SREM, ISD::UREM, ISD::SDIVREM, ISD::UDIVREM, ISD::ADDC,
1925 ISD::SUBC, ISD::SADDO, ISD::UADDO, ISD::SSUBO, ISD::USUBO,
1926 ISD::SMUL_LOHI, ISD::UMUL_LOHI,
1927 // Logical/bit:
1928 ISD::AND, ISD::OR, ISD::XOR, ISD::ROTL, ISD::ROTR,
1929 ISD::CTPOP, ISD::CTLZ, ISD::CTTZ,
1930 // Floating point arithmetic/math functions:
1931 ISD::FADD, ISD::FSUB, ISD::FMUL, ISD::FMA, ISD::FDIV,
1932 ISD::FREM, ISD::FNEG, ISD::FABS, ISD::FSQRT, ISD::FSIN,
1933 ISD::FCOS, ISD::FPOW, ISD::FLOG, ISD::FLOG2,
1934 ISD::FLOG10, ISD::FEXP, ISD::FEXP2, ISD::FCEIL, ISD::FTRUNC,
1935 ISD::FRINT, ISD::FNEARBYINT, ISD::FROUND, ISD::FFLOOR,
1936 ISD::FMINNUM, ISD::FMAXNUM, ISD::FSINCOS,
1937 // Misc:
1938 ISD::BR_CC, ISD::SELECT_CC, ISD::ConstantPool,
1939 // Vector:
1940 ISD::BUILD_VECTOR, ISD::SCALAR_TO_VECTOR,
1941 ISD::EXTRACT_VECTOR_ELT, ISD::INSERT_VECTOR_ELT,
1942 ISD::EXTRACT_SUBVECTOR, ISD::INSERT_SUBVECTOR,
1943 ISD::CONCAT_VECTORS, ISD::VECTOR_SHUFFLE
1944 };
1945
1946 for (MVT VT : MVT::vector_valuetypes()) {
1947 for (unsigned VectExpOp : VectExpOps)
1948 setOperationAction(VectExpOp, VT, Expand);
1949
1950 // Expand all extending loads and truncating stores:
1951 for (MVT TargetVT : MVT::vector_valuetypes()) {
1952 if (TargetVT == VT)
1953 continue;
1954 setLoadExtAction(ISD::EXTLOAD, TargetVT, VT, Expand);
1955 setLoadExtAction(ISD::ZEXTLOAD, TargetVT, VT, Expand);
1956 setLoadExtAction(ISD::SEXTLOAD, TargetVT, VT, Expand);
1957 setTruncStoreAction(VT, TargetVT, Expand);
1958 }
1959
1960 // Normalize all inputs to SELECT to be vectors of i32.
1961 if (VT.getVectorElementType() != MVT::i32) {
1962 MVT VT32 = MVT::getVectorVT(MVT::i32, VT.getSizeInBits()/32);
1963 setOperationAction(ISD::SELECT, VT, Promote);
1964 AddPromotedToType(ISD::SELECT, VT, VT32);
1965 }
1966 setOperationAction(ISD::SRA, VT, Custom);
1967 setOperationAction(ISD::SHL, VT, Custom);
1968 setOperationAction(ISD::SRL, VT, Custom);
1969 }
1970
1971 // Extending loads from (native) vectors of i8 into (native) vectors of i16
1972 // are legal.
1973 setLoadExtAction(ISD::EXTLOAD, MVT::v2i16, MVT::v2i8, Legal);
1974 setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i16, MVT::v2i8, Legal);
1975 setLoadExtAction(ISD::SEXTLOAD, MVT::v2i16, MVT::v2i8, Legal);
1976 setLoadExtAction(ISD::EXTLOAD, MVT::v4i16, MVT::v4i8, Legal);
1977 setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i16, MVT::v4i8, Legal);
1978 setLoadExtAction(ISD::SEXTLOAD, MVT::v4i16, MVT::v4i8, Legal);
1979
1980 // Types natively supported:
1981 for (MVT NativeVT : {MVT::v2i1, MVT::v4i1, MVT::v8i1, MVT::v32i1, MVT::v64i1,
1982 MVT::v4i8, MVT::v8i8, MVT::v2i16, MVT::v4i16, MVT::v1i32,
1983 MVT::v2i32, MVT::v1i64}) {
1984 setOperationAction(ISD::BUILD_VECTOR, NativeVT, Custom);
1985 setOperationAction(ISD::EXTRACT_VECTOR_ELT, NativeVT, Custom);
1986 setOperationAction(ISD::INSERT_VECTOR_ELT, NativeVT, Custom);
1987 setOperationAction(ISD::EXTRACT_SUBVECTOR, NativeVT, Custom);
1988 setOperationAction(ISD::INSERT_SUBVECTOR, NativeVT, Custom);
1989 setOperationAction(ISD::CONCAT_VECTORS, NativeVT, Custom);
1990
1991 setOperationAction(ISD::ADD, NativeVT, Legal);
1992 setOperationAction(ISD::SUB, NativeVT, Legal);
1993 setOperationAction(ISD::MUL, NativeVT, Legal);
1994 setOperationAction(ISD::AND, NativeVT, Legal);
1995 setOperationAction(ISD::OR, NativeVT, Legal);
1996 setOperationAction(ISD::XOR, NativeVT, Legal);
1997 }
1998
1999 setOperationAction(ISD::SETCC, MVT::v2i16, Custom);
2000 setOperationAction(ISD::VSELECT, MVT::v2i16, Custom);
2001 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
2002 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
2003
2004 if (Subtarget.useHVXOps()) {
2005 if (Subtarget.useHVX64BOps()) {
2006 setOperationAction(ISD::CONCAT_VECTORS, MVT::v128i8, Custom);
2007 setOperationAction(ISD::CONCAT_VECTORS, MVT::v64i16, Custom);
2008 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i32, Custom);
2009 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i64, Custom);
2010 // We try to generate the vpack{e/o} instructions. If we fail
2011 // we fall back upon ExpandOp.
2012 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v64i8, Custom);
2013 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v32i16, Custom);
2014 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v64i8, Custom);
2015 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v32i16, Custom);
2016 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v16i32, Custom);
2017 } else if (Subtarget.useHVX128BOps()) {
2018 setOperationAction(ISD::CONCAT_VECTORS, MVT::v256i8, Custom);
2019 setOperationAction(ISD::CONCAT_VECTORS, MVT::v128i16, Custom);
2020 setOperationAction(ISD::CONCAT_VECTORS, MVT::v64i32, Custom);
2021 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i64, Custom);
2022 // We try to generate the vpack{e/o} instructions. If we fail
2023 // we fall back upon ExpandOp.
2024 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v128i8, Custom);
2025 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v64i16, Custom);
2026 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v4i32, Custom);
2027 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v128i8, Custom);
2028 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v64i16, Custom);
2029 setOperationAction(ISD::EXTRACT_SUBVECTOR, MVT::v32i32, Custom);
2030 } else {
2031 llvm_unreachable("Unrecognized HVX mode")::llvm::llvm_unreachable_internal("Unrecognized HVX mode", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2031)
;
2032 }
2033 }
2034 // Subtarget-specific operation actions.
2035 //
2036 if (Subtarget.hasV5TOps()) {
2037 setOperationAction(ISD::FMA, MVT::f64, Expand);
2038 setOperationAction(ISD::FADD, MVT::f64, Expand);
2039 setOperationAction(ISD::FSUB, MVT::f64, Expand);
2040 setOperationAction(ISD::FMUL, MVT::f64, Expand);
2041
2042 setOperationAction(ISD::FMINNUM, MVT::f32, Legal);
2043 setOperationAction(ISD::FMAXNUM, MVT::f32, Legal);
2044
2045 setOperationAction(ISD::FP_TO_UINT, MVT::i1, Promote);
2046 setOperationAction(ISD::FP_TO_UINT, MVT::i8, Promote);
2047 setOperationAction(ISD::FP_TO_UINT, MVT::i16, Promote);
2048 setOperationAction(ISD::FP_TO_SINT, MVT::i1, Promote);
2049 setOperationAction(ISD::FP_TO_SINT, MVT::i8, Promote);
2050 setOperationAction(ISD::FP_TO_SINT, MVT::i16, Promote);
2051 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote);
2052 setOperationAction(ISD::UINT_TO_FP, MVT::i8, Promote);
2053 setOperationAction(ISD::UINT_TO_FP, MVT::i16, Promote);
2054 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote);
2055 setOperationAction(ISD::SINT_TO_FP, MVT::i8, Promote);
2056 setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote);
2057 } else { // V4
2058 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand);
2059 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Expand);
2060 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
2061 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
2062 setOperationAction(ISD::FP_TO_SINT, MVT::f64, Expand);
2063 setOperationAction(ISD::FP_TO_SINT, MVT::f32, Expand);
2064 setOperationAction(ISD::FP_EXTEND, MVT::f32, Expand);
2065 setOperationAction(ISD::FP_ROUND, MVT::f64, Expand);
2066 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
2067
2068 setOperationAction(ISD::CTPOP, MVT::i8, Expand);
2069 setOperationAction(ISD::CTPOP, MVT::i16, Expand);
2070 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
2071 setOperationAction(ISD::CTPOP, MVT::i64, Expand);
2072
2073 // Expand these operations for both f32 and f64:
2074 for (unsigned FPExpOpV4 :
2075 {ISD::FADD, ISD::FSUB, ISD::FMUL, ISD::FABS, ISD::FNEG, ISD::FMA}) {
2076 setOperationAction(FPExpOpV4, MVT::f32, Expand);
2077 setOperationAction(FPExpOpV4, MVT::f64, Expand);
2078 }
2079
2080 for (ISD::CondCode FPExpCCV4 :
2081 {ISD::SETOEQ, ISD::SETOGT, ISD::SETOLT, ISD::SETOGE, ISD::SETOLE,
2082 ISD::SETUO, ISD::SETO}) {
2083 setCondCodeAction(FPExpCCV4, MVT::f32, Expand);
2084 setCondCodeAction(FPExpCCV4, MVT::f64, Expand);
2085 }
2086 }
2087
2088 // Handling of indexed loads/stores: default is "expand".
2089 //
2090 for (MVT VT : {MVT::i8, MVT::i16, MVT::i32, MVT::i64}) {
2091 setIndexedLoadAction(ISD::POST_INC, VT, Legal);
2092 setIndexedStoreAction(ISD::POST_INC, VT, Legal);
2093 }
2094
2095 if (Subtarget.useHVX64BOps()) {
2096 for (MVT VT : {MVT::v64i8, MVT::v32i16, MVT::v16i32, MVT::v8i64,
2097 MVT::v128i8, MVT::v64i16, MVT::v32i32, MVT::v16i64}) {
2098 setIndexedLoadAction(ISD::POST_INC, VT, Legal);
2099 setIndexedStoreAction(ISD::POST_INC, VT, Legal);
2100 }
2101 } else if (Subtarget.useHVX128BOps()) {
2102 for (MVT VT : {MVT::v128i8, MVT::v64i16, MVT::v32i32, MVT::v16i64,
2103 MVT::v256i8, MVT::v128i16, MVT::v64i32, MVT::v32i64}) {
2104 setIndexedLoadAction(ISD::POST_INC, VT, Legal);
2105 setIndexedStoreAction(ISD::POST_INC, VT, Legal);
2106 }
2107 }
2108
2109 computeRegisterProperties(&HRI);
2110
2111 //
2112 // Library calls for unsupported operations
2113 //
2114 bool FastMath = EnableFastMath;
2115
2116 setLibcallName(RTLIB::SDIV_I32, "__hexagon_divsi3");
2117 setLibcallName(RTLIB::SDIV_I64, "__hexagon_divdi3");
2118 setLibcallName(RTLIB::UDIV_I32, "__hexagon_udivsi3");
2119 setLibcallName(RTLIB::UDIV_I64, "__hexagon_udivdi3");
2120 setLibcallName(RTLIB::SREM_I32, "__hexagon_modsi3");
2121 setLibcallName(RTLIB::SREM_I64, "__hexagon_moddi3");
2122 setLibcallName(RTLIB::UREM_I32, "__hexagon_umodsi3");
2123 setLibcallName(RTLIB::UREM_I64, "__hexagon_umoddi3");
2124
2125 setLibcallName(RTLIB::SINTTOFP_I128_F64, "__hexagon_floattidf");
2126 setLibcallName(RTLIB::SINTTOFP_I128_F32, "__hexagon_floattisf");
2127 setLibcallName(RTLIB::FPTOUINT_F32_I128, "__hexagon_fixunssfti");
2128 setLibcallName(RTLIB::FPTOUINT_F64_I128, "__hexagon_fixunsdfti");
2129 setLibcallName(RTLIB::FPTOSINT_F32_I128, "__hexagon_fixsfti");
2130 setLibcallName(RTLIB::FPTOSINT_F64_I128, "__hexagon_fixdfti");
2131
2132 if (IsV4) {
2133 // Handle single-precision floating point operations on V4.
2134 if (FastMath) {
2135 setLibcallName(RTLIB::ADD_F32, "__hexagon_fast_addsf3");
2136 setLibcallName(RTLIB::SUB_F32, "__hexagon_fast_subsf3");
2137 setLibcallName(RTLIB::MUL_F32, "__hexagon_fast_mulsf3");
2138 setLibcallName(RTLIB::OGT_F32, "__hexagon_fast_gtsf2");
2139 setLibcallName(RTLIB::OLT_F32, "__hexagon_fast_ltsf2");
2140 // Double-precision compares.
2141 setLibcallName(RTLIB::OGT_F64, "__hexagon_fast_gtdf2");
2142 setLibcallName(RTLIB::OLT_F64, "__hexagon_fast_ltdf2");
2143 } else {
2144 setLibcallName(RTLIB::ADD_F32, "__hexagon_addsf3");
2145 setLibcallName(RTLIB::SUB_F32, "__hexagon_subsf3");
2146 setLibcallName(RTLIB::MUL_F32, "__hexagon_mulsf3");
2147 setLibcallName(RTLIB::OGT_F32, "__hexagon_gtsf2");
2148 setLibcallName(RTLIB::OLT_F32, "__hexagon_ltsf2");
2149 // Double-precision compares.
2150 setLibcallName(RTLIB::OGT_F64, "__hexagon_gtdf2");
2151 setLibcallName(RTLIB::OLT_F64, "__hexagon_ltdf2");
2152 }
2153 }
2154
2155 // This is the only fast library function for sqrtd.
2156 if (FastMath)
2157 setLibcallName(RTLIB::SQRT_F64, "__hexagon_fast2_sqrtdf2");
2158
2159 // Prefix is: nothing for "slow-math",
2160 // "fast2_" for V4 fast-math and V5+ fast-math double-precision
2161 // (actually, keep fast-math and fast-math2 separate for now)
2162 if (FastMath) {
2163 setLibcallName(RTLIB::ADD_F64, "__hexagon_fast_adddf3");
2164 setLibcallName(RTLIB::SUB_F64, "__hexagon_fast_subdf3");
2165 setLibcallName(RTLIB::MUL_F64, "__hexagon_fast_muldf3");
2166 setLibcallName(RTLIB::DIV_F64, "__hexagon_fast_divdf3");
2167 // Calling __hexagon_fast2_divsf3 with fast-math on V5 (ok).
2168 setLibcallName(RTLIB::DIV_F32, "__hexagon_fast_divsf3");
2169 } else {
2170 setLibcallName(RTLIB::ADD_F64, "__hexagon_adddf3");
2171 setLibcallName(RTLIB::SUB_F64, "__hexagon_subdf3");
2172 setLibcallName(RTLIB::MUL_F64, "__hexagon_muldf3");
2173 setLibcallName(RTLIB::DIV_F64, "__hexagon_divdf3");
2174 setLibcallName(RTLIB::DIV_F32, "__hexagon_divsf3");
2175 }
2176
2177 if (Subtarget.hasV5TOps()) {
2178 if (FastMath)
2179 setLibcallName(RTLIB::SQRT_F32, "__hexagon_fast2_sqrtf");
2180 else
2181 setLibcallName(RTLIB::SQRT_F32, "__hexagon_sqrtf");
2182 } else {
2183 // V4
2184 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__hexagon_floatsisf");
2185 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__hexagon_floatsidf");
2186 setLibcallName(RTLIB::SINTTOFP_I64_F32, "__hexagon_floatdisf");
2187 setLibcallName(RTLIB::SINTTOFP_I64_F64, "__hexagon_floatdidf");
2188 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__hexagon_floatunsisf");
2189 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__hexagon_floatunsidf");
2190 setLibcallName(RTLIB::UINTTOFP_I64_F32, "__hexagon_floatundisf");
2191 setLibcallName(RTLIB::UINTTOFP_I64_F64, "__hexagon_floatundidf");
2192 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__hexagon_fixunssfsi");
2193 setLibcallName(RTLIB::FPTOUINT_F32_I64, "__hexagon_fixunssfdi");
2194 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__hexagon_fixunsdfsi");
2195 setLibcallName(RTLIB::FPTOUINT_F64_I64, "__hexagon_fixunsdfdi");
2196 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__hexagon_fixsfsi");
2197 setLibcallName(RTLIB::FPTOSINT_F32_I64, "__hexagon_fixsfdi");
2198 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__hexagon_fixdfsi");
2199 setLibcallName(RTLIB::FPTOSINT_F64_I64, "__hexagon_fixdfdi");
2200 setLibcallName(RTLIB::FPEXT_F32_F64, "__hexagon_extendsfdf2");
2201 setLibcallName(RTLIB::FPROUND_F64_F32, "__hexagon_truncdfsf2");
2202 setLibcallName(RTLIB::OEQ_F32, "__hexagon_eqsf2");
2203 setLibcallName(RTLIB::OEQ_F64, "__hexagon_eqdf2");
2204 setLibcallName(RTLIB::OGE_F32, "__hexagon_gesf2");
2205 setLibcallName(RTLIB::OGE_F64, "__hexagon_gedf2");
2206 setLibcallName(RTLIB::OLE_F32, "__hexagon_lesf2");
2207 setLibcallName(RTLIB::OLE_F64, "__hexagon_ledf2");
2208 setLibcallName(RTLIB::UNE_F32, "__hexagon_nesf2");
2209 setLibcallName(RTLIB::UNE_F64, "__hexagon_nedf2");
2210 setLibcallName(RTLIB::UO_F32, "__hexagon_unordsf2");
2211 setLibcallName(RTLIB::UO_F64, "__hexagon_unorddf2");
2212 setLibcallName(RTLIB::O_F32, "__hexagon_unordsf2");
2213 setLibcallName(RTLIB::O_F64, "__hexagon_unorddf2");
2214 }
2215
2216 // These cause problems when the shift amount is non-constant.
2217 setLibcallName(RTLIB::SHL_I128, nullptr);
2218 setLibcallName(RTLIB::SRL_I128, nullptr);
2219 setLibcallName(RTLIB::SRA_I128, nullptr);
2220}
2221
2222const char* HexagonTargetLowering::getTargetNodeName(unsigned Opcode) const {
2223 switch ((HexagonISD::NodeType)Opcode) {
2224 case HexagonISD::ALLOCA: return "HexagonISD::ALLOCA";
2225 case HexagonISD::AT_GOT: return "HexagonISD::AT_GOT";
2226 case HexagonISD::AT_PCREL: return "HexagonISD::AT_PCREL";
2227 case HexagonISD::BARRIER: return "HexagonISD::BARRIER";
2228 case HexagonISD::CALL: return "HexagonISD::CALL";
2229 case HexagonISD::CALLnr: return "HexagonISD::CALLnr";
2230 case HexagonISD::CALLR: return "HexagonISD::CALLR";
2231 case HexagonISD::COMBINE: return "HexagonISD::COMBINE";
2232 case HexagonISD::CONST32_GP: return "HexagonISD::CONST32_GP";
2233 case HexagonISD::CONST32: return "HexagonISD::CONST32";
2234 case HexagonISD::CP: return "HexagonISD::CP";
2235 case HexagonISD::DCFETCH: return "HexagonISD::DCFETCH";
2236 case HexagonISD::EH_RETURN: return "HexagonISD::EH_RETURN";
2237 case HexagonISD::EXTRACTU: return "HexagonISD::EXTRACTU";
2238 case HexagonISD::EXTRACTURP: return "HexagonISD::EXTRACTURP";
2239 case HexagonISD::INSERT: return "HexagonISD::INSERT";
2240 case HexagonISD::INSERTRP: return "HexagonISD::INSERTRP";
2241 case HexagonISD::JT: return "HexagonISD::JT";
2242 case HexagonISD::PACKHL: return "HexagonISD::PACKHL";
2243 case HexagonISD::RET_FLAG: return "HexagonISD::RET_FLAG";
2244 case HexagonISD::TC_RETURN: return "HexagonISD::TC_RETURN";
2245 case HexagonISD::VCOMBINE: return "HexagonISD::VCOMBINE";
2246 case HexagonISD::VPACKE: return "HexagonISD::VPACKE";
2247 case HexagonISD::VPACKO: return "HexagonISD::VPACKO";
2248 case HexagonISD::VASL: return "HexagonISD::VASL";
2249 case HexagonISD::VASR: return "HexagonISD::VASR";
2250 case HexagonISD::VLSR: return "HexagonISD::VLSR";
2251 case HexagonISD::VSPLAT: return "HexagonISD::VSPLAT";
2252 case HexagonISD::READCYCLE: return "HexagonISD::READCYCLE";
2253 case HexagonISD::OP_END: break;
2254 }
2255 return nullptr;
2256}
2257
2258bool HexagonTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
2259 EVT MTy1 = EVT::getEVT(Ty1);
2260 EVT MTy2 = EVT::getEVT(Ty2);
2261 if (!MTy1.isSimple() || !MTy2.isSimple())
2262 return false;
2263 return (MTy1.getSimpleVT() == MVT::i64) && (MTy2.getSimpleVT() == MVT::i32);
2264}
2265
2266bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
2267 if (!VT1.isSimple() || !VT2.isSimple())
2268 return false;
2269 return (VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32);
2270}
2271
2272bool HexagonTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
2273 return isOperationLegalOrCustom(ISD::FMA, VT);
2274}
2275
2276// Should we expand the build vector with shuffles?
2277bool HexagonTargetLowering::shouldExpandBuildVectorWithShuffles(EVT VT,
2278 unsigned DefinedValues) const {
2279 // Hexagon vector shuffle operates on element sizes of bytes or halfwords
2280 EVT EltVT = VT.getVectorElementType();
2281 int EltBits = EltVT.getSizeInBits();
2282 if ((EltBits != 8) && (EltBits != 16))
2283 return false;
2284
2285 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues);
2286}
2287
2288static StridedLoadKind isStridedLoad(const ArrayRef<int> &Mask) {
2289 int even_start = -2;
2290 int odd_start = -1;
2291 size_t mask_len = Mask.size();
2292 for (auto idx : Mask) {
2293 if ((idx - even_start) == 2)
2294 even_start = idx;
2295 else
2296 break;
2297 }
2298 if (even_start == (int)(mask_len * 2) - 2)
2299 return StridedLoadKind::Even;
2300 for (auto idx : Mask) {
2301 if ((idx - odd_start) == 2)
2302 odd_start = idx;
2303 else
2304 break;
2305 }
2306 if (odd_start == (int)(mask_len * 2) - 1)
2307 return StridedLoadKind::Odd;
2308
2309 return StridedLoadKind::NoPattern;
2310}
2311
2312bool HexagonTargetLowering::isShuffleMaskLegal(ArrayRef<int> Mask,
2313 EVT VT) const {
2314 if (Subtarget.useHVXOps())
2315 return isStridedLoad(Mask) != StridedLoadKind::NoPattern;
2316 return true;
2317}
2318
2319// Lower a vector shuffle (V1, V2, V3). V1 and V2 are the two vectors
2320// to select data from, V3 is the permutation.
2321SDValue
2322HexagonTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG)
2323 const {
2324 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
2325 SDValue V1 = Op.getOperand(0);
2326 SDValue V2 = Op.getOperand(1);
2327 SDLoc dl(Op);
2328 EVT VT = Op.getValueType();
2329 bool UseHVX = Subtarget.useHVXOps();
2330
2331 if (V2.isUndef())
2332 V2 = V1;
2333
2334 if (SVN->isSplat()) {
2335 int Lane = SVN->getSplatIndex();
2336 if (Lane == -1) Lane = 0;
2337
2338 // Test if V1 is a SCALAR_TO_VECTOR.
2339 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR)
2340 return DAG.getNode(HexagonISD::VSPLAT, dl, VT, V1.getOperand(0));
2341
2342 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
2343 // (and probably will turn into a SCALAR_TO_VECTOR once legalization
2344 // reaches it).
2345 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
2346 !isa<ConstantSDNode>(V1.getOperand(0))) {
2347 bool IsScalarToVector = true;
2348 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i) {
2349 if (!V1.getOperand(i).isUndef()) {
2350 IsScalarToVector = false;
2351 break;
2352 }
2353 }
2354 if (IsScalarToVector)
2355 return DAG.getNode(HexagonISD::VSPLAT, dl, VT, V1.getOperand(0));
2356 }
2357 return DAG.getNode(HexagonISD::VSPLAT, dl, VT,
2358 DAG.getConstant(Lane, dl, MVT::i32));
2359 }
2360
2361 if (UseHVX) {
2362 ArrayRef<int> Mask = SVN->getMask();
2363 size_t MaskLen = Mask.size();
2364 unsigned SizeInBits = VT.getScalarSizeInBits() * MaskLen;
2365
2366 if ((Subtarget.useHVX64BOps() && SizeInBits == 64 * 8) ||
2367 (Subtarget.useHVX128BOps() && SizeInBits == 128 * 8)) {
2368 StridedLoadKind Pattern = isStridedLoad(Mask);
2369 if (Pattern == StridedLoadKind::NoPattern)
2370 return SDValue();
2371
2372 unsigned Opc = Pattern == StridedLoadKind::Even ? HexagonISD::VPACKE
2373 : HexagonISD::VPACKO;
2374 return DAG.getNode(Opc, dl, VT, {Op.getOperand(1), Op.getOperand(0)});
2375 }
2376 // We used to assert in the "else" part here, but that is bad for Halide
2377 // Halide creates intermediate double registers by interleaving two
2378 // concatenated vector registers. The interleaving requires vector_shuffle
2379 // nodes and we shouldn't barf on a double register result of a
2380 // vector_shuffle because it is most likely an intermediate result.
2381 }
2382 // FIXME: We need to support more general vector shuffles. See
2383 // below the comment from the ARM backend that deals in the general
2384 // case with the vector shuffles. For now, let expand handle these.
2385 return SDValue();
2386
2387 // If the shuffle is not directly supported and it has 4 elements, use
2388 // the PerfectShuffle-generated table to synthesize it from other shuffles.
2389}
2390
2391// If BUILD_VECTOR has same base element repeated several times,
2392// report true.
2393static bool isCommonSplatElement(BuildVectorSDNode *BVN) {
2394 unsigned NElts = BVN->getNumOperands();
2395 SDValue V0 = BVN->getOperand(0);
2396
2397 for (unsigned i = 1, e = NElts; i != e; ++i) {
2398 if (BVN->getOperand(i) != V0)
2399 return false;
2400 }
2401 return true;
2402}
2403
2404// Lower a vector shift. Try to convert
2405// <VT> = SHL/SRA/SRL <VT> by <VT> to Hexagon specific
2406// <VT> = SHL/SRA/SRL <VT> by <IT/i32>.
2407SDValue
2408HexagonTargetLowering::LowerVECTOR_SHIFT(SDValue Op, SelectionDAG &DAG) const {
2409 BuildVectorSDNode *BVN = nullptr;
2410 SDValue V1 = Op.getOperand(0);
2411 SDValue V2 = Op.getOperand(1);
2412 SDValue V3;
2413 SDLoc dl(Op);
2414 EVT VT = Op.getValueType();
2415
2416 if ((BVN = dyn_cast<BuildVectorSDNode>(V1.getNode())) &&
2417 isCommonSplatElement(BVN))
2418 V3 = V2;
2419 else if ((BVN = dyn_cast<BuildVectorSDNode>(V2.getNode())) &&
2420 isCommonSplatElement(BVN))
2421 V3 = V1;
2422 else
2423 return SDValue();
2424
2425 SDValue CommonSplat = BVN->getOperand(0);
2426 SDValue Result;
2427
2428 if (VT.getSimpleVT() == MVT::v4i16) {
2429 switch (Op.getOpcode()) {
2430 case ISD::SRA:
2431 Result = DAG.getNode(HexagonISD::VASR, dl, VT, V3, CommonSplat);
2432 break;
2433 case ISD::SHL:
2434 Result = DAG.getNode(HexagonISD::VASL, dl, VT, V3, CommonSplat);
2435 break;
2436 case ISD::SRL:
2437 Result = DAG.getNode(HexagonISD::VLSR, dl, VT, V3, CommonSplat);
2438 break;
2439 default:
2440 return SDValue();
2441 }
2442 } else if (VT.getSimpleVT() == MVT::v2i32) {
2443 switch (Op.getOpcode()) {
2444 case ISD::SRA:
2445 Result = DAG.getNode(HexagonISD::VASR, dl, VT, V3, CommonSplat);
2446 break;
2447 case ISD::SHL:
2448 Result = DAG.getNode(HexagonISD::VASL, dl, VT, V3, CommonSplat);
2449 break;
2450 case ISD::SRL:
2451 Result = DAG.getNode(HexagonISD::VLSR, dl, VT, V3, CommonSplat);
2452 break;
2453 default:
2454 return SDValue();
2455 }
2456 } else {
2457 return SDValue();
2458 }
2459
2460 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
2461}
2462
2463SDValue
2464HexagonTargetLowering::buildVector32(ArrayRef<SDValue> Elem, const SDLoc &dl,
2465 MVT VecTy, SelectionDAG &DAG) const {
2466 MVT ElemTy = VecTy.getVectorElementType();
2467 assert(VecTy.getVectorNumElements() == Elem.size())(static_cast <bool> (VecTy.getVectorNumElements() == Elem
.size()) ? void (0) : __assert_fail ("VecTy.getVectorNumElements() == Elem.size()"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2467, __extension__ __PRETTY_FUNCTION__))
;
2468
2469 SmallVector<ConstantSDNode*,4> Consts;
2470 bool AllConst = true;
2471 for (SDValue V : Elem) {
2472 if (V.getOpcode() == ISD::UNDEF)
2473 V = DAG.getConstant(0, dl, ElemTy);
2474 auto *C = dyn_cast<ConstantSDNode>(V.getNode());
2475 Consts.push_back(C);
2476 AllConst = AllConst && C != nullptr;
2477 }
2478
2479 unsigned First, Num = Elem.size();
2480 for (First = 0; First != Num; ++First)
2481 if (Elem[First].getOpcode() != ISD::UNDEF)
2482 break;
2483 if (First == Num)
2484 return DAG.getUNDEF(VecTy);
2485
2486 if (ElemTy == MVT::i16) {
2487 assert(Elem.size() == 2)(static_cast <bool> (Elem.size() == 2) ? void (0) : __assert_fail
("Elem.size() == 2", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2487, __extension__ __PRETTY_FUNCTION__))
;
2488 if (AllConst) {
2489 uint32_t V = (Consts[0]->getZExtValue() & 0xFFFF) |
2490 Consts[1]->getZExtValue() << 16;
2491 return DAG.getBitcast(MVT::v2i16, DAG.getConstant(V, dl, MVT::i32));
2492 }
2493 SDNode *N = DAG.getMachineNode(Hexagon::A2_combine_ll, dl, MVT::i32,
2494 { Elem[1], Elem[0] });
2495 return DAG.getBitcast(MVT::v2i16, SDValue(N,0));
2496 }
2497
2498 // First try generating a constant.
2499 assert(ElemTy == MVT::i8 && Num == 4)(static_cast <bool> (ElemTy == MVT::i8 && Num ==
4) ? void (0) : __assert_fail ("ElemTy == MVT::i8 && Num == 4"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2499, __extension__ __PRETTY_FUNCTION__))
;
2500 if (AllConst) {
2501 int32_t V = (Consts[0]->getZExtValue() & 0xFF) |
2502 (Consts[1]->getZExtValue() & 0xFF) << 8 |
2503 (Consts[1]->getZExtValue() & 0xFF) << 16 |
2504 Consts[2]->getZExtValue() << 24;
2505 return DAG.getBitcast(MVT::v4i8, DAG.getConstant(V, dl, MVT::i32));
2506 }
2507
2508 // Then try splat.
2509 bool IsSplat = true;
2510 for (unsigned i = 0; i != Num; ++i) {
2511 if (i == First)
2512 continue;
2513 if (Elem[i] == Elem[First] || Elem[i].getOpcode() == ISD::UNDEF)
2514 continue;
2515 IsSplat = false;
2516 break;
2517 }
2518 if (IsSplat)
2519 return DAG.getNode(HexagonISD::VSPLAT, dl, VecTy, Elem[First]);
2520
2521 // Generate
2522 // (zxtb(Elem[0]) | (zxtb(Elem[1]) << 8)) |
2523 // (zxtb(Elem[2]) | (zxtb(Elem[3]) << 8)) << 16
2524 SDValue S8 = DAG.getConstant(8, dl, MVT::i32);
2525 SDValue S16 = DAG.getConstant(16, dl, MVT::i32);
2526 SDValue V0 = DAG.getZExtOrTrunc(Elem[0], dl, MVT::i32);
2527 SDValue V1 = DAG.getZExtOrTrunc(Elem[2], dl, MVT::i32);
2528 SDValue V2 = DAG.getNode(ISD::SHL, dl, MVT::i32, {Elem[1], S8});
2529 SDValue V3 = DAG.getNode(ISD::SHL, dl, MVT::i32, {Elem[3], S8});
2530 SDValue V4 = DAG.getNode(ISD::OR, dl, MVT::i32, {V0, V2});
2531 SDValue V5 = DAG.getNode(ISD::OR, dl, MVT::i32, {V1, V3});
2532 SDValue V6 = DAG.getNode(ISD::SHL, dl, MVT::i32, {V5, S16});
2533 SDValue V7 = DAG.getNode(ISD::OR, dl, MVT::i32, {V4, V6});
2534 return DAG.getBitcast(MVT::v4i8, V7);
2535}
2536
2537SDValue
2538HexagonTargetLowering::buildVector64(ArrayRef<SDValue> Elem, const SDLoc &dl,
2539 MVT VecTy, SelectionDAG &DAG) const {
2540 MVT ElemTy = VecTy.getVectorElementType();
2541 assert(VecTy.getVectorNumElements() == Elem.size())(static_cast <bool> (VecTy.getVectorNumElements() == Elem
.size()) ? void (0) : __assert_fail ("VecTy.getVectorNumElements() == Elem.size()"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2541, __extension__ __PRETTY_FUNCTION__))
;
2542
2543 SmallVector<ConstantSDNode*,8> Consts;
2544 bool AllConst = true;
2545 for (SDValue V : Elem) {
2546 if (V.getOpcode() == ISD::UNDEF)
2547 V = DAG.getConstant(0, dl, ElemTy);
2548 auto *C = dyn_cast<ConstantSDNode>(V.getNode());
2549 Consts.push_back(C);
2550 AllConst = AllConst && C != nullptr;
2551 }
2552
2553 unsigned First, Num = Elem.size();
2554 for (First = 0; First != Num; ++First)
2555 if (Elem[First].getOpcode() != ISD::UNDEF)
2556 break;
2557 if (First == Num)
2558 return DAG.getUNDEF(VecTy);
2559
2560 // First try splat if possible.
2561 if (ElemTy == MVT::i16) {
2562 bool IsSplat = true;
2563 for (unsigned i = 0; i != Num; ++i) {
2564 if (i == First)
2565 continue;
2566 if (Elem[i] == Elem[First] || Elem[i].getOpcode() == ISD::UNDEF)
2567 continue;
2568 IsSplat = false;
2569 break;
2570 }
2571 if (IsSplat)
2572 return DAG.getNode(HexagonISD::VSPLAT, dl, VecTy, Elem[First]);
2573 }
2574
2575 // Then try constant.
2576 if (AllConst) {
2577 uint64_t Val = 0;
2578 unsigned W = ElemTy.getSizeInBits();
2579 uint64_t Mask = (ElemTy == MVT::i8) ? 0xFFull
2580 : (ElemTy == MVT::i16) ? 0xFFFFull : 0xFFFFFFFFull;
2581 for (unsigned i = 0; i != Num; ++i)
2582 Val = (Val << W) | (Consts[i]->getZExtValue() & Mask);
2583 SDValue V0 = DAG.getConstant(Val, dl, MVT::i64);
2584 return DAG.getBitcast(VecTy, V0);
2585 }
2586
2587 // Build two 32-bit vectors and concatenate.
2588 MVT HalfTy = MVT::getVectorVT(ElemTy, Num/2);
2589 SDValue L = (ElemTy == MVT::i32)
2590 ? Elem[0]
2591 : buildVector32({Elem.data(), Num/2}, dl, HalfTy, DAG);
2592 SDValue H = (ElemTy == MVT::i32)
2593 ? Elem[1]
2594 : buildVector32({Elem.data()+Num/2, Num/2}, dl, HalfTy, DAG);
2595 unsigned Id = Hexagon::DoubleRegsRegClassID;
2596 SDNode *N = DAG.getMachineNode(TargetOpcode::REG_SEQUENCE, dl, VecTy,
2597 { DAG.getTargetConstant(Id, dl, MVT::i32),
2598 L, DAG.getTargetConstant(Hexagon::isub_lo, dl, MVT::i32),
2599 H, DAG.getTargetConstant(Hexagon::isub_hi, dl, MVT::i32) });
2600 return SDValue(N, 0);
2601}
2602
2603SDValue
2604HexagonTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
2605 MVT VT = Op.getValueType().getSimpleVT();
2606 unsigned BW = VT.getSizeInBits();
2607 if (BW == 32 || BW == 64) {
2608 SmallVector<SDValue,8> Ops;
2609 for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i)
2610 Ops.push_back(Op.getOperand(i));
2611 if (BW == 32)
2612 return buildVector32(Ops, SDLoc(Op), VT, DAG);
2613 return buildVector64(Ops, SDLoc(Op), VT, DAG);
2614 }
2615
2616 return SDValue();
2617}
2618
2619SDValue
2620HexagonTargetLowering::LowerCONCAT_VECTORS(SDValue Op,
2621 SelectionDAG &DAG) const {
2622 SDLoc dl(Op);
2623 bool UseHVX = Subtarget.useHVXOps();
2624 EVT VT = Op.getValueType();
2625 unsigned NElts = Op.getNumOperands();
2626 SDValue Vec0 = Op.getOperand(0);
2627 EVT VecVT = Vec0.getValueType();
2628 unsigned Width = VecVT.getSizeInBits();
2629
2630 if (NElts == 2) {
2631 MVT ST = VecVT.getSimpleVT();
2632 // We are trying to concat two v2i16 to a single v4i16, or two v4i8
2633 // into a single v8i8.
2634 if (ST == MVT::v2i16 || ST == MVT::v4i8)
2635 return DAG.getNode(HexagonISD::COMBINE, dl, VT, Op.getOperand(1), Vec0);
2636
2637 if (UseHVX) {
2638 assert((Width == 64 * 8 && Subtarget.useHVX64BOps()) ||(static_cast <bool> ((Width == 64 * 8 && Subtarget
.useHVX64BOps()) || (Width == 128 * 8 && Subtarget.useHVX128BOps
())) ? void (0) : __assert_fail ("(Width == 64 * 8 && Subtarget.useHVX64BOps()) || (Width == 128 * 8 && Subtarget.useHVX128BOps())"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2639, __extension__ __PRETTY_FUNCTION__))
2639 (Width == 128 * 8 && Subtarget.useHVX128BOps()))(static_cast <bool> ((Width == 64 * 8 && Subtarget
.useHVX64BOps()) || (Width == 128 * 8 && Subtarget.useHVX128BOps
())) ? void (0) : __assert_fail ("(Width == 64 * 8 && Subtarget.useHVX64BOps()) || (Width == 128 * 8 && Subtarget.useHVX128BOps())"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2639, __extension__ __PRETTY_FUNCTION__))
;
2640 SDValue Vec1 = Op.getOperand(1);
2641 MVT OpTy = Subtarget.useHVX64BOps() ? MVT::v16i32 : MVT::v32i32;
2642 MVT ReTy = Subtarget.useHVX64BOps() ? MVT::v32i32 : MVT::v64i32;
2643 SDValue B0 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec0);
2644 SDValue B1 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec1);
2645 SDValue VC = DAG.getNode(HexagonISD::VCOMBINE, dl, ReTy, B1, B0);
2646 return DAG.getNode(ISD::BITCAST, dl, VT, VC);
2647 }
2648 }
2649
2650 if (VT.getSizeInBits() != 32 && VT.getSizeInBits() != 64)
2651 return SDValue();
2652
2653 SDValue C0 = DAG.getConstant(0, dl, MVT::i64);
2654 SDValue C32 = DAG.getConstant(32, dl, MVT::i64);
2655 SDValue W = DAG.getConstant(Width, dl, MVT::i64);
2656 // Create the "width" part of the argument to insert_rp/insertp_rp.
2657 SDValue S = DAG.getNode(ISD::SHL, dl, MVT::i64, W, C32);
2658 SDValue V = C0;
2659
2660 for (unsigned i = 0, e = NElts; i != e; ++i) {
2661 unsigned N = NElts-i-1;
2662 SDValue OpN = Op.getOperand(N);
2663
2664 if (VT.getSizeInBits() == 64 && OpN.getValueSizeInBits() == 32) {
2665 SDValue C = DAG.getConstant(0, dl, MVT::i32);
2666 OpN = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, OpN);
2667 }
2668 SDValue Idx = DAG.getConstant(N, dl, MVT::i64);
2669 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i64, Idx, W);
2670 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, S, Offset);
2671 if (VT.getSizeInBits() == 32)
2672 V = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, {V, OpN, Or});
2673 else if (VT.getSizeInBits() == 64)
2674 V = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, {V, OpN, Or});
2675 else
2676 return SDValue();
2677 }
2678
2679 return DAG.getNode(ISD::BITCAST, dl, VT, V);
2680}
2681
2682SDValue
2683HexagonTargetLowering::LowerEXTRACT_SUBVECTOR_HVX(SDValue Op,
2684 SelectionDAG &DAG) const {
2685 EVT VT = Op.getOperand(0).getValueType();
2686 SDLoc dl(Op);
2687 bool UseHVX = Subtarget.useHVXOps();
2688 bool UseHVX64B = Subtarget.useHVX64BOps();
2689 // Just in case...
2690
2691 if (!VT.isVector() || !UseHVX)
2692 return SDValue();
2693
2694 EVT ResVT = Op.getValueType();
2695 unsigned ResSize = ResVT.getSizeInBits();
2696 unsigned VectorSizeInBits = UseHVX64B ? (64 * 8) : (128 * 8);
2697 unsigned OpSize = VT.getSizeInBits();
2698
2699 // We deal only with cases where the result is the vector size
2700 // and the vector operand is a double register.
2701 if (!(ResVT.isByteSized() && ResSize == VectorSizeInBits) ||
2702 !(VT.isByteSized() && OpSize == 2 * VectorSizeInBits))
2703 return SDValue();
2704
2705 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(1));
2706 if (!Cst)
2707 return SDValue();
2708 unsigned Val = Cst->getZExtValue();
2709
2710 // These two will get lowered to an appropriate EXTRACT_SUBREG in ISel.
2711 if (Val == 0) {
2712 SDValue Vec = Op.getOperand(0);
2713 return DAG.getTargetExtractSubreg(Hexagon::vsub_lo, dl, ResVT, Vec);
2714 }
2715
2716 if (ResVT.getVectorNumElements() == Val) {
2717 SDValue Vec = Op.getOperand(0);
2718 return DAG.getTargetExtractSubreg(Hexagon::vsub_hi, dl, ResVT, Vec);
2719 }
2720
2721 return SDValue();
2722}
2723
2724SDValue
2725HexagonTargetLowering::LowerEXTRACT_VECTOR(SDValue Op,
2726 SelectionDAG &DAG) const {
2727 // If we are dealing with EXTRACT_SUBVECTOR on a HVX type, we may
2728 // be able to simplify it to an EXTRACT_SUBREG.
2729 if (Op.getOpcode() == ISD::EXTRACT_SUBVECTOR && Subtarget.useHVXOps() &&
2730 isHvxVectorType(Op.getValueType().getSimpleVT()))
2731 return LowerEXTRACT_SUBVECTOR_HVX(Op, DAG);
2732
2733 EVT VT = Op.getValueType();
2734 int VTN = VT.isVector() ? VT.getVectorNumElements() : 1;
2735 SDLoc dl(Op);
2736 SDValue Idx = Op.getOperand(1);
2737 SDValue Vec = Op.getOperand(0);
2738 EVT VecVT = Vec.getValueType();
2739 EVT EltVT = VecVT.getVectorElementType();
2740 int EltSize = EltVT.getSizeInBits();
2741 SDValue Width = DAG.getConstant(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT ?
2742 EltSize : VTN * EltSize, dl, MVT::i64);
2743
2744 // Constant element number.
2745 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Idx)) {
2746 uint64_t X = CI->getZExtValue();
2747 SDValue Offset = DAG.getConstant(X * EltSize, dl, MVT::i32);
2748 const SDValue Ops[] = {Vec, Width, Offset};
2749
2750 ConstantSDNode *CW = dyn_cast<ConstantSDNode>(Width);
2751 assert(CW && "Non constant width in LowerEXTRACT_VECTOR")(static_cast <bool> (CW && "Non constant width in LowerEXTRACT_VECTOR"
) ? void (0) : __assert_fail ("CW && \"Non constant width in LowerEXTRACT_VECTOR\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2751, __extension__ __PRETTY_FUNCTION__))
;
2752
2753 SDValue N;
2754 MVT SVT = VecVT.getSimpleVT();
2755 uint64_t W = CW->getZExtValue();
2756
2757 if (W == 1) {
2758 MVT LocVT = MVT::getIntegerVT(SVT.getSizeInBits());
2759 SDValue VecCast = DAG.getNode(ISD::BITCAST, dl, LocVT, Vec);
2760 SDValue Shifted = DAG.getNode(ISD::SRA, dl, LocVT, VecCast, Offset);
2761 return DAG.getNode(ISD::AND, dl, LocVT, Shifted,
2762 DAG.getConstant(1, dl, LocVT));
2763 } else if (W == 32) {
2764 // Translate this node into EXTRACT_SUBREG.
2765 unsigned Subreg = (X == 0) ? Hexagon::isub_lo : 0;
Value stored to 'Subreg' during its initialization is never read
2766
2767 if (X == 0)
2768 Subreg = Hexagon::isub_lo;
2769 else if (SVT == MVT::v2i32 && X == 1)
2770 Subreg = Hexagon::isub_hi;
2771 else if (SVT == MVT::v4i16 && X == 2)
2772 Subreg = Hexagon::isub_hi;
2773 else if (SVT == MVT::v8i8 && X == 4)
2774 Subreg = Hexagon::isub_hi;
2775 else
2776 llvm_unreachable("Bad offset")::llvm::llvm_unreachable_internal("Bad offset", "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2776)
;
2777 N = DAG.getTargetExtractSubreg(Subreg, dl, MVT::i32, Vec);
2778
2779 } else if (SVT.getSizeInBits() == 32) {
2780 N = DAG.getNode(HexagonISD::EXTRACTU, dl, MVT::i32, Ops);
2781 } else if (SVT.getSizeInBits() == 64) {
2782 N = DAG.getNode(HexagonISD::EXTRACTU, dl, MVT::i64, Ops);
2783 if (VT.getSizeInBits() == 32)
2784 N = DAG.getTargetExtractSubreg(Hexagon::isub_lo, dl, MVT::i32, N);
2785 } else
2786 return SDValue();
2787
2788 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2789 }
2790
2791 // Variable element number.
2792 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i32, Idx,
2793 DAG.getConstant(EltSize, dl, MVT::i32));
2794 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
2795 DAG.getConstant(32, dl, MVT::i64));
2796 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2797
2798 const SDValue Ops[] = {Vec, Combined};
2799
2800 SDValue N;
2801 if (VecVT.getSizeInBits() == 32) {
2802 N = DAG.getNode(HexagonISD::EXTRACTURP, dl, MVT::i32, Ops);
2803 } else {
2804 N = DAG.getNode(HexagonISD::EXTRACTURP, dl, MVT::i64, Ops);
2805 if (VT.getSizeInBits() == 32)
2806 N = DAG.getTargetExtractSubreg(Hexagon::isub_lo, dl, MVT::i32, N);
2807 }
2808 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2809}
2810
2811SDValue
2812HexagonTargetLowering::LowerINSERT_VECTOR(SDValue Op,
2813 SelectionDAG &DAG) const {
2814 EVT VT = Op.getValueType();
2815 int VTN = VT.isVector() ? VT.getVectorNumElements() : 1;
2816 SDLoc dl(Op);
2817 SDValue Vec = Op.getOperand(0);
2818 SDValue Val = Op.getOperand(1);
2819 SDValue Idx = Op.getOperand(2);
2820 EVT VecVT = Vec.getValueType();
2821 EVT EltVT = VecVT.getVectorElementType();
2822 int EltSize = EltVT.getSizeInBits();
2823 SDValue Width = DAG.getConstant(Op.getOpcode() == ISD::INSERT_VECTOR_ELT ?
2824 EltSize : VTN * EltSize, dl, MVT::i64);
2825
2826 if (ConstantSDNode *C = cast<ConstantSDNode>(Idx)) {
2827 SDValue Offset = DAG.getConstant(C->getSExtValue() * EltSize, dl, MVT::i32);
2828 const SDValue Ops[] = {Vec, Val, Width, Offset};
2829
2830 SDValue N;
2831 if (VT.getSizeInBits() == 32)
2832 N = DAG.getNode(HexagonISD::INSERT, dl, MVT::i32, Ops);
2833 else if (VT.getSizeInBits() == 64)
2834 N = DAG.getNode(HexagonISD::INSERT, dl, MVT::i64, Ops);
2835 else
2836 return SDValue();
2837
2838 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2839 }
2840
2841 // Variable element number.
2842 SDValue Offset = DAG.getNode(ISD::MUL, dl, MVT::i32, Idx,
2843 DAG.getConstant(EltSize, dl, MVT::i32));
2844 SDValue Shifted = DAG.getNode(ISD::SHL, dl, MVT::i64, Width,
2845 DAG.getConstant(32, dl, MVT::i64));
2846 SDValue Combined = DAG.getNode(ISD::OR, dl, MVT::i64, Shifted, Offset);
2847
2848 if (VT.getSizeInBits() == 64 && Val.getValueSizeInBits() == 32) {
2849 SDValue C = DAG.getConstant(0, dl, MVT::i32);
2850 Val = DAG.getNode(HexagonISD::COMBINE, dl, VT, C, Val);
2851 }
2852
2853 const SDValue Ops[] = {Vec, Val, Combined};
2854
2855 SDValue N;
2856 if (VT.getSizeInBits() == 32)
2857 N = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i32, Ops);
2858 else if (VT.getSizeInBits() == 64)
2859 N = DAG.getNode(HexagonISD::INSERTRP, dl, MVT::i64, Ops);
2860 else
2861 return SDValue();
2862
2863 return DAG.getNode(ISD::BITCAST, dl, VT, N);
2864}
2865
2866bool
2867HexagonTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
2868 // Assuming the caller does not have either a signext or zeroext modifier, and
2869 // only one value is accepted, any reasonable truncation is allowed.
2870 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
2871 return false;
2872
2873 // FIXME: in principle up to 64-bit could be made safe, but it would be very
2874 // fragile at the moment: any support for multiple value returns would be
2875 // liable to disallow tail calls involving i64 -> iN truncation in many cases.
2876 return Ty1->getPrimitiveSizeInBits() <= 32;
2877}
2878
2879SDValue
2880HexagonTargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
2881 SDValue Chain = Op.getOperand(0);
2882 SDValue Offset = Op.getOperand(1);
2883 SDValue Handler = Op.getOperand(2);
2884 SDLoc dl(Op);
2885 auto PtrVT = getPointerTy(DAG.getDataLayout());
2886
2887 // Mark function as containing a call to EH_RETURN.
2888 HexagonMachineFunctionInfo *FuncInfo =
2889 DAG.getMachineFunction().getInfo<HexagonMachineFunctionInfo>();
2890 FuncInfo->setHasEHReturn();
2891
2892 unsigned OffsetReg = Hexagon::R28;
2893
2894 SDValue StoreAddr =
2895 DAG.getNode(ISD::ADD, dl, PtrVT, DAG.getRegister(Hexagon::R30, PtrVT),
2896 DAG.getIntPtrConstant(4, dl));
2897 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo());
2898 Chain = DAG.getCopyToReg(Chain, dl, OffsetReg, Offset);
2899
2900 // Not needed we already use it as explict input to EH_RETURN.
2901 // MF.getRegInfo().addLiveOut(OffsetReg);
2902
2903 return DAG.getNode(HexagonISD::EH_RETURN, dl, MVT::Other, Chain);
2904}
2905
2906SDValue
2907HexagonTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
2908 unsigned Opc = Op.getOpcode();
2909 switch (Opc) {
2910 default:
2911#ifndef NDEBUG
2912 Op.getNode()->dumpr(&DAG);
2913 if (Opc > HexagonISD::OP_BEGIN && Opc < HexagonISD::OP_END)
2914 errs() << "Check for a non-legal type in this operation\n";
2915#endif
2916 llvm_unreachable("Should not custom lower this!")::llvm::llvm_unreachable_internal("Should not custom lower this!"
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 2916)
;
2917 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
2918 case ISD::INSERT_SUBVECTOR: return LowerINSERT_VECTOR(Op, DAG);
2919 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR(Op, DAG);
2920 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_VECTOR(Op, DAG);
2921 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR(Op, DAG);
2922 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
2923 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
2924 case ISD::SRA:
2925 case ISD::SHL:
2926 case ISD::SRL: return LowerVECTOR_SHIFT(Op, DAG);
2927 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
2928 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
2929 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
2930 // Frame & Return address. Currently unimplemented.
2931 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
2932 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
2933 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
2934 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG);
2935 case ISD::GlobalAddress: return LowerGLOBALADDRESS(Op, DAG);
2936 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
2937 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
2938 case ISD::VASTART: return LowerVASTART(Op, DAG);
2939 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
2940 case ISD::SETCC: return LowerSETCC(Op, DAG);
2941 case ISD::VSELECT: return LowerVSELECT(Op, DAG);
2942 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
2943 case ISD::INTRINSIC_VOID: return LowerINTRINSIC_VOID(Op, DAG);
2944 case ISD::INLINEASM: return LowerINLINEASM(Op, DAG);
2945 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG);
2946 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
2947 }
2948}
2949
2950/// Returns relocation base for the given PIC jumptable.
2951SDValue
2952HexagonTargetLowering::getPICJumpTableRelocBase(SDValue Table,
2953 SelectionDAG &DAG) const {
2954 int Idx = cast<JumpTableSDNode>(Table)->getIndex();
2955 EVT VT = Table.getValueType();
2956 SDValue T = DAG.getTargetJumpTable(Idx, VT, HexagonII::MO_PCREL);
2957 return DAG.getNode(HexagonISD::AT_PCREL, SDLoc(Table), VT, T);
2958}
2959
2960//===----------------------------------------------------------------------===//
2961// Inline Assembly Support
2962//===----------------------------------------------------------------------===//
2963
2964TargetLowering::ConstraintType
2965HexagonTargetLowering::getConstraintType(StringRef Constraint) const {
2966 if (Constraint.size() == 1) {
2967 switch (Constraint[0]) {
2968 case 'q':
2969 case 'v':
2970 if (Subtarget.useHVXOps())
2971 return C_RegisterClass;
2972 break;
2973 case 'a':
2974 return C_RegisterClass;
2975 default:
2976 break;
2977 }
2978 }
2979 return TargetLowering::getConstraintType(Constraint);
2980}
2981
2982std::pair<unsigned, const TargetRegisterClass*>
2983HexagonTargetLowering::getRegForInlineAsmConstraint(
2984 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
2985
2986 if (Constraint.size() == 1) {
2987 switch (Constraint[0]) {
2988 case 'r': // R0-R31
2989 switch (VT.SimpleTy) {
2990 default:
2991 return {0u, nullptr};
2992 case MVT::i1:
2993 case MVT::i8:
2994 case MVT::i16:
2995 case MVT::i32:
2996 case MVT::f32:
2997 return {0u, &Hexagon::IntRegsRegClass};
2998 case MVT::i64:
2999 case MVT::f64:
3000 return {0u, &Hexagon::DoubleRegsRegClass};
3001 }
3002 break;
3003 case 'a': // M0-M1
3004 if (VT != MVT::i32)
3005 return {0u, nullptr};
3006 return {0u, &Hexagon::ModRegsRegClass};
3007 case 'q': // q0-q3
3008 switch (VT.getSizeInBits()) {
3009 default:
3010 return {0u, nullptr};
3011 case 512:
3012 case 1024:
3013 return {0u, &Hexagon::HvxQRRegClass};
3014 }
3015 break;
3016 case 'v': // V0-V31
3017 switch (VT.getSizeInBits()) {
3018 default:
3019 return {0u, nullptr};
3020 case 512:
3021 return {0u, &Hexagon::HvxVRRegClass};
3022 case 1024:
3023 if (Subtarget.hasV60TOps() && Subtarget.useHVX128BOps())
3024 return {0u, &Hexagon::HvxVRRegClass};
3025 return {0u, &Hexagon::HvxWRRegClass};
3026 case 2048:
3027 return {0u, &Hexagon::HvxWRRegClass};
3028 }
3029 break;
3030 default:
3031 return {0u, nullptr};
3032 }
3033 }
3034
3035 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
3036}
3037
3038/// isFPImmLegal - Returns true if the target can instruction select the
3039/// specified FP immediate natively. If false, the legalizer will
3040/// materialize the FP immediate as a load from a constant pool.
3041bool HexagonTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3042 return Subtarget.hasV5TOps();
3043}
3044
3045/// isLegalAddressingMode - Return true if the addressing mode represented by
3046/// AM is legal for this target, for a load/store of the specified type.
3047bool HexagonTargetLowering::isLegalAddressingMode(const DataLayout &DL,
3048 const AddrMode &AM, Type *Ty,
3049 unsigned AS, Instruction *I) const {
3050 if (Ty->isSized()) {
3051 // When LSR detects uses of the same base address to access different
3052 // types (e.g. unions), it will assume a conservative type for these
3053 // uses:
3054 // LSR Use: Kind=Address of void in addrspace(4294967295), ...
3055 // The type Ty passed here would then be "void". Skip the alignment
3056 // checks, but do not return false right away, since that confuses
3057 // LSR into crashing.
3058 unsigned A = DL.getABITypeAlignment(Ty);
3059 // The base offset must be a multiple of the alignment.
3060 if ((AM.BaseOffs % A) != 0)
3061 return false;
3062 // The shifted offset must fit in 11 bits.
3063 if (!isInt<11>(AM.BaseOffs >> Log2_32(A)))
3064 return false;
3065 }
3066
3067 // No global is ever allowed as a base.
3068 if (AM.BaseGV)
3069 return false;
3070
3071 int Scale = AM.Scale;
3072 if (Scale < 0)
3073 Scale = -Scale;
3074 switch (Scale) {
3075 case 0: // No scale reg, "r+i", "r", or just "i".
3076 break;
3077 default: // No scaled addressing mode.
3078 return false;
3079 }
3080 return true;
3081}
3082
3083/// Return true if folding a constant offset with the given GlobalAddress is
3084/// legal. It is frequently not legal in PIC relocation models.
3085bool HexagonTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA)
3086 const {
3087 return HTM.getRelocationModel() == Reloc::Static;
3088}
3089
3090/// isLegalICmpImmediate - Return true if the specified immediate is legal
3091/// icmp immediate, that is the target has icmp instructions which can compare
3092/// a register against the immediate without having to materialize the
3093/// immediate into a register.
3094bool HexagonTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
3095 return Imm >= -512 && Imm <= 511;
3096}
3097
3098/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3099/// for tail call optimization. Targets which want to do tail call
3100/// optimization should implement this function.
3101bool HexagonTargetLowering::IsEligibleForTailCallOptimization(
3102 SDValue Callee,
3103 CallingConv::ID CalleeCC,
3104 bool isVarArg,
3105 bool isCalleeStructRet,
3106 bool isCallerStructRet,
3107 const SmallVectorImpl<ISD::OutputArg> &Outs,
3108 const SmallVectorImpl<SDValue> &OutVals,
3109 const SmallVectorImpl<ISD::InputArg> &Ins,
3110 SelectionDAG& DAG) const {
3111 const Function *CallerF = DAG.getMachineFunction().getFunction();
3112 CallingConv::ID CallerCC = CallerF->getCallingConv();
3113 bool CCMatch = CallerCC == CalleeCC;
3114
3115 // ***************************************************************************
3116 // Look for obvious safe cases to perform tail call optimization that do not
3117 // require ABI changes.
3118 // ***************************************************************************
3119
3120 // If this is a tail call via a function pointer, then don't do it!
3121 if (!isa<GlobalAddressSDNode>(Callee) &&
3122 !isa<ExternalSymbolSDNode>(Callee)) {
3123 return false;
3124 }
3125
3126 // Do not optimize if the calling conventions do not match and the conventions
3127 // used are not C or Fast.
3128 if (!CCMatch) {
3129 bool R = (CallerCC == CallingConv::C || CallerCC == CallingConv::Fast);
3130 bool E = (CalleeCC == CallingConv::C || CalleeCC == CallingConv::Fast);
3131 // If R & E, then ok.
3132 if (!R || !E)
3133 return false;
3134 }
3135
3136 // Do not tail call optimize vararg calls.
3137 if (isVarArg)
3138 return false;
3139
3140 // Also avoid tail call optimization if either caller or callee uses struct
3141 // return semantics.
3142 if (isCalleeStructRet || isCallerStructRet)
3143 return false;
3144
3145 // In addition to the cases above, we also disable Tail Call Optimization if
3146 // the calling convention code that at least one outgoing argument needs to
3147 // go on the stack. We cannot check that here because at this point that
3148 // information is not available.
3149 return true;
3150}
3151
3152/// Returns the target specific optimal type for load and store operations as
3153/// a result of memset, memcpy, and memmove lowering.
3154///
3155/// If DstAlign is zero that means it's safe to destination alignment can
3156/// satisfy any constraint. Similarly if SrcAlign is zero it means there isn't
3157/// a need to check it against alignment requirement, probably because the
3158/// source does not need to be loaded. If 'IsMemset' is true, that means it's
3159/// expanding a memset. If 'ZeroMemset' is true, that means it's a memset of
3160/// zero. 'MemcpyStrSrc' indicates whether the memcpy source is constant so it
3161/// does not need to be loaded. It returns EVT::Other if the type should be
3162/// determined using generic target-independent logic.
3163EVT HexagonTargetLowering::getOptimalMemOpType(uint64_t Size,
3164 unsigned DstAlign, unsigned SrcAlign, bool IsMemset, bool ZeroMemset,
3165 bool MemcpyStrSrc, MachineFunction &MF) const {
3166
3167 auto Aligned = [](unsigned GivenA, unsigned MinA) -> bool {
3168 return (GivenA % MinA) == 0;
3169 };
3170
3171 if (Size >= 8 && Aligned(DstAlign, 8) && (IsMemset || Aligned(SrcAlign, 8)))
3172 return MVT::i64;
3173 if (Size >= 4 && Aligned(DstAlign, 4) && (IsMemset || Aligned(SrcAlign, 4)))
3174 return MVT::i32;
3175 if (Size >= 2 && Aligned(DstAlign, 2) && (IsMemset || Aligned(SrcAlign, 2)))
3176 return MVT::i16;
3177
3178 return MVT::Other;
3179}
3180
3181bool HexagonTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
3182 unsigned AS, unsigned Align, bool *Fast) const {
3183 if (Fast)
3184 *Fast = false;
3185
3186 switch (VT.getSimpleVT().SimpleTy) {
3187 default:
3188 return false;
3189 case MVT::v64i8:
3190 case MVT::v128i8:
3191 case MVT::v256i8:
3192 case MVT::v32i16:
3193 case MVT::v64i16:
3194 case MVT::v128i16:
3195 case MVT::v16i32:
3196 case MVT::v32i32:
3197 case MVT::v64i32:
3198 case MVT::v8i64:
3199 case MVT::v16i64:
3200 case MVT::v32i64:
3201 return true;
3202 }
3203 return false;
3204}
3205
3206std::pair<const TargetRegisterClass*, uint8_t>
3207HexagonTargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
3208 MVT VT) const {
3209 const TargetRegisterClass *RRC = nullptr;
3210
3211 uint8_t Cost = 1;
3212 switch (VT.SimpleTy) {
3213 default:
3214 return TargetLowering::findRepresentativeClass(TRI, VT);
3215 case MVT::v64i8:
3216 case MVT::v32i16:
3217 case MVT::v16i32:
3218 case MVT::v8i64:
3219 RRC = &Hexagon::HvxVRRegClass;
3220 break;
3221 case MVT::v128i8:
3222 case MVT::v64i16:
3223 case MVT::v32i32:
3224 case MVT::v16i64:
3225 if (Subtarget.hasV60TOps() && Subtarget.useHVXOps() &&
3226 Subtarget.useHVX128BOps())
3227 RRC = &Hexagon::HvxVRRegClass;
3228 else
3229 RRC = &Hexagon::HvxWRRegClass;
3230 break;
3231 case MVT::v256i8:
3232 case MVT::v128i16:
3233 case MVT::v64i32:
3234 case MVT::v32i64:
3235 RRC = &Hexagon::HvxWRRegClass;
3236 break;
3237 }
3238 return std::make_pair(RRC, Cost);
3239}
3240
3241Value *HexagonTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
3242 AtomicOrdering Ord) const {
3243 BasicBlock *BB = Builder.GetInsertBlock();
3244 Module *M = BB->getParent()->getParent();
3245 Type *Ty = cast<PointerType>(Addr->getType())->getElementType();
3246 unsigned SZ = Ty->getPrimitiveSizeInBits();
3247 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic loads supported")(static_cast <bool> ((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic loads supported"
) ? void (0) : __assert_fail ("(SZ == 32 || SZ == 64) && \"Only 32/64-bit atomic loads supported\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 3247, __extension__ __PRETTY_FUNCTION__))
;
3248 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_L2_loadw_locked
3249 : Intrinsic::hexagon_L4_loadd_locked;
3250 Value *Fn = Intrinsic::getDeclaration(M, IntID);
3251 return Builder.CreateCall(Fn, Addr, "larx");
3252}
3253
3254/// Perform a store-conditional operation to Addr. Return the status of the
3255/// store. This should be 0 if the store succeeded, non-zero otherwise.
3256Value *HexagonTargetLowering::emitStoreConditional(IRBuilder<> &Builder,
3257 Value *Val, Value *Addr, AtomicOrdering Ord) const {
3258 BasicBlock *BB = Builder.GetInsertBlock();
3259 Module *M = BB->getParent()->getParent();
3260 Type *Ty = Val->getType();
3261 unsigned SZ = Ty->getPrimitiveSizeInBits();
3262 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic stores supported")(static_cast <bool> ((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic stores supported"
) ? void (0) : __assert_fail ("(SZ == 32 || SZ == 64) && \"Only 32/64-bit atomic stores supported\""
, "/build/llvm-toolchain-snapshot-6.0~svn319013/lib/Target/Hexagon/HexagonISelLowering.cpp"
, 3262, __extension__ __PRETTY_FUNCTION__))
;
3263 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_S2_storew_locked
3264 : Intrinsic::hexagon_S4_stored_locked;
3265 Value *Fn = Intrinsic::getDeclaration(M, IntID);
3266 Value *Call = Builder.CreateCall(Fn, {Addr, Val}, "stcx");
3267 Value *Cmp = Builder.CreateICmpEQ(Call, Builder.getInt32(0), "");
3268 Value *Ext = Builder.CreateZExt(Cmp, Type::getInt32Ty(M->getContext()));
3269 return Ext;
3270}
3271
3272TargetLowering::AtomicExpansionKind
3273HexagonTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
3274 // Do not expand loads and stores that don't exceed 64 bits.
3275 return LI->getType()->getPrimitiveSizeInBits() > 64
3276 ? AtomicExpansionKind::LLOnly
3277 : AtomicExpansionKind::None;
3278}
3279
3280bool HexagonTargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
3281 // Do not expand loads and stores that don't exceed 64 bits.
3282 return SI->getValueOperand()->getType()->getPrimitiveSizeInBits() > 64;
3283}
3284
3285bool HexagonTargetLowering::shouldExpandAtomicCmpXchgInIR(
3286 AtomicCmpXchgInst *AI) const {
3287 const DataLayout &DL = AI->getModule()->getDataLayout();
3288 unsigned Size = DL.getTypeStoreSize(AI->getCompareOperand()->getType());
3289 return Size >= 4 && Size <= 8;
3290}