| 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_H_ | 5 #ifndef V8_HEAP_H_ |
| 6 #define V8_HEAP_H_ | 6 #define V8_HEAP_H_ |
| 7 | 7 |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 V(length_string, "length") \ | 286 V(length_string, "length") \ |
| 287 V(module_string, "module") \ | 287 V(module_string, "module") \ |
| 288 V(name_string, "name") \ | 288 V(name_string, "name") \ |
| 289 V(native_string, "native") \ | 289 V(native_string, "native") \ |
| 290 V(null_string, "null") \ | 290 V(null_string, "null") \ |
| 291 V(number_string, "number") \ | 291 V(number_string, "number") \ |
| 292 V(Number_string, "Number") \ | 292 V(Number_string, "Number") \ |
| 293 V(nan_string, "NaN") \ | 293 V(nan_string, "NaN") \ |
| 294 V(RegExp_string, "RegExp") \ | 294 V(RegExp_string, "RegExp") \ |
| 295 V(source_string, "source") \ | 295 V(source_string, "source") \ |
| 296 V(source_url_string, "source_url") \ |
| 297 V(source_mapping_url_string, "source_mapping_url") \ |
| 296 V(global_string, "global") \ | 298 V(global_string, "global") \ |
| 297 V(ignore_case_string, "ignoreCase") \ | 299 V(ignore_case_string, "ignoreCase") \ |
| 298 V(multiline_string, "multiline") \ | 300 V(multiline_string, "multiline") \ |
| 299 V(input_string, "input") \ | 301 V(input_string, "input") \ |
| 300 V(index_string, "index") \ | 302 V(index_string, "index") \ |
| 301 V(last_index_string, "lastIndex") \ | 303 V(last_index_string, "lastIndex") \ |
| 302 V(object_string, "object") \ | 304 V(object_string, "object") \ |
| 303 V(literals_string, "literals") \ | 305 V(literals_string, "literals") \ |
| 304 V(prototype_string, "prototype") \ | 306 V(prototype_string, "prototype") \ |
| 305 V(string_string, "string") \ | 307 V(string_string, "string") \ |
| (...skipping 2487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2793 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2795 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2794 | 2796 |
| 2795 private: | 2797 private: |
| 2796 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2798 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2797 }; | 2799 }; |
| 2798 #endif // DEBUG | 2800 #endif // DEBUG |
| 2799 | 2801 |
| 2800 } } // namespace v8::internal | 2802 } } // namespace v8::internal |
| 2801 | 2803 |
| 2802 #endif // V8_HEAP_H_ | 2804 #endif // V8_HEAP_H_ |
| OLD | NEW |