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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 V(stack_trace_symbol) \ | 294 V(stack_trace_symbol) \ |
295 V(detailed_stack_trace_symbol) \ | 295 V(detailed_stack_trace_symbol) \ |
296 V(normal_ic_symbol) \ | 296 V(normal_ic_symbol) \ |
297 V(home_object_symbol) \ | 297 V(home_object_symbol) \ |
298 V(intl_initialized_marker_symbol) \ | 298 V(intl_initialized_marker_symbol) \ |
299 V(intl_impl_object_symbol) \ | 299 V(intl_impl_object_symbol) \ |
300 V(promise_debug_marker_symbol) \ | 300 V(promise_debug_marker_symbol) \ |
301 V(promise_has_handler_symbol) \ | 301 V(promise_has_handler_symbol) \ |
302 V(class_script_symbol) \ | 302 V(class_script_symbol) \ |
303 V(class_start_position_symbol) \ | 303 V(class_start_position_symbol) \ |
304 V(class_end_position_symbol) | 304 V(class_end_position_symbol) \ |
| 305 V(error_start_pos_symbol) \ |
| 306 V(error_end_pos_symbol) \ |
| 307 V(error_script_symbol) |
305 | 308 |
306 #define PUBLIC_SYMBOL_LIST(V) \ | 309 #define PUBLIC_SYMBOL_LIST(V) \ |
307 V(has_instance_symbol, symbolHasInstance, Symbol.hasInstance) \ | 310 V(has_instance_symbol, symbolHasInstance, Symbol.hasInstance) \ |
308 V(is_concat_spreadable_symbol, symbolIsConcatSpreadable, \ | 311 V(is_concat_spreadable_symbol, symbolIsConcatSpreadable, \ |
309 Symbol.isConcatSpreadable) \ | 312 Symbol.isConcatSpreadable) \ |
310 V(is_regexp_symbol, symbolIsRegExp, Symbol.isRegExp) \ | 313 V(is_regexp_symbol, symbolIsRegExp, Symbol.isRegExp) \ |
311 V(iterator_symbol, symbolIterator, Symbol.iterator) \ | 314 V(iterator_symbol, symbolIterator, Symbol.iterator) \ |
312 V(to_string_tag_symbol, symbolToStringTag, Symbol.toStringTag) \ | 315 V(to_string_tag_symbol, symbolToStringTag, Symbol.toStringTag) \ |
313 V(unscopables_symbol, symbolUnscopables, Symbol.unscopables) | 316 V(unscopables_symbol, symbolUnscopables, Symbol.unscopables) |
314 | 317 |
(...skipping 2269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2584 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2587 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2585 | 2588 |
2586 private: | 2589 private: |
2587 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2590 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2588 }; | 2591 }; |
2589 #endif // DEBUG | 2592 #endif // DEBUG |
2590 } | 2593 } |
2591 } // namespace v8::internal | 2594 } // namespace v8::internal |
2592 | 2595 |
2593 #endif // V8_HEAP_HEAP_H_ | 2596 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |