| Index: src/crankshaft/s390/lithium-s390.cc
|
| diff --git a/src/crankshaft/s390/lithium-s390.cc b/src/crankshaft/s390/lithium-s390.cc
|
| index feebe0bbac5fa2b8e0dcf99e3b699704fe45791e..44bf00be40139cb260a20e9ecff882f077fee241 100644
|
| --- a/src/crankshaft/s390/lithium-s390.cc
|
| +++ b/src/crankshaft/s390/lithium-s390.cc
|
| @@ -317,14 +317,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());
|
| @@ -1960,25 +1952,6 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
| return new (zone()) LStoreKeyed(backing_store, key, val, backing_store_owner);
|
| }
|
|
|
| -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())) {
|
|
|