Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 562c88d34d23b6c12840494c159461319a2e0949..e34d439f9265b1fb995883de21cb19fab90006f0 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -633,6 +633,19 @@ LUnallocated* LChunkBuilder::TempRegister() { |
} |
+LUnallocated* LChunkBuilder::TempDoubleRegister() { |
+ LUnallocated* operand = |
+ new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); |
+ int vreg = allocator_->GetVirtualRegister(); |
+ if (!allocator_->AllocationOk()) { |
+ Abort(kOutOfVirtualRegistersWhileTryingToAllocateTempRegister); |
+ vreg = 0; |
+ } |
+ operand->set_virtual_register(vreg); |
+ return operand; |
+} |
+ |
+ |
LOperand* LChunkBuilder::FixedTemp(Register reg) { |
LUnallocated* operand = ToUnallocated(reg); |
ASSERT(operand->HasFixedPolicy()); |
@@ -1134,7 +1147,7 @@ LInstruction* LChunkBuilder::DoMathExp(HUnaryMathOperation* instr) { |
LOperand* input = UseRegister(instr->value()); |
LOperand* temp1 = TempRegister(); |
LOperand* temp2 = TempRegister(); |
- LOperand* double_temp = FixedTemp(f6); // Chosen by fair dice roll. |
+ LOperand* double_temp = TempDoubleRegister(); |
LMathExp* result = new(zone()) LMathExp(input, double_temp, temp1, temp2); |
return DefineAsRegister(result); |
} |
@@ -1180,7 +1193,7 @@ LInstruction* LChunkBuilder::DoMathSqrt(HUnaryMathOperation* instr) { |
LInstruction* LChunkBuilder::DoMathRound(HUnaryMathOperation* instr) { |
LOperand* input = UseRegister(instr->value()); |
- LOperand* temp = FixedTemp(f6); |
+ LOperand* temp = TempDoubleRegister(); |
LMathRound* result = new(zone()) LMathRound(input, temp); |
return AssignEnvironment(DefineAsRegister(result)); |
} |
@@ -1842,7 +1855,7 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) { |
} else { |
LOperand* value = UseRegister(val); |
LOperand* temp1 = TempRegister(); |
- LOperand* temp2 = FixedTemp(f22); |
+ LOperand* temp2 = TempDoubleRegister(); |
LInstruction* result = |
DefineSameAsFirst(new(zone()) LTaggedToI(value, temp1, temp2)); |
if (!val->representation().IsSmi()) result = AssignEnvironment(result); |
@@ -1961,7 +1974,8 @@ LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) { |
ASSERT(input_rep.IsSmiOrTagged()); |
// Register allocator doesn't (yet) support allocation of double |
// temps. Reserve f22 explicitly. |
Paul Lind
2014/05/27 13:56:22
Please remove this comment.
kilvadyb
2014/05/27 15:59:17
Done.
|
- LClampTToUint8* result = new(zone()) LClampTToUint8(reg, FixedTemp(f22)); |
+ LClampTToUint8* result = |
+ new(zone()) LClampTToUint8(reg, TempDoubleRegister()); |
return AssignEnvironment(DefineAsRegister(result)); |
} |
} |