HomeSort by: relevance | last modified time | path
    Searched refs:LocalDeclMap (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCoroutine.cpp 340 // the addresses in CGF.LocalDeclMap and restoring back the original values in
346 CodeGenFunction::DeclMapTy& LocalDeclMap;
348 ParamReferenceReplacerRAII(CodeGenFunction::DeclMapTy &LocalDeclMap)
349 : LocalDeclMap(LocalDeclMap) {}
363 auto it = LocalDeclMap.find(PD);
364 assert(it != LocalDeclMap.end() && "parameter is not found");
367 auto copyIt = LocalDeclMap.find(VD);
368 assert(copyIt != LocalDeclMap.end() && "parameter copy is not found");
374 LocalDeclMap.insert({SavedLocal.first, SavedLocal.second})
    [all...]
CodeGenFunction.h 971 auto it = CGF.LocalDeclMap.find(LocalVD);
972 if (it != CGF.LocalDeclMap.end())
993 copyInto(SavedTempAddresses, CGF.LocalDeclMap);
1001 copyInto(SavedLocals, CGF.LocalDeclMap);
1072 return !VD->isLocalVarDeclOrParm() && CGF.LocalDeclMap.count(VD) > 0;
1085 : CGF(CGF), SavedMap(CGF.LocalDeclMap) {}
1086 ~OMPLocalDeclMapRAII() { SavedMap.swap(CGF.LocalDeclMap); }
1362 /// LocalDeclMap - This keeps track of the LLVM allocas or globals for local C
1364 DeclMapTy LocalDeclMap;
2663 auto it = LocalDeclMap.find(VD)
    [all...]
CGBlocks.cpp 810 CurGD, blockInfo, LocalDeclMap, isLambdaConv, blockInfo.CanBeGlobal);
942 auto I = LocalDeclMap.find(variable);
943 assert(I != LocalDeclMap.end());
1250 if (capture.isConstant()) return LocalDeclMap.find(variable)->second;
1300 CodeGenFunction::DeclMapTy LocalDeclMap;
1302 GlobalDecl(), blockInfo, LocalDeclMap,
1424 // Instead of messing around with LocalDeclMap, just set the value
1588 auto addr = LocalDeclMap.find(variable)->second;
CGStmtOpenMP.cpp 890 LocalDeclMap.erase(VDInit);
907 LocalDeclMap.erase(VDInit);
922 LocalDeclMap.erase(VD);
995 LocalDeclMap.erase(VD);
2212 LocalDeclMap.erase(PrivateVD);
2216 if (LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD) ||
2220 LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD),
2382 if (LocalDeclMap.count(OrigVD) || CapturedStmtInfo->lookup(OrigVD) ||
6484 LocalDeclMap.erase(InitVD);
7101 if (!CGF.LocalDeclMap.count(VD))
    [all...]
CGException.cpp 1832 "expected alloca or localrecover in parent LocalDeclMap");
1897 // Depending on target, should be 1st/2nd one in LocalDeclMap.
1900 for (auto &I : ParentCGF.LocalDeclMap) {
1949 auto I = ParentCGF.LocalDeclMap.find(VD);
1950 if (I == ParentCGF.LocalDeclMap.end())
CGExpr.cpp 949 assert(LocalDeclMap.count(PassedSizeDecl) && "Passed size not loadable");
950 Address AddrOfSize = LocalDeclMap.find(PassedSizeDecl)->second;
2724 auto I = LocalDeclMap.find(VD);
2725 if (I != LocalDeclMap.end()) {
2781 auto iter = LocalDeclMap.find(VD);
2782 if (iter != LocalDeclMap.end()) {
2794 llvm_unreachable("DeclRefExpr for Decl not entered in LocalDeclMap?");
CodeGenModule.cpp 6099 if (LocalDeclMap.empty()) return;
6108 for (auto &I : LocalDeclMap) {
CGDecl.cpp 401 // Store into LocalDeclMap before generating initializer to handle
457 LocalDeclMap.find(&D)->second = Address(castedAddr, alignment);
1308 /// EmitAutoVarDecl - Emit code and set up an entry in LocalDeclMap for a
2421 /// for the specified parameter and set up LocalDeclMap.
CGBuiltin.cpp 762 auto DIter = LocalDeclMap.find(D);
763 assert(DIter != LocalDeclMap.end());

Completed in 66 milliseconds