test262/test/built-ins/Simd/any_true.js

30 lines
819 B
JavaScript
Raw Normal View History

// Copyright (C) 2016 ecmascript_simd authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: simd-any-true
description: AllTrue returns true if all the SIMDElements are true.
includes: [simdUtilities.js]
---*/
function testAnyTrue(type) {
assert.sameValue('function', typeof type.fn.anyTrue);
// All lanes 'false'.
var a = type.fn.splat(false);
assert(!type.fn.anyTrue(a));
// One lane 'true'.
for (var i = 0; i < type.lanes; i++) {
a = type.fn.replaceLane(a, i, true);
assert(type.fn.anyTrue(a));
}
// All lanes 'true'.
a = type.fn.splat(true);
assert(type.fn.anyTrue(a));
}
simdTypes.filter(isBoolType).forEach(function(type) {
testSimdFunction(type.name + ' anyTrue', function() {
testAnyTrue(type, 'anyTrue');
});
});