| Index: src/crankshaft/mips64/lithium-mips64.cc
|
| diff --git a/src/crankshaft/mips64/lithium-mips64.cc b/src/crankshaft/mips64/lithium-mips64.cc
|
| index 2cc45a50e0432794130ffaef52269acee7d54261..0f8136a7788e3c6cd0e1ed721c256cfcd67776de 100644
|
| --- a/src/crankshaft/mips64/lithium-mips64.cc
|
| +++ b/src/crankshaft/mips64/lithium-mips64.cc
|
| @@ -212,14 +212,6 @@ void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) {
|
| stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
| }
|
|
|
| -
|
| -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);
|
| @@ -1678,24 +1670,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());
|
| - return new(zone()) LHasCachedArrayIndexAndBranch(
|
| - UseRegisterAtStart(instr->value()));
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoClassOfTestAndBranch(
|
| HClassOfTestAndBranch* instr) {
|
| DCHECK(instr->value()->representation().IsTagged());
|
|
|