com.github.anilople.javajvm.instructions.reserved.IMPDEP2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javajvm Show documentation
Show all versions of javajvm Show documentation
Use Java to Implement JVM
The newest version!
package com.github.anilople.javajvm.instructions.reserved;
import com.github.anilople.javajvm.instructions.BytecodeReader;
import com.github.anilople.javajvm.instructions.Instruction;
import com.github.anilople.javajvm.runtimedataarea.Frame;
public class IMPDEP2 implements Instruction {
@Override
public void fetchOperands(BytecodeReader bytecodeReader) {
}
@Override
public void execute(Frame frame) {
throw new RuntimeException("Now cannot support " + this.getClass());
// int nextPc = frame.getNextPc() + this.size();
// frame.setNextPc(nextPc);
}
@Override
public int size() {
return 1;
}
}