Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.cpp3275 auto I = DeclCache.find(D->getCanonicalDecl()); in getDeclarationOrDefinition()
3277 if (I != DeclCache.end()) { in getDeclarationOrDefinition()
3481 DeclCache[D->getCanonicalDecl()].reset(SP); in EmitFunctionStart()
4169 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable()
4170 if (Cached != DeclCache.end()) in EmitGlobalVariable()
4212 DeclCache[D->getCanonicalDecl()].reset(GVE); in EmitGlobalVariable()
4253 auto &GV = DeclCache[VD]; in EmitGlobalVariable()
4440 auto It = DeclCache.find(P.first); in finalize()
4444 if (It == DeclCache.end()) in finalize()
H A DCGDebugInfo.h139 llvm::DenseMap<const Decl *, llvm::TrackingMDRef> DeclCache; variable