Home
last modified time | relevance | path

Searched refs:code_cache_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/src/
Dnode_builtins.cc178 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()
Dnode_builtins.h130 BuiltinCodeCacheMap code_cache_; variable