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

Unified Diff: src/compiler/opcodes.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 | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index 03ebda26484f74ad04cdcfd6d65821a3efdb6ddc..b31a521cfbd99170d52e1a02cf3f23c2bc494187 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -199,6 +199,7 @@
V(NumberImul) \
V(NumberClz32) \
V(NumberCeil) \
+ V(NumberCos) \
V(NumberFloor) \
V(NumberFround) \
V(NumberAtan) \
@@ -212,6 +213,7 @@
V(NumberLog10) \
V(NumberCbrt) \
V(NumberRound) \
+ V(NumberSin) \
V(NumberSqrt) \
V(NumberTrunc) \
V(NumberToInt32) \
@@ -376,13 +378,15 @@
V(Float64Atan) \
V(Float64Atan2) \
V(Float64Atanh) \
+ V(Float64Cbrt) \
+ V(Float64Cos) \
V(Float64Exp) \
V(Float64Expm1) \
V(Float64Log) \
V(Float64Log1p) \
- V(Float64Log2) \
V(Float64Log10) \
- V(Float64Cbrt) \
+ V(Float64Log2) \
+ V(Float64Sin) \
V(Float64Sqrt) \
V(Float64RoundDown) \
V(Float32RoundUp) \
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698