OLD | NEW |
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 6706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6717 V(Math, log2, MathLog2) \ | 6717 V(Math, log2, MathLog2) \ |
6718 V(Math, log10, MathLog10) \ | 6718 V(Math, log10, MathLog10) \ |
6719 V(Math, cbrt, MathCbrt) \ | 6719 V(Math, cbrt, MathCbrt) \ |
6720 V(Math, exp, MathExp) \ | 6720 V(Math, exp, MathExp) \ |
6721 V(Math, expm1, MathExpm1) \ | 6721 V(Math, expm1, MathExpm1) \ |
6722 V(Math, sqrt, MathSqrt) \ | 6722 V(Math, sqrt, MathSqrt) \ |
6723 V(Math, pow, MathPow) \ | 6723 V(Math, pow, MathPow) \ |
6724 V(Math, max, MathMax) \ | 6724 V(Math, max, MathMax) \ |
6725 V(Math, min, MathMin) \ | 6725 V(Math, min, MathMin) \ |
6726 V(Math, cos, MathCos) \ | 6726 V(Math, cos, MathCos) \ |
| 6727 V(Math, cosh, MathCosh) \ |
6727 V(Math, sin, MathSin) \ | 6728 V(Math, sin, MathSin) \ |
| 6729 V(Math, sinh, MathSinh) \ |
6728 V(Math, tan, MathTan) \ | 6730 V(Math, tan, MathTan) \ |
| 6731 V(Math, tanh, MathTanh) \ |
6729 V(Math, acos, MathAcos) \ | 6732 V(Math, acos, MathAcos) \ |
6730 V(Math, asin, MathAsin) \ | 6733 V(Math, asin, MathAsin) \ |
6731 V(Math, atan, MathAtan) \ | 6734 V(Math, atan, MathAtan) \ |
6732 V(Math, atan2, MathAtan2) \ | 6735 V(Math, atan2, MathAtan2) \ |
6733 V(Math, atanh, MathAtanh) \ | 6736 V(Math, atanh, MathAtanh) \ |
6734 V(Math, imul, MathImul) \ | 6737 V(Math, imul, MathImul) \ |
6735 V(Math, clz32, MathClz32) \ | 6738 V(Math, clz32, MathClz32) \ |
6736 V(Math, fround, MathFround) \ | 6739 V(Math, fround, MathFround) \ |
6737 V(Math, trunc, MathTrunc) | 6740 V(Math, trunc, MathTrunc) |
6738 | 6741 |
(...skipping 4183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10922 } | 10925 } |
10923 return value; | 10926 return value; |
10924 } | 10927 } |
10925 }; | 10928 }; |
10926 | 10929 |
10927 | 10930 |
10928 } // NOLINT, false-positive due to second-order macros. | 10931 } // NOLINT, false-positive due to second-order macros. |
10929 } // NOLINT, false-positive due to second-order macros. | 10932 } // NOLINT, false-positive due to second-order macros. |
10930 | 10933 |
10931 #endif // V8_OBJECTS_H_ | 10934 #endif // V8_OBJECTS_H_ |
OLD | NEW |