| Index: src/crankshaft/x64/lithium-x64.cc
|
| diff --git a/src/crankshaft/x64/lithium-x64.cc b/src/crankshaft/x64/lithium-x64.cc
|
| index b16ea7b8913aa9b9b7d1233f4ee54fa99823fb74..7032c712ca536d16121aafc69e35923c469a8b5e 100644
|
| --- a/src/crankshaft/x64/lithium-x64.cc
|
| +++ b/src/crankshaft/x64/lithium-x64.cc
|
| @@ -348,15 +348,6 @@ void LStoreNamedField::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LStoreNamedGeneric::PrintDataTo(StringStream* stream) {
|
| - object()->PrintTo(stream);
|
| - stream->Add(".");
|
| - stream->Add(String::cast(*name())->ToCString().get());
|
| - stream->Add(" <- ");
|
| - value()->PrintTo(stream);
|
| -}
|
| -
|
| -
|
| void LLoadKeyed::PrintDataTo(StringStream* stream) {
|
| elements()->PrintTo(stream);
|
| stream->Add("[");
|
| @@ -2337,20 +2328,6 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| - LOperand* context = UseFixed(instr->context(), rsi);
|
| - LOperand* object =
|
| - UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
|
| - LOperand* value = UseFixed(instr->value(), StoreDescriptor::ValueRegister());
|
| - LOperand* slot = FixedTemp(StoreWithVectorDescriptor::SlotRegister());
|
| - LOperand* vector = FixedTemp(StoreWithVectorDescriptor::VectorRegister());
|
| -
|
| - LStoreNamedGeneric* result =
|
| - new (zone()) LStoreNamedGeneric(context, object, value, slot, vector);
|
| - return MarkAsCall(result, instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) {
|
| LOperand* context = UseFixed(instr->context(), rsi);
|
| LOperand* left = UseFixed(instr->left(), rdx);
|
|
|