| Index: src/crankshaft/x87/lithium-x87.cc
|
| diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc
|
| index 5ee11ffa24bd9ee54ab688f231f2d9e171da7c2b..68e2b32519d60ace458dfccc47dd4aecc7570f8f 100644
|
| --- a/src/crankshaft/x87/lithium-x87.cc
|
| +++ b/src/crankshaft/x87/lithium-x87.cc
|
| @@ -394,15 +394,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());
|
| @@ -2204,26 +2195,6 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
|
| - LOperand* context = UseFixed(instr->context(), esi);
|
| - LOperand* object =
|
| - UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
|
| - LOperand* key = UseFixed(instr->key(), StoreDescriptor::NameRegister());
|
| - LOperand* value = 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, object, key, value, slot, vector);
|
| - return MarkAsCall(result, instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoTransitionElementsKind(
|
| HTransitionElementsKind* instr) {
|
| if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) {
|
|
|