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 3483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3494 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex) | 3494 ACCESSORS(DebugInfo, code, Code, kPatchedCodeIndex) |
3495 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex) | 3495 ACCESSORS(DebugInfo, break_points, FixedArray, kBreakPointsStateIndex) |
3496 | 3496 |
3497 ACCESSORS_TO_SMI(BreakPointInfo, code_position, kCodePositionIndex) | 3497 ACCESSORS_TO_SMI(BreakPointInfo, code_position, kCodePositionIndex) |
3498 ACCESSORS_TO_SMI(BreakPointInfo, source_position, kSourcePositionIndex) | 3498 ACCESSORS_TO_SMI(BreakPointInfo, source_position, kSourcePositionIndex) |
3499 ACCESSORS_TO_SMI(BreakPointInfo, statement_position, kStatementPositionIndex) | 3499 ACCESSORS_TO_SMI(BreakPointInfo, statement_position, kStatementPositionIndex) |
3500 ACCESSORS(BreakPointInfo, break_point_objects, Object, kBreakPointObjectsIndex) | 3500 ACCESSORS(BreakPointInfo, break_point_objects, Object, kBreakPointObjectsIndex) |
3501 #endif | 3501 #endif |
3502 | 3502 |
3503 ACCESSORS(SharedFunctionInfo, name, Object, kNameOffset) | 3503 ACCESSORS(SharedFunctionInfo, name, Object, kNameOffset) |
| 3504 ACCESSORS(SharedFunctionInfo, optimized_code_map, Object, |
| 3505 kOptimizedCodeMapOffset) |
3504 ACCESSORS(SharedFunctionInfo, construct_stub, Code, kConstructStubOffset) | 3506 ACCESSORS(SharedFunctionInfo, construct_stub, Code, kConstructStubOffset) |
3505 ACCESSORS(SharedFunctionInfo, initial_map, Object, kInitialMapOffset) | 3507 ACCESSORS(SharedFunctionInfo, initial_map, Object, kInitialMapOffset) |
3506 ACCESSORS(SharedFunctionInfo, instance_class_name, Object, | 3508 ACCESSORS(SharedFunctionInfo, instance_class_name, Object, |
3507 kInstanceClassNameOffset) | 3509 kInstanceClassNameOffset) |
3508 ACCESSORS(SharedFunctionInfo, function_data, Object, kFunctionDataOffset) | 3510 ACCESSORS(SharedFunctionInfo, function_data, Object, kFunctionDataOffset) |
3509 ACCESSORS(SharedFunctionInfo, script, Object, kScriptOffset) | 3511 ACCESSORS(SharedFunctionInfo, script, Object, kScriptOffset) |
3510 ACCESSORS(SharedFunctionInfo, debug_info, Object, kDebugInfoOffset) | 3512 ACCESSORS(SharedFunctionInfo, debug_info, Object, kDebugInfoOffset) |
3511 ACCESSORS(SharedFunctionInfo, inferred_name, String, kInferredNameOffset) | 3513 ACCESSORS(SharedFunctionInfo, inferred_name, String, kInferredNameOffset) |
3512 ACCESSORS(SharedFunctionInfo, this_property_assignments, Object, | 3514 ACCESSORS(SharedFunctionInfo, this_property_assignments, Object, |
3513 kThisPropertyAssignmentsOffset) | 3515 kThisPropertyAssignmentsOffset) |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3695 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, | 3697 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, |
3696 name_should_print_as_anonymous, | 3698 name_should_print_as_anonymous, |
3697 kNameShouldPrintAsAnonymous) | 3699 kNameShouldPrintAsAnonymous) |
3698 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, bound, kBoundFunction) | 3700 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, bound, kBoundFunction) |
3699 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_anonymous, kIsAnonymous) | 3701 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_anonymous, kIsAnonymous) |
3700 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_function, kIsFunction) | 3702 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, is_function, kIsFunction) |
3701 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_optimize, | 3703 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_optimize, |
3702 kDontOptimize) | 3704 kDontOptimize) |
3703 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_inline, kDontInline) | 3705 BOOL_ACCESSORS(SharedFunctionInfo, compiler_hints, dont_inline, kDontInline) |
3704 | 3706 |
| 3707 void SharedFunctionInfo::BeforeVisitingPointers() { |
| 3708 if (IsInobjectSlackTrackingInProgress()) DetachInitialMap(); |
| 3709 |
| 3710 // Flush optimized code map on major GC. |
| 3711 // Note: we may experiment with rebuilding it or retaining entries |
| 3712 // which should survive as we iterate through optimized functions |
| 3713 // anyway. |
| 3714 set_optimized_code_map(Smi::FromInt(0)); |
| 3715 } |
| 3716 |
| 3717 |
3705 ACCESSORS(CodeCache, default_cache, FixedArray, kDefaultCacheOffset) | 3718 ACCESSORS(CodeCache, default_cache, FixedArray, kDefaultCacheOffset) |
3706 ACCESSORS(CodeCache, normal_type_cache, Object, kNormalTypeCacheOffset) | 3719 ACCESSORS(CodeCache, normal_type_cache, Object, kNormalTypeCacheOffset) |
3707 | 3720 |
3708 ACCESSORS(PolymorphicCodeCache, cache, Object, kCacheOffset) | 3721 ACCESSORS(PolymorphicCodeCache, cache, Object, kCacheOffset) |
3709 | 3722 |
3710 bool Script::HasValidSource() { | 3723 bool Script::HasValidSource() { |
3711 Object* src = this->source(); | 3724 Object* src = this->source(); |
3712 if (!src->IsString()) return true; | 3725 if (!src->IsString()) return true; |
3713 String* src_str = String::cast(src); | 3726 String* src_str = String::cast(src); |
3714 if (!StringShape(src_str).IsExternal()) return true; | 3727 if (!StringShape(src_str).IsExternal()) return true; |
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4942 #undef WRITE_UINT32_FIELD | 4955 #undef WRITE_UINT32_FIELD |
4943 #undef READ_SHORT_FIELD | 4956 #undef READ_SHORT_FIELD |
4944 #undef WRITE_SHORT_FIELD | 4957 #undef WRITE_SHORT_FIELD |
4945 #undef READ_BYTE_FIELD | 4958 #undef READ_BYTE_FIELD |
4946 #undef WRITE_BYTE_FIELD | 4959 #undef WRITE_BYTE_FIELD |
4947 | 4960 |
4948 | 4961 |
4949 } } // namespace v8::internal | 4962 } } // namespace v8::internal |
4950 | 4963 |
4951 #endif // V8_OBJECTS_INL_H_ | 4964 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |