| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 #define INTERNALIZED_STRING_LIST(V) \ | 202 #define INTERNALIZED_STRING_LIST(V) \ |
| 203 V(Object_string, "Object") \ | 203 V(Object_string, "Object") \ |
| 204 V(proto_string, "__proto__") \ | 204 V(proto_string, "__proto__") \ |
| 205 V(arguments_string, "arguments") \ | 205 V(arguments_string, "arguments") \ |
| 206 V(Arguments_string, "Arguments") \ | 206 V(Arguments_string, "Arguments") \ |
| 207 V(caller_string, "caller") \ | 207 V(caller_string, "caller") \ |
| 208 V(boolean_string, "boolean") \ | 208 V(boolean_string, "boolean") \ |
| 209 V(Boolean_string, "Boolean") \ | 209 V(Boolean_string, "Boolean") \ |
| 210 V(callee_string, "callee") \ | 210 V(callee_string, "callee") \ |
| 211 V(constructor_string, "constructor") \ | 211 V(constructor_string, "constructor") \ |
| 212 V(dot_result_string, ".result") \ | |
| 213 V(dot_for_string, ".for.") \ | |
| 214 V(eval_string, "eval") \ | 212 V(eval_string, "eval") \ |
| 215 V(empty_string, "") \ | 213 V(empty_string, "") \ |
| 216 V(function_string, "function") \ | 214 V(function_string, "function") \ |
| 217 V(Function_string, "Function") \ | 215 V(Function_string, "Function") \ |
| 218 V(length_string, "length") \ | 216 V(length_string, "length") \ |
| 219 V(name_string, "name") \ | 217 V(name_string, "name") \ |
| 220 V(null_string, "null") \ | 218 V(null_string, "null") \ |
| 221 V(number_string, "number") \ | 219 V(number_string, "number") \ |
| 222 V(Number_string, "Number") \ | 220 V(Number_string, "Number") \ |
| 223 V(nan_string, "NaN") \ | 221 V(nan_string, "NaN") \ |
| (...skipping 2331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2555 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2553 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2556 | 2554 |
| 2557 private: | 2555 private: |
| 2558 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2556 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2559 }; | 2557 }; |
| 2560 #endif // DEBUG | 2558 #endif // DEBUG |
| 2561 } | 2559 } |
| 2562 } // namespace v8::internal | 2560 } // namespace v8::internal |
| 2563 | 2561 |
| 2564 #endif // V8_HEAP_HEAP_H_ | 2562 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |