Home | History | Annotate | Download | only in src

Lines Matching refs:MapCache

873 Handle<MapCache> Factory::NewMapCache(int at_least_space_for) {
874 CALL_HEAP_FUNCTION(MapCache::Allocate(at_least_space_for), MapCache);
881 Object* result = MapCache::cast(context->map_cache())->Put(keys, map);
882 if (!result->IsFailure()) context->set_map_cache(MapCache::cast(result));
887 Handle<MapCache> Factory::AddToMapCache(Handle<Context> context,
890 CALL_HEAP_FUNCTION(UpdateMapCacheWith(*context, *keys, *map), MapCache);
898 Handle<MapCache> new_cache = NewMapCache(24);
902 Handle<MapCache> cache =
903 Handle<MapCache>(MapCache::cast(context->map_cache()));