Home
last modified time | relevance | path

Searched refs:OMPArrayShapingExpr (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprOpenMP.h22 class OMPArrayShapingExpr final
24 private llvm::TrailingObjects<OMPArrayShapingExpr, Expr *, SourceRange> {
34 OMPArrayShapingExpr(QualType ExprTy, Expr *Op, SourceLocation L,
38 explicit OMPArrayShapingExpr(EmptyShell Shell, unsigned NumDims) in OMPArrayShapingExpr() function
60 static OMPArrayShapingExpr *Create(const ASTContext &Context, QualType T,
65 static OMPArrayShapingExpr *CreateEmpty(const ASTContext &Context,
H A DComputeDependence.h98 class OMPArrayShapingExpr; variable
195 ExprDependence computeDependence(OMPArrayShapingExpr *E);
H A DRecursiveASTVisitor.h2811 DEF_TRAVERSE_STMT(OMPArrayShapingExpr, {})
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp5237 void OMPArrayShapingExpr::setDimensions(ArrayRef<Expr *> Dims) { in setDimensions()
5244 void OMPArrayShapingExpr::setBracketsRanges(ArrayRef<SourceRange> BR) { in setBracketsRanges()
5251 OMPArrayShapingExpr::OMPArrayShapingExpr(QualType ExprTy, Expr *Op, in OMPArrayShapingExpr() function in OMPArrayShapingExpr
5261 OMPArrayShapingExpr *
5262 OMPArrayShapingExpr::Create(const ASTContext &Context, QualType T, Expr *Op, in Create()
5270 alignof(OMPArrayShapingExpr)); in Create()
5271 auto *E = new (Mem) OMPArrayShapingExpr(T, Op, L, R, Dims); in Create()
5276 OMPArrayShapingExpr *OMPArrayShapingExpr::CreateEmpty(const ASTContext &Context, in CreateEmpty()
5280 alignof(OMPArrayShapingExpr)); in CreateEmpty()
5281 return new (Mem) OMPArrayShapingExpr(EmptyShell(), NumDims); in CreateEmpty()
H A DComputeDependence.cpp469 ExprDependence clang::computeDependence(OMPArrayShapingExpr *E) { in computeDependence()
H A DStmtProfile.cpp1492 void StmtProfiler::VisitOMPArrayShapingExpr(const OMPArrayShapingExpr *S) { in VisitOMPArrayShapingExpr()
H A DStmtPrinter.cpp1708 void StmtPrinter::VisitOMPArrayShapingExpr(OMPArrayShapingExpr *Node) { in VisitOMPArrayShapingExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td88 def OMPArrayShapingExpr : StmtNode<Expr>;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp2214 isa<OMPArrayShapingExpr>(Last->getAssociatedExpression())) { in isOpenMPCapturedByRef()
3926 isa<OMPArrayShapingExpr>( in VisitDeclRefExpr()
4102 isa<OMPArrayShapingExpr>( in VisitMemberExpr()
20630 !isa<OMPArrayShapingExpr>(SimpleExpr)) { in ActOnOpenMPDependClause()
21089 bool VisitOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in VisitOMPArrayShapingExpr()
21254 isa<OMPArrayShapingExpr>(CI->getAssociatedExpression())) && in checkMapConflicts()
21257 isa<OMPArrayShapingExpr>(SI->getAssociatedExpression()))) { in checkMapConflicts()
21288 } else if (const auto *OASE = dyn_cast<OMPArrayShapingExpr>( in checkMapConflicts()
21964 auto *OAShE = dyn_cast<OMPArrayShapingExpr>(VE->IgnoreParens());
24088 !isa<OMPArrayShapingExpr>(SimpleExpr)) { in ActOnOpenMPAffinityClause()
[all …]
H A DTreeTransform.h13317 TreeTransform<Derived>::TransformOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in TransformOMPArrayShapingExpr()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp983 void ASTStmtReader::VisitOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in VisitOMPArrayShapingExpr()
3256 S = OMPArrayShapingExpr::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp915 void ASTStmtWriter::VisitOMPArrayShapingExpr(OMPArrayShapingExpr *E) { in VisitOMPArrayShapingExpr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp3540 const auto *OASE = dyn_cast<OMPArrayShapingExpr>(E); in getPointerAndSize()
6920 if (const auto *OAE = dyn_cast<OMPArrayShapingExpr>(E)) { in getExprTypeSize()
7301 const auto *OAShE = dyn_cast<OMPArrayShapingExpr>(AssocExpr);
7460 dyn_cast<OMPArrayShapingExpr>(I->getAssociatedExpression());
7487 isa<OMPArrayShapingExpr>(Next->getAssociatedExpression()) ||