Searched refs:OMPDependClause (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp828 OMPDependClause *
829 OMPDependClause::Create(const ASTContext &C, SourceLocation StartLoc,
835 OMPDependClause *Clause = new (Mem)
836 OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size(), NumLoops);
846 OMPDependClause *OMPDependClause::CreateEmpty(const ASTContext &C, unsigned N,
849 return new (Mem) OMPDependClause(N, NumLoops);
852 void OMPDependClause::setLoopData(unsigned NumLoop, Expr *Cnt) {
862 Expr *OMPDependClause::getLoopData(unsigned NumLoop) {
872 const Expr *OMPDependClause
[all...]
H A DStmtProfile.cpp713 void OMPClauseProfiler::VisitOMPDependClause(const OMPDependClause *C) {
H A DStmtPrinter.cpp761 PrintOMPExecutableDirective(Node, Node->hasClausesOfKind<OMPDependClause>());
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h42 class OMPDependClause;
1617 const OMPDependClause *C);
2272 const OMPDependClause *C) override;
H A DCGStmtOpenMP.cpp3210 for (const auto *C : S.getClausesOfKind<OMPDependClause>())
3451 for (const auto *C : S.getClausesOfKind<OMPDependClause>())
3856 if (S.hasClausesOfKind<OMPDependClause>()) {
3859 for (const auto *DC : S.getClausesOfKind<OMPDependClause>())
H A DCGOpenMPRuntime.cpp9164 const bool RequiresOuterTask = D.hasClausesOfKind<OMPDependClause>();
10213 if (D.hasClausesOfKind<OMPDependClause>())
10874 const OMPDependClause *C) {
11882 const OMPDependClause *C) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h3958 class OMPDependClause final
3959 : public OMPVarListClause<OMPDependClause>,
3960 private llvm::TrailingObjects<OMPDependClause, Expr *> {
3985 OMPDependClause(SourceLocation StartLoc, SourceLocation LParenLoc, function in class:clang::final
3987 : OMPVarListClause<OMPDependClause>(OMPC_depend, StartLoc, LParenLoc,
3995 explicit OMPDependClause(unsigned N, unsigned NumLoops) function in class:clang::final
3996 : OMPVarListClause<OMPDependClause>(OMPC_depend, SourceLocation(),
4023 static OMPDependClause *Create(const ASTContext &C, SourceLocation StartLoc,
4036 static OMPDependClause *CreateEmpty(const ASTContext &C, unsigned N,
4065 auto Children = const_cast<OMPDependClause *>(thi
[all...]
H A DRecursiveASTVisitor.h3331 bool RecursiveASTVisitor<Derived>::VisitOMPDependClause(OMPDependClause *C) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp75 llvm::DenseMap<OMPDependClause *, OperatorOffsetTy>;
853 void addDoacrossDependClause(OMPDependClause *C,
8507 if (auto *DC = dyn_cast<OMPDependClause>(C)) {
15076 auto *C = OMPDependClause::Create(Context, StartLoc, LParenLoc, EndLoc,
H A DTreeTransform.h9128 TreeTransform<Derived>::TransformOMPDependClause(OMPDependClause *C) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6337 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) {
H A DASTReader.cpp11643 C = OMPDependClause::CreateEmpty(Context, NumVars, NumLoops);
12142 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) {

Completed in 560 milliseconds