Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp4022 auto I = DeclCache.find(D->getCanonicalDecl()); in getDeclarationOrDefinition()
4024 if (I != DeclCache.end()) { in getDeclarationOrDefinition()
4313 DeclCache[D->getCanonicalDecl()].reset(SP); in emitFunctionStart()
5490 auto Cached = DeclCache.find(D->getCanonicalDecl()); in EmitGlobalVariable()
5491 if (Cached != DeclCache.end()) in EmitGlobalVariable()
5541 DeclCache[D->getCanonicalDecl()].reset(GVE); in EmitGlobalVariable()
5601 auto &GV = DeclCache[VD]; in EmitGlobalVariable()
5876 auto It = DeclCache.find(P.first); in finalize()
5880 if (It == DeclCache.end()) in finalize()
H A DCGDebugInfo.h156 llvm::DenseMap<const Decl *, llvm::TrackingMDRef> DeclCache; variable