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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 V(input_string, "input") \ | 289 V(input_string, "input") \ |
290 V(index_string, "index") \ | 290 V(index_string, "index") \ |
291 V(last_index_string, "lastIndex") \ | 291 V(last_index_string, "lastIndex") \ |
292 V(object_string, "object") \ | 292 V(object_string, "object") \ |
293 V(literals_string, "literals") \ | 293 V(literals_string, "literals") \ |
294 V(prototype_string, "prototype") \ | 294 V(prototype_string, "prototype") \ |
295 V(string_string, "string") \ | 295 V(string_string, "string") \ |
296 V(String_string, "String") \ | 296 V(String_string, "String") \ |
297 V(symbol_string, "symbol") \ | 297 V(symbol_string, "symbol") \ |
298 V(Symbol_string, "Symbol") \ | 298 V(Symbol_string, "Symbol") \ |
| 299 V(Map_string, "Map") \ |
| 300 V(Set_string, "Set") \ |
| 301 V(WeakMap_string, "WeakMap") \ |
| 302 V(WeakSet_string, "WeakSet") \ |
299 V(for_string, "for") \ | 303 V(for_string, "for") \ |
300 V(for_api_string, "for_api") \ | 304 V(for_api_string, "for_api") \ |
301 V(for_intern_string, "for_intern") \ | 305 V(for_intern_string, "for_intern") \ |
302 V(private_api_string, "private_api") \ | 306 V(private_api_string, "private_api") \ |
303 V(private_intern_string, "private_intern") \ | 307 V(private_intern_string, "private_intern") \ |
304 V(Date_string, "Date") \ | 308 V(Date_string, "Date") \ |
305 V(to_string_string, "toString") \ | 309 V(to_string_string, "toString") \ |
306 V(char_at_string, "CharAt") \ | 310 V(char_at_string, "CharAt") \ |
307 V(undefined_string, "undefined") \ | 311 V(undefined_string, "undefined") \ |
308 V(value_of_string, "valueOf") \ | 312 V(value_of_string, "valueOf") \ |
(...skipping 2229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2538 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2542 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2539 | 2543 |
2540 private: | 2544 private: |
2541 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2545 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2542 }; | 2546 }; |
2543 #endif // DEBUG | 2547 #endif // DEBUG |
2544 } | 2548 } |
2545 } // namespace v8::internal | 2549 } // namespace v8::internal |
2546 | 2550 |
2547 #endif // V8_HEAP_HEAP_H_ | 2551 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |