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

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCoroutine.cpp 345 CodeGenFunction::DeclMapTy SavedLocals;
365 SavedLocals.insert({ PD, it->second });
373 for (auto&& SavedLocal : SavedLocals) {
CodeGenFunction.h 950 DeclMapTy SavedLocals;
958 assert(SavedLocals.empty() && "Did not restored original addresses.");
968 if (SavedLocals.count(LocalVD)) return false;
970 // Copy the existing local entry to SavedLocals.
973 SavedLocals.try_emplace(LocalVD, it->second);
975 SavedLocals.try_emplace(LocalVD, Address::invalid());
995 return !SavedLocals.empty();
1000 if (!SavedLocals.empty()) {
1001 copyInto(SavedLocals, CGF.LocalDeclMap);
1002 SavedLocals.clear()
    [all...]

Completed in 51 milliseconds