Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index 5b6a35d12b18ca4ca6d8f48cf5c12438679f19aa..8fb1e15585bffc4bcf303f67834baeb49145ae48 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -3726,9 +3726,9 @@ void FullCodeGenerator::EmitStringCompare(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitMathLog(CallRuntime* expr) { |
+void FullCodeGenerator::EmitMathSin(CallRuntime* expr) { |
// Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::LOG, |
+ TranscendentalCacheStub stub(TranscendentalCache::SIN, |
TranscendentalCacheStub::TAGGED); |
ZoneList<Expression*>* args = expr->arguments(); |
ASSERT(args->length() == 1); |
@@ -3738,22 +3738,48 @@ void FullCodeGenerator::EmitMathLog(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitMathSqrt(CallRuntime* expr) { |
- // Load the argument on the stack and call the runtime function. |
+void FullCodeGenerator::EmitMathCos(CallRuntime* expr) { |
+ // Load the argument on the stack and call the stub. |
+ TranscendentalCacheStub stub(TranscendentalCache::COS, |
+ TranscendentalCacheStub::TAGGED); |
ZoneList<Expression*>* args = expr->arguments(); |
ASSERT(args->length() == 1); |
VisitForStackValue(args->at(0)); |
- __ CallRuntime(Runtime::kMath_sqrt, 1); |
+ __ CallStub(&stub); |
+ context()->Plug(r0); |
+} |
+ |
+ |
+void FullCodeGenerator::EmitMathTan(CallRuntime* expr) { |
+ // Load the argument on the stack and call the stub. |
+ TranscendentalCacheStub stub(TranscendentalCache::TAN, |
+ TranscendentalCacheStub::TAGGED); |
+ ZoneList<Expression*>* args = expr->arguments(); |
+ ASSERT(args->length() == 1); |
+ VisitForStackValue(args->at(0)); |
+ __ CallStub(&stub); |
+ context()->Plug(r0); |
+} |
+ |
+ |
+void FullCodeGenerator::EmitMathLog(CallRuntime* expr) { |
+ // Load the argument on the stack and call the stub. |
+ TranscendentalCacheStub stub(TranscendentalCache::LOG, |
+ TranscendentalCacheStub::TAGGED); |
+ ZoneList<Expression*>* args = expr->arguments(); |
+ ASSERT(args->length() == 1); |
+ VisitForStackValue(args->at(0)); |
+ __ CallStub(&stub); |
context()->Plug(r0); |
} |
-void FullCodeGenerator::EmitMathFloor(CallRuntime* expr) { |
+void FullCodeGenerator::EmitMathSqrt(CallRuntime* expr) { |
// Load the argument on the stack and call the runtime function. |
ZoneList<Expression*>* args = expr->arguments(); |
ASSERT(args->length() == 1); |
VisitForStackValue(args->at(0)); |
- __ CallRuntime(Runtime::kMath_floor, 1); |
+ __ CallRuntime(Runtime::kMath_sqrt, 1); |
context()->Plug(r0); |
} |