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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 V(configurable_string, "configurable") \ | 233 V(configurable_string, "configurable") \ |
234 V(constructor_string, "constructor") \ | 234 V(constructor_string, "constructor") \ |
235 V(Date_string, "Date") \ | 235 V(Date_string, "Date") \ |
236 V(default_string, "default") \ | 236 V(default_string, "default") \ |
237 V(done_string, "done") \ | 237 V(done_string, "done") \ |
238 V(dot_result_string, ".result") \ | 238 V(dot_result_string, ".result") \ |
239 V(dot_string, ".") \ | 239 V(dot_string, ".") \ |
240 V(enumerable_string, "enumerable") \ | 240 V(enumerable_string, "enumerable") \ |
241 V(Error_string, "Error") \ | 241 V(Error_string, "Error") \ |
242 V(eval_string, "eval") \ | 242 V(eval_string, "eval") \ |
| 243 V(false_string, "false") \ |
243 V(float32x4_string, "float32x4") \ | 244 V(float32x4_string, "float32x4") \ |
244 V(Float32x4_string, "Float32x4") \ | 245 V(Float32x4_string, "Float32x4") \ |
245 V(for_api_string, "for_api") \ | 246 V(for_api_string, "for_api") \ |
246 V(for_string, "for") \ | 247 V(for_string, "for") \ |
247 V(function_string, "function") \ | 248 V(function_string, "function") \ |
248 V(Function_string, "Function") \ | 249 V(Function_string, "Function") \ |
249 V(Generator_string, "Generator") \ | 250 V(Generator_string, "Generator") \ |
250 V(get_string, "get") \ | 251 V(get_string, "get") \ |
251 V(global_string, "global") \ | 252 V(global_string, "global") \ |
252 V(illegal_access_string, "illegal access") \ | 253 V(illegal_access_string, "illegal access") \ |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 V(stack_string, "stack") \ | 289 V(stack_string, "stack") \ |
289 V(strict_compare_ic_string, "===") \ | 290 V(strict_compare_ic_string, "===") \ |
290 V(string_string, "string") \ | 291 V(string_string, "string") \ |
291 V(String_string, "String") \ | 292 V(String_string, "String") \ |
292 V(symbol_string, "symbol") \ | 293 V(symbol_string, "symbol") \ |
293 V(Symbol_string, "Symbol") \ | 294 V(Symbol_string, "Symbol") \ |
294 V(this_string, "this") \ | 295 V(this_string, "this") \ |
295 V(throw_string, "throw") \ | 296 V(throw_string, "throw") \ |
296 V(toJSON_string, "toJSON") \ | 297 V(toJSON_string, "toJSON") \ |
297 V(toString_string, "toString") \ | 298 V(toString_string, "toString") \ |
| 299 V(true_string, "true") \ |
298 V(uint16x8_string, "uint16x8") \ | 300 V(uint16x8_string, "uint16x8") \ |
299 V(Uint16x8_string, "Uint16x8") \ | 301 V(Uint16x8_string, "Uint16x8") \ |
300 V(uint32x4_string, "uint32x4") \ | 302 V(uint32x4_string, "uint32x4") \ |
301 V(Uint32x4_string, "Uint32x4") \ | 303 V(Uint32x4_string, "Uint32x4") \ |
302 V(uint8x16_string, "uint8x16") \ | 304 V(uint8x16_string, "uint8x16") \ |
303 V(Uint8x16_string, "Uint8x16") \ | 305 V(Uint8x16_string, "Uint8x16") \ |
304 V(undefined_string, "undefined") \ | 306 V(undefined_string, "undefined") \ |
305 V(valueOf_string, "valueOf") \ | 307 V(valueOf_string, "valueOf") \ |
306 V(value_string, "value") \ | 308 V(value_string, "value") \ |
307 V(WeakMap_string, "WeakMap") \ | 309 V(WeakMap_string, "WeakMap") \ |
(...skipping 2416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2724 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2726 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2725 | 2727 |
2726 private: | 2728 private: |
2727 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2729 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2728 }; | 2730 }; |
2729 #endif // DEBUG | 2731 #endif // DEBUG |
2730 } // namespace internal | 2732 } // namespace internal |
2731 } // namespace v8 | 2733 } // namespace v8 |
2732 | 2734 |
2733 #endif // V8_HEAP_HEAP_H_ | 2735 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |