| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 V(infinity_string, "Infinity") \ | 318 V(infinity_string, "Infinity") \ |
| 319 V(minus_infinity_string, "-Infinity") \ | 319 V(minus_infinity_string, "-Infinity") \ |
| 320 V(query_colon_string, "(?:)") \ | 320 V(query_colon_string, "(?:)") \ |
| 321 V(Generator_string, "Generator") \ | 321 V(Generator_string, "Generator") \ |
| 322 V(throw_string, "throw") \ | 322 V(throw_string, "throw") \ |
| 323 V(done_string, "done") \ | 323 V(done_string, "done") \ |
| 324 V(value_string, "value") \ | 324 V(value_string, "value") \ |
| 325 V(next_string, "next") \ | 325 V(next_string, "next") \ |
| 326 V(byte_length_string, "byteLength") \ | 326 V(byte_length_string, "byteLength") \ |
| 327 V(byte_offset_string, "byteOffset") \ | 327 V(byte_offset_string, "byteOffset") \ |
| 328 V(minus_zero_string, "-0") | 328 V(minus_zero_string, "-0") \ |
| 329 V(Array_string, "Array") \ |
| 330 V(Error_string, "Error") \ |
| 331 V(RegExp_string, "RegExp") |
| 329 | 332 |
| 330 #define PRIVATE_SYMBOL_LIST(V) \ | 333 #define PRIVATE_SYMBOL_LIST(V) \ |
| 331 V(frozen_symbol) \ | 334 V(frozen_symbol) \ |
| 332 V(nonexistent_symbol) \ | 335 V(nonexistent_symbol) \ |
| 333 V(elements_transition_symbol) \ | 336 V(elements_transition_symbol) \ |
| 334 V(observed_symbol) \ | 337 V(observed_symbol) \ |
| 335 V(uninitialized_symbol) \ | 338 V(uninitialized_symbol) \ |
| 336 V(megamorphic_symbol) \ | 339 V(megamorphic_symbol) \ |
| 337 V(premonomorphic_symbol) \ | 340 V(premonomorphic_symbol) \ |
| 338 V(generic_symbol) \ | 341 V(generic_symbol) \ |
| (...skipping 2202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2541 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2544 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2542 | 2545 |
| 2543 private: | 2546 private: |
| 2544 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2547 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2545 }; | 2548 }; |
| 2546 #endif // DEBUG | 2549 #endif // DEBUG |
| 2547 } | 2550 } |
| 2548 } // namespace v8::internal | 2551 } // namespace v8::internal |
| 2549 | 2552 |
| 2550 #endif // V8_HEAP_HEAP_H_ | 2553 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |