Home
last modified time | relevance | path

Searched refs:OMPCapturedExprDecl (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclOpenMP.cpp174 void OMPCapturedExprDecl::anchor() {} in anchor()
176 OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC, in Create()
179 return new (C, DC) OMPCapturedExprDecl( in Create()
183 OMPCapturedExprDecl *OMPCapturedExprDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
185 return new (C, ID) OMPCapturedExprDecl(C, nullptr, nullptr, QualType(), in CreateDeserialized()
189 SourceRange OMPCapturedExprDecl::getSourceRange() const { in getSourceRange()
H A DDeclPrinter.cpp111 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
1903 void DeclPrinter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
H A DOpenMPClause.cpp296 if (auto *OED = dyn_cast<OMPCapturedExprDecl>(DS->getSingleDecl())) in getAddrOfExprAsWritten()
2250 if (isa<OMPCapturedExprDecl>(DRE->getDecl())) in VisitOMPClauseList()
H A DStmtPrinter.cpp1304 if (const auto *OCED = dyn_cast<OMPCapturedExprDecl>(VD)) { in VisitDeclRefExpr()
H A DTextNodeDumper.cpp2537 void TextNodeDumper::VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclOpenMP.h383 class OMPCapturedExprDecl final : public VarDecl {
387 OMPCapturedExprDecl(ASTContext &C, DeclContext *DC, IdentifierInfo *Id, in OMPCapturedExprDecl() function
396 static OMPCapturedExprDecl *Create(ASTContext &C, DeclContext *DC,
400 static OMPCapturedExprDecl *CreateDeserialized(ASTContext &C,
H A DTextNodeDumper.h372 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D);
H A DASTNodeTraverser.h637 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
H A DRecursiveASTVisitor.h1831 DEF_TRAVERSE_DECL(OMPCapturedExprDecl, { TRY_TO(TraverseVarHelper(D)); })
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp301 if (isa<OMPCapturedExprDecl>(VD)) in VisitOpenMPCapturedStmt()
362 if (isa<OMPCapturedExprDecl>(VD)) in VisitCapturedStmt()
375 if (E->isInitCapture(&C) || isa<OMPCapturedExprDecl>(VD)) in VisitLambdaExpr()
388 if (isa<OMPCapturedExprDecl>(VD) || VD->isInitCapture()) in VisitBlockExpr()
416 if (isa<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr()
H A DCGStmtOpenMP.cpp266 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in OMPSimdLexicalScope()
272 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in OMPSimdLexicalScope()
2573 const auto *CED = dyn_cast<OMPCapturedExprDecl>(OrigVD); in EmitOMPSimdFinal()
7510 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) { in EmitOMPUseDevicePtrClause()
7560 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) { in EmitOMPUseDeviceAddrClause()
7651 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in EmitOMPTargetDataDirective()
7657 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in EmitOMPTargetDataDirective()
8477 if (isa<OMPCapturedExprDecl>(VD)) { in EmitSimpleOMPExecutableDirective()
8489 if (const auto *VD = dyn_cast<OMPCapturedExprDecl>( in EmitSimpleOMPExecutableDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp1256 if (const auto *CED = dyn_cast<OMPCapturedExprDecl>(D)) in getCanonicalDecl()
2261 !(isa<OMPCapturedExprDecl>(D) && !D->hasAttr<OMPCaptureNoInitAttr>() && in isOpenMPCapturedByRef()
2262 !cast<OMPCapturedExprDecl>(D)->getInit()->isGLValue()) && in isOpenMPCapturedByRef()
2326 static OMPCapturedExprDecl *buildCaptureDecl(Sema &S, IdentifierInfo *Id,
2474 OMPCapturedExprDecl *CD = buildCaptureDecl( in isOpenMPCapturedDecl()
2526 if (DVarPrivate.CKind == OMPC_private && isa<OMPCapturedExprDecl>(D) && in isOpenMPPrivateDecl()
3800 if (!CS || (isa<OMPCapturedExprDecl>(VD) && !CS->capturesVariable(VD) && in VisitDeclRefExpr()
3803 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr()
3808 } else if (VD->isImplicit() || isa<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr()
4429 static OMPCapturedExprDecl *buildCaptureDecl(Sema &S, IdentifierInfo *Id, in buildCaptureDecl()
[all …]
H A DSemaTemplateInstantiateDecl.cpp4368 OMPCapturedExprDecl * /*D*/) { in VisitOMPCapturedExprDecl() argument
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp454 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
3096 void ASTDeclReader::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
4197 D = OMPCapturedExprDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp176 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
2341 void ASTDeclWriter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()