Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index 316df7df6cca16f5dd3c0eda4f0faea102c65c76..90fb117ac1501921deb5a41682179b6e03661d28 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -162,6 +162,7 @@ class LCodeGen; |
V(SmiTag) \ |
V(SmiUntag) \ |
V(StackCheck) \ |
+ V(StoreCodeEntry) \ |
V(StoreContextSlot) \ |
V(StoreGlobalCell) \ |
V(StoreGlobalGeneric) \ |
@@ -1753,7 +1754,24 @@ class LDrop V8_FINAL : public LTemplateInstruction<0, 0, 0> { |
}; |
-class LInnerAllocatedObject V8_FINAL : public LTemplateInstruction<1, 1, 0> { |
+class LStoreCodeEntry V8_FINAL: public LTemplateInstruction<0, 1, 1> { |
+ public: |
+ LStoreCodeEntry(LOperand* function, LOperand* code_object) { |
+ inputs_[0] = function; |
+ temps_[0] = code_object; |
+ } |
+ |
+ LOperand* function() { return inputs_[0]; } |
+ LOperand* code_object() { return temps_[0]; } |
+ |
+ virtual void PrintDataTo(StringStream* stream); |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(StoreCodeEntry, "store-code-entry") |
+ DECLARE_HYDROGEN_ACCESSOR(StoreCodeEntry) |
+}; |
+ |
+ |
+class LInnerAllocatedObject V8_FINAL: public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LInnerAllocatedObject(LOperand* base_object) { |
inputs_[0] = base_object; |