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

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp340 // the addresses in CGF.LocalDeclMap and restoring back the original values in
346 CodeGenFunction::DeclMapTy& LocalDeclMap; member in struct:__anon1698::ParamReferenceReplacerRAII
348 ParamReferenceReplacerRAII(CodeGenFunction::DeclMapTy &LocalDeclMap) argument
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
[all...]
H A DCodeGenFunction.h898 auto it = CGF.LocalDeclMap.find(LocalVD);
899 if (it != CGF.LocalDeclMap.end())
920 copyInto(SavedTempAddresses, CGF.LocalDeclMap);
928 copyInto(SavedLocals, CGF.LocalDeclMap);
999 return !VD->isLocalVarDeclOrParm() && CGF.LocalDeclMap.count(VD) > 0;
1012 : CGF(CGF), SavedMap(CGF.LocalDeclMap) {}
1013 ~OMPLocalDeclMapRAII() { SavedMap.swap(CGF.LocalDeclMap); }
1289 /// LocalDeclMap - This keeps track of the LLVM allocas or globals for local C
1291 DeclMapTy LocalDeclMap; member in class:clang::CodeGen::CodeGenFunction
2580 auto it = LocalDeclMap
[all...]
H A DCGBlocks.cpp811 CurGD, blockInfo, LocalDeclMap, isLambdaConv, blockInfo.CanBeGlobal);
943 auto I = LocalDeclMap.find(variable);
944 assert(I != LocalDeclMap.end());
1248 if (capture.isConstant()) return LocalDeclMap.find(variable)->second;
1298 CodeGenFunction::DeclMapTy LocalDeclMap; local
1300 GlobalDecl(), blockInfo, LocalDeclMap, local
1422 // Instead of messing around with LocalDeclMap, just set the value
1586 auto addr = LocalDeclMap.find(variable)->second;
H A DCGStmtOpenMP.cpp868 LocalDeclMap.erase(VDInit);
885 LocalDeclMap.erase(VDInit);
900 LocalDeclMap.erase(VD);
973 LocalDeclMap.erase(VD);
2032 LocalDeclMap.erase(PrivateVD);
2036 if (LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD) ||
2040 LocalDeclMap.count(VD) || CapturedStmtInfo->lookup(VD),
2203 if (LocalDeclMap.count(OrigVD) || CapturedStmtInfo->lookup(OrigVD) ||
5962 LocalDeclMap.erase(InitVD);
6578 if (!CGF.LocalDeclMap
[all...]
H A DCGException.cpp1762 "expected alloca or localrecover in parent LocalDeclMap");
1827 // Depending on target, should be 1st/2nd one in LocalDeclMap.
1830 for (auto &I : ParentCGF.LocalDeclMap) {
1878 auto I = ParentCGF.LocalDeclMap.find(VD);
1879 if (I == ParentCGF.LocalDeclMap.end())
H A DCGExpr.cpp943 assert(LocalDeclMap.count(PassedSizeDecl) && "Passed size not loadable");
944 Address AddrOfSize = LocalDeclMap.find(PassedSizeDecl)->second;
2683 auto I = LocalDeclMap.find(VD);
2684 if (I != LocalDeclMap.end()) {
2740 auto iter = LocalDeclMap.find(VD);
2741 if (iter != LocalDeclMap.end()) {
2753 llvm_unreachable("DeclRefExpr for Decl not entered in LocalDeclMap?");
H A DCGDecl.cpp394 // Store into LocalDeclMap before generating initializer to handle
448 LocalDeclMap.find(&D)->second = Address(castedAddr, alignment);
1280 /// EmitAutoVarDecl - Emit code and set up an entry in LocalDeclMap for a
2362 /// for the specified parameter and set up LocalDeclMap.
H A DCodeGenModule.cpp5742 if (LocalDeclMap.empty()) return;
5751 for (auto &I : LocalDeclMap) {
H A DCGBuiltin.cpp687 auto DIter = LocalDeclMap.find(D);
688 assert(DIter != LocalDeclMap.end());

Completed in 228 milliseconds