| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 V(internal_error_symbol) \ | 355 V(internal_error_symbol) \ |
| 356 V(intl_impl_object_symbol) \ | 356 V(intl_impl_object_symbol) \ |
| 357 V(intl_initialized_marker_symbol) \ | 357 V(intl_initialized_marker_symbol) \ |
| 358 V(megamorphic_symbol) \ | 358 V(megamorphic_symbol) \ |
| 359 V(native_context_index_symbol) \ | 359 V(native_context_index_symbol) \ |
| 360 V(nonexistent_symbol) \ | 360 V(nonexistent_symbol) \ |
| 361 V(nonextensible_symbol) \ | 361 V(nonextensible_symbol) \ |
| 362 V(normal_ic_symbol) \ | 362 V(normal_ic_symbol) \ |
| 363 V(not_mapped_symbol) \ | 363 V(not_mapped_symbol) \ |
| 364 V(observed_symbol) \ | 364 V(observed_symbol) \ |
| 365 V(pattern_symbol) \ |
| 365 V(premonomorphic_symbol) \ | 366 V(premonomorphic_symbol) \ |
| 366 V(promise_combined_deferred_symbol) \ | 367 V(promise_combined_deferred_symbol) \ |
| 367 V(promise_debug_marker_symbol) \ | 368 V(promise_debug_marker_symbol) \ |
| 368 V(promise_has_handler_symbol) \ | 369 V(promise_has_handler_symbol) \ |
| 369 V(promise_on_resolve_symbol) \ | 370 V(promise_on_resolve_symbol) \ |
| 370 V(promise_on_reject_symbol) \ | 371 V(promise_on_reject_symbol) \ |
| 371 V(promise_raw_symbol) \ | 372 V(promise_raw_symbol) \ |
| 372 V(promise_status_symbol) \ | 373 V(promise_status_symbol) \ |
| 373 V(promise_value_symbol) \ | 374 V(promise_value_symbol) \ |
| 374 V(sealed_symbol) \ | 375 V(sealed_symbol) \ |
| (...skipping 2380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2755 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2756 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2756 | 2757 |
| 2757 private: | 2758 private: |
| 2758 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2759 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2759 }; | 2760 }; |
| 2760 #endif // DEBUG | 2761 #endif // DEBUG |
| 2761 } // namespace internal | 2762 } // namespace internal |
| 2762 } // namespace v8 | 2763 } // namespace v8 |
| 2763 | 2764 |
| 2764 #endif // V8_HEAP_HEAP_H_ | 2765 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |