Chromium Code Reviews| Index: src/x64/lithium-x64.cc |
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
| index 598f89004a4b082b8bb8bd78e7d3ee0db8ee2fc3..0fac955fa9e36733f5de68c333035de5e48e5eea 100644 |
| --- a/src/x64/lithium-x64.cc |
| +++ b/src/x64/lithium-x64.cc |
| @@ -230,6 +230,13 @@ void LIsObjectAndBranch::PrintDataTo(StringStream* stream) { |
| } |
| +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); |
| @@ -244,6 +251,14 @@ void LIsUndetectableAndBranch::PrintDataTo(StringStream* stream) { |
| } |
| +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); |
| @@ -1392,7 +1407,7 @@ LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) { |
| LOperand* left = UseFixed(instr->left(), rdx); |
| LOperand* right = UseFixed(instr->right(), rax); |
| LCmpT* result = new LCmpT(left, right); |
| - return MarkAsCall(DefineFixed(result, rax), instr); |
| + return AssignEnvironment(MarkAsCall(DefineFixed(result, rax), instr)); |
|
fschneider
2011/11/08 10:14:37
Remove this call to AssignEnvironment.
|
| } |
| @@ -1450,6 +1465,12 @@ LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { |
| } |
| +LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) { |
| + ASSERT(instr->value()->representation().IsTagged()); |
|
fschneider
2011/11/08 10:14:37
You need to allocate a temp register using TempReg
|
| + return new LIsStringAndBranch(UseRegisterAtStart(instr->value())); |
| +} |
| + |
| + |
| LInstruction* LChunkBuilder::DoIsSmiAndBranch(HIsSmiAndBranch* instr) { |
| ASSERT(instr->value()->representation().IsTagged()); |
| return new LIsSmiAndBranch(Use(instr->value())); |
| @@ -1464,6 +1485,19 @@ LInstruction* LChunkBuilder::DoIsUndetectableAndBranch( |
| } |
| +LInstruction* LChunkBuilder::DoStringCompareAndBranch( |
| + HStringCompareAndBranch* instr) { |
| + |
| + ASSERT(instr->left()->representation().IsTagged()); |
| + ASSERT(instr->right()->representation().IsTagged()); |
| + LOperand* left = UseFixed(instr->left(), rdx); |
| + LOperand* right = UseFixed(instr->right(), rax); |
| + LStringCompareAndBranch* result = new LStringCompareAndBranch(left, right); |
| + |
| + return MarkAsCall(result, instr); |
| +} |
| + |
| + |
| LInstruction* LChunkBuilder::DoHasInstanceTypeAndBranch( |
| HHasInstanceTypeAndBranch* instr) { |
| ASSERT(instr->value()->representation().IsTagged()); |