示例#1
0
        WasmNodeResult IWasmOpcodeVisitor <WasmNodeArg, WasmNodeResult> .Visit(F64CopySignOpcode opcode, WasmNodeArg arg)
        {
            var right = arg.Pop();
            var left  = arg.Pop();

            arg.Push(new F64CopySignNode(left, right));
            return(null);
        }
示例#2
0
        public WasmOpcodeExecutor Visit(F64CopySignOpcode opcode, WasmFunctionState state)
        {
            var right = state.PopF64();
            var left  = state.PopF64();

            state.PushF64(right >= 0 ? Math.Abs(left) : -Math.Abs(left));
            return(this);
        }