| Index: src/crankshaft/ia32/lithium-ia32.cc
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc
|
| index e2772d5ee38b30ad212a8914598b70d16fc25989..57a9a3c478a28c6a93f1f0db1649535a33a5dba2 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.cc
|
| +++ b/src/crankshaft/ia32/lithium-ia32.cc
|
| @@ -267,20 +267,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);
|
| @@ -1253,22 +1239,6 @@ LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) {
|
| - LOperand* context = UseFixed(instr->context(), esi);
|
| - LOperand* function = UseFixed(instr->function(), edi);
|
| - LOperand* slot = NULL;
|
| - LOperand* vector = NULL;
|
| - if (instr->HasVectorAndSlot()) {
|
| - slot = FixedTemp(edx);
|
| - vector = FixedTemp(ebx);
|
| - }
|
| -
|
| - LCallFunction* call =
|
| - new (zone()) LCallFunction(context, function, slot, vector);
|
| - return MarkAsCall(DefineFixed(call, eax), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), eax), instr);
|
|
|