/external/clang/lib/AST/ |
D | DeclOpenMP.cpp | 60 void OMPDeclareReductionDecl::anchor() {} in anchor() 62 OMPDeclareReductionDecl *OMPDeclareReductionDecl::Create( in Create() 64 QualType T, OMPDeclareReductionDecl *PrevDeclInScope) { in Create() 65 return new (C, DC) OMPDeclareReductionDecl(OMPDeclareReduction, DC, L, Name, in Create() 69 OMPDeclareReductionDecl * 70 OMPDeclareReductionDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 71 return new (C, ID) OMPDeclareReductionDecl( in CreateDeserialized() 76 OMPDeclareReductionDecl *OMPDeclareReductionDecl::getPrevDeclInScope() { in getPrevDeclInScope() 77 return cast_or_null<OMPDeclareReductionDecl>( in getPrevDeclInScope() 80 const OMPDeclareReductionDecl * [all …]
|
D | DeclPrinter.cpp | 95 void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D); 338 if (isa<OMPThreadPrivateDecl>(*D) || isa<OMPDeclareReductionDecl>(*D)) in VisitDeclContext() 1384 void DeclPrinter::VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl()
|
D | ASTDumper.cpp | 439 void VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D); 1261 void ASTDumper::VisitOMPDeclareReductionDecl(const OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl()
|
D | MicrosoftMangle.cpp | 93 if (isa<CapturedDecl>(DC) || isa<OMPDeclareReductionDecl>(DC)) { in getEffectiveDeclContext()
|
D | ItaniumMangle.cpp | 70 if (isa<CapturedDecl>(DC) || isa<OMPDeclareReductionDecl>(DC)) { in getEffectiveDeclContext()
|
D | ASTContext.cpp | 8577 else if (isa<OMPDeclareReductionDecl>(D)) in DeclMustBeEmitted()
|
/external/clang/include/clang/AST/ |
D | DeclOpenMP.h | 102 class OMPDeclareReductionDecl final : public ValueDecl, public DeclContext { 116 OMPDeclareReductionDecl(Kind DK, DeclContext *DC, SourceLocation L, in OMPDeclareReductionDecl() function 118 OMPDeclareReductionDecl *PrevDeclInScope) in OMPDeclareReductionDecl() 122 void setPrevDeclInScope(OMPDeclareReductionDecl *Prev) { in setPrevDeclInScope() 128 static OMPDeclareReductionDecl * 130 QualType T, OMPDeclareReductionDecl *PrevDeclInScope); 132 static OMPDeclareReductionDecl *CreateDeserialized(ASTContext &C, 150 OMPDeclareReductionDecl *getPrevDeclInScope(); 151 const OMPDeclareReductionDecl *getPrevDeclInScope() const; 155 static DeclContext *castToDeclContext(const OMPDeclareReductionDecl *D) { in castToDeclContext() [all …]
|
D | GlobalDecl.h | 47 GlobalDecl(const OMPDeclareReductionDecl *D) { Init(D); } in GlobalDecl()
|
D | RecursiveASTVisitor.h | 1506 DEF_TRAVERSE_DECL(OMPDeclareReductionDecl, {
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.h | 44 class OMPDeclareReductionDecl; variable 160 typedef llvm::DenseMap<const OMPDeclareReductionDecl *, 166 SmallVector<const OMPDeclareReductionDecl *, 4>> 502 const OMPDeclareReductionDecl *D); 505 getUserDefinedReduction(const OMPDeclareReductionDecl *D);
|
D | ModuleBuilder.cpp | 229 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Member)) { in HandleTagDeclDefinition()
|
D | CGDecl.cpp | 125 return CGM.EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(&D), this); in EmitDecl() 1874 void CodeGenModule::EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D, in EmitOMPDeclareReduction()
|
D | CodeGenModule.h | 1113 void EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D,
|
D | CGStmtOpenMP.cpp | 386 static const OMPDeclareReductionDecl * 392 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl())) in getReductionInit() 398 const OMPDeclareReductionDecl *DRD, in emitInitWithReductionInitializer()
|
D | CodeGenModule.cpp | 1568 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Global)) { in EmitGlobal() 3938 EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(D)); in EmitTopLevelDecl()
|
D | CGOpenMPRuntime.cpp | 783 CodeGenFunction *CGF, const OMPDeclareReductionDecl *D) { in emitUserDefinedReduction() 814 CGOpenMPRuntime::getUserDefinedReduction(const OMPDeclareReductionDecl *D) { in getUserDefinedReduction() 4210 if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(DRE->getDecl())) { in emitReductionCombiner()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 8927 else if (auto *DRD = cast<OMPDeclareReductionDecl>(D)) in buildDeclareReductionRef() 9321 auto *DRD = cast<OMPDeclareReductionDecl>(DRDRef->getDecl()); in ActOnOpenMPReductionClause() 11104 OMPDeclareReductionDecl *PrevDRD = nullptr; in ActOnOpenMPDeclareReductionDirectiveStart() 11115 llvm::DenseMap<OMPDeclareReductionDecl *, bool> UsedAsPrevious; in ActOnOpenMPDeclareReductionDirectiveStart() 11118 auto *PrevDecl = cast<OMPDeclareReductionDecl>(Filter.next()); in ActOnOpenMPDeclareReductionDirectiveStart() 11140 cast<OMPDeclareReductionDecl>(PrevDeclInScope); in ActOnOpenMPDeclareReductionDirectiveStart() 11157 auto *DRD = OMPDeclareReductionDecl::Create(Context, DC, TyData.second, in ActOnOpenMPDeclareReductionDirectiveStart() 11173 auto *DRD = cast<OMPDeclareReductionDecl>(D); in ActOnOpenMPDeclareReductionCombinerStart() 11214 auto *DRD = cast<OMPDeclareReductionDecl>(D); in ActOnOpenMPDeclareReductionCombinerEnd() 11228 auto *DRD = cast<OMPDeclareReductionDecl>(D); in ActOnOpenMPDeclareReductionInitializerStart() [all …]
|
D | SemaTemplateInstantiateDecl.cpp | 2569 OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl() 2583 PrevDeclInScope = cast<OMPDeclareReductionDecl>( in VisitOMPDeclareReductionDecl() 2590 auto *NewDRD = cast<OMPDeclareReductionDecl>(DRD.get().getSingleDecl()); in VisitOMPDeclareReductionDecl()
|
D | SemaDecl.cpp | 5770 if (DC->isFunctionOrMethod() || isa<OMPDeclareReductionDecl>(DC)) in shouldConsiderLinkage() 5782 isa<OMPDeclareReductionDecl>(DC)) in shouldConsiderLinkage()
|
D | SemaExpr.cpp | 375 auto *DRD = dyn_cast<OMPDeclareReductionDecl>(CurContext); in DiagnoseUseOfDecl()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 378 void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D); 2444 void ASTDeclReader::VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl() 2508 if (isa<OMPThreadPrivateDecl>(D) || isa<OMPDeclareReductionDecl>(D)) in isConsumerInterestedIn() 3424 D = OMPDeclareReductionDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
D | ASTWriterDecl.cpp | 142 void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D); 1648 void ASTDeclWriter::VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D) { in VisitOMPDeclareReductionDecl()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 148 class OMPDeclareReductionDecl; variable
|