// Testing runtime execution of select + comparison operations. // Normally they are folded into shorter/faster sequence than select alone.
const floatOps = {
lt(a, b) { return a < b ? 0 : 1; },
le(a, b) { return a <= b ? 0 : 1; },
gt(a, b) { return a > b ? 0 : 1; },
ge(a, b) { return a >= b ? 0 : 1; },
eq(a, b) { return a === b ? 0 : 1; },
ne(a, b) { return a !== b ? 0 : 1; },
}
for (let ty of ['f32', 'f64']) { for (let op of ['lt', 'le', 'gt', 'ge', 'eq', 'ne']) { const module = new WebAssembly.Module(wasmTextToBinary(`(module
(memory (export "memory") 1 1)
(func (export "test") (result i32)
i32.const 128
i32.load8_u
i32.const 129
i32.load8_u
i32.const 0
${ty}.load
i32.const ${ty == 'f32' ? 4 : 8}
${ty}.load
${ty}.${op}
select
)
(data (i32.const 128) "\\00\\01"))`)); const instance = new WebAssembly.Instance(module); const arr = new (ty == 'f32' ? Float32Array : Float64Array)(instance.exports.memory.buffer); for (let [a, b] of cross(
[0, 1, -1e100, Infinity, -Infinity, 1e100, -1e-10, 1/-Infinity, NaN]
)) {
arr[0] = a; arr[1] = b;
assertEq(instance.exports.test(), floatOps[op](arr[0], arr[1]))
}
}
}
const intOps = {
lt(a, b) { return a < b ? 0 : 1; },
le(a, b) { return a <= b ? 0 : 1; },
gt(a, b) { return a > b ? 0 : 1; },
ge(a, b) { return a >= b ? 0 : 1; },
eq(a, b) { return a === b ? 0 : 1; },
ne(a, b) { return a !== b ? 0 : 1; },
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.