Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
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()
2057 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
DStmtProfile.cpp747 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOpenMPClause.h4022 class OMPAlignedClause final
4023 : public OMPVarListClause<OMPAlignedClause>,
4024 private llvm::TrailingObjects<OMPAlignedClause, Expr *> {
4042 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function
4045 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause()
4052 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function
4053 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause()
4067 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc,
4077 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars);
4097 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
DRecursiveASTVisitor.h3389 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
DOMP.td94 let clangClass = "OMPAlignedClause";
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReader.cpp11864 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause()
12448 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
DASTWriter.cpp6343 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp2178 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp4620 if (auto *AC = dyn_cast<OMPAlignedClause>(C)) { in ActOnOpenMPRegionEnd()
17875 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()
DTreeTransform.h9765 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()