| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 V(char_at_string, "CharAt") \ | 231 V(char_at_string, "CharAt") \ |
| 232 V(closure_string, "(closure)") \ | 232 V(closure_string, "(closure)") \ |
| 233 V(compare_ic_string, "==") \ | 233 V(compare_ic_string, "==") \ |
| 234 V(configurable_string, "configurable") \ | 234 V(configurable_string, "configurable") \ |
| 235 V(constructor_string, "constructor") \ | 235 V(constructor_string, "constructor") \ |
| 236 V(construct_string, "construct") \ | 236 V(construct_string, "construct") \ |
| 237 V(Date_string, "Date") \ | 237 V(Date_string, "Date") \ |
| 238 V(default_string, "default") \ | 238 V(default_string, "default") \ |
| 239 V(defineProperty_string, "defineProperty") \ | 239 V(defineProperty_string, "defineProperty") \ |
| 240 V(deleteProperty_string, "deleteProperty") \ | 240 V(deleteProperty_string, "deleteProperty") \ |
| 241 V(display_name_string, "displayName") \ |
| 241 V(done_string, "done") \ | 242 V(done_string, "done") \ |
| 242 V(dot_result_string, ".result") \ | 243 V(dot_result_string, ".result") \ |
| 243 V(dot_string, ".") \ | 244 V(dot_string, ".") \ |
| 244 V(enumerable_string, "enumerable") \ | 245 V(enumerable_string, "enumerable") \ |
| 245 V(enumerate_string, "enumerate") \ | 246 V(enumerate_string, "enumerate") \ |
| 246 V(Error_string, "Error") \ | 247 V(Error_string, "Error") \ |
| 247 V(eval_string, "eval") \ | 248 V(eval_string, "eval") \ |
| 248 V(false_string, "false") \ | 249 V(false_string, "false") \ |
| 249 V(float32x4_string, "float32x4") \ | 250 V(float32x4_string, "float32x4") \ |
| 250 V(Float32x4_string, "Float32x4") \ | 251 V(Float32x4_string, "Float32x4") \ |
| (...skipping 2475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2726 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2727 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2727 | 2728 |
| 2728 private: | 2729 private: |
| 2729 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2730 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2730 }; | 2731 }; |
| 2731 #endif // DEBUG | 2732 #endif // DEBUG |
| 2732 } // namespace internal | 2733 } // namespace internal |
| 2733 } // namespace v8 | 2734 } // namespace v8 |
| 2734 | 2735 |
| 2735 #endif // V8_HEAP_HEAP_H_ | 2736 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |