| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 V(uninitialized_symbol) \ | 331 V(uninitialized_symbol) \ |
| 332 V(megamorphic_symbol) \ | 332 V(megamorphic_symbol) \ |
| 333 V(premonomorphic_symbol) \ | 333 V(premonomorphic_symbol) \ |
| 334 V(generic_symbol) \ | 334 V(generic_symbol) \ |
| 335 V(stack_trace_symbol) \ | 335 V(stack_trace_symbol) \ |
| 336 V(detailed_stack_trace_symbol) \ | 336 V(detailed_stack_trace_symbol) \ |
| 337 V(normal_ic_symbol) \ | 337 V(normal_ic_symbol) \ |
| 338 V(home_object_symbol) \ | 338 V(home_object_symbol) \ |
| 339 V(intl_initialized_marker_symbol) \ | 339 V(intl_initialized_marker_symbol) \ |
| 340 V(intl_impl_object_symbol) \ | 340 V(intl_impl_object_symbol) \ |
| 341 V(promise_debug_marker_symbol) \ | 341 V(promise_debug_marker_symbol) |
| 342 V(promise_has_handler_symbol) | |
| 343 | 342 |
| 344 // Forward declarations. | 343 // Forward declarations. |
| 345 class HeapStats; | 344 class HeapStats; |
| 346 class Isolate; | 345 class Isolate; |
| 347 class WeakObjectRetainer; | 346 class WeakObjectRetainer; |
| 348 | 347 |
| 349 | 348 |
| 350 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, | 349 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap, |
| 351 Object** pointer); | 350 Object** pointer); |
| 352 | 351 |
| (...skipping 2153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2506 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2505 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2507 | 2506 |
| 2508 private: | 2507 private: |
| 2509 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2508 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2510 }; | 2509 }; |
| 2511 #endif // DEBUG | 2510 #endif // DEBUG |
| 2512 } | 2511 } |
| 2513 } // namespace v8::internal | 2512 } // namespace v8::internal |
| 2514 | 2513 |
| 2515 #endif // V8_HEAP_HEAP_H_ | 2514 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |