| 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 4365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4376 ACCESSORS(DeclaredAccessorDescriptor, serialized_data, ByteArray, | 4376 ACCESSORS(DeclaredAccessorDescriptor, serialized_data, ByteArray, |
| 4377 kSerializedDataOffset) | 4377 kSerializedDataOffset) |
| 4378 | 4378 |
| 4379 ACCESSORS(DeclaredAccessorInfo, descriptor, DeclaredAccessorDescriptor, | 4379 ACCESSORS(DeclaredAccessorInfo, descriptor, DeclaredAccessorDescriptor, |
| 4380 kDescriptorOffset) | 4380 kDescriptorOffset) |
| 4381 | 4381 |
| 4382 ACCESSORS(ExecutableAccessorInfo, getter, Object, kGetterOffset) | 4382 ACCESSORS(ExecutableAccessorInfo, getter, Object, kGetterOffset) |
| 4383 ACCESSORS(ExecutableAccessorInfo, setter, Object, kSetterOffset) | 4383 ACCESSORS(ExecutableAccessorInfo, setter, Object, kSetterOffset) |
| 4384 ACCESSORS(ExecutableAccessorInfo, data, Object, kDataOffset) | 4384 ACCESSORS(ExecutableAccessorInfo, data, Object, kDataOffset) |
| 4385 | 4385 |
| 4386 ACCESSORS(Box, value, Object, kValueOffset) |
| 4387 |
| 4386 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) | 4388 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) |
| 4387 ACCESSORS(AccessorPair, setter, Object, kSetterOffset) | 4389 ACCESSORS(AccessorPair, setter, Object, kSetterOffset) |
| 4388 | 4390 |
| 4389 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) | 4391 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) |
| 4390 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) | 4392 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) |
| 4391 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) | 4393 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) |
| 4392 | 4394 |
| 4393 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) | 4395 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) |
| 4394 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) | 4396 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) |
| 4395 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) | 4397 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) |
| (...skipping 1828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6224 #undef WRITE_UINT32_FIELD | 6226 #undef WRITE_UINT32_FIELD |
| 6225 #undef READ_SHORT_FIELD | 6227 #undef READ_SHORT_FIELD |
| 6226 #undef WRITE_SHORT_FIELD | 6228 #undef WRITE_SHORT_FIELD |
| 6227 #undef READ_BYTE_FIELD | 6229 #undef READ_BYTE_FIELD |
| 6228 #undef WRITE_BYTE_FIELD | 6230 #undef WRITE_BYTE_FIELD |
| 6229 | 6231 |
| 6230 | 6232 |
| 6231 } } // namespace v8::internal | 6233 } } // namespace v8::internal |
| 6232 | 6234 |
| 6233 #endif // V8_OBJECTS_INL_H_ | 6235 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |