OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
254 "KeyedStoreElementMonomorphic") \ | 254 "KeyedStoreElementMonomorphic") \ |
255 V(stack_overflow_string, "kStackOverflowBoilerplate") \ | 255 V(stack_overflow_string, "kStackOverflowBoilerplate") \ |
256 V(illegal_access_string, "illegal access") \ | 256 V(illegal_access_string, "illegal access") \ |
257 V(out_of_memory_string, "out-of-memory") \ | 257 V(out_of_memory_string, "out-of-memory") \ |
258 V(illegal_execution_state_string, "illegal execution state") \ | 258 V(illegal_execution_state_string, "illegal execution state") \ |
259 V(get_string, "get") \ | 259 V(get_string, "get") \ |
260 V(set_string, "set") \ | 260 V(set_string, "set") \ |
261 V(map_field_string, "%map") \ | 261 V(map_field_string, "%map") \ |
262 V(elements_field_string, "%elements") \ | 262 V(elements_field_string, "%elements") \ |
263 V(length_field_string, "%length") \ | 263 V(length_field_string, "%length") \ |
264 V(cell_value_string, "%call_value") \ | |
rossberg
2013/06/25 10:47:38
Typo? %cell_value
danno
2013/06/28 13:56:05
Done.
| |
264 V(function_class_string, "Function") \ | 265 V(function_class_string, "Function") \ |
265 V(properties_field_symbol, "%properties") \ | 266 V(properties_field_symbol, "%properties") \ |
266 V(payload_field_symbol, "%payload") \ | 267 V(payload_field_symbol, "%payload") \ |
267 V(illegal_argument_string, "illegal argument") \ | 268 V(illegal_argument_string, "illegal argument") \ |
268 V(MakeReferenceError_string, "MakeReferenceError") \ | 269 V(MakeReferenceError_string, "MakeReferenceError") \ |
269 V(MakeSyntaxError_string, "MakeSyntaxError") \ | 270 V(MakeSyntaxError_string, "MakeSyntaxError") \ |
270 V(MakeTypeError_string, "MakeTypeError") \ | 271 V(MakeTypeError_string, "MakeTypeError") \ |
271 V(invalid_lhs_in_assignment_string, "invalid_lhs_in_assignment") \ | 272 V(invalid_lhs_in_assignment_string, "invalid_lhs_in_assignment") \ |
272 V(invalid_lhs_in_for_in_string, "invalid_lhs_in_for_in") \ | 273 V(invalid_lhs_in_for_in_string, "invalid_lhs_in_for_in") \ |
273 V(invalid_lhs_in_postfix_op_string, "invalid_lhs_in_postfix_op") \ | 274 V(invalid_lhs_in_postfix_op_string, "invalid_lhs_in_postfix_op") \ |
(...skipping 2803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3077 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 3078 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
3078 | 3079 |
3079 private: | 3080 private: |
3080 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3081 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3081 }; | 3082 }; |
3082 #endif // DEBUG | 3083 #endif // DEBUG |
3083 | 3084 |
3084 } } // namespace v8::internal | 3085 } } // namespace v8::internal |
3085 | 3086 |
3086 #endif // V8_HEAP_H_ | 3087 #endif // V8_HEAP_H_ |
OLD | NEW |