Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index ebeba86943ad5ee7fefaa81183f83ae4b1fdcda5..70c348de69f8c406b8fada3988e1f9958275fbb5 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -121,6 +121,7 @@ class LCodeGen; |
V(LoadFunctionPrototype) \ |
V(LoadGlobalCell) \ |
V(LoadGlobalGeneric) \ |
+ V(LoadKeyedFastDoubleElement) \ |
V(LoadKeyedFastElement) \ |
V(LoadKeyedGeneric) \ |
V(LoadKeyedSpecializedArrayElement) \ |
@@ -147,6 +148,7 @@ class LCodeGen; |
V(StoreContextSlot) \ |
V(StoreGlobalCell) \ |
V(StoreGlobalGeneric) \ |
+ V(StoreKeyedFastDoubleElement) \ |
V(StoreKeyedFastElement) \ |
V(StoreKeyedGeneric) \ |
V(StoreKeyedSpecializedArrayElement) \ |
@@ -1137,6 +1139,22 @@ class LLoadKeyedFastElement: public LTemplateInstruction<1, 2, 0> { |
}; |
+class LLoadKeyedFastDoubleElement: public LTemplateInstruction<1, 2, 0> { |
+ public: |
+ LLoadKeyedFastDoubleElement(LOperand* elements, LOperand* key) { |
+ inputs_[0] = elements; |
+ inputs_[1] = key; |
+ } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(LoadKeyedFastDoubleElement, |
+ "load-keyed-fast-double-element") |
+ DECLARE_HYDROGEN_ACCESSOR(LoadKeyedFastDoubleElement) |
+ |
+ LOperand* elements() { return inputs_[0]; } |
+ LOperand* key() { return inputs_[1]; } |
+}; |
+ |
+ |
class LLoadKeyedSpecializedArrayElement: public LTemplateInstruction<1, 2, 0> { |
public: |
LLoadKeyedSpecializedArrayElement(LOperand* external_pointer, |
@@ -1597,6 +1615,28 @@ class LStoreKeyedFastElement: public LTemplateInstruction<0, 3, 0> { |
}; |
+class LStoreKeyedFastDoubleElement: public LTemplateInstruction<0, 3, 0> { |
+ public: |
+ LStoreKeyedFastDoubleElement(LOperand* elements, |
+ LOperand* key, |
+ LOperand* val) { |
+ inputs_[0] = elements; |
+ inputs_[1] = key; |
+ inputs_[2] = val; |
+ } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(StoreKeyedFastDoubleElement, |
+ "store-keyed-fast-double-element") |
+ DECLARE_HYDROGEN_ACCESSOR(StoreKeyedFastDoubleElement) |
+ |
+ virtual void PrintDataTo(StringStream* stream); |
+ |
+ LOperand* elements() { return inputs_[0]; } |
+ LOperand* key() { return inputs_[1]; } |
+ LOperand* value() { return inputs_[2]; } |
+}; |
+ |
+ |
class LStoreKeyedGeneric: public LTemplateInstruction<0, 3, 0> { |
public: |
LStoreKeyedGeneric(LOperand* obj, LOperand* key, LOperand* val) { |