Lines Matching defs:cache
2170 static inline int NumberCacheHash(Handle<FixedArray> cache,
2172 int mask = (cache->length() >> 1) - 1;
2232 // number-string cache which lives in the old space.
2307 // We do not cache maps for too many properties or when running builtin code.
2324 // Allocate the new map cache for the native context.
2328 // Check to see whether there is a matching element in the cache.
2329 Handle<FixedArray> cache = Handle<FixedArray>::cast(maybe_cache);
2330 Object* result = cache->get(cache_index);
2338 // Create a new map and add it to the cache.
2339 Handle<FixedArray> cache = Handle<FixedArray>::cast(maybe_cache);
2342 cache->set(cache_index, *cell);