Lines Matching defs:cache
281 // Whether or not to cache every instance: when we materialize a getter or
282 // setter from an lazy AccessorPair, we rely on this cache to be able to always
284 // so it's not observable if we didn't cache an instance. Furthermore, a badly
286 // the cache for those cases.
340 Handle<SimpleNumberDictionary> cache =
343 SimpleNumberDictionary::Set(isolate, cache, serial_number, object);
344 if (*new_cache != *cache) {
349 // we've overflowed the cache limit, no more caching
370 Handle<SimpleNumberDictionary> cache =
372 InternalIndex entry = cache->FindEntry(isolate, serial_number);
374 cache = SimpleNumberDictionary::DeleteEntry(isolate, cache, entry);
375 native_context->set_slow_template_instantiations_cache(*cache);
453 // Don't cache prototypes.