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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 V(null_string, "null") \ | 280 V(null_string, "null") \ |
281 V(number_string, "number") \ | 281 V(number_string, "number") \ |
282 V(Number_string, "Number") \ | 282 V(Number_string, "Number") \ |
283 V(nan_string, "NaN") \ | 283 V(nan_string, "NaN") \ |
284 V(source_string, "source") \ | 284 V(source_string, "source") \ |
285 V(source_url_string, "source_url") \ | 285 V(source_url_string, "source_url") \ |
286 V(source_mapping_url_string, "source_mapping_url") \ | 286 V(source_mapping_url_string, "source_mapping_url") \ |
287 V(global_string, "global") \ | 287 V(global_string, "global") \ |
288 V(ignore_case_string, "ignoreCase") \ | 288 V(ignore_case_string, "ignoreCase") \ |
289 V(multiline_string, "multiline") \ | 289 V(multiline_string, "multiline") \ |
290 V(sticky_string, "sticky") \ | |
291 V(harmony_regexps_string, "harmony_regexps") \ | |
292 V(input_string, "input") \ | 290 V(input_string, "input") \ |
293 V(index_string, "index") \ | 291 V(index_string, "index") \ |
294 V(last_index_string, "lastIndex") \ | 292 V(last_index_string, "lastIndex") \ |
295 V(object_string, "object") \ | 293 V(object_string, "object") \ |
296 V(prototype_string, "prototype") \ | 294 V(prototype_string, "prototype") \ |
297 V(string_string, "string") \ | 295 V(string_string, "string") \ |
298 V(String_string, "String") \ | 296 V(String_string, "String") \ |
299 V(symbol_string, "symbol") \ | 297 V(symbol_string, "symbol") \ |
300 V(Symbol_string, "Symbol") \ | 298 V(Symbol_string, "Symbol") \ |
301 V(Map_string, "Map") \ | 299 V(Map_string, "Map") \ |
(...skipping 2190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2492 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2490 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2493 | 2491 |
2494 private: | 2492 private: |
2495 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2493 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2496 }; | 2494 }; |
2497 #endif // DEBUG | 2495 #endif // DEBUG |
2498 } | 2496 } |
2499 } // namespace v8::internal | 2497 } // namespace v8::internal |
2500 | 2498 |
2501 #endif // V8_HEAP_HEAP_H_ | 2499 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |