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

Side by Side Diff: src/objects.h

Issue 2116753002: [builtins] Unify most of the remaining Math builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2102223005
Patch Set: Created 4 years, 5 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 6715 matching lines...) Expand 10 before | Expand all | Expand 10 after
6726 V(Math, log10, MathLog10) \ 6726 V(Math, log10, MathLog10) \
6727 V(Math, cbrt, MathCbrt) \ 6727 V(Math, cbrt, MathCbrt) \
6728 V(Math, exp, MathExp) \ 6728 V(Math, exp, MathExp) \
6729 V(Math, expm1, MathExpm1) \ 6729 V(Math, expm1, MathExpm1) \
6730 V(Math, sqrt, MathSqrt) \ 6730 V(Math, sqrt, MathSqrt) \
6731 V(Math, pow, MathPow) \ 6731 V(Math, pow, MathPow) \
6732 V(Math, max, MathMax) \ 6732 V(Math, max, MathMax) \
6733 V(Math, min, MathMin) \ 6733 V(Math, min, MathMin) \
6734 V(Math, cos, MathCos) \ 6734 V(Math, cos, MathCos) \
6735 V(Math, cosh, MathCosh) \ 6735 V(Math, cosh, MathCosh) \
6736 V(Math, sign, MathSign) \
6736 V(Math, sin, MathSin) \ 6737 V(Math, sin, MathSin) \
6737 V(Math, sinh, MathSinh) \ 6738 V(Math, sinh, MathSinh) \
6738 V(Math, tan, MathTan) \ 6739 V(Math, tan, MathTan) \
6739 V(Math, tanh, MathTanh) \ 6740 V(Math, tanh, MathTanh) \
6740 V(Math, acos, MathAcos) \ 6741 V(Math, acos, MathAcos) \
6742 V(Math, acosh, MathAcosh) \
6741 V(Math, asin, MathAsin) \ 6743 V(Math, asin, MathAsin) \
6744 V(Math, asinh, MathAsinh) \
6742 V(Math, atan, MathAtan) \ 6745 V(Math, atan, MathAtan) \
6743 V(Math, atan2, MathAtan2) \ 6746 V(Math, atan2, MathAtan2) \
6744 V(Math, atanh, MathAtanh) \ 6747 V(Math, atanh, MathAtanh) \
6745 V(Math, imul, MathImul) \ 6748 V(Math, imul, MathImul) \
6746 V(Math, clz32, MathClz32) \ 6749 V(Math, clz32, MathClz32) \
6747 V(Math, fround, MathFround) \ 6750 V(Math, fround, MathFround) \
6748 V(Math, trunc, MathTrunc) \ 6751 V(Math, trunc, MathTrunc) \
6749 V(Math, hypot, MathHypot) 6752 V(Math, hypot, MathHypot)
6750 6753
6751 #define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \ 6754 #define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \
(...skipping 4194 matching lines...) Expand 10 before | Expand all | Expand 10 after
10946 } 10949 }
10947 return value; 10950 return value;
10948 } 10951 }
10949 }; 10952 };
10950 10953
10951 10954
10952 } // NOLINT, false-positive due to second-order macros. 10955 } // NOLINT, false-positive due to second-order macros.
10953 } // NOLINT, false-positive due to second-order macros. 10956 } // NOLINT, false-positive due to second-order macros.
10954 10957
10955 #endif // V8_OBJECTS_H_ 10958 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698