25#include "llvm/IR/IntrinsicsAMDGPU.h"
30#define DEBUG_TYPE "amdgpu-lower-kernel-attributes"
37enum DispatchPackedOffsets {
48enum ImplicitArgOffsets {
49 HIDDEN_BLOCK_COUNT_X = 0,
50 HIDDEN_BLOCK_COUNT_Y = 4,
51 HIDDEN_BLOCK_COUNT_Z = 8,
53 HIDDEN_GROUP_SIZE_X = 12,
54 HIDDEN_GROUP_SIZE_Y = 14,
55 HIDDEN_GROUP_SIZE_Z = 16,
57 HIDDEN_REMAINDER_X = 18,
58 HIDDEN_REMAINDER_Y = 20,
59 HIDDEN_REMAINDER_Z = 22,
62class AMDGPULowerKernelAttributes :
public ModulePass {
68 bool runOnModule(
Module &M)
override;
70 StringRef getPassName()
const override {
return "AMDGPU Kernel Attributes"; }
78 auto IntrinsicId = IsV5OrAbove ? Intrinsic::amdgcn_implicitarg_ptr
79 : Intrinsic::amdgcn_dispatch_ptr;
87 if (MaxNumGroups == 0 || MaxNumGroups == std::numeric_limits<uint32_t>::max())
90 if (!Load->getType()->isIntegerTy(32))
96 Load->setMetadata(LLVMContext::MD_range,
Range);
102 auto *MD =
F->getMetadata(
"reqd_work_group_size");
103 const bool HasReqdWorkGroupSize = MD && MD->getNumOperands() == 3;
105 const bool HasUniformWorkGroupSize =
106 F->getFnAttribute(
"uniform-work-group-size").getValueAsBool();
112 if (!HasReqdWorkGroupSize && !HasUniformWorkGroupSize &&
114 Intrinsic::amdgcn_dispatch_ptr) &&
115 none_of(MaxNumWorkgroups, [](
unsigned X) {
return X != 0; }))
118 Value *BlockCounts[3] = {
nullptr,
nullptr,
nullptr};
119 Value *GroupSizes[3] = {
nullptr,
nullptr,
nullptr};
120 Value *Remainders[3] = {
nullptr,
nullptr,
nullptr};
121 Value *GridSizes[3] = {
nullptr,
nullptr,
nullptr};
142 if (!BCI->hasOneUse())
147 if (!Load || !Load->isSimple())
150 unsigned LoadSize =
DL.getTypeStoreSize(Load->getType());
155 case HIDDEN_BLOCK_COUNT_X:
157 BlockCounts[0] = Load;
161 case HIDDEN_BLOCK_COUNT_Y:
163 BlockCounts[1] = Load;
167 case HIDDEN_BLOCK_COUNT_Z:
169 BlockCounts[2] = Load;
173 case HIDDEN_GROUP_SIZE_X:
175 GroupSizes[0] = Load;
177 case HIDDEN_GROUP_SIZE_Y:
179 GroupSizes[1] = Load;
181 case HIDDEN_GROUP_SIZE_Z:
183 GroupSizes[2] = Load;
185 case HIDDEN_REMAINDER_X:
187 Remainders[0] = Load;
189 case HIDDEN_REMAINDER_Y:
191 Remainders[1] = Load;
193 case HIDDEN_REMAINDER_Z:
195 Remainders[2] = Load;
202 case WORKGROUP_SIZE_X:
204 GroupSizes[0] = Load;
206 case WORKGROUP_SIZE_Y:
208 GroupSizes[1] = Load;
210 case WORKGROUP_SIZE_Z:
212 GroupSizes[2] = Load;
232 bool MadeChange =
false;
233 if (IsV5OrAbove && HasUniformWorkGroupSize) {
243 for (
int I = 0;
I < 3; ++
I) {
244 Value *BlockCount = BlockCounts[
I];
264 for (
Value *Remainder : Remainders) {
267 Remainder->replaceAllUsesWith(
271 }
else if (HasUniformWorkGroupSize) {
291 for (
int I = 0;
I < 3; ++
I) {
292 Value *GroupSize = GroupSizes[
I];
293 Value *GridSize = GridSizes[
I];
294 if (!GroupSize || !GridSize)
308 for (
User *
UMin : ZextGroupSize->users()) {
313 if (HasReqdWorkGroupSize) {
317 KnownSize,
UMin->getType(),
false,
DL));
319 UMin->replaceAllUsesWith(ZextGroupSize);
333 for (
int I = 0;
I < 3;
I++) {
334 Value *GroupSize = GroupSizes[
I];
354 Value *
GEP = Builder.CreateInBoundsGEP(
355 Builder.getInt8Ty(), CI,
356 {ConstantInt::get(Type::getInt64Ty(CI->getContext()),
357 HIDDEN_BLOCK_COUNT_X + I * sizeof(uint32_t))});
358 Instruction *BlockCount = Builder.CreateLoad(Builder.getInt32Ty(),
GEP);
359 BlockCount->
setMetadata(LLVMContext::MD_invariant_load,
364 Value *BlockCountExt = Builder.CreateZExt(BlockCount, Inst->
getType());
373 if (!HasReqdWorkGroupSize)
376 for (
int I = 0;
I < 3;
I++) {
377 Value *GroupSize = GroupSizes[
I];
392bool AMDGPULowerKernelAttributes::runOnModule(
Module &M) {
393 bool MadeChange =
false;
401 SmallPtrSet<Instruction *, 4> HandledUses;
402 for (
auto *U :
BasePtr->users()) {
404 if (HandledUses.
insert(CI).second) {
414 "AMDGPU Kernel Attributes",
false,
false)
418char AMDGPULowerKernelAttributes::
ID = 0;
421 return new AMDGPULowerKernelAttributes();
428 Function *BasePtr = getBasePtrIntrinsic(*
F.getParent(), IsV5OrAbove);
static void annotateGridSizeLoadWithRangeMD(LoadInst *Load, uint32_t MaxNumGroups)
static bool processUse(CallInst *CI, bool IsV5OrAbove)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Expand Atomic instructions
This file contains the declarations for the subclasses of Constant, which represent the different fla...
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
Class for arbitrary precision integers.
Represent the analysis usage information of a pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
This class represents a function call, abstracting a target machine's calling convention.
@ ICMP_ULT
unsigned less than
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
LLVM_ABI const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
An instruction for reading from memory.
LLVM_ABI MDNode * createRange(const APInt &Lo, const APInt &Hi)
Return metadata describing the range [Lo, Hi).
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
A Module instance is used to store all the information related to an LLVM module.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
bool isIntegerTy() const
True if this is an instance of IntegerType.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
user_iterator user_begin()
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
iterator_range< user_iterator > users()
LLVM_ABI LLVMContext & getContext() const
All values hold a context through their type.
unsigned getAMDHSACodeObjectVersion(const Module &M)
SmallVector< unsigned > getIntegerVecAttribute(const Function &F, StringRef Name, unsigned Size, unsigned DefaultVal)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
LLVM_ABI Function * getDeclarationIfExists(const Module *M, ID id)
Look up the Function declaration of the intrinsic id in the Module M and return it if it exists.
specific_intval< false > m_SpecificInt(const APInt &V)
Match a specific integer value or vector with all elements equal to the value.
match_combine_or< CastInst_match< OpTy, ZExtInst >, OpTy > m_ZExtOrSelf(const OpTy &Op)
bool match(Val *V, const Pattern &P)
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
IntrinsicID_match m_Intrinsic()
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
BinaryOp_match< LHS, RHS, Instruction::Mul > m_Mul(const LHS &L, const RHS &R)
auto m_GEP(const OperandTypes &...Ops)
Matches GetElementPtrInst.
SpecificCmpClass_match< LHS, RHS, ICmpInst > m_SpecificICmp(CmpPredicate MatchPred, const LHS &L, const RHS &R)
OneOps_match< OpTy, Instruction::Load > m_Load(const OpTy &Op)
Matches LoadInst.
BinaryOp_match< LHS, RHS, Instruction::UDiv > m_UDiv(const LHS &L, const RHS &R)
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
BinaryOp_match< LHS, RHS, Instruction::Sub > m_Sub(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty > m_UMin(const LHS &L, const RHS &R)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Value * GetPointerBaseWithConstantOffset(Value *Ptr, int64_t &Offset, const DataLayout &DL, bool AllowNonInbounds=true)
Analyze the specified pointer to see if it can be expressed as a base pointer plus a constant offset.
ModulePass * createAMDGPULowerKernelAttributesPass()
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
@ UMin
Unsigned integer min implemented in terms of select(cmp()).
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI Constant * ConstantFoldIntegerCast(Constant *C, Type *DestTy, bool IsSigned, const DataLayout &DL)
Constant fold a zext, sext or trunc, depending on IsSigned and whether the DestTy is wider or narrowe...
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)