Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index 168e0abba96dbb51f536b1b68f1143346af91cb2..0fcb000aa69e41c64245a389e441107cc245b158 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -3964,29 +3964,8 @@ |
DCHECK(ToRegister(instr->result()).is(eax)); |
int arity = instr->arity(); |
- CallFunctionFlags flags = instr->hydrogen()->function_flags(); |
- if (instr->hydrogen()->HasVectorAndSlot()) { |
- Register slot_register = ToRegister(instr->temp_slot()); |
- Register vector_register = ToRegister(instr->temp_vector()); |
- DCHECK(slot_register.is(edx)); |
- DCHECK(vector_register.is(ebx)); |
- |
- Handle<TypeFeedbackVector> vector = instr->hydrogen()->feedback_vector(); |
- int index = vector->GetIndex(instr->hydrogen()->slot()); |
- |
- __ mov(vector_register, vector); |
- __ mov(slot_register, Immediate(Smi::FromInt(index))); |
- |
- CallICState::CallType call_type = |
- (flags & CALL_AS_METHOD) ? CallICState::METHOD : CallICState::FUNCTION; |
- |
- Handle<Code> ic = |
- CodeFactory::CallICInOptimizedCode(isolate(), arity, call_type).code(); |
- CallCode(ic, RelocInfo::CODE_TARGET, instr); |
- } else { |
- CallFunctionStub stub(isolate(), arity, flags); |
- CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
- } |
+ CallFunctionStub stub(isolate(), arity, instr->hydrogen()->function_flags()); |
+ CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
} |