Searched refs:OMPUpdateClause (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 394 OMPUpdateClause *OMPUpdateClause::Create(const ASTContext &C, in Create() 397 return new (C) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/false); in Create() 400 OMPUpdateClause * 401 OMPUpdateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 406 alignof(OMPUpdateClause)); in Create() 408 new (Mem) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/true); in Create() 415 OMPUpdateClause *OMPUpdateClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 418 return new (C) OMPUpdateClause(/*IsExtended=*/false); in CreateEmpty() 421 alignof(OMPUpdateClause)); in CreateEmpty() 422 auto *Clause = new (Mem) OMPUpdateClause(/*IsExtended=*/true); in CreateEmpty() [all …]
|
H A D | StmtProfile.cpp | 579 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 2109 class OMPUpdateClause final 2111 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation, 2148 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc, in OMPUpdateClause() function 2154 OMPUpdateClause(bool IsExtended) in OMPUpdateClause() function 2164 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc, 2175 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc, 2186 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
|
H A D | RecursiveASTVisitor.h | 3454 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 459 let clangClass = "OMPUpdateClause";
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10508 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause() 10903 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
H A D | ASTWriter.cpp | 7217 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmtOpenMP.cpp | 5446 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 15975 return OMPUpdateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPUpdateClause() 16508 return OMPUpdateClause::Create(getASTContext(), StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
|
H A D | TreeTransform.h | 10219 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()
|