number-multiply.js 1.57 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --allow-natives-syntax --opt

// Test the extreme case where -0 is produced by rounding errors.
(function() {
  function bar(x) {
    return 1e-308 * x;
  }
  bar(1);

  function foo() {
    return Object.is(-0, bar(-1e-308));
  }

18
  %PrepareFunctionForOptimization(foo);
19 20 21 22 23 24 25 26 27 28 29 30
  assertTrue(foo());
  assertTrue(foo());
  %OptimizeFunctionOnNextCall(foo);
  assertTrue(foo());
})();

// Test that multiplication of integer by 0 produces the correct results.
(function() {
  function foo(x) {
    return 0 * Math.round(x);
  }

31
  %PrepareFunctionForOptimization(foo);
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
  assertEquals(0, foo(0.1));
  assertEquals(-0, foo(-0.1));
  assertEquals(NaN, foo(NaN));
  assertEquals(NaN, foo(Infinity));
  assertEquals(NaN, foo(-Infinity));
  %OptimizeFunctionOnNextCall(foo);
  assertEquals(0, foo(0.1));
  assertEquals(-0, foo(-0.1));
  assertEquals(NaN, foo(NaN));
  assertEquals(NaN, foo(Infinity));
  assertEquals(NaN, foo(-Infinity));
})();

// Test that multiplication properly preserves -0 and NaN, and doesn't
// cut it short incorrectly.
(function() {
  function foo(x, y) {
    x = Math.sign(x);
    y = Math.sign(y);
    return Math.min(x * y, 0);
  }

54
  %PrepareFunctionForOptimization(foo);
55 56 57 58 59 60 61 62
  assertEquals(0, foo(1, 0));
  assertEquals(-0, foo(1, -0));
  assertEquals(NaN, foo(NaN, -0));
  %OptimizeFunctionOnNextCall(foo);
  assertEquals(0, foo(1, 0));
  assertEquals(-0, foo(1, -0));
  assertEquals(NaN, foo(NaN, -0));
})();