| Index: src/mips/deoptimizer-mips.cc
|
| diff --git a/src/mips/deoptimizer-mips.cc b/src/mips/deoptimizer-mips.cc
|
| index 2399fe13edcb0ad1a467c61c651f877d3e01a670..0caaa4c9d4f82033ad4b42b730261612633e3a79 100644
|
| --- a/src/mips/deoptimizer-mips.cc
|
| +++ b/src/mips/deoptimizer-mips.cc
|
| @@ -80,27 +80,6 @@ void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
|
| }
|
|
|
|
|
| -void Deoptimizer::FillInputFrame(Address tos, JavaScriptFrame* frame) {
|
| - // Set the register values. The values are not important as there are no
|
| - // callee saved registers in JavaScript frames, so all registers are
|
| - // spilled. Registers fp and sp are set to the correct values though.
|
| -
|
| - for (int i = 0; i < Register::kNumRegisters; i++) {
|
| - input_->SetRegister(i, i * 4);
|
| - }
|
| - input_->SetRegister(sp.code(), reinterpret_cast<intptr_t>(frame->sp()));
|
| - input_->SetRegister(fp.code(), reinterpret_cast<intptr_t>(frame->fp()));
|
| - for (int i = 0; i < DoubleRegister::kMaxNumRegisters; i++) {
|
| - input_->SetDoubleRegister(i, 0.0);
|
| - }
|
| -
|
| - // Fill the frame content from the actual data on the frame.
|
| - for (unsigned i = 0; i < input_->GetFrameSize(); i += kPointerSize) {
|
| - input_->SetFrameSlot(i, Memory::uint32_at(tos + i));
|
| - }
|
| -}
|
| -
|
| -
|
| void Deoptimizer::SetPlatformCompiledStubRegisters(
|
| FrameDescription* output_frame, CodeStubDescriptor* descriptor) {
|
| ApiFunction function(descriptor->deoptimization_handler());
|
|
|