| Index: src/crankshaft/mips/lithium-mips.cc
|
| diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc
|
| index e63d886290c967f8cff709972f58a0fd4661d415..db1938eddff39d13bd40abd95b26aa66970b1ace 100644
|
| --- a/src/crankshaft/mips/lithium-mips.cc
|
| +++ b/src/crankshaft/mips/lithium-mips.cc
|
| @@ -330,11 +330,6 @@ void LAccessArgumentsAt::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LLoadGlobalViaContext::PrintDataTo(StringStream* stream) {
|
| - stream->Add("depth:%d slot:%d", depth(), slot_index());
|
| -}
|
| -
|
| -
|
| void LStoreNamedField::PrintDataTo(StringStream* stream) {
|
| object()->PrintTo(stream);
|
| std::ostringstream os;
|
| @@ -353,12 +348,6 @@ void LStoreNamedGeneric::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LStoreGlobalViaContext::PrintDataTo(StringStream* stream) {
|
| - stream->Add("depth:%d slot:%d <- ", depth(), slot_index());
|
| - value()->PrintTo(stream);
|
| -}
|
| -
|
| -
|
| void LLoadKeyed::PrintDataTo(StringStream* stream) {
|
| elements()->PrintTo(stream);
|
| stream->Add("[");
|
| @@ -2087,15 +2076,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoLoadGlobalViaContext(
|
| - HLoadGlobalViaContext* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - DCHECK(instr->slot_index() > 0);
|
| - LLoadGlobalViaContext* result = new (zone()) LLoadGlobalViaContext(context);
|
| - return MarkAsCall(DefineFixed(result, v0), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
|
| LOperand* context = UseRegisterAtStart(instr->value());
|
| LInstruction* result =
|
| @@ -2379,19 +2359,6 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStoreGlobalViaContext(
|
| - HStoreGlobalViaContext* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* value = UseFixed(instr->value(),
|
| - StoreGlobalViaContextDescriptor::ValueRegister());
|
| - DCHECK(instr->slot_index() > 0);
|
| -
|
| - LStoreGlobalViaContext* result =
|
| - new (zone()) LStoreGlobalViaContext(context, value);
|
| - return MarkAsCall(result, instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| LOperand* left = UseFixed(instr->left(), a1);
|
|
|