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

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

Issue 2045273002: Remove deprecated access check callbacks (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 5502 matching lines...) Expand 10 before | Expand all | Expand 10 after
5513 ACCESSORS(PrototypeInfo, validity_cell, Object, kValidityCellOffset) 5513 ACCESSORS(PrototypeInfo, validity_cell, Object, kValidityCellOffset)
5514 5514
5515 ACCESSORS(SloppyBlockWithEvalContextExtension, scope_info, ScopeInfo, 5515 ACCESSORS(SloppyBlockWithEvalContextExtension, scope_info, ScopeInfo,
5516 kScopeInfoOffset) 5516 kScopeInfoOffset)
5517 ACCESSORS(SloppyBlockWithEvalContextExtension, extension, JSObject, 5517 ACCESSORS(SloppyBlockWithEvalContextExtension, extension, JSObject,
5518 kExtensionOffset) 5518 kExtensionOffset)
5519 5519
5520 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) 5520 ACCESSORS(AccessorPair, getter, Object, kGetterOffset)
5521 ACCESSORS(AccessorPair, setter, Object, kSetterOffset) 5521 ACCESSORS(AccessorPair, setter, Object, kSetterOffset)
5522 5522
5523 ACCESSORS(AccessCheckInfo, named_callback, Object, kNamedCallbackOffset)
5524 ACCESSORS(AccessCheckInfo, indexed_callback, Object, kIndexedCallbackOffset)
5525 ACCESSORS(AccessCheckInfo, callback, Object, kCallbackOffset) 5523 ACCESSORS(AccessCheckInfo, callback, Object, kCallbackOffset)
5526 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) 5524 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset)
5527 5525
5528 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset) 5526 ACCESSORS(InterceptorInfo, getter, Object, kGetterOffset)
5529 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset) 5527 ACCESSORS(InterceptorInfo, setter, Object, kSetterOffset)
5530 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset) 5528 ACCESSORS(InterceptorInfo, query, Object, kQueryOffset)
5531 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset) 5529 ACCESSORS(InterceptorInfo, deleter, Object, kDeleterOffset)
5532 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset) 5530 ACCESSORS(InterceptorInfo, enumerator, Object, kEnumeratorOffset)
5533 ACCESSORS(InterceptorInfo, data, Object, kDataOffset) 5531 ACCESSORS(InterceptorInfo, data, Object, kDataOffset)
5534 SMI_ACCESSORS(InterceptorInfo, flags, kFlagsOffset) 5532 SMI_ACCESSORS(InterceptorInfo, flags, kFlagsOffset)
(...skipping 2394 matching lines...) Expand 10 before | Expand all | Expand 10 after
7929 #undef WRITE_INT64_FIELD 7927 #undef WRITE_INT64_FIELD
7930 #undef READ_BYTE_FIELD 7928 #undef READ_BYTE_FIELD
7931 #undef WRITE_BYTE_FIELD 7929 #undef WRITE_BYTE_FIELD
7932 #undef NOBARRIER_READ_BYTE_FIELD 7930 #undef NOBARRIER_READ_BYTE_FIELD
7933 #undef NOBARRIER_WRITE_BYTE_FIELD 7931 #undef NOBARRIER_WRITE_BYTE_FIELD
7934 7932
7935 } // namespace internal 7933 } // namespace internal
7936 } // namespace v8 7934 } // namespace v8
7937 7935
7938 #endif // V8_OBJECTS_INL_H_ 7936 #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