コード例 #1
0
 WasmNodeResult IWasmOpcodeVisitor <WasmNodeArg, WasmNodeResult> .Visit(I64ConstOpcode opcode, WasmNodeArg arg)
 {
     arg.Push(new I64ConstNode(opcode.Value));
     return(null);
 }
コード例 #2
0
 public WasmOpcodeExecutor Visit(I64ConstOpcode opcode, WasmFunctionState state)
 {
     state.PushSI64(opcode.Value);
     return(this);
 }
コード例 #3
0
 WasmMSILResult IWasmOpcodeVisitor <WasmMSILArg, WasmMSILResult> .Visit(I64ConstOpcode opcode, WasmMSILArg arg)
 {
     arg.IL.Emit(OpCodes.Ldc_I8, opcode.Value);
     return(null);
 }