| Index: src/crankshaft/ppc/lithium-ppc.h
|
| diff --git a/src/crankshaft/ppc/lithium-ppc.h b/src/crankshaft/ppc/lithium-ppc.h
|
| index 4faba98780f5aec34e2f80f85334f7bb315c014c..e4d267ec8576f6cec5249cd98324c7d3fc8cc7b6 100644
|
| --- a/src/crankshaft/ppc/lithium-ppc.h
|
| +++ b/src/crankshaft/ppc/lithium-ppc.h
|
| @@ -1547,15 +1547,17 @@ class LLoadRoot final : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LLoadKeyed final : public LTemplateInstruction<1, 2, 0> {
|
| +class LLoadKeyed final : public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| - LLoadKeyed(LOperand* elements, LOperand* key) {
|
| + LLoadKeyed(LOperand* elements, LOperand* key, LOperand* backing_store_owner) {
|
| inputs_[0] = elements;
|
| inputs_[1] = key;
|
| + inputs_[2] = backing_store_owner;
|
| }
|
|
|
| LOperand* elements() { return inputs_[0]; }
|
| LOperand* key() { return inputs_[1]; }
|
| + LOperand* backing_store_owner() { return inputs_[2]; }
|
| ElementsKind elements_kind() const { return hydrogen()->elements_kind(); }
|
| bool is_fixed_typed_array() const {
|
| return hydrogen()->is_fixed_typed_array();
|
| @@ -2086,12 +2088,14 @@ class LStoreNamedGeneric final : public LTemplateInstruction<0, 3, 2> {
|
| };
|
|
|
|
|
| -class LStoreKeyed final : public LTemplateInstruction<0, 3, 0> {
|
| +class LStoreKeyed final : public LTemplateInstruction<0, 4, 0> {
|
| public:
|
| - LStoreKeyed(LOperand* object, LOperand* key, LOperand* value) {
|
| + LStoreKeyed(LOperand* object, LOperand* key, LOperand* value,
|
| + LOperand* backing_store_owner) {
|
| inputs_[0] = object;
|
| inputs_[1] = key;
|
| inputs_[2] = value;
|
| + inputs_[3] = backing_store_owner;
|
| }
|
|
|
| bool is_fixed_typed_array() const {
|
| @@ -2100,6 +2104,7 @@ class LStoreKeyed final : public LTemplateInstruction<0, 3, 0> {
|
| LOperand* elements() { return inputs_[0]; }
|
| LOperand* key() { return inputs_[1]; }
|
| LOperand* value() { return inputs_[2]; }
|
| + LOperand* backing_store_owner() { return inputs_[3]; }
|
| ElementsKind elements_kind() const { return hydrogen()->elements_kind(); }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(StoreKeyed, "store-keyed")
|
|
|