Home
last modified time | relevance | path

Searched refs:OMPUpdateClause (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp374 OMPUpdateClause *OMPUpdateClause::Create(const ASTContext &C, in Create()
377 return new (C) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/false); in Create()
380 OMPUpdateClause *
381 OMPUpdateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
386 alignof(OMPUpdateClause)); in Create()
388 new (Mem) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/true); in Create()
395 OMPUpdateClause *OMPUpdateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
398 return new (C) OMPUpdateClause(/*IsExtended=*/false); in CreateEmpty()
401 alignof(OMPUpdateClause)); in CreateEmpty()
402 auto *Clause = new (Mem) OMPUpdateClause(/*IsExtended=*/true); in CreateEmpty()
[all …]
H A DStmtProfile.cpp545 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1991 class OMPUpdateClause final
1993 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation,
2030 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc, in OMPUpdateClause() function
2036 OMPUpdateClause(bool IsExtended) in OMPUpdateClause() function
2046 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
2057 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
2068 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
H A DRecursiveASTVisitor.h3212 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td161 def OMPC_Update : Clause<"update"> { let clangClass = "OMPUpdateClause"; }
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp11792 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause()
12139 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
H A DASTWriter.cpp6127 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp4854 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14628 return OMPUpdateClause::Create(Context, StartLoc, LParenLoc, KindKwLoc, Kind, in ActOnOpenMPUpdateClause()
15069 return OMPUpdateClause::Create(Context, StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
H A DTreeTransform.h9372 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()