mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 15:44:52 +00:00

* Pick up the branch head for V8 5.0 stable [1]
* Edit v8 gitignore to allow trace_event copy
* Update V8 DEP trace_event as per deps/v8/DEPS [2]
[1] https://chromium.googlesource.com/v8/v8.git/+/3c67831
[2] 4b09207e44
Ref: https://github.com/nodejs/node/pull/5945
PR-URL: https://github.com/nodejs/node/pull/6111
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: indutny - Fedor Indutny <fedor.indutny@gmail.com>
67 lines
1.2 KiB
JavaScript
67 lines
1.2 KiB
JavaScript
// Copyright 2016 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
|
|
|
|
var a = new Float64Array(4);
|
|
a[2] *= -1;
|
|
a[3] *= -1;
|
|
assertEquals(0, a[0]);
|
|
assertEquals(0, a[1]);
|
|
assertEquals(-0, a[2]);
|
|
assertEquals(-0, a[3]);
|
|
|
|
function f1() {
|
|
var z = a[0];
|
|
// Same register.
|
|
assertEquals(0, Math.min(z, z));
|
|
}
|
|
|
|
function f2() {
|
|
// Different registers.
|
|
assertEquals(0, Math.min(a[0], a[1]));
|
|
}
|
|
|
|
function f3() {
|
|
// Zero and minus zero.
|
|
assertEquals(-0, Math.min(a[1], a[2]));
|
|
}
|
|
|
|
function f4() {
|
|
// Zero and minus zero, reversed order.
|
|
assertEquals(-0, Math.min(a[2], a[1]));
|
|
}
|
|
|
|
function f5() {
|
|
// Minus zero, same register.
|
|
var m_z = a[2];
|
|
assertEquals(-0, Math.min(m_z, m_z));
|
|
}
|
|
|
|
function f6() {
|
|
// Minus zero, different registers.
|
|
assertEquals(-0, Math.min(a[2], a[3]));
|
|
}
|
|
|
|
for (var i = 0; i < 3; i++) {
|
|
f1();
|
|
f2();
|
|
f3();
|
|
f4();
|
|
f5();
|
|
f6();
|
|
}
|
|
%OptimizeFunctionOnNextCall(f1);
|
|
%OptimizeFunctionOnNextCall(f2);
|
|
%OptimizeFunctionOnNextCall(f3);
|
|
%OptimizeFunctionOnNextCall(f4);
|
|
%OptimizeFunctionOnNextCall(f5);
|
|
%OptimizeFunctionOnNextCall(f6);
|
|
f1();
|
|
f2();
|
|
f3();
|
|
f4();
|
|
f5();
|
|
f6();
|