Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index 57cc0ca90c367162fa4d96ef813a987178cc6415..86ef8f8a9c0d8186971ffad57a3da340cd46e9aa 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -343,15 +343,6 @@ void LStoreKeyed::PrintDataTo(StringStream* stream) { |
} |
-void LStoreKeyedGeneric::PrintDataTo(StringStream* stream) { |
- object()->PrintTo(stream); |
- stream->Add("["); |
- key()->PrintTo(stream); |
- stream->Add("] <- "); |
- value()->PrintTo(stream); |
-} |
- |
- |
void LTransitionElementsKind::PrintDataTo(StringStream* stream) { |
object()->PrintTo(stream); |
stream->Add(" %p -> %p", *original_map(), *transitioned_map()); |
@@ -2118,26 +2109,6 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) { |
} |
-LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* obj = |
- UseFixed(instr->object(), StoreDescriptor::ReceiverRegister()); |
- LOperand* key = UseFixed(instr->key(), StoreDescriptor::NameRegister()); |
- LOperand* val = UseFixed(instr->value(), StoreDescriptor::ValueRegister()); |
- |
- DCHECK(instr->object()->representation().IsTagged()); |
- DCHECK(instr->key()->representation().IsTagged()); |
- DCHECK(instr->value()->representation().IsTagged()); |
- |
- LOperand* slot = FixedTemp(StoreWithVectorDescriptor::SlotRegister()); |
- LOperand* vector = FixedTemp(StoreWithVectorDescriptor::VectorRegister()); |
- |
- LStoreKeyedGeneric* result = |
- new (zone()) LStoreKeyedGeneric(context, obj, key, val, slot, vector); |
- return MarkAsCall(result, instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoTransitionElementsKind( |
HTransitionElementsKind* instr) { |
if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) { |