| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 V(Array_string, "Array") \ | 277 V(Array_string, "Array") \ |
| 278 V(Error_string, "Error") \ | 278 V(Error_string, "Error") \ |
| 279 V(RegExp_string, "RegExp") | 279 V(RegExp_string, "RegExp") |
| 280 | 280 |
| 281 #define PRIVATE_SYMBOL_LIST(V) \ | 281 #define PRIVATE_SYMBOL_LIST(V) \ |
| 282 V(nonextensible_symbol) \ | 282 V(nonextensible_symbol) \ |
| 283 V(sealed_symbol) \ | 283 V(sealed_symbol) \ |
| 284 V(frozen_symbol) \ | 284 V(frozen_symbol) \ |
| 285 V(nonexistent_symbol) \ | 285 V(nonexistent_symbol) \ |
| 286 V(elements_transition_symbol) \ | 286 V(elements_transition_symbol) \ |
| 287 V(prototype_users_symbol) \ |
| 287 V(observed_symbol) \ | 288 V(observed_symbol) \ |
| 288 V(uninitialized_symbol) \ | 289 V(uninitialized_symbol) \ |
| 289 V(megamorphic_symbol) \ | 290 V(megamorphic_symbol) \ |
| 290 V(premonomorphic_symbol) \ | 291 V(premonomorphic_symbol) \ |
| 291 V(generic_symbol) \ | 292 V(generic_symbol) \ |
| 292 V(stack_trace_symbol) \ | 293 V(stack_trace_symbol) \ |
| 293 V(detailed_stack_trace_symbol) \ | 294 V(detailed_stack_trace_symbol) \ |
| 294 V(normal_ic_symbol) \ | 295 V(normal_ic_symbol) \ |
| 295 V(home_object_symbol) \ | 296 V(home_object_symbol) \ |
| 296 V(intl_initialized_marker_symbol) \ | 297 V(intl_initialized_marker_symbol) \ |
| (...skipping 2290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2587 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2588 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2588 | 2589 |
| 2589 private: | 2590 private: |
| 2590 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2591 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2591 }; | 2592 }; |
| 2592 #endif // DEBUG | 2593 #endif // DEBUG |
| 2593 } | 2594 } |
| 2594 } // namespace v8::internal | 2595 } // namespace v8::internal |
| 2595 | 2596 |
| 2596 #endif // V8_HEAP_HEAP_H_ | 2597 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |