OLD | NEW |
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 5605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5616 ACCESSORS(FunctionTemplateInfo, instance_call_handler, Object, | 5616 ACCESSORS(FunctionTemplateInfo, instance_call_handler, Object, |
5617 kInstanceCallHandlerOffset) | 5617 kInstanceCallHandlerOffset) |
5618 ACCESSORS(FunctionTemplateInfo, access_check_info, Object, | 5618 ACCESSORS(FunctionTemplateInfo, access_check_info, Object, |
5619 kAccessCheckInfoOffset) | 5619 kAccessCheckInfoOffset) |
5620 SMI_ACCESSORS(FunctionTemplateInfo, flag, kFlagOffset) | 5620 SMI_ACCESSORS(FunctionTemplateInfo, flag, kFlagOffset) |
5621 | 5621 |
5622 ACCESSORS(ObjectTemplateInfo, constructor, Object, kConstructorOffset) | 5622 ACCESSORS(ObjectTemplateInfo, constructor, Object, kConstructorOffset) |
5623 ACCESSORS(ObjectTemplateInfo, internal_field_count, Object, | 5623 ACCESSORS(ObjectTemplateInfo, internal_field_count, Object, |
5624 kInternalFieldCountOffset) | 5624 kInternalFieldCountOffset) |
5625 | 5625 |
5626 ACCESSORS(TypeSwitchInfo, types, Object, kTypesOffset) | |
5627 | |
5628 ACCESSORS(AllocationSite, transition_info, Object, kTransitionInfoOffset) | 5626 ACCESSORS(AllocationSite, transition_info, Object, kTransitionInfoOffset) |
5629 ACCESSORS(AllocationSite, nested_site, Object, kNestedSiteOffset) | 5627 ACCESSORS(AllocationSite, nested_site, Object, kNestedSiteOffset) |
5630 SMI_ACCESSORS(AllocationSite, pretenure_data, kPretenureDataOffset) | 5628 SMI_ACCESSORS(AllocationSite, pretenure_data, kPretenureDataOffset) |
5631 SMI_ACCESSORS(AllocationSite, pretenure_create_count, | 5629 SMI_ACCESSORS(AllocationSite, pretenure_create_count, |
5632 kPretenureCreateCountOffset) | 5630 kPretenureCreateCountOffset) |
5633 ACCESSORS(AllocationSite, dependent_code, DependentCode, | 5631 ACCESSORS(AllocationSite, dependent_code, DependentCode, |
5634 kDependentCodeOffset) | 5632 kDependentCodeOffset) |
5635 ACCESSORS(AllocationSite, weak_next, Object, kWeakNextOffset) | 5633 ACCESSORS(AllocationSite, weak_next, Object, kWeakNextOffset) |
5636 ACCESSORS(AllocationMemento, allocation_site, Object, kAllocationSiteOffset) | 5634 ACCESSORS(AllocationMemento, allocation_site, Object, kAllocationSiteOffset) |
5637 | 5635 |
(...skipping 2227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7865 #undef WRITE_INT64_FIELD | 7863 #undef WRITE_INT64_FIELD |
7866 #undef READ_BYTE_FIELD | 7864 #undef READ_BYTE_FIELD |
7867 #undef WRITE_BYTE_FIELD | 7865 #undef WRITE_BYTE_FIELD |
7868 #undef NOBARRIER_READ_BYTE_FIELD | 7866 #undef NOBARRIER_READ_BYTE_FIELD |
7869 #undef NOBARRIER_WRITE_BYTE_FIELD | 7867 #undef NOBARRIER_WRITE_BYTE_FIELD |
7870 | 7868 |
7871 } // namespace internal | 7869 } // namespace internal |
7872 } // namespace v8 | 7870 } // namespace v8 |
7873 | 7871 |
7874 #endif // V8_OBJECTS_INL_H_ | 7872 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |