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