OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/objects.h" | 5 #include "src/objects.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 #include <iomanip> | 8 #include <iomanip> |
9 #include <memory> | 9 #include <memory> |
10 #include <sstream> | 10 #include <sstream> |
(...skipping 8681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8692 // for the global object and its prototype chain, and excluding it saves | 8692 // for the global object and its prototype chain, and excluding it saves |
8693 // memory on the map transition tree. | 8693 // memory on the map transition tree. |
8694 | 8694 |
8695 // static | 8695 // static |
8696 Handle<Map> Map::TransitionToImmutableProto(Handle<Map> map) { | 8696 Handle<Map> Map::TransitionToImmutableProto(Handle<Map> map) { |
8697 Handle<Map> new_map = Map::Copy(map, "ImmutablePrototype"); | 8697 Handle<Map> new_map = Map::Copy(map, "ImmutablePrototype"); |
8698 new_map->set_immutable_proto(true); | 8698 new_map->set_immutable_proto(true); |
8699 return new_map; | 8699 return new_map; |
8700 } | 8700 } |
8701 | 8701 |
8702 Handle<Map> Map::CopyInitialMap(Handle<Map> map, int instance_size, | 8702 namespace { |
8703 int in_object_properties, | 8703 void EnsureInitialMap(Handle<Map> map) { |
8704 int unused_property_fields) { | |
8705 #ifdef DEBUG | 8704 #ifdef DEBUG |
8706 Isolate* isolate = map->GetIsolate(); | 8705 Isolate* isolate = map->GetIsolate(); |
8707 // Strict function maps have Function as a constructor but the | 8706 // Strict function maps have Function as a constructor but the |
8708 // Function's initial map is a sloppy function map. Same holds for | 8707 // Function's initial map is a sloppy function map. Same holds for |
8709 // GeneratorFunction / AsyncFunction and its initial map. | 8708 // GeneratorFunction / AsyncFunction and its initial map. |
8710 Object* constructor = map->GetConstructor(); | 8709 Object* constructor = map->GetConstructor(); |
8711 DCHECK(constructor->IsJSFunction()); | 8710 DCHECK(constructor->IsJSFunction()); |
8712 DCHECK(*map == JSFunction::cast(constructor)->initial_map() || | 8711 DCHECK(*map == JSFunction::cast(constructor)->initial_map() || |
8713 *map == *isolate->strict_function_map() || | 8712 *map == *isolate->strict_function_map() || |
8714 *map == *isolate->generator_function_map() || | 8713 *map == *isolate->generator_function_map() || |
8715 *map == *isolate->async_function_map()); | 8714 *map == *isolate->async_function_map()); |
8716 #endif | 8715 #endif |
8717 // Initial maps must always own their descriptors and it's descriptor array | 8716 // Initial maps must always own their descriptors and it's descriptor array |
8718 // does not contain descriptors that do not belong to the map. | 8717 // does not contain descriptors that do not belong to the map. |
8719 DCHECK(map->owns_descriptors()); | 8718 DCHECK(map->owns_descriptors()); |
8720 DCHECK_EQ(map->NumberOfOwnDescriptors(), | 8719 DCHECK_EQ(map->NumberOfOwnDescriptors(), |
8721 map->instance_descriptors()->number_of_descriptors()); | 8720 map->instance_descriptors()->number_of_descriptors()); |
| 8721 } |
| 8722 } // namespace |
8722 | 8723 |
| 8724 // static |
| 8725 Handle<Map> Map::CopyInitialMapNormalized(Handle<Map> map, |
| 8726 PropertyNormalizationMode mode) { |
| 8727 EnsureInitialMap(map); |
| 8728 return CopyNormalized(map, mode); |
| 8729 } |
| 8730 |
| 8731 // static |
| 8732 Handle<Map> Map::CopyInitialMap(Handle<Map> map, int instance_size, |
| 8733 int in_object_properties, |
| 8734 int unused_property_fields) { |
| 8735 EnsureInitialMap(map); |
8723 Handle<Map> result = RawCopy(map, instance_size); | 8736 Handle<Map> result = RawCopy(map, instance_size); |
8724 | 8737 |
8725 // Please note instance_type and instance_size are set when allocated. | 8738 // Please note instance_type and instance_size are set when allocated. |
8726 result->SetInObjectProperties(in_object_properties); | 8739 result->SetInObjectProperties(in_object_properties); |
8727 result->set_unused_property_fields(unused_property_fields); | 8740 result->set_unused_property_fields(unused_property_fields); |
8728 | 8741 |
8729 int number_of_own_descriptors = map->NumberOfOwnDescriptors(); | 8742 int number_of_own_descriptors = map->NumberOfOwnDescriptors(); |
8730 if (number_of_own_descriptors > 0) { | 8743 if (number_of_own_descriptors > 0) { |
8731 // The copy will use the same descriptors array. | 8744 // The copy will use the same descriptors array. |
8732 result->UpdateDescriptors(map->instance_descriptors(), | 8745 result->UpdateDescriptors(map->instance_descriptors(), |
(...skipping 11906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
20639 // depend on this. | 20652 // depend on this. |
20640 return DICTIONARY_ELEMENTS; | 20653 return DICTIONARY_ELEMENTS; |
20641 } | 20654 } |
20642 DCHECK_LE(kind, LAST_ELEMENTS_KIND); | 20655 DCHECK_LE(kind, LAST_ELEMENTS_KIND); |
20643 return kind; | 20656 return kind; |
20644 } | 20657 } |
20645 } | 20658 } |
20646 | 20659 |
20647 } // namespace internal | 20660 } // namespace internal |
20648 } // namespace v8 | 20661 } // namespace v8 |
OLD | NEW |