| 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 5475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5486 kReadOnlyPrototypeBit) | 5486 kReadOnlyPrototypeBit) |
| 5487 BOOL_ACCESSORS(FunctionTemplateInfo, flag, remove_prototype, | 5487 BOOL_ACCESSORS(FunctionTemplateInfo, flag, remove_prototype, |
| 5488 kRemovePrototypeBit) | 5488 kRemovePrototypeBit) |
| 5489 BOOL_ACCESSORS(FunctionTemplateInfo, flag, do_not_cache, | 5489 BOOL_ACCESSORS(FunctionTemplateInfo, flag, do_not_cache, |
| 5490 kDoNotCacheBit) | 5490 kDoNotCacheBit) |
| 5491 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, | 5491 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_expression, |
| 5492 kIsExpressionBit) | 5492 kIsExpressionBit) |
| 5493 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, | 5493 BOOL_ACCESSORS(SharedFunctionInfo, start_position_and_type, is_toplevel, |
| 5494 kIsTopLevelBit) | 5494 kIsTopLevelBit) |
| 5495 | 5495 |
| 5496 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, optimize_next_closure, | 5496 BOOL_ACCESSORS(SharedFunctionInfo, |
| 5497 kOptimizeNextClosure) | 5497 compiler_hints, |
| 5498 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, allows_lazy_compilation, | 5498 allows_lazy_compilation, |
| 5499 kAllowLazyCompilation) | 5499 kAllowLazyCompilation) |
| 5500 BOOL_ACCESSORS(SharedFunctionInfo, | 5500 BOOL_ACCESSORS(SharedFunctionInfo, |
| 5501 compiler_hints, | 5501 compiler_hints, |
| 5502 allows_lazy_compilation_without_context, | 5502 allows_lazy_compilation_without_context, |
| 5503 kAllowLazyCompilationWithoutContext) | 5503 kAllowLazyCompilationWithoutContext) |
| 5504 BOOL_ACCESSORS(SharedFunctionInfo, | 5504 BOOL_ACCESSORS(SharedFunctionInfo, |
| 5505 compiler_hints, | 5505 compiler_hints, |
| 5506 uses_arguments, | 5506 uses_arguments, |
| 5507 kUsesArguments) | 5507 kUsesArguments) |
| 5508 BOOL_ACCESSORS(SharedFunctionInfo, | 5508 BOOL_ACCESSORS(SharedFunctionInfo, |
| (...skipping 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7316 #undef READ_SHORT_FIELD | 7316 #undef READ_SHORT_FIELD |
| 7317 #undef WRITE_SHORT_FIELD | 7317 #undef WRITE_SHORT_FIELD |
| 7318 #undef READ_BYTE_FIELD | 7318 #undef READ_BYTE_FIELD |
| 7319 #undef WRITE_BYTE_FIELD | 7319 #undef WRITE_BYTE_FIELD |
| 7320 #undef NOBARRIER_READ_BYTE_FIELD | 7320 #undef NOBARRIER_READ_BYTE_FIELD |
| 7321 #undef NOBARRIER_WRITE_BYTE_FIELD | 7321 #undef NOBARRIER_WRITE_BYTE_FIELD |
| 7322 | 7322 |
| 7323 } } // namespace v8::internal | 7323 } } // namespace v8::internal |
| 7324 | 7324 |
| 7325 #endif // V8_OBJECTS_INL_H_ | 7325 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |