| Index: src/crankshaft/x87/lithium-x87.h
|
| diff --git a/src/crankshaft/x87/lithium-x87.h b/src/crankshaft/x87/lithium-x87.h
|
| index 2bec39789e8e18e0a7485fcb4fe500fb65342847..f0f694ef3db4edb7217a27eb0325b4198ca15565 100644
|
| --- a/src/crankshaft/x87/lithium-x87.h
|
| +++ b/src/crankshaft/x87/lithium-x87.h
|
| @@ -1614,14 +1614,16 @@ 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();
|
| }
|
| @@ -2181,12 +2183,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* obj, LOperand* key, LOperand* val) {
|
| + LStoreKeyed(LOperand* obj, LOperand* key, LOperand* val,
|
| + LOperand* backing_store_owner) {
|
| inputs_[0] = obj;
|
| inputs_[1] = key;
|
| inputs_[2] = val;
|
| + inputs_[3] = backing_store_owner;
|
| }
|
|
|
| bool is_fixed_typed_array() const {
|
| @@ -2195,6 +2199,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();
|
| }
|
|
|