| Index: src/a64/lithium-a64.h
|
| diff --git a/src/a64/lithium-a64.h b/src/a64/lithium-a64.h
|
| index 0afa08e24a3842ea34c5dcbdf75301cb7e3fd2ba..06bf06b363edd6ae9af5a9ecd0bf2a8065e88f39 100644
|
| --- a/src/a64/lithium-a64.h
|
| +++ b/src/a64/lithium-a64.h
|
| @@ -166,6 +166,7 @@ class LCodeGen;
|
| V(SmiTag) \
|
| V(SmiUntag) \
|
| V(StackCheck) \
|
| + V(StoreCodeEntry) \
|
| V(StoreContextSlot) \
|
| V(StoreGlobalCell) \
|
| V(StoreGlobalGeneric) \
|
| @@ -2460,6 +2461,26 @@ class LShiftI: public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| +class LStoreCodeEntry V8_FINAL: public LTemplateInstruction<0, 2, 1> {
|
| + public:
|
| + LStoreCodeEntry(LOperand* function, LOperand* code_object,
|
| + LOperand* temp) {
|
| + inputs_[0] = function;
|
| + inputs_[1] = code_object;
|
| + temps_[0] = temp;
|
| + }
|
| +
|
| + LOperand* function() { return inputs_[0]; }
|
| + LOperand* code_object() { return inputs_[1]; }
|
| + LOperand* temp() { return temps_[0]; }
|
| +
|
| + virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(StoreCodeEntry, "store-code-entry")
|
| + DECLARE_HYDROGEN_ACCESSOR(StoreCodeEntry)
|
| +};
|
| +
|
| +
|
| class LStoreContextSlot: public LTemplateInstruction<0, 2, 1> {
|
| public:
|
| LStoreContextSlot(LOperand* context, LOperand* value, LOperand* temp) {
|
|
|