Index: src/arm/lithium-codegen-arm.cc |
diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc |
index b9f1a5ff3479fcde19e8bfd23b7011eda3576b68..8f1c9c090dfbdf6e1de38ed34c1f028a2efbe8b0 100644 |
--- a/src/arm/lithium-codegen-arm.cc |
+++ b/src/arm/lithium-codegen-arm.cc |
@@ -3951,39 +3951,6 @@ void LCodeGen::DoMathLog(LMathLog* instr) { |
} |
-void LCodeGen::DoMathTan(LMathTan* instr) { |
- ASSERT(ToDoubleRegister(instr->result()).is(d2)); |
- // Set the context register to a GC-safe fake value. Clobbering it is |
- // OK because this instruction is marked as a call. |
- __ mov(cp, Operand::Zero()); |
- TranscendentalCacheStub stub(TranscendentalCache::TAN, |
- TranscendentalCacheStub::UNTAGGED); |
- CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
-} |
- |
- |
-void LCodeGen::DoMathCos(LMathCos* instr) { |
- ASSERT(ToDoubleRegister(instr->result()).is(d2)); |
- // Set the context register to a GC-safe fake value. Clobbering it is |
- // OK because this instruction is marked as a call. |
- __ mov(cp, Operand::Zero()); |
- TranscendentalCacheStub stub(TranscendentalCache::COS, |
- TranscendentalCacheStub::UNTAGGED); |
- CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
-} |
- |
- |
-void LCodeGen::DoMathSin(LMathSin* instr) { |
- ASSERT(ToDoubleRegister(instr->result()).is(d2)); |
- // Set the context register to a GC-safe fake value. Clobbering it is |
- // OK because this instruction is marked as a call. |
- __ mov(cp, Operand::Zero()); |
- TranscendentalCacheStub stub(TranscendentalCache::SIN, |
- TranscendentalCacheStub::UNTAGGED); |
- CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
-} |
- |
- |
void LCodeGen::DoInvokeFunction(LInvokeFunction* instr) { |
ASSERT(ToRegister(instr->context()).is(cp)); |
ASSERT(ToRegister(instr->function()).is(r1)); |