Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A 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()
H A DStmtProfile.cpp930 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
H A DStmtPrinter.cpp687 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A 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()
H A DRecursiveASTVisitor.h2863 DEF_TRAVERSE_STMT(OMPSectionsDirective,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td230 def OMPSectionsDirective : StmtNode<OMPExecutableDirective>;
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2337 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
3232 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2241 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp221 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
H A 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()
H A DCodeGenFunction.h3447 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8575 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
H A DSemaOpenMP.cpp9809 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()