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

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

Issue 1666673002: Version 4.10.145.1 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.10.145
Patch Set: Created 4 years, 10 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 5515 matching lines...) Expand 10 before | Expand all | Expand 10 after
5526 BOOL_ACCESSORS(InterceptorInfo, flags, can_intercept_symbols, 5526 BOOL_ACCESSORS(InterceptorInfo, flags, can_intercept_symbols,
5527 kCanInterceptSymbolsBit) 5527 kCanInterceptSymbolsBit)
5528 BOOL_ACCESSORS(InterceptorInfo, flags, all_can_read, kAllCanReadBit) 5528 BOOL_ACCESSORS(InterceptorInfo, flags, all_can_read, kAllCanReadBit)
5529 BOOL_ACCESSORS(InterceptorInfo, flags, non_masking, kNonMasking) 5529 BOOL_ACCESSORS(InterceptorInfo, flags, non_masking, kNonMasking)
5530 5530
5531 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset) 5531 ACCESSORS(CallHandlerInfo, callback, Object, kCallbackOffset)
5532 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset) 5532 ACCESSORS(CallHandlerInfo, data, Object, kDataOffset)
5533 ACCESSORS(CallHandlerInfo, fast_handler, Object, kFastHandlerOffset) 5533 ACCESSORS(CallHandlerInfo, fast_handler, Object, kFastHandlerOffset)
5534 5534
5535 ACCESSORS(TemplateInfo, tag, Object, kTagOffset) 5535 ACCESSORS(TemplateInfo, tag, Object, kTagOffset)
5536 ACCESSORS(TemplateInfo, serial_number, Object, kSerialNumberOffset)
5537 SMI_ACCESSORS(TemplateInfo, number_of_properties, kNumberOfProperties) 5536 SMI_ACCESSORS(TemplateInfo, number_of_properties, kNumberOfProperties)
5538 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset) 5537 ACCESSORS(TemplateInfo, property_list, Object, kPropertyListOffset)
5539 ACCESSORS(TemplateInfo, property_accessors, Object, kPropertyAccessorsOffset) 5538 ACCESSORS(TemplateInfo, property_accessors, Object, kPropertyAccessorsOffset)
5540 5539
5540 ACCESSORS(FunctionTemplateInfo, serial_number, Object, kSerialNumberOffset)
5541 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset) 5541 ACCESSORS(FunctionTemplateInfo, call_code, Object, kCallCodeOffset)
5542 ACCESSORS(FunctionTemplateInfo, prototype_template, Object, 5542 ACCESSORS(FunctionTemplateInfo, prototype_template, Object,
5543 kPrototypeTemplateOffset) 5543 kPrototypeTemplateOffset)
5544 ACCESSORS(FunctionTemplateInfo, parent_template, Object, kParentTemplateOffset) 5544 ACCESSORS(FunctionTemplateInfo, parent_template, Object, kParentTemplateOffset)
5545 ACCESSORS(FunctionTemplateInfo, named_property_handler, Object, 5545 ACCESSORS(FunctionTemplateInfo, named_property_handler, Object,
5546 kNamedPropertyHandlerOffset) 5546 kNamedPropertyHandlerOffset)
5547 ACCESSORS(FunctionTemplateInfo, indexed_property_handler, Object, 5547 ACCESSORS(FunctionTemplateInfo, indexed_property_handler, Object,
5548 kIndexedPropertyHandlerOffset) 5548 kIndexedPropertyHandlerOffset)
5549 ACCESSORS(FunctionTemplateInfo, instance_template, Object, 5549 ACCESSORS(FunctionTemplateInfo, instance_template, Object,
5550 kInstanceTemplateOffset) 5550 kInstanceTemplateOffset)
(...skipping 2288 matching lines...) Expand 10 before | Expand all | Expand 10 after
7839 #undef WRITE_INT64_FIELD 7839 #undef WRITE_INT64_FIELD
7840 #undef READ_BYTE_FIELD 7840 #undef READ_BYTE_FIELD
7841 #undef WRITE_BYTE_FIELD 7841 #undef WRITE_BYTE_FIELD
7842 #undef NOBARRIER_READ_BYTE_FIELD 7842 #undef NOBARRIER_READ_BYTE_FIELD
7843 #undef NOBARRIER_WRITE_BYTE_FIELD 7843 #undef NOBARRIER_WRITE_BYTE_FIELD
7844 7844
7845 } // namespace internal 7845 } // namespace internal
7846 } // namespace v8 7846 } // namespace v8
7847 7847
7848 #endif // V8_OBJECTS_INL_H_ 7848 #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