Home
last modified time | relevance | path

Searched refs:OMPTaskgroupDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDStmtOpenMP.cpp670 OMPTaskgroupDirective *OMPTaskgroupDirective::Create( in Create()
673 unsigned Size = llvm::alignTo(sizeof(OMPTaskgroupDirective) + in Create()
677 OMPTaskgroupDirective *Dir = in Create()
678 new (Mem) OMPTaskgroupDirective(StartLoc, EndLoc, Clauses.size()); in Create()
685 OMPTaskgroupDirective *OMPTaskgroupDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
688 unsigned Size = llvm::alignTo(sizeof(OMPTaskgroupDirective) + in CreateEmpty()
692 return new (Mem) OMPTaskgroupDirective(NumClauses); in CreateEmpty()
HDStmtProfile.cpp868 void StmtProfiler::VisitOMPTaskgroupDirective(const OMPTaskgroupDirective *S) { in VisitOMPTaskgroupDirective()
HDStmtPrinter.cpp749 void StmtPrinter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *Node) { in VisitOMPTaskgroupDirective()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtOpenMP.h2193 class OMPTaskgroupDirective : public OMPExecutableDirective {
2201 OMPTaskgroupDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTaskgroupDirective() function
2210 explicit OMPTaskgroupDirective(unsigned NumClauses) in OMPTaskgroupDirective() function
2230 static OMPTaskgroupDirective *
2240 static OMPTaskgroupDirective *CreateEmpty(const ASTContext &C,
HDRecursiveASTVisitor.h2833 DEF_TRAVERSE_STMT(OMPTaskgroupDirective,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDStmtNodes.td233 def OMPTaskgroupDirective : StmtNode<OMPExecutableDirective>;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp2333 void ASTStmtReader::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
3167 S = OMPTaskgroupDirective::CreateEmpty( in ReadStmtFromStream()
HDASTWriterStmt.cpp2304 void ASTStmtWriter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { in VisitOMPTaskgroupDirective()
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmt.cpp244 EmitOMPTaskgroupDirective(cast<OMPTaskgroupDirective>(*S)); in EmitStmt()
HDCGStmtOpenMP.cpp221 if (const auto *TG = dyn_cast<OMPTaskgroupDirective>(&S)) { in OMPSimdLexicalScope()
3557 const OMPTaskgroupDirective &S) { in EmitOMPTaskgroupDirective()
HDCodeGenFunction.h3150 void EmitOMPTaskgroupDirective(const OMPTaskgroupDirective &S);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDTreeTransform.h8233 OMPTaskgroupDirective *D) { in TransformOMPTaskgroupDirective()
HDSemaOpenMP.cpp8484 return OMPTaskgroupDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPTaskgroupDirective()