Searched refs:OMPAlignedClause (Results 1 – 10 of 10) sorted by relevance
| /freebsd-14.2/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() 2243 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
|
| H A D | StmtProfile.cpp | 785 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 4277 class OMPAlignedClause final 4278 : public OMPVarListClause<OMPAlignedClause>, 4279 private llvm::TrailingObjects<OMPAlignedClause, Expr *> { 4297 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function 4300 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause() 4307 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function 4308 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause() 4322 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc, 4332 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 4352 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
|
| H A D | RecursiveASTVisitor.h | 3571 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 104 let clangClass = "OMPAlignedClause";
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 2221 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause() 2608 isa<OMPOrderClause>(C) || isa<OMPAlignedClause>(C))) in isSupportedByOpenMPIRBuilder() 2637 for (const auto *Clause : S.getClausesOfKind<OMPAlignedClause>()) { in GetAlignedMapping()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 10399 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause() 11042 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| H A D | ASTWriter.cpp | 6862 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 4967 if (auto *AC = dyn_cast<OMPAlignedClause>(C)) { in ActOnOpenMPRegionEnd() 20590 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()
|
| H A D | TreeTransform.h | 10332 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
|