Home
last modified time | relevance | path

Searched refs:OMPParallelDirective (Results 1 – 15 of 15) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtOpenMP.cpp281 OMPParallelDirective *OMPParallelDirective::Create( in Create()
285 auto *Dir = createDirective<OMPParallelDirective>( in Create()
292 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
295 return createEmptyDirective<OMPParallelDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp941 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
H A DStmtPrinter.cpp738 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtOpenMP.h612 class OMPParallelDirective : public OMPExecutableDirective {
623 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPParallelDirective() function
629 explicit OMPParallelDirective() in OMPParallelDirective() function
652 static OMPParallelDirective *
662 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
670 return const_cast<OMPParallelDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
H A DRecursiveASTVisitor.h2951 DEF_TRAVERSE_STMT(OMPParallelDirective,
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td226 def OMPParallelDirective : StmtNode<OMPExecutableDirective>;
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp2342 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
3294 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2247 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp208 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3506 void EmitOMPParallelDirective(const OMPParallelDirective &S);
H A DCGStmtOpenMP.cpp1304 TaskRedRef = cast<OMPParallelDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
1731 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
H A DCGOpenMPRuntime.cpp1236 if (const auto *OPD = dyn_cast<OMPParallelDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2146 void VisitOMPParallelDirective(const OMPParallelDirective *D);
3041 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h8734 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
H A DSemaOpenMP.cpp7750 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPParallelDirective()