OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/crankshaft/mips64/lithium-codegen-mips64.h" | 5 #include "src/crankshaft/mips64/lithium-codegen-mips64.h" |
6 | 6 |
7 #include "src/code-factory.h" | 7 #include "src/code-factory.h" |
8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
9 #include "src/crankshaft/hydrogen-osr.h" | 9 #include "src/crankshaft/hydrogen-osr.h" |
10 #include "src/crankshaft/mips64/lithium-gap-resolver-mips64.h" | 10 #include "src/crankshaft/mips64/lithium-gap-resolver-mips64.h" |
(...skipping 3677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3688 __ CallStub(&stub); | 3688 __ CallStub(&stub); |
3689 } else { | 3689 } else { |
3690 DCHECK(exponent_type.IsDouble()); | 3690 DCHECK(exponent_type.IsDouble()); |
3691 MathPowStub stub(isolate(), MathPowStub::DOUBLE); | 3691 MathPowStub stub(isolate(), MathPowStub::DOUBLE); |
3692 __ CallStub(&stub); | 3692 __ CallStub(&stub); |
3693 } | 3693 } |
3694 } | 3694 } |
3695 | 3695 |
3696 | 3696 |
3697 void LCodeGen::DoMathExp(LMathExp* instr) { | 3697 void LCodeGen::DoMathExp(LMathExp* instr) { |
3698 __ PrepareCallCFunction(0, 1, scratch0()); | 3698 DoubleRegister input = ToDoubleRegister(instr->value()); |
3699 __ MovToFloatParameter(ToDoubleRegister(instr->value())); | 3699 DoubleRegister result = ToDoubleRegister(instr->result()); |
3700 __ CallCFunction(ExternalReference::ieee754_exp_function(isolate()), 0, 1); | 3700 DoubleRegister double_scratch1 = ToDoubleRegister(instr->double_temp()); |
3701 __ MovFromFloatResult(ToDoubleRegister(instr->result())); | 3701 DoubleRegister double_scratch2 = double_scratch0(); |
| 3702 Register temp1 = ToRegister(instr->temp1()); |
| 3703 Register temp2 = ToRegister(instr->temp2()); |
| 3704 |
| 3705 MathExpGenerator::EmitMathExp( |
| 3706 masm(), input, result, double_scratch1, double_scratch2, |
| 3707 temp1, temp2, scratch0()); |
3702 } | 3708 } |
3703 | 3709 |
3704 | 3710 |
3705 void LCodeGen::DoMathLog(LMathLog* instr) { | 3711 void LCodeGen::DoMathLog(LMathLog* instr) { |
3706 __ PrepareCallCFunction(0, 1, scratch0()); | 3712 __ PrepareCallCFunction(0, 1, scratch0()); |
3707 __ MovToFloatParameter(ToDoubleRegister(instr->value())); | 3713 __ MovToFloatParameter(ToDoubleRegister(instr->value())); |
3708 __ CallCFunction(ExternalReference::ieee754_log_function(isolate()), 0, 1); | 3714 __ CallCFunction(ExternalReference::ieee754_log_function(isolate()), 0, 1); |
3709 __ MovFromFloatResult(ToDoubleRegister(instr->result())); | 3715 __ MovFromFloatResult(ToDoubleRegister(instr->result())); |
3710 } | 3716 } |
3711 | 3717 |
(...skipping 2033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5745 __ ld(result, FieldMemOperand(scratch, | 5751 __ ld(result, FieldMemOperand(scratch, |
5746 FixedArray::kHeaderSize - kPointerSize)); | 5752 FixedArray::kHeaderSize - kPointerSize)); |
5747 __ bind(deferred->exit()); | 5753 __ bind(deferred->exit()); |
5748 __ bind(&done); | 5754 __ bind(&done); |
5749 } | 5755 } |
5750 | 5756 |
5751 #undef __ | 5757 #undef __ |
5752 | 5758 |
5753 } // namespace internal | 5759 } // namespace internal |
5754 } // namespace v8 | 5760 } // namespace v8 |
OLD | NEW |