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 #if V8_TARGET_ARCH_IA32 | 5 #if V8_TARGET_ARCH_IA32 |
6 | 6 |
7 #include "src/code-factory.h" | 7 #include "src/code-factory.h" |
8 #include "src/codegen.h" | 8 #include "src/codegen.h" |
9 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
10 #include "src/full-codegen/full-codegen.h" | 10 #include "src/full-codegen/full-codegen.h" |
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
867 SharedFunctionInfo::kOffsetToPreviousContext)); | 867 SharedFunctionInfo::kOffsetToPreviousContext)); |
868 __ mov(temp, FieldOperand(temp, WeakCell::kValueOffset)); | 868 __ mov(temp, FieldOperand(temp, WeakCell::kValueOffset)); |
869 __ cmp(temp, native_context); | 869 __ cmp(temp, native_context); |
870 __ j(not_equal, &loop_bottom); | 870 __ j(not_equal, &loop_bottom); |
871 // OSR id set to none? | 871 // OSR id set to none? |
872 __ mov(temp, FieldOperand(map, index, times_half_pointer_size, | 872 __ mov(temp, FieldOperand(map, index, times_half_pointer_size, |
873 SharedFunctionInfo::kOffsetToPreviousOsrAstId)); | 873 SharedFunctionInfo::kOffsetToPreviousOsrAstId)); |
874 const int bailout_id = BailoutId::None().ToInt(); | 874 const int bailout_id = BailoutId::None().ToInt(); |
875 __ cmp(temp, Immediate(Smi::FromInt(bailout_id))); | 875 __ cmp(temp, Immediate(Smi::FromInt(bailout_id))); |
876 __ j(not_equal, &loop_bottom); | 876 __ j(not_equal, &loop_bottom); |
| 877 |
877 // Literals available? | 878 // Literals available? |
| 879 Label got_literals, maybe_cleared_weakcell; |
878 __ mov(temp, FieldOperand(map, index, times_half_pointer_size, | 880 __ mov(temp, FieldOperand(map, index, times_half_pointer_size, |
879 SharedFunctionInfo::kOffsetToPreviousLiterals)); | 881 SharedFunctionInfo::kOffsetToPreviousLiterals)); |
| 882 |
| 883 // temp contains either a WeakCell pointing to the literals array or the |
| 884 // literals array directly. |
| 885 STATIC_ASSERT(WeakCell::kValueOffset == FixedArray::kLengthOffset); |
| 886 __ JumpIfSmi(FieldOperand(temp, WeakCell::kValueOffset), |
| 887 &maybe_cleared_weakcell); |
| 888 // The WeakCell value is a pointer, therefore it's a valid literals array. |
880 __ mov(temp, FieldOperand(temp, WeakCell::kValueOffset)); | 889 __ mov(temp, FieldOperand(temp, WeakCell::kValueOffset)); |
881 __ JumpIfSmi(temp, &gotta_call_runtime); | 890 __ jmp(&got_literals); |
| 891 |
| 892 // We have a smi. If it's 0, then we are looking at a cleared WeakCell |
| 893 // around the literals array, and we should visit the runtime. If it's > 0, |
| 894 // then temp already contains the literals array. |
| 895 __ bind(&maybe_cleared_weakcell); |
| 896 __ cmp(FieldOperand(temp, WeakCell::kValueOffset), Immediate(0)); |
| 897 __ j(equal, &gotta_call_runtime); |
882 | 898 |
883 // Save the literals in the closure. | 899 // Save the literals in the closure. |
| 900 __ bind(&got_literals); |
884 __ mov(ecx, Operand(esp, 0)); | 901 __ mov(ecx, Operand(esp, 0)); |
885 __ mov(FieldOperand(ecx, JSFunction::kLiteralsOffset), temp); | 902 __ mov(FieldOperand(ecx, JSFunction::kLiteralsOffset), temp); |
886 __ push(index); | 903 __ push(index); |
887 __ RecordWriteField(ecx, JSFunction::kLiteralsOffset, temp, index, | 904 __ RecordWriteField(ecx, JSFunction::kLiteralsOffset, temp, index, |
888 kDontSaveFPRegs, EMIT_REMEMBERED_SET, OMIT_SMI_CHECK); | 905 kDontSaveFPRegs, EMIT_REMEMBERED_SET, OMIT_SMI_CHECK); |
889 __ pop(index); | 906 __ pop(index); |
890 | 907 |
891 // Code available? | 908 // Code available? |
892 Register entry = ecx; | 909 Register entry = ecx; |
893 __ mov(entry, FieldOperand(map, index, times_half_pointer_size, | 910 __ mov(entry, FieldOperand(map, index, times_half_pointer_size, |
(...skipping 1966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2860 // And "return" to the OSR entry point of the function. | 2877 // And "return" to the OSR entry point of the function. |
2861 __ ret(0); | 2878 __ ret(0); |
2862 } | 2879 } |
2863 | 2880 |
2864 | 2881 |
2865 #undef __ | 2882 #undef __ |
2866 } // namespace internal | 2883 } // namespace internal |
2867 } // namespace v8 | 2884 } // namespace v8 |
2868 | 2885 |
2869 #endif // V8_TARGET_ARCH_IA32 | 2886 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |