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

/external/v8/src/
H A Dcontexts.h156 V(MAP_CACHE_INDEX, Object, map_cache) \
H A Dmark-compact.cc2409 MapCache* map_cache = reinterpret_cast<MapCache*>(raw_map_cache); local
2410 int existing_elements = map_cache->NumberOfElements();
2413 i < map_cache->length();
2415 Object* raw_key = map_cache->get(i);
2419 Object* raw_map = map_cache->get(i + 1);
2425 map_cache->set_the_hole(i);
2426 map_cache->set_the_hole(i + 1);
2435 map_cache->ElementsRemoved(existing_elements - used_elements);
2436 MarkBit map_cache_markbit = Marking::MarkBitFrom(map_cache);
2437 MarkObject(map_cache, map_cache_markbi
[all...]
H A Dfactory.cc1329 MapCache::cast(context->map_cache())->Put(keys, map);
1347 if (context->map_cache()->IsUndefined()) {
1354 Handle<MapCache>(MapCache::cast(context->map_cache()));
/external/chromium_org/v8/src/
H A Dmark-compact.cc2453 MapCache* map_cache = reinterpret_cast<MapCache*>(raw_map_cache); local
2454 int existing_elements = map_cache->NumberOfElements();
2457 i < map_cache->length();
2459 Object* raw_key = map_cache->get(i);
2463 Object* raw_map = map_cache->get(i + 1);
2469 map_cache->set_the_hole(i);
2470 map_cache->set_the_hole(i + 1);
2479 map_cache->ElementsRemoved(existing_elements - used_elements);
2480 MarkBit map_cache_markbit = Marking::MarkBitFrom(map_cache);
2481 MarkObject(map_cache, map_cache_markbi
[all...]
H A Dcontexts.h164 V(MAP_CACHE_INDEX, Object, map_cache) \
H A Dfactory.cc1516 MapCache::cast(context->map_cache())->Put(keys, map);
1534 if (context->map_cache()->IsUndefined()) {
1541 Handle<MapCache>(MapCache::cast(context->map_cache()));
/external/v8/test/cctest/
H A Dtest-api.cc16013 { i::MapCache* map_cache = local
16014 i::MapCache::cast(i::Isolate::Current()->context()->map_cache());
16015 elements = map_cache->NumberOfElements();
16020 { i::Object* raw_map_cache = i::Isolate::Current()->context()->map_cache();
16022 i::MapCache* map_cache = i::MapCache::cast(raw_map_cache); local
16023 CHECK_GT(elements, map_cache->NumberOfElements());
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc19027 { i::MapCache* map_cache = local
19028 i::MapCache::cast(i::Isolate::Current()->context()->map_cache());
19029 elements = map_cache->NumberOfElements();
19035 { i::Object* raw_map_cache = i::Isolate::Current()->context()->map_cache();
19037 i::MapCache* map_cache = i::MapCache::cast(raw_map_cache); local
19038 CHECK_GT(elements, map_cache->NumberOfElements());

Completed in 597 milliseconds