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 4452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4463 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) | 4463 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) |
4464 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) | 4464 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) |
4465 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) | 4465 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) |
4466 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) | 4466 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) |
4467 | 4467 |
4468 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset) | 4468 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset) |
4469 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset) | 4469 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset) |
4470 | 4470 |
4471 ACCESSORS(TemplateInfo, tag, Object, kTagOffset) | 4471 ACCESSORS(TemplateInfo, tag, Object, kTagOffset) |
4472 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset) | 4472 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset) |
| 4473 ACCESSORS(TemplateInfo, property_accessors, Object, kPropertyAccessorsOffset) |
4473 | 4474 |
4474 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset) | 4475 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset) |
4475 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset) | 4476 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset) |
4476 ACCESSORS(FunctionTemplateInfo, property_accessors, Object, | |
4477 kPropertyAccessorsOffset) | |
4478 ACCESSORS(FunctionTemplateInfo, prototype_template, Object, | 4477 ACCESSORS(FunctionTemplateInfo, prototype_template, Object, |
4479 kPrototypeTemplateOffset) | 4478 kPrototypeTemplateOffset) |
4480 ACCESSORS(FunctionTemplateInfo, parent_template, Object, kParentTemplateOffset) | 4479 ACCESSORS(FunctionTemplateInfo, parent_template, Object, kParentTemplateOffset) |
4481 ACCESSORS(FunctionTemplateInfo, named_property_handler, Object, | 4480 ACCESSORS(FunctionTemplateInfo, named_property_handler, Object, |
4482 kNamedPropertyHandlerOffset) | 4481 kNamedPropertyHandlerOffset) |
4483 ACCESSORS(FunctionTemplateInfo, indexed_property_handler, Object, | 4482 ACCESSORS(FunctionTemplateInfo, indexed_property_handler, Object, |
4484 kIndexedPropertyHandlerOffset) | 4483 kIndexedPropertyHandlerOffset) |
4485 ACCESSORS(FunctionTemplateInfo, instance_template, Object, | 4484 ACCESSORS(FunctionTemplateInfo, instance_template, Object, |
4486 kInstanceTemplateOffset) | 4485 kInstanceTemplateOffset) |
4487 ACCESSORS(FunctionTemplateInfo, class_name, Object, kClassNameOffset) | 4486 ACCESSORS(FunctionTemplateInfo, class_name, Object, kClassNameOffset) |
(...skipping 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6257 #undef WRITE_UINT32_FIELD | 6256 #undef WRITE_UINT32_FIELD |
6258 #undef READ_SHORT_FIELD | 6257 #undef READ_SHORT_FIELD |
6259 #undef WRITE_SHORT_FIELD | 6258 #undef WRITE_SHORT_FIELD |
6260 #undef READ_BYTE_FIELD | 6259 #undef READ_BYTE_FIELD |
6261 #undef WRITE_BYTE_FIELD | 6260 #undef WRITE_BYTE_FIELD |
6262 | 6261 |
6263 | 6262 |
6264 } } // namespace v8::internal | 6263 } } // namespace v8::internal |
6265 | 6264 |
6266 #endif // V8_OBJECTS_INL_H_ | 6265 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |