feat: 支持 double64 转 byte8、short16

This commit is contained in:
zhangxun 2025-06-28 21:00:09 +08:00 committed by Luke
parent 9e2eb6731f
commit 4595583ca4
2 changed files with 96 additions and 0 deletions

View File

@ -0,0 +1,48 @@
package org.jcnc.snow.vm.commands.type.conversion;
import org.jcnc.snow.vm.interfaces.Command;
import org.jcnc.snow.vm.module.CallStack;
import org.jcnc.snow.vm.module.LocalVariableStore;
import org.jcnc.snow.vm.module.OperandStack;
/**
* D2BCommand Opcode: Represents the type conversion operation from double64 to byte8 in the virtual machine.
* <p>This opcode is implemented by the {@link D2BCommand} class, which defines its specific execution logic.</p>
*
* <p>Execution Steps:</p>
* <ol>
* <li>Pop the top double64 value from the operand stack.</li>
* <li>Convert the double64 value to a byte8 value (this may involve truncation).</li>
* <li>Push the converted byte8 value back onto the operand stack for subsequent operations.</li>
* </ol>
*
* <p>This opcode is used to narrow a double64 value to a byte8 type for further integer-based operations.</p>
*/
public class D2BCommand implements Command {
/**
* Default constructor for creating an instance of D2BCommand.
*/
public D2BCommand() {
// Empty constructor
}
/**
* Executes the double64 to byte8 conversion operation.
*
* @param parts The array of instruction parameters, which is not used in this operation.
* @param currentPC The current program counter, representing the instruction address.
* @param operandStack The operand stack of the virtual machine.
* @param localVariableStore The local variable store for managing method-local variables.
* @param callStack The call stack of the virtual machine.
* @return The updated program counter after execution.
*/
@Override
public int execute(String[] parts, int currentPC, OperandStack operandStack,
LocalVariableStore localVariableStore, CallStack callStack) {
double value = (double) operandStack.pop();
byte convertedValue = (byte) value;
operandStack.push(convertedValue);
return currentPC + 1;
}
}

View File

@ -0,0 +1,48 @@
package org.jcnc.snow.vm.commands.type.conversion;
import org.jcnc.snow.vm.interfaces.Command;
import org.jcnc.snow.vm.module.CallStack;
import org.jcnc.snow.vm.module.LocalVariableStore;
import org.jcnc.snow.vm.module.OperandStack;
/**
* D2SCommand Opcode: Represents the type conversion operation from double64 to short16 in the virtual machine.
* <p>This opcode is implemented by the {@link D2SCommand} class, which defines its specific execution logic.</p>
*
* <p>Execution Steps:</p>
* <ol>
* <li>Pop the top double64 value from the operand stack.</li>
* <li>Convert the double64 value to an short16 value (this may involve truncation).</li>
* <li>Push the converted short16 value back onto the operand stack for subsequent operations.</li>
* </ol>
*
* <p>This opcode is used to narrow a double64 value to an short16 type for further integer-based operations.</p>
*/
public class D2SCommand implements Command {
/**
* Default constructor for creating an instance of D2SCommand.
*/
public D2SCommand() {
// Empty constructor
}
/**
* Executes the double64 to short16 conversion operation.
*
* @param parts The array of instruction parameters, which is not used in this operation.
* @param currentPC The current program counter, representing the instruction address.
* @param operandStack The operand stack of the virtual machine.
* @param localVariableStore The local variable store for managing method-local variables.
* @param callStack The call stack of the virtual machine.
* @return The updated program counter after execution.
*/
@Override
public int execute(String[] parts, int currentPC, OperandStack operandStack,
LocalVariableStore localVariableStore, CallStack callStack) {
double value = (double) operandStack.pop();
short convertedValue = (short) value;
operandStack.push(convertedValue);
return currentPC + 1;
}
}