| Index: src/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc
|
| index bba3acaa9a55ac059287d801acc552a7f6f70d69..1a20fc3b6815c1d2c69a0dfdfb2a209e1f2098e4 100644
|
| --- a/src/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/ia32/lithium-codegen-ia32.cc
|
| @@ -1349,12 +1349,6 @@ void LCodeGen::DoCallStub(LCallStub* instr) {
|
| CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| break;
|
| }
|
| - case CodeStub::TranscendentalCache: {
|
| - TranscendentalCacheStub stub(instr->transcendental_type(),
|
| - TranscendentalCacheStub::TAGGED);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| - break;
|
| - }
|
| default:
|
| UNREACHABLE();
|
| }
|
| @@ -2259,7 +2253,7 @@ void LCodeGen::DoArithmeticD(LArithmeticD* instr) {
|
| __ movsd(Operand(esp, 0 * kDoubleSize), left);
|
| __ movsd(Operand(esp, 1 * kDoubleSize), right);
|
| __ CallCFunction(
|
| - ExternalReference::double_fp_operation(Token::MOD, isolate()),
|
| + ExternalReference::mod_two_doubles_operation(isolate()),
|
| 4);
|
|
|
| // Return value is in st(0) on ia32.
|
| @@ -2303,7 +2297,7 @@ void LCodeGen::DoArithmeticD(LArithmeticD* instr) {
|
| ASSERT(left.is(result));
|
| X87PrepareToWrite(result);
|
| __ CallCFunction(
|
| - ExternalReference::double_fp_operation(Token::MOD, isolate()),
|
| + ExternalReference::mod_two_doubles_operation(isolate()),
|
| 4);
|
|
|
| // Return value is in st(0) on ia32.
|
| @@ -4162,7 +4156,7 @@ void LCodeGen::DoMathLog(LMathLog* instr) {
|
| __ xorps(xmm_scratch, xmm_scratch);
|
| __ ucomisd(input_reg, xmm_scratch);
|
| __ j(above, &positive, Label::kNear);
|
| - __ j(equal, &zero, Label::kNear);
|
| + __ j(not_carry, &zero, Label::kNear);
|
| ExternalReference nan =
|
| ExternalReference::address_of_canonical_non_hole_nan();
|
| __ movsd(input_reg, Operand::StaticVariable(nan));
|
| @@ -4918,7 +4912,7 @@ void LCodeGen::DoStringAdd(LStringAdd* instr) {
|
| ASSERT(ToRegister(instr->left()).is(edx));
|
| ASSERT(ToRegister(instr->right()).is(eax));
|
| NewStringAddStub stub(instr->hydrogen()->flags(),
|
| - isolate()->heap()->GetPretenureMode());
|
| + instr->hydrogen()->pretenure_flag());
|
| CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| } else {
|
| EmitPushTaggedOperand(instr->left());
|
|
|