Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp394 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 DStmtProfile.cpp579 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2109 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 DRecursiveASTVisitor.h3454 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td459 let clangClass = "OMPUpdateClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10508 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause()
10903 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
H A DASTWriter.cpp7217 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp5446 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp15975 return OMPUpdateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPUpdateClause()
16508 return OMPUpdateClause::Create(getASTContext(), StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
H A DTreeTransform.h10219 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()