Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 2b088c44d32fb2272f6e88ab2e416ca363f71ea4..830fc9152df8eb07031306fd4d354990012d5acb 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -2526,4 +2526,20 @@ LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
} |
+ |
+LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) { |
+ LOperand* context = UseRegisterAtStart(instr->context()); |
+ return new(zone()) LStoreFrameContext(context); |
+} |
+ |
+ |
+LInstruction* LChunkBuilder::DoAllocateBlockContext( |
+ HAllocateBlockContext* instr) { |
+ LOperand* context = UseFixed(instr->context(), cp); |
+ LOperand* function = UseRegisterAtStart(instr->function()); |
+ LAllocateBlockContext* result = |
+ new(zone()) LAllocateBlockContext(context, function); |
+ return MarkAsCall(DefineFixed(result, cp), instr); |
+} |
+ |
} } // namespace v8::internal |