Searched refs:LocalDeclMap (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGBlocks.cpp693 LocalDeclMap,
796 auto it = LocalDeclMap.find(variable);
797 if (it != LocalDeclMap.end()) {
1005 if (capture.isConstant()) return LocalDeclMap.find(variable)->second;
1044 CodeGenFunction::DeclMapTy LocalDeclMap; local
1047 LocalDeclMap,
1123 // Instead of messing around with LocalDeclMap, just set the value
1267 auto addr = LocalDeclMap.find(variable)->second;
H A DCodeGenFunction.h594 auto it = CGF.LocalDeclMap.find(LocalVD);
595 if (it != CGF.LocalDeclMap.end()) {
623 copyInto(SavedPrivates, CGF.LocalDeclMap);
630 copyInto(SavedLocals, CGF.LocalDeclMap);
915 /// LocalDeclMap - This keeps track of the LLVM allocas or globals for local C
917 DeclMapTy LocalDeclMap; member in class:clang::CodeGen::CodeGenFunction
1712 auto it = LocalDeclMap.find(VD);
1713 assert(it != LocalDeclMap.end() &&
2191 /// llvm.localrecover. Insert the localrecover result into the LocalDeclMap.
3054 assert(!LocalDeclMap
[all...]
H A DCGException.cpp1523 "expected alloca or localrecover in parent LocalDeclMap");
1596 auto I = ParentCGF.LocalDeclMap.find(VD);
1597 if (I == ParentCGF.LocalDeclMap.end())
H A DCGStmtOpenMP.cpp400 LocalDeclMap.erase(VDInit);
414 LocalDeclMap.erase(VDInit);
485 LocalDeclMap.erase(VD);
1165 if (LocalDeclMap.count(OrigVD) || CapturedStmtInfo->lookup(OrigVD)) {
H A DCGExpr.cpp2051 LocalDeclMap.count(VD))) {
2069 auto it = LocalDeclMap.find(VD);
2070 if (it != LocalDeclMap.end()) {
2111 auto iter = LocalDeclMap.find(VD);
2112 if (iter != LocalDeclMap.end()) {
2124 llvm_unreachable("DeclRefExpr for Decl not entered in LocalDeclMap?");
H A DCGDecl.cpp351 // Store into LocalDeclMap before generating initializer to handle
389 LocalDeclMap.find(&D)->second = Address(castedAddr, alignment);
901 /// EmitAutoVarDecl - Emit code and set up an entry in LocalDeclMap for a
1737 /// for the specified parameter and set up LocalDeclMap.
H A DCodeGenModule.cpp3791 if (LocalDeclMap.empty()) return;
3800 for (auto &I : LocalDeclMap) {
H A DCGBuiltin.cpp387 auto DIter = LocalDeclMap.find(D);
388 assert(DIter != LocalDeclMap.end());

Completed in 301 milliseconds