Searched refs:OMPAlignedClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 632 OMPAlignedClause * 633 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 637 OMPAlignedClause *Clause = new (Mem) in Create() 638 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size()); in Create() 644 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 647 return new (Mem) OMPAlignedClause(NumVars); in CreateEmpty() 2245 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
|
| H A D | StmtProfile.cpp | 787 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 4317 class OMPAlignedClause final 4318 : public OMPVarListClause<OMPAlignedClause>, 4319 private llvm::TrailingObjects<OMPAlignedClause, Expr *> { 4337 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function 4340 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause() 4347 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function 4348 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause() 4362 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc, 4372 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 4392 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
|
| H A D | RecursiveASTVisitor.h | 3646 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 50 let clangClass = "OMPAlignedClause";
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 2249 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause() 2635 isa<OMPOrderClause>(C) || isa<OMPAlignedClause>(C))) in isSupportedByOpenMPIRBuilder() 2664 for (const auto *Clause : S.getClausesOfKind<OMPAlignedClause>()) { in GetAlignedMapping()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 10598 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause() 11243 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| H A D | ASTWriter.cpp | 7449 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 4752 if (auto *AC = dyn_cast<OMPAlignedClause>(C)) { in ActOnOpenMPRegionEnd() 19398 return OMPAlignedClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPAlignedClause()
|
| H A D | TreeTransform.h | 10668 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
|