| Index: src/mips64/lithium-mips64.cc
|
| diff --git a/src/mips64/lithium-mips64.cc b/src/mips64/lithium-mips64.cc
|
| index 1f518d347eb7ffd65daf9b09309ac1a6aa93f999..e723c04903c631b6d5dc435e36c99fda1c280f06 100644
|
| --- a/src/mips64/lithium-mips64.cc
|
| +++ b/src/mips64/lithium-mips64.cc
|
| @@ -2316,6 +2316,21 @@ LInstruction* LChunkBuilder::DoTrapAllocationMemento(
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoMaybeGrowElements(HMaybeGrowElements* instr) {
|
| + info()->MarkAsDeferredCalling();
|
| + LOperand* context = UseFixed(instr->context(), cp);
|
| + LOperand* object = Use(instr->object());
|
| + LOperand* elements = Use(instr->elements());
|
| + LOperand* key = UseRegisterOrConstant(instr->key());
|
| + LOperand* current_capacity = UseRegisterOrConstant(instr->current_capacity());
|
| +
|
| + LMaybeGrowElements* result = new (zone())
|
| + LMaybeGrowElements(context, object, elements, key, current_capacity);
|
| + DefineFixed(result, v0);
|
| + return AssignPointerMap(AssignEnvironment(result));
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
| bool is_in_object = instr->access().IsInobject();
|
| bool needs_write_barrier = instr->NeedsWriteBarrier();
|
|
|