Index: src/crankshaft/x87/lithium-x87.cc |
diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc |
index 480d2c67114e7ca9b90b1d7ea6758ada9682d40f..ed433014f96d42ae60ba076a8a4bd57ab06c8905 100644 |
--- a/src/crankshaft/x87/lithium-x87.cc |
+++ b/src/crankshaft/x87/lithium-x87.cc |
@@ -383,11 +383,6 @@ LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) { |
} |
-void LLoadGlobalViaContext::PrintDataTo(StringStream* stream) { |
- stream->Add("depth:%d slot:%d", depth(), slot_index()); |
-} |
- |
- |
void LStoreNamedField::PrintDataTo(StringStream* stream) { |
object()->PrintTo(stream); |
std::ostringstream os; |
@@ -406,12 +401,6 @@ void LStoreNamedGeneric::PrintDataTo(StringStream* stream) { |
} |
-void LStoreGlobalViaContext::PrintDataTo(StringStream* stream) { |
- stream->Add("depth:%d slot:%d <- ", depth(), slot_index()); |
- value()->PrintTo(stream); |
-} |
- |
- |
void LLoadKeyed::PrintDataTo(StringStream* stream) { |
elements()->PrintTo(stream); |
stream->Add("["); |
@@ -2135,15 +2124,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalViaContext( |
- HLoadGlobalViaContext* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- DCHECK(instr->slot_index() > 0); |
- LLoadGlobalViaContext* result = new (zone()) LLoadGlobalViaContext(context); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { |
LOperand* context = UseRegisterAtStart(instr->value()); |
LInstruction* result = |
@@ -2482,19 +2462,6 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) { |
} |
-LInstruction* LChunkBuilder::DoStoreGlobalViaContext( |
- HStoreGlobalViaContext* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* value = UseFixed(instr->value(), |
- StoreGlobalViaContextDescriptor::ValueRegister()); |
- DCHECK(instr->slot_index() > 0); |
- |
- LStoreGlobalViaContext* result = |
- new (zone()) LStoreGlobalViaContext(context, value); |
- return MarkAsCall(result, instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
LOperand* left = UseFixed(instr->left(), edx); |