Home
last modified time | relevance | path

Searched refs:OMPAlignedClause (Results 1 – 11 of 11) sorted by relevance

/openbsd/gnu/llvm/clang/lib/AST/
H A DOpenMPClause.cpp627 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 DStmtProfile.cpp767 void OMPClauseProfiler::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DOpenMPClause.h4181 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 DRecursiveASTVisitor.h3555 bool RecursiveASTVisitor<Derived>::VisitOMPAlignedClause(OMPAlignedClause *C) {
/openbsd/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td104 let clangClass = "OMPAlignedClause";
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp2221 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 DASTReader.cpp10117 C = OMPAlignedClause::CreateEmpty(Context, Record.readInt()); in readClause()
10738 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
H A DASTWriter.cpp6717 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) { in VisitOMPAlignedClause()
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2618 void OMPClauseEnqueue::VisitOMPAlignedClause(const OMPAlignedClause *C) { in VisitOMPAlignedClause()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp4952 if (auto *AC = dyn_cast<OMPAlignedClause>(C)) { in ActOnOpenMPRegionEnd()
20225 return OMPAlignedClause::Create(Context, StartLoc, LParenLoc, ColonLoc, in ActOnOpenMPAlignedClause()
H A DTreeTransform.h10155 TreeTransform<Derived>::TransformOMPAlignedClause(OMPAlignedClause *C) { in TransformOMPAlignedClause()