Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Cache

993   auto InsertPair = Cache.insert(std::make_pair(Fn, Optional<FunctionInfo>()));
999 Cache[Fn] = std::move(Info);
1003 void CFLAAResult::evict(Function *Fn) { Cache.erase(Fn); }
1005 /// \brief Ensures that the given function is available in the cache.
1006 /// Returns the appropriate entry from the cache.
1009 auto Iter = Cache.find(Fn);
1010 if (Iter == Cache.end()) {
1012 Iter = Cache.find(Fn);
1013 assert(Iter != Cache.end());