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

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

Issue 2361593002: [modules] Do path resolution relative to each module file in d8 (Closed)
Patch Set: Review comments Created 4 years, 3 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 5699 matching lines...) Expand 10 before | Expand all | Expand 10 after
5710 BOOL_ACCESSORS(PrototypeInfo, bit_field, should_be_fast_map, kShouldBeFastBit) 5710 BOOL_ACCESSORS(PrototypeInfo, bit_field, should_be_fast_map, kShouldBeFastBit)
5711 5711
5712 ACCESSORS(ContextExtension, scope_info, ScopeInfo, kScopeInfoOffset) 5712 ACCESSORS(ContextExtension, scope_info, ScopeInfo, kScopeInfoOffset)
5713 ACCESSORS(ContextExtension, extension, Object, kExtensionOffset) 5713 ACCESSORS(ContextExtension, extension, Object, kExtensionOffset)
5714 5714
5715 ACCESSORS(Module, code, Object, kCodeOffset) 5715 ACCESSORS(Module, code, Object, kCodeOffset)
5716 ACCESSORS(Module, exports, ObjectHashTable, kExportsOffset) 5716 ACCESSORS(Module, exports, ObjectHashTable, kExportsOffset)
5717 ACCESSORS(Module, requested_modules, FixedArray, kRequestedModulesOffset) 5717 ACCESSORS(Module, requested_modules, FixedArray, kRequestedModulesOffset)
5718 SMI_ACCESSORS(Module, flags, kFlagsOffset) 5718 SMI_ACCESSORS(Module, flags, kFlagsOffset)
5719 BOOL_ACCESSORS(Module, flags, evaluated, kEvaluatedBit) 5719 BOOL_ACCESSORS(Module, flags, evaluated, kEvaluatedBit)
5720 ACCESSORS(Module, embedder_data, Object, kEmbedderDataOffset)
5720 5721
5721 ACCESSORS(AccessorPair, getter, Object, kGetterOffset) 5722 ACCESSORS(AccessorPair, getter, Object, kGetterOffset)
5722 ACCESSORS(AccessorPair, setter, Object, kSetterOffset) 5723 ACCESSORS(AccessorPair, setter, Object, kSetterOffset)
5723 5724
5724 ACCESSORS(AccessCheckInfo, callback, Object, kCallbackOffset) 5725 ACCESSORS(AccessCheckInfo, callback, Object, kCallbackOffset)
5725 ACCESSORS(AccessCheckInfo, named_interceptor, Object, kNamedInterceptorOffset) 5726 ACCESSORS(AccessCheckInfo, named_interceptor, Object, kNamedInterceptorOffset)
5726 ACCESSORS(AccessCheckInfo, indexed_interceptor, Object, 5727 ACCESSORS(AccessCheckInfo, indexed_interceptor, Object,
5727 kIndexedInterceptorOffset) 5728 kIndexedInterceptorOffset)
5728 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset) 5729 ACCESSORS(AccessCheckInfo, data, Object, kDataOffset)
5729 5730
(...skipping 2593 matching lines...) Expand 10 before | Expand all | Expand 10 after
8323 #undef WRITE_INT64_FIELD 8324 #undef WRITE_INT64_FIELD
8324 #undef READ_BYTE_FIELD 8325 #undef READ_BYTE_FIELD
8325 #undef WRITE_BYTE_FIELD 8326 #undef WRITE_BYTE_FIELD
8326 #undef NOBARRIER_READ_BYTE_FIELD 8327 #undef NOBARRIER_READ_BYTE_FIELD
8327 #undef NOBARRIER_WRITE_BYTE_FIELD 8328 #undef NOBARRIER_WRITE_BYTE_FIELD
8328 8329
8329 } // namespace internal 8330 } // namespace internal
8330 } // namespace v8 8331 } // namespace v8
8331 8332
8332 #endif // V8_OBJECTS_INL_H_ 8333 #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