Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp221 OMPSectionsDirective *OMPSectionsDirective::Create( in Create()
225 llvm::alignTo(sizeof(OMPSectionsDirective), alignof(OMPClause *)); in Create()
228 OMPSectionsDirective *Dir = in Create()
229 new (Mem) OMPSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create()
236 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
240 llvm::alignTo(sizeof(OMPSectionsDirective), alignof(OMPClause *)); in CreateEmpty()
243 return new (Mem) OMPSectionsDirective(NumClauses); in CreateEmpty()
H A DStmtProfile.cpp789 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
H A DStmtPrinter.cpp662 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1246 class OMPSectionsDirective : public OMPExecutableDirective {
1258 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSectionsDirective() function
1268 explicit OMPSectionsDirective(unsigned NumClauses) in OMPSectionsDirective() function
1287 static OMPSectionsDirective *
1297 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2651 DEF_TRAVERSE_STMT(OMPSectionsDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td211 def OMPSectionsDirective : DStmt<OMPExecutableDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2006 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
2852 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp1971 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp206 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp2642 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections()
2660 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
H A DCodeGenFunction.h3113 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7803 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
H A DSemaOpenMP.cpp5913 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()