Searched refs:OMPAlignedClause (Results 1 – 11 of 11) sorted by relevance
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | OpenMPClause.cpp | 627 OMPAlignedClause * 628 OMPAlignedClause::Create(const ASTContext &C, SourceLocation StartLoc, in Create() 632 OMPAlignedClause *Clause = new (Mem) in Create() 633 OMPAlignedClause(StartLoc, LParenLoc, ColonLoc, EndLoc, VL.size()); in Create() 639 OMPAlignedClause *OMPAlignedClause::CreateEmpty(const ASTContext &C, in CreateEmpty() 642 return new (Mem) OMPAlignedClause(NumVars); in CreateEmpty() 2178 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { in VisitOMPAlignedClause()
|
H A D | StmtProfile.cpp | 767 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 4181 class OMPAlignedClause final 4182 : public OMPVarListClause<OMPAlignedClause>, 4183 private llvm::TrailingObjects<OMPAlignedClause, Expr *> { 4201 OMPAlignedClause(SourceLocation StartLoc, SourceLocation LParenLoc, in OMPAlignedClause() function 4204 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, StartLoc, in OMPAlignedClause() 4211 explicit OMPAlignedClause(unsigned NumVars) in OMPAlignedClause() function 4212 : OMPVarListClause<OMPAlignedClause>(llvm::omp::OMPC_aligned, in OMPAlignedClause() 4226 static OMPAlignedClause *Create(const ASTContext &C, SourceLocation StartLoc, 4236 static OMPAlignedClause *CreateEmpty(const ASTContext &C, unsigned NumVars); 4256 auto Children = const_cast<OMPAlignedClause *>(this)->children(); in children()
|
H A D | RecursiveASTVisitor.h | 3555 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
|
/openbsd/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMP.td | 104 let clangClass = "OMPAlignedClause";
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | ASTReader.cpp | 10117 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause() 10738 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
H A D | ASTWriter.cpp | 6717 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CIndex.cpp | 2618 void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 4952 if (auto *AC = dyn_cast<OMPAlignedClause>(C)) { in ActOnOpenMPRegionEnd() 20225 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()
|
H A D | TreeTransform.h | 10155 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()
|