Index: src/crankshaft/arm/lithium-arm.cc |
diff --git a/src/crankshaft/arm/lithium-arm.cc b/src/crankshaft/arm/lithium-arm.cc |
index 73906010a8e53ef328d0e5c1eb11c23e0291f62b..5273c48a8bb4cbd510034be51491f3d0c36c9a3f 100644 |
--- a/src/crankshaft/arm/lithium-arm.cc |
+++ b/src/crankshaft/arm/lithium-arm.cc |
@@ -336,15 +336,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()); |
@@ -2171,26 +2162,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())) { |