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 #include "v8.h" | 5 #include "v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_X64 | 7 #if V8_TARGET_ARCH_X64 |
8 | 8 |
9 #include "code-stubs.h" | 9 #include "code-stubs.h" |
10 #include "codegen.h" | 10 #include "codegen.h" |
(...skipping 2958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2969 | 2969 |
2970 // Skip loop if no descriptors are valid. | 2970 // Skip loop if no descriptors are valid. |
2971 __ NumberOfOwnDescriptors(rcx, rbx); | 2971 __ NumberOfOwnDescriptors(rcx, rbx); |
2972 __ cmpp(rcx, Immediate(0)); | 2972 __ cmpp(rcx, Immediate(0)); |
2973 __ j(equal, &done); | 2973 __ j(equal, &done); |
2974 | 2974 |
2975 __ LoadInstanceDescriptors(rbx, r8); | 2975 __ LoadInstanceDescriptors(rbx, r8); |
2976 // rbx: descriptor array. | 2976 // rbx: descriptor array. |
2977 // rcx: valid entries in the descriptor array. | 2977 // rcx: valid entries in the descriptor array. |
2978 // Calculate the end of the descriptor array. | 2978 // Calculate the end of the descriptor array. |
2979 __ imull(rcx, rcx, Immediate(DescriptorArray::kDescriptorSize)); | 2979 __ imulp(rcx, rcx, Immediate(DescriptorArray::kDescriptorSize)); |
2980 __ leal(rcx, Operand(r8, rcx, times_4, DescriptorArray::kFirstOffset)); | 2980 SmiIndex index = masm_->SmiToIndex(rdx, rcx, kPointerSizeLog2); |
| 2981 __ leap(rcx, |
| 2982 Operand( |
| 2983 r8, index.reg, index.scale, DescriptorArray::kFirstOffset)); |
2981 // Calculate location of the first key name. | 2984 // Calculate location of the first key name. |
2982 __ addp(r8, Immediate(DescriptorArray::kFirstOffset)); | 2985 __ addp(r8, Immediate(DescriptorArray::kFirstOffset)); |
2983 // Loop through all the keys in the descriptor array. If one of these is the | 2986 // Loop through all the keys in the descriptor array. If one of these is the |
2984 // internalized string "valueOf" the result is false. | 2987 // internalized string "valueOf" the result is false. |
2985 __ jmp(&entry); | 2988 __ jmp(&entry); |
2986 __ bind(&loop); | 2989 __ bind(&loop); |
2987 __ movp(rdx, FieldOperand(r8, 0)); | 2990 __ movp(rdx, FieldOperand(r8, 0)); |
2988 __ Cmp(rdx, isolate()->factory()->value_of_string()); | 2991 __ Cmp(rdx, isolate()->factory()->value_of_string()); |
2989 __ j(equal, if_false); | 2992 __ j(equal, if_false); |
2990 __ addp(r8, Immediate(DescriptorArray::kDescriptorSize * kPointerSize)); | 2993 __ addp(r8, Immediate(DescriptorArray::kDescriptorSize * kPointerSize)); |
(...skipping 1839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4830 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), | 4833 ASSERT_EQ(isolate->builtins()->OsrAfterStackCheck()->entry(), |
4831 Assembler::target_address_at(call_target_address, | 4834 Assembler::target_address_at(call_target_address, |
4832 unoptimized_code)); | 4835 unoptimized_code)); |
4833 return OSR_AFTER_STACK_CHECK; | 4836 return OSR_AFTER_STACK_CHECK; |
4834 } | 4837 } |
4835 | 4838 |
4836 | 4839 |
4837 } } // namespace v8::internal | 4840 } } // namespace v8::internal |
4838 | 4841 |
4839 #endif // V8_TARGET_ARCH_X64 | 4842 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |