Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DOpenMPClause.cpp382 OMPUpdateClause *OMPUpdateClause::Create(const ASTContext &C, in Create()
385 return new (C) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/false); in Create()
388 OMPUpdateClause *
389 OMPUpdateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
394 alignof(OMPUpdateClause)); in Create()
396 new (Mem) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/true); in Create()
403 OMPUpdateClause *OMPUpdateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
406 return new (C) OMPUpdateClause(/*IsExtended=*/false); in CreateEmpty()
409 alignof(OMPUpdateClause)); in CreateEmpty()
410 auto *Clause = new (Mem) OMPUpdateClause(/*IsExtended=*/true); in CreateEmpty()
[all …]
H A DStmtProfile.cpp554 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h2067 class OMPUpdateClause final
2069 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation,
2106 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc, in OMPUpdateClause() function
2112 OMPUpdateClause(bool IsExtended) in OMPUpdateClause() function
2122 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
2133 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
2144 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
H A DRecursiveASTVisitor.h3355 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
/llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td199 def OMPC_Update : Clause<"update"> { let clangClass = "OMPUpdateClause"; }
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp11575 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11940 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
H A DASTWriter.cpp6322 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2372 void OMPClauseEnqueue::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp5291 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp16675 return OMPUpdateClause::Create(Context, StartLoc, LParenLoc, KindKwLoc, Kind, in ActOnOpenMPUpdateClause()
17137 return OMPUpdateClause::Create(Context, StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
H A DTreeTransform.h9599 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()