Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp3699 auto I = DeclCache.find(D->getCanonicalDecl()); in getDeclarationOrDefinition()
3701 if (I != DeclCache.end()) { in getDeclarationOrDefinition()
3956 DeclCache[D->getCanonicalDecl()].reset(SP); in emitFunctionStart()
4767 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable()
4768 if (Cached != DeclCache.end()) in EmitGlobalVariable()
4818 DeclCache[D->getCanonicalDecl()].reset(GVE); in EmitGlobalVariable()
4878 auto &GV = DeclCache[VD]; in EmitGlobalVariable()
5106 auto It = DeclCache.find(P.first); in finalize()
5110 if (It == DeclCache.end()) in finalize()
H A DCGDebugInfo.h157 llvm::DenseMap<const Decl *, llvm::TrackingMDRef> DeclCache; variable