| Index: src/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
|
| index 646cb8690dfea0a71e3f1441f84b742266528a2f..c64a4b0892e763007b80ee49434f278ed4c846fd 100644
|
| --- a/src/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/ia32/lithium-codegen-ia32.cc
|
| @@ -2828,13 +2828,15 @@ void LCodeGen::DoLoadGlobalCell(LLoadGlobalCell* instr) {
|
| template <class T>
|
| void LCodeGen::EmitVectorLoadICRegisters(T* instr) {
|
| DCHECK(FLAG_vector_ics);
|
| - Register vector = ToRegister(instr->temp_vector());
|
| - DCHECK(vector.is(VectorLoadICDescriptor::VectorRegister()));
|
| - __ mov(vector, instr->hydrogen()->feedback_vector());
|
| + Register vector_register = ToRegister(instr->temp_vector());
|
| + DCHECK(vector_register.is(VectorLoadICDescriptor::VectorRegister()));
|
| + Handle<TypeFeedbackVector> vector = instr->hydrogen()->feedback_vector();
|
| + __ mov(vector_register, vector);
|
| // No need to allocate this register.
|
| DCHECK(VectorLoadICDescriptor::SlotRegister().is(eax));
|
| + int index = vector->GetIndex(instr->hydrogen()->slot());
|
| __ mov(VectorLoadICDescriptor::SlotRegister(),
|
| - Immediate(Smi::FromInt(instr->hydrogen()->slot().ToInt())));
|
| + Immediate(Smi::FromInt(index)));
|
| }
|
|
|
|
|
|
|