| Index: src/crankshaft/x64/lithium-x64.cc
|
| diff --git a/src/crankshaft/x64/lithium-x64.cc b/src/crankshaft/x64/lithium-x64.cc
|
| index 7dd47330b1d7b5761d62f93f88b948beb97e75f5..5c83d8e0ac8ea4f7824cfcaddd10a9b0f66fde56 100644
|
| --- a/src/crankshaft/x64/lithium-x64.cc
|
| +++ b/src/crankshaft/x64/lithium-x64.cc
|
| @@ -219,13 +219,6 @@ void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LHasCachedArrayIndexAndBranch::PrintDataTo(StringStream* stream) {
|
| - stream->Add("if has_cached_array_index(");
|
| - value()->PrintTo(stream);
|
| - stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
| -}
|
| -
|
| -
|
| void LClassOfTestAndBranch::PrintDataTo(StringStream* stream) {
|
| stream->Add("if class_of_test(");
|
| value()->PrintTo(stream);
|
| @@ -1704,24 +1697,6 @@ LInstruction* LChunkBuilder::DoHasInstanceTypeAndBranch(
|
| return new(zone()) LHasInstanceTypeAndBranch(value);
|
| }
|
|
|
| -
|
| -LInstruction* LChunkBuilder::DoGetCachedArrayIndex(
|
| - HGetCachedArrayIndex* instr) {
|
| - DCHECK(instr->value()->representation().IsTagged());
|
| - LOperand* value = UseRegisterAtStart(instr->value());
|
| -
|
| - return DefineAsRegister(new(zone()) LGetCachedArrayIndex(value));
|
| -}
|
| -
|
| -
|
| -LInstruction* LChunkBuilder::DoHasCachedArrayIndexAndBranch(
|
| - HHasCachedArrayIndexAndBranch* instr) {
|
| - DCHECK(instr->value()->representation().IsTagged());
|
| - LOperand* value = UseRegisterAtStart(instr->value());
|
| - return new(zone()) LHasCachedArrayIndexAndBranch(value);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoClassOfTestAndBranch(
|
| HClassOfTestAndBranch* instr) {
|
| LOperand* value = UseRegister(instr->value());
|
|
|