| Index: src/crankshaft/x64/lithium-x64.cc
 | 
| diff --git a/src/crankshaft/x64/lithium-x64.cc b/src/crankshaft/x64/lithium-x64.cc
 | 
| index 30d5bfbba6a44d9ce3b851349bd2195328927d24..1e3e52b47cad02960c944ad22cf873d1bf560dbe 100644
 | 
| --- a/src/crankshaft/x64/lithium-x64.cc
 | 
| +++ b/src/crankshaft/x64/lithium-x64.cc
 | 
| @@ -367,11 +367,6 @@ LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -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;
 | 
| @@ -390,12 +385,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("[");
 | 
| @@ -2099,15 +2088,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoLoadGlobalViaContext(
 | 
| -    HLoadGlobalViaContext* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), rsi);
 | 
| -  DCHECK(instr->slot_index() > 0);
 | 
| -  LLoadGlobalViaContext* result = new (zone()) LLoadGlobalViaContext(context);
 | 
| -  return MarkAsCall(DefineFixed(result, rax), instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
 | 
|    LOperand* context = UseRegisterAtStart(instr->value());
 | 
|    LInstruction* result =
 | 
| @@ -2467,19 +2447,6 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoStoreGlobalViaContext(
 | 
| -    HStoreGlobalViaContext* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), rsi);
 | 
| -  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(), rsi);
 | 
|    LOperand* left = UseFixed(instr->left(), rdx);
 | 
| 
 |