1 package gov.nasa.jpf.jvm.bytecode; 20 21 import gov.nasa.jpf.jvm.KernelState; 22 import gov.nasa.jpf.jvm.SystemState; 23 import gov.nasa.jpf.jvm.ThreadInfo; 24 25 import org.apache.bcel.classfile.ConstantPool; 26 27 28 32 public class JSR_W extends Instruction { 33 private int target; 34 35 public void setPeer (org.apache.bcel.generic.Instruction i, ConstantPool cp) { 36 target = ((org.apache.bcel.generic.JSR_W) i).getTarget().getPosition(); 37 } 38 39 public Instruction execute (SystemState ss, KernelState ks, ThreadInfo th) { 40 th.push(getNext(th).getPosition(), false); 41 42 return th.getMethod().getInstructionAt(target); 43 } 44 45 public int getByteCode () { 46 return 0xC9; 47 } 48 } 49 | Popular Tags |