| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index 479f75aff384c0cc6cf79b6d0bad17771ef8695e..6498943747ca1bb559be4fc10c53a634fdd74d69 100644
|
| --- a/src/mips/lithium-mips.h
|
| +++ b/src/mips/lithium-mips.h
|
| @@ -161,6 +161,7 @@ class LCodeGen;
|
| V(SmiTag) \
|
| V(SmiUntag) \
|
| V(StackCheck) \
|
| + V(StoreCodeEntry) \
|
| V(StoreContextSlot) \
|
| V(StoreGlobalCell) \
|
| V(StoreGlobalGeneric) \
|
| @@ -1731,7 +1732,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;
|
|
|