/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SILowerI1Copies.h | 78 ST->getWavefrontSize(); in isLaneMaskReg()
|
H A D | AMDGPUSubtarget.h | 221 unsigned getWavefrontSize() const { in getWavefrontSize() function
|
H A D | AMDGPUSubtarget.cpp | 347 const unsigned WaveSize = getWavefrontSize(); in getMaxLocalMemSizeWithWaveCount() 371 const unsigned WaveSize = getWavefrontSize(); in getOccupancyWithLocalMemSize() 418 return std::pair(1, getWavefrontSize()); in getDefaultFlatWorkGroupSize() 649 return getWavefrontSize() == 32 ? AMDGPUDwarfFlavour::Wave32 in getAMDGPUDwarfFlavour()
|
H A D | GCNSubtarget.h | 1529 return getWavefrontSize() == 32; in isWave32() 1533 return getWavefrontSize() == 64; in isWave64()
|
H A D | AMDGPUAtomicOptimizer.cpp | 563 auto *WaveTy = B.getIntNTy(ST->getWavefrontSize()); in buildScanIteratively() 709 Type *const WaveTy = B.getIntNTy(ST->getWavefrontSize()); in optimizeAtomic() 770 Value *const LastLaneIdx = B.getInt32(ST->getWavefrontSize() - 1); in optimizeAtomic()
|
H A D | R600ControlFlowFinalizer.cpp | 82 if (ST->getWavefrontSize() == 64) { in requiresWorkAroundForInst() 93 assert(ST->getWavefrontSize() == 32); in requiresWorkAroundForInst()
|
H A D | AMDGPUAsmPrinter.cpp | 790 STM.getMaxWaveScratchSize() / STM.getWavefrontSize(); in getSIProgramInfo() 1022 CreateExpr(STM.getWavefrontSize()), Ctx), in getSIProgramInfo()
|
H A D | AMDGPUHSAMetadataStreamer.cpp | 489 Kern.getDocument()->getNode(STM.getWavefrontSize()); in getHSAKernelProps()
|
H A D | GCNRegPressure.cpp | 121 auto WaveSize = ST.getWavefrontSize(); in less()
|
H A D | SIMachineFunctionInfo.cpp | 412 unsigned WaveSize = ST.getWavefrontSize(); in allocateSGPRSpillToVGPRLane()
|
H A D | AMDGPUInstructionSelector.cpp | 1349 if (DstTy.getSizeInBits() != STI.getWavefrontSize()) in selectIntrinsicCmp() 1407 const bool IsWave32 = (STI.getWavefrontSize() == 32); in selectBallot() 1411 if (Size != STI.getWavefrontSize() && (!Is64 || !IsWave32)) in selectBallot() 1418 if (Size == STI.getWavefrontSize()) { in selectBallot() 1763 if (WGSize <= STI.getWavefrontSize()) { in selectSBarrier()
|
H A D | SIWholeQuadMode.cpp | 1573 const unsigned WavefrontSize = ST->getWavefrontSize(); in lowerInitExec()
|
H A D | AMDGPUCallLowering.cpp | 1219 if (!ExecArg.Ty->isIntegerTy(ST.getWavefrontSize())) in lowerTailCall()
|
H A D | SIFrameLowering.cpp | 591 return ST.enableFlatScratch() ? 1 : ST.getWavefrontSize(); in getScratchScaleFactor()
|
H A D | SIInstrInfo.td | 9 def isWave32 : Predicate<"Subtarget->getWavefrontSize() == 32">, 11 def isWave64 : Predicate<"Subtarget->getWavefrontSize() == 64">,
|
H A D | SIISelLowering.cpp | 3628 if (!RequestedExec.Ty->isIntegerTy(Subtarget->getWavefrontSize())) in LowerCall() 6037 unsigned WavefrontSize = TLI.getSubtarget()->getWavefrontSize(); in lowerICMPIntrinsic() 6067 unsigned WavefrontSize = TLI.getSubtarget()->getWavefrontSize(); in lowerFCMPIntrinsic() 8556 return DAG.getConstant(MF.getSubtarget<GCNSubtarget>().getWavefrontSize(), in LowerINTRINSIC_WO_CHAIN() 9524 if (WGSize <= ST.getWavefrontSize()) in LowerINTRINSIC_VOID() 16347 return Subtarget->getWavefrontSize() == 64 ? &AMDGPU::SReg_64RegClass in getRegClassFor() 16435 return hasCFUser(V, Visited, Subtarget->getWavefrontSize()); in requiresUniformRegister()
|
H A D | SIRegisterInfo.cpp | 1482 Offset *= ST.getWavefrontSize(); in buildSpillLoadStore()
|
H A D | AMDGPUISelDAGToDAG.cpp | 2454 VCMP.getValueType().getSizeInBits() == ST->getWavefrontSize()) { in SelectBRCOND()
|
H A D | SIInstrInfo.cpp | 7595 unsigned Opcode = (ST.getWavefrontSize() == 64) ? AMDGPU::S_CSELECT_B64 in lowerSelect() 8608 uint64_t IndexStride = ST.getWavefrontSize() == 64 ? 3 : 2; in getScratchRsrcWords23()
|
H A D | AMDGPULegalizerInfo.cpp | 7346 B.buildConstant(MI.getOperand(0), ST.getWavefrontSize()); in legalizeIntrinsic()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUBaseInfo.h | 199 unsigned getWavefrontSize(const MCSubtargetInfo *STI);
|
H A D | AMDGPUBaseInfo.cpp | 899 unsigned getWavefrontSize(const MCSubtargetInfo *STI) { in getWavefrontSize() function 992 return divideCeil(FlatWorkGroupSize, getWavefrontSize(STI)); in getWavesPerWorkGroup()
|