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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 V(private_api_string, "private_api") \ | 268 V(private_api_string, "private_api") \ |
269 V(private_intern_string, "private_intern") \ | 269 V(private_intern_string, "private_intern") \ |
270 V(Date_string, "Date") \ | 270 V(Date_string, "Date") \ |
271 V(char_at_string, "CharAt") \ | 271 V(char_at_string, "CharAt") \ |
272 V(undefined_string, "undefined") \ | 272 V(undefined_string, "undefined") \ |
273 V(value_of_string, "valueOf") \ | 273 V(value_of_string, "valueOf") \ |
274 V(stack_string, "stack") \ | 274 V(stack_string, "stack") \ |
275 V(toJSON_string, "toJSON") \ | 275 V(toJSON_string, "toJSON") \ |
276 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ | 276 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ |
277 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ | 277 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ |
278 V(stack_overflow_string, "$stackOverflowBoilerplate") \ | |
279 V(illegal_access_string, "illegal access") \ | 278 V(illegal_access_string, "illegal access") \ |
280 V(cell_value_string, "%cell_value") \ | 279 V(cell_value_string, "%cell_value") \ |
281 V(illegal_argument_string, "illegal argument") \ | 280 V(illegal_argument_string, "illegal argument") \ |
282 V(closure_string, "(closure)") \ | 281 V(closure_string, "(closure)") \ |
283 V(dot_string, ".") \ | 282 V(dot_string, ".") \ |
284 V(compare_ic_string, "==") \ | 283 V(compare_ic_string, "==") \ |
285 V(strict_compare_ic_string, "===") \ | 284 V(strict_compare_ic_string, "===") \ |
286 V(infinity_string, "Infinity") \ | 285 V(infinity_string, "Infinity") \ |
287 V(minus_infinity_string, "-Infinity") \ | 286 V(minus_infinity_string, "-Infinity") \ |
288 V(query_colon_string, "(?:)") \ | 287 V(query_colon_string, "(?:)") \ |
(...skipping 2474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2763 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2762 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2764 | 2763 |
2765 private: | 2764 private: |
2766 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2765 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2767 }; | 2766 }; |
2768 #endif // DEBUG | 2767 #endif // DEBUG |
2769 } | 2768 } |
2770 } // namespace v8::internal | 2769 } // namespace v8::internal |
2771 | 2770 |
2772 #endif // V8_HEAP_HEAP_H_ | 2771 #endif // V8_HEAP_HEAP_H_ |
OLD | NEW |