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 "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_X64 | 7 #if V8_TARGET_ARCH_X64 |
8 | 8 |
9 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1114 __ bind(&loop); | 1114 __ bind(&loop); |
1115 __ movp(receiver, Operand(rbp, argumentsOffset)); // load arguments | 1115 __ movp(receiver, Operand(rbp, argumentsOffset)); // load arguments |
1116 | 1116 |
1117 // Use inline caching to speed up access to arguments. | 1117 // Use inline caching to speed up access to arguments. |
1118 FeedbackVectorSpec spec(0, Code::KEYED_LOAD_IC); | 1118 FeedbackVectorSpec spec(0, Code::KEYED_LOAD_IC); |
1119 Handle<TypeFeedbackVector> feedback_vector = | 1119 Handle<TypeFeedbackVector> feedback_vector = |
1120 masm->isolate()->factory()->NewTypeFeedbackVector(&spec); | 1120 masm->isolate()->factory()->NewTypeFeedbackVector(&spec); |
1121 int index = feedback_vector->GetIndex(FeedbackVectorICSlot(0)); | 1121 int index = feedback_vector->GetIndex(FeedbackVectorICSlot(0)); |
1122 __ Move(slot, Smi::FromInt(index)); | 1122 __ Move(slot, Smi::FromInt(index)); |
1123 __ Move(vector, feedback_vector); | 1123 __ Move(vector, feedback_vector); |
1124 Handle<Code> ic = KeyedLoadICStub(masm->isolate()).GetCode(); | 1124 Handle<Code> ic = |
| 1125 KeyedLoadICStub(masm->isolate(), LoadICState(kNoExtraICState)).GetCode(); |
1125 __ Call(ic, RelocInfo::CODE_TARGET); | 1126 __ Call(ic, RelocInfo::CODE_TARGET); |
1126 // It is important that we do not have a test instruction after the | 1127 // It is important that we do not have a test instruction after the |
1127 // call. A test instruction after the call is used to indicate that | 1128 // call. A test instruction after the call is used to indicate that |
1128 // we have generated an inline version of the keyed load. In this | 1129 // we have generated an inline version of the keyed load. In this |
1129 // case, we know that we are not generating a test instruction next. | 1130 // case, we know that we are not generating a test instruction next. |
1130 | 1131 |
1131 // Push the nth argument. | 1132 // Push the nth argument. |
1132 __ Push(rax); | 1133 __ Push(rax); |
1133 | 1134 |
1134 // Update the index on the stack and in register key. | 1135 // Update the index on the stack and in register key. |
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1783 __ ret(0); | 1784 __ ret(0); |
1784 } | 1785 } |
1785 | 1786 |
1786 | 1787 |
1787 #undef __ | 1788 #undef __ |
1788 | 1789 |
1789 } // namespace internal | 1790 } // namespace internal |
1790 } // namespace v8 | 1791 } // namespace v8 |
1791 | 1792 |
1792 #endif // V8_TARGET_ARCH_X64 | 1793 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |