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 RET extends Instruction { 33 private int index; 34 35 public void setPeer (org.apache.bcel.generic.Instruction i, ConstantPool cp) { 36 index = ((org.apache.bcel.generic.RET) i).getIndex(); 37 } 38 39 public Instruction execute (SystemState ss, KernelState ks, ThreadInfo th) { 40 return th.getMethod().getInstructionAt(th.getLocalVariable(index)); 41 } 42 43 public int getByteCode () { 44 return 0xA9; } 46 } 47 | Popular Tags |