| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 V(Generator_string, "Generator") \ | 287 V(Generator_string, "Generator") \ |
| 288 V(throw_string, "throw") \ | 288 V(throw_string, "throw") \ |
| 289 V(done_string, "done") \ | 289 V(done_string, "done") \ |
| 290 V(value_string, "value") \ | 290 V(value_string, "value") \ |
| 291 V(next_string, "next") \ | 291 V(next_string, "next") \ |
| 292 V(byte_length_string, "byteLength") \ | 292 V(byte_length_string, "byteLength") \ |
| 293 V(byte_offset_string, "byteOffset") \ | 293 V(byte_offset_string, "byteOffset") \ |
| 294 V(minus_zero_string, "-0") \ | 294 V(minus_zero_string, "-0") \ |
| 295 V(Array_string, "Array") \ | 295 V(Array_string, "Array") \ |
| 296 V(Error_string, "Error") \ | 296 V(Error_string, "Error") \ |
| 297 V(RegExp_string, "RegExp") | 297 V(RegExp_string, "RegExp") \ |
| 298 V(futexWait_string, "futexWait") |
| 298 | 299 |
| 299 #define PRIVATE_SYMBOL_LIST(V) \ | 300 #define PRIVATE_SYMBOL_LIST(V) \ |
| 300 V(array_iteration_kind_symbol) \ | 301 V(array_iteration_kind_symbol) \ |
| 301 V(array_iterator_next_symbol) \ | 302 V(array_iterator_next_symbol) \ |
| 302 V(array_iterator_object_symbol) \ | 303 V(array_iterator_object_symbol) \ |
| 303 V(call_site_function_symbol) \ | 304 V(call_site_function_symbol) \ |
| 304 V(call_site_position_symbol) \ | 305 V(call_site_position_symbol) \ |
| 305 V(call_site_receiver_symbol) \ | 306 V(call_site_receiver_symbol) \ |
| 306 V(call_site_strict_symbol) \ | 307 V(call_site_strict_symbol) \ |
| 307 V(class_end_position_symbol) \ | 308 V(class_end_position_symbol) \ |
| (...skipping 2444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2752 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2753 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2753 | 2754 |
| 2754 private: | 2755 private: |
| 2755 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2756 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2756 }; | 2757 }; |
| 2757 #endif // DEBUG | 2758 #endif // DEBUG |
| 2758 } | 2759 } |
| 2759 } // namespace v8::internal | 2760 } // namespace v8::internal |
| 2760 | 2761 |
| 2761 #endif // V8_HEAP_HEAP_H_ | 2762 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |