| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 4661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4672 kExtendedModeFunction) | 4672 kExtendedModeFunction) |
| 4673 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, native, kNative) | 4673 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, native, kNative) |
| 4674 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, | 4674 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, |
| 4675 name_should_print_as_anonymous, | 4675 name_should_print_as_anonymous, |
| 4676 kNameShouldPrintAsAnonymous) | 4676 kNameShouldPrintAsAnonymous) |
| 4677 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, bound, kBoundFunction) | 4677 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, bound, kBoundFunction) |
| 4678 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_anonymous, kIsAnonymous) | 4678 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_anonymous, kIsAnonymous) |
| 4679 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_function, kIsFunction) | 4679 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_function, kIsFunction) |
| 4680 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_optimize, | 4680 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_optimize, |
| 4681 kDontOptimize) | 4681 kDontOptimize) |
| 4682 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_osr, |
| 4683 kDontOsr) |
| 4682 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_inline, kDontInline) | 4684 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_inline, kDontInline) |
| 4683 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_cache, kDontCache) | 4685 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_cache, kDontCache) |
| 4684 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_flush, kDontFlush) | 4686 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_flush, kDontFlush) |
| 4685 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_generator, kIsGenerator) | 4687 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_generator, kIsGenerator) |
| 4686 | 4688 |
| 4687 void SharedFunctionInfo::BeforeVisitingPointers() { | 4689 void SharedFunctionInfo::BeforeVisitingPointers() { |
| 4688 if (IsInobjectSlackTrackingInProgress()) DetachInitialMap(); | 4690 if (IsInobjectSlackTrackingInProgress()) DetachInitialMap(); |
| 4689 } | 4691 } |
| 4690 | 4692 |
| 4691 | 4693 |
| (...skipping 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6185 #undef WRITE_UINT32_FIELD | 6187 #undef WRITE_UINT32_FIELD |
| 6186 #undef READ_SHORT_FIELD | 6188 #undef READ_SHORT_FIELD |
| 6187 #undef WRITE_SHORT_FIELD | 6189 #undef WRITE_SHORT_FIELD |
| 6188 #undef READ_BYTE_FIELD | 6190 #undef READ_BYTE_FIELD |
| 6189 #undef WRITE_BYTE_FIELD | 6191 #undef WRITE_BYTE_FIELD |
| 6190 | 6192 |
| 6191 | 6193 |
| 6192 } } // namespace v8::internal | 6194 } } // namespace v8::internal |
| 6193 | 6195 |
| 6194 #endif // V8_OBJECTS_INL_H_ | 6196 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |