reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/clang/include/clang/AST/AttrImpl.inc
 2298     OS << " __attribute__((launch_bounds(" << getMaxThreads() << ", " << getMinBlocks() << ")))";
 2302     OS << " __declspec(__launch_bounds__(" << getMaxThreads() << ", " << getMinBlocks() << "))";
gen/tools/clang/include/clang/AST/AttrNodeTraverse.inc
   66     Visit(SA->getMinBlocks());
gen/tools/clang/include/clang/AST/AttrVisitor.inc
 1707   if (!getDerived().TraverseStmt(A->getMinBlocks()))
gen/tools/clang/include/clang/Serialization/AttrPCHWrite.inc
  388     Record.AddStmt(SA->getMinBlocks());
tools/clang/lib/CodeGen/TargetInfo.cpp
 6503       if (Attr->getMinBlocks()) {
 6505         MinBlocks = Attr->getMinBlocks()->EvaluateKnownConstInt(M.getContext());
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  250   if (Attr.getMinBlocks()) {
  251     Result = S.SubstExpr(Attr.getMinBlocks(), TemplateArgs);