HomeSort by: relevance | last modified time | path
    Searched defs:LocalDeclMap (Results 1 - 3 of 3) 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...]
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;
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...]

Completed in 27 milliseconds