| Index: src/mips/code-stubs-mips.cc
|
| diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
|
| index a464348fa7c68024d0563114e40885fcb66719e8..a83468c25310b650dcb054b6032c0e5a3bc1ae2c 100644
|
| --- a/src/mips/code-stubs-mips.cc
|
| +++ b/src/mips/code-stubs-mips.cc
|
| @@ -7370,8 +7370,8 @@ static const AheadOfTimeWriteBarrierStubList kAheadOfTime[] = {
|
| // KeyedStoreStubCompiler::GenerateStoreFastElement.
|
| { REG(a3), REG(a2), REG(t0), EMIT_REMEMBERED_SET },
|
| { REG(a2), REG(a3), REG(t0), EMIT_REMEMBERED_SET },
|
| - // ElementsTransitionGenerator::GenerateMapChangeElementTransition
|
| - // and ElementsTransitionGenerator::GenerateSmiToDouble
|
| + // ElementsTransitionGenerator::GenerateSmiOnlyToObject
|
| + // and ElementsTransitionGenerator::GenerateSmiOnlyToDouble
|
| // and ElementsTransitionGenerator::GenerateDoubleToObject
|
| { REG(a2), REG(a3), REG(t5), EMIT_REMEMBERED_SET },
|
| { REG(a2), REG(a3), REG(t5), OMIT_REMEMBERED_SET },
|
| @@ -7637,9 +7637,9 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
|
| Label fast_elements;
|
|
|
| __ CheckFastElements(a2, t1, &double_elements);
|
| - // Check for FAST_*_SMI_ELEMENTS or FAST_*_ELEMENTS elements
|
| + // FAST_SMI_ONLY_ELEMENTS or FAST_ELEMENTS
|
| __ JumpIfSmi(a0, &smi_element);
|
| - __ CheckFastSmiElements(a2, t1, &fast_elements);
|
| + __ CheckFastSmiOnlyElements(a2, t1, &fast_elements);
|
|
|
| // Store into the array literal requires a elements transition. Call into
|
| // the runtime.
|
| @@ -7651,7 +7651,7 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
|
| __ Push(t1, t0);
|
| __ TailCallRuntime(Runtime::kStoreArrayLiteralElement, 5, 1);
|
|
|
| - // Array literal has ElementsKind of FAST_*_ELEMENTS and value is an object.
|
| + // Array literal has ElementsKind of FAST_ELEMENTS and value is an object.
|
| __ bind(&fast_elements);
|
| __ lw(t1, FieldMemOperand(a1, JSObject::kElementsOffset));
|
| __ sll(t2, a3, kPointerSizeLog2 - kSmiTagSize);
|
| @@ -7664,8 +7664,8 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
|
| __ Ret(USE_DELAY_SLOT);
|
| __ mov(v0, a0);
|
|
|
| - // Array literal has ElementsKind of FAST_*_SMI_ELEMENTS or FAST_*_ELEMENTS,
|
| - // and value is Smi.
|
| + // Array literal has ElementsKind of FAST_SMI_ONLY_ELEMENTS or
|
| + // FAST_ELEMENTS, and value is Smi.
|
| __ bind(&smi_element);
|
| __ lw(t1, FieldMemOperand(a1, JSObject::kElementsOffset));
|
| __ sll(t2, a3, kPointerSizeLog2 - kSmiTagSize);
|
| @@ -7674,7 +7674,7 @@ void StoreArrayLiteralElementStub::Generate(MacroAssembler* masm) {
|
| __ Ret(USE_DELAY_SLOT);
|
| __ mov(v0, a0);
|
|
|
| - // Array literal has ElementsKind of FAST_*_DOUBLE_ELEMENTS.
|
| + // Array literal has ElementsKind of FAST_DOUBLE_ELEMENTS.
|
| __ bind(&double_elements);
|
| __ lw(t1, FieldMemOperand(a1, JSObject::kElementsOffset));
|
| __ StoreNumberToDoubleElements(a0, a3, a1, t1, t2, t3, t5, a2,
|
|
|