| 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 V(empty_string, "") \ | 281 V(empty_string, "") \ |
| 282 V(function_string, "function") \ | 282 V(function_string, "function") \ |
| 283 V(length_string, "length") \ | 283 V(length_string, "length") \ |
| 284 V(name_string, "name") \ | 284 V(name_string, "name") \ |
| 285 V(null_string, "null") \ | 285 V(null_string, "null") \ |
| 286 V(number_string, "number") \ | 286 V(number_string, "number") \ |
| 287 V(Number_string, "Number") \ | 287 V(Number_string, "Number") \ |
| 288 V(nan_string, "NaN") \ | 288 V(nan_string, "NaN") \ |
| 289 V(RegExp_string, "RegExp") \ | 289 V(RegExp_string, "RegExp") \ |
| 290 V(source_string, "source") \ | 290 V(source_string, "source") \ |
| 291 V(source_url_string, "source_url") \ |
| 292 V(source_mapping_url_string, "source_mapping_url") \ |
| 291 V(global_string, "global") \ | 293 V(global_string, "global") \ |
| 292 V(ignore_case_string, "ignoreCase") \ | 294 V(ignore_case_string, "ignoreCase") \ |
| 293 V(multiline_string, "multiline") \ | 295 V(multiline_string, "multiline") \ |
| 294 V(input_string, "input") \ | 296 V(input_string, "input") \ |
| 295 V(index_string, "index") \ | 297 V(index_string, "index") \ |
| 296 V(last_index_string, "lastIndex") \ | 298 V(last_index_string, "lastIndex") \ |
| 297 V(object_string, "object") \ | 299 V(object_string, "object") \ |
| 298 V(literals_string, "literals") \ | 300 V(literals_string, "literals") \ |
| 299 V(prototype_string, "prototype") \ | 301 V(prototype_string, "prototype") \ |
| 300 V(string_string, "string") \ | 302 V(string_string, "string") \ |
| (...skipping 2464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2765 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2767 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2766 | 2768 |
| 2767 private: | 2769 private: |
| 2768 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2770 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2769 }; | 2771 }; |
| 2770 #endif // DEBUG | 2772 #endif // DEBUG |
| 2771 | 2773 |
| 2772 } } // namespace v8::internal | 2774 } } // namespace v8::internal |
| 2773 | 2775 |
| 2774 #endif // V8_HEAP_H_ | 2776 #endif // V8_HEAP_H_ |
| OLD | NEW |