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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 V(megamorphic_symbol) \ | 310 V(megamorphic_symbol) \ |
311 V(premonomorphic_symbol) \ | 311 V(premonomorphic_symbol) \ |
312 V(stack_trace_symbol) \ | 312 V(stack_trace_symbol) \ |
313 V(detailed_stack_trace_symbol) \ | 313 V(detailed_stack_trace_symbol) \ |
314 V(normal_ic_symbol) \ | 314 V(normal_ic_symbol) \ |
315 V(home_object_symbol) \ | 315 V(home_object_symbol) \ |
316 V(intl_initialized_marker_symbol) \ | 316 V(intl_initialized_marker_symbol) \ |
317 V(intl_impl_object_symbol) \ | 317 V(intl_impl_object_symbol) \ |
318 V(promise_debug_marker_symbol) \ | 318 V(promise_debug_marker_symbol) \ |
319 V(promise_has_handler_symbol) \ | 319 V(promise_has_handler_symbol) \ |
320 V(class_script_symbol) \ | |
321 V(class_start_position_symbol) \ | 320 V(class_start_position_symbol) \ |
322 V(class_end_position_symbol) \ | 321 V(class_end_position_symbol) \ |
323 V(error_start_pos_symbol) \ | 322 V(error_start_pos_symbol) \ |
324 V(error_end_pos_symbol) \ | 323 V(error_end_pos_symbol) \ |
325 V(error_script_symbol) \ | 324 V(error_script_symbol) \ |
326 V(internal_error_symbol) | 325 V(internal_error_symbol) |
327 | 326 |
328 #define PUBLIC_SYMBOL_LIST(V) \ | 327 #define PUBLIC_SYMBOL_LIST(V) \ |
329 V(has_instance_symbol, symbolHasInstance, Symbol.hasInstance) \ | 328 V(has_instance_symbol, symbolHasInstance, Symbol.hasInstance) \ |
330 V(is_concat_spreadable_symbol, symbolIsConcatSpreadable, \ | 329 V(is_concat_spreadable_symbol, symbolIsConcatSpreadable, \ |
(...skipping 2448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2779 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2778 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2780 | 2779 |
2781 private: | 2780 private: |
2782 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2781 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2783 }; | 2782 }; |
2784 #endif // DEBUG | 2783 #endif // DEBUG |
2785 } | 2784 } |
2786 } // namespace v8::internal | 2785 } // namespace v8::internal |
2787 | 2786 |
2788 #endif // V8_HEAP_HEAP_H_ | 2787 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |