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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 V(value_string, "value") \ | 272 V(value_string, "value") \ |
273 V(next_string, "next") \ | 273 V(next_string, "next") \ |
274 V(byte_length_string, "byteLength") \ | 274 V(byte_length_string, "byteLength") \ |
275 V(byte_offset_string, "byteOffset") \ | 275 V(byte_offset_string, "byteOffset") \ |
276 V(minus_zero_string, "-0") \ | 276 V(minus_zero_string, "-0") \ |
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) \ |
| 283 V(sealed_symbol) \ |
282 V(frozen_symbol) \ | 284 V(frozen_symbol) \ |
283 V(nonexistent_symbol) \ | 285 V(nonexistent_symbol) \ |
284 V(elements_transition_symbol) \ | 286 V(elements_transition_symbol) \ |
285 V(observed_symbol) \ | 287 V(observed_symbol) \ |
286 V(uninitialized_symbol) \ | 288 V(uninitialized_symbol) \ |
287 V(megamorphic_symbol) \ | 289 V(megamorphic_symbol) \ |
288 V(premonomorphic_symbol) \ | 290 V(premonomorphic_symbol) \ |
289 V(generic_symbol) \ | 291 V(generic_symbol) \ |
290 V(stack_trace_symbol) \ | 292 V(stack_trace_symbol) \ |
291 V(detailed_stack_trace_symbol) \ | 293 V(detailed_stack_trace_symbol) \ |
(...skipping 2292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2584 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2586 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2585 | 2587 |
2586 private: | 2588 private: |
2587 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2589 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2588 }; | 2590 }; |
2589 #endif // DEBUG | 2591 #endif // DEBUG |
2590 } | 2592 } |
2591 } // namespace v8::internal | 2593 } // namespace v8::internal |
2592 | 2594 |
2593 #endif // V8_HEAP_HEAP_H_ | 2595 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |