| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 V(private_api_string, "private_api") \ | 254 V(private_api_string, "private_api") \ |
| 255 V(private_intern_string, "private_intern") \ | 255 V(private_intern_string, "private_intern") \ |
| 256 V(Date_string, "Date") \ | 256 V(Date_string, "Date") \ |
| 257 V(char_at_string, "CharAt") \ | 257 V(char_at_string, "CharAt") \ |
| 258 V(undefined_string, "undefined") \ | 258 V(undefined_string, "undefined") \ |
| 259 V(value_of_string, "valueOf") \ | 259 V(value_of_string, "valueOf") \ |
| 260 V(stack_string, "stack") \ | 260 V(stack_string, "stack") \ |
| 261 V(toJSON_string, "toJSON") \ | 261 V(toJSON_string, "toJSON") \ |
| 262 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ | 262 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ |
| 263 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ | 263 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ |
| 264 V(stack_overflow_string, "kStackOverflowBoilerplate") \ | 264 V(stack_overflow_string, "$stackOverflowBoilerplate") \ |
| 265 V(illegal_access_string, "illegal access") \ | 265 V(illegal_access_string, "illegal access") \ |
| 266 V(cell_value_string, "%cell_value") \ | 266 V(cell_value_string, "%cell_value") \ |
| 267 V(illegal_argument_string, "illegal argument") \ | 267 V(illegal_argument_string, "illegal argument") \ |
| 268 V(identity_hash_string, "v8::IdentityHash") \ | 268 V(identity_hash_string, "v8::IdentityHash") \ |
| 269 V(closure_string, "(closure)") \ | 269 V(closure_string, "(closure)") \ |
| 270 V(dot_string, ".") \ | 270 V(dot_string, ".") \ |
| 271 V(compare_ic_string, "==") \ | 271 V(compare_ic_string, "==") \ |
| 272 V(strict_compare_ic_string, "===") \ | 272 V(strict_compare_ic_string, "===") \ |
| 273 V(infinity_string, "Infinity") \ | 273 V(infinity_string, "Infinity") \ |
| 274 V(minus_infinity_string, "-Infinity") \ | 274 V(minus_infinity_string, "-Infinity") \ |
| (...skipping 2331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2606 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2606 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2607 | 2607 |
| 2608 private: | 2608 private: |
| 2609 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2609 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2610 }; | 2610 }; |
| 2611 #endif // DEBUG | 2611 #endif // DEBUG |
| 2612 } | 2612 } |
| 2613 } // namespace v8::internal | 2613 } // namespace v8::internal |
| 2614 | 2614 |
| 2615 #endif // V8_HEAP_HEAP_H_ | 2615 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |