| 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 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 ExternalInternalizedStringWithOneByteDataMap) \ | 95 ExternalInternalizedStringWithOneByteDataMap) \ |
| 96 V(Map, external_one_byte_internalized_string_map, \ | 96 V(Map, external_one_byte_internalized_string_map, \ |
| 97 ExternalOneByteInternalizedStringMap) \ | 97 ExternalOneByteInternalizedStringMap) \ |
| 98 V(Map, short_external_internalized_string_map, \ | 98 V(Map, short_external_internalized_string_map, \ |
| 99 ShortExternalInternalizedStringMap) \ | 99 ShortExternalInternalizedStringMap) \ |
| 100 V(Map, short_external_internalized_string_with_one_byte_data_map, \ | 100 V(Map, short_external_internalized_string_with_one_byte_data_map, \ |
| 101 ShortExternalInternalizedStringWithOneByteDataMap) \ | 101 ShortExternalInternalizedStringWithOneByteDataMap) \ |
| 102 V(Map, short_external_one_byte_internalized_string_map, \ | 102 V(Map, short_external_one_byte_internalized_string_map, \ |
| 103 ShortExternalOneByteInternalizedStringMap) \ | 103 ShortExternalOneByteInternalizedStringMap) \ |
| 104 V(Map, short_external_one_byte_string_map, ShortExternalOneByteStringMap) \ | 104 V(Map, short_external_one_byte_string_map, ShortExternalOneByteStringMap) \ |
| 105 V(Map, undetectable_string_map, UndetectableStringMap) \ | |
| 106 V(Map, undetectable_one_byte_string_map, UndetectableOneByteStringMap) \ | |
| 107 V(Map, external_int8_array_map, ExternalInt8ArrayMap) \ | 105 V(Map, external_int8_array_map, ExternalInt8ArrayMap) \ |
| 108 V(Map, external_uint8_array_map, ExternalUint8ArrayMap) \ | 106 V(Map, external_uint8_array_map, ExternalUint8ArrayMap) \ |
| 109 V(Map, external_int16_array_map, ExternalInt16ArrayMap) \ | 107 V(Map, external_int16_array_map, ExternalInt16ArrayMap) \ |
| 110 V(Map, external_uint16_array_map, ExternalUint16ArrayMap) \ | 108 V(Map, external_uint16_array_map, ExternalUint16ArrayMap) \ |
| 111 V(Map, external_int32_array_map, ExternalInt32ArrayMap) \ | 109 V(Map, external_int32_array_map, ExternalInt32ArrayMap) \ |
| 112 V(Map, external_uint32_array_map, ExternalUint32ArrayMap) \ | 110 V(Map, external_uint32_array_map, ExternalUint32ArrayMap) \ |
| 113 V(Map, external_float32_array_map, ExternalFloat32ArrayMap) \ | 111 V(Map, external_float32_array_map, ExternalFloat32ArrayMap) \ |
| 114 V(Map, external_float64_array_map, ExternalFloat64ArrayMap) \ | 112 V(Map, external_float64_array_map, ExternalFloat64ArrayMap) \ |
| 115 V(Map, external_uint8_clamped_array_map, ExternalUint8ClampedArrayMap) \ | 113 V(Map, external_uint8_clamped_array_map, ExternalUint8ClampedArrayMap) \ |
| 116 V(ExternalArray, empty_external_int8_array, EmptyExternalInt8Array) \ | 114 V(ExternalArray, empty_external_int8_array, EmptyExternalInt8Array) \ |
| (...skipping 2477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2594 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2592 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2595 | 2593 |
| 2596 private: | 2594 private: |
| 2597 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2595 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2598 }; | 2596 }; |
| 2599 #endif // DEBUG | 2597 #endif // DEBUG |
| 2600 } | 2598 } |
| 2601 } // namespace v8::internal | 2599 } // namespace v8::internal |
| 2602 | 2600 |
| 2603 #endif // V8_HEAP_HEAP_H_ | 2601 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |