reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
938 CurGD, blockInfo, LocalDeclMap, isLambdaConv, blockInfo.CanBeGlobal); 1070 auto I = LocalDeclMap.find(variable); 1071 assert(I != LocalDeclMap.end()); 1323 if (capture.isConstant()) return LocalDeclMap.find(variable)->second; 1662 auto addr = LocalDeclMap.find(variable)->second;tools/clang/lib/CodeGen/CGBuiltin.cpp
589 auto DIter = LocalDeclMap.find(D); 590 assert(DIter != LocalDeclMap.end());tools/clang/lib/CodeGen/CGCoroutine.cpp
603 ParamReferenceReplacerRAII ParamReplacer(LocalDeclMap);
tools/clang/lib/CodeGen/CGDecl.cpp 439 LocalDeclMap.find(&D)->second = Address(castedAddr, alignment);
tools/clang/lib/CodeGen/CGException.cpp1812 auto I = ParentCGF.LocalDeclMap.find(VD); 1813 if (I == ParentCGF.LocalDeclMap.end())tools/clang/lib/CodeGen/CGExpr.cpp
916 assert(LocalDeclMap.count(PassedSizeDecl) && "Passed size not loadable"); 917 Address AddrOfSize = LocalDeclMap.find(PassedSizeDecl)->second; 2569 auto I = LocalDeclMap.find(VD); 2570 if (I != LocalDeclMap.end()) { 2612 auto iter = LocalDeclMap.find(VD); 2613 if (iter != LocalDeclMap.end()) {tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
843 LocalDeclMap.erase(VDInit); 858 LocalDeclMap.erase(VDInit); 928 LocalDeclMap.erase(VD); 1563 LocalDeclMap.erase(PrivateVD); 1567 if (LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD) || 1571 LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD), 1722 if (LocalDeclMap.count(OrigVD) || CapturedStmtInfo->lookup(OrigVD) || 4683 LocalDeclMap.erase(InitVD); 5184 if (!VD->hasLocalStorage() && !CGF.LocalDeclMap.count(VD)) { 5191 if (!CGF.LocalDeclMap.count(VD)) 5204 if (!CGF.LocalDeclMap.count(VD))tools/clang/lib/CodeGen/CodeGenFunction.h
845 auto it = CGF.LocalDeclMap.find(LocalVD); 846 if (it != CGF.LocalDeclMap.end()) 867 copyInto(SavedTempAddresses, CGF.LocalDeclMap); 875 copyInto(SavedLocals, CGF.LocalDeclMap); 946 return !VD->isLocalVarDeclOrParm() && CGF.LocalDeclMap.count(VD) > 0; 2362 auto it = LocalDeclMap.find(VD); 2363 assert(it != LocalDeclMap.end() && 4168 assert(!LocalDeclMap.count(VD) && "Decl already exists in LocalDeclMap!"); 4169 LocalDeclMap.insert({VD, Addr});tools/clang/lib/CodeGen/CodeGenModule.cpp
5622 if (LocalDeclMap.empty()) return; 5631 for (auto &I : LocalDeclMap) {