Home
last modified time | relevance | path

Searched refs:DeclCache (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp4175 auto I = DeclCache.find(D->getCanonicalDecl()); in getDeclarationOrDefinition()
4177 if (I != DeclCache.end()) { in getDeclarationOrDefinition()
4466 DeclCache[D->getCanonicalDecl()].reset(SP); in emitFunctionStart()
5631 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable()
5632 if (Cached != DeclCache.end()) in EmitGlobalVariable()
5682 DeclCache[D->getCanonicalDecl()].reset(GVE); in EmitGlobalVariable()
5742 auto &GV = DeclCache[VD]; in EmitGlobalVariable()
6059 auto It = DeclCache.find(P.first); in finalize()
6063 if (It == DeclCache.end()) in finalize()
H A DCGDebugInfo.h161 llvm::DenseMap<const Decl *, llvm::TrackingMDRef> DeclCache; variable