| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 2399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2410 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset) | 2410 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset) |
| 2411 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) | 2411 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) |
| 2412 | 2412 |
| 2413 ACCESSORS(JSGlobalProxy, context, Object, kContextOffset) | 2413 ACCESSORS(JSGlobalProxy, context, Object, kContextOffset) |
| 2414 | 2414 |
| 2415 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) | 2415 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) |
| 2416 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) | 2416 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) |
| 2417 ACCESSORS(AccessorInfo, data, Object, kDataOffset) | 2417 ACCESSORS(AccessorInfo, data, Object, kDataOffset) |
| 2418 ACCESSORS(AccessorInfo, name, Object, kNameOffset) | 2418 ACCESSORS(AccessorInfo, name, Object, kNameOffset) |
| 2419 ACCESSORS(AccessorInfo, flag, Smi, kFlagOffset) | 2419 ACCESSORS(AccessorInfo, flag, Smi, kFlagOffset) |
| 2420 ACCESSORS(AccessorInfo, load_stub_cache, Object, kLoadStubCacheOffset) | |
| 2421 | 2420 |
| 2422 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) | 2421 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) |
| 2423 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) | 2422 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) |
| 2424 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) | 2423 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) |
| 2425 | 2424 |
| 2426 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) | 2425 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) |
| 2427 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) | 2426 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) |
| 2428 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) | 2427 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) |
| 2429 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) | 2428 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) |
| 2430 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) | 2429 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3134 #undef WRITE_INT_FIELD | 3133 #undef WRITE_INT_FIELD |
| 3135 #undef READ_SHORT_FIELD | 3134 #undef READ_SHORT_FIELD |
| 3136 #undef WRITE_SHORT_FIELD | 3135 #undef WRITE_SHORT_FIELD |
| 3137 #undef READ_BYTE_FIELD | 3136 #undef READ_BYTE_FIELD |
| 3138 #undef WRITE_BYTE_FIELD | 3137 #undef WRITE_BYTE_FIELD |
| 3139 | 3138 |
| 3140 | 3139 |
| 3141 } } // namespace v8::internal | 3140 } } // namespace v8::internal |
| 3142 | 3141 |
| 3143 #endif // V8_OBJECTS_INL_H_ | 3142 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |