Home
last modified time | relevance | path

Searched refs:OMPLinearClause (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp81 return static_cast<const OMPLinearClause *>(C); in get()
199 return static_cast<const OMPLinearClause *>(C); in get()
554 void OMPLinearClause::setPrivates(ArrayRef<Expr *> PL) { in setPrivates()
560 void OMPLinearClause::setInits(ArrayRef<Expr *> IL) { in setInits()
566 void OMPLinearClause::setUpdates(ArrayRef<Expr *> UL) { in setUpdates()
572 void OMPLinearClause::setFinals(ArrayRef<Expr *> FL) { in setFinals()
578 void OMPLinearClause::setUsedExprs(ArrayRef<Expr *> UE) { in setUsedExprs()
585 OMPLinearClause *OMPLinearClause::Create( in Create()
596 OMPLinearClause *Clause = in Create()
597 new (Mem) OMPLinearClause(StartLoc, LParenLoc, Modifier, ModifierLoc, in Create()
[all …]
H A DStmtProfile.cpp763 void OMPClauseProfiler::VisitOMPLinearClause(const OMPLinearClause *C) { in VisitOMPLinearClause()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4027 class OMPLinearClause final
4028 : public OMPVarListClause<OMPLinearClause>,
4030 private llvm::TrailingObjects<OMPLinearClause, Expr *> {
4061 OMPLinearClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPLinearClause() function
4065 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear, StartLoc, in OMPLinearClause()
4074 explicit OMPLinearClause(unsigned NumVars) in OMPLinearClause() function
4075 : OMPVarListClause<OMPLinearClause>(llvm::omp::OMPC_linear, in OMPLinearClause()
4159 static OMPLinearClause *
4171 static OMPLinearClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
4293 auto Children = const_cast<OMPLinearClause *>(this)->children(); in children()
[all …]
H A DRecursiveASTVisitor.h3625 bool RecursiveASTVisitor<Derived>::VisitOMPLinearClause(OMPLinearClause *C) {
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1535 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) { in checkForLastprivateConditionalUpdate()
1919 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLoopBody()
2174 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseInit()
2214 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClauseFinal()
2372 for (const auto *C : D.getClausesOfKind<OMPLinearClause>()) { in EmitOMPLinearClause()
H A DCGOpenMPRuntime.cpp11544 for (const auto *C : S.getClausesOfKind<OMPLinearClause>()) { in tryToDisableInnerAnalysis()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td226 let clangClass = "OMPLinearClause";
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp3011 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV,
3026 auto *LC = dyn_cast<OMPLinearClause>(C); in finishLinearClauses()
4615 SmallVector<const OMPLinearClause *, 4> LCs; in ActOnOpenMPRegionEnd()
4657 LCs.push_back(cast<OMPLinearClause>(Clause)); in ActOnOpenMPRegionEnd()
4686 for (const OMPLinearClause *C : LCs) { in ActOnOpenMPRegionEnd()
5267 auto *PC = cast<OMPLinearClause>(Cl); in checkAllocateClauses()
19217 return OMPLinearClause::Create(getASTContext(), StartLoc, LParenLoc, LinKind, in ActOnOpenMPLinearClause()
19224 static bool FinishOpenMPLinearClause(OMPLinearClause &Clause, DeclRefExpr *IV, in FinishOpenMPLinearClause()
H A DTreeTransform.h10648 TreeTransform<Derived>::TransformOMPLinearClause(OMPLinearClause *C) { in TransformOMPLinearClause()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10595 C = OMPLinearClause::CreateEmpty(Context, Record.readInt()); in readClause()
11207 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()
H A DASTWriter.cpp7421 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) { in VisitOMPLinearClause()