Searched refs:OMPUpdateClause (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 382 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 D | StmtProfile.cpp | 554 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 2067 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 D | RecursiveASTVisitor.h | 3355 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
|
| /llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 199 def OMPC_Update : Clause<"update"> { let clangClass = "OMPUpdateClause"; }
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11575 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause() 11940 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
| H A D | ASTWriter.cpp | 6322 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndex.cpp | 2372 void OMPClauseEnqueue::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 5291 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 16675 return OMPUpdateClause::Create(Context, StartLoc, LParenLoc, KindKwLoc, Kind, in ActOnOpenMPUpdateClause() 17137 return OMPUpdateClause::Create(Context, StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
|
| H A D | TreeTransform.h | 9599 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()
|