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 131 matching lines...) Loading... |
142 V(FixedTypedArrayBase, empty_fixed_float64_array, EmptyFixedFloat64Array) \ | 142 V(FixedTypedArrayBase, empty_fixed_float64_array, EmptyFixedFloat64Array) \ |
143 V(FixedTypedArrayBase, empty_fixed_uint8_clamped_array, \ | 143 V(FixedTypedArrayBase, empty_fixed_uint8_clamped_array, \ |
144 EmptyFixedUint8ClampedArray) \ | 144 EmptyFixedUint8ClampedArray) \ |
145 V(Map, sloppy_arguments_elements_map, SloppyArgumentsElementsMap) \ | 145 V(Map, sloppy_arguments_elements_map, SloppyArgumentsElementsMap) \ |
146 V(Map, function_context_map, FunctionContextMap) \ | 146 V(Map, function_context_map, FunctionContextMap) \ |
147 V(Map, catch_context_map, CatchContextMap) \ | 147 V(Map, catch_context_map, CatchContextMap) \ |
148 V(Map, with_context_map, WithContextMap) \ | 148 V(Map, with_context_map, WithContextMap) \ |
149 V(Map, block_context_map, BlockContextMap) \ | 149 V(Map, block_context_map, BlockContextMap) \ |
150 V(Map, module_context_map, ModuleContextMap) \ | 150 V(Map, module_context_map, ModuleContextMap) \ |
151 V(Map, global_context_map, GlobalContextMap) \ | 151 V(Map, global_context_map, GlobalContextMap) \ |
| 152 V(Map, global_context_table_map, GlobalContextTableMap) \ |
152 V(Map, undefined_map, UndefinedMap) \ | 153 V(Map, undefined_map, UndefinedMap) \ |
153 V(Map, the_hole_map, TheHoleMap) \ | 154 V(Map, the_hole_map, TheHoleMap) \ |
154 V(Map, null_map, NullMap) \ | 155 V(Map, null_map, NullMap) \ |
155 V(Map, boolean_map, BooleanMap) \ | 156 V(Map, boolean_map, BooleanMap) \ |
156 V(Map, uninitialized_map, UninitializedMap) \ | 157 V(Map, uninitialized_map, UninitializedMap) \ |
157 V(Map, arguments_marker_map, ArgumentsMarkerMap) \ | 158 V(Map, arguments_marker_map, ArgumentsMarkerMap) \ |
158 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \ | 159 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \ |
159 V(Map, exception_map, ExceptionMap) \ | 160 V(Map, exception_map, ExceptionMap) \ |
160 V(Map, termination_exception_map, TerminationExceptionMap) \ | 161 V(Map, termination_exception_map, TerminationExceptionMap) \ |
161 V(Map, message_object_map, JSMessageObjectMap) \ | 162 V(Map, message_object_map, JSMessageObjectMap) \ |
(...skipping 2392 matching lines...) Loading... |
2554 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2555 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2555 | 2556 |
2556 private: | 2557 private: |
2557 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2558 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2558 }; | 2559 }; |
2559 #endif // DEBUG | 2560 #endif // DEBUG |
2560 } | 2561 } |
2561 } // namespace v8::internal | 2562 } // namespace v8::internal |
2562 | 2563 |
2563 #endif // V8_HEAP_HEAP_H_ | 2564 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |