| Index: src/assembler.cc
|
| diff --git a/src/assembler.cc b/src/assembler.cc
|
| index b4fc1b1ebda304f257b0a8984c9f0c4b37bbc28b..2fd085096ef8defa8e14037b8b63a9f137593a0f 100644
|
| --- a/src/assembler.cc
|
| +++ b/src/assembler.cc
|
| @@ -1209,6 +1209,104 @@ ExternalReference ExternalReference::f64_nearest_int_wrapper_function(
|
| Redirect(isolate, FUNCTION_ADDR(f64_nearest_int_wrapper)));
|
| }
|
|
|
| +static void f64_acos_wrapper(double* param) { *param = std::acos(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_acos_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_acos_wrapper)));
|
| +}
|
| +
|
| +static void f64_asin_wrapper(double* param) { *param = std::asin(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_asin_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_asin_wrapper)));
|
| +}
|
| +
|
| +static void f64_atan_wrapper(double* param) { *param = std::atan(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_atan_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_atan_wrapper)));
|
| +}
|
| +
|
| +static void f64_cos_wrapper(double* param) { *param = std::cos(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_cos_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_cos_wrapper)));
|
| +}
|
| +
|
| +static void f64_sin_wrapper(double* param) { *param = std::sin(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_sin_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_sin_wrapper)));
|
| +}
|
| +
|
| +static void f64_tan_wrapper(double* param) { *param = std::tan(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_tan_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_tan_wrapper)));
|
| +}
|
| +
|
| +static void f64_exp_wrapper(double* param) { *param = std::exp(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_exp_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_exp_wrapper)));
|
| +}
|
| +
|
| +static void f64_log_wrapper(double* param) { *param = std::log(*param); }
|
| +
|
| +ExternalReference ExternalReference::f64_log_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_log_wrapper)));
|
| +}
|
| +
|
| +static void f64_pow_wrapper(double* param0, double* param1) {
|
| + *param0 = power_double_double(*param0, *param1);
|
| +}
|
| +
|
| +ExternalReference ExternalReference::f64_pow_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_pow_wrapper)));
|
| +}
|
| +
|
| +static void f64_atan2_wrapper(double* param0, double* param1) {
|
| + double x = *param0;
|
| + double y = *param1;
|
| + // TODO(bradnelson): Find a good place to put this to share
|
| + // with the same code in src/runtime/runtime-math.cc
|
| + static const double kPiDividedBy4 = 0.78539816339744830962;
|
| + if (std::isinf(x) && std::isinf(y)) {
|
| + // Make sure that the result in case of two infinite arguments
|
| + // is a multiple of Pi / 4. The sign of the result is determined
|
| + // by the first argument (x) and the sign of the second argument
|
| + // determines the multiplier: one or three.
|
| + int multiplier = (x < 0) ? -1 : 1;
|
| + if (y < 0) multiplier *= 3;
|
| + *param0 = multiplier * kPiDividedBy4;
|
| + } else {
|
| + *param0 = std::atan2(x, y);
|
| + }
|
| +}
|
| +
|
| +ExternalReference ExternalReference::f64_atan2_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_atan2_wrapper)));
|
| +}
|
| +
|
| +static void f64_mod_wrapper(double* param0, double* param1) {
|
| + *param0 = modulo(*param0, *param1);
|
| +}
|
| +
|
| +ExternalReference ExternalReference::f64_mod_wrapper_function(
|
| + Isolate* isolate) {
|
| + return ExternalReference(Redirect(isolate, FUNCTION_ADDR(f64_mod_wrapper)));
|
| +}
|
| +
|
| ExternalReference ExternalReference::log_enter_external_function(
|
| Isolate* isolate) {
|
| return ExternalReference(
|
|
|