Searched refs:OMPLinearClause (Results 1 – 11 of 11) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | OpenMPClause.cpp | 80 return static_cast<const OMPLinearClause *>(C); in get() 187 return static_cast<const OMPLinearClause *>(C); in get() 534 void OMPLinearClause::setPrivates(ArrayRef<Expr *> PL) { in setPrivates() 540 void OMPLinearClause::setInits(ArrayRef<Expr *> IL) { in setInits() 546 void OMPLinearClause::setUpdates(ArrayRef<Expr *> UL) { in setUpdates() 552 void OMPLinearClause::setFinals(ArrayRef<Expr *> FL) { in setFinals() 558 void OMPLinearClause::setUsedExprs(ArrayRef<Expr *> UE) { in setUsedExprs() 565 OMPLinearClause *OMPLinearClause::Create( in Create() 575 OMPLinearClause *Clause = new (Mem) OMPLinearClause( in Create() 595 OMPLinearClause *OMPLinearClause::CreateEmpty(const ASTContext &C, in CreateEmpty() [all …]
|
| D | StmtProfile.cpp | 723 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/ |
| D | OpenMPClause.h | 3745 class OMPLinearClause final 3746 : public OMPVarListClause<OMPLinearClause>, 3748 private llvm::TrailingObjects<OMPLinearClause, Expr *> { 3775 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLinearClause() function 3779 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear, StartLoc, in OMPLinearClause() 3787 explicit OMPLinearClause(unsigned NumVars) in OMPLinearClause() function 3788 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear, in OMPLinearClause() 3871 static OMPLinearClause * 3882 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 3998 auto Children = const_cast<OMPLinearClause *>(this)->children(); in children() [all …]
|
| D | RecursiveASTVisitor.h | 3368 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | SemaOpenMP.cpp | 2739 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV, 4482 SmallVector<const OMPLinearClause *, 4> LCs; in ActOnOpenMPRegionEnd() 4527 LCs.push_back(cast<OMPLinearClause>(Clause)); in ActOnOpenMPRegionEnd() 4556 for (const OMPLinearClause *C : LCs) { in ActOnOpenMPRegionEnd() 5099 auto *PC = cast<OMPLinearClause>(Cl); in checkAllocateClauses() 9683 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPSimdDirective() 9722 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForDirective() 9759 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPForSimdDirective() 10026 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForDirective() 10067 if (auto *LC = dyn_cast<OMPLinearClause>(C)) in ActOnOpenMPParallelForSimdDirective() [all …]
|
| D | TreeTransform.h | 9746 TreeTransform<Derived>::TransformOMPLinearClause(OMPLinearClause *C) { in TransformOMPLinearClause()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | CGStmtOpenMP.cpp | 1526 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) { in checkForLastprivateConditionalUpdate() 1865 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLoopBody() 2104 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseInit() 2143 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseFinal() 2308 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClause()
|
| D | CGOpenMPRuntime.cpp | 12350 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) { in tryToDisableInnerAnalysis()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| D | OMP.td | 90 let clangClass = "OMPLinearClause";
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/ |
| D | ASTReader.cpp | 11861 C = OMPLinearClause::CreateEmpty(Context, Record.readInt()); in readClause() 12412 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|
| D | ASTWriter.cpp | 6315 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
|