| 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 2418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2429 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset) | 2429 ACCESSORS(GlobalObject, global_context, Context, kGlobalContextOffset) |
| 2430 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) | 2430 ACCESSORS(GlobalObject, global_receiver, JSObject, kGlobalReceiverOffset) |
| 2431 | 2431 |
| 2432 ACCESSORS(JSGlobalProxy, context, Object, kContextOffset) | 2432 ACCESSORS(JSGlobalProxy, context, Object, kContextOffset) |
| 2433 | 2433 |
| 2434 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) | 2434 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) |
| 2435 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) | 2435 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) |
| 2436 ACCESSORS(AccessorInfo, data, Object, kDataOffset) | 2436 ACCESSORS(AccessorInfo, data, Object, kDataOffset) |
| 2437 ACCESSORS(AccessorInfo, name, Object, kNameOffset) | 2437 ACCESSORS(AccessorInfo, name, Object, kNameOffset) |
| 2438 ACCESSORS(AccessorInfo, flag, Smi, kFlagOffset) | 2438 ACCESSORS(AccessorInfo, flag, Smi, kFlagOffset) |
| 2439 ACCESSORS(AccessorInfo, load_stub_cache, Object, kLoadStubCacheOffset) | |
| 2440 | 2439 |
| 2441 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) | 2440 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) |
| 2442 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) | 2441 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) |
| 2443 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) | 2442 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) |
| 2444 | 2443 |
| 2445 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) | 2444 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) |
| 2446 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) | 2445 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) |
| 2447 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) | 2446 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) |
| 2448 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) | 2447 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) |
| 2449 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) | 2448 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3153 #undef WRITE_INT_FIELD | 3152 #undef WRITE_INT_FIELD |
| 3154 #undef READ_SHORT_FIELD | 3153 #undef READ_SHORT_FIELD |
| 3155 #undef WRITE_SHORT_FIELD | 3154 #undef WRITE_SHORT_FIELD |
| 3156 #undef READ_BYTE_FIELD | 3155 #undef READ_BYTE_FIELD |
| 3157 #undef WRITE_BYTE_FIELD | 3156 #undef WRITE_BYTE_FIELD |
| 3158 | 3157 |
| 3159 | 3158 |
| 3160 } } // namespace v8::internal | 3159 } } // namespace v8::internal |
| 3161 | 3160 |
| 3162 #endif // V8_OBJECTS_INL_H_ | 3161 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |