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.cpp110 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
1867 void DeclPrinter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
H A DOpenMPClause.cpp295 if (auto *OED = dyn_cast<OMPCapturedExprDecl>(DS->getSingleDecl())) in getAddrOfExprAsWritten()
2091 if (isa<OMPCapturedExprDecl>(DRE->getDecl())) in VisitOMPClauseList()
H A DStmtPrinter.cpp1199 if (const auto *OCED = dyn_cast<OMPCapturedExprDecl>(Node->getDecl())) { in VisitDeclRefExpr()
H A DTextNodeDumper.cpp2378 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.h371 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D);
H A DASTNodeTraverser.h601 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
H A DRecursiveASTVisitor.h1801 DEF_TRAVERSE_DECL(OMPCapturedExprDecl, { TRY_TO(TraverseVarHelper(D)); })
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp300 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.cpp260 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in OMPSimdLexicalScope()
266 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in OMPSimdLexicalScope()
2449 const auto *CED = dyn_cast<OMPCapturedExprDecl>(OrigVD); in EmitOMPSimdFinal()
7290 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) { in EmitOMPUseDevicePtrClause()
7340 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) { in EmitOMPUseDeviceAddrClause()
7431 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in EmitOMPTargetDataDirective()
7437 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in EmitOMPTargetDataDirective()
8175 if (isa<OMPCapturedExprDecl>(VD)) { in EmitSimpleOMPExecutableDirective()
8187 if (const auto *VD = dyn_cast<OMPCapturedExprDecl>( in EmitSimpleOMPExecutableDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp1276 if (const auto *CED = dyn_cast<OMPCapturedExprDecl>(D)) in getCanonicalDecl()
2285 !(isa<OMPCapturedExprDecl>(D) && !D->hasAttr<OMPCaptureNoInitAttr>() && in isOpenMPCapturedByRef()
2286 !cast<OMPCapturedExprDecl>(D)->getInit()->isGLValue()) && in isOpenMPCapturedByRef()
2350 static OMPCapturedExprDecl *buildCaptureDecl(Sema &S, IdentifierInfo *Id,
2498 OMPCapturedExprDecl *CD = buildCaptureDecl( in isOpenMPCapturedDecl()
2550 if (DVarPrivate.CKind == OMPC_private && isa<OMPCapturedExprDecl>(D) && in isOpenMPPrivateDecl()
3791 if (!CS || (isa<OMPCapturedExprDecl>(VD) && !CS->capturesVariable(VD) && in VisitDeclRefExpr()
3794 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr()
3799 } else if (VD->isImplicit() || isa<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr()
4432 static OMPCapturedExprDecl *buildCaptureDecl(Sema &S, IdentifierInfo *Id, in buildCaptureDecl()
[all …]
H A DSemaTemplateInstantiateDecl.cpp3823 OMPCapturedExprDecl * /*D*/) { in VisitOMPCapturedExprDecl() argument
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp471 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
3067 void ASTDeclReader::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
4119 D = OMPCapturedExprDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp163 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
2145 void ASTDeclWriter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()