Lines Matching defs:LocalDeclMap
514 // the addresses in CGF.LocalDeclMap and restoring back the original values in
520 CodeGenFunction::DeclMapTy& LocalDeclMap;
522 ParamReferenceReplacerRAII(CodeGenFunction::DeclMapTy &LocalDeclMap)
523 : LocalDeclMap(LocalDeclMap) {}
537 auto it = LocalDeclMap.find(PD);
538 assert(it != LocalDeclMap.end() && "parameter is not found");
541 auto copyIt = LocalDeclMap.find(VD);
542 assert(copyIt != LocalDeclMap.end() && "parameter copy is not found");
548 LocalDeclMap.insert({SavedLocal.first, SavedLocal.second});
841 ParamReferenceReplacerRAII ParamReplacer(LocalDeclMap);