| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 V(Array_string, "Array") \ | 282 V(Array_string, "Array") \ |
| 283 V(Error_string, "Error") \ | 283 V(Error_string, "Error") \ |
| 284 V(RegExp_string, "RegExp") | 284 V(RegExp_string, "RegExp") |
| 285 | 285 |
| 286 #define PRIVATE_SYMBOL_LIST(V) \ | 286 #define PRIVATE_SYMBOL_LIST(V) \ |
| 287 V(nonextensible_symbol) \ | 287 V(nonextensible_symbol) \ |
| 288 V(sealed_symbol) \ | 288 V(sealed_symbol) \ |
| 289 V(frozen_symbol) \ | 289 V(frozen_symbol) \ |
| 290 V(nonexistent_symbol) \ | 290 V(nonexistent_symbol) \ |
| 291 V(elements_transition_symbol) \ | 291 V(elements_transition_symbol) \ |
| 292 V(prototype_users_symbol) \ | |
| 293 V(observed_symbol) \ | 292 V(observed_symbol) \ |
| 294 V(uninitialized_symbol) \ | 293 V(uninitialized_symbol) \ |
| 295 V(megamorphic_symbol) \ | 294 V(megamorphic_symbol) \ |
| 296 V(premonomorphic_symbol) \ | 295 V(premonomorphic_symbol) \ |
| 297 V(stack_trace_symbol) \ | 296 V(stack_trace_symbol) \ |
| 298 V(detailed_stack_trace_symbol) \ | 297 V(detailed_stack_trace_symbol) \ |
| 299 V(normal_ic_symbol) \ | 298 V(normal_ic_symbol) \ |
| 300 V(home_object_symbol) \ | 299 V(home_object_symbol) \ |
| 301 V(intl_initialized_marker_symbol) \ | 300 V(intl_initialized_marker_symbol) \ |
| 302 V(intl_impl_object_symbol) \ | 301 V(intl_impl_object_symbol) \ |
| (...skipping 2315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2618 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2617 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2619 | 2618 |
| 2620 private: | 2619 private: |
| 2621 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2620 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2622 }; | 2621 }; |
| 2623 #endif // DEBUG | 2622 #endif // DEBUG |
| 2624 } | 2623 } |
| 2625 } // namespace v8::internal | 2624 } // namespace v8::internal |
| 2626 | 2625 |
| 2627 #endif // V8_HEAP_HEAP_H_ | 2626 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |