Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DOpenMPClause.cpp1025 OMPDependClause *
1026 OMPDependClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
1033 alignof(OMPDependClause)); in Create()
1034 OMPDependClause *Clause = new (Mem) in Create()
1035 OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size(), NumLoops); in Create()
1046 OMPDependClause *OMPDependClause::CreateEmpty(const ASTContext &C, unsigned N, in CreateEmpty()
1050 alignof(OMPDependClause)); in CreateEmpty()
1051 return new (Mem) OMPDependClause(N, NumLoops); in CreateEmpty()
1054 void OMPDependClause::setLoopData(unsigned NumLoop, Expr *Cnt) { in setLoopData()
1064 Expr *OMPDependClause::getLoopData(unsigned NumLoop) { in getLoopData()
[all …]
DStmtProfile.cpp790 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) { in VisitOMPDependClause()
DStmtPrinter.cpp782 PrintOMPExecutableDirective(Node, Node->hasClausesOfKind<OMPDependClause>()); in VisitOMPOrderedDirective()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.h46 class OMPDependClause; variable
1757 const OMPDependClause *C);
2507 const OMPDependClause *C) override;
DCGStmtOpenMP.cpp4355 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) { in EmitOMPTaskBasedDirective()
4674 for (const auto *C : S.getClausesOfKind<OMPDependClause>()) { in EmitOMPTargetTaskBasedDirective()
4841 if (const auto *DC = S.getSingleClause<OMPDependClause>()) { in EmitOMPDepobjDirective()
5316 if (S.hasClausesOfKind<OMPDependClause>()) { in EmitOMPOrderedDirective()
5319 for (const auto *DC : S.getClausesOfKind<OMPDependClause>()) in EmitOMPOrderedDirective()
DCGOpenMPRuntime.cpp10221 const bool RequiresOuterTask = D.hasClausesOfKind<OMPDependClause>() || in emitTargetCall()
11368 bool RequiresOuterTask = D.hasClausesOfKind<OMPDependClause>() || in emitTargetDataStandAloneCall()
12058 const OMPDependClause *C) { in emitDoacrossOrdered()
13040 const OMPDependClause *C) { in emitDoacrossOrdered()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOpenMPClause.h4625 class OMPDependClause final
4626 : public OMPVarListClause<OMPDependClause>,
4627 private llvm::TrailingObjects<OMPDependClause, Expr *> {
4652 OMPDependClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPDependClause() function
4654 : OMPVarListClause<OMPDependClause>(llvm::omp::OMPC_depend, StartLoc, in OMPDependClause()
4663 explicit OMPDependClause(unsigned N, unsigned NumLoops) in OMPDependClause() function
4664 : OMPVarListClause<OMPDependClause>(llvm::omp::OMPC_depend, in OMPDependClause()
4694 static OMPDependClause *Create(const ASTContext &C, SourceLocation StartLoc,
4707 static OMPDependClause *CreateEmpty(const ASTContext &C, unsigned N,
4716 return const_cast<OMPDependClause *>(this)->getModifier(); in getModifier()
[all …]
DRecursiveASTVisitor.h3518 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td169 let clangClass = "OMPDependClause";
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp87 llvm::DenseMap<OMPDependClause *, OperatorOffsetTy>;
999 void addDoacrossDependClause(OMPDependClause *C, in addDoacrossDependClause()
10329 if (auto *DC = dyn_cast<OMPDependClause>(C)) { in ActOnOpenMPOrderedDirective()
15158 const OMPDependClause *DependClause = nullptr; in ActOnOpenMPInteropDirective()
15168 } else if (const auto *DC = dyn_cast<OMPDependClause>(C)) { in ActOnOpenMPInteropDirective()
18391 auto *C = OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc, in ActOnOpenMPDependClause()
DTreeTransform.h9838 TreeTransform<Derived>::TransformOMPDependClause(OMPDependClause *C) { in TransformOMPDependClause()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReader.cpp11881 C = OMPDependClause::CreateEmpty(Context, NumVars, NumLoops); in readClause()
12519 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()
DASTWriter.cpp6390 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) { in VisitOMPDependClause()