| Index: src/mips/lithium-mips.cc
|
| ===================================================================
|
| --- src/mips/lithium-mips.cc (revision 9901)
|
| +++ src/mips/lithium-mips.cc (working copy)
|
| @@ -228,13 +228,6 @@
|
| }
|
|
|
|
|
| -void LIsStringAndBranch::PrintDataTo(StringStream* stream) {
|
| - stream->Add("if is_string(");
|
| - InputAt(0)->PrintTo(stream);
|
| - stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
| -}
|
| -
|
| -
|
| void LIsSmiAndBranch::PrintDataTo(StringStream* stream) {
|
| stream->Add("if is_smi(");
|
| InputAt(0)->PrintTo(stream);
|
| @@ -249,14 +242,6 @@
|
| }
|
|
|
|
|
| -void LStringCompareAndBranch::PrintDataTo(StringStream* stream) {
|
| - stream->Add("if compare_generic(");
|
| - InputAt(0)->PrintTo(stream);
|
| - InputAt(1)->PrintTo(stream);
|
| - stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
| -}
|
| -
|
| -
|
| void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) {
|
| stream->Add("if has_instance_type(");
|
| InputAt(0)->PrintTo(stream);
|
| @@ -1415,7 +1400,7 @@
|
| LOperand* left = UseFixed(instr->left(), a1);
|
| LOperand* right = UseFixed(instr->right(), a0);
|
| LCmpT* result = new LCmpT(left, right);
|
| - return AssignEnvironment(MarkAsCall(DefineFixed(result, v0), instr));
|
| + return MarkAsCall(DefineFixed(result, v0), instr);
|
| }
|
|
|
|
|
| @@ -1466,13 +1451,6 @@
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) {
|
| - ASSERT(instr->value()->representation().IsTagged());
|
| - LOperand* temp = TempRegister();
|
| - return new LIsStringAndBranch(UseRegisterAtStart(instr->value()), temp);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoIsSmiAndBranch(HIsSmiAndBranch* instr) {
|
| ASSERT(instr->value()->representation().IsTagged());
|
| return new LIsSmiAndBranch(Use(instr->value()));
|
| @@ -1487,18 +1465,6 @@
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStringCompareAndBranch(
|
| - HStringCompareAndBranch* instr) {
|
| - Representation r = instr->GetInputRepresentation();
|
| - ASSERT(instr->left()->representation().IsTagged());
|
| - ASSERT(instr->right()->representation().IsTagged());
|
| - LOperand* left = UseFixed(instr->left(), a1);
|
| - LOperand* right = UseFixed(instr->right(), a0);
|
| - LStringCompareAndBranch* result = new LStringCompareAndBranch(left, right);
|
| - return MarkAsCall(result, instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoHasInstanceTypeAndBranch(
|
| HHasInstanceTypeAndBranch* instr) {
|
| ASSERT(instr->value()->representation().IsTagged());
|
|
|