| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 5726b3739320e30c7eeb0eb23dd87c31c760b933..70f62674e5b6f1e8e6cb8647c1d98d71df7dc68e 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -3437,35 +3437,14 @@ void SharedFunctionInfo::set_optimization_disabled(bool disable) {
|
| }
|
|
|
|
|
| -BOOL_ACCESSORS(SharedFunctionInfo,
|
| - compiler_hints,
|
| - strict_mode,
|
| +BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, strict_mode,
|
| kStrictModeFunction)
|
| -
|
| -
|
| -bool SharedFunctionInfo::native() {
|
| - return BooleanBit::get(compiler_hints(), kNative);
|
| -}
|
| -
|
| -
|
| -void SharedFunctionInfo::set_native(bool value) {
|
| - set_compiler_hints(BooleanBit::set(compiler_hints(),
|
| - kNative,
|
| - value));
|
| -}
|
| -
|
| -
|
| -bool SharedFunctionInfo::bound() {
|
| - return BooleanBit::get(compiler_hints(), kBoundFunction);
|
| -}
|
| -
|
| -
|
| -void SharedFunctionInfo::set_bound(bool value) {
|
| - set_compiler_hints(BooleanBit::set(compiler_hints(),
|
| - kBoundFunction,
|
| - value));
|
| -}
|
| -
|
| +BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, native, kNative)
|
| +BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints,
|
| + name_should_print_as_anonymous,
|
| + kNameShouldPrintAsAnonymous)
|
| +BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, bound, kBoundFunction)
|
| +BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_anonymous, kIsAnonymous)
|
|
|
| ACCESSORS(CodeCache, default_cache, FixedArray, kDefaultCacheOffset)
|
| ACCESSORS(CodeCache, normal_type_cache, Object, kNormalTypeCacheOffset)
|
|
|