| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 V(Generator_string, "Generator") \ | 296 V(Generator_string, "Generator") \ |
| 297 V(throw_string, "throw") \ | 297 V(throw_string, "throw") \ |
| 298 V(done_string, "done") \ | 298 V(done_string, "done") \ |
| 299 V(value_string, "value") \ | 299 V(value_string, "value") \ |
| 300 V(next_string, "next") \ | 300 V(next_string, "next") \ |
| 301 V(byte_length_string, "byteLength") \ | 301 V(byte_length_string, "byteLength") \ |
| 302 V(byte_offset_string, "byteOffset") \ | 302 V(byte_offset_string, "byteOffset") \ |
| 303 V(minus_zero_string, "-0") \ | 303 V(minus_zero_string, "-0") \ |
| 304 V(Array_string, "Array") \ | 304 V(Array_string, "Array") \ |
| 305 V(Error_string, "Error") \ | 305 V(Error_string, "Error") \ |
| 306 V(RegExp_string, "RegExp") | 306 V(RegExp_string, "RegExp") \ |
| 307 V(anonymous_string, "anonymous") |
| 307 | 308 |
| 308 #define PRIVATE_SYMBOL_LIST(V) \ | 309 #define PRIVATE_SYMBOL_LIST(V) \ |
| 309 V(array_iteration_kind_symbol) \ | 310 V(array_iteration_kind_symbol) \ |
| 310 V(array_iterator_next_symbol) \ | 311 V(array_iterator_next_symbol) \ |
| 311 V(array_iterator_object_symbol) \ | 312 V(array_iterator_object_symbol) \ |
| 312 V(call_site_function_symbol) \ | 313 V(call_site_function_symbol) \ |
| 313 V(call_site_position_symbol) \ | 314 V(call_site_position_symbol) \ |
| 314 V(call_site_receiver_symbol) \ | 315 V(call_site_receiver_symbol) \ |
| 315 V(call_site_strict_symbol) \ | 316 V(call_site_strict_symbol) \ |
| 316 V(class_end_position_symbol) \ | 317 V(class_end_position_symbol) \ |
| (...skipping 2392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2709 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2710 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2710 | 2711 |
| 2711 private: | 2712 private: |
| 2712 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2713 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2713 }; | 2714 }; |
| 2714 #endif // DEBUG | 2715 #endif // DEBUG |
| 2715 } | 2716 } |
| 2716 } // namespace v8::internal | 2717 } // namespace v8::internal |
| 2717 | 2718 |
| 2718 #endif // V8_HEAP_HEAP_H_ | 2719 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |