Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: src/assembler.h

Issue 2073123002: [builtins] Introduce proper Float64Cos and Float64Sin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix missing breaks Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index ab4493bce75d2a746806184300c3338cfb8526f3..af3f6a97417592ca3dea8703097d0ab231139ad9 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -1042,17 +1042,16 @@ class ExternalReference BASE_EMBEDDED {
// IEEE 754 functions.
static ExternalReference ieee754_atan_function(Isolate* isolate);
static ExternalReference ieee754_atan2_function(Isolate* isolate);
+ static ExternalReference ieee754_atanh_function(Isolate* isolate);
+ static ExternalReference ieee754_cbrt_function(Isolate* isolate);
+ static ExternalReference ieee754_cos_function(Isolate* isolate);
static ExternalReference ieee754_exp_function(Isolate* isolate);
+ static ExternalReference ieee754_expm1_function(Isolate* isolate);
static ExternalReference ieee754_log_function(Isolate* isolate);
static ExternalReference ieee754_log1p_function(Isolate* isolate);
- static ExternalReference ieee754_log2_function(Isolate* isolate);
static ExternalReference ieee754_log10_function(Isolate* isolate);
- static ExternalReference ieee754_atanh_function(Isolate* isolate);
- static ExternalReference ieee754_cbrt_function(Isolate* isolate);
- static ExternalReference ieee754_expm1_function(Isolate* isolate);
-
- static ExternalReference math_exp_constants(int constant_index);
- static ExternalReference math_exp_log_table();
+ static ExternalReference ieee754_log2_function(Isolate* isolate);
+ static ExternalReference ieee754_sin_function(Isolate* isolate);
static ExternalReference page_flags(Page* page);
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698