Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp4427 auto I = DeclCache.find(D->getCanonicalDecl()); in getDeclarationOrDefinition()
4429 if (I != DeclCache.end()) { in getDeclarationOrDefinition()
4727 DeclCache[D->getCanonicalDecl()].reset(SP); in emitFunctionStart()
5894 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable()
5895 if (Cached != DeclCache.end()) in EmitGlobalVariable()
5945 DeclCache[D->getCanonicalDecl()].reset(GVE); in EmitGlobalVariable()
6005 auto &GV = DeclCache[VD]; in EmitGlobalVariable()
6322 auto It = DeclCache.find(P.first); in finalize()
6326 if (It == DeclCache.end()) in finalize()
H A DCGDebugInfo.h168 llvm::DenseMap<const Decl *, llvm::TrackingMDRef> DeclCache; variable