Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: src/objects-inl.h

Issue 1281613004: Version 4.4.63.31 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.4
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/objects.cc ('k') | src/objects-printer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Review notes: 5 // Review notes:
6 // 6 //
7 // - The use of macros in these inline functions may seem superfluous 7 // - The use of macros in these inline functions may seem superfluous
8 // but it is absolutely needed to make sure gcc generates optimal 8 // but it is absolutely needed to make sure gcc generates optimal
9 // code. gcc is not happy when attempting to inline too deep. 9 // code. gcc is not happy when attempting to inline too deep.
10 // 10 //
(...skipping 5437 matching lines...) Expand 10 before | Expand all | Expand 10 after
5448 ACCESSORS(AccessorInfo, expected_receiver_type, Object, 5448 ACCESSORS(AccessorInfo, expected_receiver_type, Object,
5449 kExpectedReceiverTypeOffset) 5449 kExpectedReceiverTypeOffset)
5450 5450
5451 ACCESSORS(ExecutableAccessorInfo, getter, Object, kGetterOffset) 5451 ACCESSORS(ExecutableAccessorInfo, getter, Object, kGetterOffset)
5452 ACCESSORS(ExecutableAccessorInfo, setter, Object, kSetterOffset) 5452 ACCESSORS(ExecutableAccessorInfo, setter, Object, kSetterOffset)
5453 ACCESSORS(ExecutableAccessorInfo, data, Object, kDataOffset) 5453 ACCESSORS(ExecutableAccessorInfo, data, Object, kDataOffset)
5454 5454
5455 ACCESSORS(Box, value, Object, kValueOffset) 5455 ACCESSORS(Box, value, Object, kValueOffset)
5456 5456
5457 ACCESSORS(PrototypeInfo, prototype_users, Object, kPrototypeUsersOffset) 5457 ACCESSORS(PrototypeInfo, prototype_users, Object, kPrototypeUsersOffset)
5458 SMI_ACCESSORS(PrototypeInfo, registry_slot, kRegistrySlotOffset)
5458 ACCESSORS(PrototypeInfo, validity_cell, Object, kValidityCellOffset) 5459 ACCESSORS(PrototypeInfo, validity_cell, Object, kValidityCellOffset)
5459 ACCESSORS(PrototypeInfo, constructor_name, Object, kConstructorNameOffset) 5460 ACCESSORS(PrototypeInfo, constructor_name, Object, kConstructorNameOffset)
5460 5461
5461 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) 5462 ACCESSORS(AccessorPair, getter, Object, kGetterOffset)
5462 ACCESSORS(AccessorPair, setter, Object, kSetterOffset) 5463 ACCESSORS(AccessorPair, setter, Object, kSetterOffset)
5463 5464
5464 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset) 5465 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset)
5465 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset) 5466 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset)
5466 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) 5467 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset)
5467 5468
(...skipping 2130 matching lines...) Expand 10 before | Expand all | Expand 10 after
7598 #undef READ_SHORT_FIELD 7599 #undef READ_SHORT_FIELD
7599 #undef WRITE_SHORT_FIELD 7600 #undef WRITE_SHORT_FIELD
7600 #undef READ_BYTE_FIELD 7601 #undef READ_BYTE_FIELD
7601 #undef WRITE_BYTE_FIELD 7602 #undef WRITE_BYTE_FIELD
7602 #undef NOBARRIER_READ_BYTE_FIELD 7603 #undef NOBARRIER_READ_BYTE_FIELD
7603 #undef NOBARRIER_WRITE_BYTE_FIELD 7604 #undef NOBARRIER_WRITE_BYTE_FIELD
7604 7605
7605 } } // namespace v8::internal 7606 } } // namespace v8::internal
7606 7607
7607 #endif // V8_OBJECTS_INL_H_ 7608 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/objects-printer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698