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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 V(index_string, "index") \ | 287 V(index_string, "index") \ |
288 V(last_index_string, "lastIndex") \ | 288 V(last_index_string, "lastIndex") \ |
289 V(object_string, "object") \ | 289 V(object_string, "object") \ |
290 V(prototype_string, "prototype") \ | 290 V(prototype_string, "prototype") \ |
291 V(string_string, "string") \ | 291 V(string_string, "string") \ |
292 V(String_string, "String") \ | 292 V(String_string, "String") \ |
293 V(symbol_string, "symbol") \ | 293 V(symbol_string, "symbol") \ |
294 V(Symbol_string, "Symbol") \ | 294 V(Symbol_string, "Symbol") \ |
295 V(for_string, "for") \ | 295 V(for_string, "for") \ |
296 V(for_api_string, "for_api") \ | 296 V(for_api_string, "for_api") \ |
| 297 V(for_intern_string, "for_intern") \ |
297 V(private_api_string, "private_api") \ | 298 V(private_api_string, "private_api") \ |
298 V(private_intern_string, "private_intern") \ | 299 V(private_intern_string, "private_intern") \ |
299 V(Date_string, "Date") \ | 300 V(Date_string, "Date") \ |
300 V(char_at_string, "CharAt") \ | 301 V(char_at_string, "CharAt") \ |
301 V(undefined_string, "undefined") \ | 302 V(undefined_string, "undefined") \ |
302 V(value_of_string, "valueOf") \ | 303 V(value_of_string, "valueOf") \ |
303 V(stack_string, "stack") \ | 304 V(stack_string, "stack") \ |
304 V(toJSON_string, "toJSON") \ | 305 V(toJSON_string, "toJSON") \ |
305 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ | 306 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ |
306 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ | 307 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ |
(...skipping 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2519 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2520 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2520 | 2521 |
2521 private: | 2522 private: |
2522 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2523 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2523 }; | 2524 }; |
2524 #endif // DEBUG | 2525 #endif // DEBUG |
2525 } | 2526 } |
2526 } // namespace v8::internal | 2527 } // namespace v8::internal |
2527 | 2528 |
2528 #endif // V8_HEAP_HEAP_H_ | 2529 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |