Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp440 OMPSectionsDirective *OMPSectionsDirective::Create( in Create()
444 auto *Dir = createDirective<OMPSectionsDirective>(C, Clauses, AssociatedStmt, in Create()
452 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
455 return createEmptyDirective<OMPSectionsDirective>(C, NumClauses, in CreateEmpty()
DStmtProfile.cpp930 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
DStmtPrinter.cpp687 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h1718 class OMPSectionsDirective : public OMPExecutableDirective {
1730 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionsDirective() function
1736 explicit OMPSectionsDirective() in OMPSectionsDirective() function
1759 static OMPSectionsDirective *
1770 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
1778 return const_cast<OMPSectionsDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
DRecursiveASTVisitor.h2863 DEF_TRAVERSE_STMT(OMPSectionsDirective,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DStmtNodes.td230 def OMPSectionsDirective : StmtNode<OMPExecutableDirective>;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2337 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
3232 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2241 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp221 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
DCGStmtOpenMP.cpp1324 TaskRedRef = cast<OMPSectionsDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
3803 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections()
3821 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
DCodeGenFunction.h3447 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DTreeTransform.h8575 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
DSemaOpenMP.cpp9809 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()