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 4084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4095 ACCESSORS(JSFunction, literals_or_bindings, FixedArray, kLiteralsOffset) | 4095 ACCESSORS(JSFunction, literals_or_bindings, FixedArray, kLiteralsOffset) |
4096 ACCESSORS(JSFunction, next_function_link, Object, kNextFunctionLinkOffset) | 4096 ACCESSORS(JSFunction, next_function_link, Object, kNextFunctionLinkOffset) |
4097 | 4097 |
4098 ACCESSORS(GlobalObject, builtins, JSBuiltinsObject, kBuiltinsOffset) | 4098 ACCESSORS(GlobalObject, builtins, JSBuiltinsObject, kBuiltinsOffset) |
4099 ACCESSORS(GlobalObject, native_context, Context, kNativeContextOffset) | 4099 ACCESSORS(GlobalObject, native_context, Context, kNativeContextOffset) |
4100 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset) | 4100 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset) |
4101 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) | 4101 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) |
4102 | 4102 |
4103 ACCESSORS(JSGlobalProxy, native_context, Object, kNativeContextOffset) | 4103 ACCESSORS(JSGlobalProxy, native_context, Object, kNativeContextOffset) |
4104 | 4104 |
4105 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) | |
4106 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) | |
4107 ACCESSORS(AccessorInfo, data, Object, kDataOffset) | |
4108 ACCESSORS(AccessorInfo, name, Object, kNameOffset) | 4105 ACCESSORS(AccessorInfo, name, Object, kNameOffset) |
4109 ACCESSORS_TO_SMI(AccessorInfo, flag, kFlagOffset) | 4106 ACCESSORS_TO_SMI(AccessorInfo, flag, kFlagOffset) |
4110 ACCESSORS(AccessorInfo, expected_receiver_type, Object, | 4107 ACCESSORS(AccessorInfo, expected_receiver_type, Object, |
4111 kExpectedReceiverTypeOffset) | 4108 kExpectedReceiverTypeOffset) |
4112 | 4109 |
| 4110 ACCESSORS(DeclaredAccessorDescriptor, internal_field, Smi, kInternalFieldOffset) |
| 4111 |
| 4112 ACCESSORS(DeclaredAccessorInfo, descriptor, DeclaredAccessorDescriptor, |
| 4113 kDescriptorOffset) |
| 4114 |
| 4115 ACCESSORS(ExecutableAccessorInfo, getter, Object, kGetterOffset) |
| 4116 ACCESSORS(ExecutableAccessorInfo, setter, Object, kSetterOffset) |
| 4117 ACCESSORS(ExecutableAccessorInfo, data, Object, kDataOffset) |
| 4118 |
4113 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) | 4119 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) |
4114 ACCESSORS(AccessorPair, setter, Object, kSetterOffset) | 4120 ACCESSORS(AccessorPair, setter, Object, kSetterOffset) |
4115 | 4121 |
4116 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) | 4122 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) |
4117 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) | 4123 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) |
4118 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) | 4124 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) |
4119 | 4125 |
4120 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) | 4126 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) |
4121 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) | 4127 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) |
4122 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) | 4128 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) |
(...skipping 1767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5890 #undef WRITE_UINT32_FIELD | 5896 #undef WRITE_UINT32_FIELD |
5891 #undef READ_SHORT_FIELD | 5897 #undef READ_SHORT_FIELD |
5892 #undef WRITE_SHORT_FIELD | 5898 #undef WRITE_SHORT_FIELD |
5893 #undef READ_BYTE_FIELD | 5899 #undef READ_BYTE_FIELD |
5894 #undef WRITE_BYTE_FIELD | 5900 #undef WRITE_BYTE_FIELD |
5895 | 5901 |
5896 | 5902 |
5897 } } // namespace v8::internal | 5903 } } // namespace v8::internal |
5898 | 5904 |
5899 #endif // V8_OBJECTS_INL_H_ | 5905 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |