Searched refs:code_cache_ (Results 1 – 2 of 2) sorted by relevance
178 return &code_cache_; in code_cache()183 const auto it = code_cache_.find(id); in GetCodeCache()184 if (it == code_cache_.end()) { in GetCodeCache()289 auto cache_it = code_cache_.find(id); in LookupAndCompileInternal()290 if (cache_it != code_cache_.end()) { in LookupAndCompileInternal()293 code_cache_.erase(cache_it); in LookupAndCompileInternal()355 const auto it = code_cache_.find(id); in LookupAndCompileInternal()358 if (it == code_cache_.end()) { in LookupAndCompileInternal()359 code_cache_.emplace(id, std::move(new_cached_data)); in LookupAndCompileInternal()
130 BuiltinCodeCacheMap code_cache_; variable