| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclOpenMP.cpp | 102 OMPDeclareReductionDecl::OMPDeclareReductionDecl( in OMPDeclareReductionDecl() function in OMPDeclareReductionDecl 104 QualType Ty, OMPDeclareReductionDecl *PrevDeclInScope) in OMPDeclareReductionDecl() 110 void OMPDeclareReductionDecl::anchor() {} in anchor() 112 OMPDeclareReductionDecl *OMPDeclareReductionDecl::Create( in Create() 119 OMPDeclareReductionDecl * 121 return new (C, ID) OMPDeclareReductionDecl( in CreateDeserialized() 126 OMPDeclareReductionDecl *OMPDeclareReductionDecl::getPrevDeclInScope() { in getPrevDeclInScope() 127 return cast_or_null<OMPDeclareReductionDecl>( in getPrevDeclInScope() 130 const OMPDeclareReductionDecl * 131 OMPDeclareReductionDecl::getPrevDeclInScope() const { in getPrevDeclInScope() [all …]
|
| H A D | DeclPrinter.cpp | 119 void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D); 540 if (isa<OMPThreadPrivateDecl>(*D) || isa<OMPDeclareReductionDecl>(*D) || in VisitDeclContext() 1849 void DeclPrinter::VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl()
|
| H A D | TextNodeDumper.cpp | 2085 const OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl()
|
| H A D | MicrosoftMangle.cpp | 118 if (isa<CapturedDecl>(DC) || isa<OMPDeclareReductionDecl>(DC) || in getEffectiveDeclContext()
|
| H A D | ItaniumMangle.cpp | 688 if (isa<CapturedDecl>(DC) || isa<OMPDeclareReductionDecl>(DC) || in getEffectiveDeclContext()
|
| H A D | ASTContext.cpp | 11850 else if (isa<OMPDeclareReductionDecl>(D) || isa<OMPDeclareMapperDecl>(D)) in DeclMustBeEmitted()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclOpenMP.h | 177 class OMPDeclareReductionDecl final : public ValueDecl, public DeclContext { 202 OMPDeclareReductionDecl(Kind DK, DeclContext *DC, SourceLocation L, 204 OMPDeclareReductionDecl *PrevDeclInScope); 206 void setPrevDeclInScope(OMPDeclareReductionDecl *Prev) { in setPrevDeclInScope() 212 static OMPDeclareReductionDecl * 214 QualType T, OMPDeclareReductionDecl *PrevDeclInScope); 216 static OMPDeclareReductionDecl *CreateDeserialized(ASTContext &C, 264 OMPDeclareReductionDecl *getPrevDeclInScope(); 265 const OMPDeclareReductionDecl *getPrevDeclInScope() const; 269 static DeclContext *castToDeclContext(const OMPDeclareReductionDecl *D) { in castToDeclContext() [all …]
|
| H A D | GlobalDecl.h | 87 GlobalDecl(const OMPDeclareReductionDecl *D) { Init(D); } in GlobalDecl()
|
| H A D | TextNodeDumper.h | 355 void VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D);
|
| H A D | ASTNodeTraverser.h | 499 void VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl()
|
| H A D | DeclBase.h | 1684 friend class OMPDeclareReductionDecl;
|
| H A D | RecursiveASTVisitor.h | 1731 DEF_TRAVERSE_DECL(OMPDeclareReductionDecl, {
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.h | 49 class OMPDeclareReductionDecl; variable 168 const OMPDeclareReductionDecl *DRD); 407 typedef llvm::DenseMap<const OMPDeclareReductionDecl *, 413 SmallVector<const OMPDeclareReductionDecl *, 4>> 721 const OMPDeclareReductionDecl *D); 724 getUserDefinedReduction(const OMPDeclareReductionDecl *D);
|
| H A D | ModuleBuilder.cpp | 260 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Member)) { in HandleTagDeclDefinition()
|
| H A D | CGOpenMPRuntime.cpp | 585 static const OMPDeclareReductionDecl * 591 if (const auto *DRD = dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl())) in getReductionInit() 658 const OMPDeclareReductionDecl *DRD, in EmitOMPAggregateInit() 752 const OMPDeclareReductionDecl *DRD) { in emitAggregateInitialization() 858 const OMPDeclareReductionDecl *DRD = in emitInitialization() 990 const OMPDeclareReductionDecl *DRD = in usesReductionInitializer() 1131 CodeGenFunction *CGF, const OMPDeclareReductionDecl *D) { in emitUserDefinedReduction() 1157 CGOpenMPRuntime::getUserDefinedReduction(const OMPDeclareReductionDecl *D) { in getUserDefinedReduction() 4793 dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl())) { in emitReductionCombiner() 5985 isa<OMPDeclareReductionDecl>(D) || in getSingleCompoundChild() [all …]
|
| H A D | CodeGenModule.h | 1408 void EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D,
|
| H A D | CGDecl.cpp | 171 return CGM.EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(&D), this); in EmitDecl() 2713 void CodeGenModule::EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D, in EmitOMPDeclareReduction()
|
| H A D | CodeGenModule.cpp | 3738 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Global)) { in EmitGlobal() 6985 EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(D)); in EmitTopLevelDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 473 void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D); 3064 void ASTDeclReader::VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl() 3224 if (isa<OMPThreadPrivateDecl, OMPDeclareReductionDecl, OMPDeclareMapperDecl, in isConsumerInterestedIn() 4086 D = OMPDeclareReductionDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 158 void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D); 2036 void ASTDeclWriter::VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 3599 OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl() 3624 PrevDeclInScope = cast<OMPDeclareReductionDecl>( in VisitOMPDeclareReductionDecl() 3631 auto *NewDRD = cast<OMPDeclareReductionDecl>(DRD.get().getSingleDecl()); in VisitOMPDeclareReductionDecl() 6156 isa<OMPDeclareReductionDecl>(ParentDC) || in FindInstantiatedDecl()
|
| H A D | SemaOpenMP.cpp | 19099 if (!isa<OMPDeclareReductionDecl>(Underlying) && in argumentDependentLookup() 19145 else if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(D)) in buildDeclareReductionRef() 19792 auto *DRD = cast<OMPDeclareReductionDecl>(DRDRef->getDecl()); in actOnOMPReductionKindClause() 22510 OMPDeclareReductionDecl *PrevDRD = nullptr; in ActOnOpenMPDeclareReductionDirectiveStart() 22521 llvm::DenseMap<OMPDeclareReductionDecl *, bool> UsedAsPrevious; in ActOnOpenMPDeclareReductionDirectiveStart() 22546 cast<OMPDeclareReductionDecl>(PrevDeclInScope); in ActOnOpenMPDeclareReductionDirectiveStart() 22579 auto *DRD = cast<OMPDeclareReductionDecl>(D); in ActOnOpenMPDeclareReductionCombinerStart() 22626 auto *DRD = cast<OMPDeclareReductionDecl>(D); in ActOnOpenMPDeclareReductionCombinerEnd() 22640 auto *DRD = cast<OMPDeclareReductionDecl>(D); in ActOnOpenMPDeclareReductionInitializerStart() 22688 auto *DRD = cast<OMPDeclareReductionDecl>(D); in ActOnOpenMPDeclareReductionInitializerEnd() [all …]
|
| H A D | SemaDecl.cpp | 7343 if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC) || in shouldConsiderLinkage() 7361 isa<OMPDeclareReductionDecl>(DC) || isa<OMPDeclareMapperDecl>(DC)) in shouldConsiderLinkage()
|
| H A D | SemaExpr.cpp | 343 auto *DRD = dyn_cast<OMPDeclareReductionDecl>(CurContext); in DiagnoseUseOfDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 169 class OMPDeclareReductionDecl; variable
|