| 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 6573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6584 V(String, fromCharCode, StringFromCharCode) \ | 6584 V(String, fromCharCode, StringFromCharCode) \ |
| 6585 V(Math, random, MathRandom) \ | 6585 V(Math, random, MathRandom) \ |
| 6586 V(Math, floor, MathFloor) \ | 6586 V(Math, floor, MathFloor) \ |
| 6587 V(Math, round, MathRound) \ | 6587 V(Math, round, MathRound) \ |
| 6588 V(Math, ceil, MathCeil) \ | 6588 V(Math, ceil, MathCeil) \ |
| 6589 V(Math, abs, MathAbs) \ | 6589 V(Math, abs, MathAbs) \ |
| 6590 V(Math, log, MathLog) \ | 6590 V(Math, log, MathLog) \ |
| 6591 V(Math, log1p, MathLog1p) \ | 6591 V(Math, log1p, MathLog1p) \ |
| 6592 V(Math, log2, MathLog2) \ | 6592 V(Math, log2, MathLog2) \ |
| 6593 V(Math, log10, MathLog10) \ | 6593 V(Math, log10, MathLog10) \ |
| 6594 V(Math, cbrt, MathCbrt) \ |
| 6594 V(Math, exp, MathExp) \ | 6595 V(Math, exp, MathExp) \ |
| 6596 V(Math, expm1, MathExpm1) \ |
| 6595 V(Math, sqrt, MathSqrt) \ | 6597 V(Math, sqrt, MathSqrt) \ |
| 6596 V(Math, pow, MathPow) \ | 6598 V(Math, pow, MathPow) \ |
| 6597 V(Math, max, MathMax) \ | 6599 V(Math, max, MathMax) \ |
| 6598 V(Math, min, MathMin) \ | 6600 V(Math, min, MathMin) \ |
| 6599 V(Math, cos, MathCos) \ | 6601 V(Math, cos, MathCos) \ |
| 6600 V(Math, sin, MathSin) \ | 6602 V(Math, sin, MathSin) \ |
| 6601 V(Math, tan, MathTan) \ | 6603 V(Math, tan, MathTan) \ |
| 6602 V(Math, acos, MathAcos) \ | 6604 V(Math, acos, MathAcos) \ |
| 6603 V(Math, asin, MathAsin) \ | 6605 V(Math, asin, MathAsin) \ |
| 6604 V(Math, atan, MathAtan) \ | 6606 V(Math, atan, MathAtan) \ |
| 6605 V(Math, atan2, MathAtan2) \ | 6607 V(Math, atan2, MathAtan2) \ |
| 6608 V(Math, atanh, MathAtanh) \ |
| 6606 V(Math, imul, MathImul) \ | 6609 V(Math, imul, MathImul) \ |
| 6607 V(Math, clz32, MathClz32) \ | 6610 V(Math, clz32, MathClz32) \ |
| 6608 V(Math, fround, MathFround) \ | 6611 V(Math, fround, MathFround) \ |
| 6609 V(Math, trunc, MathTrunc) | 6612 V(Math, trunc, MathTrunc) |
| 6610 | 6613 |
| 6611 #define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \ | 6614 #define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \ |
| 6612 V(Atomics, load, AtomicsLoad) \ | 6615 V(Atomics, load, AtomicsLoad) \ |
| 6613 V(Atomics, store, AtomicsStore) | 6616 V(Atomics, store, AtomicsStore) |
| 6614 | 6617 |
| 6615 enum BuiltinFunctionId { | 6618 enum BuiltinFunctionId { |
| (...skipping 4187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10803 } | 10806 } |
| 10804 return value; | 10807 return value; |
| 10805 } | 10808 } |
| 10806 }; | 10809 }; |
| 10807 | 10810 |
| 10808 | 10811 |
| 10809 } // NOLINT, false-positive due to second-order macros. | 10812 } // NOLINT, false-positive due to second-order macros. |
| 10810 } // NOLINT, false-positive due to second-order macros. | 10813 } // NOLINT, false-positive due to second-order macros. |
| 10811 | 10814 |
| 10812 #endif // V8_OBJECTS_H_ | 10815 #endif // V8_OBJECTS_H_ |
| OLD | NEW |