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