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() 2439 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
|
| H A D | StmtProfile.cpp | 817 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 4871 class OMPAlignedClause final 4872 : public OMPVarListClause<OMPAlignedClause>, 4873 private llvm::TrailingObjects<OMPAlignedClause, Expr *> { 4891 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function 4894 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause() 4901 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function 4902 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause() 4916 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc, 4926 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 4946 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
|
| H A D | RecursiveASTVisitor.h | 3755 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMP.td | 57 let clangClass = "OMPAlignedClause";
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 2296 for (const auto *Clause : D.getClausesOfKind<OMPAlignedClause>()) { in emitAlignedClause() 2765 isa<OMPOrderClause>(C) || isa<OMPAlignedClause>(C))) in isSimdSupportedByOpenMPIRBuilder() 2795 for (const auto *Clause : S.getClausesOfKind<OMPAlignedClause>()) { in GetAlignedMapping()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11263 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause() 11961 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| H A D | ASTWriter.cpp | 8165 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 4750 if (auto *AC = dyn_cast<OMPAlignedClause>(C)) { in ActOnOpenMPRegionEnd() 20060 return OMPAlignedClause::Create(getASTContext(), StartLoc, LParenLoc, in ActOnOpenMPAlignedClause()
|
| H A D | TreeTransform.h | 11177 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
|