OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef V8_HEAP_HEAP_H_ | 5 #ifndef V8_HEAP_HEAP_H_ |
6 #define V8_HEAP_HEAP_H_ | 6 #define V8_HEAP_HEAP_H_ |
7 | 7 |
8 #include <cmath> | 8 #include <cmath> |
9 #include <map> | 9 #include <map> |
10 | 10 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 EmptySlowElementDictionary) \ | 160 EmptySlowElementDictionary) \ |
161 V(TypeFeedbackVector, dummy_vector, DummyVector) \ | 161 V(TypeFeedbackVector, dummy_vector, DummyVector) \ |
162 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ | 162 V(PropertyCell, empty_property_cell, EmptyPropertyCell) \ |
163 V(WeakCell, empty_weak_cell, EmptyWeakCell) \ | 163 V(WeakCell, empty_weak_cell, EmptyWeakCell) \ |
164 /* Protectors */ \ | 164 /* Protectors */ \ |
165 V(PropertyCell, array_protector, ArrayProtector) \ | 165 V(PropertyCell, array_protector, ArrayProtector) \ |
166 V(Cell, is_concat_spreadable_protector, IsConcatSpreadableProtector) \ | 166 V(Cell, is_concat_spreadable_protector, IsConcatSpreadableProtector) \ |
167 V(PropertyCell, has_instance_protector, HasInstanceProtector) \ | 167 V(PropertyCell, has_instance_protector, HasInstanceProtector) \ |
168 V(Cell, species_protector, SpeciesProtector) \ | 168 V(Cell, species_protector, SpeciesProtector) \ |
169 V(PropertyCell, string_length_protector, StringLengthProtector) \ | 169 V(PropertyCell, string_length_protector, StringLengthProtector) \ |
| 170 V(Cell, array_iterator_protector, ArrayIteratorProtector) \ |
170 /* Special numbers */ \ | 171 /* Special numbers */ \ |
171 V(HeapNumber, nan_value, NanValue) \ | 172 V(HeapNumber, nan_value, NanValue) \ |
172 V(HeapNumber, hole_nan_value, HoleNanValue) \ | 173 V(HeapNumber, hole_nan_value, HoleNanValue) \ |
173 V(HeapNumber, infinity_value, InfinityValue) \ | 174 V(HeapNumber, infinity_value, InfinityValue) \ |
174 V(HeapNumber, minus_zero_value, MinusZeroValue) \ | 175 V(HeapNumber, minus_zero_value, MinusZeroValue) \ |
175 V(HeapNumber, minus_infinity_value, MinusInfinityValue) \ | 176 V(HeapNumber, minus_infinity_value, MinusInfinityValue) \ |
176 /* Caches */ \ | 177 /* Caches */ \ |
177 V(FixedArray, number_string_cache, NumberStringCache) \ | 178 V(FixedArray, number_string_cache, NumberStringCache) \ |
178 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \ | 179 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \ |
179 V(FixedArray, string_split_cache, StringSplitCache) \ | 180 V(FixedArray, string_split_cache, StringSplitCache) \ |
(...skipping 2464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2644 } | 2645 } |
2645 | 2646 |
2646 private: | 2647 private: |
2647 Heap* heap_; | 2648 Heap* heap_; |
2648 }; | 2649 }; |
2649 | 2650 |
2650 } // namespace internal | 2651 } // namespace internal |
2651 } // namespace v8 | 2652 } // namespace v8 |
2652 | 2653 |
2653 #endif // V8_HEAP_HEAP_H_ | 2654 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |