Searched refs:OMPAlignedClause (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 618 OMPAlignedClause * 619 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 623 OMPAlignedClause *Clause = new (Mem) in Create() 624 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size()); in Create() 630 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 633 return new (Mem) OMPAlignedClause(NumVars); in CreateEmpty() 2139 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
|
| H A D | StmtProfile.cpp | 758 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 4139 class OMPAlignedClause final 4140 : public OMPVarListClause<OMPAlignedClause>, 4141 private llvm::TrailingObjects<OMPAlignedClause, Expr *> { 4159 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function 4162 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause() 4169 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function 4170 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause() 4184 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc, 4194 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 4214 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
|
| H A D | RecursiveASTVisitor.h | 3537 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
|
| /llvm-project-15.0.7/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 94 let clangClass = "OMPAlignedClause";
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11650 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause() 12251 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| H A D | ASTWriter.cpp | 6545 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndex.cpp | 2604 void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 2213 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 4896 if (auto *AC = dyn_cast<OMPAlignedClause>(C)) { in ActOnOpenMPRegionEnd() 19942 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()
|
| H A D | TreeTransform.h | 10008 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
|