Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index 704fb4e7d28bc994e1dc06bd09542d663d77f8af..d350ffe924588c1e25099059c0c5c68292af61ca 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -3694,33 +3694,9 @@ void FullCodeGenerator::EmitStringCompare(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitMathSin(CallRuntime* expr) { |
- // Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::SIN, |
- TranscendentalCacheStub::TAGGED); |
- ZoneList<Expression*>* args = expr->arguments(); |
- ASSERT(args->length() == 1); |
- VisitForStackValue(args->at(0)); |
- __ CallStub(&stub); |
- context()->Plug(eax); |
-} |
- |
- |
-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)); |
- __ CallStub(&stub); |
- context()->Plug(eax); |
-} |
- |
- |
-void FullCodeGenerator::EmitMathTan(CallRuntime* expr) { |
+void FullCodeGenerator::EmitMathLog(CallRuntime* expr) { |
// Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::TAN, |
+ TranscendentalCacheStub stub(TranscendentalCache::LOG, |
TranscendentalCacheStub::TAGGED); |
ZoneList<Expression*>* args = expr->arguments(); |
ASSERT(args->length() == 1); |
@@ -3730,24 +3706,22 @@ void FullCodeGenerator::EmitMathTan(CallRuntime* expr) { |
} |
-void FullCodeGenerator::EmitMathLog(CallRuntime* expr) { |
- // Load the argument on the stack and call the stub. |
- TranscendentalCacheStub stub(TranscendentalCache::LOG, |
- TranscendentalCacheStub::TAGGED); |
+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)); |
- __ CallStub(&stub); |
+ __ CallRuntime(Runtime::kMath_sqrt, 1); |
context()->Plug(eax); |
} |
-void FullCodeGenerator::EmitMathSqrt(CallRuntime* expr) { |
+void FullCodeGenerator::EmitMathFloor(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_sqrt, 1); |
+ __ CallRuntime(Runtime::kMath_floor, 1); |
context()->Plug(eax); |
} |