Home
last modified time | relevance | path

Searched refs:MinBlocks (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaDeclAttr.cpp3588 Expr *MinBlocks, unsigned SpellingListIndex) { in AddLaunchBoundsAttr() argument
3589 CUDALaunchBoundsAttr TmpAttr(AttrRange, Context, MaxThreads, MinBlocks, in AddLaunchBoundsAttr()
3595 if (MinBlocks && !checkLaunchBoundsArgument(*this, MinBlocks, TmpAttr, 1)) in AddLaunchBoundsAttr()
3599 AttrRange, Context, MaxThreads, MinBlocks, SpellingListIndex)); in AddLaunchBoundsAttr()
HDSemaTemplateInstantiateDecl.cpp218 Expr *MinBlocks = nullptr; in instantiateDependentCUDALaunchBoundsAttr() local
223 MinBlocks = Result.getAs<Expr>(); in instantiateDependentCUDALaunchBoundsAttr()
226 S.AddLaunchBoundsAttr(Attr.getLocation(), New, MaxThreads, MinBlocks, in instantiateDependentCUDALaunchBoundsAttr()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDTargetInfo.cpp5179 llvm::APSInt MinBlocks(32); in setTargetAttributes() local
5180 MinBlocks = Attr->getMinBlocks()->EvaluateKnownConstInt(M.getContext()); in setTargetAttributes()
5181 if (MinBlocks > 0) in setTargetAttributes()
5183 addNVVMMetadata(F, "minctasm", MinBlocks.getExtValue()); in setTargetAttributes()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDAttr.td586 let Args = [ExprArgument<"MaxThreads">, ExprArgument<"MinBlocks", 1>];
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h7675 Expr *MinBlocks, unsigned SpellingListIndex);