Index: src/codegen.h |
diff --git a/src/codegen.h b/src/codegen.h |
index 82962ad8026ab763f64ce95ff580e8d7de90467c..f941696774d105aaf3622715dd9ffba247f78b12 100644 |
--- a/src/codegen.h |
+++ b/src/codegen.h |
@@ -93,13 +93,16 @@ |
// generated code both in runtime and compiled code. |
typedef double (*UnaryMathFunctionWithIsolate)(double x, Isolate* isolate); |
+UnaryMathFunctionWithIsolate CreateExpFunction(Isolate* isolate); |
UnaryMathFunctionWithIsolate CreateSqrtFunction(Isolate* isolate); |
double modulo(double x, double y); |
// Custom implementation of math functions. |
+double fast_exp(double input, Isolate* isolate); |
double fast_sqrt(double input, Isolate* isolate); |
+void lazily_initialize_fast_exp(Isolate* isolate); |
void lazily_initialize_fast_sqrt(Isolate* isolate); |