2012-01-03 10:45:28 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2008-07-03 15:10:15 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2013-04-11 12:15:25 +00:00
|
|
|
// This file relies on the fact that the following declarations have been made
|
|
|
|
// in runtime.js:
|
|
|
|
// var $Object = global.Object;
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Keep reference to original values of some global properties. This
|
|
|
|
// has the added benefit that the code in this file is isolated from
|
|
|
|
// changes to these properties.
|
2012-02-20 13:48:24 +00:00
|
|
|
var $floor = MathFloor;
|
|
|
|
var $abs = MathAbs;
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Instance class name can only be set on functions. That is the only
|
|
|
|
// purpose for MathConstructor.
|
2008-10-03 07:14:31 +00:00
|
|
|
function MathConstructor() {}
|
2012-02-20 13:48:24 +00:00
|
|
|
var $Math = new MathConstructor();
|
2013-04-11 12:15:25 +00:00
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.1
|
|
|
|
function MathAbs(x) {
|
2009-06-15 08:04:47 +00:00
|
|
|
if (%_IsSmi(x)) return x >= 0 ? x : -x;
|
2013-10-21 11:15:11 +00:00
|
|
|
x = TO_NUMBER_INLINE(x);
|
2010-03-11 08:31:15 +00:00
|
|
|
if (x === 0) return 0; // To handle -0.
|
|
|
|
return x > 0 ? x : -x;
|
2008-08-06 10:02:49 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.2
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathAcos(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %Math_acos(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.3
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathAsin(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %Math_asin(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.4
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathAtan(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %Math_atan(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.5
|
2009-07-07 08:55:55 +00:00
|
|
|
// The naming of y and x matches the spec, as does the order in which
|
|
|
|
// ToNumber (valueOf) is called.
|
|
|
|
function MathAtan2(y, x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %Math_atan2(TO_NUMBER_INLINE(y), TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.6
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathCeil(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %Math_ceil(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.7
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathCos(x) {
|
2013-11-08 13:10:39 +00:00
|
|
|
return MathCosImpl(x);
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.8
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathExp(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %Math_exp(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.9
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathFloor(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
x = TO_NUMBER_INLINE(x);
|
2009-07-03 10:09:59 +00:00
|
|
|
// It's more common to call this with a positive number that's out
|
|
|
|
// of range than negative numbers; check the upper bound first.
|
2009-12-21 15:04:00 +00:00
|
|
|
if (x < 0x80000000 && x > 0) {
|
2009-06-15 08:27:38 +00:00
|
|
|
// Numbers in the range [0, 2^31) can be floored by converting
|
2009-06-15 08:04:47 +00:00
|
|
|
// them to an unsigned 32-bit value using the shift operator.
|
|
|
|
// We avoid doing so for -0, because the result of Math.floor(-0)
|
|
|
|
// has to be -0, which wouldn't be the case with the shift.
|
2010-01-06 14:40:21 +00:00
|
|
|
return TO_UINT32(x);
|
2009-06-15 08:04:47 +00:00
|
|
|
} else {
|
|
|
|
return %Math_floor(x);
|
|
|
|
}
|
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.10
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathLog(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %_MathLog(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.11
|
|
|
|
function MathMax(arg1, arg2) { // length == 2
|
2009-07-07 08:55:55 +00:00
|
|
|
var length = %_ArgumentsLength();
|
2012-01-03 10:45:28 +00:00
|
|
|
if (length == 2) {
|
2013-10-21 11:15:11 +00:00
|
|
|
arg1 = TO_NUMBER_INLINE(arg1);
|
|
|
|
arg2 = TO_NUMBER_INLINE(arg2);
|
2012-01-03 10:45:28 +00:00
|
|
|
if (arg2 > arg1) return arg2;
|
|
|
|
if (arg1 > arg2) return arg1;
|
|
|
|
if (arg1 == arg2) {
|
|
|
|
// Make sure -0 is considered less than +0. -0 is never a Smi, +0 can be
|
|
|
|
// a Smi or a heap number.
|
|
|
|
return (arg1 == 0 && !%_IsSmi(arg1) && 1 / arg1 < 0) ? arg2 : arg1;
|
|
|
|
}
|
|
|
|
// All comparisons failed, one of the arguments must be NaN.
|
2013-10-17 10:02:45 +00:00
|
|
|
return NAN;
|
2012-01-03 10:45:28 +00:00
|
|
|
}
|
2013-10-17 10:02:45 +00:00
|
|
|
var r = -INFINITY;
|
2012-12-06 13:13:38 +00:00
|
|
|
for (var i = 0; i < length; i++) {
|
2009-12-07 08:38:20 +00:00
|
|
|
var n = %_Arguments(i);
|
2011-01-05 13:52:00 +00:00
|
|
|
if (!IS_NUMBER(n)) n = NonNumberToNumber(n);
|
2009-12-08 10:18:28 +00:00
|
|
|
// Make sure +0 is considered greater than -0. -0 is never a Smi, +0 can be
|
|
|
|
// a Smi or heap number.
|
2012-12-06 13:13:38 +00:00
|
|
|
if (NUMBER_IS_NAN(n) || n > r ||
|
|
|
|
(r == 0 && n == 0 && !%_IsSmi(r) && 1 / r < 0)) {
|
|
|
|
r = n;
|
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.12
|
|
|
|
function MathMin(arg1, arg2) { // length == 2
|
2009-07-07 08:55:55 +00:00
|
|
|
var length = %_ArgumentsLength();
|
2012-01-03 10:45:28 +00:00
|
|
|
if (length == 2) {
|
2013-10-21 11:15:11 +00:00
|
|
|
arg1 = TO_NUMBER_INLINE(arg1);
|
|
|
|
arg2 = TO_NUMBER_INLINE(arg2);
|
2012-01-03 10:45:28 +00:00
|
|
|
if (arg2 > arg1) return arg1;
|
|
|
|
if (arg1 > arg2) return arg2;
|
|
|
|
if (arg1 == arg2) {
|
|
|
|
// Make sure -0 is considered less than +0. -0 is never a Smi, +0 can be
|
|
|
|
// a Smi or a heap number.
|
|
|
|
return (arg1 == 0 && !%_IsSmi(arg1) && 1 / arg1 < 0) ? arg1 : arg2;
|
|
|
|
}
|
|
|
|
// All comparisons failed, one of the arguments must be NaN.
|
2013-10-17 10:02:45 +00:00
|
|
|
return NAN;
|
2012-01-03 10:45:28 +00:00
|
|
|
}
|
2013-10-17 10:02:45 +00:00
|
|
|
var r = INFINITY;
|
2012-12-06 13:13:38 +00:00
|
|
|
for (var i = 0; i < length; i++) {
|
2009-12-07 08:38:20 +00:00
|
|
|
var n = %_Arguments(i);
|
2011-01-05 13:52:00 +00:00
|
|
|
if (!IS_NUMBER(n)) n = NonNumberToNumber(n);
|
2012-01-03 10:45:28 +00:00
|
|
|
// Make sure -0 is considered less than +0. -0 is never a Smi, +0 can be a
|
2009-12-08 10:18:28 +00:00
|
|
|
// Smi or a heap number.
|
2012-12-06 13:13:38 +00:00
|
|
|
if (NUMBER_IS_NAN(n) || n < r ||
|
|
|
|
(r == 0 && n == 0 && !%_IsSmi(n) && 1 / n < 0)) {
|
|
|
|
r = n;
|
|
|
|
}
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA 262 - 15.8.2.13
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathPow(x, y) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %_MathPow(TO_NUMBER_INLINE(x), TO_NUMBER_INLINE(y));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-10-03 07:14:31 +00:00
|
|
|
|
|
|
|
// ECMA 262 - 15.8.2.14
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathRandom() {
|
2010-04-07 08:18:51 +00:00
|
|
|
return %_RandomHeapNumber();
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-10-03 07:14:31 +00:00
|
|
|
|
|
|
|
// ECMA 262 - 15.8.2.15
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathRound(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %RoundNumber(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-10-03 07:14:31 +00:00
|
|
|
|
|
|
|
// ECMA 262 - 15.8.2.16
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathSin(x) {
|
2013-11-08 13:10:39 +00:00
|
|
|
return MathSinImpl(x);
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-10-03 07:14:31 +00:00
|
|
|
|
|
|
|
// ECMA 262 - 15.8.2.17
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathSqrt(x) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %_MathSqrt(TO_NUMBER_INLINE(x));
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-10-03 07:14:31 +00:00
|
|
|
|
|
|
|
// ECMA 262 - 15.8.2.18
|
2009-06-15 08:04:47 +00:00
|
|
|
function MathTan(x) {
|
2013-11-08 13:10:39 +00:00
|
|
|
return MathSinImpl(x) / MathCosImpl(x);
|
2009-06-15 08:04:47 +00:00
|
|
|
}
|
2008-10-03 07:14:31 +00:00
|
|
|
|
2013-04-26 08:52:35 +00:00
|
|
|
// Non-standard extension.
|
|
|
|
function MathImul(x, y) {
|
2013-10-21 11:15:11 +00:00
|
|
|
return %NumberImul(TO_NUMBER_INLINE(x), TO_NUMBER_INLINE(y));
|
2013-04-26 08:52:35 +00:00
|
|
|
}
|
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
|
2013-11-08 13:10:39 +00:00
|
|
|
var MathSinImpl = function(x) {
|
|
|
|
InitTrigonometricFunctions();
|
|
|
|
return MathSinImpl(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var MathCosImpl = function(x) {
|
|
|
|
InitTrigonometricFunctions();
|
|
|
|
return MathCosImpl(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function InitTrigonometricFunctions() {
|
|
|
|
var samples = 2048; // Table size.
|
|
|
|
var pi = 3.1415926535897932;
|
|
|
|
var pi_half = pi / 2;
|
|
|
|
var inverse_pi_half = 1 / pi_half;
|
|
|
|
var two_pi = pi * 2;
|
|
|
|
var interval = pi_half / samples;
|
|
|
|
var inverse_interval = samples / pi_half;
|
|
|
|
var table_sin = new global.Float64Array(samples + 2);
|
|
|
|
var table_cos_interval = new global.Float64Array(samples + 2);
|
|
|
|
|
|
|
|
%PopulateTrigonometricTable(table_sin, table_cos_interval, samples);
|
|
|
|
|
|
|
|
// This implements the following algorithm.
|
|
|
|
// 1) Multiplication takes care of to-number conversion.
|
|
|
|
// 2) Reduce x to the first quadrant [0, pi/2].
|
|
|
|
// Conveniently enough, in case of +/-Infinity, we get NaN.
|
|
|
|
// 3) Replace x by (pi/2-x) if x was in the 2nd or 4th quadrant.
|
|
|
|
// 4) Do a table lookup for the closest samples to the left and right of x.
|
|
|
|
// 5) Find the derivatives at those sampling points by table lookup:
|
|
|
|
// dsin(x)/dx = cos(x) = sin(pi/2-x) for x in [0, pi/2].
|
|
|
|
// 6) Use cubic spline interpolation to approximate sin(x).
|
|
|
|
// 7) Negate the result if x was in the 3rd or 4th quadrant.
|
|
|
|
// 8) Get rid of -0 by adding 0.
|
|
|
|
MathSinImpl = function(x) {
|
|
|
|
var multiple = %_MathFloor(x * inverse_pi_half);
|
|
|
|
x = (multiple & 1) * pi_half +
|
|
|
|
(1 - ((multiple & 1) << 1)) * (x - multiple * pi_half);
|
|
|
|
var double_index = x * inverse_interval;
|
|
|
|
var index = double_index | 0;
|
|
|
|
var t1 = double_index - index;
|
|
|
|
var t2 = 1 - t1;
|
|
|
|
var y1 = table_sin[index];
|
|
|
|
var y2 = table_sin[index + 1];
|
|
|
|
var dy = y2 - y1;
|
|
|
|
return (t2 * y1 + t1 * y2 +
|
|
|
|
t1 * t2 * ((table_cos_interval[index] - dy) * t2 +
|
|
|
|
(dy - table_cos_interval[index + 1]) * t1)) *
|
|
|
|
(1 - (multiple & 2)) + 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
MathCosImpl = function(x) {
|
|
|
|
return MathSinImpl(x + pi_half);
|
|
|
|
};
|
|
|
|
|
|
|
|
%SetInlineBuiltinFlag(MathSinImpl);
|
|
|
|
%SetInlineBuiltinFlag(MathCosImpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-03 07:14:31 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
|
2011-09-05 07:30:35 +00:00
|
|
|
function SetUpMath() {
|
|
|
|
%CheckIsBootstrapping();
|
2013-04-11 12:15:25 +00:00
|
|
|
|
|
|
|
%SetPrototype($Math, $Object.prototype);
|
|
|
|
%SetProperty(global, "Math", $Math, DONT_ENUM);
|
|
|
|
%FunctionSetInstanceClassName(MathConstructor, 'Math');
|
|
|
|
|
2011-09-05 07:30:35 +00:00
|
|
|
// Set up math constants.
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA-262, section 15.8.1.1.
|
2009-08-13 14:04:49 +00:00
|
|
|
%OptimizeObjectForAddingMultipleProperties($Math, 8);
|
2008-10-03 12:14:29 +00:00
|
|
|
%SetProperty($Math,
|
|
|
|
"E",
|
|
|
|
2.7182818284590452354,
|
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA-262, section 15.8.1.2.
|
2008-10-03 12:14:29 +00:00
|
|
|
%SetProperty($Math,
|
|
|
|
"LN10",
|
|
|
|
2.302585092994046,
|
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA-262, section 15.8.1.3.
|
2008-10-03 12:14:29 +00:00
|
|
|
%SetProperty($Math,
|
|
|
|
"LN2",
|
|
|
|
0.6931471805599453,
|
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
2008-10-03 07:14:31 +00:00
|
|
|
// ECMA-262, section 15.8.1.4.
|
2008-10-03 12:14:29 +00:00
|
|
|
%SetProperty($Math,
|
|
|
|
"LOG2E",
|
|
|
|
1.4426950408889634,
|
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
|
|
|
%SetProperty($Math,
|
|
|
|
"LOG10E",
|
2011-02-11 14:23:47 +00:00
|
|
|
0.4342944819032518,
|
2008-10-03 12:14:29 +00:00
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
|
|
|
%SetProperty($Math,
|
|
|
|
"PI",
|
|
|
|
3.1415926535897932,
|
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
|
|
|
%SetProperty($Math,
|
|
|
|
"SQRT1_2",
|
|
|
|
0.7071067811865476,
|
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
|
|
|
%SetProperty($Math,
|
|
|
|
"SQRT2",
|
|
|
|
1.4142135623730951,
|
|
|
|
DONT_ENUM | DONT_DELETE | READ_ONLY);
|
2010-02-17 11:26:00 +00:00
|
|
|
%ToFastProperties($Math);
|
2008-10-03 07:14:31 +00:00
|
|
|
|
2011-09-05 07:30:35 +00:00
|
|
|
// Set up non-enumerable functions of the Math object and
|
2009-05-04 19:35:46 +00:00
|
|
|
// set their names.
|
2011-11-15 09:44:57 +00:00
|
|
|
InstallFunctions($Math, DONT_ENUM, $Array(
|
2008-10-03 07:14:31 +00:00
|
|
|
"random", MathRandom,
|
|
|
|
"abs", MathAbs,
|
|
|
|
"acos", MathAcos,
|
|
|
|
"asin", MathAsin,
|
|
|
|
"atan", MathAtan,
|
|
|
|
"ceil", MathCeil,
|
|
|
|
"cos", MathCos,
|
|
|
|
"exp", MathExp,
|
|
|
|
"floor", MathFloor,
|
|
|
|
"log", MathLog,
|
|
|
|
"round", MathRound,
|
|
|
|
"sin", MathSin,
|
|
|
|
"sqrt", MathSqrt,
|
|
|
|
"tan", MathTan,
|
|
|
|
"atan2", MathAtan2,
|
|
|
|
"pow", MathPow,
|
|
|
|
"max", MathMax,
|
2013-04-26 08:52:35 +00:00
|
|
|
"min", MathMin,
|
|
|
|
"imul", MathImul
|
2008-10-03 07:14:31 +00:00
|
|
|
));
|
2013-11-08 13:10:39 +00:00
|
|
|
|
|
|
|
%SetInlineBuiltinFlag(MathSin);
|
|
|
|
%SetInlineBuiltinFlag(MathCos);
|
|
|
|
%SetInlineBuiltinFlag(MathTan);
|
2011-09-05 07:30:35 +00:00
|
|
|
}
|
2008-10-03 07:14:31 +00:00
|
|
|
|
2011-09-05 07:30:35 +00:00
|
|
|
SetUpMath();
|