Index: src/crankshaft/arm64/lithium-arm64.cc |
diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc |
index ef7c1771d760d88809813cfeee851f0566fcf867..e8a8dfcef80d97b581aaba353471711dcb4e4ba5 100644 |
--- a/src/crankshaft/arm64/lithium-arm64.cc |
+++ b/src/crankshaft/arm64/lithium-arm64.cc |
@@ -289,11 +289,6 @@ void LStoreKeyedGeneric::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; |
@@ -313,12 +308,6 @@ void LStoreNamedGeneric::PrintDataTo(StringStream* stream) { |
} |
-void LStoreGlobalViaContext::PrintDataTo(StringStream* stream) { |
- stream->Add("depth:%d slot:%d <- ", depth(), slot_index()); |
- value()->PrintTo(stream); |
-} |
- |
- |
void LStringCompareAndBranch::PrintDataTo(StringStream* stream) { |
stream->Add("if string_compare("); |
left()->PrintTo(stream); |
@@ -1687,15 +1676,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, x0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { |
DCHECK(instr->key()->representation().IsSmiOrInteger32()); |
ElementsKind elements_kind = instr->elements_kind(); |
@@ -2448,19 +2428,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(), x1); |