Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DOpenMPClause.cpp610 OMPAlignedClause *
611 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
615 OMPAlignedClause *Clause = new (Mem) in Create()
616 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size()); in Create()
622 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty()
625 return new (Mem) OMPAlignedClause(NumVars); in CreateEmpty()
2015 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
H A DStmtProfile.cpp740 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DOpenMPClause.h3914 class OMPAlignedClause final
3915 : public OMPVarListClause<OMPAlignedClause>,
3916 private llvm::TrailingObjects<OMPAlignedClause, Expr *> {
3934 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function
3937 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause()
3944 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function
3945 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause()
3959 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc,
3969 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
3989 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
H A DRecursiveASTVisitor.h3349 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td92 let clangClass = "OMPAlignedClause";
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp11829 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause()
12406 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
H A DASTWriter.cpp6336 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp2170 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2487 void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h9709 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
H A DSemaOpenMP.cpp17492 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()