| Server IP : 217.160.0.212 / Your IP : 216.73.217.138 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/node_modules/webassemblyjs/esm/interpreter/kernel/instruction/ |
Upload File : |
import * as i32 from "../../runtime/values/i32";
import * as i64 from "../../runtime/values/i64";
import * as f32 from "../../runtime/values/f32";
import * as f64 from "../../runtime/values/f64"; // https://webassembly.github.io/spec/core/exec/instructions.html#exec-binop
function unop(_ref, operation, createValue) {
var value = _ref.value;
switch (operation) {
case "abs":
return createValue(value.abs());
case "neg":
return createValue(value.neg());
case "clz":
return createValue(value.clz());
case "ctz":
return createValue(value.ctz());
case "popcnt":
return createValue(value.popcnt());
case "eqz":
return i32.createValue(value.eqz());
case "reinterpret/f32":
return i32.createValue(value.reinterpret());
case "reinterpret/f64":
return i64.createValue(value.reinterpret());
}
throw new Error("Unsupported unop: " + operation);
}
export function unopi32(c, operation) {
return unop(c, operation, i32.createValue);
}
export function unopi64(c, operation) {
return unop(c, operation, i64.createValue);
}
export function unopf32(c, operation) {
return unop(c, operation, f32.createValue);
}
export function unopf64(c, operation) {
return unop(c, operation, f64.createValue);
}