| Index: src/x64/full-codegen-x64.cc
|
| diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc
|
| index 21451fc746b761e307123319853e6b099b5c27fd..cc0d3d9f373dd9f100bbfa824b7fe1448066c4dd 100644
|
| --- a/src/x64/full-codegen-x64.cc
|
| +++ b/src/x64/full-codegen-x64.cc
|
| @@ -3650,9 +3650,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);
|
| @@ -3662,22 +3662,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(rax);
|
| +}
|
| +
|
| +
|
| +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(rax);
|
| +}
|
| +
|
| +
|
| +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(rax);
|
| }
|
|
|
|
|
| -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(rax);
|
| }
|
|
|
|
|