Index: src/crankshaft/mips64/lithium-mips64.cc |
diff --git a/src/crankshaft/mips64/lithium-mips64.cc b/src/crankshaft/mips64/lithium-mips64.cc |
index 246a095efc6ffa7c7798ac0cb4088e0db62ce064..4f6d5e0673a6a591c329810d6cfe4ca6a34f5580 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.cc |
+++ b/src/crankshaft/mips64/lithium-mips64.cc |
@@ -330,11 +330,6 @@ void LAccessArgumentsAt::PrintDataTo(StringStream* stream) { |
} |
-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; |
@@ -353,12 +348,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("["); |
@@ -2090,15 +2079,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalViaContext( |
- HLoadGlobalViaContext* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- DCHECK(instr->slot_index() > 0); |
- LLoadGlobalViaContext* result = new (zone()) LLoadGlobalViaContext(context); |
- return MarkAsCall(DefineFixed(result, v0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { |
LOperand* context = UseRegisterAtStart(instr->value()); |
LInstruction* result = |
@@ -2384,19 +2364,6 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) { |
} |
-LInstruction* LChunkBuilder::DoStoreGlobalViaContext( |
- HStoreGlobalViaContext* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- 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(), cp); |
LOperand* left = UseFixed(instr->left(), a1); |