Searched refs:OMPUpdateClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 374 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 D | StmtProfile.cpp | 545 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 1991 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 D | RecursiveASTVisitor.h | 3212 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 161 def OMPC_Update : Clause<"update"> { let clangClass = "OMPUpdateClause"; }
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11792 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause() 12139 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
| H A D | ASTWriter.cpp | 6127 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 4854 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 14628 return OMPUpdateClause::Create(Context, StartLoc, LParenLoc, KindKwLoc, Kind, in ActOnOpenMPUpdateClause() 15069 return OMPUpdateClause::Create(Context, StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
|
| H A D | TreeTransform.h | 9372 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()
|