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

Side by Side Diff: src/objects.h

Issue 2060743002: [builtins] Introduce proper Float64Log1p operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@Math_Log
Patch Set: REBASE 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
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 6569 matching lines...) Expand 10 before | Expand all | Expand 10 after
6580 V(String.prototype, concat, StringConcat) \ 6580 V(String.prototype, concat, StringConcat) \
6581 V(String.prototype, toLowerCase, StringToLowerCase) \ 6581 V(String.prototype, toLowerCase, StringToLowerCase) \
6582 V(String.prototype, toUpperCase, StringToUpperCase) \ 6582 V(String.prototype, toUpperCase, StringToUpperCase) \
6583 V(String, fromCharCode, StringFromCharCode) \ 6583 V(String, fromCharCode, StringFromCharCode) \
6584 V(Math, random, MathRandom) \ 6584 V(Math, random, MathRandom) \
6585 V(Math, floor, MathFloor) \ 6585 V(Math, floor, MathFloor) \
6586 V(Math, round, MathRound) \ 6586 V(Math, round, MathRound) \
6587 V(Math, ceil, MathCeil) \ 6587 V(Math, ceil, MathCeil) \
6588 V(Math, abs, MathAbs) \ 6588 V(Math, abs, MathAbs) \
6589 V(Math, log, MathLog) \ 6589 V(Math, log, MathLog) \
6590 V(Math, log1p, MathLog1p) \
6590 V(Math, exp, MathExp) \ 6591 V(Math, exp, MathExp) \
6591 V(Math, sqrt, MathSqrt) \ 6592 V(Math, sqrt, MathSqrt) \
6592 V(Math, pow, MathPow) \ 6593 V(Math, pow, MathPow) \
6593 V(Math, max, MathMax) \ 6594 V(Math, max, MathMax) \
6594 V(Math, min, MathMin) \ 6595 V(Math, min, MathMin) \
6595 V(Math, cos, MathCos) \ 6596 V(Math, cos, MathCos) \
6596 V(Math, sin, MathSin) \ 6597 V(Math, sin, MathSin) \
6597 V(Math, tan, MathTan) \ 6598 V(Math, tan, MathTan) \
6598 V(Math, acos, MathAcos) \ 6599 V(Math, acos, MathAcos) \
6599 V(Math, asin, MathAsin) \ 6600 V(Math, asin, MathAsin) \
(...skipping 4197 matching lines...) Expand 10 before | Expand all | Expand 10 after
10797 } 10798 }
10798 return value; 10799 return value;
10799 } 10800 }
10800 }; 10801 };
10801 10802
10802 10803
10803 } // NOLINT, false-positive due to second-order macros. 10804 } // NOLINT, false-positive due to second-order macros.
10804 } // NOLINT, false-positive due to second-order macros. 10805 } // NOLINT, false-positive due to second-order macros.
10805 10806
10806 #endif // V8_OBJECTS_H_ 10807 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698