Lines Matching defs:map

38   Map map = read_only_roots().heap_number_map();
40 map, kDoubleUnaligned);
60 Map map = Map::GetInstanceTypeMap(roots, type);
61 int size = map.instance_size();
62 return handle(NewStructInternal(roots, map, size, allocation), isolate());
78 Map map = read_only_roots().code_data_container_map();
79 int size = map.instance_size();
81 AllocateRawWithImmortalMap(size, allocation, map));
113 Handle<Map> map, int length, AllocationType allocation) {
115 // the map is.
118 map, length, read_only_roots().undefined_value_handle(), allocation);
133 Handle<Map> map, int length, Handle<Oddball> filler,
137 DCHECK(ReadOnlyHeap::Contains(*map));
139 result.set_map_after_allocation(*map, SKIP_WRITE_BARRIER);
173 Map map = read_only_roots().fixed_double_array_map();
175 AllocateRawWithImmortalMap(size, allocation, map, kDoubleAligned);
184 Map map, int length, AllocationType allocation) {
187 DCHECK(ReadOnlyHeap::Contains(map));
191 result.set_map_after_allocation(map, SKIP_WRITE_BARRIER);
340 Map map = read_only_roots().shared_function_info_map();
343 SharedFunctionInfo::cast(NewWithImmortalMap(map, AllocationType::kOld));
556 Map map = read_only_roots().coverage_info_map();
558 AllocateRawWithImmortalMap(size, AllocationType::kOld, map));
650 int length, Map map, AllocationType allocation) {
651 DCHECK(SeqStringT::IsCompatibleMap(map, read_only_roots()));
652 DCHECK_IMPLIES(!StringShape(map).IsShared(),
654 allocation, map) == allocation);
663 SeqStringT::cast(AllocateRawWithImmortalMap(size, allocation, map));
674 Map map = read_only_roots().one_byte_string_map();
676 length, map,
677 RefineAllocationTypeForInPlaceInternalizableString(allocation, map));
683 Map map = read_only_roots().string_map();
685 length, map,
686 RefineAllocationTypeForInPlaceInternalizableString(allocation, map));
844 Map map = read_only_roots().shared_function_info_map();
847 SharedFunctionInfo::cast(NewWithImmortalMap(map, AllocationType::kOld));
896 Map map = read_only_roots().one_byte_internalized_string_map();
903 map),
904 map);
920 Map map = read_only_roots().internalized_string_map();
925 map),
926 map));
968 HeapObject FactoryBase<Impl>::NewWithImmortalMap(Map map,
970 return AllocateRawWithImmortalMap(map.instance_size(), allocation, map);
975 int size, AllocationType allocation, Map map,
980 DCHECK(ReadOnlyHeap::Contains(map));
983 result.set_map_after_allocation(map, SKIP_WRITE_BARRIER);
1015 Map map = read_only_roots().swiss_name_dictionary_map();
1018 AllocateRawWithImmortalMap(size, allocation, map));
1047 MaybeHandle<Map> map;
1051 map = read_only_roots().internalized_string_map_handle();
1055 map = read_only_roots().one_byte_internalized_string_map_handle();
1058 map = read_only_roots().external_internalized_string_map_handle();
1061 map =
1067 DCHECK_EQ(!map.is_null(), String::IsInPlaceInternalizable(instance_type));
1068 return map;
1074 Handle<Map> map;
1077 map = read_only_roots().seq_string_migration_sentinel_map_handle();
1080 map =
1086 DCHECK_EQ(map->instance_type(), from_string_type);
1087 return map;