1 //===-- R600ISelLowering.cpp - R600 DAG Lowering Implementation -----------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 /// \file 10 /// Custom DAG lowering for R600 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "R600ISelLowering.h" 15 #include "AMDGPUFrameLowering.h" 16 #include "AMDGPUSubtarget.h" 17 #include "R600Defines.h" 18 #include "R600FrameLowering.h" 19 #include "R600InstrInfo.h" 20 #include "R600MachineFunctionInfo.h" 21 #include "MCTargetDesc/AMDGPUMCTargetDesc.h" 22 #include "Utils/AMDGPUBaseInfo.h" 23 #include "llvm/ADT/APFloat.h" 24 #include "llvm/ADT/APInt.h" 25 #include "llvm/ADT/ArrayRef.h" 26 #include "llvm/ADT/DenseMap.h" 27 #include "llvm/ADT/SmallVector.h" 28 #include "llvm/CodeGen/CallingConvLower.h" 29 #include "llvm/CodeGen/DAGCombine.h" 30 #include "llvm/CodeGen/ISDOpcodes.h" 31 #include "llvm/CodeGen/MachineBasicBlock.h" 32 #include "llvm/CodeGen/MachineFunction.h" 33 #include "llvm/CodeGen/MachineInstr.h" 34 #include "llvm/CodeGen/MachineInstrBuilder.h" 35 #include "llvm/CodeGen/MachineMemOperand.h" 36 #include "llvm/CodeGen/MachineRegisterInfo.h" 37 #include "llvm/CodeGen/SelectionDAG.h" 38 #include "llvm/IR/Constants.h" 39 #include "llvm/IR/DerivedTypes.h" 40 #include "llvm/Support/Casting.h" 41 #include "llvm/Support/Compiler.h" 42 #include "llvm/Support/ErrorHandling.h" 43 #include "llvm/Support/MachineValueType.h" 44 #include <cassert> 45 #include <cstdint> 46 #include <iterator> 47 #include <utility> 48 #include <vector> 49 50 using namespace llvm; 51 52 #include "R600GenCallingConv.inc" 53 54 R600TargetLowering::R600TargetLowering(const TargetMachine &TM, 55 const R600Subtarget &STI) 56 : AMDGPUTargetLowering(TM, STI), Subtarget(&STI), Gen(STI.getGeneration()) { 57 addRegisterClass(MVT::f32, &R600::R600_Reg32RegClass); 58 addRegisterClass(MVT::i32, &R600::R600_Reg32RegClass); 59 addRegisterClass(MVT::v2f32, &R600::R600_Reg64RegClass); 60 addRegisterClass(MVT::v2i32, &R600::R600_Reg64RegClass); 61 addRegisterClass(MVT::v4f32, &R600::R600_Reg128RegClass); 62 addRegisterClass(MVT::v4i32, &R600::R600_Reg128RegClass); 63 64 computeRegisterProperties(Subtarget->getRegisterInfo()); 65 66 // Legalize loads and stores to the private address space. 67 setOperationAction(ISD::LOAD, MVT::i32, Custom); 68 setOperationAction(ISD::LOAD, MVT::v2i32, Custom); 69 setOperationAction(ISD::LOAD, MVT::v4i32, Custom); 70 71 // EXTLOAD should be the same as ZEXTLOAD. It is legal for some address 72 // spaces, so it is custom lowered to handle those where it isn't. 73 for (MVT VT : MVT::integer_valuetypes()) { 74 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote); 75 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Custom); 76 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i16, Custom); 77 78 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote); 79 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i8, Custom); 80 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i16, Custom); 81 82 setLoadExtAction(ISD::EXTLOAD, VT, MVT::i1, Promote); 83 setLoadExtAction(ISD::EXTLOAD, VT, MVT::i8, Custom); 84 setLoadExtAction(ISD::EXTLOAD, VT, MVT::i16, Custom); 85 } 86 87 // Workaround for LegalizeDAG asserting on expansion of i1 vector loads. 88 setLoadExtAction(ISD::EXTLOAD, MVT::v2i32, MVT::v2i1, Expand); 89 setLoadExtAction(ISD::SEXTLOAD, MVT::v2i32, MVT::v2i1, Expand); 90 setLoadExtAction(ISD::ZEXTLOAD, MVT::v2i32, MVT::v2i1, Expand); 91 92 setLoadExtAction(ISD::EXTLOAD, MVT::v4i32, MVT::v4i1, Expand); 93 setLoadExtAction(ISD::SEXTLOAD, MVT::v4i32, MVT::v4i1, Expand); 94 setLoadExtAction(ISD::ZEXTLOAD, MVT::v4i32, MVT::v4i1, Expand); 95 96 setOperationAction(ISD::STORE, MVT::i8, Custom); 97 setOperationAction(ISD::STORE, MVT::i32, Custom); 98 setOperationAction(ISD::STORE, MVT::v2i32, Custom); 99 setOperationAction(ISD::STORE, MVT::v4i32, Custom); 100 101 setTruncStoreAction(MVT::i32, MVT::i8, Custom); 102 setTruncStoreAction(MVT::i32, MVT::i16, Custom); 103 // We need to include these since trunc STORES to PRIVATE need 104 // special handling to accommodate RMW 105 setTruncStoreAction(MVT::v2i32, MVT::v2i16, Custom); 106 setTruncStoreAction(MVT::v4i32, MVT::v4i16, Custom); 107 setTruncStoreAction(MVT::v8i32, MVT::v8i16, Custom); 108 setTruncStoreAction(MVT::v16i32, MVT::v16i16, Custom); 109 setTruncStoreAction(MVT::v32i32, MVT::v32i16, Custom); 110 setTruncStoreAction(MVT::v2i32, MVT::v2i8, Custom); 111 setTruncStoreAction(MVT::v4i32, MVT::v4i8, Custom); 112 setTruncStoreAction(MVT::v8i32, MVT::v8i8, Custom); 113 setTruncStoreAction(MVT::v16i32, MVT::v16i8, Custom); 114 setTruncStoreAction(MVT::v32i32, MVT::v32i8, Custom); 115 116 // Workaround for LegalizeDAG asserting on expansion of i1 vector stores. 117 setTruncStoreAction(MVT::v2i32, MVT::v2i1, Expand); 118 setTruncStoreAction(MVT::v4i32, MVT::v4i1, Expand); 119 120 // Set condition code actions 121 setCondCodeAction(ISD::SETO, MVT::f32, Expand); 122 setCondCodeAction(ISD::SETUO, MVT::f32, Expand); 123 setCondCodeAction(ISD::SETLT, MVT::f32, Expand); 124 setCondCodeAction(ISD::SETLE, MVT::f32, Expand); 125 setCondCodeAction(ISD::SETOLT, MVT::f32, Expand); 126 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand); 127 setCondCodeAction(ISD::SETONE, MVT::f32, Expand); 128 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand); 129 setCondCodeAction(ISD::SETUGE, MVT::f32, Expand); 130 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand); 131 setCondCodeAction(ISD::SETULT, MVT::f32, Expand); 132 setCondCodeAction(ISD::SETULE, MVT::f32, Expand); 133 134 setCondCodeAction(ISD::SETLE, MVT::i32, Expand); 135 setCondCodeAction(ISD::SETLT, MVT::i32, Expand); 136 setCondCodeAction(ISD::SETULE, MVT::i32, Expand); 137 setCondCodeAction(ISD::SETULT, MVT::i32, Expand); 138 139 setOperationAction(ISD::FCOS, MVT::f32, Custom); 140 setOperationAction(ISD::FSIN, MVT::f32, Custom); 141 142 setOperationAction(ISD::SETCC, MVT::v4i32, Expand); 143 setOperationAction(ISD::SETCC, MVT::v2i32, Expand); 144 145 setOperationAction(ISD::BR_CC, MVT::i32, Expand); 146 setOperationAction(ISD::BR_CC, MVT::f32, Expand); 147 setOperationAction(ISD::BRCOND, MVT::Other, Custom); 148 149 setOperationAction(ISD::FSUB, MVT::f32, Expand); 150 151 setOperationAction(ISD::FCEIL, MVT::f64, Custom); 152 setOperationAction(ISD::FTRUNC, MVT::f64, Custom); 153 setOperationAction(ISD::FRINT, MVT::f64, Custom); 154 setOperationAction(ISD::FFLOOR, MVT::f64, Custom); 155 156 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); 157 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); 158 159 setOperationAction(ISD::SETCC, MVT::i32, Expand); 160 setOperationAction(ISD::SETCC, MVT::f32, Expand); 161 setOperationAction(ISD::FP_TO_UINT, MVT::i1, Custom); 162 setOperationAction(ISD::FP_TO_SINT, MVT::i1, Custom); 163 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom); 164 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom); 165 166 setOperationAction(ISD::SELECT, MVT::i32, Expand); 167 setOperationAction(ISD::SELECT, MVT::f32, Expand); 168 setOperationAction(ISD::SELECT, MVT::v2i32, Expand); 169 setOperationAction(ISD::SELECT, MVT::v4i32, Expand); 170 171 // ADD, SUB overflow. 172 // TODO: turn these into Legal? 173 if (Subtarget->hasCARRY()) 174 setOperationAction(ISD::UADDO, MVT::i32, Custom); 175 176 if (Subtarget->hasBORROW()) 177 setOperationAction(ISD::USUBO, MVT::i32, Custom); 178 179 // Expand sign extension of vectors 180 if (!Subtarget->hasBFE()) 181 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); 182 183 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i1, Expand); 184 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i1, Expand); 185 186 if (!Subtarget->hasBFE()) 187 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand); 188 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Expand); 189 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i8, Expand); 190 191 if (!Subtarget->hasBFE()) 192 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand); 193 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Expand); 194 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i16, Expand); 195 196 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal); 197 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Expand); 198 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i32, Expand); 199 200 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::Other, Expand); 201 202 setOperationAction(ISD::FrameIndex, MVT::i32, Custom); 203 204 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i32, Custom); 205 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f32, Custom); 206 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom); 207 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom); 208 209 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i32, Custom); 210 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f32, Custom); 211 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom); 212 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom); 213 214 // We don't have 64-bit shifts. Thus we need either SHX i64 or SHX_PARTS i32 215 // to be Legal/Custom in order to avoid library calls. 216 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom); 217 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom); 218 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom); 219 220 if (!Subtarget->hasFMA()) { 221 setOperationAction(ISD::FMA, MVT::f32, Expand); 222 setOperationAction(ISD::FMA, MVT::f64, Expand); 223 } 224 225 // FIXME: This was moved from AMDGPUTargetLowering, I'm not sure if we 226 // need it for R600. 227 if (!Subtarget->hasFP32Denormals()) 228 setOperationAction(ISD::FMAD, MVT::f32, Legal); 229 230 if (!Subtarget->hasBFI()) { 231 // fcopysign can be done in a single instruction with BFI. 232 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); 233 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); 234 } 235 236 if (!Subtarget->hasBCNT(32)) 237 setOperationAction(ISD::CTPOP, MVT::i32, Expand); 238 239 if (!Subtarget->hasBCNT(64)) 240 setOperationAction(ISD::CTPOP, MVT::i64, Expand); 241 242 if (Subtarget->hasFFBH()) 243 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Custom); 244 245 if (Subtarget->hasFFBL()) 246 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Custom); 247 248 // FIXME: This was moved from AMDGPUTargetLowering, I'm not sure if we 249 // need it for R600. 250 if (Subtarget->hasBFE()) 251 setHasExtractBitsInsn(true); 252 253 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom); 254 255 const MVT ScalarIntVTs[] = { MVT::i32, MVT::i64 }; 256 for (MVT VT : ScalarIntVTs) { 257 setOperationAction(ISD::ADDC, VT, Expand); 258 setOperationAction(ISD::SUBC, VT, Expand); 259 setOperationAction(ISD::ADDE, VT, Expand); 260 setOperationAction(ISD::SUBE, VT, Expand); 261 } 262 263 // LLVM will expand these to atomic_cmp_swap(0) 264 // and atomic_swap, respectively. 265 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Expand); 266 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Expand); 267 268 // We need to custom lower some of the intrinsics 269 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom); 270 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); 271 272 setSchedulingPreference(Sched::Source); 273 274 setTargetDAGCombine(ISD::FP_ROUND); 275 setTargetDAGCombine(ISD::FP_TO_SINT); 276 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT); 277 setTargetDAGCombine(ISD::SELECT_CC); 278 setTargetDAGCombine(ISD::INSERT_VECTOR_ELT); 279 setTargetDAGCombine(ISD::LOAD); 280 } 281 282 static inline bool isEOP(MachineBasicBlock::iterator I) { 283 if (std::next(I) == I->getParent()->end()) 284 return false; 285 return std::next(I)->getOpcode() == R600::RETURN; 286 } 287 288 MachineBasicBlock * 289 R600TargetLowering::EmitInstrWithCustomInserter(MachineInstr &MI, 290 MachineBasicBlock *BB) const { 291 MachineFunction *MF = BB->getParent(); 292 MachineRegisterInfo &MRI = MF->getRegInfo(); 293 MachineBasicBlock::iterator I = MI; 294 const R600InstrInfo *TII = Subtarget->getInstrInfo(); 295 296 switch (MI.getOpcode()) { 297 default: 298 // Replace LDS_*_RET instruction that don't have any uses with the 299 // equivalent LDS_*_NORET instruction. 300 if (TII->isLDSRetInstr(MI.getOpcode())) { 301 int DstIdx = TII->getOperandIdx(MI.getOpcode(), R600::OpName::dst); 302 assert(DstIdx != -1); 303 MachineInstrBuilder NewMI; 304 // FIXME: getLDSNoRetOp method only handles LDS_1A1D LDS ops. Add 305 // LDS_1A2D support and remove this special case. 306 if (!MRI.use_empty(MI.getOperand(DstIdx).getReg()) || 307 MI.getOpcode() == R600::LDS_CMPST_RET) 308 return BB; 309 310 NewMI = BuildMI(*BB, I, BB->findDebugLoc(I), 311 TII->get(R600::getLDSNoRetOp(MI.getOpcode()))); 312 for (unsigned i = 1, e = MI.getNumOperands(); i < e; ++i) { 313 NewMI.add(MI.getOperand(i)); 314 } 315 } else { 316 return AMDGPUTargetLowering::EmitInstrWithCustomInserter(MI, BB); 317 } 318 break; 319 320 case R600::FABS_R600: { 321 MachineInstr *NewMI = TII->buildDefaultInstruction( 322 *BB, I, R600::MOV, MI.getOperand(0).getReg(), 323 MI.getOperand(1).getReg()); 324 TII->addFlag(*NewMI, 0, MO_FLAG_ABS); 325 break; 326 } 327 328 case R600::FNEG_R600: { 329 MachineInstr *NewMI = TII->buildDefaultInstruction( 330 *BB, I, R600::MOV, MI.getOperand(0).getReg(), 331 MI.getOperand(1).getReg()); 332 TII->addFlag(*NewMI, 0, MO_FLAG_NEG); 333 break; 334 } 335 336 case R600::MASK_WRITE: { 337 unsigned maskedRegister = MI.getOperand(0).getReg(); 338 assert(TargetRegisterInfo::isVirtualRegister(maskedRegister)); 339 MachineInstr * defInstr = MRI.getVRegDef(maskedRegister); 340 TII->addFlag(*defInstr, 0, MO_FLAG_MASK); 341 break; 342 } 343 344 case R600::MOV_IMM_F32: 345 TII->buildMovImm(*BB, I, MI.getOperand(0).getReg(), MI.getOperand(1) 346 .getFPImm() 347 ->getValueAPF() 348 .bitcastToAPInt() 349 .getZExtValue()); 350 break; 351 352 case R600::MOV_IMM_I32: 353 TII->buildMovImm(*BB, I, MI.getOperand(0).getReg(), 354 MI.getOperand(1).getImm()); 355 break; 356 357 case R600::MOV_IMM_GLOBAL_ADDR: { 358 //TODO: Perhaps combine this instruction with the next if possible 359 auto MIB = TII->buildDefaultInstruction( 360 *BB, MI, R600::MOV, MI.getOperand(0).getReg(), R600::ALU_LITERAL_X); 361 int Idx = TII->getOperandIdx(*MIB, R600::OpName::literal); 362 //TODO: Ugh this is rather ugly 363 MIB->getOperand(Idx) = MI.getOperand(1); 364 break; 365 } 366 367 case R600::CONST_COPY: { 368 MachineInstr *NewMI = TII->buildDefaultInstruction( 369 *BB, MI, R600::MOV, MI.getOperand(0).getReg(), R600::ALU_CONST); 370 TII->setImmOperand(*NewMI, R600::OpName::src0_sel, 371 MI.getOperand(1).getImm()); 372 break; 373 } 374 375 case R600::RAT_WRITE_CACHELESS_32_eg: 376 case R600::RAT_WRITE_CACHELESS_64_eg: 377 case R600::RAT_WRITE_CACHELESS_128_eg: 378 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(MI.getOpcode())) 379 .add(MI.getOperand(0)) 380 .add(MI.getOperand(1)) 381 .addImm(isEOP(I)); // Set End of program bit 382 break; 383 384 case R600::RAT_STORE_TYPED_eg: 385 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(MI.getOpcode())) 386 .add(MI.getOperand(0)) 387 .add(MI.getOperand(1)) 388 .add(MI.getOperand(2)) 389 .addImm(isEOP(I)); // Set End of program bit 390 break; 391 392 case R600::BRANCH: 393 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::JUMP)) 394 .add(MI.getOperand(0)); 395 break; 396 397 case R600::BRANCH_COND_f32: { 398 MachineInstr *NewMI = 399 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::PRED_X), 400 R600::PREDICATE_BIT) 401 .add(MI.getOperand(1)) 402 .addImm(R600::PRED_SETNE) 403 .addImm(0); // Flags 404 TII->addFlag(*NewMI, 0, MO_FLAG_PUSH); 405 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::JUMP_COND)) 406 .add(MI.getOperand(0)) 407 .addReg(R600::PREDICATE_BIT, RegState::Kill); 408 break; 409 } 410 411 case R600::BRANCH_COND_i32: { 412 MachineInstr *NewMI = 413 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::PRED_X), 414 R600::PREDICATE_BIT) 415 .add(MI.getOperand(1)) 416 .addImm(R600::PRED_SETNE_INT) 417 .addImm(0); // Flags 418 TII->addFlag(*NewMI, 0, MO_FLAG_PUSH); 419 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(R600::JUMP_COND)) 420 .add(MI.getOperand(0)) 421 .addReg(R600::PREDICATE_BIT, RegState::Kill); 422 break; 423 } 424 425 case R600::EG_ExportSwz: 426 case R600::R600_ExportSwz: { 427 // Instruction is left unmodified if its not the last one of its type 428 bool isLastInstructionOfItsType = true; 429 unsigned InstExportType = MI.getOperand(1).getImm(); 430 for (MachineBasicBlock::iterator NextExportInst = std::next(I), 431 EndBlock = BB->end(); NextExportInst != EndBlock; 432 NextExportInst = std::next(NextExportInst)) { 433 if (NextExportInst->getOpcode() == R600::EG_ExportSwz || 434 NextExportInst->getOpcode() == R600::R600_ExportSwz) { 435 unsigned CurrentInstExportType = NextExportInst->getOperand(1) 436 .getImm(); 437 if (CurrentInstExportType == InstExportType) { 438 isLastInstructionOfItsType = false; 439 break; 440 } 441 } 442 } 443 bool EOP = isEOP(I); 444 if (!EOP && !isLastInstructionOfItsType) 445 return BB; 446 unsigned CfInst = (MI.getOpcode() == R600::EG_ExportSwz) ? 84 : 40; 447 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(MI.getOpcode())) 448 .add(MI.getOperand(0)) 449 .add(MI.getOperand(1)) 450 .add(MI.getOperand(2)) 451 .add(MI.getOperand(3)) 452 .add(MI.getOperand(4)) 453 .add(MI.getOperand(5)) 454 .add(MI.getOperand(6)) 455 .addImm(CfInst) 456 .addImm(EOP); 457 break; 458 } 459 case R600::RETURN: { 460 return BB; 461 } 462 } 463 464 MI.eraseFromParent(); 465 return BB; 466 } 467 468 //===----------------------------------------------------------------------===// 469 // Custom DAG Lowering Operations 470 //===----------------------------------------------------------------------===// 471 472 SDValue R600TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 473 MachineFunction &MF = DAG.getMachineFunction(); 474 R600MachineFunctionInfo *MFI = MF.getInfo<R600MachineFunctionInfo>(); 475 switch (Op.getOpcode()) { 476 default: return AMDGPUTargetLowering::LowerOperation(Op, DAG); 477 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG); 478 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG); 479 case ISD::SHL_PARTS: return LowerSHLParts(Op, DAG); 480 case ISD::SRA_PARTS: 481 case ISD::SRL_PARTS: return LowerSRXParts(Op, DAG); 482 case ISD::UADDO: return LowerUADDSUBO(Op, DAG, ISD::ADD, AMDGPUISD::CARRY); 483 case ISD::USUBO: return LowerUADDSUBO(Op, DAG, ISD::SUB, AMDGPUISD::BORROW); 484 case ISD::FCOS: 485 case ISD::FSIN: return LowerTrig(Op, DAG); 486 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); 487 case ISD::STORE: return LowerSTORE(Op, DAG); 488 case ISD::LOAD: { 489 SDValue Result = LowerLOAD(Op, DAG); 490 assert((!Result.getNode() || 491 Result.getNode()->getNumValues() == 2) && 492 "Load should return a value and a chain"); 493 return Result; 494 } 495 496 case ISD::BRCOND: return LowerBRCOND(Op, DAG); 497 case ISD::GlobalAddress: return LowerGlobalAddress(MFI, Op, DAG); 498 case ISD::FrameIndex: return lowerFrameIndex(Op, DAG); 499 case ISD::INTRINSIC_VOID: { 500 SDValue Chain = Op.getOperand(0); 501 unsigned IntrinsicID = 502 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); 503 switch (IntrinsicID) { 504 case Intrinsic::r600_store_swizzle: { 505 SDLoc DL(Op); 506 const SDValue Args[8] = { 507 Chain, 508 Op.getOperand(2), // Export Value 509 Op.getOperand(3), // ArrayBase 510 Op.getOperand(4), // Type 511 DAG.getConstant(0, DL, MVT::i32), // SWZ_X 512 DAG.getConstant(1, DL, MVT::i32), // SWZ_Y 513 DAG.getConstant(2, DL, MVT::i32), // SWZ_Z 514 DAG.getConstant(3, DL, MVT::i32) // SWZ_W 515 }; 516 return DAG.getNode(AMDGPUISD::R600_EXPORT, DL, Op.getValueType(), Args); 517 } 518 519 // default for switch(IntrinsicID) 520 default: break; 521 } 522 // break out of case ISD::INTRINSIC_VOID in switch(Op.getOpcode()) 523 break; 524 } 525 case ISD::INTRINSIC_WO_CHAIN: { 526 unsigned IntrinsicID = 527 cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 528 EVT VT = Op.getValueType(); 529 SDLoc DL(Op); 530 switch (IntrinsicID) { 531 case Intrinsic::r600_tex: 532 case Intrinsic::r600_texc: { 533 unsigned TextureOp; 534 switch (IntrinsicID) { 535 case Intrinsic::r600_tex: 536 TextureOp = 0; 537 break; 538 case Intrinsic::r600_texc: 539 TextureOp = 1; 540 break; 541 default: 542 llvm_unreachable("unhandled texture operation"); 543 } 544 545 SDValue TexArgs[19] = { 546 DAG.getConstant(TextureOp, DL, MVT::i32), 547 Op.getOperand(1), 548 DAG.getConstant(0, DL, MVT::i32), 549 DAG.getConstant(1, DL, MVT::i32), 550 DAG.getConstant(2, DL, MVT::i32), 551 DAG.getConstant(3, DL, MVT::i32), 552 Op.getOperand(2), 553 Op.getOperand(3), 554 Op.getOperand(4), 555 DAG.getConstant(0, DL, MVT::i32), 556 DAG.getConstant(1, DL, MVT::i32), 557 DAG.getConstant(2, DL, MVT::i32), 558 DAG.getConstant(3, DL, MVT::i32), 559 Op.getOperand(5), 560 Op.getOperand(6), 561 Op.getOperand(7), 562 Op.getOperand(8), 563 Op.getOperand(9), 564 Op.getOperand(10) 565 }; 566 return DAG.getNode(AMDGPUISD::TEXTURE_FETCH, DL, MVT::v4f32, TexArgs); 567 } 568 case Intrinsic::r600_dot4: { 569 SDValue Args[8] = { 570 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1), 571 DAG.getConstant(0, DL, MVT::i32)), 572 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2), 573 DAG.getConstant(0, DL, MVT::i32)), 574 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1), 575 DAG.getConstant(1, DL, MVT::i32)), 576 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2), 577 DAG.getConstant(1, DL, MVT::i32)), 578 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1), 579 DAG.getConstant(2, DL, MVT::i32)), 580 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2), 581 DAG.getConstant(2, DL, MVT::i32)), 582 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(1), 583 DAG.getConstant(3, DL, MVT::i32)), 584 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, Op.getOperand(2), 585 DAG.getConstant(3, DL, MVT::i32)) 586 }; 587 return DAG.getNode(AMDGPUISD::DOT4, DL, MVT::f32, Args); 588 } 589 590 case Intrinsic::r600_implicitarg_ptr: { 591 MVT PtrVT = getPointerTy(DAG.getDataLayout(), AMDGPUAS::PARAM_I_ADDRESS); 592 uint32_t ByteOffset = getImplicitParameterOffset(MF, FIRST_IMPLICIT); 593 return DAG.getConstant(ByteOffset, DL, PtrVT); 594 } 595 case Intrinsic::r600_read_ngroups_x: 596 return LowerImplicitParameter(DAG, VT, DL, 0); 597 case Intrinsic::r600_read_ngroups_y: 598 return LowerImplicitParameter(DAG, VT, DL, 1); 599 case Intrinsic::r600_read_ngroups_z: 600 return LowerImplicitParameter(DAG, VT, DL, 2); 601 case Intrinsic::r600_read_global_size_x: 602 return LowerImplicitParameter(DAG, VT, DL, 3); 603 case Intrinsic::r600_read_global_size_y: 604 return LowerImplicitParameter(DAG, VT, DL, 4); 605 case Intrinsic::r600_read_global_size_z: 606 return LowerImplicitParameter(DAG, VT, DL, 5); 607 case Intrinsic::r600_read_local_size_x: 608 return LowerImplicitParameter(DAG, VT, DL, 6); 609 case Intrinsic::r600_read_local_size_y: 610 return LowerImplicitParameter(DAG, VT, DL, 7); 611 case Intrinsic::r600_read_local_size_z: 612 return LowerImplicitParameter(DAG, VT, DL, 8); 613 614 case Intrinsic::r600_read_tgid_x: 615 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass, 616 R600::T1_X, VT); 617 case Intrinsic::r600_read_tgid_y: 618 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass, 619 R600::T1_Y, VT); 620 case Intrinsic::r600_read_tgid_z: 621 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass, 622 R600::T1_Z, VT); 623 case Intrinsic::r600_read_tidig_x: 624 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass, 625 R600::T0_X, VT); 626 case Intrinsic::r600_read_tidig_y: 627 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass, 628 R600::T0_Y, VT); 629 case Intrinsic::r600_read_tidig_z: 630 return CreateLiveInRegisterRaw(DAG, &R600::R600_TReg32RegClass, 631 R600::T0_Z, VT); 632 633 case Intrinsic::r600_recipsqrt_ieee: 634 return DAG.getNode(AMDGPUISD::RSQ, DL, VT, Op.getOperand(1)); 635 636 case Intrinsic::r600_recipsqrt_clamped: 637 return DAG.getNode(AMDGPUISD::RSQ_CLAMP, DL, VT, Op.getOperand(1)); 638 default: 639 return Op; 640 } 641 642 // break out of case ISD::INTRINSIC_WO_CHAIN in switch(Op.getOpcode()) 643 break; 644 } 645 } // end switch(Op.getOpcode()) 646 return SDValue(); 647 } 648 649 void R600TargetLowering::ReplaceNodeResults(SDNode *N, 650 SmallVectorImpl<SDValue> &Results, 651 SelectionDAG &DAG) const { 652 switch (N->getOpcode()) { 653 default: 654 AMDGPUTargetLowering::ReplaceNodeResults(N, Results, DAG); 655 return; 656 case ISD::FP_TO_UINT: 657 if (N->getValueType(0) == MVT::i1) { 658 Results.push_back(lowerFP_TO_UINT(N->getOperand(0), DAG)); 659 return; 660 } 661 // Since we don't care about out of bounds values we can use FP_TO_SINT for 662 // uints too. The DAGLegalizer code for uint considers some extra cases 663 // which are not necessary here. 664 LLVM_FALLTHROUGH; 665 case ISD::FP_TO_SINT: { 666 if (N->getValueType(0) == MVT::i1) { 667 Results.push_back(lowerFP_TO_SINT(N->getOperand(0), DAG)); 668 return; 669 } 670 671 SDValue Result; 672 if (expandFP_TO_SINT(N, Result, DAG)) 673 Results.push_back(Result); 674 return; 675 } 676 case ISD::SDIVREM: { 677 SDValue Op = SDValue(N, 1); 678 SDValue RES = LowerSDIVREM(Op, DAG); 679 Results.push_back(RES); 680 Results.push_back(RES.getValue(1)); 681 break; 682 } 683 case ISD::UDIVREM: { 684 SDValue Op = SDValue(N, 0); 685 LowerUDIVREM64(Op, DAG, Results); 686 break; 687 } 688 } 689 } 690 691 SDValue R600TargetLowering::vectorToVerticalVector(SelectionDAG &DAG, 692 SDValue Vector) const { 693 SDLoc DL(Vector); 694 EVT VecVT = Vector.getValueType(); 695 EVT EltVT = VecVT.getVectorElementType(); 696 SmallVector<SDValue, 8> Args; 697 698 for (unsigned i = 0, e = VecVT.getVectorNumElements(); i != e; ++i) { 699 Args.push_back(DAG.getNode( 700 ISD::EXTRACT_VECTOR_ELT, DL, EltVT, Vector, 701 DAG.getConstant(i, DL, getVectorIdxTy(DAG.getDataLayout())))); 702 } 703 704 return DAG.getNode(AMDGPUISD::BUILD_VERTICAL_VECTOR, DL, VecVT, Args); 705 } 706 707 SDValue R600TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, 708 SelectionDAG &DAG) const { 709 SDLoc DL(Op); 710 SDValue Vector = Op.getOperand(0); 711 SDValue Index = Op.getOperand(1); 712 713 if (isa<ConstantSDNode>(Index) || 714 Vector.getOpcode() == AMDGPUISD::BUILD_VERTICAL_VECTOR) 715 return Op; 716 717 Vector = vectorToVerticalVector(DAG, Vector); 718 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, Op.getValueType(), 719 Vector, Index); 720 } 721 722 SDValue R600TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, 723 SelectionDAG &DAG) const { 724 SDLoc DL(Op); 725 SDValue Vector = Op.getOperand(0); 726 SDValue Value = Op.getOperand(1); 727 SDValue Index = Op.getOperand(2); 728 729 if (isa<ConstantSDNode>(Index) || 730 Vector.getOpcode() == AMDGPUISD::BUILD_VERTICAL_VECTOR) 731 return Op; 732 733 Vector = vectorToVerticalVector(DAG, Vector); 734 SDValue Insert = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, Op.getValueType(), 735 Vector, Value, Index); 736 return vectorToVerticalVector(DAG, Insert); 737 } 738 739 SDValue R600TargetLowering::LowerGlobalAddress(AMDGPUMachineFunction *MFI, 740 SDValue Op, 741 SelectionDAG &DAG) const { 742 GlobalAddressSDNode *GSD = cast<GlobalAddressSDNode>(Op); 743 if (GSD->getAddressSpace() != AMDGPUAS::CONSTANT_ADDRESS) 744 return AMDGPUTargetLowering::LowerGlobalAddress(MFI, Op, DAG); 745 746 const DataLayout &DL = DAG.getDataLayout(); 747 const GlobalValue *GV = GSD->getGlobal(); 748 MVT ConstPtrVT = getPointerTy(DL, AMDGPUAS::CONSTANT_ADDRESS); 749 750 SDValue GA = DAG.getTargetGlobalAddress(GV, SDLoc(GSD), ConstPtrVT); 751 return DAG.getNode(AMDGPUISD::CONST_DATA_PTR, SDLoc(GSD), ConstPtrVT, GA); 752 } 753 754 SDValue R600TargetLowering::LowerTrig(SDValue Op, SelectionDAG &DAG) const { 755 // On hw >= R700, COS/SIN input must be between -1. and 1. 756 // Thus we lower them to TRIG ( FRACT ( x / 2Pi + 0.5) - 0.5) 757 EVT VT = Op.getValueType(); 758 SDValue Arg = Op.getOperand(0); 759 SDLoc DL(Op); 760 761 // TODO: Should this propagate fast-math-flags? 762 SDValue FractPart = DAG.getNode(AMDGPUISD::FRACT, DL, VT, 763 DAG.getNode(ISD::FADD, DL, VT, 764 DAG.getNode(ISD::FMUL, DL, VT, Arg, 765 DAG.getConstantFP(0.15915494309, DL, MVT::f32)), 766 DAG.getConstantFP(0.5, DL, MVT::f32))); 767 unsigned TrigNode; 768 switch (Op.getOpcode()) { 769 case ISD::FCOS: 770 TrigNode = AMDGPUISD::COS_HW; 771 break; 772 case ISD::FSIN: 773 TrigNode = AMDGPUISD::SIN_HW; 774 break; 775 default: 776 llvm_unreachable("Wrong trig opcode"); 777 } 778 SDValue TrigVal = DAG.getNode(TrigNode, DL, VT, 779 DAG.getNode(ISD::FADD, DL, VT, FractPart, 780 DAG.getConstantFP(-0.5, DL, MVT::f32))); 781 if (Gen >= AMDGPUSubtarget::R700) 782 return TrigVal; 783 // On R600 hw, COS/SIN input must be between -Pi and Pi. 784 return DAG.getNode(ISD::FMUL, DL, VT, TrigVal, 785 DAG.getConstantFP(3.14159265359, DL, MVT::f32)); 786 } 787 788 SDValue R600TargetLowering::LowerSHLParts(SDValue Op, SelectionDAG &DAG) const { 789 SDLoc DL(Op); 790 EVT VT = Op.getValueType(); 791 792 SDValue Lo = Op.getOperand(0); 793 SDValue Hi = Op.getOperand(1); 794 SDValue Shift = Op.getOperand(2); 795 SDValue Zero = DAG.getConstant(0, DL, VT); 796 SDValue One = DAG.getConstant(1, DL, VT); 797 798 SDValue Width = DAG.getConstant(VT.getSizeInBits(), DL, VT); 799 SDValue Width1 = DAG.getConstant(VT.getSizeInBits() - 1, DL, VT); 800 SDValue BigShift = DAG.getNode(ISD::SUB, DL, VT, Shift, Width); 801 SDValue CompShift = DAG.getNode(ISD::SUB, DL, VT, Width1, Shift); 802 803 // The dance around Width1 is necessary for 0 special case. 804 // Without it the CompShift might be 32, producing incorrect results in 805 // Overflow. So we do the shift in two steps, the alternative is to 806 // add a conditional to filter the special case. 807 808 SDValue Overflow = DAG.getNode(ISD::SRL, DL, VT, Lo, CompShift); 809 Overflow = DAG.getNode(ISD::SRL, DL, VT, Overflow, One); 810 811 SDValue HiSmall = DAG.getNode(ISD::SHL, DL, VT, Hi, Shift); 812 HiSmall = DAG.getNode(ISD::OR, DL, VT, HiSmall, Overflow); 813 SDValue LoSmall = DAG.getNode(ISD::SHL, DL, VT, Lo, Shift); 814 815 SDValue HiBig = DAG.getNode(ISD::SHL, DL, VT, Lo, BigShift); 816 SDValue LoBig = Zero; 817 818 Hi = DAG.getSelectCC(DL, Shift, Width, HiSmall, HiBig, ISD::SETULT); 819 Lo = DAG.getSelectCC(DL, Shift, Width, LoSmall, LoBig, ISD::SETULT); 820 821 return DAG.getNode(ISD::MERGE_VALUES, DL, DAG.getVTList(VT,VT), Lo, Hi); 822 } 823 824 SDValue R600TargetLowering::LowerSRXParts(SDValue Op, SelectionDAG &DAG) const { 825 SDLoc DL(Op); 826 EVT VT = Op.getValueType(); 827 828 SDValue Lo = Op.getOperand(0); 829 SDValue Hi = Op.getOperand(1); 830 SDValue Shift = Op.getOperand(2); 831 SDValue Zero = DAG.getConstant(0, DL, VT); 832 SDValue One = DAG.getConstant(1, DL, VT); 833 834 const bool SRA = Op.getOpcode() == ISD::SRA_PARTS; 835 836 SDValue Width = DAG.getConstant(VT.getSizeInBits(), DL, VT); 837 SDValue Width1 = DAG.getConstant(VT.getSizeInBits() - 1, DL, VT); 838 SDValue BigShift = DAG.getNode(ISD::SUB, DL, VT, Shift, Width); 839 SDValue CompShift = DAG.getNode(ISD::SUB, DL, VT, Width1, Shift); 840 841 // The dance around Width1 is necessary for 0 special case. 842 // Without it the CompShift might be 32, producing incorrect results in 843 // Overflow. So we do the shift in two steps, the alternative is to 844 // add a conditional to filter the special case. 845 846 SDValue Overflow = DAG.getNode(ISD::SHL, DL, VT, Hi, CompShift); 847 Overflow = DAG.getNode(ISD::SHL, DL, VT, Overflow, One); 848 849 SDValue HiSmall = DAG.getNode(SRA ? ISD::SRA : ISD::SRL, DL, VT, Hi, Shift); 850 SDValue LoSmall = DAG.getNode(ISD::SRL, DL, VT, Lo, Shift); 851 LoSmall = DAG.getNode(ISD::OR, DL, VT, LoSmall, Overflow); 852 853 SDValue LoBig = DAG.getNode(SRA ? ISD::SRA : ISD::SRL, DL, VT, Hi, BigShift); 854 SDValue HiBig = SRA ? DAG.getNode(ISD::SRA, DL, VT, Hi, Width1) : Zero; 855 856 Hi = DAG.getSelectCC(DL, Shift, Width, HiSmall, HiBig, ISD::SETULT); 857 Lo = DAG.getSelectCC(DL, Shift, Width, LoSmall, LoBig, ISD::SETULT); 858 859 return DAG.getNode(ISD::MERGE_VALUES, DL, DAG.getVTList(VT,VT), Lo, Hi); 860 } 861 862 SDValue R600TargetLowering::LowerUADDSUBO(SDValue Op, SelectionDAG &DAG, 863 unsigned mainop, unsigned ovf) const { 864 SDLoc DL(Op); 865 EVT VT = Op.getValueType(); 866 867 SDValue Lo = Op.getOperand(0); 868 SDValue Hi = Op.getOperand(1); 869 870 SDValue OVF = DAG.getNode(ovf, DL, VT, Lo, Hi); 871 // Extend sign. 872 OVF = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, OVF, 873 DAG.getValueType(MVT::i1)); 874 875 SDValue Res = DAG.getNode(mainop, DL, VT, Lo, Hi); 876 877 return DAG.getNode(ISD::MERGE_VALUES, DL, DAG.getVTList(VT, VT), Res, OVF); 878 } 879 880 SDValue R600TargetLowering::lowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) const { 881 SDLoc DL(Op); 882 return DAG.getNode( 883 ISD::SETCC, 884 DL, 885 MVT::i1, 886 Op, DAG.getConstantFP(1.0f, DL, MVT::f32), 887 DAG.getCondCode(ISD::SETEQ)); 888 } 889 890 SDValue R600TargetLowering::lowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) const { 891 SDLoc DL(Op); 892 return DAG.getNode( 893 ISD::SETCC, 894 DL, 895 MVT::i1, 896 Op, DAG.getConstantFP(-1.0f, DL, MVT::f32), 897 DAG.getCondCode(ISD::SETEQ)); 898 } 899 900 SDValue R600TargetLowering::LowerImplicitParameter(SelectionDAG &DAG, EVT VT, 901 const SDLoc &DL, 902 unsigned DwordOffset) const { 903 unsigned ByteOffset = DwordOffset * 4; 904 PointerType * PtrType = PointerType::get(VT.getTypeForEVT(*DAG.getContext()), 905 AMDGPUAS::PARAM_I_ADDRESS); 906 907 // We shouldn't be using an offset wider than 16-bits for implicit parameters. 908 assert(isInt<16>(ByteOffset)); 909 910 return DAG.getLoad(VT, DL, DAG.getEntryNode(), 911 DAG.getConstant(ByteOffset, DL, MVT::i32), // PTR 912 MachinePointerInfo(ConstantPointerNull::get(PtrType))); 913 } 914 915 bool R600TargetLowering::isZero(SDValue Op) const { 916 if(ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op)) { 917 return Cst->isNullValue(); 918 } else if(ConstantFPSDNode *CstFP = dyn_cast<ConstantFPSDNode>(Op)){ 919 return CstFP->isZero(); 920 } else { 921 return false; 922 } 923 } 924 925 bool R600TargetLowering::isHWTrueValue(SDValue Op) const { 926 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) { 927 return CFP->isExactlyValue(1.0); 928 } 929 return isAllOnesConstant(Op); 930 } 931 932 bool R600TargetLowering::isHWFalseValue(SDValue Op) const { 933 if (ConstantFPSDNode * CFP = dyn_cast<ConstantFPSDNode>(Op)) { 934 return CFP->getValueAPF().isZero(); 935 } 936 return isNullConstant(Op); 937 } 938 939 SDValue R600TargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const { 940 SDLoc DL(Op); 941 EVT VT = Op.getValueType(); 942 943 SDValue LHS = Op.getOperand(0); 944 SDValue RHS = Op.getOperand(1); 945 SDValue True = Op.getOperand(2); 946 SDValue False = Op.getOperand(3); 947 SDValue CC = Op.getOperand(4); 948 SDValue Temp; 949 950 if (VT == MVT::f32) { 951 DAGCombinerInfo DCI(DAG, AfterLegalizeVectorOps, true, nullptr); 952 SDValue MinMax = combineFMinMaxLegacy(DL, VT, LHS, RHS, True, False, CC, DCI); 953 if (MinMax) 954 return MinMax; 955 } 956 957 // LHS and RHS are guaranteed to be the same value type 958 EVT CompareVT = LHS.getValueType(); 959 960 // Check if we can lower this to a native operation. 961 962 // Try to lower to a SET* instruction: 963 // 964 // SET* can match the following patterns: 965 // 966 // select_cc f32, f32, -1, 0, cc_supported 967 // select_cc f32, f32, 1.0f, 0.0f, cc_supported 968 // select_cc i32, i32, -1, 0, cc_supported 969 // 970 971 // Move hardware True/False values to the correct operand. 972 ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get(); 973 ISD::CondCode InverseCC = 974 ISD::getSetCCInverse(CCOpcode, CompareVT == MVT::i32); 975 if (isHWTrueValue(False) && isHWFalseValue(True)) { 976 if (isCondCodeLegal(InverseCC, CompareVT.getSimpleVT())) { 977 std::swap(False, True); 978 CC = DAG.getCondCode(InverseCC); 979 } else { 980 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InverseCC); 981 if (isCondCodeLegal(SwapInvCC, CompareVT.getSimpleVT())) { 982 std::swap(False, True); 983 std::swap(LHS, RHS); 984 CC = DAG.getCondCode(SwapInvCC); 985 } 986 } 987 } 988 989 if (isHWTrueValue(True) && isHWFalseValue(False) && 990 (CompareVT == VT || VT == MVT::i32)) { 991 // This can be matched by a SET* instruction. 992 return DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, True, False, CC); 993 } 994 995 // Try to lower to a CND* instruction: 996 // 997 // CND* can match the following patterns: 998 // 999 // select_cc f32, 0.0, f32, f32, cc_supported 1000 // select_cc f32, 0.0, i32, i32, cc_supported 1001 // select_cc i32, 0, f32, f32, cc_supported 1002 // select_cc i32, 0, i32, i32, cc_supported 1003 // 1004 1005 // Try to move the zero value to the RHS 1006 if (isZero(LHS)) { 1007 ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get(); 1008 // Try swapping the operands 1009 ISD::CondCode CCSwapped = ISD::getSetCCSwappedOperands(CCOpcode); 1010 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) { 1011 std::swap(LHS, RHS); 1012 CC = DAG.getCondCode(CCSwapped); 1013 } else { 1014 // Try inverting the conditon and then swapping the operands 1015 ISD::CondCode CCInv = ISD::getSetCCInverse(CCOpcode, CompareVT.isInteger()); 1016 CCSwapped = ISD::getSetCCSwappedOperands(CCInv); 1017 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) { 1018 std::swap(True, False); 1019 std::swap(LHS, RHS); 1020 CC = DAG.getCondCode(CCSwapped); 1021 } 1022 } 1023 } 1024 if (isZero(RHS)) { 1025 SDValue Cond = LHS; 1026 SDValue Zero = RHS; 1027 ISD::CondCode CCOpcode = cast<CondCodeSDNode>(CC)->get(); 1028 if (CompareVT != VT) { 1029 // Bitcast True / False to the correct types. This will end up being 1030 // a nop, but it allows us to define only a single pattern in the 1031 // .TD files for each CND* instruction rather than having to have 1032 // one pattern for integer True/False and one for fp True/False 1033 True = DAG.getNode(ISD::BITCAST, DL, CompareVT, True); 1034 False = DAG.getNode(ISD::BITCAST, DL, CompareVT, False); 1035 } 1036 1037 switch (CCOpcode) { 1038 case ISD::SETONE: 1039 case ISD::SETUNE: 1040 case ISD::SETNE: 1041 CCOpcode = ISD::getSetCCInverse(CCOpcode, CompareVT == MVT::i32); 1042 Temp = True; 1043 True = False; 1044 False = Temp; 1045 break; 1046 default: 1047 break; 1048 } 1049 SDValue SelectNode = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, 1050 Cond, Zero, 1051 True, False, 1052 DAG.getCondCode(CCOpcode)); 1053 return DAG.getNode(ISD::BITCAST, DL, VT, SelectNode); 1054 } 1055 1056 // If we make it this for it means we have no native instructions to handle 1057 // this SELECT_CC, so we must lower it. 1058 SDValue HWTrue, HWFalse; 1059 1060 if (CompareVT == MVT::f32) { 1061 HWTrue = DAG.getConstantFP(1.0f, DL, CompareVT); 1062 HWFalse = DAG.getConstantFP(0.0f, DL, CompareVT); 1063 } else if (CompareVT == MVT::i32) { 1064 HWTrue = DAG.getConstant(-1, DL, CompareVT); 1065 HWFalse = DAG.getConstant(0, DL, CompareVT); 1066 } 1067 else { 1068 llvm_unreachable("Unhandled value type in LowerSELECT_CC"); 1069 } 1070 1071 // Lower this unsupported SELECT_CC into a combination of two supported 1072 // SELECT_CC operations. 1073 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, LHS, RHS, HWTrue, HWFalse, CC); 1074 1075 return DAG.getNode(ISD::SELECT_CC, DL, VT, 1076 Cond, HWFalse, 1077 True, False, 1078 DAG.getCondCode(ISD::SETNE)); 1079 } 1080 1081 /// LLVM generates byte-addressed pointers. For indirect addressing, we need to 1082 /// convert these pointers to a register index. Each register holds 1083 /// 16 bytes, (4 x 32bit sub-register), but we need to take into account the 1084 /// \p StackWidth, which tells us how many of the 4 sub-registrers will be used 1085 /// for indirect addressing. 1086 SDValue R600TargetLowering::stackPtrToRegIndex(SDValue Ptr, 1087 unsigned StackWidth, 1088 SelectionDAG &DAG) const { 1089 unsigned SRLPad; 1090 switch(StackWidth) { 1091 case 1: 1092 SRLPad = 2; 1093 break; 1094 case 2: 1095 SRLPad = 3; 1096 break; 1097 case 4: 1098 SRLPad = 4; 1099 break; 1100 default: llvm_unreachable("Invalid stack width"); 1101 } 1102 1103 SDLoc DL(Ptr); 1104 return DAG.getNode(ISD::SRL, DL, Ptr.getValueType(), Ptr, 1105 DAG.getConstant(SRLPad, DL, MVT::i32)); 1106 } 1107 1108 void R600TargetLowering::getStackAddress(unsigned StackWidth, 1109 unsigned ElemIdx, 1110 unsigned &Channel, 1111 unsigned &PtrIncr) const { 1112 switch (StackWidth) { 1113 default: 1114 case 1: 1115 Channel = 0; 1116 if (ElemIdx > 0) { 1117 PtrIncr = 1; 1118 } else { 1119 PtrIncr = 0; 1120 } 1121 break; 1122 case 2: 1123 Channel = ElemIdx % 2; 1124 if (ElemIdx == 2) { 1125 PtrIncr = 1; 1126 } else { 1127 PtrIncr = 0; 1128 } 1129 break; 1130 case 4: 1131 Channel = ElemIdx; 1132 PtrIncr = 0; 1133 break; 1134 } 1135 } 1136 1137 SDValue R600TargetLowering::lowerPrivateTruncStore(StoreSDNode *Store, 1138 SelectionDAG &DAG) const { 1139 SDLoc DL(Store); 1140 //TODO: Who creates the i8 stores? 1141 assert(Store->isTruncatingStore() 1142 || Store->getValue().getValueType() == MVT::i8); 1143 assert(Store->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS); 1144 1145 SDValue Mask; 1146 if (Store->getMemoryVT() == MVT::i8) { 1147 assert(Store->getAlignment() >= 1); 1148 Mask = DAG.getConstant(0xff, DL, MVT::i32); 1149 } else if (Store->getMemoryVT() == MVT::i16) { 1150 assert(Store->getAlignment() >= 2); 1151 Mask = DAG.getConstant(0xffff, DL, MVT::i32); 1152 } else { 1153 llvm_unreachable("Unsupported private trunc store"); 1154 } 1155 1156 SDValue OldChain = Store->getChain(); 1157 bool VectorTrunc = (OldChain.getOpcode() == AMDGPUISD::DUMMY_CHAIN); 1158 // Skip dummy 1159 SDValue Chain = VectorTrunc ? OldChain->getOperand(0) : OldChain; 1160 SDValue BasePtr = Store->getBasePtr(); 1161 SDValue Offset = Store->getOffset(); 1162 EVT MemVT = Store->getMemoryVT(); 1163 1164 SDValue LoadPtr = BasePtr; 1165 if (!Offset.isUndef()) { 1166 LoadPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, Offset); 1167 } 1168 1169 // Get dword location 1170 // TODO: this should be eliminated by the future SHR ptr, 2 1171 SDValue Ptr = DAG.getNode(ISD::AND, DL, MVT::i32, LoadPtr, 1172 DAG.getConstant(0xfffffffc, DL, MVT::i32)); 1173 1174 // Load dword 1175 // TODO: can we be smarter about machine pointer info? 1176 MachinePointerInfo PtrInfo(UndefValue::get( 1177 Type::getInt32PtrTy(*DAG.getContext(), AMDGPUAS::PRIVATE_ADDRESS))); 1178 SDValue Dst = DAG.getLoad(MVT::i32, DL, Chain, Ptr, PtrInfo); 1179 1180 Chain = Dst.getValue(1); 1181 1182 // Get offset in dword 1183 SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32, LoadPtr, 1184 DAG.getConstant(0x3, DL, MVT::i32)); 1185 1186 // Convert byte offset to bit shift 1187 SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx, 1188 DAG.getConstant(3, DL, MVT::i32)); 1189 1190 // TODO: Contrary to the name of the functiom, 1191 // it also handles sub i32 non-truncating stores (like i1) 1192 SDValue SExtValue = DAG.getNode(ISD::SIGN_EXTEND, DL, MVT::i32, 1193 Store->getValue()); 1194 1195 // Mask the value to the right type 1196 SDValue MaskedValue = DAG.getZeroExtendInReg(SExtValue, DL, MemVT); 1197 1198 // Shift the value in place 1199 SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, MVT::i32, 1200 MaskedValue, ShiftAmt); 1201 1202 // Shift the mask in place 1203 SDValue DstMask = DAG.getNode(ISD::SHL, DL, MVT::i32, Mask, ShiftAmt); 1204 1205 // Invert the mask. NOTE: if we had native ROL instructions we could 1206 // use inverted mask 1207 DstMask = DAG.getNOT(DL, DstMask, MVT::i32); 1208 1209 // Cleanup the target bits 1210 Dst = DAG.getNode(ISD::AND, DL, MVT::i32, Dst, DstMask); 1211 1212 // Add the new bits 1213 SDValue Value = DAG.getNode(ISD::OR, DL, MVT::i32, Dst, ShiftedValue); 1214 1215 // Store dword 1216 // TODO: Can we be smarter about MachinePointerInfo? 1217 SDValue NewStore = DAG.getStore(Chain, DL, Value, Ptr, PtrInfo); 1218 1219 // If we are part of expanded vector, make our neighbors depend on this store 1220 if (VectorTrunc) { 1221 // Make all other vector elements depend on this store 1222 Chain = DAG.getNode(AMDGPUISD::DUMMY_CHAIN, DL, MVT::Other, NewStore); 1223 DAG.ReplaceAllUsesOfValueWith(OldChain, Chain); 1224 } 1225 return NewStore; 1226 } 1227 1228 SDValue R600TargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const { 1229 StoreSDNode *StoreNode = cast<StoreSDNode>(Op); 1230 unsigned AS = StoreNode->getAddressSpace(); 1231 1232 SDValue Chain = StoreNode->getChain(); 1233 SDValue Ptr = StoreNode->getBasePtr(); 1234 SDValue Value = StoreNode->getValue(); 1235 1236 EVT VT = Value.getValueType(); 1237 EVT MemVT = StoreNode->getMemoryVT(); 1238 EVT PtrVT = Ptr.getValueType(); 1239 1240 SDLoc DL(Op); 1241 1242 const bool TruncatingStore = StoreNode->isTruncatingStore(); 1243 1244 // Neither LOCAL nor PRIVATE can do vectors at the moment 1245 if ((AS == AMDGPUAS::LOCAL_ADDRESS || AS == AMDGPUAS::PRIVATE_ADDRESS || 1246 TruncatingStore) && 1247 VT.isVector()) { 1248 if ((AS == AMDGPUAS::PRIVATE_ADDRESS) && TruncatingStore) { 1249 // Add an extra level of chain to isolate this vector 1250 SDValue NewChain = DAG.getNode(AMDGPUISD::DUMMY_CHAIN, DL, MVT::Other, Chain); 1251 // TODO: can the chain be replaced without creating a new store? 1252 SDValue NewStore = DAG.getTruncStore( 1253 NewChain, DL, Value, Ptr, StoreNode->getPointerInfo(), 1254 MemVT, StoreNode->getAlignment(), 1255 StoreNode->getMemOperand()->getFlags(), StoreNode->getAAInfo()); 1256 StoreNode = cast<StoreSDNode>(NewStore); 1257 } 1258 1259 return scalarizeVectorStore(StoreNode, DAG); 1260 } 1261 1262 unsigned Align = StoreNode->getAlignment(); 1263 if (Align < MemVT.getStoreSize() && 1264 !allowsMisalignedMemoryAccesses(MemVT, AS, Align, nullptr)) { 1265 return expandUnalignedStore(StoreNode, DAG); 1266 } 1267 1268 SDValue DWordAddr = DAG.getNode(ISD::SRL, DL, PtrVT, Ptr, 1269 DAG.getConstant(2, DL, PtrVT)); 1270 1271 if (AS == AMDGPUAS::GLOBAL_ADDRESS) { 1272 // It is beneficial to create MSKOR here instead of combiner to avoid 1273 // artificial dependencies introduced by RMW 1274 if (TruncatingStore) { 1275 assert(VT.bitsLE(MVT::i32)); 1276 SDValue MaskConstant; 1277 if (MemVT == MVT::i8) { 1278 MaskConstant = DAG.getConstant(0xFF, DL, MVT::i32); 1279 } else { 1280 assert(MemVT == MVT::i16); 1281 assert(StoreNode->getAlignment() >= 2); 1282 MaskConstant = DAG.getConstant(0xFFFF, DL, MVT::i32); 1283 } 1284 1285 SDValue ByteIndex = DAG.getNode(ISD::AND, DL, PtrVT, Ptr, 1286 DAG.getConstant(0x00000003, DL, PtrVT)); 1287 SDValue BitShift = DAG.getNode(ISD::SHL, DL, VT, ByteIndex, 1288 DAG.getConstant(3, DL, VT)); 1289 1290 // Put the mask in correct place 1291 SDValue Mask = DAG.getNode(ISD::SHL, DL, VT, MaskConstant, BitShift); 1292 1293 // Put the value bits in correct place 1294 SDValue TruncValue = DAG.getNode(ISD::AND, DL, VT, Value, MaskConstant); 1295 SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, VT, TruncValue, BitShift); 1296 1297 // XXX: If we add a 64-bit ZW register class, then we could use a 2 x i32 1298 // vector instead. 1299 SDValue Src[4] = { 1300 ShiftedValue, 1301 DAG.getConstant(0, DL, MVT::i32), 1302 DAG.getConstant(0, DL, MVT::i32), 1303 Mask 1304 }; 1305 SDValue Input = DAG.getBuildVector(MVT::v4i32, DL, Src); 1306 SDValue Args[3] = { Chain, Input, DWordAddr }; 1307 return DAG.getMemIntrinsicNode(AMDGPUISD::STORE_MSKOR, DL, 1308 Op->getVTList(), Args, MemVT, 1309 StoreNode->getMemOperand()); 1310 } else if (Ptr->getOpcode() != AMDGPUISD::DWORDADDR && VT.bitsGE(MVT::i32)) { 1311 // Convert pointer from byte address to dword address. 1312 Ptr = DAG.getNode(AMDGPUISD::DWORDADDR, DL, PtrVT, DWordAddr); 1313 1314 if (StoreNode->isIndexed()) { 1315 llvm_unreachable("Indexed stores not supported yet"); 1316 } else { 1317 Chain = DAG.getStore(Chain, DL, Value, Ptr, StoreNode->getMemOperand()); 1318 } 1319 return Chain; 1320 } 1321 } 1322 1323 // GLOBAL_ADDRESS has been handled above, LOCAL_ADDRESS allows all sizes 1324 if (AS != AMDGPUAS::PRIVATE_ADDRESS) 1325 return SDValue(); 1326 1327 if (MemVT.bitsLT(MVT::i32)) 1328 return lowerPrivateTruncStore(StoreNode, DAG); 1329 1330 // Standard i32+ store, tag it with DWORDADDR to note that the address 1331 // has been shifted 1332 if (Ptr.getOpcode() != AMDGPUISD::DWORDADDR) { 1333 Ptr = DAG.getNode(AMDGPUISD::DWORDADDR, DL, PtrVT, DWordAddr); 1334 return DAG.getStore(Chain, DL, Value, Ptr, StoreNode->getMemOperand()); 1335 } 1336 1337 // Tagged i32+ stores will be matched by patterns 1338 return SDValue(); 1339 } 1340 1341 // return (512 + (kc_bank << 12) 1342 static int 1343 ConstantAddressBlock(unsigned AddressSpace) { 1344 switch (AddressSpace) { 1345 case AMDGPUAS::CONSTANT_BUFFER_0: 1346 return 512; 1347 case AMDGPUAS::CONSTANT_BUFFER_1: 1348 return 512 + 4096; 1349 case AMDGPUAS::CONSTANT_BUFFER_2: 1350 return 512 + 4096 * 2; 1351 case AMDGPUAS::CONSTANT_BUFFER_3: 1352 return 512 + 4096 * 3; 1353 case AMDGPUAS::CONSTANT_BUFFER_4: 1354 return 512 + 4096 * 4; 1355 case AMDGPUAS::CONSTANT_BUFFER_5: 1356 return 512 + 4096 * 5; 1357 case AMDGPUAS::CONSTANT_BUFFER_6: 1358 return 512 + 4096 * 6; 1359 case AMDGPUAS::CONSTANT_BUFFER_7: 1360 return 512 + 4096 * 7; 1361 case AMDGPUAS::CONSTANT_BUFFER_8: 1362 return 512 + 4096 * 8; 1363 case AMDGPUAS::CONSTANT_BUFFER_9: 1364 return 512 + 4096 * 9; 1365 case AMDGPUAS::CONSTANT_BUFFER_10: 1366 return 512 + 4096 * 10; 1367 case AMDGPUAS::CONSTANT_BUFFER_11: 1368 return 512 + 4096 * 11; 1369 case AMDGPUAS::CONSTANT_BUFFER_12: 1370 return 512 + 4096 * 12; 1371 case AMDGPUAS::CONSTANT_BUFFER_13: 1372 return 512 + 4096 * 13; 1373 case AMDGPUAS::CONSTANT_BUFFER_14: 1374 return 512 + 4096 * 14; 1375 case AMDGPUAS::CONSTANT_BUFFER_15: 1376 return 512 + 4096 * 15; 1377 default: 1378 return -1; 1379 } 1380 } 1381 1382 SDValue R600TargetLowering::lowerPrivateExtLoad(SDValue Op, 1383 SelectionDAG &DAG) const { 1384 SDLoc DL(Op); 1385 LoadSDNode *Load = cast<LoadSDNode>(Op); 1386 ISD::LoadExtType ExtType = Load->getExtensionType(); 1387 EVT MemVT = Load->getMemoryVT(); 1388 assert(Load->getAlignment() >= MemVT.getStoreSize()); 1389 1390 SDValue BasePtr = Load->getBasePtr(); 1391 SDValue Chain = Load->getChain(); 1392 SDValue Offset = Load->getOffset(); 1393 1394 SDValue LoadPtr = BasePtr; 1395 if (!Offset.isUndef()) { 1396 LoadPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, Offset); 1397 } 1398 1399 // Get dword location 1400 // NOTE: this should be eliminated by the future SHR ptr, 2 1401 SDValue Ptr = DAG.getNode(ISD::AND, DL, MVT::i32, LoadPtr, 1402 DAG.getConstant(0xfffffffc, DL, MVT::i32)); 1403 1404 // Load dword 1405 // TODO: can we be smarter about machine pointer info? 1406 MachinePointerInfo PtrInfo(UndefValue::get( 1407 Type::getInt32PtrTy(*DAG.getContext(), AMDGPUAS::PRIVATE_ADDRESS))); 1408 SDValue Read = DAG.getLoad(MVT::i32, DL, Chain, Ptr, PtrInfo); 1409 1410 // Get offset within the register. 1411 SDValue ByteIdx = DAG.getNode(ISD::AND, DL, MVT::i32, 1412 LoadPtr, DAG.getConstant(0x3, DL, MVT::i32)); 1413 1414 // Bit offset of target byte (byteIdx * 8). 1415 SDValue ShiftAmt = DAG.getNode(ISD::SHL, DL, MVT::i32, ByteIdx, 1416 DAG.getConstant(3, DL, MVT::i32)); 1417 1418 // Shift to the right. 1419 SDValue Ret = DAG.getNode(ISD::SRL, DL, MVT::i32, Read, ShiftAmt); 1420 1421 // Eliminate the upper bits by setting them to ... 1422 EVT MemEltVT = MemVT.getScalarType(); 1423 1424 if (ExtType == ISD::SEXTLOAD) { // ... ones. 1425 SDValue MemEltVTNode = DAG.getValueType(MemEltVT); 1426 Ret = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, MVT::i32, Ret, MemEltVTNode); 1427 } else { // ... or zeros. 1428 Ret = DAG.getZeroExtendInReg(Ret, DL, MemEltVT); 1429 } 1430 1431 SDValue Ops[] = { 1432 Ret, 1433 Read.getValue(1) // This should be our output chain 1434 }; 1435 1436 return DAG.getMergeValues(Ops, DL); 1437 } 1438 1439 SDValue R600TargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const { 1440 LoadSDNode *LoadNode = cast<LoadSDNode>(Op); 1441 unsigned AS = LoadNode->getAddressSpace(); 1442 EVT MemVT = LoadNode->getMemoryVT(); 1443 ISD::LoadExtType ExtType = LoadNode->getExtensionType(); 1444 1445 if (AS == AMDGPUAS::PRIVATE_ADDRESS && 1446 ExtType != ISD::NON_EXTLOAD && MemVT.bitsLT(MVT::i32)) { 1447 return lowerPrivateExtLoad(Op, DAG); 1448 } 1449 1450 SDLoc DL(Op); 1451 EVT VT = Op.getValueType(); 1452 SDValue Chain = LoadNode->getChain(); 1453 SDValue Ptr = LoadNode->getBasePtr(); 1454 1455 if ((LoadNode->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS || 1456 LoadNode->getAddressSpace() == AMDGPUAS::PRIVATE_ADDRESS) && 1457 VT.isVector()) { 1458 return scalarizeVectorLoad(LoadNode, DAG); 1459 } 1460 1461 // This is still used for explicit load from addrspace(8) 1462 int ConstantBlock = ConstantAddressBlock(LoadNode->getAddressSpace()); 1463 if (ConstantBlock > -1 && 1464 ((LoadNode->getExtensionType() == ISD::NON_EXTLOAD) || 1465 (LoadNode->getExtensionType() == ISD::ZEXTLOAD))) { 1466 SDValue Result; 1467 if (isa<Constant>(LoadNode->getMemOperand()->getValue()) || 1468 isa<ConstantSDNode>(Ptr)) { 1469 return constBufferLoad(LoadNode, LoadNode->getAddressSpace(), DAG); 1470 } else { 1471 //TODO: Does this even work? 1472 // non-constant ptr can't be folded, keeps it as a v4f32 load 1473 Result = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::v4i32, 1474 DAG.getNode(ISD::SRL, DL, MVT::i32, Ptr, 1475 DAG.getConstant(4, DL, MVT::i32)), 1476 DAG.getConstant(LoadNode->getAddressSpace() - 1477 AMDGPUAS::CONSTANT_BUFFER_0, DL, MVT::i32) 1478 ); 1479 } 1480 1481 if (!VT.isVector()) { 1482 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, Result, 1483 DAG.getConstant(0, DL, MVT::i32)); 1484 } 1485 1486 SDValue MergedValues[2] = { 1487 Result, 1488 Chain 1489 }; 1490 return DAG.getMergeValues(MergedValues, DL); 1491 } 1492 1493 // For most operations returning SDValue() will result in the node being 1494 // expanded by the DAG Legalizer. This is not the case for ISD::LOAD, so we 1495 // need to manually expand loads that may be legal in some address spaces and 1496 // illegal in others. SEXT loads from CONSTANT_BUFFER_0 are supported for 1497 // compute shaders, since the data is sign extended when it is uploaded to the 1498 // buffer. However SEXT loads from other address spaces are not supported, so 1499 // we need to expand them here. 1500 if (LoadNode->getExtensionType() == ISD::SEXTLOAD) { 1501 EVT MemVT = LoadNode->getMemoryVT(); 1502 assert(!MemVT.isVector() && (MemVT == MVT::i16 || MemVT == MVT::i8)); 1503 SDValue NewLoad = DAG.getExtLoad( 1504 ISD::EXTLOAD, DL, VT, Chain, Ptr, LoadNode->getPointerInfo(), MemVT, 1505 LoadNode->getAlignment(), LoadNode->getMemOperand()->getFlags()); 1506 SDValue Res = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT, NewLoad, 1507 DAG.getValueType(MemVT)); 1508 1509 SDValue MergedValues[2] = { Res, Chain }; 1510 return DAG.getMergeValues(MergedValues, DL); 1511 } 1512 1513 if (LoadNode->getAddressSpace() != AMDGPUAS::PRIVATE_ADDRESS) { 1514 return SDValue(); 1515 } 1516 1517 // DWORDADDR ISD marks already shifted address 1518 if (Ptr.getOpcode() != AMDGPUISD::DWORDADDR) { 1519 assert(VT == MVT::i32); 1520 Ptr = DAG.getNode(ISD::SRL, DL, MVT::i32, Ptr, DAG.getConstant(2, DL, MVT::i32)); 1521 Ptr = DAG.getNode(AMDGPUISD::DWORDADDR, DL, MVT::i32, Ptr); 1522 return DAG.getLoad(MVT::i32, DL, Chain, Ptr, LoadNode->getMemOperand()); 1523 } 1524 return SDValue(); 1525 } 1526 1527 SDValue R600TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const { 1528 SDValue Chain = Op.getOperand(0); 1529 SDValue Cond = Op.getOperand(1); 1530 SDValue Jump = Op.getOperand(2); 1531 1532 return DAG.getNode(AMDGPUISD::BRANCH_COND, SDLoc(Op), Op.getValueType(), 1533 Chain, Jump, Cond); 1534 } 1535 1536 SDValue R600TargetLowering::lowerFrameIndex(SDValue Op, 1537 SelectionDAG &DAG) const { 1538 MachineFunction &MF = DAG.getMachineFunction(); 1539 const R600FrameLowering *TFL = Subtarget->getFrameLowering(); 1540 1541 FrameIndexSDNode *FIN = cast<FrameIndexSDNode>(Op); 1542 1543 unsigned FrameIndex = FIN->getIndex(); 1544 unsigned IgnoredFrameReg; 1545 unsigned Offset = 1546 TFL->getFrameIndexReference(MF, FrameIndex, IgnoredFrameReg); 1547 return DAG.getConstant(Offset * 4 * TFL->getStackWidth(MF), SDLoc(Op), 1548 Op.getValueType()); 1549 } 1550 1551 CCAssignFn *R600TargetLowering::CCAssignFnForCall(CallingConv::ID CC, 1552 bool IsVarArg) const { 1553 switch (CC) { 1554 case CallingConv::AMDGPU_KERNEL: 1555 case CallingConv::SPIR_KERNEL: 1556 case CallingConv::C: 1557 case CallingConv::Fast: 1558 case CallingConv::Cold: 1559 llvm_unreachable("kernels should not be handled here"); 1560 case CallingConv::AMDGPU_VS: 1561 case CallingConv::AMDGPU_GS: 1562 case CallingConv::AMDGPU_PS: 1563 case CallingConv::AMDGPU_CS: 1564 case CallingConv::AMDGPU_HS: 1565 case CallingConv::AMDGPU_ES: 1566 case CallingConv::AMDGPU_LS: 1567 return CC_R600; 1568 default: 1569 report_fatal_error("Unsupported calling convention."); 1570 } 1571 } 1572 1573 /// XXX Only kernel functions are supported, so we can assume for now that 1574 /// every function is a kernel function, but in the future we should use 1575 /// separate calling conventions for kernel and non-kernel functions. 1576 SDValue R600TargetLowering::LowerFormalArguments( 1577 SDValue Chain, CallingConv::ID CallConv, bool isVarArg, 1578 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &DL, 1579 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { 1580 SmallVector<CCValAssign, 16> ArgLocs; 1581 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs, 1582 *DAG.getContext()); 1583 MachineFunction &MF = DAG.getMachineFunction(); 1584 SmallVector<ISD::InputArg, 8> LocalIns; 1585 1586 if (AMDGPU::isShader(CallConv)) { 1587 CCInfo.AnalyzeFormalArguments(Ins, CCAssignFnForCall(CallConv, isVarArg)); 1588 } else { 1589 analyzeFormalArgumentsCompute(CCInfo, Ins); 1590 } 1591 1592 for (unsigned i = 0, e = Ins.size(); i < e; ++i) { 1593 CCValAssign &VA = ArgLocs[i]; 1594 const ISD::InputArg &In = Ins[i]; 1595 EVT VT = In.VT; 1596 EVT MemVT = VA.getLocVT(); 1597 if (!VT.isVector() && MemVT.isVector()) { 1598 // Get load source type if scalarized. 1599 MemVT = MemVT.getVectorElementType(); 1600 } 1601 1602 if (AMDGPU::isShader(CallConv)) { 1603 unsigned Reg = MF.addLiveIn(VA.getLocReg(), &R600::R600_Reg128RegClass); 1604 SDValue Register = DAG.getCopyFromReg(Chain, DL, Reg, VT); 1605 InVals.push_back(Register); 1606 continue; 1607 } 1608 1609 PointerType *PtrTy = PointerType::get(VT.getTypeForEVT(*DAG.getContext()), 1610 AMDGPUAS::PARAM_I_ADDRESS); 1611 1612 // i64 isn't a legal type, so the register type used ends up as i32, which 1613 // isn't expected here. It attempts to create this sextload, but it ends up 1614 // being invalid. Somehow this seems to work with i64 arguments, but breaks 1615 // for <1 x i64>. 1616 1617 // The first 36 bytes of the input buffer contains information about 1618 // thread group and global sizes. 1619 ISD::LoadExtType Ext = ISD::NON_EXTLOAD; 1620 if (MemVT.getScalarSizeInBits() != VT.getScalarSizeInBits()) { 1621 // FIXME: This should really check the extload type, but the handling of 1622 // extload vector parameters seems to be broken. 1623 1624 // Ext = In.Flags.isSExt() ? ISD::SEXTLOAD : ISD::ZEXTLOAD; 1625 Ext = ISD::SEXTLOAD; 1626 } 1627 1628 // Compute the offset from the value. 1629 // XXX - I think PartOffset should give you this, but it seems to give the 1630 // size of the register which isn't useful. 1631 1632 unsigned ValBase = ArgLocs[In.getOrigArgIndex()].getLocMemOffset(); 1633 unsigned PartOffset = VA.getLocMemOffset(); 1634 unsigned Alignment = MinAlign(VT.getStoreSize(), PartOffset); 1635 1636 MachinePointerInfo PtrInfo(UndefValue::get(PtrTy), PartOffset - ValBase); 1637 SDValue Arg = DAG.getLoad( 1638 ISD::UNINDEXED, Ext, VT, DL, Chain, 1639 DAG.getConstant(PartOffset, DL, MVT::i32), DAG.getUNDEF(MVT::i32), 1640 PtrInfo, 1641 MemVT, Alignment, MachineMemOperand::MONonTemporal | 1642 MachineMemOperand::MODereferenceable | 1643 MachineMemOperand::MOInvariant); 1644 1645 InVals.push_back(Arg); 1646 } 1647 return Chain; 1648 } 1649 1650 EVT R600TargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &, 1651 EVT VT) const { 1652 if (!VT.isVector()) 1653 return MVT::i32; 1654 return VT.changeVectorElementTypeToInteger(); 1655 } 1656 1657 bool R600TargetLowering::canMergeStoresTo(unsigned AS, EVT MemVT, 1658 const SelectionDAG &DAG) const { 1659 // Local and Private addresses do not handle vectors. Limit to i32 1660 if ((AS == AMDGPUAS::LOCAL_ADDRESS || AS == AMDGPUAS::PRIVATE_ADDRESS)) { 1661 return (MemVT.getSizeInBits() <= 32); 1662 } 1663 return true; 1664 } 1665 1666 bool R600TargetLowering::allowsMisalignedMemoryAccesses(EVT VT, 1667 unsigned AddrSpace, 1668 unsigned Align, 1669 bool *IsFast) const { 1670 if (IsFast) 1671 *IsFast = false; 1672 1673 if (!VT.isSimple() || VT == MVT::Other) 1674 return false; 1675 1676 if (VT.bitsLT(MVT::i32)) 1677 return false; 1678 1679 // TODO: This is a rough estimate. 1680 if (IsFast) 1681 *IsFast = true; 1682 1683 return VT.bitsGT(MVT::i32) && Align % 4 == 0; 1684 } 1685 1686 static SDValue CompactSwizzlableVector( 1687 SelectionDAG &DAG, SDValue VectorEntry, 1688 DenseMap<unsigned, unsigned> &RemapSwizzle) { 1689 assert(RemapSwizzle.empty()); 1690 1691 SDLoc DL(VectorEntry); 1692 EVT EltTy = VectorEntry.getValueType().getVectorElementType(); 1693 1694 SDValue NewBldVec[4]; 1695 for (unsigned i = 0; i < 4; i++) 1696 NewBldVec[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltTy, VectorEntry, 1697 DAG.getIntPtrConstant(i, DL)); 1698 1699 for (unsigned i = 0; i < 4; i++) { 1700 if (NewBldVec[i].isUndef()) 1701 // We mask write here to teach later passes that the ith element of this 1702 // vector is undef. Thus we can use it to reduce 128 bits reg usage, 1703 // break false dependencies and additionnaly make assembly easier to read. 1704 RemapSwizzle[i] = 7; // SEL_MASK_WRITE 1705 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(NewBldVec[i])) { 1706 if (C->isZero()) { 1707 RemapSwizzle[i] = 4; // SEL_0 1708 NewBldVec[i] = DAG.getUNDEF(MVT::f32); 1709 } else if (C->isExactlyValue(1.0)) { 1710 RemapSwizzle[i] = 5; // SEL_1 1711 NewBldVec[i] = DAG.getUNDEF(MVT::f32); 1712 } 1713 } 1714 1715 if (NewBldVec[i].isUndef()) 1716 continue; 1717 for (unsigned j = 0; j < i; j++) { 1718 if (NewBldVec[i] == NewBldVec[j]) { 1719 NewBldVec[i] = DAG.getUNDEF(NewBldVec[i].getValueType()); 1720 RemapSwizzle[i] = j; 1721 break; 1722 } 1723 } 1724 } 1725 1726 return DAG.getBuildVector(VectorEntry.getValueType(), SDLoc(VectorEntry), 1727 NewBldVec); 1728 } 1729 1730 static SDValue ReorganizeVector(SelectionDAG &DAG, SDValue VectorEntry, 1731 DenseMap<unsigned, unsigned> &RemapSwizzle) { 1732 assert(RemapSwizzle.empty()); 1733 1734 SDLoc DL(VectorEntry); 1735 EVT EltTy = VectorEntry.getValueType().getVectorElementType(); 1736 1737 SDValue NewBldVec[4]; 1738 bool isUnmovable[4] = {false, false, false, false}; 1739 for (unsigned i = 0; i < 4; i++) 1740 NewBldVec[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltTy, VectorEntry, 1741 DAG.getIntPtrConstant(i, DL)); 1742 1743 for (unsigned i = 0; i < 4; i++) { 1744 RemapSwizzle[i] = i; 1745 if (NewBldVec[i].getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 1746 unsigned Idx = dyn_cast<ConstantSDNode>(NewBldVec[i].getOperand(1)) 1747 ->getZExtValue(); 1748 if (i == Idx) 1749 isUnmovable[Idx] = true; 1750 } 1751 } 1752 1753 for (unsigned i = 0; i < 4; i++) { 1754 if (NewBldVec[i].getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 1755 unsigned Idx = dyn_cast<ConstantSDNode>(NewBldVec[i].getOperand(1)) 1756 ->getZExtValue(); 1757 if (isUnmovable[Idx]) 1758 continue; 1759 // Swap i and Idx 1760 std::swap(NewBldVec[Idx], NewBldVec[i]); 1761 std::swap(RemapSwizzle[i], RemapSwizzle[Idx]); 1762 break; 1763 } 1764 } 1765 1766 return DAG.getBuildVector(VectorEntry.getValueType(), SDLoc(VectorEntry), 1767 NewBldVec); 1768 } 1769 1770 SDValue R600TargetLowering::OptimizeSwizzle(SDValue BuildVector, SDValue Swz[4], 1771 SelectionDAG &DAG, 1772 const SDLoc &DL) const { 1773 // Old -> New swizzle values 1774 DenseMap<unsigned, unsigned> SwizzleRemap; 1775 1776 BuildVector = CompactSwizzlableVector(DAG, BuildVector, SwizzleRemap); 1777 for (unsigned i = 0; i < 4; i++) { 1778 unsigned Idx = cast<ConstantSDNode>(Swz[i])->getZExtValue(); 1779 if (SwizzleRemap.find(Idx) != SwizzleRemap.end()) 1780 Swz[i] = DAG.getConstant(SwizzleRemap[Idx], DL, MVT::i32); 1781 } 1782 1783 SwizzleRemap.clear(); 1784 BuildVector = ReorganizeVector(DAG, BuildVector, SwizzleRemap); 1785 for (unsigned i = 0; i < 4; i++) { 1786 unsigned Idx = cast<ConstantSDNode>(Swz[i])->getZExtValue(); 1787 if (SwizzleRemap.find(Idx) != SwizzleRemap.end()) 1788 Swz[i] = DAG.getConstant(SwizzleRemap[Idx], DL, MVT::i32); 1789 } 1790 1791 return BuildVector; 1792 } 1793 1794 SDValue R600TargetLowering::constBufferLoad(LoadSDNode *LoadNode, int Block, 1795 SelectionDAG &DAG) const { 1796 SDLoc DL(LoadNode); 1797 EVT VT = LoadNode->getValueType(0); 1798 SDValue Chain = LoadNode->getChain(); 1799 SDValue Ptr = LoadNode->getBasePtr(); 1800 assert (isa<ConstantSDNode>(Ptr)); 1801 1802 //TODO: Support smaller loads 1803 if (LoadNode->getMemoryVT().getScalarType() != MVT::i32 || !ISD::isNON_EXTLoad(LoadNode)) 1804 return SDValue(); 1805 1806 if (LoadNode->getAlignment() < 4) 1807 return SDValue(); 1808 1809 int ConstantBlock = ConstantAddressBlock(Block); 1810 1811 SDValue Slots[4]; 1812 for (unsigned i = 0; i < 4; i++) { 1813 // We want Const position encoded with the following formula : 1814 // (((512 + (kc_bank << 12) + const_index) << 2) + chan) 1815 // const_index is Ptr computed by llvm using an alignment of 16. 1816 // Thus we add (((512 + (kc_bank << 12)) + chan ) * 4 here and 1817 // then div by 4 at the ISel step 1818 SDValue NewPtr = DAG.getNode(ISD::ADD, DL, Ptr.getValueType(), Ptr, 1819 DAG.getConstant(4 * i + ConstantBlock * 16, DL, MVT::i32)); 1820 Slots[i] = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::i32, NewPtr); 1821 } 1822 EVT NewVT = MVT::v4i32; 1823 unsigned NumElements = 4; 1824 if (VT.isVector()) { 1825 NewVT = VT; 1826 NumElements = VT.getVectorNumElements(); 1827 } 1828 SDValue Result = DAG.getBuildVector(NewVT, DL, makeArrayRef(Slots, NumElements)); 1829 if (!VT.isVector()) { 1830 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i32, Result, 1831 DAG.getConstant(0, DL, MVT::i32)); 1832 } 1833 SDValue MergedValues[2] = { 1834 Result, 1835 Chain 1836 }; 1837 return DAG.getMergeValues(MergedValues, DL); 1838 } 1839 1840 //===----------------------------------------------------------------------===// 1841 // Custom DAG Optimizations 1842 //===----------------------------------------------------------------------===// 1843 1844 SDValue R600TargetLowering::PerformDAGCombine(SDNode *N, 1845 DAGCombinerInfo &DCI) const { 1846 SelectionDAG &DAG = DCI.DAG; 1847 SDLoc DL(N); 1848 1849 switch (N->getOpcode()) { 1850 // (f32 fp_round (f64 uint_to_fp a)) -> (f32 uint_to_fp a) 1851 case ISD::FP_ROUND: { 1852 SDValue Arg = N->getOperand(0); 1853 if (Arg.getOpcode() == ISD::UINT_TO_FP && Arg.getValueType() == MVT::f64) { 1854 return DAG.getNode(ISD::UINT_TO_FP, DL, N->getValueType(0), 1855 Arg.getOperand(0)); 1856 } 1857 break; 1858 } 1859 1860 // (i32 fp_to_sint (fneg (select_cc f32, f32, 1.0, 0.0 cc))) -> 1861 // (i32 select_cc f32, f32, -1, 0 cc) 1862 // 1863 // Mesa's GLSL frontend generates the above pattern a lot and we can lower 1864 // this to one of the SET*_DX10 instructions. 1865 case ISD::FP_TO_SINT: { 1866 SDValue FNeg = N->getOperand(0); 1867 if (FNeg.getOpcode() != ISD::FNEG) { 1868 return SDValue(); 1869 } 1870 SDValue SelectCC = FNeg.getOperand(0); 1871 if (SelectCC.getOpcode() != ISD::SELECT_CC || 1872 SelectCC.getOperand(0).getValueType() != MVT::f32 || // LHS 1873 SelectCC.getOperand(2).getValueType() != MVT::f32 || // True 1874 !isHWTrueValue(SelectCC.getOperand(2)) || 1875 !isHWFalseValue(SelectCC.getOperand(3))) { 1876 return SDValue(); 1877 } 1878 1879 return DAG.getNode(ISD::SELECT_CC, DL, N->getValueType(0), 1880 SelectCC.getOperand(0), // LHS 1881 SelectCC.getOperand(1), // RHS 1882 DAG.getConstant(-1, DL, MVT::i32), // True 1883 DAG.getConstant(0, DL, MVT::i32), // False 1884 SelectCC.getOperand(4)); // CC 1885 1886 break; 1887 } 1888 1889 // insert_vector_elt (build_vector elt0, ... , eltN), NewEltIdx, idx 1890 // => build_vector elt0, ... , NewEltIdx, ... , eltN 1891 case ISD::INSERT_VECTOR_ELT: { 1892 SDValue InVec = N->getOperand(0); 1893 SDValue InVal = N->getOperand(1); 1894 SDValue EltNo = N->getOperand(2); 1895 1896 // If the inserted element is an UNDEF, just use the input vector. 1897 if (InVal.isUndef()) 1898 return InVec; 1899 1900 EVT VT = InVec.getValueType(); 1901 1902 // If we can't generate a legal BUILD_VECTOR, exit 1903 if (!isOperationLegal(ISD::BUILD_VECTOR, VT)) 1904 return SDValue(); 1905 1906 // Check that we know which element is being inserted 1907 if (!isa<ConstantSDNode>(EltNo)) 1908 return SDValue(); 1909 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); 1910 1911 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially 1912 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the 1913 // vector elements. 1914 SmallVector<SDValue, 8> Ops; 1915 if (InVec.getOpcode() == ISD::BUILD_VECTOR) { 1916 Ops.append(InVec.getNode()->op_begin(), 1917 InVec.getNode()->op_end()); 1918 } else if (InVec.isUndef()) { 1919 unsigned NElts = VT.getVectorNumElements(); 1920 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType())); 1921 } else { 1922 return SDValue(); 1923 } 1924 1925 // Insert the element 1926 if (Elt < Ops.size()) { 1927 // All the operands of BUILD_VECTOR must have the same type; 1928 // we enforce that here. 1929 EVT OpVT = Ops[0].getValueType(); 1930 if (InVal.getValueType() != OpVT) 1931 InVal = OpVT.bitsGT(InVal.getValueType()) ? 1932 DAG.getNode(ISD::ANY_EXTEND, DL, OpVT, InVal) : 1933 DAG.getNode(ISD::TRUNCATE, DL, OpVT, InVal); 1934 Ops[Elt] = InVal; 1935 } 1936 1937 // Return the new vector 1938 return DAG.getBuildVector(VT, DL, Ops); 1939 } 1940 1941 // Extract_vec (Build_vector) generated by custom lowering 1942 // also needs to be customly combined 1943 case ISD::EXTRACT_VECTOR_ELT: { 1944 SDValue Arg = N->getOperand(0); 1945 if (Arg.getOpcode() == ISD::BUILD_VECTOR) { 1946 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N->getOperand(1))) { 1947 unsigned Element = Const->getZExtValue(); 1948 return Arg->getOperand(Element); 1949 } 1950 } 1951 if (Arg.getOpcode() == ISD::BITCAST && 1952 Arg.getOperand(0).getOpcode() == ISD::BUILD_VECTOR && 1953 (Arg.getOperand(0).getValueType().getVectorNumElements() == 1954 Arg.getValueType().getVectorNumElements())) { 1955 if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(N->getOperand(1))) { 1956 unsigned Element = Const->getZExtValue(); 1957 return DAG.getNode(ISD::BITCAST, DL, N->getVTList(), 1958 Arg->getOperand(0).getOperand(Element)); 1959 } 1960 } 1961 break; 1962 } 1963 1964 case ISD::SELECT_CC: { 1965 // Try common optimizations 1966 if (SDValue Ret = AMDGPUTargetLowering::PerformDAGCombine(N, DCI)) 1967 return Ret; 1968 1969 // fold selectcc (selectcc x, y, a, b, cc), b, a, b, seteq -> 1970 // selectcc x, y, a, b, inv(cc) 1971 // 1972 // fold selectcc (selectcc x, y, a, b, cc), b, a, b, setne -> 1973 // selectcc x, y, a, b, cc 1974 SDValue LHS = N->getOperand(0); 1975 if (LHS.getOpcode() != ISD::SELECT_CC) { 1976 return SDValue(); 1977 } 1978 1979 SDValue RHS = N->getOperand(1); 1980 SDValue True = N->getOperand(2); 1981 SDValue False = N->getOperand(3); 1982 ISD::CondCode NCC = cast<CondCodeSDNode>(N->getOperand(4))->get(); 1983 1984 if (LHS.getOperand(2).getNode() != True.getNode() || 1985 LHS.getOperand(3).getNode() != False.getNode() || 1986 RHS.getNode() != False.getNode()) { 1987 return SDValue(); 1988 } 1989 1990 switch (NCC) { 1991 default: return SDValue(); 1992 case ISD::SETNE: return LHS; 1993 case ISD::SETEQ: { 1994 ISD::CondCode LHSCC = cast<CondCodeSDNode>(LHS.getOperand(4))->get(); 1995 LHSCC = ISD::getSetCCInverse(LHSCC, 1996 LHS.getOperand(0).getValueType().isInteger()); 1997 if (DCI.isBeforeLegalizeOps() || 1998 isCondCodeLegal(LHSCC, LHS.getOperand(0).getSimpleValueType())) 1999 return DAG.getSelectCC(DL, 2000 LHS.getOperand(0), 2001 LHS.getOperand(1), 2002 LHS.getOperand(2), 2003 LHS.getOperand(3), 2004 LHSCC); 2005 break; 2006 } 2007 } 2008 return SDValue(); 2009 } 2010 2011 case AMDGPUISD::R600_EXPORT: { 2012 SDValue Arg = N->getOperand(1); 2013 if (Arg.getOpcode() != ISD::BUILD_VECTOR) 2014 break; 2015 2016 SDValue NewArgs[8] = { 2017 N->getOperand(0), // Chain 2018 SDValue(), 2019 N->getOperand(2), // ArrayBase 2020 N->getOperand(3), // Type 2021 N->getOperand(4), // SWZ_X 2022 N->getOperand(5), // SWZ_Y 2023 N->getOperand(6), // SWZ_Z 2024 N->getOperand(7) // SWZ_W 2025 }; 2026 NewArgs[1] = OptimizeSwizzle(N->getOperand(1), &NewArgs[4], DAG, DL); 2027 return DAG.getNode(AMDGPUISD::R600_EXPORT, DL, N->getVTList(), NewArgs); 2028 } 2029 case AMDGPUISD::TEXTURE_FETCH: { 2030 SDValue Arg = N->getOperand(1); 2031 if (Arg.getOpcode() != ISD::BUILD_VECTOR) 2032 break; 2033 2034 SDValue NewArgs[19] = { 2035 N->getOperand(0), 2036 N->getOperand(1), 2037 N->getOperand(2), 2038 N->getOperand(3), 2039 N->getOperand(4), 2040 N->getOperand(5), 2041 N->getOperand(6), 2042 N->getOperand(7), 2043 N->getOperand(8), 2044 N->getOperand(9), 2045 N->getOperand(10), 2046 N->getOperand(11), 2047 N->getOperand(12), 2048 N->getOperand(13), 2049 N->getOperand(14), 2050 N->getOperand(15), 2051 N->getOperand(16), 2052 N->getOperand(17), 2053 N->getOperand(18), 2054 }; 2055 NewArgs[1] = OptimizeSwizzle(N->getOperand(1), &NewArgs[2], DAG, DL); 2056 return DAG.getNode(AMDGPUISD::TEXTURE_FETCH, DL, N->getVTList(), NewArgs); 2057 } 2058 2059 case ISD::LOAD: { 2060 LoadSDNode *LoadNode = cast<LoadSDNode>(N); 2061 SDValue Ptr = LoadNode->getBasePtr(); 2062 if (LoadNode->getAddressSpace() == AMDGPUAS::PARAM_I_ADDRESS && 2063 isa<ConstantSDNode>(Ptr)) 2064 return constBufferLoad(LoadNode, AMDGPUAS::CONSTANT_BUFFER_0, DAG); 2065 break; 2066 } 2067 2068 default: break; 2069 } 2070 2071 return AMDGPUTargetLowering::PerformDAGCombine(N, DCI); 2072 } 2073 2074 bool R600TargetLowering::FoldOperand(SDNode *ParentNode, unsigned SrcIdx, 2075 SDValue &Src, SDValue &Neg, SDValue &Abs, 2076 SDValue &Sel, SDValue &Imm, 2077 SelectionDAG &DAG) const { 2078 const R600InstrInfo *TII = Subtarget->getInstrInfo(); 2079 if (!Src.isMachineOpcode()) 2080 return false; 2081 2082 switch (Src.getMachineOpcode()) { 2083 case R600::FNEG_R600: 2084 if (!Neg.getNode()) 2085 return false; 2086 Src = Src.getOperand(0); 2087 Neg = DAG.getTargetConstant(1, SDLoc(ParentNode), MVT::i32); 2088 return true; 2089 case R600::FABS_R600: 2090 if (!Abs.getNode()) 2091 return false; 2092 Src = Src.getOperand(0); 2093 Abs = DAG.getTargetConstant(1, SDLoc(ParentNode), MVT::i32); 2094 return true; 2095 case R600::CONST_COPY: { 2096 unsigned Opcode = ParentNode->getMachineOpcode(); 2097 bool HasDst = TII->getOperandIdx(Opcode, R600::OpName::dst) > -1; 2098 2099 if (!Sel.getNode()) 2100 return false; 2101 2102 SDValue CstOffset = Src.getOperand(0); 2103 if (ParentNode->getValueType(0).isVector()) 2104 return false; 2105 2106 // Gather constants values 2107 int SrcIndices[] = { 2108 TII->getOperandIdx(Opcode, R600::OpName::src0), 2109 TII->getOperandIdx(Opcode, R600::OpName::src1), 2110 TII->getOperandIdx(Opcode, R600::OpName::src2), 2111 TII->getOperandIdx(Opcode, R600::OpName::src0_X), 2112 TII->getOperandIdx(Opcode, R600::OpName::src0_Y), 2113 TII->getOperandIdx(Opcode, R600::OpName::src0_Z), 2114 TII->getOperandIdx(Opcode, R600::OpName::src0_W), 2115 TII->getOperandIdx(Opcode, R600::OpName::src1_X), 2116 TII->getOperandIdx(Opcode, R600::OpName::src1_Y), 2117 TII->getOperandIdx(Opcode, R600::OpName::src1_Z), 2118 TII->getOperandIdx(Opcode, R600::OpName::src1_W) 2119 }; 2120 std::vector<unsigned> Consts; 2121 for (int OtherSrcIdx : SrcIndices) { 2122 int OtherSelIdx = TII->getSelIdx(Opcode, OtherSrcIdx); 2123 if (OtherSrcIdx < 0 || OtherSelIdx < 0) 2124 continue; 2125 if (HasDst) { 2126 OtherSrcIdx--; 2127 OtherSelIdx--; 2128 } 2129 if (RegisterSDNode *Reg = 2130 dyn_cast<RegisterSDNode>(ParentNode->getOperand(OtherSrcIdx))) { 2131 if (Reg->getReg() == R600::ALU_CONST) { 2132 ConstantSDNode *Cst 2133 = cast<ConstantSDNode>(ParentNode->getOperand(OtherSelIdx)); 2134 Consts.push_back(Cst->getZExtValue()); 2135 } 2136 } 2137 } 2138 2139 ConstantSDNode *Cst = cast<ConstantSDNode>(CstOffset); 2140 Consts.push_back(Cst->getZExtValue()); 2141 if (!TII->fitsConstReadLimitations(Consts)) { 2142 return false; 2143 } 2144 2145 Sel = CstOffset; 2146 Src = DAG.getRegister(R600::ALU_CONST, MVT::f32); 2147 return true; 2148 } 2149 case R600::MOV_IMM_GLOBAL_ADDR: 2150 // Check if the Imm slot is used. Taken from below. 2151 if (cast<ConstantSDNode>(Imm)->getZExtValue()) 2152 return false; 2153 Imm = Src.getOperand(0); 2154 Src = DAG.getRegister(R600::ALU_LITERAL_X, MVT::i32); 2155 return true; 2156 case R600::MOV_IMM_I32: 2157 case R600::MOV_IMM_F32: { 2158 unsigned ImmReg = R600::ALU_LITERAL_X; 2159 uint64_t ImmValue = 0; 2160 2161 if (Src.getMachineOpcode() == R600::MOV_IMM_F32) { 2162 ConstantFPSDNode *FPC = dyn_cast<ConstantFPSDNode>(Src.getOperand(0)); 2163 float FloatValue = FPC->getValueAPF().convertToFloat(); 2164 if (FloatValue == 0.0) { 2165 ImmReg = R600::ZERO; 2166 } else if (FloatValue == 0.5) { 2167 ImmReg = R600::HALF; 2168 } else if (FloatValue == 1.0) { 2169 ImmReg = R600::ONE; 2170 } else { 2171 ImmValue = FPC->getValueAPF().bitcastToAPInt().getZExtValue(); 2172 } 2173 } else { 2174 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Src.getOperand(0)); 2175 uint64_t Value = C->getZExtValue(); 2176 if (Value == 0) { 2177 ImmReg = R600::ZERO; 2178 } else if (Value == 1) { 2179 ImmReg = R600::ONE_INT; 2180 } else { 2181 ImmValue = Value; 2182 } 2183 } 2184 2185 // Check that we aren't already using an immediate. 2186 // XXX: It's possible for an instruction to have more than one 2187 // immediate operand, but this is not supported yet. 2188 if (ImmReg == R600::ALU_LITERAL_X) { 2189 if (!Imm.getNode()) 2190 return false; 2191 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Imm); 2192 assert(C); 2193 if (C->getZExtValue()) 2194 return false; 2195 Imm = DAG.getTargetConstant(ImmValue, SDLoc(ParentNode), MVT::i32); 2196 } 2197 Src = DAG.getRegister(ImmReg, MVT::i32); 2198 return true; 2199 } 2200 default: 2201 return false; 2202 } 2203 } 2204 2205 /// Fold the instructions after selecting them 2206 SDNode *R600TargetLowering::PostISelFolding(MachineSDNode *Node, 2207 SelectionDAG &DAG) const { 2208 const R600InstrInfo *TII = Subtarget->getInstrInfo(); 2209 if (!Node->isMachineOpcode()) 2210 return Node; 2211 2212 unsigned Opcode = Node->getMachineOpcode(); 2213 SDValue FakeOp; 2214 2215 std::vector<SDValue> Ops(Node->op_begin(), Node->op_end()); 2216 2217 if (Opcode == R600::DOT_4) { 2218 int OperandIdx[] = { 2219 TII->getOperandIdx(Opcode, R600::OpName::src0_X), 2220 TII->getOperandIdx(Opcode, R600::OpName::src0_Y), 2221 TII->getOperandIdx(Opcode, R600::OpName::src0_Z), 2222 TII->getOperandIdx(Opcode, R600::OpName::src0_W), 2223 TII->getOperandIdx(Opcode, R600::OpName::src1_X), 2224 TII->getOperandIdx(Opcode, R600::OpName::src1_Y), 2225 TII->getOperandIdx(Opcode, R600::OpName::src1_Z), 2226 TII->getOperandIdx(Opcode, R600::OpName::src1_W) 2227 }; 2228 int NegIdx[] = { 2229 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_X), 2230 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_Y), 2231 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_Z), 2232 TII->getOperandIdx(Opcode, R600::OpName::src0_neg_W), 2233 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_X), 2234 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_Y), 2235 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_Z), 2236 TII->getOperandIdx(Opcode, R600::OpName::src1_neg_W) 2237 }; 2238 int AbsIdx[] = { 2239 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_X), 2240 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_Y), 2241 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_Z), 2242 TII->getOperandIdx(Opcode, R600::OpName::src0_abs_W), 2243 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_X), 2244 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_Y), 2245 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_Z), 2246 TII->getOperandIdx(Opcode, R600::OpName::src1_abs_W) 2247 }; 2248 for (unsigned i = 0; i < 8; i++) { 2249 if (OperandIdx[i] < 0) 2250 return Node; 2251 SDValue &Src = Ops[OperandIdx[i] - 1]; 2252 SDValue &Neg = Ops[NegIdx[i] - 1]; 2253 SDValue &Abs = Ops[AbsIdx[i] - 1]; 2254 bool HasDst = TII->getOperandIdx(Opcode, R600::OpName::dst) > -1; 2255 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]); 2256 if (HasDst) 2257 SelIdx--; 2258 SDValue &Sel = (SelIdx > -1) ? Ops[SelIdx] : FakeOp; 2259 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, FakeOp, DAG)) 2260 return DAG.getMachineNode(Opcode, SDLoc(Node), Node->getVTList(), Ops); 2261 } 2262 } else if (Opcode == R600::REG_SEQUENCE) { 2263 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2) { 2264 SDValue &Src = Ops[i]; 2265 if (FoldOperand(Node, i, Src, FakeOp, FakeOp, FakeOp, FakeOp, DAG)) 2266 return DAG.getMachineNode(Opcode, SDLoc(Node), Node->getVTList(), Ops); 2267 } 2268 } else { 2269 if (!TII->hasInstrModifiers(Opcode)) 2270 return Node; 2271 int OperandIdx[] = { 2272 TII->getOperandIdx(Opcode, R600::OpName::src0), 2273 TII->getOperandIdx(Opcode, R600::OpName::src1), 2274 TII->getOperandIdx(Opcode, R600::OpName::src2) 2275 }; 2276 int NegIdx[] = { 2277 TII->getOperandIdx(Opcode, R600::OpName::src0_neg), 2278 TII->getOperandIdx(Opcode, R600::OpName::src1_neg), 2279 TII->getOperandIdx(Opcode, R600::OpName::src2_neg) 2280 }; 2281 int AbsIdx[] = { 2282 TII->getOperandIdx(Opcode, R600::OpName::src0_abs), 2283 TII->getOperandIdx(Opcode, R600::OpName::src1_abs), 2284 -1 2285 }; 2286 for (unsigned i = 0; i < 3; i++) { 2287 if (OperandIdx[i] < 0) 2288 return Node; 2289 SDValue &Src = Ops[OperandIdx[i] - 1]; 2290 SDValue &Neg = Ops[NegIdx[i] - 1]; 2291 SDValue FakeAbs; 2292 SDValue &Abs = (AbsIdx[i] > -1) ? Ops[AbsIdx[i] - 1] : FakeAbs; 2293 bool HasDst = TII->getOperandIdx(Opcode, R600::OpName::dst) > -1; 2294 int SelIdx = TII->getSelIdx(Opcode, OperandIdx[i]); 2295 int ImmIdx = TII->getOperandIdx(Opcode, R600::OpName::literal); 2296 if (HasDst) { 2297 SelIdx--; 2298 ImmIdx--; 2299 } 2300 SDValue &Sel = (SelIdx > -1) ? Ops[SelIdx] : FakeOp; 2301 SDValue &Imm = Ops[ImmIdx]; 2302 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, Imm, DAG)) 2303 return DAG.getMachineNode(Opcode, SDLoc(Node), Node->getVTList(), Ops); 2304 } 2305 } 2306 2307 return Node; 2308 } 2309