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

Side by Side Diff: src/objects.h

Issue 2083573002: [builtins] Unify Cosh, Sinh and Tanh as exports from flibm (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE and windows fix. 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
« no previous file with comments | « src/external-reference-table.cc ('k') | src/third_party/fdlibm/fdlibm.js » ('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 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
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
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_
OLDNEW
« no previous file with comments | « src/external-reference-table.cc ('k') | src/third_party/fdlibm/fdlibm.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698