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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 V(proto_string, "__proto__") \ | 217 V(proto_string, "__proto__") \ |
218 V(arguments_string, "arguments") \ | 218 V(arguments_string, "arguments") \ |
219 V(Arguments_string, "Arguments") \ | 219 V(Arguments_string, "Arguments") \ |
220 V(caller_string, "caller") \ | 220 V(caller_string, "caller") \ |
221 V(boolean_string, "boolean") \ | 221 V(boolean_string, "boolean") \ |
222 V(Boolean_string, "Boolean") \ | 222 V(Boolean_string, "Boolean") \ |
223 V(callee_string, "callee") \ | 223 V(callee_string, "callee") \ |
224 V(constructor_string, "constructor") \ | 224 V(constructor_string, "constructor") \ |
225 V(dot_result_string, ".result") \ | 225 V(dot_result_string, ".result") \ |
226 V(eval_string, "eval") \ | 226 V(eval_string, "eval") \ |
| 227 V(float32x4_string, "float32x4") \ |
| 228 V(Float32x4_string, "Float32x4") \ |
227 V(function_string, "function") \ | 229 V(function_string, "function") \ |
228 V(Function_string, "Function") \ | 230 V(Function_string, "Function") \ |
229 V(length_string, "length") \ | 231 V(length_string, "length") \ |
230 V(name_string, "name") \ | 232 V(name_string, "name") \ |
231 V(null_string, "null") \ | 233 V(null_string, "null") \ |
232 V(number_string, "number") \ | 234 V(number_string, "number") \ |
233 V(Number_string, "Number") \ | 235 V(Number_string, "Number") \ |
234 V(nan_string, "NaN") \ | 236 V(nan_string, "NaN") \ |
235 V(source_string, "source") \ | 237 V(source_string, "source") \ |
236 V(source_url_string, "source_url") \ | 238 V(source_url_string, "source_url") \ |
(...skipping 2630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2867 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2869 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2868 | 2870 |
2869 private: | 2871 private: |
2870 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2872 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2871 }; | 2873 }; |
2872 #endif // DEBUG | 2874 #endif // DEBUG |
2873 } | 2875 } |
2874 } // namespace v8::internal | 2876 } // namespace v8::internal |
2875 | 2877 |
2876 #endif // V8_HEAP_HEAP_H_ | 2878 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |