| Index: src/crankshaft/arm64/lithium-arm64.cc
|
| diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc
|
| index e8a8dfcef80d97b581aaba353471711dcb4e4ba5..635c6dd25104a6e1f96ab02e2af9a75a27def6ea 100644
|
| --- a/src/crankshaft/arm64/lithium-arm64.cc
|
| +++ b/src/crankshaft/arm64/lithium-arm64.cc
|
| @@ -1714,8 +1714,9 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) {
|
| IsDoubleOrFloatElementsKind(instr->elements_kind())));
|
|
|
| LOperand* temp = instr->key()->IsConstant() ? NULL : TempRegister();
|
| - LInstruction* result = DefineAsRegister(
|
| - new(zone()) LLoadKeyedExternal(elements, key, temp));
|
| + LOperand* backing_store_owner = UseAny(instr->backing_store_owner());
|
| + LInstruction* result = DefineAsRegister(new (zone()) LLoadKeyedExternal(
|
| + elements, key, backing_store_owner, temp));
|
| if (elements_kind == UINT32_ELEMENTS &&
|
| !instr->CheckFlag(HInstruction::kUint32)) {
|
| result = AssignEnvironment(result);
|
| @@ -2341,7 +2342,9 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
| (instr->value()->representation().IsDouble() &&
|
| IsDoubleOrFloatElementsKind(instr->elements_kind())));
|
| DCHECK(instr->elements()->representation().IsExternal());
|
| - return new(zone()) LStoreKeyedExternal(elements, key, val, temp);
|
| + LOperand* backing_store_owner = UseAny(instr->backing_store_owner());
|
| + return new (zone())
|
| + LStoreKeyedExternal(elements, key, val, backing_store_owner, temp);
|
|
|
| } else if (instr->value()->representation().IsDouble()) {
|
| DCHECK(instr->elements()->representation().IsTagged());
|
|
|