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.cpp395 OMPUpdateClause *OMPUpdateClause::Create(const ASTContext &C, in Create()
398 return new (C) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/false); in Create()
401 OMPUpdateClause *
402 OMPUpdateClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
407 alignof(OMPUpdateClause)); in Create()
409 new (Mem) OMPUpdateClause(StartLoc, EndLoc, /*IsExtended=*/true); in Create()
416 OMPUpdateClause *OMPUpdateClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
419 return new (C) OMPUpdateClause(/*IsExtended=*/false); in CreateEmpty()
422 alignof(OMPUpdateClause)); in CreateEmpty()
423 auto *Clause = new (Mem) OMPUpdateClause(/*IsExtended=*/true); in CreateEmpty()
[all …]
H A DStmtProfile.cpp592 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2606 class OMPUpdateClause final
2608 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation,
2645 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc, in OMPUpdateClause() function
2651 OMPUpdateClause(bool IsExtended) in OMPUpdateClause() function
2661 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
2672 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
2683 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
H A DRecursiveASTVisitor.h3525 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td537 let clangClass = "OMPUpdateClause";
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp11145 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause()
11576 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
H A DASTWriter.cpp7898 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp5653 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp16513 return OMPUpdateClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPUpdateClause()
17094 return OMPUpdateClause::Create(getASTContext(), StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
H A DTreeTransform.h10680 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()