Searched refs:map_cache (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/v8/src/
H A Dfactory.cc2312 Handle<MapCache> map_cache = handle(MapCache::cast(context->map_cache())); local
2313 Handle<MapCache> result = MapCache::Put(map_cache, keys, map);
2321 if (context->map_cache()->IsUndefined()) {
2328 Handle<MapCache>(MapCache::cast(context->map_cache()));
H A Dcontexts.h171 V(MAP_CACHE_INDEX, Object, map_cache) \
H A Dobjects.h3473 Handle<MapCache> map_cache, Handle<FixedArray> key, Handle<Map> value);
H A Dobjects.cc14859 Handle<MapCache> map_cache, Handle<FixedArray> array, Handle<Map> value) {
14862 Handle<MapCache> new_cache = EnsureCapacity(map_cache, 1, &key);
14858 Put( Handle<MapCache> map_cache, Handle<FixedArray> array, Handle<Map> value) argument
/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc2406 MapCache* map_cache = reinterpret_cast<MapCache*>(raw_map_cache); local
2407 int existing_elements = map_cache->NumberOfElements();
2409 for (int i = MapCache::kElementsStartIndex; i < map_cache->length();
2411 Object* raw_key = map_cache->get(i);
2416 Object* raw_map = map_cache->get(i + 1);
2422 map_cache->set_the_hole(i);
2423 map_cache->set_the_hole(i + 1);
2432 map_cache->ElementsRemoved(existing_elements - used_elements);
2433 MarkBit map_cache_markbit = Marking::MarkBitFrom(map_cache);
2434 MarkObject(map_cache, map_cache_markbi
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc20429 { i::MapCache* map_cache = local
20430 i::MapCache::cast(CcTest::i_isolate()->context()->map_cache());
20431 elements = map_cache->NumberOfElements();
20437 { i::Object* raw_map_cache = CcTest::i_isolate()->context()->map_cache();
20439 i::MapCache* map_cache = i::MapCache::cast(raw_map_cache); local
20440 CHECK_GT(elements, map_cache->NumberOfElements());

Completed in 757 milliseconds