OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |