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

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

Issue 1906453002: Revert of Change calling convention of CallApiGetterStub to accept the AccessorInfo (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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-debug.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 5406 matching lines...) Expand 10 before | Expand all | Expand 10 after
5417 ACCESSORS(JSGlobalProxy, native_context, Object, kNativeContextOffset) 5417 ACCESSORS(JSGlobalProxy, native_context, Object, kNativeContextOffset)
5418 ACCESSORS(JSGlobalProxy, hash, Object, kHashOffset) 5418 ACCESSORS(JSGlobalProxy, hash, Object, kHashOffset)
5419 5419
5420 ACCESSORS(AccessorInfo, name, Object, kNameOffset) 5420 ACCESSORS(AccessorInfo, name, Object, kNameOffset)
5421 SMI_ACCESSORS(AccessorInfo, flag, kFlagOffset) 5421 SMI_ACCESSORS(AccessorInfo, flag, kFlagOffset)
5422 ACCESSORS(AccessorInfo, expected_receiver_type, Object, 5422 ACCESSORS(AccessorInfo, expected_receiver_type, Object,
5423 kExpectedReceiverTypeOffset) 5423 kExpectedReceiverTypeOffset)
5424 5424
5425 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset) 5425 ACCESSORS(AccessorInfo, getter, Object, kGetterOffset)
5426 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset) 5426 ACCESSORS(AccessorInfo, setter, Object, kSetterOffset)
5427 ACCESSORS(AccessorInfo, js_getter, Object, kJsGetterOffset)
5428 ACCESSORS(AccessorInfo, data, Object, kDataOffset) 5427 ACCESSORS(AccessorInfo, data, Object, kDataOffset)
5429 5428
5430 ACCESSORS(Box, value, Object, kValueOffset) 5429 ACCESSORS(Box, value, Object, kValueOffset)
5431 5430
5432 ACCESSORS(PrototypeInfo, prototype_users, Object, kPrototypeUsersOffset) 5431 ACCESSORS(PrototypeInfo, prototype_users, Object, kPrototypeUsersOffset)
5433 SMI_ACCESSORS(PrototypeInfo, registry_slot, kRegistrySlotOffset) 5432 SMI_ACCESSORS(PrototypeInfo, registry_slot, kRegistrySlotOffset)
5434 ACCESSORS(PrototypeInfo, validity_cell, Object, kValidityCellOffset) 5433 ACCESSORS(PrototypeInfo, validity_cell, Object, kValidityCellOffset)
5435 5434
5436 ACCESSORS(SloppyBlockWithEvalContextExtension, scope_info, ScopeInfo, 5435 ACCESSORS(SloppyBlockWithEvalContextExtension, scope_info, ScopeInfo,
5437 kScopeInfoOffset) 5436 kScopeInfoOffset)
(...skipping 2370 matching lines...) Expand 10 before | Expand all | Expand 10 after
7808 #undef WRITE_INT64_FIELD 7807 #undef WRITE_INT64_FIELD
7809 #undef READ_BYTE_FIELD 7808 #undef READ_BYTE_FIELD
7810 #undef WRITE_BYTE_FIELD 7809 #undef WRITE_BYTE_FIELD
7811 #undef NOBARRIER_READ_BYTE_FIELD 7810 #undef NOBARRIER_READ_BYTE_FIELD
7812 #undef NOBARRIER_WRITE_BYTE_FIELD 7811 #undef NOBARRIER_WRITE_BYTE_FIELD
7813 7812
7814 } // namespace internal 7813 } // namespace internal
7815 } // namespace v8 7814 } // namespace v8
7816 7815
7817 #endif // V8_OBJECTS_INL_H_ 7816 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects-debug.cc ('k') | src/objects-printer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698