Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DOpenMPClause.cpp374 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 DStmtProfile.cpp538 void OMPClauseProfiler::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DOpenMPClause.h1883 class OMPUpdateClause final
1885 private llvm::TrailingObjects<OMPUpdateClause, SourceLocation,
1922 OMPUpdateClause(SourceLocation StartLoc, SourceLocation EndLoc, in OMPUpdateClause() function
1928 OMPUpdateClause(bool IsExtended) in OMPUpdateClause() function
1938 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
1949 static OMPUpdateClause *Create(const ASTContext &C, SourceLocation StartLoc,
1960 static OMPUpdateClause *CreateEmpty(const ASTContext &C, bool IsExtended);
H A DRecursiveASTVisitor.h3172 bool RecursiveASTVisitor<Derived>::VisitOMPUpdateClause(OMPUpdateClause *) {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td159 def OMPC_Update : Clause<"update"> { let clangClass = "OMPUpdateClause"; }
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp11757 C = OMPUpdateClause::CreateEmpty(Context, Record.readInt()); in readClause()
12097 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
H A DASTWriter.cpp6120 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *C) { in VisitOMPUpdateClause()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp4828 if (const auto *UC = S.getSingleClause<OMPUpdateClause>()) { in EmitOMPDepobjDirective()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2261 void OMPClauseEnqueue::VisitOMPUpdateClause(const OMPUpdateClause *) {} in VisitOMPUpdateClause() argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp14274 return OMPUpdateClause::Create(Context, StartLoc, LParenLoc, KindKwLoc, Kind, in ActOnOpenMPUpdateClause()
14686 return OMPUpdateClause::Create(Context, StartLoc, EndLoc); in ActOnOpenMPUpdateClause()
H A DTreeTransform.h9316 TreeTransform<Derived>::TransformOMPUpdateClause(OMPUpdateClause *C) { in TransformOMPUpdateClause()