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

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

Issue 1155503002: [turbofan] Prepare mechanism to enable TF on language subset. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix think'o! Created 5 years, 7 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') | no next file » | 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 5779 matching lines...) Expand 10 before | Expand all | Expand 10 after
5790 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, uses_super_property, 5790 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, uses_super_property,
5791 kUsesSuperProperty) 5791 kUsesSuperProperty)
5792 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, native, kNative) 5792 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, native, kNative)
5793 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, force_inline, kForceInline) 5793 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, force_inline, kForceInline)
5794 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, 5794 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints,
5795 name_should_print_as_anonymous, 5795 name_should_print_as_anonymous,
5796 kNameShouldPrintAsAnonymous) 5796 kNameShouldPrintAsAnonymous)
5797 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, bound, kBoundFunction) 5797 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, bound, kBoundFunction)
5798 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_anonymous, kIsAnonymous) 5798 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_anonymous, kIsAnonymous)
5799 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_function, kIsFunction) 5799 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_function, kIsFunction)
5800 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_crankshaft,
5801 kDontCrankshaft)
5800 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_cache, kDontCache) 5802 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_cache, kDontCache)
5801 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_flush, kDontFlush) 5803 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_flush, kDontFlush)
5802 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_arrow, kIsArrow) 5804 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_arrow, kIsArrow)
5803 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_generator, kIsGenerator) 5805 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_generator, kIsGenerator)
5804 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_concise_method, 5806 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_concise_method,
5805 kIsConciseMethod) 5807 kIsConciseMethod)
5806 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_accessor_function, 5808 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_accessor_function,
5807 kIsAccessorFunction) 5809 kIsAccessorFunction)
5808 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_default_constructor, 5810 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_default_constructor,
5809 kIsDefaultConstructor) 5811 kIsDefaultConstructor)
(...skipping 1826 matching lines...) Expand 10 before | Expand all | Expand 10 after
7636 #undef READ_SHORT_FIELD 7638 #undef READ_SHORT_FIELD
7637 #undef WRITE_SHORT_FIELD 7639 #undef WRITE_SHORT_FIELD
7638 #undef READ_BYTE_FIELD 7640 #undef READ_BYTE_FIELD
7639 #undef WRITE_BYTE_FIELD 7641 #undef WRITE_BYTE_FIELD
7640 #undef NOBARRIER_READ_BYTE_FIELD 7642 #undef NOBARRIER_READ_BYTE_FIELD
7641 #undef NOBARRIER_WRITE_BYTE_FIELD 7643 #undef NOBARRIER_WRITE_BYTE_FIELD
7642 7644
7643 } } // namespace v8::internal 7645 } } // namespace v8::internal
7644 7646
7645 #endif // V8_OBJECTS_INL_H_ 7647 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698