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_IA32 | 7 #if V8_TARGET_ARCH_IA32 |
8 | 8 |
9 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
(...skipping 2164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2175 | 2175 |
2176 // result = receiver[f](arg); | 2176 // result = receiver[f](arg); |
2177 __ bind(&l_call); | 2177 __ bind(&l_call); |
2178 __ mov(load_receiver, Operand(esp, kPointerSize)); | 2178 __ mov(load_receiver, Operand(esp, kPointerSize)); |
2179 __ mov(LoadDescriptor::SlotRegister(), | 2179 __ mov(LoadDescriptor::SlotRegister(), |
2180 Immediate(SmiFromSlot(expr->KeyedLoadFeedbackSlot()))); | 2180 Immediate(SmiFromSlot(expr->KeyedLoadFeedbackSlot()))); |
2181 Handle<Code> ic = CodeFactory::KeyedLoadIC(isolate(), SLOPPY).code(); | 2181 Handle<Code> ic = CodeFactory::KeyedLoadIC(isolate(), SLOPPY).code(); |
2182 CallIC(ic, TypeFeedbackId::None()); | 2182 CallIC(ic, TypeFeedbackId::None()); |
2183 __ mov(edi, eax); | 2183 __ mov(edi, eax); |
2184 __ mov(Operand(esp, 2 * kPointerSize), edi); | 2184 __ mov(Operand(esp, 2 * kPointerSize), edi); |
| 2185 SetCallPosition(expr, 1); |
2185 CallFunctionStub stub(isolate(), 1, CALL_AS_METHOD); | 2186 CallFunctionStub stub(isolate(), 1, CALL_AS_METHOD); |
2186 __ CallStub(&stub); | 2187 __ CallStub(&stub); |
2187 | 2188 |
2188 __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); | 2189 __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |
2189 __ Drop(1); // The function is still on the stack; drop it. | 2190 __ Drop(1); // The function is still on the stack; drop it. |
2190 | 2191 |
2191 // if (!result.done) goto l_try; | 2192 // if (!result.done) goto l_try; |
2192 __ bind(&l_loop); | 2193 __ bind(&l_loop); |
2193 __ push(eax); // save result | 2194 __ push(eax); // save result |
2194 __ Move(load_receiver, eax); // result | 2195 __ Move(load_receiver, eax); // result |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2976 | 2977 |
2977 | 2978 |
2978 void FullCodeGenerator::EmitCall(Call* expr, CallICState::CallType call_type) { | 2979 void FullCodeGenerator::EmitCall(Call* expr, CallICState::CallType call_type) { |
2979 // Load the arguments. | 2980 // Load the arguments. |
2980 ZoneList<Expression*>* args = expr->arguments(); | 2981 ZoneList<Expression*>* args = expr->arguments(); |
2981 int arg_count = args->length(); | 2982 int arg_count = args->length(); |
2982 for (int i = 0; i < arg_count; i++) { | 2983 for (int i = 0; i < arg_count; i++) { |
2983 VisitForStackValue(args->at(i)); | 2984 VisitForStackValue(args->at(i)); |
2984 } | 2985 } |
2985 | 2986 |
2986 SetExpressionPosition(expr); | 2987 SetCallPosition(expr, arg_count); |
2987 Handle<Code> ic = CodeFactory::CallIC(isolate(), arg_count, call_type).code(); | 2988 Handle<Code> ic = CodeFactory::CallIC(isolate(), arg_count, call_type).code(); |
2988 __ Move(edx, Immediate(SmiFromSlot(expr->CallFeedbackICSlot()))); | 2989 __ Move(edx, Immediate(SmiFromSlot(expr->CallFeedbackICSlot()))); |
2989 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize)); | 2990 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize)); |
2990 // Don't assign a type feedback id to the IC, since type feedback is provided | 2991 // Don't assign a type feedback id to the IC, since type feedback is provided |
2991 // by the vector above. | 2992 // by the vector above. |
2992 CallIC(ic); | 2993 CallIC(ic); |
2993 | 2994 |
2994 RecordJSReturnSite(expr); | 2995 RecordJSReturnSite(expr); |
2995 | 2996 |
2996 // Restore context register. | 2997 // Restore context register. |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3107 // Push a copy of the function (found below the arguments) and | 3108 // Push a copy of the function (found below the arguments) and |
3108 // resolve eval. | 3109 // resolve eval. |
3109 __ push(Operand(esp, (arg_count + 1) * kPointerSize)); | 3110 __ push(Operand(esp, (arg_count + 1) * kPointerSize)); |
3110 EmitResolvePossiblyDirectEval(arg_count); | 3111 EmitResolvePossiblyDirectEval(arg_count); |
3111 | 3112 |
3112 // Touch up the stack with the resolved function. | 3113 // Touch up the stack with the resolved function. |
3113 __ mov(Operand(esp, (arg_count + 1) * kPointerSize), eax); | 3114 __ mov(Operand(esp, (arg_count + 1) * kPointerSize), eax); |
3114 | 3115 |
3115 PrepareForBailoutForId(expr->EvalId(), NO_REGISTERS); | 3116 PrepareForBailoutForId(expr->EvalId(), NO_REGISTERS); |
3116 | 3117 |
3117 SetExpressionPosition(expr); | 3118 SetCallPosition(expr, arg_count); |
3118 CallFunctionStub stub(isolate(), arg_count, NO_CALL_FUNCTION_FLAGS); | 3119 CallFunctionStub stub(isolate(), arg_count, NO_CALL_FUNCTION_FLAGS); |
3119 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize)); | 3120 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize)); |
3120 __ CallStub(&stub); | 3121 __ CallStub(&stub); |
3121 RecordJSReturnSite(expr); | 3122 RecordJSReturnSite(expr); |
3122 // Restore context register. | 3123 // Restore context register. |
3123 __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); | 3124 __ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |
3124 context()->DropAndPlug(1, eax); | 3125 context()->DropAndPlug(1, eax); |
3125 | 3126 |
3126 } else if (call_type == Call::GLOBAL_CALL) { | 3127 } else if (call_type == Call::GLOBAL_CALL) { |
3127 EmitCallWithLoadIC(expr); | 3128 EmitCallWithLoadIC(expr); |
(...skipping 1516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4644 __ mov(LoadDescriptor::SlotRegister(), | 4645 __ mov(LoadDescriptor::SlotRegister(), |
4645 Immediate(SmiFromSlot(expr->CallRuntimeFeedbackSlot()))); | 4646 Immediate(SmiFromSlot(expr->CallRuntimeFeedbackSlot()))); |
4646 CallLoadIC(NOT_CONTEXTUAL); | 4647 CallLoadIC(NOT_CONTEXTUAL); |
4647 } | 4648 } |
4648 | 4649 |
4649 | 4650 |
4650 void FullCodeGenerator::EmitCallJSRuntimeFunction(CallRuntime* expr) { | 4651 void FullCodeGenerator::EmitCallJSRuntimeFunction(CallRuntime* expr) { |
4651 ZoneList<Expression*>* args = expr->arguments(); | 4652 ZoneList<Expression*>* args = expr->arguments(); |
4652 int arg_count = args->length(); | 4653 int arg_count = args->length(); |
4653 | 4654 |
4654 SetExpressionPosition(expr); | 4655 SetCallPosition(expr, arg_count); |
4655 CallFunctionStub stub(isolate(), arg_count, NO_CALL_FUNCTION_FLAGS); | 4656 CallFunctionStub stub(isolate(), arg_count, NO_CALL_FUNCTION_FLAGS); |
4656 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize)); | 4657 __ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize)); |
4657 __ CallStub(&stub); | 4658 __ CallStub(&stub); |
4658 } | 4659 } |
4659 | 4660 |
4660 | 4661 |
4661 void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) { | 4662 void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) { |
4662 ZoneList<Expression*>* args = expr->arguments(); | 4663 ZoneList<Expression*>* args = expr->arguments(); |
4663 int arg_count = args->length(); | 4664 int arg_count = args->length(); |
4664 | 4665 |
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5488 Assembler::target_address_at(call_target_address, | 5489 Assembler::target_address_at(call_target_address, |
5489 unoptimized_code)); | 5490 unoptimized_code)); |
5490 return OSR_AFTER_STACK_CHECK; | 5491 return OSR_AFTER_STACK_CHECK; |
5491 } | 5492 } |
5492 | 5493 |
5493 | 5494 |
5494 } // namespace internal | 5495 } // namespace internal |
5495 } // namespace v8 | 5496 } // namespace v8 |
5496 | 5497 |
5497 #endif // V8_TARGET_ARCH_IA32 | 5498 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |