| Index: src/crankshaft/mips64/lithium-mips64.cc
|
| diff --git a/src/crankshaft/mips64/lithium-mips64.cc b/src/crankshaft/mips64/lithium-mips64.cc
|
| index b66e8ba18ad4fc7089a7718c8425e540a2e62c3c..1f07de46042667d8f1d3d99eeee8099b4baa4bec 100644
|
| --- a/src/crankshaft/mips64/lithium-mips64.cc
|
| +++ b/src/crankshaft/mips64/lithium-mips64.cc
|
| @@ -255,20 +255,6 @@ void LInnerAllocatedObject::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LCallFunction::PrintDataTo(StringStream* stream) {
|
| - context()->PrintTo(stream);
|
| - stream->Add(" ");
|
| - function()->PrintTo(stream);
|
| - if (hydrogen()->HasVectorAndSlot()) {
|
| - stream->Add(" (type-feedback-vector ");
|
| - temp_vector()->PrintTo(stream);
|
| - stream->Add(" ");
|
| - temp_slot()->PrintTo(stream);
|
| - stream->Add(")");
|
| - }
|
| -}
|
| -
|
| -
|
| void LCallJSFunction::PrintDataTo(StringStream* stream) {
|
| stream->Add("= ");
|
| function()->PrintTo(stream);
|
| @@ -1224,22 +1210,6 @@ LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* function = UseFixed(instr->function(), a1);
|
| - LOperand* slot = NULL;
|
| - LOperand* vector = NULL;
|
| - if (instr->HasVectorAndSlot()) {
|
| - slot = FixedTemp(a3);
|
| - vector = FixedTemp(a2);
|
| - }
|
| -
|
| - LCallFunction* call =
|
| - new (zone()) LCallFunction(context, function, slot, vector);
|
| - return MarkAsCall(DefineFixed(call, v0), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), v0), instr);
|
|
|