Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index ca1e60d644b58bc56f83a24a3ebae74932b83c06..ebcf1b637c222cd654fbe8e4a7ade4aef537132d 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -762,52 +762,44 @@ LInstruction* LChunkBuilder::DoDeoptimize(HDeoptimize* instr) { |
LInstruction* LChunkBuilder::DoShift(Token::Value op, |
HBitwiseBinaryOperation* instr) { |
- if (instr->representation().IsTagged()) { |
- ASSERT(instr->left()->representation().IsSmiOrTagged()); |
- ASSERT(instr->right()->representation().IsSmiOrTagged()); |
- |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* left = UseFixed(instr->left(), edx); |
- LOperand* right = UseFixed(instr->right(), eax); |
- LArithmeticT* result = new(zone()) LArithmeticT(op, context, left, right); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
- } |
- |
- ASSERT(instr->representation().IsSmiOrInteger32()); |
- ASSERT(instr->left()->representation().Equals(instr->representation())); |
- ASSERT(instr->right()->representation().Equals(instr->representation())); |
- LOperand* left = UseRegisterAtStart(instr->left()); |
+ if (instr->representation().IsSmiOrInteger32()) { |
+ ASSERT(instr->left()->representation().Equals(instr->representation())); |
+ ASSERT(instr->right()->representation().Equals(instr->representation())); |
+ LOperand* left = UseRegisterAtStart(instr->left()); |
- HValue* right_value = instr->right(); |
- LOperand* right = NULL; |
- int constant_value = 0; |
- bool does_deopt = false; |
- if (right_value->IsConstant()) { |
- HConstant* constant = HConstant::cast(right_value); |
- right = chunk_->DefineConstantOperand(constant); |
- constant_value = constant->Integer32Value() & 0x1f; |
- // Left shifts can deoptimize if we shift by > 0 and the result cannot be |
- // truncated to smi. |
- if (instr->representation().IsSmi() && constant_value > 0) { |
- does_deopt = !instr->CheckUsesForFlag(HValue::kTruncatingToSmi); |
+ HValue* right_value = instr->right(); |
+ LOperand* right = NULL; |
+ int constant_value = 0; |
+ bool does_deopt = false; |
+ if (right_value->IsConstant()) { |
+ HConstant* constant = HConstant::cast(right_value); |
+ right = chunk_->DefineConstantOperand(constant); |
+ constant_value = constant->Integer32Value() & 0x1f; |
+ // Left shifts can deoptimize if we shift by > 0 and the result cannot be |
+ // truncated to smi. |
+ if (instr->representation().IsSmi() && constant_value > 0) { |
+ does_deopt = !instr->CheckUsesForFlag(HValue::kTruncatingToSmi); |
+ } |
+ } else { |
+ right = UseFixed(right_value, ecx); |
} |
- } else { |
- right = UseFixed(right_value, ecx); |
- } |
- // Shift operations can only deoptimize if we do a logical shift by 0 and |
- // the result cannot be truncated to int32. |
- if (op == Token::SHR && constant_value == 0) { |
- if (FLAG_opt_safe_uint32_operations) { |
- does_deopt = !instr->CheckFlag(HInstruction::kUint32); |
- } else { |
- does_deopt = !instr->CheckUsesForFlag(HValue::kTruncatingToInt32); |
+ // Shift operations can only deoptimize if we do a logical shift by 0 and |
+ // the result cannot be truncated to int32. |
+ if (op == Token::SHR && constant_value == 0) { |
+ if (FLAG_opt_safe_uint32_operations) { |
+ does_deopt = !instr->CheckFlag(HInstruction::kUint32); |
+ } else { |
+ does_deopt = !instr->CheckUsesForFlag(HValue::kTruncatingToInt32); |
+ } |
} |
- } |
- LInstruction* result = |
- DefineSameAsFirst(new(zone()) LShiftI(op, left, right, does_deopt)); |
- return does_deopt ? AssignEnvironment(result) : result; |
+ LInstruction* result = |
+ DefineSameAsFirst(new(zone()) LShiftI(op, left, right, does_deopt)); |
+ return does_deopt ? AssignEnvironment(result) : result; |
+ } else { |
+ return DoArithmeticT(op, instr); |
+ } |
} |
@@ -816,21 +808,16 @@ LInstruction* LChunkBuilder::DoArithmeticD(Token::Value op, |
ASSERT(instr->representation().IsDouble()); |
ASSERT(instr->left()->representation().IsDouble()); |
ASSERT(instr->right()->representation().IsDouble()); |
- ASSERT(op != Token::MOD); |
LOperand* left = UseRegisterAtStart(instr->BetterLeftOperand()); |
LOperand* right = UseRegisterAtStart(instr->BetterRightOperand()); |
LArithmeticD* result = new(zone()) LArithmeticD(op, left, right); |
+ if (op == Token::MOD) return MarkAsCall(DefineSameAsFirst(result), instr); |
return DefineSameAsFirst(result); |
} |
LInstruction* LChunkBuilder::DoArithmeticT(Token::Value op, |
- HArithmeticBinaryOperation* instr) { |
- ASSERT(op == Token::ADD || |
- op == Token::DIV || |
- op == Token::MOD || |
- op == Token::MUL || |
- op == Token::SUB); |
+ HBinaryOperation* instr) { |
HValue* left = instr->left(); |
HValue* right = instr->right(); |
ASSERT(left->representation().IsTagged()); |
@@ -1442,29 +1429,19 @@ LInstruction* LChunkBuilder::DoBitwise(HBitwise* instr) { |
if (instr->representation().IsSmiOrInteger32()) { |
ASSERT(instr->left()->representation().Equals(instr->representation())); |
ASSERT(instr->right()->representation().Equals(instr->representation())); |
+ ASSERT(instr->CheckFlag(HValue::kTruncatingToInt32)); |
LOperand* left = UseRegisterAtStart(instr->BetterLeftOperand()); |
LOperand* right = UseOrConstantAtStart(instr->BetterRightOperand()); |
return DefineSameAsFirst(new(zone()) LBitI(left, right)); |
} else { |
- ASSERT(instr->representation().IsSmiOrTagged()); |
- ASSERT(instr->left()->representation().IsSmiOrTagged()); |
- ASSERT(instr->right()->representation().IsSmiOrTagged()); |
- |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* left = UseFixed(instr->left(), edx); |
- LOperand* right = UseFixed(instr->right(), eax); |
- LArithmeticT* result = |
- new(zone()) LArithmeticT(instr->op(), context, left, right); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
+ return DoArithmeticT(instr->op(), instr); |
} |
} |
LInstruction* LChunkBuilder::DoDiv(HDiv* instr) { |
- if (instr->representation().IsDouble()) { |
- return DoArithmeticD(Token::DIV, instr); |
- } else if (instr->representation().IsSmiOrInteger32()) { |
+ if (instr->representation().IsSmiOrInteger32()) { |
ASSERT(instr->left()->representation().Equals(instr->representation())); |
ASSERT(instr->right()->representation().Equals(instr->representation())); |
if (instr->HasPowerOf2Divisor()) { |
@@ -1481,8 +1458,9 @@ LInstruction* LChunkBuilder::DoDiv(HDiv* instr) { |
LOperand* divisor = UseRegister(instr->right()); |
LDivI* result = new(zone()) LDivI(dividend, divisor, temp); |
return AssignEnvironment(DefineFixed(result, eax)); |
+ } else if (instr->representation().IsDouble()) { |
+ return DoArithmeticD(Token::DIV, instr); |
} else { |
- ASSERT(instr->representation().IsTagged()); |
return DoArithmeticT(Token::DIV, instr); |
} |
} |
@@ -1584,17 +1562,10 @@ LInstruction* LChunkBuilder::DoMod(HMod* instr) { |
? AssignEnvironment(result) |
: result; |
} |
- } else if (instr->representation().IsSmiOrTagged()) { |
- return DoArithmeticT(Token::MOD, instr); |
+ } else if (instr->representation().IsDouble()) { |
+ return DoArithmeticD(Token::MOD, instr); |
} else { |
- ASSERT(instr->representation().IsDouble()); |
- // We call a C function for double modulo. It can't trigger a GC. We need |
- // to use fixed result register for the call. |
- // TODO(fschneider): Allow any register as input registers. |
- LArithmeticD* mod = new(zone()) LArithmeticD(Token::MOD, |
- UseFixedDouble(left, xmm2), |
- UseFixedDouble(right, xmm1)); |
- return MarkAsCall(DefineFixedDouble(mod, xmm1), instr); |
+ return DoArithmeticT(Token::MOD, instr); |
} |
} |
@@ -1618,7 +1589,6 @@ LInstruction* LChunkBuilder::DoMul(HMul* instr) { |
} else if (instr->representation().IsDouble()) { |
return DoArithmeticD(Token::MUL, instr); |
} else { |
- ASSERT(instr->representation().IsTagged()); |
return DoArithmeticT(Token::MUL, instr); |
} |
} |
@@ -1639,7 +1609,6 @@ LInstruction* LChunkBuilder::DoSub(HSub* instr) { |
} else if (instr->representation().IsDouble()) { |
return DoArithmeticD(Token::SUB, instr); |
} else { |
- ASSERT(instr->representation().IsSmiOrTagged()); |
return DoArithmeticT(Token::SUB, instr); |
} |
} |
@@ -1671,7 +1640,6 @@ LInstruction* LChunkBuilder::DoAdd(HAdd* instr) { |
} else if (instr->representation().IsDouble()) { |
return DoArithmeticD(Token::ADD, instr); |
} else { |
- ASSERT(instr->representation().IsSmiOrTagged()); |
return DoArithmeticT(Token::ADD, instr); |
} |
} |