| 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 5935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5946 kAcceptAnyReceiver) | 5946 kAcceptAnyReceiver) |
| 5947 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_named_expression, | 5947 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_named_expression, |
| 5948 kIsNamedExpressionBit) | 5948 kIsNamedExpressionBit) |
| 5949 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, | 5949 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, |
| 5950 kIsTopLevelBit) | 5950 kIsTopLevelBit) |
| 5951 | 5951 |
| 5952 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, allows_lazy_compilation, | 5952 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, allows_lazy_compilation, |
| 5953 kAllowLazyCompilation) | 5953 kAllowLazyCompilation) |
| 5954 BOOL_ACCESSORS(SharedFunctionInfo, | 5954 BOOL_ACCESSORS(SharedFunctionInfo, |
| 5955 compiler_hints, | 5955 compiler_hints, |
| 5956 allows_lazy_compilation_without_context, | |
| 5957 kAllowLazyCompilationWithoutContext) | |
| 5958 BOOL_ACCESSORS(SharedFunctionInfo, | |
| 5959 compiler_hints, | |
| 5960 uses_arguments, | 5956 uses_arguments, |
| 5961 kUsesArguments) | 5957 kUsesArguments) |
| 5962 BOOL_ACCESSORS(SharedFunctionInfo, | 5958 BOOL_ACCESSORS(SharedFunctionInfo, |
| 5963 compiler_hints, | 5959 compiler_hints, |
| 5964 has_duplicate_parameters, | 5960 has_duplicate_parameters, |
| 5965 kHasDuplicateParameters) | 5961 kHasDuplicateParameters) |
| 5966 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, asm_function, kIsAsmFunction) | 5962 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, asm_function, kIsAsmFunction) |
| 5967 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, deserialized, kDeserialized) | 5963 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, deserialized, kDeserialized) |
| 5968 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, never_compiled, | 5964 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, never_compiled, |
| 5969 kNeverCompiled) | 5965 kNeverCompiled) |
| (...skipping 2345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8315 #undef WRITE_INT64_FIELD | 8311 #undef WRITE_INT64_FIELD |
| 8316 #undef READ_BYTE_FIELD | 8312 #undef READ_BYTE_FIELD |
| 8317 #undef WRITE_BYTE_FIELD | 8313 #undef WRITE_BYTE_FIELD |
| 8318 #undef NOBARRIER_READ_BYTE_FIELD | 8314 #undef NOBARRIER_READ_BYTE_FIELD |
| 8319 #undef NOBARRIER_WRITE_BYTE_FIELD | 8315 #undef NOBARRIER_WRITE_BYTE_FIELD |
| 8320 | 8316 |
| 8321 } // namespace internal | 8317 } // namespace internal |
| 8322 } // namespace v8 | 8318 } // namespace v8 |
| 8323 | 8319 |
| 8324 #endif // V8_OBJECTS_INL_H_ | 8320 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |