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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 V(observed_symbol) \ | 340 V(observed_symbol) \ |
341 V(premonomorphic_symbol) \ | 341 V(premonomorphic_symbol) \ |
342 V(promise_combined_deferred_symbol) \ | 342 V(promise_combined_deferred_symbol) \ |
343 V(promise_debug_marker_symbol) \ | 343 V(promise_debug_marker_symbol) \ |
344 V(promise_has_handler_symbol) \ | 344 V(promise_has_handler_symbol) \ |
345 V(promise_on_resolve_symbol) \ | 345 V(promise_on_resolve_symbol) \ |
346 V(promise_on_reject_symbol) \ | 346 V(promise_on_reject_symbol) \ |
347 V(promise_raw_symbol) \ | 347 V(promise_raw_symbol) \ |
348 V(promise_status_symbol) \ | 348 V(promise_status_symbol) \ |
349 V(promise_value_symbol) \ | 349 V(promise_value_symbol) \ |
| 350 V(promise_already_resolved_symbol) \ |
350 V(sealed_symbol) \ | 351 V(sealed_symbol) \ |
351 V(stack_trace_symbol) \ | 352 V(stack_trace_symbol) \ |
352 V(string_iterator_iterated_string_symbol) \ | 353 V(string_iterator_iterated_string_symbol) \ |
353 V(string_iterator_next_index_symbol) \ | 354 V(string_iterator_next_index_symbol) \ |
354 V(uninitialized_symbol) | 355 V(uninitialized_symbol) |
355 | 356 |
356 #define PUBLIC_SYMBOL_LIST(V) \ | 357 #define PUBLIC_SYMBOL_LIST(V) \ |
357 V(has_instance_symbol, Symbol.hasInstance) \ | 358 V(has_instance_symbol, Symbol.hasInstance) \ |
358 V(iterator_symbol, Symbol.iterator) \ | 359 V(iterator_symbol, Symbol.iterator) \ |
359 V(match_symbol, Symbol.match) \ | 360 V(match_symbol, Symbol.match) \ |
(...skipping 2360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2720 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2721 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2721 | 2722 |
2722 private: | 2723 private: |
2723 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2724 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2724 }; | 2725 }; |
2725 #endif // DEBUG | 2726 #endif // DEBUG |
2726 } // namespace internal | 2727 } // namespace internal |
2727 } // namespace v8 | 2728 } // namespace v8 |
2728 | 2729 |
2729 #endif // V8_HEAP_HEAP_H_ | 2730 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |