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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 V(Function_string, "Function") \ | 225 V(Function_string, "Function") \ |
226 V(length_string, "length") \ | 226 V(length_string, "length") \ |
227 V(name_string, "name") \ | 227 V(name_string, "name") \ |
228 V(null_string, "null") \ | 228 V(null_string, "null") \ |
229 V(number_string, "number") \ | 229 V(number_string, "number") \ |
230 V(Number_string, "Number") \ | 230 V(Number_string, "Number") \ |
231 V(nan_string, "NaN") \ | 231 V(nan_string, "NaN") \ |
232 V(source_string, "source") \ | 232 V(source_string, "source") \ |
233 V(source_url_string, "source_url") \ | 233 V(source_url_string, "source_url") \ |
234 V(source_mapping_url_string, "source_mapping_url") \ | 234 V(source_mapping_url_string, "source_mapping_url") \ |
235 V(this_string, "this") \ | |
236 V(global_string, "global") \ | 235 V(global_string, "global") \ |
237 V(ignore_case_string, "ignoreCase") \ | 236 V(ignore_case_string, "ignoreCase") \ |
238 V(multiline_string, "multiline") \ | 237 V(multiline_string, "multiline") \ |
239 V(sticky_string, "sticky") \ | 238 V(sticky_string, "sticky") \ |
240 V(unicode_string, "unicode") \ | 239 V(unicode_string, "unicode") \ |
241 V(harmony_regexps_string, "harmony_regexps") \ | 240 V(harmony_regexps_string, "harmony_regexps") \ |
242 V(harmony_tostring_string, "harmony_tostring") \ | 241 V(harmony_tostring_string, "harmony_tostring") \ |
243 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ | 242 V(harmony_unicode_regexps_string, "harmony_unicode_regexps") \ |
244 V(input_string, "input") \ | 243 V(input_string, "input") \ |
245 V(index_string, "index") \ | 244 V(index_string, "index") \ |
(...skipping 2401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2647 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2646 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2648 | 2647 |
2649 private: | 2648 private: |
2650 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2649 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2651 }; | 2650 }; |
2652 #endif // DEBUG | 2651 #endif // DEBUG |
2653 } | 2652 } |
2654 } // namespace v8::internal | 2653 } // namespace v8::internal |
2655 | 2654 |
2656 #endif // V8_HEAP_HEAP_H_ | 2655 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |