blob: a0184bfefd0315de1e44c6f60ff8061b6cf76010 [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- SIISelLowering.cpp - SI 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/// \file
11/// \brief Custom DAG lowering for SI
12//
13//===----------------------------------------------------------------------===//
14
NAKAMURA Takumi45e0a832014-07-20 11:15:07 +000015#ifdef _MSC_VER
16// Provide M_PI.
17#define _USE_MATH_DEFINES
18#include <cmath>
19#endif
20
Christian Konig99ee0f42013-03-07 09:04:14 +000021#include "AMDGPU.h"
Matt Arsenaultc791f392014-06-23 18:00:31 +000022#include "AMDGPUIntrinsicInfo.h"
Matt Arsenault41e2f2b2014-02-24 21:01:28 +000023#include "AMDGPUSubtarget.h"
Tom Stellard8485fa02016-12-07 02:42:15 +000024#include "SIDefines.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000025#include "SIISelLowering.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000026#include "SIInstrInfo.h"
27#include "SIMachineFunctionInfo.h"
28#include "SIRegisterInfo.h"
Alexey Samsonova253bf92014-08-27 19:36:53 +000029#include "llvm/ADT/BitVector.h"
Matt Arsenault9a10cea2016-01-26 04:29:24 +000030#include "llvm/ADT/StringSwitch.h"
Christian Konig2c8f6d52013-03-07 09:03:52 +000031#include "llvm/CodeGen/CallingConvLower.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
33#include "llvm/CodeGen/MachineRegisterInfo.h"
34#include "llvm/CodeGen/SelectionDAG.h"
Wei Ding07e03712016-07-28 16:42:13 +000035#include "llvm/CodeGen/Analysis.h"
Oliver Stannard7e7d9832016-02-02 13:52:43 +000036#include "llvm/IR/DiagnosticInfo.h"
Benjamin Kramerd78bb462013-05-23 17:10:37 +000037#include "llvm/IR/Function.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000038
39using namespace llvm;
40
Matt Arsenaultd486d3f2016-10-12 18:49:05 +000041static cl::opt<bool> EnableVGPRIndexMode(
42 "amdgpu-vgpr-index-mode",
43 cl::desc("Use GPR indexing mode instead of movrel for vector indexing"),
44 cl::init(false));
45
46
Tom Stellardf110f8f2016-04-14 16:27:03 +000047static unsigned findFirstFreeSGPR(CCState &CCInfo) {
48 unsigned NumSGPRs = AMDGPU::SGPR_32RegClass.getNumRegs();
49 for (unsigned Reg = 0; Reg < NumSGPRs; ++Reg) {
50 if (!CCInfo.isAllocated(AMDGPU::SGPR0 + Reg)) {
51 return AMDGPU::SGPR0 + Reg;
52 }
53 }
54 llvm_unreachable("Cannot allocate sgpr");
55}
56
Matt Arsenault43e92fe2016-06-24 06:30:11 +000057SITargetLowering::SITargetLowering(const TargetMachine &TM,
58 const SISubtarget &STI)
Eric Christopher7792e322015-01-30 23:24:40 +000059 : AMDGPUTargetLowering(TM, STI) {
Tom Stellard1bd80722014-04-30 15:31:33 +000060 addRegisterClass(MVT::i1, &AMDGPU::VReg_1RegClass);
Tom Stellard436780b2014-05-15 14:41:57 +000061 addRegisterClass(MVT::i64, &AMDGPU::SReg_64RegClass);
Christian Konig2214f142013-03-07 09:03:38 +000062
Marek Olsak79c05872016-11-25 17:37:09 +000063 addRegisterClass(MVT::i32, &AMDGPU::SReg_32_XM0RegClass);
Tom Stellard45c0b3a2015-01-07 20:59:25 +000064 addRegisterClass(MVT::f32, &AMDGPU::VGPR_32RegClass);
Tom Stellard75aadc22012-12-11 21:25:42 +000065
Tom Stellard436780b2014-05-15 14:41:57 +000066 addRegisterClass(MVT::f64, &AMDGPU::VReg_64RegClass);
67 addRegisterClass(MVT::v2i32, &AMDGPU::SReg_64RegClass);
68 addRegisterClass(MVT::v2f32, &AMDGPU::VReg_64RegClass);
Christian Konig2214f142013-03-07 09:03:38 +000069
Matt Arsenault61001bb2015-11-25 19:58:34 +000070 addRegisterClass(MVT::v2i64, &AMDGPU::SReg_128RegClass);
71 addRegisterClass(MVT::v2f64, &AMDGPU::SReg_128RegClass);
72
Tom Stellard436780b2014-05-15 14:41:57 +000073 addRegisterClass(MVT::v4i32, &AMDGPU::SReg_128RegClass);
74 addRegisterClass(MVT::v4f32, &AMDGPU::VReg_128RegClass);
Christian Konig2214f142013-03-07 09:03:38 +000075
Tom Stellardf0a21072014-11-18 20:39:39 +000076 addRegisterClass(MVT::v8i32, &AMDGPU::SReg_256RegClass);
Christian Konig2214f142013-03-07 09:03:38 +000077 addRegisterClass(MVT::v8f32, &AMDGPU::VReg_256RegClass);
78
Tom Stellardf0a21072014-11-18 20:39:39 +000079 addRegisterClass(MVT::v16i32, &AMDGPU::SReg_512RegClass);
Christian Konig2214f142013-03-07 09:03:38 +000080 addRegisterClass(MVT::v16f32, &AMDGPU::VReg_512RegClass);
Tom Stellard75aadc22012-12-11 21:25:42 +000081
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +000082 if (Subtarget->has16BitInsts()) {
Marek Olsak79c05872016-11-25 17:37:09 +000083 addRegisterClass(MVT::i16, &AMDGPU::SReg_32_XM0RegClass);
84 addRegisterClass(MVT::f16, &AMDGPU::SReg_32_XM0RegClass);
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +000085 }
Tom Stellard115a6152016-11-10 16:02:37 +000086
Eric Christopher23a3a7c2015-02-26 00:00:24 +000087 computeRegisterProperties(STI.getRegisterInfo());
Tom Stellard75aadc22012-12-11 21:25:42 +000088
Tom Stellard35bb18c2013-08-26 15:06:04 +000089 // We need to custom lower vector stores from local memory
Matt Arsenault71e66762016-05-21 02:27:49 +000090 setOperationAction(ISD::LOAD, MVT::v2i32, Custom);
Tom Stellard35bb18c2013-08-26 15:06:04 +000091 setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
Tom Stellardaf775432013-10-23 00:44:32 +000092 setOperationAction(ISD::LOAD, MVT::v8i32, Custom);
93 setOperationAction(ISD::LOAD, MVT::v16i32, Custom);
Matt Arsenault71e66762016-05-21 02:27:49 +000094 setOperationAction(ISD::LOAD, MVT::i1, Custom);
Matt Arsenault2b957b52016-05-02 20:07:26 +000095
Matt Arsenaultbcdfee72016-05-02 20:13:51 +000096 setOperationAction(ISD::STORE, MVT::v2i32, Custom);
Matt Arsenault71e66762016-05-21 02:27:49 +000097 setOperationAction(ISD::STORE, MVT::v4i32, Custom);
98 setOperationAction(ISD::STORE, MVT::v8i32, Custom);
99 setOperationAction(ISD::STORE, MVT::v16i32, Custom);
100 setOperationAction(ISD::STORE, MVT::i1, Custom);
Matt Arsenaultbcdfee72016-05-02 20:13:51 +0000101
Matt Arsenault71e66762016-05-21 02:27:49 +0000102 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
103 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
Matt Arsenault71e66762016-05-21 02:27:49 +0000104 setOperationAction(ISD::ConstantPool, MVT::v2i64, Expand);
105
106 setOperationAction(ISD::SELECT, MVT::i1, Promote);
Tom Stellard0ec134f2014-02-04 17:18:40 +0000107 setOperationAction(ISD::SELECT, MVT::i64, Custom);
Tom Stellardda99c6e2014-03-24 16:07:30 +0000108 setOperationAction(ISD::SELECT, MVT::f64, Promote);
109 AddPromotedToType(ISD::SELECT, MVT::f64, MVT::i64);
Tom Stellard81d871d2013-11-13 23:36:50 +0000110
Tom Stellard3ca1bfc2014-06-10 16:01:22 +0000111 setOperationAction(ISD::SELECT_CC, MVT::f32, Expand);
112 setOperationAction(ISD::SELECT_CC, MVT::i32, Expand);
113 setOperationAction(ISD::SELECT_CC, MVT::i64, Expand);
114 setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
Matt Arsenault71e66762016-05-21 02:27:49 +0000115 setOperationAction(ISD::SELECT_CC, MVT::i1, Expand);
Tom Stellard754f80f2013-04-05 23:31:51 +0000116
Tom Stellardd1efda82016-01-20 21:48:24 +0000117 setOperationAction(ISD::SETCC, MVT::i1, Promote);
Tom Stellard83747202013-07-18 21:43:53 +0000118 setOperationAction(ISD::SETCC, MVT::v2i1, Expand);
119 setOperationAction(ISD::SETCC, MVT::v4i1, Expand);
120
Matt Arsenault71e66762016-05-21 02:27:49 +0000121 setOperationAction(ISD::TRUNCATE, MVT::v2i32, Expand);
122 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Expand);
Matt Arsenaulte306a322014-10-21 16:25:08 +0000123
Matt Arsenault4e466652014-04-16 01:41:30 +0000124 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i1, Custom);
125 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i1, Custom);
Matt Arsenault4e466652014-04-16 01:41:30 +0000126 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom);
127 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i8, Custom);
Matt Arsenault4e466652014-04-16 01:41:30 +0000128 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom);
129 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i16, Custom);
Matt Arsenault4e466652014-04-16 01:41:30 +0000130 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::Other, Custom);
131
Tom Stellard9fa17912013-08-14 23:24:45 +0000132 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::f32, Custom);
Tom Stellard9fa17912013-08-14 23:24:45 +0000133 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::v4f32, Custom);
Matt Arsenaulta9dbdca2016-04-12 14:05:04 +0000134 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
135
Matt Arsenaulte54e1c32014-06-23 18:00:44 +0000136 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
Matt Arsenault71e66762016-05-21 02:27:49 +0000137 setOperationAction(ISD::BR_CC, MVT::i1, Expand);
Tom Stellardbc4497b2016-02-12 23:45:29 +0000138 setOperationAction(ISD::BR_CC, MVT::i32, Expand);
139 setOperationAction(ISD::BR_CC, MVT::i64, Expand);
140 setOperationAction(ISD::BR_CC, MVT::f32, Expand);
141 setOperationAction(ISD::BR_CC, MVT::f64, Expand);
Tom Stellardafcf12f2013-09-12 02:55:14 +0000142
Benjamin Kramer867bfc52015-03-07 17:41:00 +0000143 // We only support LOAD/STORE and vector manipulation ops for vectors
144 // with > 4 elements.
Matt Arsenault61001bb2015-11-25 19:58:34 +0000145 for (MVT VT : {MVT::v8i32, MVT::v8f32, MVT::v16i32, MVT::v16f32, MVT::v2i64, MVT::v2f64}) {
Tom Stellard967bf582014-02-13 23:34:15 +0000146 for (unsigned Op = 0; Op < ISD::BUILTIN_OP_END; ++Op) {
Matt Arsenault71e66762016-05-21 02:27:49 +0000147 switch (Op) {
Tom Stellard967bf582014-02-13 23:34:15 +0000148 case ISD::LOAD:
149 case ISD::STORE:
150 case ISD::BUILD_VECTOR:
151 case ISD::BITCAST:
152 case ISD::EXTRACT_VECTOR_ELT:
153 case ISD::INSERT_VECTOR_ELT:
Tom Stellard967bf582014-02-13 23:34:15 +0000154 case ISD::INSERT_SUBVECTOR:
155 case ISD::EXTRACT_SUBVECTOR:
Matt Arsenault61001bb2015-11-25 19:58:34 +0000156 case ISD::SCALAR_TO_VECTOR:
Tom Stellard967bf582014-02-13 23:34:15 +0000157 break;
Tom Stellardc0503db2014-08-09 01:06:56 +0000158 case ISD::CONCAT_VECTORS:
159 setOperationAction(Op, VT, Custom);
160 break;
Tom Stellard967bf582014-02-13 23:34:15 +0000161 default:
Matt Arsenaultd504a742014-05-15 21:44:05 +0000162 setOperationAction(Op, VT, Expand);
Tom Stellard967bf582014-02-13 23:34:15 +0000163 break;
164 }
165 }
166 }
167
Matt Arsenaultcb540bc2016-07-19 00:35:03 +0000168 // TODO: For dynamic 64-bit vector inserts/extracts, should emit a pseudo that
169 // is expanded to avoid having two separate loops in case the index is a VGPR.
170
Matt Arsenault61001bb2015-11-25 19:58:34 +0000171 // Most operations are naturally 32-bit vector operations. We only support
172 // load and store of i64 vectors, so promote v2i64 vector operations to v4i32.
173 for (MVT Vec64 : { MVT::v2i64, MVT::v2f64 }) {
174 setOperationAction(ISD::BUILD_VECTOR, Vec64, Promote);
175 AddPromotedToType(ISD::BUILD_VECTOR, Vec64, MVT::v4i32);
176
177 setOperationAction(ISD::EXTRACT_VECTOR_ELT, Vec64, Promote);
178 AddPromotedToType(ISD::EXTRACT_VECTOR_ELT, Vec64, MVT::v4i32);
179
180 setOperationAction(ISD::INSERT_VECTOR_ELT, Vec64, Promote);
181 AddPromotedToType(ISD::INSERT_VECTOR_ELT, Vec64, MVT::v4i32);
182
183 setOperationAction(ISD::SCALAR_TO_VECTOR, Vec64, Promote);
184 AddPromotedToType(ISD::SCALAR_TO_VECTOR, Vec64, MVT::v4i32);
185 }
186
Matt Arsenault71e66762016-05-21 02:27:49 +0000187 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i32, Expand);
188 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Expand);
189 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i32, Expand);
190 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16f32, Expand);
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +0000191
Tom Stellard354a43c2016-04-01 18:27:37 +0000192 // BUFFER/FLAT_ATOMIC_CMP_SWAP on GCN GPUs needs input marshalling,
193 // and output demarshalling
194 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
195 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
196
197 // We can't return success/failure, only the old value,
198 // let LLVM add the comparison
199 setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, MVT::i32, Expand);
200 setOperationAction(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, MVT::i64, Expand);
201
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000202 if (getSubtarget()->hasFlatAddressSpace()) {
Matt Arsenault99c14522016-04-25 19:27:24 +0000203 setOperationAction(ISD::ADDRSPACECAST, MVT::i32, Custom);
204 setOperationAction(ISD::ADDRSPACECAST, MVT::i64, Custom);
205 }
206
Matt Arsenault71e66762016-05-21 02:27:49 +0000207 setOperationAction(ISD::BSWAP, MVT::i32, Legal);
208 setOperationAction(ISD::BITREVERSE, MVT::i32, Legal);
209
210 // On SI this is s_memtime and s_memrealtime on VI.
211 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Legal);
Matt Arsenault0bb294b2016-06-17 22:27:03 +0000212 setOperationAction(ISD::TRAP, MVT::Other, Custom);
Matt Arsenault71e66762016-05-21 02:27:49 +0000213
214 setOperationAction(ISD::FMINNUM, MVT::f64, Legal);
215 setOperationAction(ISD::FMAXNUM, MVT::f64, Legal);
216
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000217 if (Subtarget->getGeneration() >= SISubtarget::SEA_ISLANDS) {
Matt Arsenault71e66762016-05-21 02:27:49 +0000218 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
219 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
220 setOperationAction(ISD::FRINT, MVT::f64, Legal);
221 }
222
223 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
224
225 setOperationAction(ISD::FSIN, MVT::f32, Custom);
226 setOperationAction(ISD::FCOS, MVT::f32, Custom);
227 setOperationAction(ISD::FDIV, MVT::f32, Custom);
228 setOperationAction(ISD::FDIV, MVT::f64, Custom);
229
Tom Stellard115a6152016-11-10 16:02:37 +0000230 if (Subtarget->has16BitInsts()) {
231 setOperationAction(ISD::Constant, MVT::i16, Legal);
232
233 setOperationAction(ISD::SMIN, MVT::i16, Legal);
234 setOperationAction(ISD::SMAX, MVT::i16, Legal);
235
236 setOperationAction(ISD::UMIN, MVT::i16, Legal);
237 setOperationAction(ISD::UMAX, MVT::i16, Legal);
238
239 setOperationAction(ISD::SETCC, MVT::i16, Promote);
240 AddPromotedToType(ISD::SETCC, MVT::i16, MVT::i32);
241
242 setOperationAction(ISD::SIGN_EXTEND, MVT::i16, Promote);
243 AddPromotedToType(ISD::SIGN_EXTEND, MVT::i16, MVT::i32);
244
245 setOperationAction(ISD::ROTR, MVT::i16, Promote);
246 setOperationAction(ISD::ROTL, MVT::i16, Promote);
247
248 setOperationAction(ISD::SDIV, MVT::i16, Promote);
249 setOperationAction(ISD::UDIV, MVT::i16, Promote);
250 setOperationAction(ISD::SREM, MVT::i16, Promote);
251 setOperationAction(ISD::UREM, MVT::i16, Promote);
252
253 setOperationAction(ISD::BSWAP, MVT::i16, Promote);
254 setOperationAction(ISD::BITREVERSE, MVT::i16, Promote);
255
256 setOperationAction(ISD::CTTZ, MVT::i16, Promote);
257 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16, Promote);
258 setOperationAction(ISD::CTLZ, MVT::i16, Promote);
259 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16, Promote);
260
261 setOperationAction(ISD::SELECT_CC, MVT::i16, Expand);
262
263 setOperationAction(ISD::BR_CC, MVT::i16, Expand);
264
265 setOperationAction(ISD::LOAD, MVT::i16, Custom);
266
267 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
268
Tom Stellard115a6152016-11-10 16:02:37 +0000269 setOperationAction(ISD::FP16_TO_FP, MVT::i16, Promote);
270 AddPromotedToType(ISD::FP16_TO_FP, MVT::i16, MVT::i32);
271 setOperationAction(ISD::FP_TO_FP16, MVT::i16, Promote);
272 AddPromotedToType(ISD::FP_TO_FP16, MVT::i16, MVT::i32);
Tom Stellardb4c8e8e2016-11-12 00:19:11 +0000273
Konstantin Zhuravlyov3f0cdc72016-11-17 04:00:46 +0000274 setOperationAction(ISD::FP_TO_SINT, MVT::i16, Promote);
275 setOperationAction(ISD::FP_TO_UINT, MVT::i16, Promote);
276 setOperationAction(ISD::SINT_TO_FP, MVT::i16, Promote);
277 setOperationAction(ISD::UINT_TO_FP, MVT::i16, Promote);
Tom Stellardb4c8e8e2016-11-12 00:19:11 +0000278
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000279 // F16 - Constant Actions.
280 setOperationAction(ISD::ConstantFP, MVT::f16, Custom);
281
282 // F16 - Load/Store Actions.
283 setOperationAction(ISD::LOAD, MVT::f16, Promote);
284 AddPromotedToType(ISD::LOAD, MVT::f16, MVT::i16);
285 setOperationAction(ISD::STORE, MVT::f16, Promote);
286 AddPromotedToType(ISD::STORE, MVT::f16, MVT::i16);
287
288 // F16 - VOP1 Actions.
Konstantin Zhuravlyovd709efb2016-11-17 04:28:37 +0000289 setOperationAction(ISD::FP_ROUND, MVT::f16, Custom);
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000290 setOperationAction(ISD::FCOS, MVT::f16, Promote);
291 setOperationAction(ISD::FSIN, MVT::f16, Promote);
Konstantin Zhuravlyov3f0cdc72016-11-17 04:00:46 +0000292 setOperationAction(ISD::FP_TO_SINT, MVT::f16, Promote);
293 setOperationAction(ISD::FP_TO_UINT, MVT::f16, Promote);
294 setOperationAction(ISD::SINT_TO_FP, MVT::f16, Promote);
295 setOperationAction(ISD::UINT_TO_FP, MVT::f16, Promote);
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000296
297 // F16 - VOP2 Actions.
Konstantin Zhuravlyov662e01d2016-11-17 03:49:01 +0000298 setOperationAction(ISD::BR_CC, MVT::f16, Expand);
Konstantin Zhuravlyov2a87a422016-11-16 03:16:26 +0000299 setOperationAction(ISD::SELECT_CC, MVT::f16, Expand);
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000300 setOperationAction(ISD::FMAXNUM, MVT::f16, Legal);
301 setOperationAction(ISD::FMINNUM, MVT::f16, Legal);
302 setOperationAction(ISD::FDIV, MVT::f16, Promote);
303
304 // F16 - VOP3 Actions.
305 setOperationAction(ISD::FMA, MVT::f16, Legal);
306 if (!Subtarget->hasFP16Denormals())
307 setOperationAction(ISD::FMAD, MVT::f16, Legal);
Tom Stellard115a6152016-11-10 16:02:37 +0000308 }
309
Matt Arsenault02cb0ff2014-09-29 14:59:34 +0000310 setTargetDAGCombine(ISD::FADD);
Matt Arsenault8675db12014-08-29 16:01:14 +0000311 setTargetDAGCombine(ISD::FSUB);
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +0000312 setTargetDAGCombine(ISD::FMINNUM);
313 setTargetDAGCombine(ISD::FMAXNUM);
Matt Arsenault5881f4e2015-06-09 00:52:37 +0000314 setTargetDAGCombine(ISD::SMIN);
315 setTargetDAGCombine(ISD::SMAX);
316 setTargetDAGCombine(ISD::UMIN);
317 setTargetDAGCombine(ISD::UMAX);
Tom Stellard75aadc22012-12-11 21:25:42 +0000318 setTargetDAGCombine(ISD::SETCC);
Matt Arsenaultd0101a22015-01-06 23:00:46 +0000319 setTargetDAGCombine(ISD::AND);
Matt Arsenaultf2290332015-01-06 23:00:39 +0000320 setTargetDAGCombine(ISD::OR);
Matt Arsenaultfa5f7672016-09-14 15:19:03 +0000321 setTargetDAGCombine(ISD::XOR);
Konstantin Zhuravlyovfda33ea2016-10-21 22:10:03 +0000322 setTargetDAGCombine(ISD::SINT_TO_FP);
Matt Arsenault364a6742014-06-11 17:50:44 +0000323 setTargetDAGCombine(ISD::UINT_TO_FP);
Matt Arsenault9cd90712016-04-14 01:42:16 +0000324 setTargetDAGCombine(ISD::FCANONICALIZE);
Matt Arsenault364a6742014-06-11 17:50:44 +0000325
Matt Arsenaultb2baffa2014-08-15 17:49:05 +0000326 // All memory operations. Some folding on the pointer operand is done to help
327 // matching the constant offsets in the addressing modes.
328 setTargetDAGCombine(ISD::LOAD);
329 setTargetDAGCombine(ISD::STORE);
330 setTargetDAGCombine(ISD::ATOMIC_LOAD);
331 setTargetDAGCombine(ISD::ATOMIC_STORE);
332 setTargetDAGCombine(ISD::ATOMIC_CMP_SWAP);
333 setTargetDAGCombine(ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
334 setTargetDAGCombine(ISD::ATOMIC_SWAP);
335 setTargetDAGCombine(ISD::ATOMIC_LOAD_ADD);
336 setTargetDAGCombine(ISD::ATOMIC_LOAD_SUB);
337 setTargetDAGCombine(ISD::ATOMIC_LOAD_AND);
338 setTargetDAGCombine(ISD::ATOMIC_LOAD_OR);
339 setTargetDAGCombine(ISD::ATOMIC_LOAD_XOR);
340 setTargetDAGCombine(ISD::ATOMIC_LOAD_NAND);
341 setTargetDAGCombine(ISD::ATOMIC_LOAD_MIN);
342 setTargetDAGCombine(ISD::ATOMIC_LOAD_MAX);
343 setTargetDAGCombine(ISD::ATOMIC_LOAD_UMIN);
344 setTargetDAGCombine(ISD::ATOMIC_LOAD_UMAX);
345
Christian Konigeecebd02013-03-26 14:04:02 +0000346 setSchedulingPreference(Sched::RegPressure);
Tom Stellard75aadc22012-12-11 21:25:42 +0000347}
348
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000349const SISubtarget *SITargetLowering::getSubtarget() const {
350 return static_cast<const SISubtarget *>(Subtarget);
351}
352
Tom Stellard0125f2a2013-06-25 02:39:35 +0000353//===----------------------------------------------------------------------===//
354// TargetLowering queries
355//===----------------------------------------------------------------------===//
356
Matt Arsenaulta9dbdca2016-04-12 14:05:04 +0000357bool SITargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
358 const CallInst &CI,
359 unsigned IntrID) const {
360 switch (IntrID) {
361 case Intrinsic::amdgcn_atomic_inc:
362 case Intrinsic::amdgcn_atomic_dec:
363 Info.opc = ISD::INTRINSIC_W_CHAIN;
364 Info.memVT = MVT::getVT(CI.getType());
365 Info.ptrVal = CI.getOperand(0);
366 Info.align = 0;
367 Info.vol = false;
368 Info.readMem = true;
369 Info.writeMem = true;
370 return true;
371 default:
372 return false;
373 }
374}
375
Matt Arsenaulte306a322014-10-21 16:25:08 +0000376bool SITargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &,
377 EVT) const {
378 // SI has some legal vector types, but no legal vector operations. Say no
379 // shuffles are legal in order to prefer scalarizing some vector operations.
380 return false;
381}
382
Tom Stellard70580f82015-07-20 14:28:41 +0000383bool SITargetLowering::isLegalFlatAddressingMode(const AddrMode &AM) const {
384 // Flat instructions do not have offsets, and only have the register
385 // address.
386 return AM.BaseOffs == 0 && (AM.Scale == 0 || AM.Scale == 1);
387}
388
Matt Arsenault711b3902015-08-07 20:18:34 +0000389bool SITargetLowering::isLegalMUBUFAddressingMode(const AddrMode &AM) const {
390 // MUBUF / MTBUF instructions have a 12-bit unsigned byte offset, and
391 // additionally can do r + r + i with addr64. 32-bit has more addressing
392 // mode options. Depending on the resource constant, it can also do
393 // (i64 r0) + (i32 r1) * (i14 i).
394 //
395 // Private arrays end up using a scratch buffer most of the time, so also
396 // assume those use MUBUF instructions. Scratch loads / stores are currently
397 // implemented as mubuf instructions with offen bit set, so slightly
398 // different than the normal addr64.
399 if (!isUInt<12>(AM.BaseOffs))
400 return false;
401
402 // FIXME: Since we can split immediate into soffset and immediate offset,
403 // would it make sense to allow any immediate?
404
405 switch (AM.Scale) {
406 case 0: // r + i or just i, depending on HasBaseReg.
407 return true;
408 case 1:
409 return true; // We have r + r or r + i.
410 case 2:
411 if (AM.HasBaseReg) {
412 // Reject 2 * r + r.
413 return false;
414 }
415
416 // Allow 2 * r as r + r
417 // Or 2 * r + i is allowed as r + r + i.
418 return true;
419 default: // Don't allow n * r
420 return false;
421 }
422}
423
Mehdi Amini0cdec1e2015-07-09 02:09:40 +0000424bool SITargetLowering::isLegalAddressingMode(const DataLayout &DL,
425 const AddrMode &AM, Type *Ty,
426 unsigned AS) const {
Matt Arsenault5015a892014-08-15 17:17:07 +0000427 // No global is ever allowed as a base.
428 if (AM.BaseGV)
429 return false;
430
Matt Arsenault73e06fa2015-06-04 16:17:42 +0000431 switch (AS) {
Matt Arsenault711b3902015-08-07 20:18:34 +0000432 case AMDGPUAS::GLOBAL_ADDRESS: {
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000433 if (Subtarget->getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
Tom Stellard70580f82015-07-20 14:28:41 +0000434 // Assume the we will use FLAT for all global memory accesses
435 // on VI.
436 // FIXME: This assumption is currently wrong. On VI we still use
437 // MUBUF instructions for the r + i addressing mode. As currently
438 // implemented, the MUBUF instructions only work on buffer < 4GB.
439 // It may be possible to support > 4GB buffers with MUBUF instructions,
440 // by setting the stride value in the resource descriptor which would
441 // increase the size limit to (stride * 4GB). However, this is risky,
442 // because it has never been validated.
443 return isLegalFlatAddressingMode(AM);
444 }
Matt Arsenault5015a892014-08-15 17:17:07 +0000445
Matt Arsenault711b3902015-08-07 20:18:34 +0000446 return isLegalMUBUFAddressingMode(AM);
Matt Arsenault73e06fa2015-06-04 16:17:42 +0000447 }
Matt Arsenault711b3902015-08-07 20:18:34 +0000448 case AMDGPUAS::CONSTANT_ADDRESS: {
449 // If the offset isn't a multiple of 4, it probably isn't going to be
450 // correctly aligned.
Matt Arsenault3cc1e002016-08-13 01:43:51 +0000451 // FIXME: Can we get the real alignment here?
Matt Arsenault711b3902015-08-07 20:18:34 +0000452 if (AM.BaseOffs % 4 != 0)
453 return isLegalMUBUFAddressingMode(AM);
454
455 // There are no SMRD extloads, so if we have to do a small type access we
456 // will use a MUBUF load.
457 // FIXME?: We also need to do this if unaligned, but we don't know the
458 // alignment here.
459 if (DL.getTypeStoreSize(Ty) < 4)
460 return isLegalMUBUFAddressingMode(AM);
461
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000462 if (Subtarget->getGeneration() == SISubtarget::SOUTHERN_ISLANDS) {
Matt Arsenault711b3902015-08-07 20:18:34 +0000463 // SMRD instructions have an 8-bit, dword offset on SI.
464 if (!isUInt<8>(AM.BaseOffs / 4))
465 return false;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000466 } else if (Subtarget->getGeneration() == SISubtarget::SEA_ISLANDS) {
Matt Arsenault711b3902015-08-07 20:18:34 +0000467 // On CI+, this can also be a 32-bit literal constant offset. If it fits
468 // in 8-bits, it can use a smaller encoding.
469 if (!isUInt<32>(AM.BaseOffs / 4))
470 return false;
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000471 } else if (Subtarget->getGeneration() == SISubtarget::VOLCANIC_ISLANDS) {
Matt Arsenault711b3902015-08-07 20:18:34 +0000472 // On VI, these use the SMEM format and the offset is 20-bit in bytes.
473 if (!isUInt<20>(AM.BaseOffs))
474 return false;
475 } else
476 llvm_unreachable("unhandled generation");
477
478 if (AM.Scale == 0) // r + i or just i, depending on HasBaseReg.
479 return true;
480
481 if (AM.Scale == 1 && AM.HasBaseReg)
482 return true;
483
484 return false;
485 }
486
487 case AMDGPUAS::PRIVATE_ADDRESS:
Matt Arsenault711b3902015-08-07 20:18:34 +0000488 return isLegalMUBUFAddressingMode(AM);
489
Matt Arsenault73e06fa2015-06-04 16:17:42 +0000490 case AMDGPUAS::LOCAL_ADDRESS:
491 case AMDGPUAS::REGION_ADDRESS: {
492 // Basic, single offset DS instructions allow a 16-bit unsigned immediate
493 // field.
494 // XXX - If doing a 4-byte aligned 8-byte type access, we effectively have
495 // an 8-bit dword offset but we don't know the alignment here.
496 if (!isUInt<16>(AM.BaseOffs))
Matt Arsenault5015a892014-08-15 17:17:07 +0000497 return false;
Matt Arsenault73e06fa2015-06-04 16:17:42 +0000498
499 if (AM.Scale == 0) // r + i or just i, depending on HasBaseReg.
500 return true;
501
502 if (AM.Scale == 1 && AM.HasBaseReg)
503 return true;
504
Matt Arsenault5015a892014-08-15 17:17:07 +0000505 return false;
506 }
Tom Stellard70580f82015-07-20 14:28:41 +0000507 case AMDGPUAS::FLAT_ADDRESS:
Matt Arsenault7d1b6c82016-04-29 06:25:10 +0000508 case AMDGPUAS::UNKNOWN_ADDRESS_SPACE:
509 // For an unknown address space, this usually means that this is for some
510 // reason being used for pure arithmetic, and not based on some addressing
511 // computation. We don't have instructions that compute pointers with any
512 // addressing modes, so treat them as having no offset like flat
513 // instructions.
Tom Stellard70580f82015-07-20 14:28:41 +0000514 return isLegalFlatAddressingMode(AM);
515
Matt Arsenault73e06fa2015-06-04 16:17:42 +0000516 default:
517 llvm_unreachable("unhandled address space");
518 }
Matt Arsenault5015a892014-08-15 17:17:07 +0000519}
520
Matt Arsenaulte6986632015-01-14 01:35:22 +0000521bool SITargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000522 unsigned AddrSpace,
523 unsigned Align,
524 bool *IsFast) const {
Matt Arsenault1018c892014-04-24 17:08:26 +0000525 if (IsFast)
526 *IsFast = false;
527
Matt Arsenault1018c892014-04-24 17:08:26 +0000528 // TODO: I think v3i32 should allow unaligned accesses on CI with DS_READ_B96,
529 // which isn't a simple VT.
Alina Sbirlea6f937b12016-08-04 16:38:44 +0000530 // Until MVT is extended to handle this, simply check for the size and
531 // rely on the condition below: allow accesses if the size is a multiple of 4.
532 if (VT == MVT::Other || (VT != MVT::Other && VT.getSizeInBits() > 1024 &&
533 VT.getStoreSize() > 16)) {
Tom Stellard81d871d2013-11-13 23:36:50 +0000534 return false;
Alina Sbirlea6f937b12016-08-04 16:38:44 +0000535 }
Matt Arsenault1018c892014-04-24 17:08:26 +0000536
Matt Arsenault7f681ac2016-07-01 23:03:44 +0000537 if (AddrSpace == AMDGPUAS::LOCAL_ADDRESS ||
538 AddrSpace == AMDGPUAS::REGION_ADDRESS) {
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000539 // ds_read/write_b64 require 8-byte alignment, but we can do a 4 byte
540 // aligned, 8 byte access in a single operation using ds_read2/write2_b32
541 // with adjacent offsets.
Sanjay Patelce74db92015-09-03 15:03:19 +0000542 bool AlignedBy4 = (Align % 4 == 0);
543 if (IsFast)
544 *IsFast = AlignedBy4;
Matt Arsenault7f681ac2016-07-01 23:03:44 +0000545
Sanjay Patelce74db92015-09-03 15:03:19 +0000546 return AlignedBy4;
Matt Arsenault6f2a5262014-07-27 17:46:40 +0000547 }
Matt Arsenault1018c892014-04-24 17:08:26 +0000548
Tom Stellard64a9d082016-10-14 18:10:39 +0000549 // FIXME: We have to be conservative here and assume that flat operations
550 // will access scratch. If we had access to the IR function, then we
551 // could determine if any private memory was used in the function.
552 if (!Subtarget->hasUnalignedScratchAccess() &&
553 (AddrSpace == AMDGPUAS::PRIVATE_ADDRESS ||
554 AddrSpace == AMDGPUAS::FLAT_ADDRESS)) {
555 return false;
556 }
557
Matt Arsenault7f681ac2016-07-01 23:03:44 +0000558 if (Subtarget->hasUnalignedBufferAccess()) {
559 // If we have an uniform constant load, it still requires using a slow
560 // buffer instruction if unaligned.
561 if (IsFast) {
562 *IsFast = (AddrSpace == AMDGPUAS::CONSTANT_ADDRESS) ?
563 (Align % 4 == 0) : true;
564 }
565
566 return true;
567 }
568
Tom Stellard33e64c62015-02-04 20:49:52 +0000569 // Smaller than dword value must be aligned.
Tom Stellard33e64c62015-02-04 20:49:52 +0000570 if (VT.bitsLT(MVT::i32))
571 return false;
572
Matt Arsenault1018c892014-04-24 17:08:26 +0000573 // 8.1.6 - For Dword or larger reads or writes, the two LSBs of the
574 // byte-address are ignored, thus forcing Dword alignment.
Tom Stellarde812f2f2014-07-21 15:45:06 +0000575 // This applies to private, global, and constant memory.
Matt Arsenault1018c892014-04-24 17:08:26 +0000576 if (IsFast)
577 *IsFast = true;
Tom Stellardc6b299c2015-02-02 18:02:28 +0000578
579 return VT.bitsGT(MVT::i32) && Align % 4 == 0;
Tom Stellard0125f2a2013-06-25 02:39:35 +0000580}
581
Matt Arsenault46645fa2014-07-28 17:49:26 +0000582EVT SITargetLowering::getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
583 unsigned SrcAlign, bool IsMemset,
584 bool ZeroMemset,
585 bool MemcpyStrSrc,
586 MachineFunction &MF) const {
587 // FIXME: Should account for address space here.
588
589 // The default fallback uses the private pointer size as a guess for a type to
590 // use. Make sure we switch these to 64-bit accesses.
591
592 if (Size >= 16 && DstAlign >= 4) // XXX: Should only do for global
593 return MVT::v4i32;
594
595 if (Size >= 8 && DstAlign >= 4)
596 return MVT::v2i32;
597
598 // Use the default.
599 return MVT::Other;
600}
601
Matt Arsenaultf9bfeaf2015-12-01 23:04:00 +0000602static bool isFlatGlobalAddrSpace(unsigned AS) {
603 return AS == AMDGPUAS::GLOBAL_ADDRESS ||
Matt Arsenaultd4da0ed2016-12-02 18:12:53 +0000604 AS == AMDGPUAS::FLAT_ADDRESS ||
605 AS == AMDGPUAS::CONSTANT_ADDRESS;
Matt Arsenaultf9bfeaf2015-12-01 23:04:00 +0000606}
607
608bool SITargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
609 unsigned DestAS) const {
Matt Arsenault37fefd62016-06-10 02:18:02 +0000610 return isFlatGlobalAddrSpace(SrcAS) && isFlatGlobalAddrSpace(DestAS);
Matt Arsenaultf9bfeaf2015-12-01 23:04:00 +0000611}
612
Alexander Timofeev18009562016-12-08 17:28:47 +0000613bool SITargetLowering::isMemOpHasNoClobberedMemOperand(const SDNode *N) const {
614 const MemSDNode *MemNode = cast<MemSDNode>(N);
615 const Value *Ptr = MemNode->getMemOperand()->getValue();
616 const Instruction *I = dyn_cast<Instruction>(Ptr);
617 return I && I->getMetadata("amdgpu.noclobber");
618}
619
Matt Arsenaultd4da0ed2016-12-02 18:12:53 +0000620bool SITargetLowering::isCheapAddrSpaceCast(unsigned SrcAS,
621 unsigned DestAS) const {
622 // Flat -> private/local is a simple truncate.
623 // Flat -> global is no-op
624 if (SrcAS == AMDGPUAS::FLAT_ADDRESS)
625 return true;
626
627 return isNoopAddrSpaceCast(SrcAS, DestAS);
628}
629
Tom Stellarda6f24c62015-12-15 20:55:55 +0000630bool SITargetLowering::isMemOpUniform(const SDNode *N) const {
631 const MemSDNode *MemNode = cast<MemSDNode>(N);
632 const Value *Ptr = MemNode->getMemOperand()->getValue();
633
634 // UndefValue means this is a load of a kernel input. These are uniform.
Tom Stellard418beb72016-07-13 14:23:33 +0000635 // Sometimes LDS instructions have constant pointers.
636 // If Ptr is null, then that means this mem operand contains a
637 // PseudoSourceValue like GOT.
638 if (!Ptr || isa<UndefValue>(Ptr) || isa<Argument>(Ptr) ||
639 isa<Constant>(Ptr) || isa<GlobalValue>(Ptr))
Tom Stellarda6f24c62015-12-15 20:55:55 +0000640 return true;
641
Tom Stellard418beb72016-07-13 14:23:33 +0000642 const Instruction *I = dyn_cast<Instruction>(Ptr);
Tom Stellarda6f24c62015-12-15 20:55:55 +0000643 return I && I->getMetadata("amdgpu.uniform");
644}
645
Chandler Carruth9d010ff2014-07-03 00:23:43 +0000646TargetLoweringBase::LegalizeTypeAction
647SITargetLowering::getPreferredVectorAction(EVT VT) const {
648 if (VT.getVectorNumElements() != 1 && VT.getScalarType().bitsLE(MVT::i16))
649 return TypeSplitVector;
650
651 return TargetLoweringBase::getPreferredVectorAction(VT);
Tom Stellardd86003e2013-08-14 23:25:00 +0000652}
Tom Stellard0125f2a2013-06-25 02:39:35 +0000653
Matt Arsenaultd7bdcc42014-03-31 19:54:27 +0000654bool SITargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
655 Type *Ty) const {
Matt Arsenault749035b2016-07-30 01:40:36 +0000656 // FIXME: Could be smarter if called for vector constants.
657 return true;
Matt Arsenaultd7bdcc42014-03-31 19:54:27 +0000658}
659
Tom Stellard2e045bb2016-01-20 00:13:22 +0000660bool SITargetLowering::isTypeDesirableForOp(unsigned Op, EVT VT) const {
661
Konstantin Zhuravlyove14df4b2016-09-28 20:05:39 +0000662 // i16 is not desirable unless it is a load or a store.
663 if (VT == MVT::i16 && Op != ISD::LOAD && Op != ISD::STORE)
664 return false;
665
Tom Stellard2e045bb2016-01-20 00:13:22 +0000666 // SimplifySetCC uses this function to determine whether or not it should
667 // create setcc with i1 operands. We don't have instructions for i1 setcc.
668 if (VT == MVT::i1 && Op == ISD::SETCC)
669 return false;
670
671 return TargetLowering::isTypeDesirableForOp(Op, VT);
672}
673
Jan Veselyfea814d2016-06-21 20:46:20 +0000674SDValue SITargetLowering::LowerParameterPtr(SelectionDAG &DAG,
675 const SDLoc &SL, SDValue Chain,
676 unsigned Offset) const {
Mehdi Aminia749f2a2015-07-09 02:09:52 +0000677 const DataLayout &DL = DAG.getDataLayout();
Tom Stellardec2e43c2014-09-22 15:35:29 +0000678 MachineFunction &MF = DAG.getMachineFunction();
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000679 const SIRegisterInfo *TRI = getSubtarget()->getRegisterInfo();
Matt Arsenaultac234b62015-11-30 21:15:57 +0000680 unsigned InputPtrReg = TRI->getPreloadedValue(MF, SIRegisterInfo::KERNARG_SEGMENT_PTR);
Tom Stellard94593ee2013-06-03 17:40:18 +0000681
Matt Arsenault86033ca2014-07-28 17:31:39 +0000682 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
Mehdi Aminia749f2a2015-07-09 02:09:52 +0000683 MVT PtrVT = getPointerTy(DL, AMDGPUAS::CONSTANT_ADDRESS);
Matt Arsenaulta0269b62015-06-01 21:58:24 +0000684 SDValue BasePtr = DAG.getCopyFromReg(Chain, SL,
685 MRI.getLiveInVirtReg(InputPtrReg), PtrVT);
Jan Veselyfea814d2016-06-21 20:46:20 +0000686 return DAG.getNode(ISD::ADD, SL, PtrVT, BasePtr,
687 DAG.getConstant(Offset, SL, PtrVT));
688}
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000689
Jan Veselyfea814d2016-06-21 20:46:20 +0000690SDValue SITargetLowering::LowerParameter(SelectionDAG &DAG, EVT VT, EVT MemVT,
691 const SDLoc &SL, SDValue Chain,
692 unsigned Offset, bool Signed) const {
693 const DataLayout &DL = DAG.getDataLayout();
Tom Stellard083f1622016-10-17 16:56:19 +0000694 Type *Ty = MemVT.getTypeForEVT(*DAG.getContext());
Jan Veselyfea814d2016-06-21 20:46:20 +0000695 PointerType *PtrTy = PointerType::get(Ty, AMDGPUAS::CONSTANT_ADDRESS);
Matt Arsenault86033ca2014-07-28 17:31:39 +0000696 MachinePointerInfo PtrInfo(UndefValue::get(PtrTy));
697
Mehdi Aminia749f2a2015-07-09 02:09:52 +0000698 unsigned Align = DL.getABITypeAlignment(Ty);
Matt Arsenault81c7ae22015-06-04 16:00:27 +0000699
Jan Veselyfea814d2016-06-21 20:46:20 +0000700 SDValue Ptr = LowerParameterPtr(DAG, SL, Chain, Offset);
Tom Stellardbc6c5232016-10-17 16:21:45 +0000701 SDValue Load = DAG.getLoad(MemVT, SL, Chain, Ptr, PtrInfo, Align,
702 MachineMemOperand::MONonTemporal |
703 MachineMemOperand::MODereferenceable |
704 MachineMemOperand::MOInvariant);
705
706 SDValue Val;
707 if (MemVT.isFloatingPoint())
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +0000708 Val = getFPExtOrFPTrunc(DAG, Load, SL, VT);
Tom Stellardbc6c5232016-10-17 16:21:45 +0000709 else if (Signed)
710 Val = DAG.getSExtOrTrunc(Load, SL, VT);
711 else
712 Val = DAG.getZExtOrTrunc(Load, SL, VT);
713
714 SDValue Ops[] = {
715 Val,
716 Load.getValue(1)
717 };
718
719 return DAG.getMergeValues(Ops, SL);
Tom Stellard94593ee2013-06-03 17:40:18 +0000720}
721
Christian Konig2c8f6d52013-03-07 09:03:52 +0000722SDValue SITargetLowering::LowerFormalArguments(
Eric Christopher7792e322015-01-30 23:24:40 +0000723 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
Benjamin Kramerbdc49562016-06-12 15:39:02 +0000724 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL,
725 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000726 const SIRegisterInfo *TRI = getSubtarget()->getRegisterInfo();
Christian Konig2c8f6d52013-03-07 09:03:52 +0000727
728 MachineFunction &MF = DAG.getMachineFunction();
729 FunctionType *FType = MF.getFunction()->getFunctionType();
Christian Konig99ee0f42013-03-07 09:04:14 +0000730 SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>();
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000731 const SISubtarget &ST = MF.getSubtarget<SISubtarget>();
Christian Konig2c8f6d52013-03-07 09:03:52 +0000732
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000733 if (Subtarget->isAmdHsaOS() && AMDGPU::isShader(CallConv)) {
Matt Arsenaultd48da142015-11-02 23:23:02 +0000734 const Function *Fn = MF.getFunction();
Oliver Stannard7e7d9832016-02-02 13:52:43 +0000735 DiagnosticInfoUnsupported NoGraphicsHSA(
736 *Fn, "unsupported non-compute shaders with HSA", DL.getDebugLoc());
Matt Arsenaultd48da142015-11-02 23:23:02 +0000737 DAG.getContext()->diagnose(NoGraphicsHSA);
Diana Picus81bc3172016-05-26 15:24:55 +0000738 return DAG.getEntryNode();
Matt Arsenaultd48da142015-11-02 23:23:02 +0000739 }
740
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +0000741 // Create stack objects that are used for emitting debugger prologue if
742 // "amdgpu-debugger-emit-prologue" attribute was specified.
743 if (ST.debuggerEmitPrologue())
744 createDebuggerPrologueStackObjects(MF);
745
Christian Konig2c8f6d52013-03-07 09:03:52 +0000746 SmallVector<ISD::InputArg, 16> Splits;
Alexey Samsonova253bf92014-08-27 19:36:53 +0000747 BitVector Skipped(Ins.size());
Christian Konig99ee0f42013-03-07 09:04:14 +0000748
749 for (unsigned i = 0, e = Ins.size(), PSInputNum = 0; i != e; ++i) {
Christian Konig2c8f6d52013-03-07 09:03:52 +0000750 const ISD::InputArg &Arg = Ins[i];
Matt Arsenault758659232013-05-18 00:21:46 +0000751
752 // First check if it's a PS input addr
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000753 if (CallConv == CallingConv::AMDGPU_PS && !Arg.Flags.isInReg() &&
Marek Olsakb6c8c3d2016-01-13 11:46:10 +0000754 !Arg.Flags.isByVal() && PSInputNum <= 15) {
Christian Konig99ee0f42013-03-07 09:04:14 +0000755
Marek Olsakfccabaf2016-01-13 11:45:36 +0000756 if (!Arg.Used && !Info->isPSInputAllocated(PSInputNum)) {
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000757 // We can safely skip PS inputs
Alexey Samsonova253bf92014-08-27 19:36:53 +0000758 Skipped.set(i);
Christian Konig99ee0f42013-03-07 09:04:14 +0000759 ++PSInputNum;
760 continue;
761 }
762
Marek Olsakfccabaf2016-01-13 11:45:36 +0000763 Info->markPSInputAllocated(PSInputNum);
764 if (Arg.Used)
765 Info->PSInputEna |= 1 << PSInputNum;
766
767 ++PSInputNum;
Christian Konig99ee0f42013-03-07 09:04:14 +0000768 }
769
Matt Arsenault539ca882016-05-05 20:27:02 +0000770 if (AMDGPU::isShader(CallConv)) {
771 // Second split vertices into their elements
772 if (Arg.VT.isVector()) {
773 ISD::InputArg NewArg = Arg;
774 NewArg.Flags.setSplit();
775 NewArg.VT = Arg.VT.getVectorElementType();
Christian Konig2c8f6d52013-03-07 09:03:52 +0000776
Matt Arsenault539ca882016-05-05 20:27:02 +0000777 // We REALLY want the ORIGINAL number of vertex elements here, e.g. a
778 // three or five element vertex only needs three or five registers,
779 // NOT four or eight.
780 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex());
781 unsigned NumElements = ParamType->getVectorNumElements();
Christian Konig2c8f6d52013-03-07 09:03:52 +0000782
Matt Arsenault539ca882016-05-05 20:27:02 +0000783 for (unsigned j = 0; j != NumElements; ++j) {
784 Splits.push_back(NewArg);
785 NewArg.PartOffset += NewArg.VT.getStoreSize();
786 }
787 } else {
788 Splits.push_back(Arg);
Christian Konig2c8f6d52013-03-07 09:03:52 +0000789 }
Christian Konig2c8f6d52013-03-07 09:03:52 +0000790 }
791 }
792
793 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +0000794 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
795 *DAG.getContext());
Christian Konig2c8f6d52013-03-07 09:03:52 +0000796
Christian Konig99ee0f42013-03-07 09:04:14 +0000797 // At least one interpolation mode must be enabled or else the GPU will hang.
Marek Olsakfccabaf2016-01-13 11:45:36 +0000798 //
799 // Check PSInputAddr instead of PSInputEna. The idea is that if the user set
800 // PSInputAddr, the user wants to enable some bits after the compilation
801 // based on run-time states. Since we can't know what the final PSInputEna
802 // will look like, so we shouldn't do anything here and the user should take
803 // responsibility for the correct programming.
Marek Olsak46dadbf2016-01-13 17:23:20 +0000804 //
805 // Otherwise, the following restrictions apply:
806 // - At least one of PERSP_* (0xF) or LINEAR_* (0x70) must be enabled.
807 // - If POS_W_FLOAT (11) is enabled, at least one of PERSP_* must be
808 // enabled too.
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000809 if (CallConv == CallingConv::AMDGPU_PS &&
Marek Olsak46dadbf2016-01-13 17:23:20 +0000810 ((Info->getPSInputAddr() & 0x7F) == 0 ||
NAKAMURA Takumife1202c2016-06-20 00:37:41 +0000811 ((Info->getPSInputAddr() & 0xF) == 0 && Info->isPSInputAllocated(11)))) {
Christian Konig99ee0f42013-03-07 09:04:14 +0000812 CCInfo.AllocateReg(AMDGPU::VGPR0);
813 CCInfo.AllocateReg(AMDGPU::VGPR1);
Marek Olsakfccabaf2016-01-13 11:45:36 +0000814 Info->markPSInputAllocated(0);
815 Info->PSInputEna |= 1;
Christian Konig99ee0f42013-03-07 09:04:14 +0000816 }
817
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +0000818 if (!AMDGPU::isShader(CallConv)) {
Tom Stellardf110f8f2016-04-14 16:27:03 +0000819 assert(Info->hasWorkGroupIDX() && Info->hasWorkItemIDX());
820 } else {
821 assert(!Info->hasPrivateSegmentBuffer() && !Info->hasDispatchPtr() &&
822 !Info->hasKernargSegmentPtr() && !Info->hasFlatScratchInit() &&
823 !Info->hasWorkGroupIDX() && !Info->hasWorkGroupIDY() &&
824 !Info->hasWorkGroupIDZ() && !Info->hasWorkGroupInfo() &&
825 !Info->hasWorkItemIDX() && !Info->hasWorkItemIDY() &&
826 !Info->hasWorkItemIDZ());
Tom Stellardaf775432013-10-23 00:44:32 +0000827 }
828
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000829 // FIXME: How should these inputs interact with inreg / custom SGPR inputs?
830 if (Info->hasPrivateSegmentBuffer()) {
831 unsigned PrivateSegmentBufferReg = Info->addPrivateSegmentBuffer(*TRI);
832 MF.addLiveIn(PrivateSegmentBufferReg, &AMDGPU::SReg_128RegClass);
833 CCInfo.AllocateReg(PrivateSegmentBufferReg);
834 }
835
836 if (Info->hasDispatchPtr()) {
837 unsigned DispatchPtrReg = Info->addDispatchPtr(*TRI);
Matt Arsenaultcdad3162016-11-29 19:39:48 +0000838 MF.addLiveIn(DispatchPtrReg, &AMDGPU::SGPR_64RegClass);
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000839 CCInfo.AllocateReg(DispatchPtrReg);
840 }
841
Matt Arsenault48ab5262016-04-25 19:27:18 +0000842 if (Info->hasQueuePtr()) {
843 unsigned QueuePtrReg = Info->addQueuePtr(*TRI);
Matt Arsenaultcdad3162016-11-29 19:39:48 +0000844 MF.addLiveIn(QueuePtrReg, &AMDGPU::SGPR_64RegClass);
Matt Arsenault48ab5262016-04-25 19:27:18 +0000845 CCInfo.AllocateReg(QueuePtrReg);
846 }
847
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000848 if (Info->hasKernargSegmentPtr()) {
849 unsigned InputPtrReg = Info->addKernargSegmentPtr(*TRI);
Matt Arsenaultcdad3162016-11-29 19:39:48 +0000850 MF.addLiveIn(InputPtrReg, &AMDGPU::SGPR_64RegClass);
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000851 CCInfo.AllocateReg(InputPtrReg);
852 }
853
Matt Arsenault8d718dc2016-07-22 17:01:30 +0000854 if (Info->hasDispatchID()) {
855 unsigned DispatchIDReg = Info->addDispatchID(*TRI);
Matt Arsenaultcdad3162016-11-29 19:39:48 +0000856 MF.addLiveIn(DispatchIDReg, &AMDGPU::SGPR_64RegClass);
Matt Arsenault8d718dc2016-07-22 17:01:30 +0000857 CCInfo.AllocateReg(DispatchIDReg);
858 }
859
Matt Arsenault296b8492016-02-12 06:31:30 +0000860 if (Info->hasFlatScratchInit()) {
861 unsigned FlatScratchInitReg = Info->addFlatScratchInit(*TRI);
Matt Arsenaultcdad3162016-11-29 19:39:48 +0000862 MF.addLiveIn(FlatScratchInitReg, &AMDGPU::SGPR_64RegClass);
Matt Arsenault296b8492016-02-12 06:31:30 +0000863 CCInfo.AllocateReg(FlatScratchInitReg);
864 }
865
Tom Stellardbbeb45a2016-09-16 21:53:00 +0000866 if (!AMDGPU::isShader(CallConv))
867 analyzeFormalArgumentsCompute(CCInfo, Ins);
868 else
869 AnalyzeFormalArguments(CCInfo, Splits);
Christian Konig2c8f6d52013-03-07 09:03:52 +0000870
Matt Arsenaultcf13d182015-07-10 22:51:36 +0000871 SmallVector<SDValue, 16> Chains;
872
Christian Konig2c8f6d52013-03-07 09:03:52 +0000873 for (unsigned i = 0, e = Ins.size(), ArgIdx = 0; i != e; ++i) {
874
Christian Konigb7be72d2013-05-17 09:46:48 +0000875 const ISD::InputArg &Arg = Ins[i];
Alexey Samsonova253bf92014-08-27 19:36:53 +0000876 if (Skipped[i]) {
Christian Konigb7be72d2013-05-17 09:46:48 +0000877 InVals.push_back(DAG.getUNDEF(Arg.VT));
Christian Konig99ee0f42013-03-07 09:04:14 +0000878 continue;
879 }
880
Christian Konig2c8f6d52013-03-07 09:03:52 +0000881 CCValAssign &VA = ArgLocs[ArgIdx++];
Craig Topper7f416c82014-11-16 21:17:18 +0000882 MVT VT = VA.getLocVT();
Tom Stellarded882c22013-06-03 17:40:11 +0000883
884 if (VA.isMemLoc()) {
Tom Stellardaf775432013-10-23 00:44:32 +0000885 VT = Ins[i].VT;
Tom Stellardbbeb45a2016-09-16 21:53:00 +0000886 EVT MemVT = VA.getLocVT();
Tom Stellardb5798b02015-06-26 21:15:03 +0000887 const unsigned Offset = Subtarget->getExplicitKernelArgOffset() +
888 VA.getLocMemOffset();
Tom Stellard94593ee2013-06-03 17:40:18 +0000889 // The first 36 bytes of the input buffer contains information about
890 // thread group and global sizes.
Matt Arsenault0d519732015-07-10 22:28:41 +0000891 SDValue Arg = LowerParameter(DAG, VT, MemVT, DL, Chain,
Jan Veselye5121f32014-10-14 20:05:26 +0000892 Offset, Ins[i].Flags.isSExt());
Matt Arsenaultcf13d182015-07-10 22:51:36 +0000893 Chains.push_back(Arg.getValue(1));
Tom Stellardca7ecf32014-08-22 18:49:31 +0000894
Craig Toppere3dcce92015-08-01 22:20:21 +0000895 auto *ParamTy =
Andrew Trick05938a52015-02-16 18:10:47 +0000896 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex()));
Matt Arsenault43e92fe2016-06-24 06:30:11 +0000897 if (Subtarget->getGeneration() == SISubtarget::SOUTHERN_ISLANDS &&
Tom Stellardca7ecf32014-08-22 18:49:31 +0000898 ParamTy && ParamTy->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS) {
899 // On SI local pointers are just offsets into LDS, so they are always
900 // less than 16-bits. On CI and newer they could potentially be
901 // real pointers, so we can't guarantee their size.
902 Arg = DAG.getNode(ISD::AssertZext, DL, Arg.getValueType(), Arg,
903 DAG.getValueType(MVT::i16));
904 }
905
Tom Stellarded882c22013-06-03 17:40:11 +0000906 InVals.push_back(Arg);
Matt Arsenault52ef4012016-07-26 16:45:58 +0000907 Info->setABIArgOffset(Offset + MemVT.getStoreSize());
Tom Stellarded882c22013-06-03 17:40:11 +0000908 continue;
909 }
Christian Konig2c8f6d52013-03-07 09:03:52 +0000910 assert(VA.isRegLoc() && "Parameter must be in a register!");
911
912 unsigned Reg = VA.getLocReg();
Christian Konig2c8f6d52013-03-07 09:03:52 +0000913
914 if (VT == MVT::i64) {
915 // For now assume it is a pointer
916 Reg = TRI->getMatchingSuperReg(Reg, AMDGPU::sub0,
Matt Arsenaultcdad3162016-11-29 19:39:48 +0000917 &AMDGPU::SGPR_64RegClass);
918 Reg = MF.addLiveIn(Reg, &AMDGPU::SGPR_64RegClass);
Matt Arsenaultcf13d182015-07-10 22:51:36 +0000919 SDValue Copy = DAG.getCopyFromReg(Chain, DL, Reg, VT);
920 InVals.push_back(Copy);
Christian Konig2c8f6d52013-03-07 09:03:52 +0000921 continue;
922 }
923
924 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg, VT);
925
926 Reg = MF.addLiveIn(Reg, RC);
927 SDValue Val = DAG.getCopyFromReg(Chain, DL, Reg, VT);
928
Christian Konig2c8f6d52013-03-07 09:03:52 +0000929 if (Arg.VT.isVector()) {
930
931 // Build a vector from the registers
Andrew Trick05938a52015-02-16 18:10:47 +0000932 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex());
Christian Konig2c8f6d52013-03-07 09:03:52 +0000933 unsigned NumElements = ParamType->getVectorNumElements();
934
935 SmallVector<SDValue, 4> Regs;
936 Regs.push_back(Val);
937 for (unsigned j = 1; j != NumElements; ++j) {
938 Reg = ArgLocs[ArgIdx++].getLocReg();
939 Reg = MF.addLiveIn(Reg, RC);
Matt Arsenaultcf13d182015-07-10 22:51:36 +0000940
941 SDValue Copy = DAG.getCopyFromReg(Chain, DL, Reg, VT);
942 Regs.push_back(Copy);
Christian Konig2c8f6d52013-03-07 09:03:52 +0000943 }
944
945 // Fill up the missing vector elements
946 NumElements = Arg.VT.getVectorNumElements() - NumElements;
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000947 Regs.append(NumElements, DAG.getUNDEF(VT));
Matt Arsenault758659232013-05-18 00:21:46 +0000948
Ahmed Bougacha128f8732016-04-26 21:15:30 +0000949 InVals.push_back(DAG.getBuildVector(Arg.VT, DL, Regs));
Christian Konig2c8f6d52013-03-07 09:03:52 +0000950 continue;
951 }
952
953 InVals.push_back(Val);
954 }
Tom Stellarde99fb652015-01-20 19:33:04 +0000955
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000956 // TODO: Add GridWorkGroupCount user SGPRs when used. For now with HSA we read
957 // these from the dispatch pointer.
958
959 // Start adding system SGPRs.
960 if (Info->hasWorkGroupIDX()) {
961 unsigned Reg = Info->addWorkGroupIDX();
Marek Olsak79c05872016-11-25 17:37:09 +0000962 MF.addLiveIn(Reg, &AMDGPU::SReg_32_XM0RegClass);
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000963 CCInfo.AllocateReg(Reg);
Tom Stellardf110f8f2016-04-14 16:27:03 +0000964 }
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000965
966 if (Info->hasWorkGroupIDY()) {
967 unsigned Reg = Info->addWorkGroupIDY();
Marek Olsak79c05872016-11-25 17:37:09 +0000968 MF.addLiveIn(Reg, &AMDGPU::SReg_32_XM0RegClass);
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000969 CCInfo.AllocateReg(Reg);
Tom Stellarde99fb652015-01-20 19:33:04 +0000970 }
Matt Arsenaultcf13d182015-07-10 22:51:36 +0000971
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000972 if (Info->hasWorkGroupIDZ()) {
973 unsigned Reg = Info->addWorkGroupIDZ();
Marek Olsak79c05872016-11-25 17:37:09 +0000974 MF.addLiveIn(Reg, &AMDGPU::SReg_32_XM0RegClass);
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000975 CCInfo.AllocateReg(Reg);
976 }
977
978 if (Info->hasWorkGroupInfo()) {
979 unsigned Reg = Info->addWorkGroupInfo();
Marek Olsak79c05872016-11-25 17:37:09 +0000980 MF.addLiveIn(Reg, &AMDGPU::SReg_32_XM0RegClass);
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000981 CCInfo.AllocateReg(Reg);
982 }
983
984 if (Info->hasPrivateSegmentWaveByteOffset()) {
985 // Scratch wave offset passed in system SGPR.
Tom Stellardf110f8f2016-04-14 16:27:03 +0000986 unsigned PrivateSegmentWaveByteOffsetReg;
987
988 if (AMDGPU::isShader(CallConv)) {
989 PrivateSegmentWaveByteOffsetReg = findFirstFreeSGPR(CCInfo);
990 Info->setPrivateSegmentWaveByteOffset(PrivateSegmentWaveByteOffsetReg);
991 } else
992 PrivateSegmentWaveByteOffsetReg = Info->addPrivateSegmentWaveByteOffset();
Matt Arsenault26f8f3d2015-11-30 21:16:03 +0000993
994 MF.addLiveIn(PrivateSegmentWaveByteOffsetReg, &AMDGPU::SGPR_32RegClass);
995 CCInfo.AllocateReg(PrivateSegmentWaveByteOffsetReg);
996 }
997
998 // Now that we've figured out where the scratch register inputs are, see if
999 // should reserve the arguments and use them directly.
Matthias Braun941a7052016-07-28 18:40:00 +00001000 bool HasStackObjects = MF.getFrameInfo().hasStackObjects();
Matt Arsenault296b8492016-02-12 06:31:30 +00001001 // Record that we know we have non-spill stack objects so we don't need to
1002 // check all stack objects later.
1003 if (HasStackObjects)
1004 Info->setHasNonSpillStackObjects(true);
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001005
Matt Arsenault253640e2016-10-13 13:10:00 +00001006 // Everything live out of a block is spilled with fast regalloc, so it's
1007 // almost certain that spilling will be required.
1008 if (getTargetMachine().getOptLevel() == CodeGenOpt::None)
1009 HasStackObjects = true;
1010
Tom Stellard0b76fc4c2016-09-16 21:34:26 +00001011 if (ST.isAmdCodeObjectV2()) {
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001012 if (HasStackObjects) {
1013 // If we have stack objects, we unquestionably need the private buffer
Tom Stellard0b76fc4c2016-09-16 21:34:26 +00001014 // resource. For the Code Object V2 ABI, this will be the first 4 user
1015 // SGPR inputs. We can reserve those and use them directly.
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001016
1017 unsigned PrivateSegmentBufferReg = TRI->getPreloadedValue(
1018 MF, SIRegisterInfo::PRIVATE_SEGMENT_BUFFER);
1019 Info->setScratchRSrcReg(PrivateSegmentBufferReg);
1020
1021 unsigned PrivateSegmentWaveByteOffsetReg = TRI->getPreloadedValue(
1022 MF, SIRegisterInfo::PRIVATE_SEGMENT_WAVE_BYTE_OFFSET);
1023 Info->setScratchWaveOffsetReg(PrivateSegmentWaveByteOffsetReg);
1024 } else {
1025 unsigned ReservedBufferReg
1026 = TRI->reservedPrivateSegmentBufferReg(MF);
1027 unsigned ReservedOffsetReg
1028 = TRI->reservedPrivateSegmentWaveByteOffsetReg(MF);
1029
1030 // We tentatively reserve the last registers (skipping the last two
1031 // which may contain VCC). After register allocation, we'll replace
1032 // these with the ones immediately after those which were really
1033 // allocated. In the prologue copies will be inserted from the argument
1034 // to these reserved registers.
1035 Info->setScratchRSrcReg(ReservedBufferReg);
1036 Info->setScratchWaveOffsetReg(ReservedOffsetReg);
1037 }
1038 } else {
1039 unsigned ReservedBufferReg = TRI->reservedPrivateSegmentBufferReg(MF);
1040
1041 // Without HSA, relocations are used for the scratch pointer and the
1042 // buffer resource setup is always inserted in the prologue. Scratch wave
1043 // offset is still in an input SGPR.
1044 Info->setScratchRSrcReg(ReservedBufferReg);
1045
1046 if (HasStackObjects) {
1047 unsigned ScratchWaveOffsetReg = TRI->getPreloadedValue(
1048 MF, SIRegisterInfo::PRIVATE_SEGMENT_WAVE_BYTE_OFFSET);
1049 Info->setScratchWaveOffsetReg(ScratchWaveOffsetReg);
1050 } else {
1051 unsigned ReservedOffsetReg
1052 = TRI->reservedPrivateSegmentWaveByteOffsetReg(MF);
1053 Info->setScratchWaveOffsetReg(ReservedOffsetReg);
1054 }
1055 }
1056
1057 if (Info->hasWorkItemIDX()) {
1058 unsigned Reg = TRI->getPreloadedValue(MF, SIRegisterInfo::WORKITEM_ID_X);
1059 MF.addLiveIn(Reg, &AMDGPU::VGPR_32RegClass);
1060 CCInfo.AllocateReg(Reg);
Tom Stellardf110f8f2016-04-14 16:27:03 +00001061 }
Matt Arsenault26f8f3d2015-11-30 21:16:03 +00001062
1063 if (Info->hasWorkItemIDY()) {
1064 unsigned Reg = TRI->getPreloadedValue(MF, SIRegisterInfo::WORKITEM_ID_Y);
1065 MF.addLiveIn(Reg, &AMDGPU::VGPR_32RegClass);
1066 CCInfo.AllocateReg(Reg);
1067 }
1068
1069 if (Info->hasWorkItemIDZ()) {
1070 unsigned Reg = TRI->getPreloadedValue(MF, SIRegisterInfo::WORKITEM_ID_Z);
1071 MF.addLiveIn(Reg, &AMDGPU::VGPR_32RegClass);
1072 CCInfo.AllocateReg(Reg);
1073 }
Matt Arsenault0e3d3892015-11-30 21:15:53 +00001074
Matt Arsenaultcf13d182015-07-10 22:51:36 +00001075 if (Chains.empty())
1076 return Chain;
1077
1078 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
Christian Konig2c8f6d52013-03-07 09:03:52 +00001079}
1080
Benjamin Kramerbdc49562016-06-12 15:39:02 +00001081SDValue
1082SITargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
1083 bool isVarArg,
1084 const SmallVectorImpl<ISD::OutputArg> &Outs,
1085 const SmallVectorImpl<SDValue> &OutVals,
1086 const SDLoc &DL, SelectionDAG &DAG) const {
Marek Olsak8a0f3352016-01-13 17:23:04 +00001087 MachineFunction &MF = DAG.getMachineFunction();
1088 SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>();
1089
Nicolai Haehnledf3a20c2016-04-06 19:40:20 +00001090 if (!AMDGPU::isShader(CallConv))
Marek Olsak8a0f3352016-01-13 17:23:04 +00001091 return AMDGPUTargetLowering::LowerReturn(Chain, CallConv, isVarArg, Outs,
1092 OutVals, DL, DAG);
1093
Marek Olsak8e9cc632016-01-13 17:23:09 +00001094 Info->setIfReturnsVoid(Outs.size() == 0);
1095
Marek Olsak8a0f3352016-01-13 17:23:04 +00001096 SmallVector<ISD::OutputArg, 48> Splits;
1097 SmallVector<SDValue, 48> SplitVals;
1098
1099 // Split vectors into their elements.
1100 for (unsigned i = 0, e = Outs.size(); i != e; ++i) {
1101 const ISD::OutputArg &Out = Outs[i];
1102
1103 if (Out.VT.isVector()) {
1104 MVT VT = Out.VT.getVectorElementType();
1105 ISD::OutputArg NewOut = Out;
1106 NewOut.Flags.setSplit();
1107 NewOut.VT = VT;
1108
1109 // We want the original number of vector elements here, e.g.
1110 // three or five, not four or eight.
1111 unsigned NumElements = Out.ArgVT.getVectorNumElements();
1112
1113 for (unsigned j = 0; j != NumElements; ++j) {
1114 SDValue Elem = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, OutVals[i],
1115 DAG.getConstant(j, DL, MVT::i32));
1116 SplitVals.push_back(Elem);
1117 Splits.push_back(NewOut);
1118 NewOut.PartOffset += NewOut.VT.getStoreSize();
1119 }
1120 } else {
1121 SplitVals.push_back(OutVals[i]);
1122 Splits.push_back(Out);
1123 }
1124 }
1125
1126 // CCValAssign - represent the assignment of the return value to a location.
1127 SmallVector<CCValAssign, 48> RVLocs;
1128
1129 // CCState - Info about the registers and stack slots.
1130 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
1131 *DAG.getContext());
1132
1133 // Analyze outgoing return values.
1134 AnalyzeReturn(CCInfo, Splits);
1135
1136 SDValue Flag;
1137 SmallVector<SDValue, 48> RetOps;
1138 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1139
1140 // Copy the result values into the output registers.
1141 for (unsigned i = 0, realRVLocIdx = 0;
1142 i != RVLocs.size();
1143 ++i, ++realRVLocIdx) {
1144 CCValAssign &VA = RVLocs[i];
1145 assert(VA.isRegLoc() && "Can only return in registers!");
1146
1147 SDValue Arg = SplitVals[realRVLocIdx];
1148
1149 // Copied from other backends.
1150 switch (VA.getLocInfo()) {
1151 default: llvm_unreachable("Unknown loc info!");
1152 case CCValAssign::Full:
1153 break;
1154 case CCValAssign::BCvt:
1155 Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
1156 break;
1157 }
1158
1159 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), Arg, Flag);
1160 Flag = Chain.getValue(1);
1161 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1162 }
1163
1164 // Update chain and glue.
1165 RetOps[0] = Chain;
1166 if (Flag.getNode())
1167 RetOps.push_back(Flag);
1168
Matt Arsenault9babdf42016-06-22 20:15:28 +00001169 unsigned Opc = Info->returnsVoid() ? AMDGPUISD::ENDPGM : AMDGPUISD::RETURN;
1170 return DAG.getNode(Opc, DL, MVT::Other, RetOps);
Marek Olsak8a0f3352016-01-13 17:23:04 +00001171}
1172
Matt Arsenault9a10cea2016-01-26 04:29:24 +00001173unsigned SITargetLowering::getRegisterByName(const char* RegName, EVT VT,
1174 SelectionDAG &DAG) const {
1175 unsigned Reg = StringSwitch<unsigned>(RegName)
1176 .Case("m0", AMDGPU::M0)
1177 .Case("exec", AMDGPU::EXEC)
1178 .Case("exec_lo", AMDGPU::EXEC_LO)
1179 .Case("exec_hi", AMDGPU::EXEC_HI)
1180 .Case("flat_scratch", AMDGPU::FLAT_SCR)
1181 .Case("flat_scratch_lo", AMDGPU::FLAT_SCR_LO)
1182 .Case("flat_scratch_hi", AMDGPU::FLAT_SCR_HI)
1183 .Default(AMDGPU::NoRegister);
1184
1185 if (Reg == AMDGPU::NoRegister) {
1186 report_fatal_error(Twine("invalid register name \""
1187 + StringRef(RegName) + "\"."));
1188
1189 }
1190
Matt Arsenault43e92fe2016-06-24 06:30:11 +00001191 if (Subtarget->getGeneration() == SISubtarget::SOUTHERN_ISLANDS &&
Matt Arsenault9a10cea2016-01-26 04:29:24 +00001192 Subtarget->getRegisterInfo()->regsOverlap(Reg, AMDGPU::FLAT_SCR)) {
1193 report_fatal_error(Twine("invalid register \""
1194 + StringRef(RegName) + "\" for subtarget."));
1195 }
1196
1197 switch (Reg) {
1198 case AMDGPU::M0:
1199 case AMDGPU::EXEC_LO:
1200 case AMDGPU::EXEC_HI:
1201 case AMDGPU::FLAT_SCR_LO:
1202 case AMDGPU::FLAT_SCR_HI:
1203 if (VT.getSizeInBits() == 32)
1204 return Reg;
1205 break;
1206 case AMDGPU::EXEC:
1207 case AMDGPU::FLAT_SCR:
1208 if (VT.getSizeInBits() == 64)
1209 return Reg;
1210 break;
1211 default:
1212 llvm_unreachable("missing register type checking");
1213 }
1214
1215 report_fatal_error(Twine("invalid type for register \""
1216 + StringRef(RegName) + "\"."));
1217}
1218
Matt Arsenault786724a2016-07-12 21:41:32 +00001219// If kill is not the last instruction, split the block so kill is always a
1220// proper terminator.
1221MachineBasicBlock *SITargetLowering::splitKillBlock(MachineInstr &MI,
1222 MachineBasicBlock *BB) const {
1223 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
1224
1225 MachineBasicBlock::iterator SplitPoint(&MI);
1226 ++SplitPoint;
1227
1228 if (SplitPoint == BB->end()) {
1229 // Don't bother with a new block.
1230 MI.setDesc(TII->get(AMDGPU::SI_KILL_TERMINATOR));
1231 return BB;
1232 }
1233
1234 MachineFunction *MF = BB->getParent();
1235 MachineBasicBlock *SplitBB
1236 = MF->CreateMachineBasicBlock(BB->getBasicBlock());
1237
Matt Arsenault786724a2016-07-12 21:41:32 +00001238 MF->insert(++MachineFunction::iterator(BB), SplitBB);
1239 SplitBB->splice(SplitBB->begin(), BB, SplitPoint, BB->end());
1240
Matt Arsenaultd40ded62016-07-22 17:01:15 +00001241 SplitBB->transferSuccessorsAndUpdatePHIs(BB);
Matt Arsenault786724a2016-07-12 21:41:32 +00001242 BB->addSuccessor(SplitBB);
1243
1244 MI.setDesc(TII->get(AMDGPU::SI_KILL_TERMINATOR));
1245 return SplitBB;
1246}
1247
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001248// Do a v_movrels_b32 or v_movreld_b32 for each unique value of \p IdxReg in the
1249// wavefront. If the value is uniform and just happens to be in a VGPR, this
1250// will only do one iteration. In the worst case, this will loop 64 times.
1251//
1252// TODO: Just use v_readlane_b32 if we know the VGPR has a uniform value.
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001253static MachineBasicBlock::iterator emitLoadM0FromVGPRLoop(
1254 const SIInstrInfo *TII,
1255 MachineRegisterInfo &MRI,
1256 MachineBasicBlock &OrigBB,
1257 MachineBasicBlock &LoopBB,
1258 const DebugLoc &DL,
1259 const MachineOperand &IdxReg,
1260 unsigned InitReg,
1261 unsigned ResultReg,
1262 unsigned PhiReg,
1263 unsigned InitSaveExecReg,
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001264 int Offset,
1265 bool UseGPRIdxMode) {
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001266 MachineBasicBlock::iterator I = LoopBB.begin();
1267
1268 unsigned PhiExec = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
1269 unsigned NewExec = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
1270 unsigned CurrentIdxReg = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
1271 unsigned CondReg = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
1272
1273 BuildMI(LoopBB, I, DL, TII->get(TargetOpcode::PHI), PhiReg)
1274 .addReg(InitReg)
1275 .addMBB(&OrigBB)
1276 .addReg(ResultReg)
1277 .addMBB(&LoopBB);
1278
1279 BuildMI(LoopBB, I, DL, TII->get(TargetOpcode::PHI), PhiExec)
1280 .addReg(InitSaveExecReg)
1281 .addMBB(&OrigBB)
1282 .addReg(NewExec)
1283 .addMBB(&LoopBB);
1284
1285 // Read the next variant <- also loop target.
1286 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::V_READFIRSTLANE_B32), CurrentIdxReg)
1287 .addReg(IdxReg.getReg(), getUndefRegState(IdxReg.isUndef()));
1288
1289 // Compare the just read M0 value to all possible Idx values.
1290 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::V_CMP_EQ_U32_e64), CondReg)
1291 .addReg(CurrentIdxReg)
Matt Arsenaultf0ba86a2016-07-21 09:40:57 +00001292 .addReg(IdxReg.getReg(), 0, IdxReg.getSubReg());
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001293
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001294 if (UseGPRIdxMode) {
1295 unsigned IdxReg;
1296 if (Offset == 0) {
1297 IdxReg = CurrentIdxReg;
1298 } else {
1299 IdxReg = MRI.createVirtualRegister(&AMDGPU::SGPR_32RegClass);
1300 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::S_ADD_I32), IdxReg)
1301 .addReg(CurrentIdxReg, RegState::Kill)
1302 .addImm(Offset);
1303 }
1304
1305 MachineInstr *SetIdx =
1306 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::S_SET_GPR_IDX_IDX))
1307 .addReg(IdxReg, RegState::Kill);
Matt Arsenaultdac31db2016-10-13 12:45:16 +00001308 SetIdx->getOperand(2).setIsUndef();
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001309 } else {
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001310 // Move index from VCC into M0
1311 if (Offset == 0) {
1312 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::S_MOV_B32), AMDGPU::M0)
1313 .addReg(CurrentIdxReg, RegState::Kill);
1314 } else {
1315 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::S_ADD_I32), AMDGPU::M0)
1316 .addReg(CurrentIdxReg, RegState::Kill)
1317 .addImm(Offset);
1318 }
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001319 }
1320
1321 // Update EXEC, save the original EXEC value to VCC.
1322 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::S_AND_SAVEEXEC_B64), NewExec)
1323 .addReg(CondReg, RegState::Kill);
1324
1325 MRI.setSimpleHint(NewExec, CondReg);
1326
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001327 // Update EXEC, switch all done bits to 0 and all todo bits to 1.
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001328 MachineInstr *InsertPt =
1329 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::S_XOR_B64), AMDGPU::EXEC)
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001330 .addReg(AMDGPU::EXEC)
1331 .addReg(NewExec);
1332
1333 // XXX - s_xor_b64 sets scc to 1 if the result is nonzero, so can we use
1334 // s_cbranch_scc0?
1335
1336 // Loop back to V_READFIRSTLANE_B32 if there are still variants to cover.
1337 BuildMI(LoopBB, I, DL, TII->get(AMDGPU::S_CBRANCH_EXECNZ))
1338 .addMBB(&LoopBB);
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001339
1340 return InsertPt->getIterator();
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001341}
1342
1343// This has slightly sub-optimal regalloc when the source vector is killed by
1344// the read. The register allocator does not understand that the kill is
1345// per-workitem, so is kept alive for the whole loop so we end up not re-using a
1346// subregister from it, using 1 more VGPR than necessary. This was saved when
1347// this was expanded after register allocation.
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001348static MachineBasicBlock::iterator loadM0FromVGPR(const SIInstrInfo *TII,
1349 MachineBasicBlock &MBB,
1350 MachineInstr &MI,
1351 unsigned InitResultReg,
1352 unsigned PhiReg,
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001353 int Offset,
1354 bool UseGPRIdxMode) {
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001355 MachineFunction *MF = MBB.getParent();
1356 MachineRegisterInfo &MRI = MF->getRegInfo();
1357 const DebugLoc &DL = MI.getDebugLoc();
1358 MachineBasicBlock::iterator I(&MI);
1359
1360 unsigned DstReg = MI.getOperand(0).getReg();
1361 unsigned SaveExec = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
1362 unsigned TmpExec = MRI.createVirtualRegister(&AMDGPU::SReg_64RegClass);
1363
1364 BuildMI(MBB, I, DL, TII->get(TargetOpcode::IMPLICIT_DEF), TmpExec);
1365
1366 // Save the EXEC mask
1367 BuildMI(MBB, I, DL, TII->get(AMDGPU::S_MOV_B64), SaveExec)
1368 .addReg(AMDGPU::EXEC);
1369
1370 // To insert the loop we need to split the block. Move everything after this
1371 // point to a new block, and insert a new empty block between the two.
1372 MachineBasicBlock *LoopBB = MF->CreateMachineBasicBlock();
1373 MachineBasicBlock *RemainderBB = MF->CreateMachineBasicBlock();
1374 MachineFunction::iterator MBBI(MBB);
1375 ++MBBI;
1376
1377 MF->insert(MBBI, LoopBB);
1378 MF->insert(MBBI, RemainderBB);
1379
1380 LoopBB->addSuccessor(LoopBB);
1381 LoopBB->addSuccessor(RemainderBB);
1382
1383 // Move the rest of the block into a new block.
Matt Arsenaultd40ded62016-07-22 17:01:15 +00001384 RemainderBB->transferSuccessorsAndUpdatePHIs(&MBB);
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001385 RemainderBB->splice(RemainderBB->begin(), &MBB, I, MBB.end());
1386
1387 MBB.addSuccessor(LoopBB);
1388
1389 const MachineOperand *Idx = TII->getNamedOperand(MI, AMDGPU::OpName::idx);
1390
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001391 auto InsPt = emitLoadM0FromVGPRLoop(TII, MRI, MBB, *LoopBB, DL, *Idx,
1392 InitResultReg, DstReg, PhiReg, TmpExec,
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001393 Offset, UseGPRIdxMode);
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001394
1395 MachineBasicBlock::iterator First = RemainderBB->begin();
1396 BuildMI(*RemainderBB, First, DL, TII->get(AMDGPU::S_MOV_B64), AMDGPU::EXEC)
1397 .addReg(SaveExec);
1398
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001399 return InsPt;
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001400}
1401
1402// Returns subreg index, offset
1403static std::pair<unsigned, int>
1404computeIndirectRegAndOffset(const SIRegisterInfo &TRI,
1405 const TargetRegisterClass *SuperRC,
1406 unsigned VecReg,
1407 int Offset) {
1408 int NumElts = SuperRC->getSize() / 4;
1409
1410 // Skip out of bounds offsets, or else we would end up using an undefined
1411 // register.
1412 if (Offset >= NumElts || Offset < 0)
1413 return std::make_pair(AMDGPU::sub0, Offset);
1414
1415 return std::make_pair(AMDGPU::sub0 + Offset, 0);
1416}
1417
1418// Return true if the index is an SGPR and was set.
1419static bool setM0ToIndexFromSGPR(const SIInstrInfo *TII,
1420 MachineRegisterInfo &MRI,
1421 MachineInstr &MI,
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001422 int Offset,
1423 bool UseGPRIdxMode,
1424 bool IsIndirectSrc) {
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001425 MachineBasicBlock *MBB = MI.getParent();
1426 const DebugLoc &DL = MI.getDebugLoc();
1427 MachineBasicBlock::iterator I(&MI);
1428
1429 const MachineOperand *Idx = TII->getNamedOperand(MI, AMDGPU::OpName::idx);
1430 const TargetRegisterClass *IdxRC = MRI.getRegClass(Idx->getReg());
1431
1432 assert(Idx->getReg() != AMDGPU::NoRegister);
1433
1434 if (!TII->getRegisterInfo().isSGPRClass(IdxRC))
1435 return false;
1436
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001437 if (UseGPRIdxMode) {
1438 unsigned IdxMode = IsIndirectSrc ?
1439 VGPRIndexMode::SRC0_ENABLE : VGPRIndexMode::DST_ENABLE;
1440 if (Offset == 0) {
1441 MachineInstr *SetOn =
1442 BuildMI(*MBB, I, DL, TII->get(AMDGPU::S_SET_GPR_IDX_ON))
1443 .addOperand(*Idx)
1444 .addImm(IdxMode);
1445
Matt Arsenaultdac31db2016-10-13 12:45:16 +00001446 SetOn->getOperand(3).setIsUndef();
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001447 } else {
1448 unsigned Tmp = MRI.createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
1449 BuildMI(*MBB, I, DL, TII->get(AMDGPU::S_ADD_I32), Tmp)
1450 .addOperand(*Idx)
1451 .addImm(Offset);
1452 MachineInstr *SetOn =
1453 BuildMI(*MBB, I, DL, TII->get(AMDGPU::S_SET_GPR_IDX_ON))
1454 .addReg(Tmp, RegState::Kill)
1455 .addImm(IdxMode);
1456
Matt Arsenaultdac31db2016-10-13 12:45:16 +00001457 SetOn->getOperand(3).setIsUndef();
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001458 }
1459
1460 return true;
1461 }
1462
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001463 if (Offset == 0) {
1464 BuildMI(*MBB, I, DL, TII->get(AMDGPU::S_MOV_B32), AMDGPU::M0)
1465 .addOperand(*Idx);
1466 } else {
1467 BuildMI(*MBB, I, DL, TII->get(AMDGPU::S_ADD_I32), AMDGPU::M0)
1468 .addOperand(*Idx)
1469 .addImm(Offset);
1470 }
1471
1472 return true;
1473}
1474
1475// Control flow needs to be inserted if indexing with a VGPR.
1476static MachineBasicBlock *emitIndirectSrc(MachineInstr &MI,
1477 MachineBasicBlock &MBB,
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001478 const SISubtarget &ST) {
1479 const SIInstrInfo *TII = ST.getInstrInfo();
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001480 const SIRegisterInfo &TRI = TII->getRegisterInfo();
1481 MachineFunction *MF = MBB.getParent();
1482 MachineRegisterInfo &MRI = MF->getRegInfo();
1483
1484 unsigned Dst = MI.getOperand(0).getReg();
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001485 unsigned SrcReg = TII->getNamedOperand(MI, AMDGPU::OpName::src)->getReg();
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001486 int Offset = TII->getNamedOperand(MI, AMDGPU::OpName::offset)->getImm();
1487
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001488 const TargetRegisterClass *VecRC = MRI.getRegClass(SrcReg);
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001489
1490 unsigned SubReg;
1491 std::tie(SubReg, Offset)
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001492 = computeIndirectRegAndOffset(TRI, VecRC, SrcReg, Offset);
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001493
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001494 bool UseGPRIdxMode = ST.hasVGPRIndexMode() && EnableVGPRIndexMode;
1495
1496 if (setM0ToIndexFromSGPR(TII, MRI, MI, Offset, UseGPRIdxMode, true)) {
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001497 MachineBasicBlock::iterator I(&MI);
1498 const DebugLoc &DL = MI.getDebugLoc();
1499
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001500 if (UseGPRIdxMode) {
1501 // TODO: Look at the uses to avoid the copy. This may require rescheduling
1502 // to avoid interfering with other uses, so probably requires a new
1503 // optimization pass.
1504 BuildMI(MBB, I, DL, TII->get(AMDGPU::V_MOV_B32_e32), Dst)
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001505 .addReg(SrcReg, RegState::Undef, SubReg)
1506 .addReg(SrcReg, RegState::Implicit)
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001507 .addReg(AMDGPU::M0, RegState::Implicit);
1508 BuildMI(MBB, I, DL, TII->get(AMDGPU::S_SET_GPR_IDX_OFF));
1509 } else {
1510 BuildMI(MBB, I, DL, TII->get(AMDGPU::V_MOVRELS_B32_e32), Dst)
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001511 .addReg(SrcReg, RegState::Undef, SubReg)
1512 .addReg(SrcReg, RegState::Implicit);
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001513 }
1514
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001515 MI.eraseFromParent();
1516
1517 return &MBB;
1518 }
1519
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001520
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001521 const DebugLoc &DL = MI.getDebugLoc();
1522 MachineBasicBlock::iterator I(&MI);
1523
1524 unsigned PhiReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
1525 unsigned InitReg = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
1526
1527 BuildMI(MBB, I, DL, TII->get(TargetOpcode::IMPLICIT_DEF), InitReg);
1528
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001529 if (UseGPRIdxMode) {
1530 MachineInstr *SetOn = BuildMI(MBB, I, DL, TII->get(AMDGPU::S_SET_GPR_IDX_ON))
1531 .addImm(0) // Reset inside loop.
1532 .addImm(VGPRIndexMode::SRC0_ENABLE);
Matt Arsenaultdac31db2016-10-13 12:45:16 +00001533 SetOn->getOperand(3).setIsUndef();
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001534
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001535 // Disable again after the loop.
1536 BuildMI(MBB, std::next(I), DL, TII->get(AMDGPU::S_SET_GPR_IDX_OFF));
1537 }
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001538
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001539 auto InsPt = loadM0FromVGPR(TII, MBB, MI, InitReg, PhiReg, Offset, UseGPRIdxMode);
1540 MachineBasicBlock *LoopBB = InsPt->getParent();
1541
1542 if (UseGPRIdxMode) {
1543 BuildMI(*LoopBB, InsPt, DL, TII->get(AMDGPU::V_MOV_B32_e32), Dst)
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001544 .addReg(SrcReg, RegState::Undef, SubReg)
1545 .addReg(SrcReg, RegState::Implicit)
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001546 .addReg(AMDGPU::M0, RegState::Implicit);
1547 } else {
1548 BuildMI(*LoopBB, InsPt, DL, TII->get(AMDGPU::V_MOVRELS_B32_e32), Dst)
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001549 .addReg(SrcReg, RegState::Undef, SubReg)
1550 .addReg(SrcReg, RegState::Implicit);
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001551 }
1552
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001553 MI.eraseFromParent();
1554
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001555 return LoopBB;
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001556}
1557
Nicolai Haehnlea7852092016-10-24 14:56:02 +00001558static unsigned getMOVRELDPseudo(const TargetRegisterClass *VecRC) {
1559 switch (VecRC->getSize()) {
1560 case 4:
1561 return AMDGPU::V_MOVRELD_B32_V1;
1562 case 8:
1563 return AMDGPU::V_MOVRELD_B32_V2;
1564 case 16:
1565 return AMDGPU::V_MOVRELD_B32_V4;
1566 case 32:
1567 return AMDGPU::V_MOVRELD_B32_V8;
1568 case 64:
1569 return AMDGPU::V_MOVRELD_B32_V16;
1570 default:
1571 llvm_unreachable("unsupported size for MOVRELD pseudos");
1572 }
1573}
1574
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001575static MachineBasicBlock *emitIndirectDst(MachineInstr &MI,
1576 MachineBasicBlock &MBB,
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001577 const SISubtarget &ST) {
1578 const SIInstrInfo *TII = ST.getInstrInfo();
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001579 const SIRegisterInfo &TRI = TII->getRegisterInfo();
1580 MachineFunction *MF = MBB.getParent();
1581 MachineRegisterInfo &MRI = MF->getRegInfo();
1582
1583 unsigned Dst = MI.getOperand(0).getReg();
1584 const MachineOperand *SrcVec = TII->getNamedOperand(MI, AMDGPU::OpName::src);
1585 const MachineOperand *Idx = TII->getNamedOperand(MI, AMDGPU::OpName::idx);
1586 const MachineOperand *Val = TII->getNamedOperand(MI, AMDGPU::OpName::val);
1587 int Offset = TII->getNamedOperand(MI, AMDGPU::OpName::offset)->getImm();
1588 const TargetRegisterClass *VecRC = MRI.getRegClass(SrcVec->getReg());
1589
1590 // This can be an immediate, but will be folded later.
1591 assert(Val->getReg());
1592
1593 unsigned SubReg;
1594 std::tie(SubReg, Offset) = computeIndirectRegAndOffset(TRI, VecRC,
1595 SrcVec->getReg(),
1596 Offset);
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001597 bool UseGPRIdxMode = ST.hasVGPRIndexMode() && EnableVGPRIndexMode;
1598
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001599 if (Idx->getReg() == AMDGPU::NoRegister) {
1600 MachineBasicBlock::iterator I(&MI);
1601 const DebugLoc &DL = MI.getDebugLoc();
1602
1603 assert(Offset == 0);
1604
1605 BuildMI(MBB, I, DL, TII->get(TargetOpcode::INSERT_SUBREG), Dst)
1606 .addOperand(*SrcVec)
1607 .addOperand(*Val)
1608 .addImm(SubReg);
1609
1610 MI.eraseFromParent();
1611 return &MBB;
1612 }
1613
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001614 if (setM0ToIndexFromSGPR(TII, MRI, MI, Offset, UseGPRIdxMode, false)) {
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001615 MachineBasicBlock::iterator I(&MI);
1616 const DebugLoc &DL = MI.getDebugLoc();
1617
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001618 if (UseGPRIdxMode) {
1619 BuildMI(MBB, I, DL, TII->get(AMDGPU::V_MOV_B32_indirect))
1620 .addReg(SrcVec->getReg(), RegState::Undef, SubReg) // vdst
1621 .addOperand(*Val)
1622 .addReg(Dst, RegState::ImplicitDefine)
1623 .addReg(SrcVec->getReg(), RegState::Implicit)
1624 .addReg(AMDGPU::M0, RegState::Implicit);
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001625
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001626 BuildMI(MBB, I, DL, TII->get(AMDGPU::S_SET_GPR_IDX_OFF));
1627 } else {
Nicolai Haehnlea7852092016-10-24 14:56:02 +00001628 const MCInstrDesc &MovRelDesc = TII->get(getMOVRELDPseudo(VecRC));
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001629
Nicolai Haehnlea7852092016-10-24 14:56:02 +00001630 BuildMI(MBB, I, DL, MovRelDesc)
1631 .addReg(Dst, RegState::Define)
1632 .addReg(SrcVec->getReg())
1633 .addOperand(*Val)
1634 .addImm(SubReg - AMDGPU::sub0);
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001635 }
1636
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001637 MI.eraseFromParent();
1638 return &MBB;
1639 }
1640
1641 if (Val->isReg())
1642 MRI.clearKillFlags(Val->getReg());
1643
1644 const DebugLoc &DL = MI.getDebugLoc();
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001645
1646 if (UseGPRIdxMode) {
1647 MachineBasicBlock::iterator I(&MI);
1648
1649 MachineInstr *SetOn = BuildMI(MBB, I, DL, TII->get(AMDGPU::S_SET_GPR_IDX_ON))
1650 .addImm(0) // Reset inside loop.
1651 .addImm(VGPRIndexMode::DST_ENABLE);
Matt Arsenaultdac31db2016-10-13 12:45:16 +00001652 SetOn->getOperand(3).setIsUndef();
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001653
1654 // Disable again after the loop.
1655 BuildMI(MBB, std::next(I), DL, TII->get(AMDGPU::S_SET_GPR_IDX_OFF));
1656 }
1657
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001658 unsigned PhiReg = MRI.createVirtualRegister(VecRC);
1659
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001660 auto InsPt = loadM0FromVGPR(TII, MBB, MI, SrcVec->getReg(), PhiReg,
1661 Offset, UseGPRIdxMode);
1662 MachineBasicBlock *LoopBB = InsPt->getParent();
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001663
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001664 if (UseGPRIdxMode) {
1665 BuildMI(*LoopBB, InsPt, DL, TII->get(AMDGPU::V_MOV_B32_indirect))
1666 .addReg(PhiReg, RegState::Undef, SubReg) // vdst
1667 .addOperand(*Val) // src0
1668 .addReg(Dst, RegState::ImplicitDefine)
1669 .addReg(PhiReg, RegState::Implicit)
1670 .addReg(AMDGPU::M0, RegState::Implicit);
1671 } else {
Nicolai Haehnlea7852092016-10-24 14:56:02 +00001672 const MCInstrDesc &MovRelDesc = TII->get(getMOVRELDPseudo(VecRC));
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001673
Nicolai Haehnlea7852092016-10-24 14:56:02 +00001674 BuildMI(*LoopBB, InsPt, DL, MovRelDesc)
1675 .addReg(Dst, RegState::Define)
1676 .addReg(PhiReg)
1677 .addOperand(*Val)
1678 .addImm(SubReg - AMDGPU::sub0);
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001679 }
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001680
Nicolai Haehnlebd15c322016-10-14 09:03:04 +00001681 MI.eraseFromParent();
1682
Matt Arsenaultd486d3f2016-10-12 18:49:05 +00001683 return LoopBB;
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001684}
1685
Matt Arsenault786724a2016-07-12 21:41:32 +00001686MachineBasicBlock *SITargetLowering::EmitInstrWithCustomInserter(
1687 MachineInstr &MI, MachineBasicBlock *BB) const {
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00001688 switch (MI.getOpcode()) {
Matt Arsenault4ac341c2016-04-14 21:58:15 +00001689 case AMDGPU::SI_INIT_M0: {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00001690 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00001691 BuildMI(*BB, MI.getIterator(), MI.getDebugLoc(),
Matt Arsenault4ac341c2016-04-14 21:58:15 +00001692 TII->get(AMDGPU::S_MOV_B32), AMDGPU::M0)
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001693 .addOperand(MI.getOperand(0));
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00001694 MI.eraseFromParent();
Matt Arsenault20711b72015-02-20 22:10:45 +00001695 return BB;
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001696 }
Changpeng Fang01f60622016-03-15 17:28:44 +00001697 case AMDGPU::GET_GROUPSTATICSIZE: {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00001698 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
1699
Changpeng Fang01f60622016-03-15 17:28:44 +00001700 MachineFunction *MF = BB->getParent();
1701 SIMachineFunctionInfo *MFI = MF->getInfo<SIMachineFunctionInfo>();
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00001702 DebugLoc DL = MI.getDebugLoc();
Matt Arsenault3c07c812016-07-22 17:01:33 +00001703 BuildMI(*BB, MI, DL, TII->get(AMDGPU::S_MOV_B32))
1704 .addOperand(MI.getOperand(0))
Matt Arsenault52ef4012016-07-26 16:45:58 +00001705 .addImm(MFI->getLDSSize());
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00001706 MI.eraseFromParent();
Changpeng Fang01f60622016-03-15 17:28:44 +00001707 return BB;
1708 }
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001709 case AMDGPU::SI_INDIRECT_SRC_V1:
1710 case AMDGPU::SI_INDIRECT_SRC_V2:
1711 case AMDGPU::SI_INDIRECT_SRC_V4:
1712 case AMDGPU::SI_INDIRECT_SRC_V8:
1713 case AMDGPU::SI_INDIRECT_SRC_V16:
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001714 return emitIndirectSrc(MI, *BB, *getSubtarget());
Matt Arsenaultcb540bc2016-07-19 00:35:03 +00001715 case AMDGPU::SI_INDIRECT_DST_V1:
1716 case AMDGPU::SI_INDIRECT_DST_V2:
1717 case AMDGPU::SI_INDIRECT_DST_V4:
1718 case AMDGPU::SI_INDIRECT_DST_V8:
1719 case AMDGPU::SI_INDIRECT_DST_V16:
Matt Arsenaultdcf0cfc2016-10-04 01:41:05 +00001720 return emitIndirectDst(MI, *BB, *getSubtarget());
Matt Arsenault786724a2016-07-12 21:41:32 +00001721 case AMDGPU::SI_KILL:
1722 return splitKillBlock(MI, BB);
Matt Arsenault22e41792016-08-27 01:00:37 +00001723 case AMDGPU::V_CNDMASK_B64_PSEUDO: {
1724 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo();
1725 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
1726
1727 unsigned Dst = MI.getOperand(0).getReg();
1728 unsigned Src0 = MI.getOperand(1).getReg();
1729 unsigned Src1 = MI.getOperand(2).getReg();
1730 const DebugLoc &DL = MI.getDebugLoc();
1731 unsigned SrcCond = MI.getOperand(3).getReg();
1732
1733 unsigned DstLo = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
1734 unsigned DstHi = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
1735
1736 BuildMI(*BB, MI, DL, TII->get(AMDGPU::V_CNDMASK_B32_e64), DstLo)
1737 .addReg(Src0, 0, AMDGPU::sub0)
1738 .addReg(Src1, 0, AMDGPU::sub0)
1739 .addReg(SrcCond);
1740 BuildMI(*BB, MI, DL, TII->get(AMDGPU::V_CNDMASK_B32_e64), DstHi)
1741 .addReg(Src0, 0, AMDGPU::sub1)
1742 .addReg(Src1, 0, AMDGPU::sub1)
1743 .addReg(SrcCond);
1744
1745 BuildMI(*BB, MI, DL, TII->get(AMDGPU::REG_SEQUENCE), Dst)
1746 .addReg(DstLo)
1747 .addImm(AMDGPU::sub0)
1748 .addReg(DstHi)
1749 .addImm(AMDGPU::sub1);
1750 MI.eraseFromParent();
1751 return BB;
1752 }
Changpeng Fang01f60622016-03-15 17:28:44 +00001753 default:
1754 return AMDGPUTargetLowering::EmitInstrWithCustomInserter(MI, BB);
Tom Stellard75aadc22012-12-11 21:25:42 +00001755 }
Tom Stellard75aadc22012-12-11 21:25:42 +00001756}
1757
Matt Arsenault423bf3f2015-01-29 19:34:32 +00001758bool SITargetLowering::enableAggressiveFMAFusion(EVT VT) const {
1759 // This currently forces unfolding various combinations of fsub into fma with
1760 // free fneg'd operands. As long as we have fast FMA (controlled by
1761 // isFMAFasterThanFMulAndFAdd), we should perform these.
1762
1763 // When fma is quarter rate, for f64 where add / sub are at best half rate,
1764 // most of these combines appear to be cycle neutral but save on instruction
1765 // count / code size.
1766 return true;
1767}
1768
Mehdi Amini44ede332015-07-09 02:09:04 +00001769EVT SITargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &Ctx,
1770 EVT VT) const {
Tom Stellard83747202013-07-18 21:43:53 +00001771 if (!VT.isVector()) {
1772 return MVT::i1;
1773 }
Matt Arsenault8596f712014-11-28 22:51:38 +00001774 return EVT::getVectorVT(Ctx, MVT::i1, VT.getVectorNumElements());
Tom Stellard75aadc22012-12-11 21:25:42 +00001775}
1776
Mehdi Aminieaabc512015-07-09 15:12:23 +00001777MVT SITargetLowering::getScalarShiftAmountTy(const DataLayout &, EVT) const {
Christian Konig082a14a2013-03-18 11:34:05 +00001778 return MVT::i32;
1779}
1780
Matt Arsenault423bf3f2015-01-29 19:34:32 +00001781// Answering this is somewhat tricky and depends on the specific device which
1782// have different rates for fma or all f64 operations.
1783//
1784// v_fma_f64 and v_mul_f64 always take the same number of cycles as each other
1785// regardless of which device (although the number of cycles differs between
1786// devices), so it is always profitable for f64.
1787//
1788// v_fma_f32 takes 4 or 16 cycles depending on the device, so it is profitable
1789// only on full rate devices. Normally, we should prefer selecting v_mad_f32
1790// which we can always do even without fused FP ops since it returns the same
1791// result as the separate operations and since it is always full
1792// rate. Therefore, we lie and report that it is not faster for f32. v_mad_f32
1793// however does not support denormals, so we do report fma as faster if we have
1794// a fast fma device and require denormals.
1795//
Niels Ole Salscheiderd3a039f2013-08-10 10:38:54 +00001796bool SITargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
1797 VT = VT.getScalarType();
1798
1799 if (!VT.isSimple())
1800 return false;
1801
1802 switch (VT.getSimpleVT().SimpleTy) {
1803 case MVT::f32:
Matt Arsenault423bf3f2015-01-29 19:34:32 +00001804 // This is as fast on some subtargets. However, we always have full rate f32
1805 // mad available which returns the same result as the separate operations
Matt Arsenault8d630032015-02-20 22:10:41 +00001806 // which we should prefer over fma. We can't use this if we want to support
1807 // denormals, so only report this in these cases.
1808 return Subtarget->hasFP32Denormals() && Subtarget->hasFastFMAF32();
Niels Ole Salscheiderd3a039f2013-08-10 10:38:54 +00001809 case MVT::f64:
1810 return true;
1811 default:
1812 break;
1813 }
1814
1815 return false;
1816}
1817
Tom Stellard75aadc22012-12-11 21:25:42 +00001818//===----------------------------------------------------------------------===//
1819// Custom DAG Lowering Operations
1820//===----------------------------------------------------------------------===//
1821
1822SDValue SITargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
1823 switch (Op.getOpcode()) {
1824 default: return AMDGPUTargetLowering::LowerOperation(Op, DAG);
Tom Stellardf8794352012-12-19 22:10:31 +00001825 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Tom Stellard35bb18c2013-08-26 15:06:04 +00001826 case ISD::LOAD: {
Tom Stellarde812f2f2014-07-21 15:45:06 +00001827 SDValue Result = LowerLOAD(Op, DAG);
1828 assert((!Result.getNode() ||
1829 Result.getNode()->getNumValues() == 2) &&
1830 "Load should return a value and a chain");
1831 return Result;
Tom Stellard35bb18c2013-08-26 15:06:04 +00001832 }
Tom Stellardaf775432013-10-23 00:44:32 +00001833
Matt Arsenaultad14ce82014-07-19 18:44:39 +00001834 case ISD::FSIN:
1835 case ISD::FCOS:
1836 return LowerTrig(Op, DAG);
Tom Stellard0ec134f2014-02-04 17:18:40 +00001837 case ISD::SELECT: return LowerSELECT(Op, DAG);
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00001838 case ISD::FDIV: return LowerFDIV(Op, DAG);
Tom Stellard354a43c2016-04-01 18:27:37 +00001839 case ISD::ATOMIC_CMP_SWAP: return LowerATOMIC_CMP_SWAP(Op, DAG);
Tom Stellard81d871d2013-11-13 23:36:50 +00001840 case ISD::STORE: return LowerSTORE(Op, DAG);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00001841 case ISD::GlobalAddress: {
1842 MachineFunction &MF = DAG.getMachineFunction();
1843 SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
1844 return LowerGlobalAddress(MFI, Op, DAG);
Tom Stellard94593ee2013-06-03 17:40:18 +00001845 }
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00001846 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Matt Arsenaulta9dbdca2016-04-12 14:05:04 +00001847 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, DAG);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00001848 case ISD::INTRINSIC_VOID: return LowerINTRINSIC_VOID(Op, DAG);
Matt Arsenault99c14522016-04-25 19:27:24 +00001849 case ISD::ADDRSPACECAST: return lowerADDRSPACECAST(Op, DAG);
Matt Arsenault0bb294b2016-06-17 22:27:03 +00001850 case ISD::TRAP: return lowerTRAP(Op, DAG);
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +00001851
1852 case ISD::ConstantFP:
1853 return lowerConstantFP(Op, DAG);
Konstantin Zhuravlyovd709efb2016-11-17 04:28:37 +00001854 case ISD::FP_ROUND:
1855 return lowerFP_ROUND(Op, DAG);
Tom Stellard75aadc22012-12-11 21:25:42 +00001856 }
1857 return SDValue();
1858}
1859
Tom Stellardf8794352012-12-19 22:10:31 +00001860/// \brief Helper function for LowerBRCOND
1861static SDNode *findUser(SDValue Value, unsigned Opcode) {
Tom Stellard75aadc22012-12-11 21:25:42 +00001862
Tom Stellardf8794352012-12-19 22:10:31 +00001863 SDNode *Parent = Value.getNode();
1864 for (SDNode::use_iterator I = Parent->use_begin(), E = Parent->use_end();
1865 I != E; ++I) {
1866
1867 if (I.getUse().get() != Value)
1868 continue;
1869
1870 if (I->getOpcode() == Opcode)
1871 return *I;
1872 }
Craig Topper062a2ba2014-04-25 05:30:21 +00001873 return nullptr;
Tom Stellardf8794352012-12-19 22:10:31 +00001874}
1875
Tom Stellardbc4497b2016-02-12 23:45:29 +00001876bool SITargetLowering::isCFIntrinsic(const SDNode *Intr) const {
Matt Arsenault6408c912016-09-16 22:11:18 +00001877 if (Intr->getOpcode() == ISD::INTRINSIC_W_CHAIN) {
1878 switch (cast<ConstantSDNode>(Intr->getOperand(1))->getZExtValue()) {
1879 case AMDGPUIntrinsic::amdgcn_if:
1880 case AMDGPUIntrinsic::amdgcn_else:
1881 case AMDGPUIntrinsic::amdgcn_end_cf:
1882 case AMDGPUIntrinsic::amdgcn_loop:
1883 return true;
1884 default:
1885 return false;
1886 }
Tom Stellardbc4497b2016-02-12 23:45:29 +00001887 }
Matt Arsenault6408c912016-09-16 22:11:18 +00001888
1889 if (Intr->getOpcode() == ISD::INTRINSIC_WO_CHAIN) {
1890 switch (cast<ConstantSDNode>(Intr->getOperand(0))->getZExtValue()) {
1891 case AMDGPUIntrinsic::amdgcn_break:
1892 case AMDGPUIntrinsic::amdgcn_if_break:
1893 case AMDGPUIntrinsic::amdgcn_else_break:
1894 return true;
1895 default:
1896 return false;
1897 }
1898 }
1899
1900 return false;
Tom Stellardbc4497b2016-02-12 23:45:29 +00001901}
1902
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +00001903void SITargetLowering::createDebuggerPrologueStackObjects(
1904 MachineFunction &MF) const {
1905 // Create stack objects that are used for emitting debugger prologue.
1906 //
1907 // Debugger prologue writes work group IDs and work item IDs to scratch memory
1908 // at fixed location in the following format:
1909 // offset 0: work group ID x
1910 // offset 4: work group ID y
1911 // offset 8: work group ID z
1912 // offset 16: work item ID x
1913 // offset 20: work item ID y
1914 // offset 24: work item ID z
1915 SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>();
1916 int ObjectIdx = 0;
1917
1918 // For each dimension:
1919 for (unsigned i = 0; i < 3; ++i) {
1920 // Create fixed stack object for work group ID.
Matthias Braun941a7052016-07-28 18:40:00 +00001921 ObjectIdx = MF.getFrameInfo().CreateFixedObject(4, i * 4, true);
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +00001922 Info->setDebuggerWorkGroupIDStackObjectIndex(i, ObjectIdx);
1923 // Create fixed stack object for work item ID.
Matthias Braun941a7052016-07-28 18:40:00 +00001924 ObjectIdx = MF.getFrameInfo().CreateFixedObject(4, i * 4 + 16, true);
Konstantin Zhuravlyovf2f3d142016-06-25 03:11:28 +00001925 Info->setDebuggerWorkItemIDStackObjectIndex(i, ObjectIdx);
1926 }
1927}
1928
Konstantin Zhuravlyov08326b62016-10-20 18:12:38 +00001929bool SITargetLowering::shouldEmitFixup(const GlobalValue *GV) const {
1930 const Triple &TT = getTargetMachine().getTargetTriple();
1931 return GV->getType()->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS &&
1932 AMDGPU::shouldEmitConstantsToTextSection(TT);
1933}
1934
1935bool SITargetLowering::shouldEmitGOTReloc(const GlobalValue *GV) const {
1936 return (GV->getType()->getAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS ||
1937 GV->getType()->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS) &&
1938 !shouldEmitFixup(GV) &&
1939 !getTargetMachine().shouldAssumeDSOLocal(*GV->getParent(), GV);
1940}
1941
1942bool SITargetLowering::shouldEmitPCReloc(const GlobalValue *GV) const {
1943 return !shouldEmitFixup(GV) && !shouldEmitGOTReloc(GV);
1944}
1945
Tom Stellardf8794352012-12-19 22:10:31 +00001946/// This transforms the control flow intrinsics to get the branch destination as
1947/// last parameter, also switches branch target with BR if the need arise
1948SDValue SITargetLowering::LowerBRCOND(SDValue BRCOND,
1949 SelectionDAG &DAG) const {
1950
Andrew Trickef9de2a2013-05-25 02:42:55 +00001951 SDLoc DL(BRCOND);
Tom Stellardf8794352012-12-19 22:10:31 +00001952
1953 SDNode *Intr = BRCOND.getOperand(1).getNode();
1954 SDValue Target = BRCOND.getOperand(2);
Craig Topper062a2ba2014-04-25 05:30:21 +00001955 SDNode *BR = nullptr;
Tom Stellardbc4497b2016-02-12 23:45:29 +00001956 SDNode *SetCC = nullptr;
Tom Stellardf8794352012-12-19 22:10:31 +00001957
1958 if (Intr->getOpcode() == ISD::SETCC) {
1959 // As long as we negate the condition everything is fine
Tom Stellardbc4497b2016-02-12 23:45:29 +00001960 SetCC = Intr;
Tom Stellardf8794352012-12-19 22:10:31 +00001961 Intr = SetCC->getOperand(0).getNode();
1962
1963 } else {
1964 // Get the target from BR if we don't negate the condition
1965 BR = findUser(BRCOND, ISD::BR);
1966 Target = BR->getOperand(1);
1967 }
1968
Matt Arsenault6408c912016-09-16 22:11:18 +00001969 // FIXME: This changes the types of the intrinsics instead of introducing new
1970 // nodes with the correct types.
1971 // e.g. llvm.amdgcn.loop
1972
1973 // eg: i1,ch = llvm.amdgcn.loop t0, TargetConstant:i32<6271>, t3
1974 // => t9: ch = llvm.amdgcn.loop t0, TargetConstant:i32<6271>, t3, BasicBlock:ch<bb1 0x7fee5286d088>
1975
Nicolai Haehnleffbd56a2016-05-05 17:36:36 +00001976 if (!isCFIntrinsic(Intr)) {
Tom Stellardbc4497b2016-02-12 23:45:29 +00001977 // This is a uniform branch so we don't need to legalize.
1978 return BRCOND;
1979 }
1980
Matt Arsenault6408c912016-09-16 22:11:18 +00001981 bool HaveChain = Intr->getOpcode() == ISD::INTRINSIC_VOID ||
1982 Intr->getOpcode() == ISD::INTRINSIC_W_CHAIN;
1983
Tom Stellardbc4497b2016-02-12 23:45:29 +00001984 assert(!SetCC ||
1985 (SetCC->getConstantOperandVal(1) == 1 &&
Tom Stellardbc4497b2016-02-12 23:45:29 +00001986 cast<CondCodeSDNode>(SetCC->getOperand(2).getNode())->get() ==
1987 ISD::SETNE));
Tom Stellardf8794352012-12-19 22:10:31 +00001988
Tom Stellardf8794352012-12-19 22:10:31 +00001989 // operands of the new intrinsic call
1990 SmallVector<SDValue, 4> Ops;
Matt Arsenault6408c912016-09-16 22:11:18 +00001991 if (HaveChain)
1992 Ops.push_back(BRCOND.getOperand(0));
1993
1994 Ops.append(Intr->op_begin() + (HaveChain ? 1 : 0), Intr->op_end());
Tom Stellardf8794352012-12-19 22:10:31 +00001995 Ops.push_back(Target);
1996
Matt Arsenault6408c912016-09-16 22:11:18 +00001997 ArrayRef<EVT> Res(Intr->value_begin() + 1, Intr->value_end());
1998
Tom Stellardf8794352012-12-19 22:10:31 +00001999 // build the new intrinsic call
2000 SDNode *Result = DAG.getNode(
2001 Res.size() > 1 ? ISD::INTRINSIC_W_CHAIN : ISD::INTRINSIC_VOID, DL,
Craig Topper48d114b2014-04-26 18:35:24 +00002002 DAG.getVTList(Res), Ops).getNode();
Tom Stellardf8794352012-12-19 22:10:31 +00002003
Matt Arsenault6408c912016-09-16 22:11:18 +00002004 if (!HaveChain) {
2005 SDValue Ops[] = {
2006 SDValue(Result, 0),
2007 BRCOND.getOperand(0)
2008 };
2009
2010 Result = DAG.getMergeValues(Ops, DL).getNode();
2011 }
2012
Tom Stellardf8794352012-12-19 22:10:31 +00002013 if (BR) {
2014 // Give the branch instruction our target
2015 SDValue Ops[] = {
2016 BR->getOperand(0),
2017 BRCOND.getOperand(2)
2018 };
Chandler Carruth356665a2014-08-01 22:09:43 +00002019 SDValue NewBR = DAG.getNode(ISD::BR, DL, BR->getVTList(), Ops);
2020 DAG.ReplaceAllUsesWith(BR, NewBR.getNode());
2021 BR = NewBR.getNode();
Tom Stellardf8794352012-12-19 22:10:31 +00002022 }
2023
2024 SDValue Chain = SDValue(Result, Result->getNumValues() - 1);
2025
2026 // Copy the intrinsic results to registers
2027 for (unsigned i = 1, e = Intr->getNumValues() - 1; i != e; ++i) {
2028 SDNode *CopyToReg = findUser(SDValue(Intr, i), ISD::CopyToReg);
2029 if (!CopyToReg)
2030 continue;
2031
2032 Chain = DAG.getCopyToReg(
2033 Chain, DL,
2034 CopyToReg->getOperand(1),
2035 SDValue(Result, i - 1),
2036 SDValue());
2037
2038 DAG.ReplaceAllUsesWith(SDValue(CopyToReg, 0), CopyToReg->getOperand(0));
2039 }
2040
2041 // Remove the old intrinsic from the chain
2042 DAG.ReplaceAllUsesOfValueWith(
2043 SDValue(Intr, Intr->getNumValues() - 1),
2044 Intr->getOperand(0));
2045
2046 return Chain;
Tom Stellard75aadc22012-12-11 21:25:42 +00002047}
2048
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +00002049SDValue SITargetLowering::getFPExtOrFPTrunc(SelectionDAG &DAG,
2050 SDValue Op,
2051 const SDLoc &DL,
2052 EVT VT) const {
2053 return Op.getValueType().bitsLE(VT) ?
2054 DAG.getNode(ISD::FP_EXTEND, DL, VT, Op) :
2055 DAG.getNode(ISD::FTRUNC, DL, VT, Op);
2056}
2057
2058SDValue SITargetLowering::lowerConstantFP(SDValue Op, SelectionDAG &DAG) const {
2059 if (ConstantFPSDNode *FP = dyn_cast<ConstantFPSDNode>(Op)) {
2060 return DAG.getConstant(FP->getValueAPF().bitcastToAPInt().getZExtValue(),
2061 SDLoc(Op), MVT::i32);
2062 }
2063
2064 return SDValue();
2065}
2066
Konstantin Zhuravlyovd709efb2016-11-17 04:28:37 +00002067SDValue SITargetLowering::lowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const {
Matt Arsenaultafe614c2016-11-18 18:33:36 +00002068 assert(Op.getValueType() == MVT::f16 &&
Konstantin Zhuravlyovd709efb2016-11-17 04:28:37 +00002069 "Do not know how to custom lower FP_ROUND for non-f16 type");
2070
Matt Arsenaultafe614c2016-11-18 18:33:36 +00002071 SDValue Src = Op.getOperand(0);
2072 EVT SrcVT = Src.getValueType();
Konstantin Zhuravlyovd709efb2016-11-17 04:28:37 +00002073 if (SrcVT != MVT::f64)
2074 return Op;
2075
2076 SDLoc DL(Op);
Matt Arsenaultafe614c2016-11-18 18:33:36 +00002077
Konstantin Zhuravlyovd709efb2016-11-17 04:28:37 +00002078 SDValue FpToFp16 = DAG.getNode(ISD::FP_TO_FP16, DL, MVT::i32, Src);
2079 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, DL, MVT::i16, FpToFp16);
2080 return DAG.getNode(ISD::BITCAST, DL, MVT::f16, Trunc);;
2081}
2082
Matt Arsenault99c14522016-04-25 19:27:24 +00002083SDValue SITargetLowering::getSegmentAperture(unsigned AS,
2084 SelectionDAG &DAG) const {
2085 SDLoc SL;
2086 MachineFunction &MF = DAG.getMachineFunction();
2087 SIMachineFunctionInfo *Info = MF.getInfo<SIMachineFunctionInfo>();
Matt Arsenault3b2e2a52016-06-06 20:03:31 +00002088 unsigned UserSGPR = Info->getQueuePtrUserSGPR();
2089 assert(UserSGPR != AMDGPU::NoRegister);
2090
Matt Arsenault99c14522016-04-25 19:27:24 +00002091 SDValue QueuePtr = CreateLiveInRegister(
Matt Arsenault3b2e2a52016-06-06 20:03:31 +00002092 DAG, &AMDGPU::SReg_64RegClass, UserSGPR, MVT::i64);
Matt Arsenault99c14522016-04-25 19:27:24 +00002093
2094 // Offset into amd_queue_t for group_segment_aperture_base_hi /
2095 // private_segment_aperture_base_hi.
2096 uint32_t StructOffset = (AS == AMDGPUAS::LOCAL_ADDRESS) ? 0x40 : 0x44;
2097
2098 SDValue Ptr = DAG.getNode(ISD::ADD, SL, MVT::i64, QueuePtr,
2099 DAG.getConstant(StructOffset, SL, MVT::i64));
2100
2101 // TODO: Use custom target PseudoSourceValue.
2102 // TODO: We should use the value from the IR intrinsic call, but it might not
2103 // be available and how do we get it?
2104 Value *V = UndefValue::get(PointerType::get(Type::getInt8Ty(*DAG.getContext()),
2105 AMDGPUAS::CONSTANT_ADDRESS));
2106
2107 MachinePointerInfo PtrInfo(V, StructOffset);
Justin Lebar9c375812016-07-15 18:27:10 +00002108 return DAG.getLoad(MVT::i32, SL, QueuePtr.getValue(1), Ptr, PtrInfo,
2109 MinAlign(64, StructOffset),
Justin Lebaradbf09e2016-09-11 01:38:58 +00002110 MachineMemOperand::MODereferenceable |
2111 MachineMemOperand::MOInvariant);
Matt Arsenault99c14522016-04-25 19:27:24 +00002112}
2113
2114SDValue SITargetLowering::lowerADDRSPACECAST(SDValue Op,
2115 SelectionDAG &DAG) const {
2116 SDLoc SL(Op);
2117 const AddrSpaceCastSDNode *ASC = cast<AddrSpaceCastSDNode>(Op);
2118
2119 SDValue Src = ASC->getOperand(0);
2120
2121 // FIXME: Really support non-0 null pointers.
2122 SDValue SegmentNullPtr = DAG.getConstant(-1, SL, MVT::i32);
2123 SDValue FlatNullPtr = DAG.getConstant(0, SL, MVT::i64);
2124
2125 // flat -> local/private
2126 if (ASC->getSrcAddressSpace() == AMDGPUAS::FLAT_ADDRESS) {
2127 if (ASC->getDestAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
2128 ASC->getDestAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) {
2129 SDValue NonNull = DAG.getSetCC(SL, MVT::i1, Src, FlatNullPtr, ISD::SETNE);
2130 SDValue Ptr = DAG.getNode(ISD::TRUNCATE, SL, MVT::i32, Src);
2131
2132 return DAG.getNode(ISD::SELECT, SL, MVT::i32,
2133 NonNull, Ptr, SegmentNullPtr);
2134 }
2135 }
2136
2137 // local/private -> flat
2138 if (ASC->getDestAddressSpace() == AMDGPUAS::FLAT_ADDRESS) {
2139 if (ASC->getSrcAddressSpace() == AMDGPUAS::LOCAL_ADDRESS ||
2140 ASC->getSrcAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) {
2141 SDValue NonNull
2142 = DAG.getSetCC(SL, MVT::i1, Src, SegmentNullPtr, ISD::SETNE);
2143
2144 SDValue Aperture = getSegmentAperture(ASC->getSrcAddressSpace(), DAG);
2145 SDValue CvtPtr
2146 = DAG.getNode(ISD::BUILD_VECTOR, SL, MVT::v2i32, Src, Aperture);
2147
2148 return DAG.getNode(ISD::SELECT, SL, MVT::i64, NonNull,
2149 DAG.getNode(ISD::BITCAST, SL, MVT::i64, CvtPtr),
2150 FlatNullPtr);
2151 }
2152 }
2153
2154 // global <-> flat are no-ops and never emitted.
2155
2156 const MachineFunction &MF = DAG.getMachineFunction();
2157 DiagnosticInfoUnsupported InvalidAddrSpaceCast(
2158 *MF.getFunction(), "invalid addrspacecast", SL.getDebugLoc());
2159 DAG.getContext()->diagnose(InvalidAddrSpaceCast);
2160
2161 return DAG.getUNDEF(ASC->getValueType(0));
2162}
2163
Tom Stellard418beb72016-07-13 14:23:33 +00002164bool
2165SITargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
2166 // We can fold offsets for anything that doesn't require a GOT relocation.
Konstantin Zhuravlyov08326b62016-10-20 18:12:38 +00002167 return (GA->getAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS ||
2168 GA->getAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS) &&
2169 !shouldEmitGOTReloc(GA->getGlobal());
Tom Stellard418beb72016-07-13 14:23:33 +00002170}
Tom Stellardbf3e6e52016-06-14 20:29:59 +00002171
Tom Stellard418beb72016-07-13 14:23:33 +00002172static SDValue buildPCRelGlobalAddress(SelectionDAG &DAG, const GlobalValue *GV,
2173 SDLoc DL, unsigned Offset, EVT PtrVT,
2174 unsigned GAFlags = SIInstrInfo::MO_NONE) {
Tom Stellardbf3e6e52016-06-14 20:29:59 +00002175 // In order to support pc-relative addressing, the PC_ADD_REL_OFFSET SDNode is
2176 // lowered to the following code sequence:
Tom Stellardbf3e6e52016-06-14 20:29:59 +00002177 //
Konstantin Zhuravlyovc96b5d72016-10-14 04:37:34 +00002178 // For constant address space:
2179 // s_getpc_b64 s[0:1]
2180 // s_add_u32 s0, s0, $symbol
2181 // s_addc_u32 s1, s1, 0
2182 //
2183 // s_getpc_b64 returns the address of the s_add_u32 instruction and then
2184 // a fixup or relocation is emitted to replace $symbol with a literal
2185 // constant, which is a pc-relative offset from the encoding of the $symbol
2186 // operand to the global variable.
2187 //
2188 // For global address space:
2189 // s_getpc_b64 s[0:1]
2190 // s_add_u32 s0, s0, $symbol@{gotpc}rel32@lo
2191 // s_addc_u32 s1, s1, $symbol@{gotpc}rel32@hi
2192 //
2193 // s_getpc_b64 returns the address of the s_add_u32 instruction and then
2194 // fixups or relocations are emitted to replace $symbol@*@lo and
2195 // $symbol@*@hi with lower 32 bits and higher 32 bits of a literal constant,
2196 // which is a 64-bit pc-relative offset from the encoding of the $symbol
2197 // operand to the global variable.
Tom Stellardbf3e6e52016-06-14 20:29:59 +00002198 //
2199 // What we want here is an offset from the value returned by s_getpc
2200 // (which is the address of the s_add_u32 instruction) to the global
2201 // variable, but since the encoding of $symbol starts 4 bytes after the start
2202 // of the s_add_u32 instruction, we end up with an offset that is 4 bytes too
2203 // small. This requires us to add 4 to the global variable offset in order to
2204 // compute the correct address.
Konstantin Zhuravlyovc96b5d72016-10-14 04:37:34 +00002205 SDValue PtrLo = DAG.getTargetGlobalAddress(GV, DL, MVT::i32, Offset + 4,
2206 GAFlags);
2207 SDValue PtrHi = DAG.getTargetGlobalAddress(GV, DL, MVT::i32, Offset + 4,
2208 GAFlags == SIInstrInfo::MO_NONE ?
2209 GAFlags : GAFlags + 1);
2210 return DAG.getNode(AMDGPUISD::PC_ADD_REL_OFFSET, DL, PtrVT, PtrLo, PtrHi);
Tom Stellardbf3e6e52016-06-14 20:29:59 +00002211}
2212
Tom Stellard418beb72016-07-13 14:23:33 +00002213SDValue SITargetLowering::LowerGlobalAddress(AMDGPUMachineFunction *MFI,
2214 SDValue Op,
2215 SelectionDAG &DAG) const {
2216 GlobalAddressSDNode *GSD = cast<GlobalAddressSDNode>(Op);
2217
2218 if (GSD->getAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS &&
2219 GSD->getAddressSpace() != AMDGPUAS::GLOBAL_ADDRESS)
2220 return AMDGPUTargetLowering::LowerGlobalAddress(MFI, Op, DAG);
2221
2222 SDLoc DL(GSD);
2223 const GlobalValue *GV = GSD->getGlobal();
2224 EVT PtrVT = Op.getValueType();
2225
Konstantin Zhuravlyov08326b62016-10-20 18:12:38 +00002226 if (shouldEmitFixup(GV))
Tom Stellard418beb72016-07-13 14:23:33 +00002227 return buildPCRelGlobalAddress(DAG, GV, DL, GSD->getOffset(), PtrVT);
Konstantin Zhuravlyov08326b62016-10-20 18:12:38 +00002228 else if (shouldEmitPCReloc(GV))
Konstantin Zhuravlyovc96b5d72016-10-14 04:37:34 +00002229 return buildPCRelGlobalAddress(DAG, GV, DL, GSD->getOffset(), PtrVT,
2230 SIInstrInfo::MO_REL32);
Tom Stellard418beb72016-07-13 14:23:33 +00002231
2232 SDValue GOTAddr = buildPCRelGlobalAddress(DAG, GV, DL, 0, PtrVT,
Konstantin Zhuravlyovc96b5d72016-10-14 04:37:34 +00002233 SIInstrInfo::MO_GOTPCREL32);
Tom Stellard418beb72016-07-13 14:23:33 +00002234
2235 Type *Ty = PtrVT.getTypeForEVT(*DAG.getContext());
2236 PointerType *PtrTy = PointerType::get(Ty, AMDGPUAS::CONSTANT_ADDRESS);
2237 const DataLayout &DataLayout = DAG.getDataLayout();
2238 unsigned Align = DataLayout.getABITypeAlignment(PtrTy);
2239 // FIXME: Use a PseudoSourceValue once those can be assigned an address space.
2240 MachinePointerInfo PtrInfo(UndefValue::get(PtrTy));
2241
Justin Lebar9c375812016-07-15 18:27:10 +00002242 return DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), GOTAddr, PtrInfo, Align,
Justin Lebaradbf09e2016-09-11 01:38:58 +00002243 MachineMemOperand::MODereferenceable |
2244 MachineMemOperand::MOInvariant);
Tom Stellard418beb72016-07-13 14:23:33 +00002245}
2246
Matt Arsenault0bb294b2016-06-17 22:27:03 +00002247SDValue SITargetLowering::lowerTRAP(SDValue Op,
2248 SelectionDAG &DAG) const {
2249 const MachineFunction &MF = DAG.getMachineFunction();
2250 DiagnosticInfoUnsupported NoTrap(*MF.getFunction(),
2251 "trap handler not supported",
2252 Op.getDebugLoc(),
2253 DS_Warning);
2254 DAG.getContext()->diagnose(NoTrap);
2255
2256 // Emit s_endpgm.
2257
2258 // FIXME: This should really be selected to s_trap, but that requires
2259 // setting up the trap handler for it o do anything.
Matt Arsenault9babdf42016-06-22 20:15:28 +00002260 return DAG.getNode(AMDGPUISD::ENDPGM, SDLoc(Op), MVT::Other,
2261 Op.getOperand(0));
Matt Arsenault0bb294b2016-06-17 22:27:03 +00002262}
2263
Benjamin Kramerbdc49562016-06-12 15:39:02 +00002264SDValue SITargetLowering::copyToM0(SelectionDAG &DAG, SDValue Chain,
2265 const SDLoc &DL, SDValue V) const {
Matt Arsenault4ac341c2016-04-14 21:58:15 +00002266 // We can't use S_MOV_B32 directly, because there is no way to specify m0 as
2267 // the destination register.
2268 //
Tom Stellardfc92e772015-05-12 14:18:14 +00002269 // We can't use CopyToReg, because MachineCSE won't combine COPY instructions,
2270 // so we will end up with redundant moves to m0.
2271 //
Matt Arsenault4ac341c2016-04-14 21:58:15 +00002272 // We use a pseudo to ensure we emit s_mov_b32 with m0 as the direct result.
2273
2274 // A Null SDValue creates a glue result.
2275 SDNode *M0 = DAG.getMachineNode(AMDGPU::SI_INIT_M0, DL, MVT::Other, MVT::Glue,
2276 V, Chain);
2277 return SDValue(M0, 0);
Tom Stellardfc92e772015-05-12 14:18:14 +00002278}
2279
Matt Arsenaultff6da2f2015-11-30 21:15:45 +00002280SDValue SITargetLowering::lowerImplicitZextParam(SelectionDAG &DAG,
2281 SDValue Op,
2282 MVT VT,
2283 unsigned Offset) const {
2284 SDLoc SL(Op);
2285 SDValue Param = LowerParameter(DAG, MVT::i32, MVT::i32, SL,
2286 DAG.getEntryNode(), Offset, false);
2287 // The local size values will have the hi 16-bits as zero.
2288 return DAG.getNode(ISD::AssertZext, SL, MVT::i32, Param,
2289 DAG.getValueType(VT));
2290}
2291
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002292static SDValue emitNonHSAIntrinsicError(SelectionDAG& DAG, SDLoc DL, EVT VT) {
Matt Arsenaulte0132462016-01-30 05:19:45 +00002293 DiagnosticInfoUnsupported BadIntrin(*DAG.getMachineFunction().getFunction(),
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002294 "non-hsa intrinsic with hsa target",
2295 DL.getDebugLoc());
2296 DAG.getContext()->diagnose(BadIntrin);
2297 return DAG.getUNDEF(VT);
2298}
2299
2300static SDValue emitRemovedIntrinsicError(SelectionDAG& DAG, SDLoc DL, EVT VT) {
2301 DiagnosticInfoUnsupported BadIntrin(*DAG.getMachineFunction().getFunction(),
2302 "intrinsic not supported on subtarget",
2303 DL.getDebugLoc());
Matt Arsenaulte0132462016-01-30 05:19:45 +00002304 DAG.getContext()->diagnose(BadIntrin);
2305 return DAG.getUNDEF(VT);
2306}
2307
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002308SDValue SITargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
2309 SelectionDAG &DAG) const {
2310 MachineFunction &MF = DAG.getMachineFunction();
Tom Stellarddcb9f092015-07-09 21:20:37 +00002311 auto MFI = MF.getInfo<SIMachineFunctionInfo>();
Matt Arsenault43e92fe2016-06-24 06:30:11 +00002312 const SIRegisterInfo *TRI = getSubtarget()->getRegisterInfo();
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002313
2314 EVT VT = Op.getValueType();
2315 SDLoc DL(Op);
2316 unsigned IntrinsicID = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2317
Sanjay Patela2607012015-09-16 16:31:21 +00002318 // TODO: Should this propagate fast-math-flags?
2319
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002320 switch (IntrinsicID) {
Tom Stellard48f29f22015-11-26 00:43:29 +00002321 case Intrinsic::amdgcn_dispatch_ptr:
Matt Arsenault48ab5262016-04-25 19:27:18 +00002322 case Intrinsic::amdgcn_queue_ptr: {
Tom Stellard0b76fc4c2016-09-16 21:34:26 +00002323 if (!Subtarget->isAmdCodeObjectV2()) {
Oliver Stannard7e7d9832016-02-02 13:52:43 +00002324 DiagnosticInfoUnsupported BadIntrin(
2325 *MF.getFunction(), "unsupported hsa intrinsic without hsa target",
2326 DL.getDebugLoc());
Matt Arsenault800fecf2016-01-11 21:18:33 +00002327 DAG.getContext()->diagnose(BadIntrin);
2328 return DAG.getUNDEF(VT);
2329 }
2330
Matt Arsenault48ab5262016-04-25 19:27:18 +00002331 auto Reg = IntrinsicID == Intrinsic::amdgcn_dispatch_ptr ?
2332 SIRegisterInfo::DISPATCH_PTR : SIRegisterInfo::QUEUE_PTR;
Tom Stellard48f29f22015-11-26 00:43:29 +00002333 return CreateLiveInRegister(DAG, &AMDGPU::SReg_64RegClass,
Matt Arsenault48ab5262016-04-25 19:27:18 +00002334 TRI->getPreloadedValue(MF, Reg), VT);
2335 }
Jan Veselyfea814d2016-06-21 20:46:20 +00002336 case Intrinsic::amdgcn_implicitarg_ptr: {
2337 unsigned offset = getImplicitParameterOffset(MFI, FIRST_IMPLICIT);
2338 return LowerParameterPtr(DAG, DL, DAG.getEntryNode(), offset);
2339 }
Matt Arsenaultdc4ebad2016-04-29 21:16:52 +00002340 case Intrinsic::amdgcn_kernarg_segment_ptr: {
2341 unsigned Reg
2342 = TRI->getPreloadedValue(MF, SIRegisterInfo::KERNARG_SEGMENT_PTR);
2343 return CreateLiveInRegister(DAG, &AMDGPU::SReg_64RegClass, Reg, VT);
2344 }
Matt Arsenault8d718dc2016-07-22 17:01:30 +00002345 case Intrinsic::amdgcn_dispatch_id: {
2346 unsigned Reg = TRI->getPreloadedValue(MF, SIRegisterInfo::DISPATCH_ID);
2347 return CreateLiveInRegister(DAG, &AMDGPU::SReg_64RegClass, Reg, VT);
2348 }
Matt Arsenaultf75257a2016-01-23 05:32:20 +00002349 case Intrinsic::amdgcn_rcp:
2350 return DAG.getNode(AMDGPUISD::RCP, DL, VT, Op.getOperand(1));
2351 case Intrinsic::amdgcn_rsq:
Matt Arsenault0c3e2332016-01-26 04:14:16 +00002352 case AMDGPUIntrinsic::AMDGPU_rsq: // Legacy name
Matt Arsenaultf75257a2016-01-23 05:32:20 +00002353 return DAG.getNode(AMDGPUISD::RSQ, DL, VT, Op.getOperand(1));
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002354 case Intrinsic::amdgcn_rsq_legacy: {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00002355 if (Subtarget->getGeneration() >= SISubtarget::VOLCANIC_ISLANDS)
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002356 return emitRemovedIntrinsicError(DAG, DL, VT);
2357
2358 return DAG.getNode(AMDGPUISD::RSQ_LEGACY, DL, VT, Op.getOperand(1));
2359 }
Matt Arsenault32fc5272016-07-26 16:45:45 +00002360 case Intrinsic::amdgcn_rcp_legacy: {
2361 if (Subtarget->getGeneration() >= SISubtarget::VOLCANIC_ISLANDS)
2362 return emitRemovedIntrinsicError(DAG, DL, VT);
2363 return DAG.getNode(AMDGPUISD::RCP_LEGACY, DL, VT, Op.getOperand(1));
2364 }
Matt Arsenault09b2c4a2016-07-15 21:26:52 +00002365 case Intrinsic::amdgcn_rsq_clamp: {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00002366 if (Subtarget->getGeneration() < SISubtarget::VOLCANIC_ISLANDS)
Matt Arsenault79963e82016-02-13 01:03:00 +00002367 return DAG.getNode(AMDGPUISD::RSQ_CLAMP, DL, VT, Op.getOperand(1));
Tom Stellard48f29f22015-11-26 00:43:29 +00002368
Matt Arsenaultf75257a2016-01-23 05:32:20 +00002369 Type *Type = VT.getTypeForEVT(*DAG.getContext());
2370 APFloat Max = APFloat::getLargest(Type->getFltSemantics());
2371 APFloat Min = APFloat::getLargest(Type->getFltSemantics(), true);
2372
2373 SDValue Rsq = DAG.getNode(AMDGPUISD::RSQ, DL, VT, Op.getOperand(1));
2374 SDValue Tmp = DAG.getNode(ISD::FMINNUM, DL, VT, Rsq,
2375 DAG.getConstantFP(Max, DL, VT));
2376 return DAG.getNode(ISD::FMAXNUM, DL, VT, Tmp,
2377 DAG.getConstantFP(Min, DL, VT));
2378 }
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002379 case Intrinsic::r600_read_ngroups_x:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002380 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002381 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002382
Tom Stellardec2e43c2014-09-22 15:35:29 +00002383 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(),
2384 SI::KernelInputOffsets::NGROUPS_X, false);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002385 case Intrinsic::r600_read_ngroups_y:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002386 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002387 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002388
Tom Stellardec2e43c2014-09-22 15:35:29 +00002389 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(),
2390 SI::KernelInputOffsets::NGROUPS_Y, false);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002391 case Intrinsic::r600_read_ngroups_z:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002392 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002393 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002394
Tom Stellardec2e43c2014-09-22 15:35:29 +00002395 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(),
2396 SI::KernelInputOffsets::NGROUPS_Z, false);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002397 case Intrinsic::r600_read_global_size_x:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002398 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002399 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002400
Tom Stellardec2e43c2014-09-22 15:35:29 +00002401 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(),
2402 SI::KernelInputOffsets::GLOBAL_SIZE_X, false);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002403 case Intrinsic::r600_read_global_size_y:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002404 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002405 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002406
Tom Stellardec2e43c2014-09-22 15:35:29 +00002407 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(),
2408 SI::KernelInputOffsets::GLOBAL_SIZE_Y, false);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002409 case Intrinsic::r600_read_global_size_z:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002410 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002411 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002412
Tom Stellardec2e43c2014-09-22 15:35:29 +00002413 return LowerParameter(DAG, VT, VT, DL, DAG.getEntryNode(),
2414 SI::KernelInputOffsets::GLOBAL_SIZE_Z, false);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002415 case Intrinsic::r600_read_local_size_x:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002416 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002417 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002418
Matt Arsenaultff6da2f2015-11-30 21:15:45 +00002419 return lowerImplicitZextParam(DAG, Op, MVT::i16,
2420 SI::KernelInputOffsets::LOCAL_SIZE_X);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002421 case Intrinsic::r600_read_local_size_y:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002422 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002423 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002424
Matt Arsenaultff6da2f2015-11-30 21:15:45 +00002425 return lowerImplicitZextParam(DAG, Op, MVT::i16,
2426 SI::KernelInputOffsets::LOCAL_SIZE_Y);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002427 case Intrinsic::r600_read_local_size_z:
Matt Arsenaulte0132462016-01-30 05:19:45 +00002428 if (Subtarget->isAmdHsaOS())
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00002429 return emitNonHSAIntrinsicError(DAG, DL, VT);
Matt Arsenaulte0132462016-01-30 05:19:45 +00002430
Matt Arsenaultff6da2f2015-11-30 21:15:45 +00002431 return lowerImplicitZextParam(DAG, Op, MVT::i16,
2432 SI::KernelInputOffsets::LOCAL_SIZE_Z);
Matt Arsenault43976df2016-01-30 04:25:19 +00002433 case Intrinsic::amdgcn_workgroup_id_x:
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002434 case Intrinsic::r600_read_tgid_x:
Marek Olsak79c05872016-11-25 17:37:09 +00002435 return CreateLiveInRegister(DAG, &AMDGPU::SReg_32_XM0RegClass,
Matt Arsenaultac234b62015-11-30 21:15:57 +00002436 TRI->getPreloadedValue(MF, SIRegisterInfo::WORKGROUP_ID_X), VT);
Matt Arsenault43976df2016-01-30 04:25:19 +00002437 case Intrinsic::amdgcn_workgroup_id_y:
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002438 case Intrinsic::r600_read_tgid_y:
Marek Olsak79c05872016-11-25 17:37:09 +00002439 return CreateLiveInRegister(DAG, &AMDGPU::SReg_32_XM0RegClass,
Matt Arsenaultac234b62015-11-30 21:15:57 +00002440 TRI->getPreloadedValue(MF, SIRegisterInfo::WORKGROUP_ID_Y), VT);
Matt Arsenault43976df2016-01-30 04:25:19 +00002441 case Intrinsic::amdgcn_workgroup_id_z:
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002442 case Intrinsic::r600_read_tgid_z:
Marek Olsak79c05872016-11-25 17:37:09 +00002443 return CreateLiveInRegister(DAG, &AMDGPU::SReg_32_XM0RegClass,
Matt Arsenaultac234b62015-11-30 21:15:57 +00002444 TRI->getPreloadedValue(MF, SIRegisterInfo::WORKGROUP_ID_Z), VT);
Matt Arsenault43976df2016-01-30 04:25:19 +00002445 case Intrinsic::amdgcn_workitem_id_x:
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002446 case Intrinsic::r600_read_tidig_x:
Tom Stellard45c0b3a2015-01-07 20:59:25 +00002447 return CreateLiveInRegister(DAG, &AMDGPU::VGPR_32RegClass,
Matt Arsenaultac234b62015-11-30 21:15:57 +00002448 TRI->getPreloadedValue(MF, SIRegisterInfo::WORKITEM_ID_X), VT);
Matt Arsenault43976df2016-01-30 04:25:19 +00002449 case Intrinsic::amdgcn_workitem_id_y:
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002450 case Intrinsic::r600_read_tidig_y:
Tom Stellard45c0b3a2015-01-07 20:59:25 +00002451 return CreateLiveInRegister(DAG, &AMDGPU::VGPR_32RegClass,
Matt Arsenaultac234b62015-11-30 21:15:57 +00002452 TRI->getPreloadedValue(MF, SIRegisterInfo::WORKITEM_ID_Y), VT);
Matt Arsenault43976df2016-01-30 04:25:19 +00002453 case Intrinsic::amdgcn_workitem_id_z:
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002454 case Intrinsic::r600_read_tidig_z:
Tom Stellard45c0b3a2015-01-07 20:59:25 +00002455 return CreateLiveInRegister(DAG, &AMDGPU::VGPR_32RegClass,
Matt Arsenaultac234b62015-11-30 21:15:57 +00002456 TRI->getPreloadedValue(MF, SIRegisterInfo::WORKITEM_ID_Z), VT);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002457 case AMDGPUIntrinsic::SI_load_const: {
2458 SDValue Ops[] = {
2459 Op.getOperand(1),
2460 Op.getOperand(2)
2461 };
2462
2463 MachineMemOperand *MMO = MF.getMachineMemOperand(
Justin Lebaradbf09e2016-09-11 01:38:58 +00002464 MachinePointerInfo(),
2465 MachineMemOperand::MOLoad | MachineMemOperand::MODereferenceable |
2466 MachineMemOperand::MOInvariant,
2467 VT.getStoreSize(), 4);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002468 return DAG.getMemIntrinsicNode(AMDGPUISD::LOAD_CONSTANT, DL,
2469 Op->getVTList(), Ops, VT, MMO);
2470 }
Matt Arsenaulta1fe17c2016-07-19 23:16:53 +00002471 case AMDGPUIntrinsic::amdgcn_fdiv_fast: {
2472 return lowerFDIV_FAST(Op, DAG);
2473 }
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002474 case AMDGPUIntrinsic::SI_vs_load_input:
2475 return DAG.getNode(AMDGPUISD::LOAD_INPUT, DL, VT,
2476 Op.getOperand(1),
2477 Op.getOperand(2),
2478 Op.getOperand(3));
Marek Olsak43650e42015-03-24 13:40:08 +00002479
Tom Stellard2a9d9472015-05-12 15:00:46 +00002480 case AMDGPUIntrinsic::SI_fs_constant: {
2481 SDValue M0 = copyToM0(DAG, DAG.getEntryNode(), DL, Op.getOperand(3));
2482 SDValue Glue = M0.getValue(1);
2483 return DAG.getNode(AMDGPUISD::INTERP_MOV, DL, MVT::f32,
2484 DAG.getConstant(2, DL, MVT::i32), // P0
2485 Op.getOperand(1), Op.getOperand(2), Glue);
2486 }
Marek Olsak6f6d3182015-10-29 15:29:09 +00002487 case AMDGPUIntrinsic::SI_packf16:
2488 if (Op.getOperand(1).isUndef() && Op.getOperand(2).isUndef())
2489 return DAG.getUNDEF(MVT::i32);
2490 return Op;
Tom Stellard2a9d9472015-05-12 15:00:46 +00002491 case AMDGPUIntrinsic::SI_fs_interp: {
2492 SDValue IJ = Op.getOperand(4);
2493 SDValue I = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, IJ,
2494 DAG.getConstant(0, DL, MVT::i32));
2495 SDValue J = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, IJ,
2496 DAG.getConstant(1, DL, MVT::i32));
Tom Stellard1473f072016-11-26 02:26:04 +00002497 I = DAG.getNode(ISD::BITCAST, DL, MVT::f32, I);
2498 J = DAG.getNode(ISD::BITCAST, DL, MVT::f32, J);
Tom Stellard2a9d9472015-05-12 15:00:46 +00002499 SDValue M0 = copyToM0(DAG, DAG.getEntryNode(), DL, Op.getOperand(3));
2500 SDValue Glue = M0.getValue(1);
2501 SDValue P1 = DAG.getNode(AMDGPUISD::INTERP_P1, DL,
2502 DAG.getVTList(MVT::f32, MVT::Glue),
2503 I, Op.getOperand(1), Op.getOperand(2), Glue);
2504 Glue = SDValue(P1.getNode(), 1);
2505 return DAG.getNode(AMDGPUISD::INTERP_P2, DL, MVT::f32, P1, J,
2506 Op.getOperand(1), Op.getOperand(2), Glue);
2507 }
Tom Stellard2187bb82016-12-06 23:52:13 +00002508 case Intrinsic::amdgcn_interp_mov: {
2509 SDValue M0 = copyToM0(DAG, DAG.getEntryNode(), DL, Op.getOperand(4));
2510 SDValue Glue = M0.getValue(1);
2511 return DAG.getNode(AMDGPUISD::INTERP_MOV, DL, MVT::f32, Op.getOperand(1),
2512 Op.getOperand(2), Op.getOperand(3), Glue);
2513 }
Tom Stellardad7d03d2015-12-15 17:02:49 +00002514 case Intrinsic::amdgcn_interp_p1: {
2515 SDValue M0 = copyToM0(DAG, DAG.getEntryNode(), DL, Op.getOperand(4));
2516 SDValue Glue = M0.getValue(1);
2517 return DAG.getNode(AMDGPUISD::INTERP_P1, DL, MVT::f32, Op.getOperand(1),
2518 Op.getOperand(2), Op.getOperand(3), Glue);
2519 }
2520 case Intrinsic::amdgcn_interp_p2: {
2521 SDValue M0 = copyToM0(DAG, DAG.getEntryNode(), DL, Op.getOperand(5));
2522 SDValue Glue = SDValue(M0.getNode(), 1);
2523 return DAG.getNode(AMDGPUISD::INTERP_P2, DL, MVT::f32, Op.getOperand(1),
2524 Op.getOperand(2), Op.getOperand(3), Op.getOperand(4),
2525 Glue);
2526 }
Matt Arsenaultce56a0e2016-02-13 01:19:56 +00002527 case Intrinsic::amdgcn_sin:
2528 return DAG.getNode(AMDGPUISD::SIN_HW, DL, VT, Op.getOperand(1));
2529
2530 case Intrinsic::amdgcn_cos:
2531 return DAG.getNode(AMDGPUISD::COS_HW, DL, VT, Op.getOperand(1));
2532
2533 case Intrinsic::amdgcn_log_clamp: {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00002534 if (Subtarget->getGeneration() < SISubtarget::VOLCANIC_ISLANDS)
Matt Arsenaultce56a0e2016-02-13 01:19:56 +00002535 return SDValue();
2536
2537 DiagnosticInfoUnsupported BadIntrin(
2538 *MF.getFunction(), "intrinsic not supported on subtarget",
2539 DL.getDebugLoc());
2540 DAG.getContext()->diagnose(BadIntrin);
2541 return DAG.getUNDEF(VT);
2542 }
Matt Arsenaultf75257a2016-01-23 05:32:20 +00002543 case Intrinsic::amdgcn_ldexp:
2544 return DAG.getNode(AMDGPUISD::LDEXP, DL, VT,
2545 Op.getOperand(1), Op.getOperand(2));
Matt Arsenault74015162016-05-28 00:19:52 +00002546
2547 case Intrinsic::amdgcn_fract:
2548 return DAG.getNode(AMDGPUISD::FRACT, DL, VT, Op.getOperand(1));
2549
Matt Arsenaultf75257a2016-01-23 05:32:20 +00002550 case Intrinsic::amdgcn_class:
2551 return DAG.getNode(AMDGPUISD::FP_CLASS, DL, VT,
2552 Op.getOperand(1), Op.getOperand(2));
2553 case Intrinsic::amdgcn_div_fmas:
2554 return DAG.getNode(AMDGPUISD::DIV_FMAS, DL, VT,
2555 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3),
2556 Op.getOperand(4));
2557
2558 case Intrinsic::amdgcn_div_fixup:
2559 return DAG.getNode(AMDGPUISD::DIV_FIXUP, DL, VT,
2560 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
2561
2562 case Intrinsic::amdgcn_trig_preop:
2563 return DAG.getNode(AMDGPUISD::TRIG_PREOP, DL, VT,
2564 Op.getOperand(1), Op.getOperand(2));
2565 case Intrinsic::amdgcn_div_scale: {
2566 // 3rd parameter required to be a constant.
2567 const ConstantSDNode *Param = dyn_cast<ConstantSDNode>(Op.getOperand(3));
2568 if (!Param)
2569 return DAG.getUNDEF(VT);
2570
2571 // Translate to the operands expected by the machine instruction. The
2572 // first parameter must be the same as the first instruction.
2573 SDValue Numerator = Op.getOperand(1);
2574 SDValue Denominator = Op.getOperand(2);
2575
2576 // Note this order is opposite of the machine instruction's operations,
2577 // which is s0.f = Quotient, s1.f = Denominator, s2.f = Numerator. The
2578 // intrinsic has the numerator as the first operand to match a normal
2579 // division operation.
2580
2581 SDValue Src0 = Param->isAllOnesValue() ? Numerator : Denominator;
2582
2583 return DAG.getNode(AMDGPUISD::DIV_SCALE, DL, Op->getVTList(), Src0,
2584 Denominator, Numerator);
2585 }
Wei Ding07e03712016-07-28 16:42:13 +00002586 case Intrinsic::amdgcn_icmp: {
2587 const auto *CD = dyn_cast<ConstantSDNode>(Op.getOperand(3));
2588 int CondCode = CD->getSExtValue();
2589
2590 if (CondCode < ICmpInst::Predicate::FIRST_ICMP_PREDICATE ||
NAKAMURA Takumi59a20642016-08-22 00:58:04 +00002591 CondCode >= ICmpInst::Predicate::BAD_ICMP_PREDICATE)
Wei Ding07e03712016-07-28 16:42:13 +00002592 return DAG.getUNDEF(VT);
2593
NAKAMURA Takumi59a20642016-08-22 00:58:04 +00002594 ICmpInst::Predicate IcInput = static_cast<ICmpInst::Predicate>(CondCode);
Wei Ding07e03712016-07-28 16:42:13 +00002595 ISD::CondCode CCOpcode = getICmpCondCode(IcInput);
2596 return DAG.getNode(AMDGPUISD::SETCC, DL, VT, Op.getOperand(1),
2597 Op.getOperand(2), DAG.getCondCode(CCOpcode));
2598 }
2599 case Intrinsic::amdgcn_fcmp: {
2600 const auto *CD = dyn_cast<ConstantSDNode>(Op.getOperand(3));
2601 int CondCode = CD->getSExtValue();
2602
2603 if (CondCode <= FCmpInst::Predicate::FCMP_FALSE ||
NAKAMURA Takumi59a20642016-08-22 00:58:04 +00002604 CondCode >= FCmpInst::Predicate::FCMP_TRUE)
Wei Ding07e03712016-07-28 16:42:13 +00002605 return DAG.getUNDEF(VT);
2606
NAKAMURA Takumi59a20642016-08-22 00:58:04 +00002607 FCmpInst::Predicate IcInput = static_cast<FCmpInst::Predicate>(CondCode);
Wei Ding07e03712016-07-28 16:42:13 +00002608 ISD::CondCode CCOpcode = getFCmpCondCode(IcInput);
2609 return DAG.getNode(AMDGPUISD::SETCC, DL, VT, Op.getOperand(1),
2610 Op.getOperand(2), DAG.getCondCode(CCOpcode));
2611 }
Matt Arsenault32fc5272016-07-26 16:45:45 +00002612 case Intrinsic::amdgcn_fmul_legacy:
2613 return DAG.getNode(AMDGPUISD::FMUL_LEGACY, DL, VT,
2614 Op.getOperand(1), Op.getOperand(2));
Matt Arsenaultc96e1de2016-07-18 18:35:05 +00002615 case Intrinsic::amdgcn_sffbh:
2616 case AMDGPUIntrinsic::AMDGPU_flbit_i32: // Legacy name.
2617 return DAG.getNode(AMDGPUISD::FFBH_I32, DL, VT, Op.getOperand(1));
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002618 default:
2619 return AMDGPUTargetLowering::LowerOperation(Op, DAG);
2620 }
2621}
2622
Matt Arsenaulta9dbdca2016-04-12 14:05:04 +00002623SDValue SITargetLowering::LowerINTRINSIC_W_CHAIN(SDValue Op,
2624 SelectionDAG &DAG) const {
2625 unsigned IntrID = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
2626 switch (IntrID) {
2627 case Intrinsic::amdgcn_atomic_inc:
2628 case Intrinsic::amdgcn_atomic_dec: {
2629 MemSDNode *M = cast<MemSDNode>(Op);
2630 unsigned Opc = (IntrID == Intrinsic::amdgcn_atomic_inc) ?
2631 AMDGPUISD::ATOMIC_INC : AMDGPUISD::ATOMIC_DEC;
2632 SDValue Ops[] = {
2633 M->getOperand(0), // Chain
2634 M->getOperand(2), // Ptr
2635 M->getOperand(3) // Value
2636 };
2637
2638 return DAG.getMemIntrinsicNode(Opc, SDLoc(Op), M->getVTList(), Ops,
2639 M->getMemoryVT(), M->getMemOperand());
2640 }
2641 default:
2642 return SDValue();
2643 }
2644}
2645
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002646SDValue SITargetLowering::LowerINTRINSIC_VOID(SDValue Op,
2647 SelectionDAG &DAG) const {
2648 MachineFunction &MF = DAG.getMachineFunction();
Tom Stellardfc92e772015-05-12 14:18:14 +00002649 SDLoc DL(Op);
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002650 SDValue Chain = Op.getOperand(0);
2651 unsigned IntrinsicID = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
2652
2653 switch (IntrinsicID) {
Tom Stellardfc92e772015-05-12 14:18:14 +00002654 case AMDGPUIntrinsic::SI_sendmsg: {
2655 Chain = copyToM0(DAG, Chain, DL, Op.getOperand(3));
2656 SDValue Glue = Chain.getValue(1);
2657 return DAG.getNode(AMDGPUISD::SENDMSG, DL, MVT::Other, Chain,
2658 Op.getOperand(2), Glue);
2659 }
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002660 case AMDGPUIntrinsic::SI_tbuffer_store: {
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002661 SDValue Ops[] = {
2662 Chain,
2663 Op.getOperand(2),
2664 Op.getOperand(3),
2665 Op.getOperand(4),
2666 Op.getOperand(5),
2667 Op.getOperand(6),
2668 Op.getOperand(7),
2669 Op.getOperand(8),
2670 Op.getOperand(9),
2671 Op.getOperand(10),
2672 Op.getOperand(11),
2673 Op.getOperand(12),
2674 Op.getOperand(13),
2675 Op.getOperand(14)
2676 };
2677
2678 EVT VT = Op.getOperand(3).getValueType();
2679
2680 MachineMemOperand *MMO = MF.getMachineMemOperand(
2681 MachinePointerInfo(),
2682 MachineMemOperand::MOStore,
2683 VT.getStoreSize(), 4);
2684 return DAG.getMemIntrinsicNode(AMDGPUISD::TBUFFER_STORE_FORMAT, DL,
2685 Op->getVTList(), Ops, VT, MMO);
2686 }
Matt Arsenault00568682016-07-13 06:04:22 +00002687 case AMDGPUIntrinsic::AMDGPU_kill: {
Matt Arsenault03006fd2016-07-19 16:27:56 +00002688 SDValue Src = Op.getOperand(2);
2689 if (const ConstantFPSDNode *K = dyn_cast<ConstantFPSDNode>(Src)) {
Matt Arsenault00568682016-07-13 06:04:22 +00002690 if (!K->isNegative())
2691 return Chain;
Matt Arsenault03006fd2016-07-19 16:27:56 +00002692
2693 SDValue NegOne = DAG.getTargetConstant(FloatToBits(-1.0f), DL, MVT::i32);
2694 return DAG.getNode(AMDGPUISD::KILL, DL, MVT::Other, Chain, NegOne);
Matt Arsenault00568682016-07-13 06:04:22 +00002695 }
2696
Matt Arsenault03006fd2016-07-19 16:27:56 +00002697 SDValue Cast = DAG.getNode(ISD::BITCAST, DL, MVT::i32, Src);
2698 return DAG.getNode(AMDGPUISD::KILL, DL, MVT::Other, Chain, Cast);
Matt Arsenault00568682016-07-13 06:04:22 +00002699 }
Matt Arsenault7bee6ac2016-12-05 20:23:10 +00002700 case AMDGPUIntrinsic::SI_export: {
2701 const ConstantSDNode *En = cast<ConstantSDNode>(Op.getOperand(2));
2702 const ConstantSDNode *VM = cast<ConstantSDNode>(Op.getOperand(3));
2703 const ConstantSDNode *Done = cast<ConstantSDNode>(Op.getOperand(4));
2704 const ConstantSDNode *Tgt = cast<ConstantSDNode>(Op.getOperand(5));
2705 const ConstantSDNode *Compr = cast<ConstantSDNode>(Op.getOperand(6));
2706
2707 const SDValue Ops[] = {
2708 Chain,
2709 DAG.getTargetConstant(En->getZExtValue(), DL, MVT::i8),
2710 DAG.getTargetConstant(VM->getZExtValue(), DL, MVT::i1),
2711 DAG.getTargetConstant(Tgt->getZExtValue(), DL, MVT::i8),
2712 DAG.getTargetConstant(Compr->getZExtValue(), DL, MVT::i1),
2713 Op.getOperand(7), // src0
2714 Op.getOperand(8), // src1
2715 Op.getOperand(9), // src2
2716 Op.getOperand(10) // src3
2717 };
2718
2719 unsigned Opc = Done->isNullValue() ?
2720 AMDGPUISD::EXPORT : AMDGPUISD::EXPORT_DONE;
2721 return DAG.getNode(Opc, DL, Op->getVTList(), Ops);
2722 }
Matt Arsenaulta5789bb2014-07-26 06:23:37 +00002723 default:
2724 return SDValue();
2725 }
2726}
2727
Tom Stellard81d871d2013-11-13 23:36:50 +00002728SDValue SITargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
2729 SDLoc DL(Op);
2730 LoadSDNode *Load = cast<LoadSDNode>(Op);
Matt Arsenault6dfda962016-02-10 18:21:39 +00002731 ISD::LoadExtType ExtType = Load->getExtensionType();
Matt Arsenaulta1436412016-02-10 18:21:45 +00002732 EVT MemVT = Load->getMemoryVT();
Matt Arsenault6dfda962016-02-10 18:21:39 +00002733
Matt Arsenaulta1436412016-02-10 18:21:45 +00002734 if (ExtType == ISD::NON_EXTLOAD && MemVT.getSizeInBits() < 32) {
Matt Arsenault6dfda962016-02-10 18:21:39 +00002735 // FIXME: Copied from PPC
2736 // First, load into 32 bits, then truncate to 1 bit.
2737
2738 SDValue Chain = Load->getChain();
2739 SDValue BasePtr = Load->getBasePtr();
2740 MachineMemOperand *MMO = Load->getMemOperand();
2741
Tom Stellard115a6152016-11-10 16:02:37 +00002742 EVT RealMemVT = (MemVT == MVT::i1) ? MVT::i8 : MVT::i16;
2743
Matt Arsenault6dfda962016-02-10 18:21:39 +00002744 SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, DL, MVT::i32, Chain,
Tom Stellard115a6152016-11-10 16:02:37 +00002745 BasePtr, RealMemVT, MMO);
Matt Arsenault6dfda962016-02-10 18:21:39 +00002746
2747 SDValue Ops[] = {
Matt Arsenaulta1436412016-02-10 18:21:45 +00002748 DAG.getNode(ISD::TRUNCATE, DL, MemVT, NewLD),
Matt Arsenault6dfda962016-02-10 18:21:39 +00002749 NewLD.getValue(1)
2750 };
2751
2752 return DAG.getMergeValues(Ops, DL);
2753 }
Tom Stellard81d871d2013-11-13 23:36:50 +00002754
Matt Arsenaulta1436412016-02-10 18:21:45 +00002755 if (!MemVT.isVector())
2756 return SDValue();
Matt Arsenault4d801cd2015-11-24 12:05:03 +00002757
Matt Arsenaulta1436412016-02-10 18:21:45 +00002758 assert(Op.getValueType().getVectorElementType() == MVT::i32 &&
2759 "Custom lowering for non-i32 vectors hasn't been implemented.");
Matt Arsenault4d801cd2015-11-24 12:05:03 +00002760
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00002761 unsigned AS = Load->getAddressSpace();
2762 if (!allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), MemVT,
2763 AS, Load->getAlignment())) {
2764 SDValue Ops[2];
2765 std::tie(Ops[0], Ops[1]) = expandUnalignedLoad(Load, DAG);
2766 return DAG.getMergeValues(Ops, DL);
2767 }
2768
Tom Stellardf8e6eaf2016-10-26 14:38:47 +00002769 MachineFunction &MF = DAG.getMachineFunction();
2770 SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
2771 // If there is a possibilty that flat instruction access scratch memory
2772 // then we need to use the same legalization rules we use for private.
2773 if (AS == AMDGPUAS::FLAT_ADDRESS)
2774 AS = MFI->hasFlatScratchInit() ?
2775 AMDGPUAS::PRIVATE_ADDRESS : AMDGPUAS::GLOBAL_ADDRESS;
2776
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00002777 unsigned NumElements = MemVT.getVectorNumElements();
2778 switch (AS) {
Matt Arsenaulta1436412016-02-10 18:21:45 +00002779 case AMDGPUAS::CONSTANT_ADDRESS:
2780 if (isMemOpUniform(Load))
2781 return SDValue();
2782 // Non-uniform loads will be selected to MUBUF instructions, so they
Alexander Timofeev18009562016-12-08 17:28:47 +00002783 // have the same legalization requirements as global and private
Matt Arsenaulta1436412016-02-10 18:21:45 +00002784 // loads.
2785 //
Justin Bognerb03fd122016-08-17 05:10:15 +00002786 LLVM_FALLTHROUGH;
Alexander Timofeev18009562016-12-08 17:28:47 +00002787 case AMDGPUAS::GLOBAL_ADDRESS: {
2788 if (isMemOpUniform(Load) && isMemOpHasNoClobberedMemOperand(Load))
2789 return SDValue();
2790 // Non-uniform loads will be selected to MUBUF instructions, so they
2791 // have the same legalization requirements as global and private
2792 // loads.
2793 //
2794 }
2795 LLVM_FALLTHROUGH;
Matt Arsenaultf2ddbf02016-02-13 04:18:53 +00002796 case AMDGPUAS::FLAT_ADDRESS:
2797 if (NumElements > 4)
Matt Arsenaulta1436412016-02-10 18:21:45 +00002798 return SplitVectorLoad(Op, DAG);
2799 // v4 loads are supported for private and global memory.
2800 return SDValue();
Matt Arsenaultf2ddbf02016-02-13 04:18:53 +00002801 case AMDGPUAS::PRIVATE_ADDRESS: {
2802 // Depending on the setting of the private_element_size field in the
2803 // resource descriptor, we can only make private accesses up to a certain
2804 // size.
2805 switch (Subtarget->getMaxPrivateElementSize()) {
2806 case 4:
Matt Arsenault9c499c32016-04-14 23:31:26 +00002807 return scalarizeVectorLoad(Load, DAG);
Matt Arsenaultf2ddbf02016-02-13 04:18:53 +00002808 case 8:
2809 if (NumElements > 2)
2810 return SplitVectorLoad(Op, DAG);
2811 return SDValue();
2812 case 16:
2813 // Same as global/flat
2814 if (NumElements > 4)
2815 return SplitVectorLoad(Op, DAG);
2816 return SDValue();
2817 default:
2818 llvm_unreachable("unsupported private_element_size");
2819 }
2820 }
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00002821 case AMDGPUAS::LOCAL_ADDRESS: {
2822 if (NumElements > 2)
2823 return SplitVectorLoad(Op, DAG);
2824
2825 if (NumElements == 2)
2826 return SDValue();
2827
Matt Arsenaulta1436412016-02-10 18:21:45 +00002828 // If properly aligned, if we split we might be able to use ds_read_b64.
2829 return SplitVectorLoad(Op, DAG);
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00002830 }
Matt Arsenaulta1436412016-02-10 18:21:45 +00002831 default:
2832 return SDValue();
Tom Stellarde9373602014-01-22 19:24:14 +00002833 }
Tom Stellard81d871d2013-11-13 23:36:50 +00002834}
2835
Tom Stellard0ec134f2014-02-04 17:18:40 +00002836SDValue SITargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
2837 if (Op.getValueType() != MVT::i64)
2838 return SDValue();
2839
2840 SDLoc DL(Op);
2841 SDValue Cond = Op.getOperand(0);
Tom Stellard0ec134f2014-02-04 17:18:40 +00002842
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002843 SDValue Zero = DAG.getConstant(0, DL, MVT::i32);
2844 SDValue One = DAG.getConstant(1, DL, MVT::i32);
Tom Stellard0ec134f2014-02-04 17:18:40 +00002845
Tom Stellard7ea3d6d2014-03-31 14:01:55 +00002846 SDValue LHS = DAG.getNode(ISD::BITCAST, DL, MVT::v2i32, Op.getOperand(1));
2847 SDValue RHS = DAG.getNode(ISD::BITCAST, DL, MVT::v2i32, Op.getOperand(2));
2848
2849 SDValue Lo0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, LHS, Zero);
2850 SDValue Lo1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, RHS, Zero);
Tom Stellard0ec134f2014-02-04 17:18:40 +00002851
2852 SDValue Lo = DAG.getSelect(DL, MVT::i32, Cond, Lo0, Lo1);
2853
Tom Stellard7ea3d6d2014-03-31 14:01:55 +00002854 SDValue Hi0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, LHS, One);
2855 SDValue Hi1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, RHS, One);
Tom Stellard0ec134f2014-02-04 17:18:40 +00002856
2857 SDValue Hi = DAG.getSelect(DL, MVT::i32, Cond, Hi0, Hi1);
2858
Ahmed Bougacha128f8732016-04-26 21:15:30 +00002859 SDValue Res = DAG.getBuildVector(MVT::v2i32, DL, {Lo, Hi});
Tom Stellard7ea3d6d2014-03-31 14:01:55 +00002860 return DAG.getNode(ISD::BITCAST, DL, MVT::i64, Res);
Tom Stellard0ec134f2014-02-04 17:18:40 +00002861}
2862
Matt Arsenault22ca3f82014-07-15 23:50:10 +00002863// Catch division cases where we can use shortcuts with rcp and rsq
2864// instructions.
Matt Arsenaulta1fe17c2016-07-19 23:16:53 +00002865SDValue SITargetLowering::lowerFastUnsafeFDIV(SDValue Op,
2866 SelectionDAG &DAG) const {
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002867 SDLoc SL(Op);
2868 SDValue LHS = Op.getOperand(0);
2869 SDValue RHS = Op.getOperand(1);
2870 EVT VT = Op.getValueType();
Matt Arsenault22ca3f82014-07-15 23:50:10 +00002871 bool Unsafe = DAG.getTarget().Options.UnsafeFPMath;
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002872
2873 if (const ConstantFPSDNode *CLHS = dyn_cast<ConstantFPSDNode>(LHS)) {
Matt Arsenault979902b2016-08-02 22:25:04 +00002874 if ((Unsafe || (VT == MVT::f32 && !Subtarget->hasFP32Denormals()))) {
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002875
Matt Arsenault979902b2016-08-02 22:25:04 +00002876 if (CLHS->isExactlyValue(1.0)) {
2877 // v_rcp_f32 and v_rsq_f32 do not support denormals, and according to
2878 // the CI documentation has a worst case error of 1 ulp.
2879 // OpenCL requires <= 2.5 ulp for 1.0 / x, so it should always be OK to
2880 // use it as long as we aren't trying to use denormals.
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002881
Matt Arsenault979902b2016-08-02 22:25:04 +00002882 // 1.0 / sqrt(x) -> rsq(x)
2883 //
2884 // XXX - Is UnsafeFPMath sufficient to do this for f64? The maximum ULP
2885 // error seems really high at 2^29 ULP.
2886 if (RHS.getOpcode() == ISD::FSQRT)
2887 return DAG.getNode(AMDGPUISD::RSQ, SL, VT, RHS.getOperand(0));
2888
2889 // 1.0 / x -> rcp(x)
2890 return DAG.getNode(AMDGPUISD::RCP, SL, VT, RHS);
2891 }
2892
2893 // Same as for 1.0, but expand the sign out of the constant.
2894 if (CLHS->isExactlyValue(-1.0)) {
2895 // -1.0 / x -> rcp (fneg x)
2896 SDValue FNegRHS = DAG.getNode(ISD::FNEG, SL, VT, RHS);
2897 return DAG.getNode(AMDGPUISD::RCP, SL, VT, FNegRHS);
2898 }
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002899 }
2900 }
2901
Wei Dinged0f97f2016-06-09 19:17:15 +00002902 const SDNodeFlags *Flags = Op->getFlags();
2903
2904 if (Unsafe || Flags->hasAllowReciprocal()) {
Matt Arsenault22ca3f82014-07-15 23:50:10 +00002905 // Turn into multiply by the reciprocal.
2906 // x / y -> x * (1.0 / y)
Sanjay Patela2607012015-09-16 16:31:21 +00002907 SDNodeFlags Flags;
2908 Flags.setUnsafeAlgebra(true);
Matt Arsenault22ca3f82014-07-15 23:50:10 +00002909 SDValue Recip = DAG.getNode(AMDGPUISD::RCP, SL, VT, RHS);
Sanjay Patela2607012015-09-16 16:31:21 +00002910 return DAG.getNode(ISD::FMUL, SL, VT, LHS, Recip, &Flags);
Matt Arsenault22ca3f82014-07-15 23:50:10 +00002911 }
2912
2913 return SDValue();
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002914}
2915
Tom Stellard8485fa02016-12-07 02:42:15 +00002916static SDValue getFPBinOp(SelectionDAG &DAG, unsigned Opcode, const SDLoc &SL,
2917 EVT VT, SDValue A, SDValue B, SDValue GlueChain) {
2918 if (GlueChain->getNumValues() <= 1) {
2919 return DAG.getNode(Opcode, SL, VT, A, B);
2920 }
2921
2922 assert(GlueChain->getNumValues() == 3);
2923
2924 SDVTList VTList = DAG.getVTList(VT, MVT::Other, MVT::Glue);
2925 switch (Opcode) {
2926 default: llvm_unreachable("no chain equivalent for opcode");
2927 case ISD::FMUL:
2928 Opcode = AMDGPUISD::FMUL_W_CHAIN;
2929 break;
2930 }
2931
2932 return DAG.getNode(Opcode, SL, VTList, GlueChain.getValue(1), A, B,
2933 GlueChain.getValue(2));
2934}
2935
2936static SDValue getFPTernOp(SelectionDAG &DAG, unsigned Opcode, const SDLoc &SL,
2937 EVT VT, SDValue A, SDValue B, SDValue C,
2938 SDValue GlueChain) {
2939 if (GlueChain->getNumValues() <= 1) {
2940 return DAG.getNode(Opcode, SL, VT, A, B, C);
2941 }
2942
2943 assert(GlueChain->getNumValues() == 3);
2944
2945 SDVTList VTList = DAG.getVTList(VT, MVT::Other, MVT::Glue);
2946 switch (Opcode) {
2947 default: llvm_unreachable("no chain equivalent for opcode");
2948 case ISD::FMA:
2949 Opcode = AMDGPUISD::FMA_W_CHAIN;
2950 break;
2951 }
2952
2953 return DAG.getNode(Opcode, SL, VTList, GlueChain.getValue(1), A, B, C,
2954 GlueChain.getValue(2));
2955}
2956
Matt Arsenaulta1fe17c2016-07-19 23:16:53 +00002957// Faster 2.5 ULP division that does not support denormals.
2958SDValue SITargetLowering::lowerFDIV_FAST(SDValue Op, SelectionDAG &DAG) const {
2959 SDLoc SL(Op);
2960 SDValue LHS = Op.getOperand(1);
2961 SDValue RHS = Op.getOperand(2);
2962
2963 SDValue r1 = DAG.getNode(ISD::FABS, SL, MVT::f32, RHS);
2964
2965 const APFloat K0Val(BitsToFloat(0x6f800000));
2966 const SDValue K0 = DAG.getConstantFP(K0Val, SL, MVT::f32);
2967
2968 const APFloat K1Val(BitsToFloat(0x2f800000));
2969 const SDValue K1 = DAG.getConstantFP(K1Val, SL, MVT::f32);
2970
2971 const SDValue One = DAG.getConstantFP(1.0, SL, MVT::f32);
2972
2973 EVT SetCCVT =
2974 getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), MVT::f32);
2975
2976 SDValue r2 = DAG.getSetCC(SL, SetCCVT, r1, K0, ISD::SETOGT);
2977
2978 SDValue r3 = DAG.getNode(ISD::SELECT, SL, MVT::f32, r2, K1, One);
2979
2980 // TODO: Should this propagate fast-math-flags?
2981 r1 = DAG.getNode(ISD::FMUL, SL, MVT::f32, RHS, r3);
2982
2983 // rcp does not support denormals.
2984 SDValue r0 = DAG.getNode(AMDGPUISD::RCP, SL, MVT::f32, r1);
2985
2986 SDValue Mul = DAG.getNode(ISD::FMUL, SL, MVT::f32, LHS, r0);
2987
2988 return DAG.getNode(ISD::FMUL, SL, MVT::f32, r3, Mul);
2989}
2990
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002991SDValue SITargetLowering::LowerFDIV32(SDValue Op, SelectionDAG &DAG) const {
Matt Arsenaulta1fe17c2016-07-19 23:16:53 +00002992 if (SDValue FastLowered = lowerFastUnsafeFDIV(Op, DAG))
Eric Christopher538d09d02016-06-07 20:27:12 +00002993 return FastLowered;
Matt Arsenault22ca3f82014-07-15 23:50:10 +00002994
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00002995 SDLoc SL(Op);
2996 SDValue LHS = Op.getOperand(0);
2997 SDValue RHS = Op.getOperand(1);
2998
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002999 const SDValue One = DAG.getConstantFP(1.0, SL, MVT::f32);
Matt Arsenault37fefd62016-06-10 02:18:02 +00003000
Wei Dinged0f97f2016-06-09 19:17:15 +00003001 SDVTList ScaleVT = DAG.getVTList(MVT::f32, MVT::i1);
Matt Arsenault37fefd62016-06-10 02:18:02 +00003002
Tom Stellard8485fa02016-12-07 02:42:15 +00003003 SDValue DenominatorScaled = DAG.getNode(AMDGPUISD::DIV_SCALE, SL, ScaleVT,
3004 RHS, RHS, LHS);
3005 SDValue NumeratorScaled = DAG.getNode(AMDGPUISD::DIV_SCALE, SL, ScaleVT,
3006 LHS, RHS, LHS);
Matt Arsenault37fefd62016-06-10 02:18:02 +00003007
Matt Arsenaultdfec5ce2016-07-09 07:48:11 +00003008 // Denominator is scaled to not be denormal, so using rcp is ok.
Tom Stellard8485fa02016-12-07 02:42:15 +00003009 SDValue ApproxRcp = DAG.getNode(AMDGPUISD::RCP, SL, MVT::f32,
3010 DenominatorScaled);
3011 SDValue NegDivScale0 = DAG.getNode(ISD::FNEG, SL, MVT::f32,
3012 DenominatorScaled);
Matt Arsenault37fefd62016-06-10 02:18:02 +00003013
Tom Stellard8485fa02016-12-07 02:42:15 +00003014 const unsigned Denorm32Reg = AMDGPU::Hwreg::ID_MODE |
3015 (4 << AMDGPU::Hwreg::OFFSET_SHIFT_) |
3016 (1 << AMDGPU::Hwreg::WIDTH_M1_SHIFT_);
Matt Arsenault37fefd62016-06-10 02:18:02 +00003017
Tom Stellard8485fa02016-12-07 02:42:15 +00003018 const SDValue BitField = DAG.getTargetConstant(Denorm32Reg, SL, MVT::i16);
Matt Arsenault37fefd62016-06-10 02:18:02 +00003019
Tom Stellard8485fa02016-12-07 02:42:15 +00003020 if (!Subtarget->hasFP32Denormals()) {
3021 SDVTList BindParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
3022 const SDValue EnableDenormValue = DAG.getConstant(FP_DENORM_FLUSH_NONE,
3023 SL, MVT::i32);
3024 SDValue EnableDenorm = DAG.getNode(AMDGPUISD::SETREG, SL, BindParamVTs,
3025 DAG.getEntryNode(),
3026 EnableDenormValue, BitField);
3027 SDValue Ops[3] = {
3028 NegDivScale0,
3029 EnableDenorm.getValue(0),
3030 EnableDenorm.getValue(1)
3031 };
Matt Arsenault37fefd62016-06-10 02:18:02 +00003032
Tom Stellard8485fa02016-12-07 02:42:15 +00003033 NegDivScale0 = DAG.getMergeValues(Ops, SL);
3034 }
3035
3036 SDValue Fma0 = getFPTernOp(DAG, ISD::FMA, SL, MVT::f32, NegDivScale0,
3037 ApproxRcp, One, NegDivScale0);
3038
3039 SDValue Fma1 = getFPTernOp(DAG, ISD::FMA, SL, MVT::f32, Fma0, ApproxRcp,
3040 ApproxRcp, Fma0);
3041
3042 SDValue Mul = getFPBinOp(DAG, ISD::FMUL, SL, MVT::f32, NumeratorScaled,
3043 Fma1, Fma1);
3044
3045 SDValue Fma2 = getFPTernOp(DAG, ISD::FMA, SL, MVT::f32, NegDivScale0, Mul,
3046 NumeratorScaled, Mul);
3047
3048 SDValue Fma3 = getFPTernOp(DAG, ISD::FMA,SL, MVT::f32, Fma2, Fma1, Mul, Fma2);
3049
3050 SDValue Fma4 = getFPTernOp(DAG, ISD::FMA, SL, MVT::f32, NegDivScale0, Fma3,
3051 NumeratorScaled, Fma3);
3052
3053 if (!Subtarget->hasFP32Denormals()) {
3054 const SDValue DisableDenormValue =
3055 DAG.getConstant(FP_DENORM_FLUSH_IN_FLUSH_OUT, SL, MVT::i32);
3056 SDValue DisableDenorm = DAG.getNode(AMDGPUISD::SETREG, SL, MVT::Other,
3057 Fma4.getValue(1),
3058 DisableDenormValue,
3059 BitField,
3060 Fma4.getValue(2));
3061
3062 SDValue OutputChain = DAG.getNode(ISD::TokenFactor, SL, MVT::Other,
3063 DisableDenorm, DAG.getRoot());
3064 DAG.setRoot(OutputChain);
3065 }
Matt Arsenault37fefd62016-06-10 02:18:02 +00003066
Wei Dinged0f97f2016-06-09 19:17:15 +00003067 SDValue Scale = NumeratorScaled.getValue(1);
Tom Stellard8485fa02016-12-07 02:42:15 +00003068 SDValue Fmas = DAG.getNode(AMDGPUISD::DIV_FMAS, SL, MVT::f32,
3069 Fma4, Fma1, Fma3, Scale);
Matt Arsenault37fefd62016-06-10 02:18:02 +00003070
Wei Dinged0f97f2016-06-09 19:17:15 +00003071 return DAG.getNode(AMDGPUISD::DIV_FIXUP, SL, MVT::f32, Fmas, RHS, LHS);
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00003072}
3073
3074SDValue SITargetLowering::LowerFDIV64(SDValue Op, SelectionDAG &DAG) const {
Matt Arsenault0bbcd8b2015-02-14 04:30:08 +00003075 if (DAG.getTarget().Options.UnsafeFPMath)
Matt Arsenaulta1fe17c2016-07-19 23:16:53 +00003076 return lowerFastUnsafeFDIV(Op, DAG);
Matt Arsenault0bbcd8b2015-02-14 04:30:08 +00003077
3078 SDLoc SL(Op);
3079 SDValue X = Op.getOperand(0);
3080 SDValue Y = Op.getOperand(1);
3081
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003082 const SDValue One = DAG.getConstantFP(1.0, SL, MVT::f64);
Matt Arsenault0bbcd8b2015-02-14 04:30:08 +00003083
3084 SDVTList ScaleVT = DAG.getVTList(MVT::f64, MVT::i1);
3085
3086 SDValue DivScale0 = DAG.getNode(AMDGPUISD::DIV_SCALE, SL, ScaleVT, Y, Y, X);
3087
3088 SDValue NegDivScale0 = DAG.getNode(ISD::FNEG, SL, MVT::f64, DivScale0);
3089
3090 SDValue Rcp = DAG.getNode(AMDGPUISD::RCP, SL, MVT::f64, DivScale0);
3091
3092 SDValue Fma0 = DAG.getNode(ISD::FMA, SL, MVT::f64, NegDivScale0, Rcp, One);
3093
3094 SDValue Fma1 = DAG.getNode(ISD::FMA, SL, MVT::f64, Rcp, Fma0, Rcp);
3095
3096 SDValue Fma2 = DAG.getNode(ISD::FMA, SL, MVT::f64, NegDivScale0, Fma1, One);
3097
3098 SDValue DivScale1 = DAG.getNode(AMDGPUISD::DIV_SCALE, SL, ScaleVT, X, Y, X);
3099
3100 SDValue Fma3 = DAG.getNode(ISD::FMA, SL, MVT::f64, Fma1, Fma2, Fma1);
3101 SDValue Mul = DAG.getNode(ISD::FMUL, SL, MVT::f64, DivScale1, Fma3);
3102
3103 SDValue Fma4 = DAG.getNode(ISD::FMA, SL, MVT::f64,
3104 NegDivScale0, Mul, DivScale1);
3105
3106 SDValue Scale;
3107
Matt Arsenault43e92fe2016-06-24 06:30:11 +00003108 if (Subtarget->getGeneration() == SISubtarget::SOUTHERN_ISLANDS) {
Matt Arsenault0bbcd8b2015-02-14 04:30:08 +00003109 // Workaround a hardware bug on SI where the condition output from div_scale
3110 // is not usable.
3111
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003112 const SDValue Hi = DAG.getConstant(1, SL, MVT::i32);
Matt Arsenault0bbcd8b2015-02-14 04:30:08 +00003113
3114 // Figure out if the scale to use for div_fmas.
3115 SDValue NumBC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, X);
3116 SDValue DenBC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, Y);
3117 SDValue Scale0BC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, DivScale0);
3118 SDValue Scale1BC = DAG.getNode(ISD::BITCAST, SL, MVT::v2i32, DivScale1);
3119
3120 SDValue NumHi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, NumBC, Hi);
3121 SDValue DenHi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, DenBC, Hi);
3122
3123 SDValue Scale0Hi
3124 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Scale0BC, Hi);
3125 SDValue Scale1Hi
3126 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SL, MVT::i32, Scale1BC, Hi);
3127
3128 SDValue CmpDen = DAG.getSetCC(SL, MVT::i1, DenHi, Scale0Hi, ISD::SETEQ);
3129 SDValue CmpNum = DAG.getSetCC(SL, MVT::i1, NumHi, Scale1Hi, ISD::SETEQ);
3130 Scale = DAG.getNode(ISD::XOR, SL, MVT::i1, CmpNum, CmpDen);
3131 } else {
3132 Scale = DivScale1.getValue(1);
3133 }
3134
3135 SDValue Fmas = DAG.getNode(AMDGPUISD::DIV_FMAS, SL, MVT::f64,
3136 Fma4, Fma3, Mul, Scale);
3137
3138 return DAG.getNode(AMDGPUISD::DIV_FIXUP, SL, MVT::f64, Fmas, Y, X);
Matt Arsenaulte9fa3b82014-07-15 20:18:31 +00003139}
3140
3141SDValue SITargetLowering::LowerFDIV(SDValue Op, SelectionDAG &DAG) const {
3142 EVT VT = Op.getValueType();
3143
3144 if (VT == MVT::f32)
3145 return LowerFDIV32(Op, DAG);
3146
3147 if (VT == MVT::f64)
3148 return LowerFDIV64(Op, DAG);
3149
3150 llvm_unreachable("Unexpected type for fdiv");
3151}
3152
Tom Stellard81d871d2013-11-13 23:36:50 +00003153SDValue SITargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
3154 SDLoc DL(Op);
3155 StoreSDNode *Store = cast<StoreSDNode>(Op);
3156 EVT VT = Store->getMemoryVT();
3157
Matt Arsenault95245662016-02-11 05:32:46 +00003158 if (VT == MVT::i1) {
3159 return DAG.getTruncStore(Store->getChain(), DL,
3160 DAG.getSExtOrTrunc(Store->getValue(), DL, MVT::i32),
3161 Store->getBasePtr(), MVT::i1, Store->getMemOperand());
Tom Stellardb02094e2014-07-21 15:45:01 +00003162 }
3163
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00003164 assert(VT.isVector() &&
3165 Store->getValue().getValueType().getScalarType() == MVT::i32);
3166
3167 unsigned AS = Store->getAddressSpace();
3168 if (!allowsMemoryAccess(*DAG.getContext(), DAG.getDataLayout(), VT,
3169 AS, Store->getAlignment())) {
3170 return expandUnalignedStore(Store, DAG);
3171 }
Tom Stellard81d871d2013-11-13 23:36:50 +00003172
Tom Stellardf8e6eaf2016-10-26 14:38:47 +00003173 MachineFunction &MF = DAG.getMachineFunction();
3174 SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
3175 // If there is a possibilty that flat instruction access scratch memory
3176 // then we need to use the same legalization rules we use for private.
3177 if (AS == AMDGPUAS::FLAT_ADDRESS)
3178 AS = MFI->hasFlatScratchInit() ?
3179 AMDGPUAS::PRIVATE_ADDRESS : AMDGPUAS::GLOBAL_ADDRESS;
3180
Matt Arsenaultf2ddbf02016-02-13 04:18:53 +00003181 unsigned NumElements = VT.getVectorNumElements();
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00003182 switch (AS) {
Matt Arsenaultf2ddbf02016-02-13 04:18:53 +00003183 case AMDGPUAS::GLOBAL_ADDRESS:
3184 case AMDGPUAS::FLAT_ADDRESS:
3185 if (NumElements > 4)
3186 return SplitVectorStore(Op, DAG);
3187 return SDValue();
3188 case AMDGPUAS::PRIVATE_ADDRESS: {
3189 switch (Subtarget->getMaxPrivateElementSize()) {
3190 case 4:
Matt Arsenault9c499c32016-04-14 23:31:26 +00003191 return scalarizeVectorStore(Store, DAG);
Matt Arsenaultf2ddbf02016-02-13 04:18:53 +00003192 case 8:
3193 if (NumElements > 2)
3194 return SplitVectorStore(Op, DAG);
3195 return SDValue();
3196 case 16:
3197 if (NumElements > 4)
3198 return SplitVectorStore(Op, DAG);
3199 return SDValue();
3200 default:
3201 llvm_unreachable("unsupported private_element_size");
3202 }
3203 }
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00003204 case AMDGPUAS::LOCAL_ADDRESS: {
3205 if (NumElements > 2)
3206 return SplitVectorStore(Op, DAG);
3207
3208 if (NumElements == 2)
3209 return Op;
3210
Matt Arsenault95245662016-02-11 05:32:46 +00003211 // If properly aligned, if we split we might be able to use ds_write_b64.
3212 return SplitVectorStore(Op, DAG);
Matt Arsenaultbcdfee72016-05-02 20:13:51 +00003213 }
Matt Arsenaultf2ddbf02016-02-13 04:18:53 +00003214 default:
3215 llvm_unreachable("unhandled address space");
Matt Arsenault95245662016-02-11 05:32:46 +00003216 }
Tom Stellard81d871d2013-11-13 23:36:50 +00003217}
3218
Matt Arsenaultad14ce82014-07-19 18:44:39 +00003219SDValue SITargetLowering::LowerTrig(SDValue Op, SelectionDAG &DAG) const {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003220 SDLoc DL(Op);
Matt Arsenaultad14ce82014-07-19 18:44:39 +00003221 EVT VT = Op.getValueType();
3222 SDValue Arg = Op.getOperand(0);
Sanjay Patela2607012015-09-16 16:31:21 +00003223 // TODO: Should this propagate fast-math-flags?
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003224 SDValue FractPart = DAG.getNode(AMDGPUISD::FRACT, DL, VT,
3225 DAG.getNode(ISD::FMUL, DL, VT, Arg,
3226 DAG.getConstantFP(0.5/M_PI, DL,
3227 VT)));
Matt Arsenaultad14ce82014-07-19 18:44:39 +00003228
3229 switch (Op.getOpcode()) {
3230 case ISD::FCOS:
3231 return DAG.getNode(AMDGPUISD::COS_HW, SDLoc(Op), VT, FractPart);
3232 case ISD::FSIN:
3233 return DAG.getNode(AMDGPUISD::SIN_HW, SDLoc(Op), VT, FractPart);
3234 default:
3235 llvm_unreachable("Wrong trig opcode");
3236 }
3237}
3238
Tom Stellard354a43c2016-04-01 18:27:37 +00003239SDValue SITargetLowering::LowerATOMIC_CMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
3240 AtomicSDNode *AtomicNode = cast<AtomicSDNode>(Op);
3241 assert(AtomicNode->isCompareAndSwap());
3242 unsigned AS = AtomicNode->getAddressSpace();
3243
3244 // No custom lowering required for local address space
3245 if (!isFlatGlobalAddrSpace(AS))
3246 return Op;
3247
3248 // Non-local address space requires custom lowering for atomic compare
3249 // and swap; cmp and swap should be in a v2i32 or v2i64 in case of _X2
3250 SDLoc DL(Op);
3251 SDValue ChainIn = Op.getOperand(0);
3252 SDValue Addr = Op.getOperand(1);
3253 SDValue Old = Op.getOperand(2);
3254 SDValue New = Op.getOperand(3);
3255 EVT VT = Op.getValueType();
3256 MVT SimpleVT = VT.getSimpleVT();
3257 MVT VecType = MVT::getVectorVT(SimpleVT, 2);
3258
Ahmed Bougacha128f8732016-04-26 21:15:30 +00003259 SDValue NewOld = DAG.getBuildVector(VecType, DL, {New, Old});
Tom Stellard354a43c2016-04-01 18:27:37 +00003260 SDValue Ops[] = { ChainIn, Addr, NewOld };
Matt Arsenault88701812016-06-09 23:42:48 +00003261
3262 return DAG.getMemIntrinsicNode(AMDGPUISD::ATOMIC_CMP_SWAP, DL, Op->getVTList(),
3263 Ops, VT, AtomicNode->getMemOperand());
Tom Stellard354a43c2016-04-01 18:27:37 +00003264}
3265
Tom Stellard75aadc22012-12-11 21:25:42 +00003266//===----------------------------------------------------------------------===//
3267// Custom DAG optimizations
3268//===----------------------------------------------------------------------===//
3269
Matt Arsenault364a6742014-06-11 17:50:44 +00003270SDValue SITargetLowering::performUCharToFloatCombine(SDNode *N,
Matt Arsenaulte6986632015-01-14 01:35:22 +00003271 DAGCombinerInfo &DCI) const {
Matt Arsenault364a6742014-06-11 17:50:44 +00003272 EVT VT = N->getValueType(0);
3273 EVT ScalarVT = VT.getScalarType();
3274 if (ScalarVT != MVT::f32)
3275 return SDValue();
3276
3277 SelectionDAG &DAG = DCI.DAG;
3278 SDLoc DL(N);
3279
3280 SDValue Src = N->getOperand(0);
3281 EVT SrcVT = Src.getValueType();
3282
3283 // TODO: We could try to match extracting the higher bytes, which would be
3284 // easier if i8 vectors weren't promoted to i32 vectors, particularly after
3285 // types are legalized. v4i8 -> v4f32 is probably the only case to worry
3286 // about in practice.
3287 if (DCI.isAfterLegalizeVectorOps() && SrcVT == MVT::i32) {
3288 if (DAG.MaskedValueIsZero(Src, APInt::getHighBitsSet(32, 24))) {
3289 SDValue Cvt = DAG.getNode(AMDGPUISD::CVT_F32_UBYTE0, DL, VT, Src);
3290 DCI.AddToWorklist(Cvt.getNode());
3291 return Cvt;
3292 }
3293 }
3294
Matt Arsenault364a6742014-06-11 17:50:44 +00003295 return SDValue();
3296}
3297
Eric Christopher6c5b5112015-03-11 18:43:21 +00003298/// \brief Return true if the given offset Size in bytes can be folded into
3299/// the immediate offsets of a memory instruction for the given address space.
3300static bool canFoldOffset(unsigned OffsetSize, unsigned AS,
Matt Arsenault43e92fe2016-06-24 06:30:11 +00003301 const SISubtarget &STI) {
Eric Christopher6c5b5112015-03-11 18:43:21 +00003302 switch (AS) {
3303 case AMDGPUAS::GLOBAL_ADDRESS: {
3304 // MUBUF instructions a 12-bit offset in bytes.
3305 return isUInt<12>(OffsetSize);
3306 }
3307 case AMDGPUAS::CONSTANT_ADDRESS: {
3308 // SMRD instructions have an 8-bit offset in dwords on SI and
3309 // a 20-bit offset in bytes on VI.
Matt Arsenault43e92fe2016-06-24 06:30:11 +00003310 if (STI.getGeneration() >= SISubtarget::VOLCANIC_ISLANDS)
Eric Christopher6c5b5112015-03-11 18:43:21 +00003311 return isUInt<20>(OffsetSize);
3312 else
3313 return (OffsetSize % 4 == 0) && isUInt<8>(OffsetSize / 4);
3314 }
3315 case AMDGPUAS::LOCAL_ADDRESS:
3316 case AMDGPUAS::REGION_ADDRESS: {
3317 // The single offset versions have a 16-bit offset in bytes.
3318 return isUInt<16>(OffsetSize);
3319 }
3320 case AMDGPUAS::PRIVATE_ADDRESS:
3321 // Indirect register addressing does not use any offsets.
3322 default:
3323 return 0;
3324 }
3325}
3326
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003327// (shl (add x, c1), c2) -> add (shl x, c2), (shl c1, c2)
3328
3329// This is a variant of
3330// (mul (add x, c1), c2) -> add (mul x, c2), (mul c1, c2),
3331//
3332// The normal DAG combiner will do this, but only if the add has one use since
3333// that would increase the number of instructions.
3334//
3335// This prevents us from seeing a constant offset that can be folded into a
3336// memory instruction's addressing mode. If we know the resulting add offset of
3337// a pointer can be folded into an addressing offset, we can replace the pointer
3338// operand with the add of new constant offset. This eliminates one of the uses,
3339// and may allow the remaining use to also be simplified.
3340//
3341SDValue SITargetLowering::performSHLPtrCombine(SDNode *N,
3342 unsigned AddrSpace,
3343 DAGCombinerInfo &DCI) const {
3344 SDValue N0 = N->getOperand(0);
3345 SDValue N1 = N->getOperand(1);
3346
3347 if (N0.getOpcode() != ISD::ADD)
3348 return SDValue();
3349
3350 const ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(N1);
3351 if (!CN1)
3352 return SDValue();
3353
3354 const ConstantSDNode *CAdd = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3355 if (!CAdd)
3356 return SDValue();
3357
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003358 // If the resulting offset is too large, we can't fold it into the addressing
3359 // mode offset.
3360 APInt Offset = CAdd->getAPIntValue() << CN1->getAPIntValue();
Matt Arsenault43e92fe2016-06-24 06:30:11 +00003361 if (!canFoldOffset(Offset.getZExtValue(), AddrSpace, *getSubtarget()))
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003362 return SDValue();
3363
3364 SelectionDAG &DAG = DCI.DAG;
3365 SDLoc SL(N);
3366 EVT VT = N->getValueType(0);
3367
3368 SDValue ShlX = DAG.getNode(ISD::SHL, SL, VT, N0.getOperand(0), N1);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003369 SDValue COffset = DAG.getConstant(Offset, SL, MVT::i32);
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003370
3371 return DAG.getNode(ISD::ADD, SL, VT, ShlX, COffset);
3372}
3373
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003374static bool bitOpWithConstantIsReducible(unsigned Opc, uint32_t Val) {
3375 return (Opc == ISD::AND && (Val == 0 || Val == 0xffffffff)) ||
3376 (Opc == ISD::OR && (Val == 0xffffffff || Val == 0)) ||
3377 (Opc == ISD::XOR && Val == 0);
3378}
3379
3380// Break up 64-bit bit operation of a constant into two 32-bit and/or/xor. This
3381// will typically happen anyway for a VALU 64-bit and. This exposes other 32-bit
3382// integer combine opportunities since most 64-bit operations are decomposed
3383// this way. TODO: We won't want this for SALU especially if it is an inline
3384// immediate.
3385SDValue SITargetLowering::splitBinaryBitConstantOp(
3386 DAGCombinerInfo &DCI,
3387 const SDLoc &SL,
3388 unsigned Opc, SDValue LHS,
3389 const ConstantSDNode *CRHS) const {
3390 uint64_t Val = CRHS->getZExtValue();
3391 uint32_t ValLo = Lo_32(Val);
3392 uint32_t ValHi = Hi_32(Val);
3393 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
3394
3395 if ((bitOpWithConstantIsReducible(Opc, ValLo) ||
3396 bitOpWithConstantIsReducible(Opc, ValHi)) ||
3397 (CRHS->hasOneUse() && !TII->isInlineConstant(CRHS->getAPIntValue()))) {
3398 // If we need to materialize a 64-bit immediate, it will be split up later
3399 // anyway. Avoid creating the harder to understand 64-bit immediate
3400 // materialization.
3401 return splitBinaryBitConstantOpImpl(DCI, SL, Opc, LHS, ValLo, ValHi);
3402 }
3403
3404 return SDValue();
3405}
3406
Matt Arsenaultd0101a22015-01-06 23:00:46 +00003407SDValue SITargetLowering::performAndCombine(SDNode *N,
3408 DAGCombinerInfo &DCI) const {
3409 if (DCI.isBeforeLegalize())
3410 return SDValue();
3411
3412 SelectionDAG &DAG = DCI.DAG;
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003413 EVT VT = N->getValueType(0);
Matt Arsenaultd0101a22015-01-06 23:00:46 +00003414 SDValue LHS = N->getOperand(0);
3415 SDValue RHS = N->getOperand(1);
3416
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003417
3418 if (VT == MVT::i64) {
3419 const ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(RHS);
3420 if (CRHS) {
3421 if (SDValue Split
3422 = splitBinaryBitConstantOp(DCI, SDLoc(N), ISD::AND, LHS, CRHS))
3423 return Split;
3424 }
3425 }
3426
3427 // (and (fcmp ord x, x), (fcmp une (fabs x), inf)) ->
3428 // fp_class x, ~(s_nan | q_nan | n_infinity | p_infinity)
3429 if (LHS.getOpcode() == ISD::SETCC && RHS.getOpcode() == ISD::SETCC) {
Matt Arsenaultd0101a22015-01-06 23:00:46 +00003430 ISD::CondCode LCC = cast<CondCodeSDNode>(LHS.getOperand(2))->get();
3431 ISD::CondCode RCC = cast<CondCodeSDNode>(RHS.getOperand(2))->get();
3432
3433 SDValue X = LHS.getOperand(0);
3434 SDValue Y = RHS.getOperand(0);
3435 if (Y.getOpcode() != ISD::FABS || Y.getOperand(0) != X)
3436 return SDValue();
3437
3438 if (LCC == ISD::SETO) {
3439 if (X != LHS.getOperand(1))
3440 return SDValue();
3441
3442 if (RCC == ISD::SETUNE) {
3443 const ConstantFPSDNode *C1 = dyn_cast<ConstantFPSDNode>(RHS.getOperand(1));
3444 if (!C1 || !C1->isInfinity() || C1->isNegative())
3445 return SDValue();
3446
3447 const uint32_t Mask = SIInstrFlags::N_NORMAL |
3448 SIInstrFlags::N_SUBNORMAL |
3449 SIInstrFlags::N_ZERO |
3450 SIInstrFlags::P_ZERO |
3451 SIInstrFlags::P_SUBNORMAL |
3452 SIInstrFlags::P_NORMAL;
3453
3454 static_assert(((~(SIInstrFlags::S_NAN |
3455 SIInstrFlags::Q_NAN |
3456 SIInstrFlags::N_INFINITY |
3457 SIInstrFlags::P_INFINITY)) & 0x3ff) == Mask,
3458 "mask not equal");
3459
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003460 SDLoc DL(N);
3461 return DAG.getNode(AMDGPUISD::FP_CLASS, DL, MVT::i1,
3462 X, DAG.getConstant(Mask, DL, MVT::i32));
Matt Arsenaultd0101a22015-01-06 23:00:46 +00003463 }
3464 }
3465 }
3466
3467 return SDValue();
3468}
3469
Matt Arsenaultf2290332015-01-06 23:00:39 +00003470SDValue SITargetLowering::performOrCombine(SDNode *N,
3471 DAGCombinerInfo &DCI) const {
3472 SelectionDAG &DAG = DCI.DAG;
3473 SDValue LHS = N->getOperand(0);
3474 SDValue RHS = N->getOperand(1);
3475
Matt Arsenault3b082382016-04-12 18:24:38 +00003476 EVT VT = N->getValueType(0);
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003477 if (VT == MVT::i1) {
3478 // or (fp_class x, c1), (fp_class x, c2) -> fp_class x, (c1 | c2)
3479 if (LHS.getOpcode() == AMDGPUISD::FP_CLASS &&
3480 RHS.getOpcode() == AMDGPUISD::FP_CLASS) {
3481 SDValue Src = LHS.getOperand(0);
3482 if (Src != RHS.getOperand(0))
3483 return SDValue();
Matt Arsenault3b082382016-04-12 18:24:38 +00003484
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003485 const ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(LHS.getOperand(1));
3486 const ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(RHS.getOperand(1));
3487 if (!CLHS || !CRHS)
3488 return SDValue();
Matt Arsenault3b082382016-04-12 18:24:38 +00003489
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003490 // Only 10 bits are used.
3491 static const uint32_t MaxMask = 0x3ff;
Matt Arsenault3b082382016-04-12 18:24:38 +00003492
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003493 uint32_t NewMask = (CLHS->getZExtValue() | CRHS->getZExtValue()) & MaxMask;
3494 SDLoc DL(N);
3495 return DAG.getNode(AMDGPUISD::FP_CLASS, DL, MVT::i1,
3496 Src, DAG.getConstant(NewMask, DL, MVT::i32));
3497 }
Matt Arsenault3b082382016-04-12 18:24:38 +00003498
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003499 return SDValue();
3500 }
3501
3502 if (VT != MVT::i64)
3503 return SDValue();
3504
3505 // TODO: This could be a generic combine with a predicate for extracting the
3506 // high half of an integer being free.
3507
3508 // (or i64:x, (zero_extend i32:y)) ->
3509 // i64 (bitcast (v2i32 build_vector (or i32:y, lo_32(x)), hi_32(x)))
3510 if (LHS.getOpcode() == ISD::ZERO_EXTEND &&
3511 RHS.getOpcode() != ISD::ZERO_EXTEND)
3512 std::swap(LHS, RHS);
3513
3514 if (RHS.getOpcode() == ISD::ZERO_EXTEND) {
3515 SDValue ExtSrc = RHS.getOperand(0);
3516 EVT SrcVT = ExtSrc.getValueType();
3517 if (SrcVT == MVT::i32) {
3518 SDLoc SL(N);
3519 SDValue LowLHS, HiBits;
3520 std::tie(LowLHS, HiBits) = split64BitValue(LHS, DAG);
3521 SDValue LowOr = DAG.getNode(ISD::OR, SL, MVT::i32, LowLHS, ExtSrc);
3522
3523 DCI.AddToWorklist(LowOr.getNode());
3524 DCI.AddToWorklist(HiBits.getNode());
3525
3526 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, SL, MVT::v2i32,
3527 LowOr, HiBits);
3528 return DAG.getNode(ISD::BITCAST, SL, MVT::i64, Vec);
Matt Arsenault3b082382016-04-12 18:24:38 +00003529 }
3530 }
3531
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003532 const ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(N->getOperand(1));
3533 if (CRHS) {
3534 if (SDValue Split
3535 = splitBinaryBitConstantOp(DCI, SDLoc(N), ISD::OR, LHS, CRHS))
3536 return Split;
3537 }
Matt Arsenaultf2290332015-01-06 23:00:39 +00003538
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003539 return SDValue();
3540}
Matt Arsenaultf2290332015-01-06 23:00:39 +00003541
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003542SDValue SITargetLowering::performXorCombine(SDNode *N,
3543 DAGCombinerInfo &DCI) const {
3544 EVT VT = N->getValueType(0);
3545 if (VT != MVT::i64)
3546 return SDValue();
Matt Arsenaultf2290332015-01-06 23:00:39 +00003547
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003548 SDValue LHS = N->getOperand(0);
3549 SDValue RHS = N->getOperand(1);
3550
3551 const ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(RHS);
3552 if (CRHS) {
3553 if (SDValue Split
3554 = splitBinaryBitConstantOp(DCI, SDLoc(N), ISD::XOR, LHS, CRHS))
3555 return Split;
Matt Arsenaultf2290332015-01-06 23:00:39 +00003556 }
3557
3558 return SDValue();
3559}
3560
3561SDValue SITargetLowering::performClassCombine(SDNode *N,
3562 DAGCombinerInfo &DCI) const {
3563 SelectionDAG &DAG = DCI.DAG;
3564 SDValue Mask = N->getOperand(1);
3565
3566 // fp_class x, 0 -> false
3567 if (const ConstantSDNode *CMask = dyn_cast<ConstantSDNode>(Mask)) {
3568 if (CMask->isNullValue())
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003569 return DAG.getConstant(0, SDLoc(N), MVT::i1);
Matt Arsenaultf2290332015-01-06 23:00:39 +00003570 }
3571
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00003572 if (N->getOperand(0).isUndef())
3573 return DAG.getUNDEF(MVT::i1);
3574
Matt Arsenaultf2290332015-01-06 23:00:39 +00003575 return SDValue();
3576}
3577
Matt Arsenault9cd90712016-04-14 01:42:16 +00003578// Constant fold canonicalize.
3579SDValue SITargetLowering::performFCanonicalizeCombine(
3580 SDNode *N,
3581 DAGCombinerInfo &DCI) const {
3582 ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0));
3583 if (!CFP)
3584 return SDValue();
3585
3586 SelectionDAG &DAG = DCI.DAG;
3587 const APFloat &C = CFP->getValueAPF();
3588
3589 // Flush denormals to 0 if not enabled.
3590 if (C.isDenormal()) {
3591 EVT VT = N->getValueType(0);
3592 if (VT == MVT::f32 && !Subtarget->hasFP32Denormals())
3593 return DAG.getConstantFP(0.0, SDLoc(N), VT);
3594
3595 if (VT == MVT::f64 && !Subtarget->hasFP64Denormals())
3596 return DAG.getConstantFP(0.0, SDLoc(N), VT);
3597 }
3598
3599 if (C.isNaN()) {
3600 EVT VT = N->getValueType(0);
3601 APFloat CanonicalQNaN = APFloat::getQNaN(C.getSemantics());
3602 if (C.isSignaling()) {
3603 // Quiet a signaling NaN.
3604 return DAG.getConstantFP(CanonicalQNaN, SDLoc(N), VT);
3605 }
3606
3607 // Make sure it is the canonical NaN bitpattern.
3608 //
3609 // TODO: Can we use -1 as the canonical NaN value since it's an inline
3610 // immediate?
3611 if (C.bitcastToAPInt() != CanonicalQNaN.bitcastToAPInt())
3612 return DAG.getConstantFP(CanonicalQNaN, SDLoc(N), VT);
3613 }
3614
3615 return SDValue(CFP, 0);
3616}
3617
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003618static unsigned minMaxOpcToMin3Max3Opc(unsigned Opc) {
3619 switch (Opc) {
3620 case ISD::FMAXNUM:
3621 return AMDGPUISD::FMAX3;
Matt Arsenault5881f4e2015-06-09 00:52:37 +00003622 case ISD::SMAX:
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003623 return AMDGPUISD::SMAX3;
Matt Arsenault5881f4e2015-06-09 00:52:37 +00003624 case ISD::UMAX:
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003625 return AMDGPUISD::UMAX3;
3626 case ISD::FMINNUM:
3627 return AMDGPUISD::FMIN3;
Matt Arsenault5881f4e2015-06-09 00:52:37 +00003628 case ISD::SMIN:
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003629 return AMDGPUISD::SMIN3;
Matt Arsenault5881f4e2015-06-09 00:52:37 +00003630 case ISD::UMIN:
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003631 return AMDGPUISD::UMIN3;
3632 default:
3633 llvm_unreachable("Not a min/max opcode");
3634 }
3635}
3636
Benjamin Kramerbdc49562016-06-12 15:39:02 +00003637static SDValue performIntMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
3638 SDValue Op0, SDValue Op1, bool Signed) {
Matt Arsenaultf639c322016-01-28 20:53:42 +00003639 ConstantSDNode *K1 = dyn_cast<ConstantSDNode>(Op1);
3640 if (!K1)
3641 return SDValue();
3642
3643 ConstantSDNode *K0 = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
3644 if (!K0)
3645 return SDValue();
3646
Matt Arsenaultf639c322016-01-28 20:53:42 +00003647 if (Signed) {
3648 if (K0->getAPIntValue().sge(K1->getAPIntValue()))
3649 return SDValue();
3650 } else {
3651 if (K0->getAPIntValue().uge(K1->getAPIntValue()))
3652 return SDValue();
3653 }
3654
3655 EVT VT = K0->getValueType(0);
Tom Stellard115a6152016-11-10 16:02:37 +00003656
3657 MVT NVT = MVT::i32;
3658 unsigned ExtOp = Signed ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
3659
3660 SDValue Tmp1, Tmp2, Tmp3;
3661 Tmp1 = DAG.getNode(ExtOp, SL, NVT, Op0->getOperand(0));
3662 Tmp2 = DAG.getNode(ExtOp, SL, NVT, Op0->getOperand(1));
3663 Tmp3 = DAG.getNode(ExtOp, SL, NVT, Op1);
3664
3665 if (VT == MVT::i16) {
3666 Tmp1 = DAG.getNode(Signed ? AMDGPUISD::SMED3 : AMDGPUISD::UMED3, SL, NVT,
3667 Tmp1, Tmp2, Tmp3);
3668
3669 return DAG.getNode(ISD::TRUNCATE, SL, VT, Tmp1);
3670 } else
3671 return DAG.getNode(Signed ? AMDGPUISD::SMED3 : AMDGPUISD::UMED3, SL, VT,
3672 Op0.getOperand(0), SDValue(K0, 0), SDValue(K1, 0));
Matt Arsenaultf639c322016-01-28 20:53:42 +00003673}
3674
3675static bool isKnownNeverSNan(SelectionDAG &DAG, SDValue Op) {
3676 if (!DAG.getTargetLoweringInfo().hasFloatingPointExceptions())
3677 return true;
3678
3679 return DAG.isKnownNeverNaN(Op);
3680}
3681
Benjamin Kramerbdc49562016-06-12 15:39:02 +00003682static SDValue performFPMed3ImmCombine(SelectionDAG &DAG, const SDLoc &SL,
3683 SDValue Op0, SDValue Op1) {
Matt Arsenaultf639c322016-01-28 20:53:42 +00003684 ConstantFPSDNode *K1 = dyn_cast<ConstantFPSDNode>(Op1);
3685 if (!K1)
3686 return SDValue();
3687
3688 ConstantFPSDNode *K0 = dyn_cast<ConstantFPSDNode>(Op0.getOperand(1));
3689 if (!K0)
3690 return SDValue();
3691
3692 // Ordered >= (although NaN inputs should have folded away by now).
3693 APFloat::cmpResult Cmp = K0->getValueAPF().compare(K1->getValueAPF());
3694 if (Cmp == APFloat::cmpGreaterThan)
3695 return SDValue();
3696
3697 // This isn't safe with signaling NaNs because in IEEE mode, min/max on a
3698 // signaling NaN gives a quiet NaN. The quiet NaN input to the min would then
3699 // give the other result, which is different from med3 with a NaN input.
3700 SDValue Var = Op0.getOperand(0);
3701 if (!isKnownNeverSNan(DAG, Var))
3702 return SDValue();
3703
3704 return DAG.getNode(AMDGPUISD::FMED3, SL, K0->getValueType(0),
3705 Var, SDValue(K0, 0), SDValue(K1, 0));
3706}
3707
3708SDValue SITargetLowering::performMinMaxCombine(SDNode *N,
3709 DAGCombinerInfo &DCI) const {
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003710 SelectionDAG &DAG = DCI.DAG;
3711
3712 unsigned Opc = N->getOpcode();
3713 SDValue Op0 = N->getOperand(0);
3714 SDValue Op1 = N->getOperand(1);
3715
3716 // Only do this if the inner op has one use since this will just increases
3717 // register pressure for no benefit.
3718
Matt Arsenault5b39b342016-01-28 20:53:48 +00003719 if (Opc != AMDGPUISD::FMIN_LEGACY && Opc != AMDGPUISD::FMAX_LEGACY) {
3720 // max(max(a, b), c) -> max3(a, b, c)
3721 // min(min(a, b), c) -> min3(a, b, c)
3722 if (Op0.getOpcode() == Opc && Op0.hasOneUse()) {
3723 SDLoc DL(N);
3724 return DAG.getNode(minMaxOpcToMin3Max3Opc(Opc),
3725 DL,
3726 N->getValueType(0),
3727 Op0.getOperand(0),
3728 Op0.getOperand(1),
3729 Op1);
3730 }
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003731
Matt Arsenault5b39b342016-01-28 20:53:48 +00003732 // Try commuted.
3733 // max(a, max(b, c)) -> max3(a, b, c)
3734 // min(a, min(b, c)) -> min3(a, b, c)
3735 if (Op1.getOpcode() == Opc && Op1.hasOneUse()) {
3736 SDLoc DL(N);
3737 return DAG.getNode(minMaxOpcToMin3Max3Opc(Opc),
3738 DL,
3739 N->getValueType(0),
3740 Op0,
3741 Op1.getOperand(0),
3742 Op1.getOperand(1));
3743 }
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003744 }
3745
Matt Arsenaultf639c322016-01-28 20:53:42 +00003746 // min(max(x, K0), K1), K0 < K1 -> med3(x, K0, K1)
3747 if (Opc == ISD::SMIN && Op0.getOpcode() == ISD::SMAX && Op0.hasOneUse()) {
3748 if (SDValue Med3 = performIntMed3ImmCombine(DAG, SDLoc(N), Op0, Op1, true))
3749 return Med3;
3750 }
3751
3752 if (Opc == ISD::UMIN && Op0.getOpcode() == ISD::UMAX && Op0.hasOneUse()) {
3753 if (SDValue Med3 = performIntMed3ImmCombine(DAG, SDLoc(N), Op0, Op1, false))
3754 return Med3;
3755 }
3756
3757 // fminnum(fmaxnum(x, K0), K1), K0 < K1 && !is_snan(x) -> fmed3(x, K0, K1)
Matt Arsenault5b39b342016-01-28 20:53:48 +00003758 if (((Opc == ISD::FMINNUM && Op0.getOpcode() == ISD::FMAXNUM) ||
3759 (Opc == AMDGPUISD::FMIN_LEGACY &&
3760 Op0.getOpcode() == AMDGPUISD::FMAX_LEGACY)) &&
Matt Arsenaultf639c322016-01-28 20:53:42 +00003761 N->getValueType(0) == MVT::f32 && Op0.hasOneUse()) {
3762 if (SDValue Res = performFPMed3ImmCombine(DAG, SDLoc(N), Op0, Op1))
3763 return Res;
3764 }
3765
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003766 return SDValue();
3767}
3768
Matt Arsenault6f6233d2015-01-06 23:00:41 +00003769SDValue SITargetLowering::performSetCCCombine(SDNode *N,
3770 DAGCombinerInfo &DCI) const {
3771 SelectionDAG &DAG = DCI.DAG;
3772 SDLoc SL(N);
3773
3774 SDValue LHS = N->getOperand(0);
3775 SDValue RHS = N->getOperand(1);
3776 EVT VT = LHS.getValueType();
3777
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +00003778 if (VT != MVT::f32 && VT != MVT::f64 && (Subtarget->has16BitInsts() &&
3779 VT != MVT::f16))
Matt Arsenault6f6233d2015-01-06 23:00:41 +00003780 return SDValue();
3781
3782 // Match isinf pattern
3783 // (fcmp oeq (fabs x), inf) -> (fp_class x, (p_infinity | n_infinity))
3784 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
3785 if (CC == ISD::SETOEQ && LHS.getOpcode() == ISD::FABS) {
3786 const ConstantFPSDNode *CRHS = dyn_cast<ConstantFPSDNode>(RHS);
3787 if (!CRHS)
3788 return SDValue();
3789
3790 const APFloat &APF = CRHS->getValueAPF();
3791 if (APF.isInfinity() && !APF.isNegative()) {
3792 unsigned Mask = SIInstrFlags::P_INFINITY | SIInstrFlags::N_INFINITY;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003793 return DAG.getNode(AMDGPUISD::FP_CLASS, SL, MVT::i1, LHS.getOperand(0),
3794 DAG.getConstant(Mask, SL, MVT::i32));
Matt Arsenault6f6233d2015-01-06 23:00:41 +00003795 }
3796 }
3797
3798 return SDValue();
3799}
3800
Tom Stellard75aadc22012-12-11 21:25:42 +00003801SDValue SITargetLowering::PerformDAGCombine(SDNode *N,
3802 DAGCombinerInfo &DCI) const {
3803 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00003804 SDLoc DL(N);
Tom Stellard75aadc22012-12-11 21:25:42 +00003805
3806 switch (N->getOpcode()) {
Matt Arsenault22b4c252014-12-21 16:48:42 +00003807 default:
3808 return AMDGPUTargetLowering::PerformDAGCombine(N, DCI);
Matt Arsenault6f6233d2015-01-06 23:00:41 +00003809 case ISD::SETCC:
3810 return performSetCCCombine(N, DCI);
Matt Arsenault5b39b342016-01-28 20:53:48 +00003811 case ISD::FMAXNUM:
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003812 case ISD::FMINNUM:
Matt Arsenault5881f4e2015-06-09 00:52:37 +00003813 case ISD::SMAX:
3814 case ISD::SMIN:
3815 case ISD::UMAX:
Matt Arsenault5b39b342016-01-28 20:53:48 +00003816 case ISD::UMIN:
3817 case AMDGPUISD::FMIN_LEGACY:
3818 case AMDGPUISD::FMAX_LEGACY: {
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003819 if (DCI.getDAGCombineLevel() >= AfterLegalizeDAG &&
Tom Stellard7c840bc2015-03-16 15:53:55 +00003820 N->getValueType(0) != MVT::f64 &&
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003821 getTargetMachine().getOptLevel() > CodeGenOpt::None)
Matt Arsenaultf639c322016-01-28 20:53:42 +00003822 return performMinMaxCombine(N, DCI);
Matt Arsenaultcc3c2b32014-11-14 20:08:52 +00003823 break;
3824 }
Matt Arsenault364a6742014-06-11 17:50:44 +00003825
3826 case AMDGPUISD::CVT_F32_UBYTE0:
3827 case AMDGPUISD::CVT_F32_UBYTE1:
3828 case AMDGPUISD::CVT_F32_UBYTE2:
3829 case AMDGPUISD::CVT_F32_UBYTE3: {
3830 unsigned Offset = N->getOpcode() - AMDGPUISD::CVT_F32_UBYTE0;
Konstantin Zhuravlyovfda33ea2016-10-21 22:10:03 +00003831
Matt Arsenault364a6742014-06-11 17:50:44 +00003832 SDValue Src = N->getOperand(0);
Konstantin Zhuravlyovfda33ea2016-10-21 22:10:03 +00003833 SDValue Srl = N->getOperand(0);
3834 if (Srl.getOpcode() == ISD::ZERO_EXTEND)
3835 Srl = Srl.getOperand(0);
Matt Arsenaulta949dc62016-05-09 16:29:50 +00003836
Matt Arsenault327bb5a2016-07-01 22:47:50 +00003837 // TODO: Handle (or x, (srl y, 8)) pattern when known bits are zero.
Konstantin Zhuravlyovfda33ea2016-10-21 22:10:03 +00003838 if (Srl.getOpcode() == ISD::SRL) {
Matt Arsenaulta949dc62016-05-09 16:29:50 +00003839 // cvt_f32_ubyte0 (srl x, 16) -> cvt_f32_ubyte2 x
3840 // cvt_f32_ubyte1 (srl x, 16) -> cvt_f32_ubyte3 x
3841 // cvt_f32_ubyte0 (srl x, 8) -> cvt_f32_ubyte1 x
3842
Konstantin Zhuravlyovfda33ea2016-10-21 22:10:03 +00003843 if (const ConstantSDNode *C =
3844 dyn_cast<ConstantSDNode>(Srl.getOperand(1))) {
3845 Srl = DAG.getZExtOrTrunc(Srl.getOperand(0), SDLoc(Srl.getOperand(0)),
3846 EVT(MVT::i32));
3847
Matt Arsenaulta949dc62016-05-09 16:29:50 +00003848 unsigned SrcOffset = C->getZExtValue() + 8 * Offset;
3849 if (SrcOffset < 32 && SrcOffset % 8 == 0) {
3850 return DAG.getNode(AMDGPUISD::CVT_F32_UBYTE0 + SrcOffset / 8, DL,
Konstantin Zhuravlyovfda33ea2016-10-21 22:10:03 +00003851 MVT::f32, Srl);
Matt Arsenaulta949dc62016-05-09 16:29:50 +00003852 }
3853 }
3854 }
3855
Matt Arsenault364a6742014-06-11 17:50:44 +00003856 APInt Demanded = APInt::getBitsSet(32, 8 * Offset, 8 * Offset + 8);
3857
3858 APInt KnownZero, KnownOne;
3859 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
3860 !DCI.isBeforeLegalizeOps());
3861 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3862 if (TLO.ShrinkDemandedConstant(Src, Demanded) ||
3863 TLI.SimplifyDemandedBits(Src, Demanded, KnownZero, KnownOne, TLO)) {
3864 DCI.CommitTargetLoweringOpt(TLO);
3865 }
3866
3867 break;
3868 }
Konstantin Zhuravlyovfda33ea2016-10-21 22:10:03 +00003869 case ISD::SINT_TO_FP:
Matt Arsenault364a6742014-06-11 17:50:44 +00003870 case ISD::UINT_TO_FP: {
3871 return performUCharToFloatCombine(N, DCI);
Matt Arsenaultde5fbe92016-01-11 17:02:00 +00003872 }
Matt Arsenault02cb0ff2014-09-29 14:59:34 +00003873 case ISD::FADD: {
3874 if (DCI.getDAGCombineLevel() < AfterLegalizeDAG)
3875 break;
3876
3877 EVT VT = N->getValueType(0);
3878 if (VT != MVT::f32)
3879 break;
3880
Matt Arsenault8d630032015-02-20 22:10:41 +00003881 // Only do this if we are not trying to support denormals. v_mad_f32 does
3882 // not support denormals ever.
3883 if (Subtarget->hasFP32Denormals())
3884 break;
3885
Matt Arsenault02cb0ff2014-09-29 14:59:34 +00003886 SDValue LHS = N->getOperand(0);
3887 SDValue RHS = N->getOperand(1);
3888
3889 // These should really be instruction patterns, but writing patterns with
3890 // source modiifiers is a pain.
3891
3892 // fadd (fadd (a, a), b) -> mad 2.0, a, b
3893 if (LHS.getOpcode() == ISD::FADD) {
3894 SDValue A = LHS.getOperand(0);
3895 if (A == LHS.getOperand(1)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003896 const SDValue Two = DAG.getConstantFP(2.0, DL, MVT::f32);
Matt Arsenault8d630032015-02-20 22:10:41 +00003897 return DAG.getNode(ISD::FMAD, DL, VT, Two, A, RHS);
Matt Arsenault02cb0ff2014-09-29 14:59:34 +00003898 }
3899 }
3900
3901 // fadd (b, fadd (a, a)) -> mad 2.0, a, b
3902 if (RHS.getOpcode() == ISD::FADD) {
3903 SDValue A = RHS.getOperand(0);
3904 if (A == RHS.getOperand(1)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003905 const SDValue Two = DAG.getConstantFP(2.0, DL, MVT::f32);
Matt Arsenault8d630032015-02-20 22:10:41 +00003906 return DAG.getNode(ISD::FMAD, DL, VT, Two, A, LHS);
Matt Arsenault02cb0ff2014-09-29 14:59:34 +00003907 }
3908 }
3909
Matt Arsenault8d630032015-02-20 22:10:41 +00003910 return SDValue();
Matt Arsenault02cb0ff2014-09-29 14:59:34 +00003911 }
Matt Arsenault8675db12014-08-29 16:01:14 +00003912 case ISD::FSUB: {
3913 if (DCI.getDAGCombineLevel() < AfterLegalizeDAG)
3914 break;
3915
3916 EVT VT = N->getValueType(0);
3917
3918 // Try to get the fneg to fold into the source modifier. This undoes generic
3919 // DAG combines and folds them into the mad.
Matt Arsenault8d630032015-02-20 22:10:41 +00003920 //
3921 // Only do this if we are not trying to support denormals. v_mad_f32 does
3922 // not support denormals ever.
Konstantin Zhuravlyovf86e4b72016-11-13 07:01:11 +00003923 if (VT == MVT::f32 && !Subtarget->hasFP32Denormals()) {
Matt Arsenault8675db12014-08-29 16:01:14 +00003924 SDValue LHS = N->getOperand(0);
3925 SDValue RHS = N->getOperand(1);
Matt Arsenault3d4233f2014-09-29 14:59:38 +00003926 if (LHS.getOpcode() == ISD::FADD) {
3927 // (fsub (fadd a, a), c) -> mad 2.0, a, (fneg c)
3928
3929 SDValue A = LHS.getOperand(0);
3930 if (A == LHS.getOperand(1)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003931 const SDValue Two = DAG.getConstantFP(2.0, DL, MVT::f32);
Matt Arsenault3d4233f2014-09-29 14:59:38 +00003932 SDValue NegRHS = DAG.getNode(ISD::FNEG, DL, VT, RHS);
3933
Matt Arsenault8d630032015-02-20 22:10:41 +00003934 return DAG.getNode(ISD::FMAD, DL, VT, Two, A, NegRHS);
Matt Arsenault3d4233f2014-09-29 14:59:38 +00003935 }
3936 }
3937
3938 if (RHS.getOpcode() == ISD::FADD) {
3939 // (fsub c, (fadd a, a)) -> mad -2.0, a, c
3940
3941 SDValue A = RHS.getOperand(0);
3942 if (A == RHS.getOperand(1)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003943 const SDValue NegTwo = DAG.getConstantFP(-2.0, DL, MVT::f32);
Matt Arsenault8d630032015-02-20 22:10:41 +00003944 return DAG.getNode(ISD::FMAD, DL, VT, NegTwo, A, LHS);
Matt Arsenault3d4233f2014-09-29 14:59:38 +00003945 }
3946 }
Matt Arsenault8d630032015-02-20 22:10:41 +00003947
3948 return SDValue();
Matt Arsenault8675db12014-08-29 16:01:14 +00003949 }
3950
3951 break;
3952 }
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003953 case ISD::LOAD:
3954 case ISD::STORE:
3955 case ISD::ATOMIC_LOAD:
3956 case ISD::ATOMIC_STORE:
3957 case ISD::ATOMIC_CMP_SWAP:
3958 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
3959 case ISD::ATOMIC_SWAP:
3960 case ISD::ATOMIC_LOAD_ADD:
3961 case ISD::ATOMIC_LOAD_SUB:
3962 case ISD::ATOMIC_LOAD_AND:
3963 case ISD::ATOMIC_LOAD_OR:
3964 case ISD::ATOMIC_LOAD_XOR:
3965 case ISD::ATOMIC_LOAD_NAND:
3966 case ISD::ATOMIC_LOAD_MIN:
3967 case ISD::ATOMIC_LOAD_MAX:
3968 case ISD::ATOMIC_LOAD_UMIN:
Matt Arsenaulta9dbdca2016-04-12 14:05:04 +00003969 case ISD::ATOMIC_LOAD_UMAX:
3970 case AMDGPUISD::ATOMIC_INC:
3971 case AMDGPUISD::ATOMIC_DEC: { // TODO: Target mem intrinsics.
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003972 if (DCI.isBeforeLegalize())
3973 break;
Matt Arsenault5565f65e2014-05-22 18:09:07 +00003974
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003975 MemSDNode *MemNode = cast<MemSDNode>(N);
3976 SDValue Ptr = MemNode->getBasePtr();
3977
3978 // TODO: We could also do this for multiplies.
3979 unsigned AS = MemNode->getAddressSpace();
3980 if (Ptr.getOpcode() == ISD::SHL && AS != AMDGPUAS::PRIVATE_ADDRESS) {
3981 SDValue NewPtr = performSHLPtrCombine(Ptr.getNode(), AS, DCI);
3982 if (NewPtr) {
Benjamin Kramer6cd780f2015-02-17 15:29:18 +00003983 SmallVector<SDValue, 8> NewOps(MemNode->op_begin(), MemNode->op_end());
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00003984
3985 NewOps[N->getOpcode() == ISD::STORE ? 2 : 1] = NewPtr;
3986 return SDValue(DAG.UpdateNodeOperands(MemNode, NewOps), 0);
3987 }
3988 }
3989 break;
3990 }
Matt Arsenaultd0101a22015-01-06 23:00:46 +00003991 case ISD::AND:
3992 return performAndCombine(N, DCI);
Matt Arsenaultf2290332015-01-06 23:00:39 +00003993 case ISD::OR:
3994 return performOrCombine(N, DCI);
Matt Arsenaultfa5f7672016-09-14 15:19:03 +00003995 case ISD::XOR:
3996 return performXorCombine(N, DCI);
Matt Arsenaultf2290332015-01-06 23:00:39 +00003997 case AMDGPUISD::FP_CLASS:
3998 return performClassCombine(N, DCI);
Matt Arsenault9cd90712016-04-14 01:42:16 +00003999 case ISD::FCANONICALIZE:
4000 return performFCanonicalizeCombine(N, DCI);
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00004001 case AMDGPUISD::FRACT:
4002 case AMDGPUISD::RCP:
4003 case AMDGPUISD::RSQ:
Matt Arsenault32fc5272016-07-26 16:45:45 +00004004 case AMDGPUISD::RCP_LEGACY:
Matt Arsenaultb6d8c372016-06-20 18:33:56 +00004005 case AMDGPUISD::RSQ_LEGACY:
4006 case AMDGPUISD::RSQ_CLAMP:
4007 case AMDGPUISD::LDEXP: {
4008 SDValue Src = N->getOperand(0);
4009 if (Src.isUndef())
4010 return Src;
4011 break;
4012 }
Matt Arsenaultb2baffa2014-08-15 17:49:05 +00004013 }
Matt Arsenault5565f65e2014-05-22 18:09:07 +00004014 return AMDGPUTargetLowering::PerformDAGCombine(N, DCI);
Tom Stellard75aadc22012-12-11 21:25:42 +00004015}
Christian Konigd910b7d2013-02-26 17:52:16 +00004016
Christian Konig8e06e2a2013-04-10 08:39:08 +00004017/// \brief Helper function for adjustWritemask
Benjamin Kramer635e3682013-05-23 15:43:05 +00004018static unsigned SubIdx2Lane(unsigned Idx) {
Christian Konig8e06e2a2013-04-10 08:39:08 +00004019 switch (Idx) {
4020 default: return 0;
4021 case AMDGPU::sub0: return 0;
4022 case AMDGPU::sub1: return 1;
4023 case AMDGPU::sub2: return 2;
4024 case AMDGPU::sub3: return 3;
4025 }
4026}
4027
4028/// \brief Adjust the writemask of MIMG instructions
4029void SITargetLowering::adjustWritemask(MachineSDNode *&Node,
4030 SelectionDAG &DAG) const {
4031 SDNode *Users[4] = { };
Tom Stellard54774e52013-10-23 02:53:47 +00004032 unsigned Lane = 0;
Nikolay Haustov2f684f12016-02-26 09:51:05 +00004033 unsigned DmaskIdx = (Node->getNumOperands() - Node->getNumValues() == 9) ? 2 : 3;
4034 unsigned OldDmask = Node->getConstantOperandVal(DmaskIdx);
Tom Stellard54774e52013-10-23 02:53:47 +00004035 unsigned NewDmask = 0;
Christian Konig8e06e2a2013-04-10 08:39:08 +00004036
4037 // Try to figure out the used register components
4038 for (SDNode::use_iterator I = Node->use_begin(), E = Node->use_end();
4039 I != E; ++I) {
4040
4041 // Abort if we can't understand the usage
4042 if (!I->isMachineOpcode() ||
4043 I->getMachineOpcode() != TargetOpcode::EXTRACT_SUBREG)
4044 return;
4045
Tom Stellard54774e52013-10-23 02:53:47 +00004046 // Lane means which subreg of %VGPRa_VGPRb_VGPRc_VGPRd is used.
4047 // Note that subregs are packed, i.e. Lane==0 is the first bit set
4048 // in OldDmask, so it can be any of X,Y,Z,W; Lane==1 is the second bit
4049 // set, etc.
Christian Konig8b1ed282013-04-10 08:39:16 +00004050 Lane = SubIdx2Lane(I->getConstantOperandVal(1));
Christian Konig8e06e2a2013-04-10 08:39:08 +00004051
Tom Stellard54774e52013-10-23 02:53:47 +00004052 // Set which texture component corresponds to the lane.
4053 unsigned Comp;
4054 for (unsigned i = 0, Dmask = OldDmask; i <= Lane; i++) {
4055 assert(Dmask);
Tom Stellard03a5c082013-10-23 03:50:25 +00004056 Comp = countTrailingZeros(Dmask);
Tom Stellard54774e52013-10-23 02:53:47 +00004057 Dmask &= ~(1 << Comp);
4058 }
4059
Christian Konig8e06e2a2013-04-10 08:39:08 +00004060 // Abort if we have more than one user per component
4061 if (Users[Lane])
4062 return;
4063
4064 Users[Lane] = *I;
Tom Stellard54774e52013-10-23 02:53:47 +00004065 NewDmask |= 1 << Comp;
Christian Konig8e06e2a2013-04-10 08:39:08 +00004066 }
4067
Tom Stellard54774e52013-10-23 02:53:47 +00004068 // Abort if there's no change
4069 if (NewDmask == OldDmask)
Christian Konig8e06e2a2013-04-10 08:39:08 +00004070 return;
4071
4072 // Adjust the writemask in the node
4073 std::vector<SDValue> Ops;
Nikolay Haustov2f684f12016-02-26 09:51:05 +00004074 Ops.insert(Ops.end(), Node->op_begin(), Node->op_begin() + DmaskIdx);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004075 Ops.push_back(DAG.getTargetConstant(NewDmask, SDLoc(Node), MVT::i32));
Nikolay Haustov2f684f12016-02-26 09:51:05 +00004076 Ops.insert(Ops.end(), Node->op_begin() + DmaskIdx + 1, Node->op_end());
Craig Topper8c0b4d02014-04-28 05:57:50 +00004077 Node = (MachineSDNode*)DAG.UpdateNodeOperands(Node, Ops);
Christian Konig8e06e2a2013-04-10 08:39:08 +00004078
Christian Konig8b1ed282013-04-10 08:39:16 +00004079 // If we only got one lane, replace it with a copy
Tom Stellard54774e52013-10-23 02:53:47 +00004080 // (if NewDmask has only one bit set...)
4081 if (NewDmask && (NewDmask & (NewDmask-1)) == 0) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004082 SDValue RC = DAG.getTargetConstant(AMDGPU::VGPR_32RegClassID, SDLoc(),
4083 MVT::i32);
Christian Konig8b1ed282013-04-10 08:39:16 +00004084 SDNode *Copy = DAG.getMachineNode(TargetOpcode::COPY_TO_REGCLASS,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004085 SDLoc(), Users[Lane]->getValueType(0),
Christian Konig8b1ed282013-04-10 08:39:16 +00004086 SDValue(Node, 0), RC);
4087 DAG.ReplaceAllUsesWith(Users[Lane], Copy);
4088 return;
4089 }
4090
Christian Konig8e06e2a2013-04-10 08:39:08 +00004091 // Update the users of the node with the new indices
4092 for (unsigned i = 0, Idx = AMDGPU::sub0; i < 4; ++i) {
4093
4094 SDNode *User = Users[i];
4095 if (!User)
4096 continue;
4097
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004098 SDValue Op = DAG.getTargetConstant(Idx, SDLoc(User), MVT::i32);
Christian Konig8e06e2a2013-04-10 08:39:08 +00004099 DAG.UpdateNodeOperands(User, User->getOperand(0), Op);
4100
4101 switch (Idx) {
4102 default: break;
4103 case AMDGPU::sub0: Idx = AMDGPU::sub1; break;
4104 case AMDGPU::sub1: Idx = AMDGPU::sub2; break;
4105 case AMDGPU::sub2: Idx = AMDGPU::sub3; break;
4106 }
4107 }
4108}
4109
Tom Stellardc98ee202015-07-16 19:40:07 +00004110static bool isFrameIndexOp(SDValue Op) {
4111 if (Op.getOpcode() == ISD::AssertZext)
4112 Op = Op.getOperand(0);
4113
4114 return isa<FrameIndexSDNode>(Op);
4115}
4116
Tom Stellard3457a842014-10-09 19:06:00 +00004117/// \brief Legalize target independent instructions (e.g. INSERT_SUBREG)
4118/// with frame index operands.
4119/// LLVM assumes that inputs are to these instructions are registers.
4120void SITargetLowering::legalizeTargetIndependentNode(SDNode *Node,
4121 SelectionDAG &DAG) const {
Tom Stellard8dd392e2014-10-09 18:09:15 +00004122
4123 SmallVector<SDValue, 8> Ops;
Tom Stellard3457a842014-10-09 19:06:00 +00004124 for (unsigned i = 0; i < Node->getNumOperands(); ++i) {
Tom Stellardc98ee202015-07-16 19:40:07 +00004125 if (!isFrameIndexOp(Node->getOperand(i))) {
Tom Stellard3457a842014-10-09 19:06:00 +00004126 Ops.push_back(Node->getOperand(i));
Tom Stellard8dd392e2014-10-09 18:09:15 +00004127 continue;
4128 }
4129
Tom Stellard3457a842014-10-09 19:06:00 +00004130 SDLoc DL(Node);
Tom Stellard8dd392e2014-10-09 18:09:15 +00004131 Ops.push_back(SDValue(DAG.getMachineNode(AMDGPU::S_MOV_B32, DL,
Tom Stellard3457a842014-10-09 19:06:00 +00004132 Node->getOperand(i).getValueType(),
4133 Node->getOperand(i)), 0));
Tom Stellard8dd392e2014-10-09 18:09:15 +00004134 }
4135
Tom Stellard3457a842014-10-09 19:06:00 +00004136 DAG.UpdateNodeOperands(Node, Ops);
Tom Stellard8dd392e2014-10-09 18:09:15 +00004137}
4138
Matt Arsenault08d84942014-06-03 23:06:13 +00004139/// \brief Fold the instructions after selecting them.
Christian Konig8e06e2a2013-04-10 08:39:08 +00004140SDNode *SITargetLowering::PostISelFolding(MachineSDNode *Node,
4141 SelectionDAG &DAG) const {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00004142 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
Nicolai Haehnlef2c64db2016-02-18 16:44:18 +00004143 unsigned Opcode = Node->getMachineOpcode();
Christian Konig8e06e2a2013-04-10 08:39:08 +00004144
Nicolai Haehnlec06bfa12016-07-11 21:59:43 +00004145 if (TII->isMIMG(Opcode) && !TII->get(Opcode).mayStore() &&
4146 !TII->isGather4(Opcode))
Christian Konig8e06e2a2013-04-10 08:39:08 +00004147 adjustWritemask(Node, DAG);
4148
Nicolai Haehnlef2c64db2016-02-18 16:44:18 +00004149 if (Opcode == AMDGPU::INSERT_SUBREG ||
4150 Opcode == AMDGPU::REG_SEQUENCE) {
Tom Stellard8dd392e2014-10-09 18:09:15 +00004151 legalizeTargetIndependentNode(Node, DAG);
4152 return Node;
4153 }
Tom Stellard654d6692015-01-08 15:08:17 +00004154 return Node;
Christian Konig8e06e2a2013-04-10 08:39:08 +00004155}
Christian Konig8b1ed282013-04-10 08:39:16 +00004156
4157/// \brief Assign the register class depending on the number of
4158/// bits set in the writemask
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004159void SITargetLowering::AdjustInstrPostInstrSelection(MachineInstr &MI,
Christian Konig8b1ed282013-04-10 08:39:16 +00004160 SDNode *Node) const {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00004161 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004162
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004163 MachineRegisterInfo &MRI = MI.getParent()->getParent()->getRegInfo();
Matt Arsenault6005fcb2015-10-21 21:51:02 +00004164
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004165 if (TII->isVOP3(MI.getOpcode())) {
Matt Arsenault6005fcb2015-10-21 21:51:02 +00004166 // Make sure constant bus requirements are respected.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004167 TII->legalizeOperandsVOP3(MRI, MI);
Matt Arsenault6005fcb2015-10-21 21:51:02 +00004168 return;
4169 }
Matt Arsenaultcb0ac3d2014-09-26 17:54:59 +00004170
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004171 if (TII->isMIMG(MI)) {
4172 unsigned VReg = MI.getOperand(0).getReg();
Changpeng Fang8236fe12016-11-14 18:33:18 +00004173 const TargetRegisterClass *RC = MRI.getRegClass(VReg);
4174 // TODO: Need mapping tables to handle other cases (register classes).
4175 if (RC != &AMDGPU::VReg_128RegClass)
4176 return;
4177
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004178 unsigned DmaskIdx = MI.getNumOperands() == 12 ? 3 : 4;
4179 unsigned Writemask = MI.getOperand(DmaskIdx).getImm();
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004180 unsigned BitsSet = 0;
4181 for (unsigned i = 0; i < 4; ++i)
4182 BitsSet += Writemask & (1 << i) ? 1 : 0;
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004183 switch (BitsSet) {
4184 default: return;
Tom Stellard45c0b3a2015-01-07 20:59:25 +00004185 case 1: RC = &AMDGPU::VGPR_32RegClass; break;
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004186 case 2: RC = &AMDGPU::VReg_64RegClass; break;
4187 case 3: RC = &AMDGPU::VReg_96RegClass; break;
4188 }
4189
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004190 unsigned NewOpcode = TII->getMaskedMIMGOp(MI.getOpcode(), BitsSet);
4191 MI.setDesc(TII->get(NewOpcode));
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004192 MRI.setRegClass(VReg, RC);
Christian Konig8b1ed282013-04-10 08:39:16 +00004193 return;
Christian Konig8b1ed282013-04-10 08:39:16 +00004194 }
4195
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004196 // Replace unused atomics with the no return version.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004197 int NoRetAtomicOp = AMDGPU::getAtomicNoRetOp(MI.getOpcode());
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004198 if (NoRetAtomicOp != -1) {
4199 if (!Node->hasAnyUseOfValue(0)) {
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004200 MI.setDesc(TII->get(NoRetAtomicOp));
4201 MI.RemoveOperand(0);
Tom Stellard354a43c2016-04-01 18:27:37 +00004202 return;
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004203 }
4204
Tom Stellard354a43c2016-04-01 18:27:37 +00004205 // For mubuf_atomic_cmpswap, we need to have tablegen use an extract_subreg
4206 // instruction, because the return type of these instructions is a vec2 of
4207 // the memory type, so it can be tied to the input operand.
4208 // This means these instructions always have a use, so we need to add a
4209 // special case to check if the atomic has only one extract_subreg use,
4210 // which itself has no uses.
4211 if ((Node->hasNUsesOfValue(1, 0) &&
Nicolai Haehnle750082d2016-04-15 14:42:36 +00004212 Node->use_begin()->isMachineOpcode() &&
Tom Stellard354a43c2016-04-01 18:27:37 +00004213 Node->use_begin()->getMachineOpcode() == AMDGPU::EXTRACT_SUBREG &&
4214 !Node->use_begin()->hasAnyUseOfValue(0))) {
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004215 unsigned Def = MI.getOperand(0).getReg();
Tom Stellard354a43c2016-04-01 18:27:37 +00004216
4217 // Change this into a noret atomic.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004218 MI.setDesc(TII->get(NoRetAtomicOp));
4219 MI.RemoveOperand(0);
Tom Stellard354a43c2016-04-01 18:27:37 +00004220
4221 // If we only remove the def operand from the atomic instruction, the
4222 // extract_subreg will be left with a use of a vreg without a def.
4223 // So we need to insert an implicit_def to avoid machine verifier
4224 // errors.
Duncan P. N. Exon Smithe4f5e4f2016-06-30 22:52:52 +00004225 BuildMI(*MI.getParent(), MI, MI.getDebugLoc(),
Tom Stellard354a43c2016-04-01 18:27:37 +00004226 TII->get(AMDGPU::IMPLICIT_DEF), Def);
4227 }
Matt Arsenault7ac9c4a2014-09-08 15:07:31 +00004228 return;
4229 }
Christian Konig8b1ed282013-04-10 08:39:16 +00004230}
Tom Stellard0518ff82013-06-03 17:39:58 +00004231
Benjamin Kramerbdc49562016-06-12 15:39:02 +00004232static SDValue buildSMovImm32(SelectionDAG &DAG, const SDLoc &DL,
4233 uint64_t Val) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004234 SDValue K = DAG.getTargetConstant(Val, DL, MVT::i32);
Matt Arsenault485defe2014-11-05 19:01:17 +00004235 return SDValue(DAG.getMachineNode(AMDGPU::S_MOV_B32, DL, MVT::i32, K), 0);
4236}
4237
4238MachineSDNode *SITargetLowering::wrapAddr64Rsrc(SelectionDAG &DAG,
Benjamin Kramerbdc49562016-06-12 15:39:02 +00004239 const SDLoc &DL,
Matt Arsenault485defe2014-11-05 19:01:17 +00004240 SDValue Ptr) const {
Matt Arsenault43e92fe2016-06-24 06:30:11 +00004241 const SIInstrInfo *TII = getSubtarget()->getInstrInfo();
Matt Arsenault485defe2014-11-05 19:01:17 +00004242
Matt Arsenault2d6fdb82015-09-25 17:08:42 +00004243 // Build the half of the subregister with the constants before building the
4244 // full 128-bit register. If we are building multiple resource descriptors,
4245 // this will allow CSEing of the 2-component register.
4246 const SDValue Ops0[] = {
4247 DAG.getTargetConstant(AMDGPU::SGPR_64RegClassID, DL, MVT::i32),
4248 buildSMovImm32(DAG, DL, 0),
4249 DAG.getTargetConstant(AMDGPU::sub0, DL, MVT::i32),
4250 buildSMovImm32(DAG, DL, TII->getDefaultRsrcDataFormat() >> 32),
4251 DAG.getTargetConstant(AMDGPU::sub1, DL, MVT::i32)
4252 };
Matt Arsenault485defe2014-11-05 19:01:17 +00004253
Matt Arsenault2d6fdb82015-09-25 17:08:42 +00004254 SDValue SubRegHi = SDValue(DAG.getMachineNode(AMDGPU::REG_SEQUENCE, DL,
4255 MVT::v2i32, Ops0), 0);
Matt Arsenault485defe2014-11-05 19:01:17 +00004256
Matt Arsenault2d6fdb82015-09-25 17:08:42 +00004257 // Combine the constants and the pointer.
4258 const SDValue Ops1[] = {
4259 DAG.getTargetConstant(AMDGPU::SReg_128RegClassID, DL, MVT::i32),
4260 Ptr,
4261 DAG.getTargetConstant(AMDGPU::sub0_sub1, DL, MVT::i32),
4262 SubRegHi,
4263 DAG.getTargetConstant(AMDGPU::sub2_sub3, DL, MVT::i32)
4264 };
Matt Arsenault485defe2014-11-05 19:01:17 +00004265
Matt Arsenault2d6fdb82015-09-25 17:08:42 +00004266 return DAG.getMachineNode(AMDGPU::REG_SEQUENCE, DL, MVT::v4i32, Ops1);
Matt Arsenault485defe2014-11-05 19:01:17 +00004267}
4268
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004269/// \brief Return a resource descriptor with the 'Add TID' bit enabled
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00004270/// The TID (Thread ID) is multiplied by the stride value (bits [61:48]
4271/// of the resource descriptor) to create an offset, which is added to
4272/// the resource pointer.
Benjamin Kramerbdc49562016-06-12 15:39:02 +00004273MachineSDNode *SITargetLowering::buildRSRC(SelectionDAG &DAG, const SDLoc &DL,
4274 SDValue Ptr, uint32_t RsrcDword1,
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004275 uint64_t RsrcDword2And3) const {
4276 SDValue PtrLo = DAG.getTargetExtractSubreg(AMDGPU::sub0, DL, MVT::i32, Ptr);
4277 SDValue PtrHi = DAG.getTargetExtractSubreg(AMDGPU::sub1, DL, MVT::i32, Ptr);
4278 if (RsrcDword1) {
4279 PtrHi = SDValue(DAG.getMachineNode(AMDGPU::S_OR_B32, DL, MVT::i32, PtrHi,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004280 DAG.getConstant(RsrcDword1, DL, MVT::i32)),
4281 0);
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004282 }
4283
4284 SDValue DataLo = buildSMovImm32(DAG, DL,
4285 RsrcDword2And3 & UINT64_C(0xFFFFFFFF));
4286 SDValue DataHi = buildSMovImm32(DAG, DL, RsrcDword2And3 >> 32);
4287
4288 const SDValue Ops[] = {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004289 DAG.getTargetConstant(AMDGPU::SReg_128RegClassID, DL, MVT::i32),
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004290 PtrLo,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004291 DAG.getTargetConstant(AMDGPU::sub0, DL, MVT::i32),
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004292 PtrHi,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004293 DAG.getTargetConstant(AMDGPU::sub1, DL, MVT::i32),
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004294 DataLo,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004295 DAG.getTargetConstant(AMDGPU::sub2, DL, MVT::i32),
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004296 DataHi,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004297 DAG.getTargetConstant(AMDGPU::sub3, DL, MVT::i32)
Matt Arsenaultf3cd4512014-11-05 19:01:19 +00004298 };
4299
4300 return DAG.getMachineNode(AMDGPU::REG_SEQUENCE, DL, MVT::v4i32, Ops);
4301}
4302
Tom Stellard94593ee2013-06-03 17:40:18 +00004303SDValue SITargetLowering::CreateLiveInRegister(SelectionDAG &DAG,
4304 const TargetRegisterClass *RC,
4305 unsigned Reg, EVT VT) const {
4306 SDValue VReg = AMDGPUTargetLowering::CreateLiveInRegister(DAG, RC, Reg, VT);
4307
4308 return DAG.getCopyFromReg(DAG.getEntryNode(), SDLoc(DAG.getEntryNode()),
4309 cast<RegisterSDNode>(VReg)->getReg(), VT);
4310}
Tom Stellardd7e6f132015-04-08 01:09:26 +00004311
4312//===----------------------------------------------------------------------===//
4313// SI Inline Assembly Support
4314//===----------------------------------------------------------------------===//
4315
4316std::pair<unsigned, const TargetRegisterClass *>
4317SITargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
Benjamin Kramer9bfb6272015-07-05 19:29:18 +00004318 StringRef Constraint,
Tom Stellardd7e6f132015-04-08 01:09:26 +00004319 MVT VT) const {
Matt Arsenault742deb22016-11-18 04:42:57 +00004320 if (!isTypeLegal(VT))
4321 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
Tom Stellardb3c3bda2015-12-10 02:12:53 +00004322
4323 if (Constraint.size() == 1) {
4324 switch (Constraint[0]) {
4325 case 's':
4326 case 'r':
4327 switch (VT.getSizeInBits()) {
4328 default:
4329 return std::make_pair(0U, nullptr);
4330 case 32:
Marek Olsak79c05872016-11-25 17:37:09 +00004331 return std::make_pair(0U, &AMDGPU::SReg_32_XM0RegClass);
Tom Stellardb3c3bda2015-12-10 02:12:53 +00004332 case 64:
4333 return std::make_pair(0U, &AMDGPU::SGPR_64RegClass);
4334 case 128:
4335 return std::make_pair(0U, &AMDGPU::SReg_128RegClass);
4336 case 256:
4337 return std::make_pair(0U, &AMDGPU::SReg_256RegClass);
4338 }
4339
4340 case 'v':
4341 switch (VT.getSizeInBits()) {
4342 default:
4343 return std::make_pair(0U, nullptr);
4344 case 32:
4345 return std::make_pair(0U, &AMDGPU::VGPR_32RegClass);
4346 case 64:
4347 return std::make_pair(0U, &AMDGPU::VReg_64RegClass);
4348 case 96:
4349 return std::make_pair(0U, &AMDGPU::VReg_96RegClass);
4350 case 128:
4351 return std::make_pair(0U, &AMDGPU::VReg_128RegClass);
4352 case 256:
4353 return std::make_pair(0U, &AMDGPU::VReg_256RegClass);
4354 case 512:
4355 return std::make_pair(0U, &AMDGPU::VReg_512RegClass);
4356 }
Tom Stellardd7e6f132015-04-08 01:09:26 +00004357 }
4358 }
4359
4360 if (Constraint.size() > 1) {
4361 const TargetRegisterClass *RC = nullptr;
4362 if (Constraint[1] == 'v') {
4363 RC = &AMDGPU::VGPR_32RegClass;
4364 } else if (Constraint[1] == 's') {
4365 RC = &AMDGPU::SGPR_32RegClass;
4366 }
4367
4368 if (RC) {
Matt Arsenault0b554ed2015-06-23 02:05:55 +00004369 uint32_t Idx;
4370 bool Failed = Constraint.substr(2).getAsInteger(10, Idx);
4371 if (!Failed && Idx < RC->getNumRegs())
Tom Stellardd7e6f132015-04-08 01:09:26 +00004372 return std::make_pair(RC->getRegister(Idx), RC);
4373 }
4374 }
4375 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
4376}
Tom Stellardb3c3bda2015-12-10 02:12:53 +00004377
4378SITargetLowering::ConstraintType
4379SITargetLowering::getConstraintType(StringRef Constraint) const {
4380 if (Constraint.size() == 1) {
4381 switch (Constraint[0]) {
4382 default: break;
4383 case 's':
4384 case 'v':
4385 return C_RegisterClass;
4386 }
4387 }
4388 return TargetLowering::getConstraintType(Constraint);
4389}