Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index 61bf6d0dea75352c1894c0b430f0c35844483a55..b7ddeac0e428d2846aec3e5573cf90ac7a3ff5d2 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -3693,9 +3693,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); |
@@ -3705,22 +3705,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(eax); |
+} |
+ |
+ |
+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(eax); |
+} |
+ |
+ |
+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(eax); |
} |
-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(eax); |
} |