Harmony: implement Math.sign.
R=dslomov@chromium.org BUG=v8:2938 Review URL: https://codereview.chromium.org/28723002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17279 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
306e8abb66
commit
575438518c
@ -2067,6 +2067,11 @@ bool Genesis::InstallExperimentalNatives() {
|
||||
"native harmony-array.js") == 0) {
|
||||
if (!CompileExperimentalBuiltin(isolate(), i)) return false;
|
||||
}
|
||||
if (FLAG_harmony_maths &&
|
||||
strcmp(ExperimentalNatives::GetScriptName(i).start(),
|
||||
"native harmony-math.js") == 0) {
|
||||
if (!CompileExperimentalBuiltin(isolate(), i)) return false;
|
||||
}
|
||||
}
|
||||
|
||||
InstallExperimentalNativeFunctions();
|
||||
|
@ -182,6 +182,7 @@ DEFINE_bool(harmony_numeric_literals, false,
|
||||
"enable harmony numeric literals (0o77, 0b11)")
|
||||
DEFINE_bool(harmony_strings, false, "enable harmony string")
|
||||
DEFINE_bool(harmony_arrays, false, "enable harmony arrays")
|
||||
DEFINE_bool(harmony_maths, false, "enable harmony math functions")
|
||||
DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")
|
||||
DEFINE_implication(harmony, harmony_scoping)
|
||||
DEFINE_implication(harmony, harmony_modules)
|
||||
@ -194,6 +195,7 @@ DEFINE_implication(harmony, harmony_iteration)
|
||||
DEFINE_implication(harmony, harmony_numeric_literals)
|
||||
DEFINE_implication(harmony, harmony_strings)
|
||||
DEFINE_implication(harmony, harmony_arrays)
|
||||
DEFINE_implication(harmony, harmony_maths)
|
||||
DEFINE_implication(harmony_modules, harmony_scoping)
|
||||
DEFINE_implication(harmony_observation, harmony_collections)
|
||||
|
||||
|
49
src/harmony-math.js
Normal file
49
src/harmony-math.js
Normal file
@ -0,0 +1,49 @@
|
||||
// Copyright 2013 the V8 project authors. All rights reserved.
|
||||
// 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.
|
||||
|
||||
'use strict';
|
||||
|
||||
// ES6 draft 09-27-13, section 20.2.2.28.
|
||||
function MathSign(x) {
|
||||
if (!IS_NUMBER(x)) x = NonNumberToNumber(x);
|
||||
if (x > 0) return 1;
|
||||
if (x < 0) return -1;
|
||||
if (x === 0) return x;
|
||||
return NAN;
|
||||
}
|
||||
|
||||
|
||||
function ExtendMath() {
|
||||
%CheckIsBootstrapping();
|
||||
|
||||
// Set up the non-enumerable functions on the Math object.
|
||||
InstallFunctions($Math, DONT_ENUM, $Array(
|
||||
"sign", MathSign
|
||||
));
|
||||
}
|
||||
|
||||
ExtendMath();
|
48
test/mjsunit/harmony/math-sign.js
Normal file
48
test/mjsunit/harmony/math-sign.js
Normal file
@ -0,0 +1,48 @@
|
||||
// Copyright 2013 the V8 project authors. All rights reserved.
|
||||
// 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.
|
||||
|
||||
// Flags: --harmony-maths
|
||||
|
||||
assertEquals("Infinity", String(1/Math.sign(0)));
|
||||
assertEquals("-Infinity", String(1/Math.sign(-0)));
|
||||
assertEquals(1, Math.sign(100));
|
||||
assertEquals(-1, Math.sign(-199));
|
||||
assertEquals(1, Math.sign(100.1));
|
||||
assertTrue(isNaN(Math.sign("abc")));
|
||||
assertTrue(isNaN(Math.sign({})));
|
||||
assertEquals(0, Math.sign([]));
|
||||
assertEquals(1, Math.sign([1]));
|
||||
assertEquals(-1, Math.sign([-100.1]));
|
||||
assertTrue(isNaN(Math.sign([1, 1])));
|
||||
assertEquals(1, Math.sign({ toString: function() { return "100"; } }));
|
||||
assertEquals(1, Math.sign({ toString: function() { return 100; } }));
|
||||
assertEquals(-1, Math.sign({ valueOf: function() { return -1.1; } }));
|
||||
assertEquals(-1, Math.sign({ valueOf: function() { return "-1.1"; } }));
|
||||
assertEquals(-1, Math.sign(-Infinity));
|
||||
assertEquals(1, Math.sign(Infinity));
|
||||
assertEquals(-1, Math.sign("-Infinity"));
|
||||
assertEquals(1, Math.sign("Infinity"));
|
@ -936,6 +936,7 @@
|
||||
'../../src/array-iterator.js',
|
||||
'../../src/harmony-string.js',
|
||||
'../../src/harmony-array.js',
|
||||
'../../src/harmony-math.js'
|
||||
],
|
||||
},
|
||||
'actions': [
|
||||
|
Loading…
Reference in New Issue
Block a user