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") \ |
212 V(eval_string, "eval") \ | 213 V(eval_string, "eval") \ |
213 V(empty_string, "") \ | 214 V(empty_string, "") \ |
214 V(function_string, "function") \ | 215 V(function_string, "function") \ |
215 V(Function_string, "Function") \ | 216 V(Function_string, "Function") \ |
216 V(length_string, "length") \ | 217 V(length_string, "length") \ |
217 V(name_string, "name") \ | 218 V(name_string, "name") \ |
218 V(null_string, "null") \ | 219 V(null_string, "null") \ |
219 V(number_string, "number") \ | 220 V(number_string, "number") \ |
220 V(Number_string, "Number") \ | 221 V(Number_string, "Number") \ |
221 V(nan_string, "NaN") \ | 222 V(nan_string, "NaN") \ |
(...skipping 2331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2553 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2554 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2554 | 2555 |
2555 private: | 2556 private: |
2556 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2557 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2557 }; | 2558 }; |
2558 #endif // DEBUG | 2559 #endif // DEBUG |
2559 } | 2560 } |
2560 } // namespace v8::internal | 2561 } // namespace v8::internal |
2561 | 2562 |
2562 #endif // V8_HEAP_HEAP_H_ | 2563 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |