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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \ | 158 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \ |
159 V(Map, exception_map, ExceptionMap) \ | 159 V(Map, exception_map, ExceptionMap) \ |
160 V(Map, termination_exception_map, TerminationExceptionMap) \ | 160 V(Map, termination_exception_map, TerminationExceptionMap) \ |
161 V(Map, message_object_map, JSMessageObjectMap) \ | 161 V(Map, message_object_map, JSMessageObjectMap) \ |
162 V(Map, foreign_map, ForeignMap) \ | 162 V(Map, foreign_map, ForeignMap) \ |
163 V(Map, neander_map, NeanderMap) \ | 163 V(Map, neander_map, NeanderMap) \ |
164 V(Map, external_map, ExternalMap) \ | 164 V(Map, external_map, ExternalMap) \ |
165 V(HeapNumber, nan_value, NanValue) \ | 165 V(HeapNumber, nan_value, NanValue) \ |
166 V(HeapNumber, infinity_value, InfinityValue) \ | 166 V(HeapNumber, infinity_value, InfinityValue) \ |
167 V(HeapNumber, minus_zero_value, MinusZeroValue) \ | 167 V(HeapNumber, minus_zero_value, MinusZeroValue) \ |
| 168 V(HeapNumber, minus_infinity_value, MinusInfinityValue) \ |
168 V(JSObject, message_listeners, MessageListeners) \ | 169 V(JSObject, message_listeners, MessageListeners) \ |
169 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ | 170 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ |
170 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ | 171 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ |
171 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ | 172 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ |
172 V(Code, js_entry_code, JsEntryCode) \ | 173 V(Code, js_entry_code, JsEntryCode) \ |
173 V(Code, js_construct_entry_code, JsConstructEntryCode) \ | 174 V(Code, js_construct_entry_code, JsConstructEntryCode) \ |
174 V(FixedArray, natives_source_cache, NativesSourceCache) \ | 175 V(FixedArray, natives_source_cache, NativesSourceCache) \ |
175 V(FixedArray, experimental_natives_source_cache, \ | 176 V(FixedArray, experimental_natives_source_cache, \ |
176 ExperimentalNativesSourceCache) \ | 177 ExperimentalNativesSourceCache) \ |
177 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ | 178 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ |
(...skipping 2658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2836 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2837 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2837 | 2838 |
2838 private: | 2839 private: |
2839 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2840 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2840 }; | 2841 }; |
2841 #endif // DEBUG | 2842 #endif // DEBUG |
2842 } | 2843 } |
2843 } // namespace v8::internal | 2844 } // namespace v8::internal |
2844 | 2845 |
2845 #endif // V8_HEAP_HEAP_H_ | 2846 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |