Searched refs:OMPCapturedExprDecl (Results 1 – 15 of 15) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclOpenMP.cpp | 172 void OMPCapturedExprDecl::anchor() {} in anchor() 174 OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC, in Create() 177 return new (C, DC) OMPCapturedExprDecl( in Create() 181 OMPCapturedExprDecl *OMPCapturedExprDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized() 183 return new (C, ID) OMPCapturedExprDecl(C, nullptr, nullptr, QualType(), in CreateDeserialized() 187 SourceRange OMPCapturedExprDecl::getSourceRange() const { in getSourceRange()
|
| H A D | DeclPrinter.cpp | 108 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D); 1733 void DeclPrinter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
|
| H A D | OpenMPClause.cpp | 275 if (auto *OED = dyn_cast<OMPCapturedExprDecl>(DS->getSingleDecl())) in getAddrOfExprAsWritten() 1907 if (isa<OMPCapturedExprDecl>(DRE->getDecl())) in VisitOMPClauseList()
|
| H A D | TextNodeDumper.cpp | 1872 void TextNodeDumper::VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
|
| H A D | StmtPrinter.cpp | 998 if (const auto *OCED = dyn_cast<OMPCapturedExprDecl>(Node->getDecl())) { in VisitDeclRefExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclOpenMP.h | 383 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, unsigned ID);
|
| H A D | TextNodeDumper.h | 341 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D);
|
| H A D | ASTNodeTraverser.h | 493 void VisitOMPCapturedExprDecl(const OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
|
| H A D | RecursiveASTVisitor.h | 1645 DEF_TRAVERSE_DECL(OMPCapturedExprDecl, { TRY_TO(TraverseVarHelper(D)); })
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeGPU.cpp | 331 if (isa<OMPCapturedExprDecl>(VD)) in VisitOpenMPCapturedStmt() 393 if (isa<OMPCapturedExprDecl>(VD)) in VisitCapturedStmt() 406 if (E->isInitCapture(&C) || isa<OMPCapturedExprDecl>(VD)) in VisitLambdaExpr() 419 if (isa<OMPCapturedExprDecl>(VD) || VD->isInitCapture()) in VisitBlockExpr() 447 if (isa<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr()
|
| H A D | CGStmtOpenMP.cpp | 229 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in OMPSimdLexicalScope() 235 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(D)) in OMPSimdLexicalScope() 2386 const auto *CED = dyn_cast<OMPCapturedExprDecl>(OrigVD); in EmitOMPSimdFinal() 6482 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) { in EmitOMPUseDevicePtrClause() 6552 if (const auto *OED = dyn_cast<OMPCapturedExprDecl>(MatchingVD)) { in EmitOMPUseDeviceAddrClause() 7155 if (isa<OMPCapturedExprDecl>(VD)) { in EmitSimpleOMPExecutableDirective() 7167 if (const auto *VD = dyn_cast<OMPCapturedExprDecl>( in EmitSimpleOMPExecutableDirective()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 1130 if (const auto *CED = dyn_cast<OMPCapturedExprDecl>(D)) in getCanonicalDecl() 2128 !cast<OMPCapturedExprDecl>(D)->getInit()->isGLValue()) && in isOpenMPCapturedByRef() 3473 if (auto *CED = dyn_cast<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr() 3478 } else if (VD->isImplicit() || isa<OMPCapturedExprDecl>(VD)) in VisitDeclRefExpr() 4320 auto *CED = OMPCapturedExprDecl::Create(C, S.CurContext, Id, Ty, in buildCaptureDecl() 4332 OMPCapturedExprDecl *CD; in buildCapture() 4334 CD = cast<OMPCapturedExprDecl>(VD); in buildCapture() 4345 OMPCapturedExprDecl *CD = buildCaptureDecl( in buildCapture() 8968 if (isa<OMPCapturedExprDecl>(DRE->getDecl())) { in checkOpenMPLoop() 12695 if (isa<OMPCapturedExprDecl>(CounterDecl)) in ActOnOpenMPTileDirective() [all …]
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3575 OMPCapturedExprDecl * /*D*/) { in VisitOMPCapturedExprDecl() argument
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 158 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D); 1897 void ASTDeclWriter::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl()
|
| H A D | ASTReaderDecl.cpp | 455 void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D); 2735 void ASTDeclReader::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) { in VisitOMPCapturedExprDecl() 4088 D = OMPCapturedExprDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|