| Index: src/x64/lithium-codegen-x64.cc
|
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
|
| index 89e311e4614b10cfe000b417a61c3bf7515b9c85..a07564ed24de329e464814f8b80a37c8fe535a3a 100644
|
| --- a/src/x64/lithium-codegen-x64.cc
|
| +++ b/src/x64/lithium-codegen-x64.cc
|
| @@ -3742,11 +3742,17 @@ void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) {
|
| __ cmpq(reg, reg2);
|
| }
|
| } else {
|
| + Operand length = ToOperand(instr->length());
|
| if (instr->index()->IsConstantOperand()) {
|
| - __ cmpq(ToOperand(instr->length()),
|
| - Immediate(ToInteger32(LConstantOperand::cast(instr->index()))));
|
| + int constant_index =
|
| + ToInteger32(LConstantOperand::cast(instr->index()));
|
| + if (instr->hydrogen()->length()->representation().IsTagged()) {
|
| + __ Cmp(length, Smi::FromInt(constant_index));
|
| + } else {
|
| + __ cmpq(length, Immediate(constant_index));
|
| + }
|
| } else {
|
| - __ cmpq(ToOperand(instr->length()), ToRegister(instr->index()));
|
| + __ cmpq(length, ToRegister(instr->index()));
|
| }
|
| }
|
| DeoptimizeIf(below_equal, instr->environment());
|
|
|