| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 V(Map, script_context_map, ScriptContextMap) \ | 80 V(Map, script_context_map, ScriptContextMap) \ |
| 81 V(Map, block_context_map, BlockContextMap) \ | 81 V(Map, block_context_map, BlockContextMap) \ |
| 82 V(Map, catch_context_map, CatchContextMap) \ | 82 V(Map, catch_context_map, CatchContextMap) \ |
| 83 V(Map, with_context_map, WithContextMap) \ | 83 V(Map, with_context_map, WithContextMap) \ |
| 84 V(Map, debug_evaluate_context_map, DebugEvaluateContextMap) \ | 84 V(Map, debug_evaluate_context_map, DebugEvaluateContextMap) \ |
| 85 V(Map, script_context_table_map, ScriptContextTableMap) \ | 85 V(Map, script_context_table_map, ScriptContextTableMap) \ |
| 86 /* Maps */ \ | 86 /* Maps */ \ |
| 87 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ | 87 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ |
| 88 V(Map, mutable_heap_number_map, MutableHeapNumberMap) \ | 88 V(Map, mutable_heap_number_map, MutableHeapNumberMap) \ |
| 89 V(Map, ordered_hash_table_map, OrderedHashTableMap) \ | 89 V(Map, ordered_hash_table_map, OrderedHashTableMap) \ |
| 90 V(Map, unseeded_number_dictionary_map, UnseededNumberDictionaryMap) \ |
| 90 V(Map, sloppy_arguments_elements_map, SloppyArgumentsElementsMap) \ | 91 V(Map, sloppy_arguments_elements_map, SloppyArgumentsElementsMap) \ |
| 91 V(Map, message_object_map, JSMessageObjectMap) \ | 92 V(Map, message_object_map, JSMessageObjectMap) \ |
| 92 V(Map, neander_map, NeanderMap) \ | 93 V(Map, neander_map, NeanderMap) \ |
| 93 V(Map, external_map, ExternalMap) \ | 94 V(Map, external_map, ExternalMap) \ |
| 94 V(Map, bytecode_array_map, BytecodeArrayMap) \ | 95 V(Map, bytecode_array_map, BytecodeArrayMap) \ |
| 95 /* String maps */ \ | 96 /* String maps */ \ |
| 96 V(Map, native_source_string_map, NativeSourceStringMap) \ | 97 V(Map, native_source_string_map, NativeSourceStringMap) \ |
| 97 V(Map, string_map, StringMap) \ | 98 V(Map, string_map, StringMap) \ |
| 98 V(Map, cons_one_byte_string_map, ConsOneByteStringMap) \ | 99 V(Map, cons_one_byte_string_map, ConsOneByteStringMap) \ |
| 99 V(Map, cons_string_map, ConsStringMap) \ | 100 V(Map, cons_string_map, ConsStringMap) \ |
| (...skipping 2587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2687 friend class LargeObjectSpace; | 2688 friend class LargeObjectSpace; |
| 2688 friend class NewSpace; | 2689 friend class NewSpace; |
| 2689 friend class PagedSpace; | 2690 friend class PagedSpace; |
| 2690 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); | 2691 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); |
| 2691 }; | 2692 }; |
| 2692 | 2693 |
| 2693 } // namespace internal | 2694 } // namespace internal |
| 2694 } // namespace v8 | 2695 } // namespace v8 |
| 2695 | 2696 |
| 2696 #endif // V8_HEAP_HEAP_H_ | 2697 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |