Home
last modified time | relevance | path

Searched refs:old_map (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/ic/
Dstub-cache.cc87 Map* old_map = primary->map; in Set() local
88 int seed = PrimaryOffset(primary->key, old_map); in Set()
Dic.cc262 Handle<Map> old_map(first_map, isolate()); in ShouldRecomputeHandler() local
263 if (old_map->is_deprecated()) return true; in ShouldRecomputeHandler()
264 return IsMoreGeneralElementsKindTransition(old_map->elements_kind(), in ShouldRecomputeHandler()
/external/v8/src/
Dlookup.cc440 Handle<Map> old_map(holder_obj->map(), isolate_); in PrepareForDataProperty() local
442 isolate(), old_map, descriptor_number(), new_constness, value); in PrepareForDataProperty()
444 if (old_map.is_identical_to(new_map)) { in PrepareForDataProperty()
480 Handle<Map> old_map(holder_obj->map(), isolate_); in ReconfigureDataProperty() local
482 isolate_, old_map, descriptor_number(), i::kData, attributes); in ReconfigureDataProperty()
704 Handle<Map> old_map(receiver->map(), isolate_); in TransitionToAccessorProperty() local
710 LookupInRegularHolder<false>(*old_map, *holder_); in TransitionToAccessorProperty()
716 isolate_, old_map, name_, descriptor, getter, setter, attributes); in TransitionToAccessorProperty()
Dmap-updater.cc27 MapUpdater::MapUpdater(Isolate* isolate, Handle<Map> old_map) in MapUpdater() argument
29 old_map_(old_map), in MapUpdater()
30 old_descriptors_(old_map->instance_descriptors(), isolate_), in MapUpdater()
36 DCHECK(!old_map->FindRootMap(isolate) in MapUpdater()
Dmap-updater.h47 MapUpdater(Isolate* isolate, Handle<Map> old_map);
Dapi-natives.cc125 Handle<Map> old_map(object->map(), isolate); in DisableAccessChecks() local
127 Handle<Map> new_map = Map::Copy(isolate, old_map, "DisableAccessChecks"); in DisableAccessChecks()
134 Handle<Map> old_map(object->map(), isolate); in EnableAccessChecks() local
136 Handle<Map> new_map = Map::Copy(isolate, old_map, "EnableAccessChecks"); in EnableAccessChecks()
Dobjects.cc4087 void JSObject::UpdatePrototypeUserRegistration(Handle<Map> old_map, in UpdatePrototypeUserRegistration() argument
4090 DCHECK(old_map->is_prototype_map()); in UpdatePrototypeUserRegistration()
4092 bool was_registered = JSObject::UnregisterPrototypeUser(old_map, isolate); in UpdatePrototypeUserRegistration()
4093 new_map->set_prototype_info(old_map->prototype_info()); in UpdatePrototypeUserRegistration()
4094 old_map->set_prototype_info(Smi::kZero); in UpdatePrototypeUserRegistration()
4098 reinterpret_cast<void*>(*old_map), in UpdatePrototypeUserRegistration()
4130 Handle<Map> old_map(object->map(), isolate); in MigrateFastToFast() local
4132 if (new_map->GetBackPointer() == *old_map) { in MigrateFastToFast()
4134 if (old_map->NumberOfOwnDescriptors() == in MigrateFastToFast()
4143 bool have_space = old_map->UnusedPropertyFields() > 0 || in MigrateFastToFast()
[all …]
Dobjects.h2401 static void UpdatePrototypeUserRegistration(Handle<Map> old_map,
2410 static void NotifyMapChange(Handle<Map> old_map, Handle<Map> new_map,
/external/e2fsprogs/resize/
Dresize2fs.c352 ext2fs_block_bitmap old_map, new_map; in move_bg_metadata() local
360 retval = ext2fs_allocate_block_bitmap(rfs->old_fs, "oldfs", &old_map); in move_bg_metadata()
385 ext2fs_mark_block_bitmap2(old_map, b); in move_bg_metadata()
387 ext2fs_mark_block_bitmap2(old_map, c + j); in move_bg_metadata()
389 ext2fs_mark_block_bitmap2(old_map, d); in move_bg_metadata()
410 old = ext2fs_test_block_bitmap2(old_map, b); in move_bg_metadata()
421 ext2fs_unmark_block_bitmap2(old_map, b); in move_bg_metadata()
439 else if (ext2fs_test_block_bitmap2(old_map, b)) in move_bg_metadata()
440 ext2fs_unmark_block_bitmap2(old_map, b); in move_bg_metadata()
445 else if (ext2fs_test_block_bitmap2(old_map, b)) in move_bg_metadata()
[all …]
/external/v8/src/objects/
Dmap.h512 Handle<Map> old_map,
/external/v8/src/heap/
Dfactory.cc3388 Handle<Map> old_map(object->map(), isolate()); in ReinitializeJSGlobalProxy() local
3394 if (old_map->is_prototype_map()) { in ReinitializeJSGlobalProxy()
3398 JSObject::NotifyMapChange(old_map, map, isolate()); in ReinitializeJSGlobalProxy()
3399 old_map->NotifyLeafMapLayoutChange(isolate()); in ReinitializeJSGlobalProxy()
3403 DCHECK(map->instance_size() == old_map->instance_size()); in ReinitializeJSGlobalProxy()
3404 DCHECK(map->instance_type() == old_map->instance_type()); in ReinitializeJSGlobalProxy()