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

Side by Side Diff: src/compiler/machine-operator.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 unified diff | Download patch
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_ 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_
6 #define V8_COMPILER_MACHINE_OPERATOR_H_ 6 #define V8_COMPILER_MACHINE_OPERATOR_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/machine-type.h" 9 #include "src/machine-type.h"
10 10
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 366
367 // Floating point neg. 367 // Floating point neg.
368 const OptionalOperator Float32Neg(); 368 const OptionalOperator Float32Neg();
369 const OptionalOperator Float64Neg(); 369 const OptionalOperator Float64Neg();
370 370
371 // Floating point trigonometric functions (double-precision). 371 // Floating point trigonometric functions (double-precision).
372 const Operator* Float64Atan(); 372 const Operator* Float64Atan();
373 const Operator* Float64Atan2(); 373 const Operator* Float64Atan2();
374 const Operator* Float64Atanh(); 374 const Operator* Float64Atanh();
375 375
376 // Floating point exponential functions. 376 // Floating point trigonometric functions (double-precision).
377 const Operator* Float64Cos();
378 const Operator* Float64Sin();
379
380 // Floating point exponential functions (double-precision).
377 const Operator* Float64Exp(); 381 const Operator* Float64Exp();
378 382
379 // Floating point logarithm (double-precision). 383 // Floating point logarithm (double-precision).
380 const Operator* Float64Log(); 384 const Operator* Float64Log();
381 const Operator* Float64Log1p(); 385 const Operator* Float64Log1p();
382 const Operator* Float64Log2(); 386 const Operator* Float64Log2();
383 const Operator* Float64Log10(); 387 const Operator* Float64Log10();
384 388
385 const Operator* Float64Cbrt(); 389 const Operator* Float64Cbrt();
386 const Operator* Float64Expm1(); 390 const Operator* Float64Expm1();
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 }; 664 };
661 665
662 666
663 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 667 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
664 668
665 } // namespace compiler 669 } // namespace compiler
666 } // namespace internal 670 } // namespace internal
667 } // namespace v8 671 } // namespace v8
668 672
669 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 673 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-builtin-reducer.cc ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698