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 BIPUSH extends Instruction { 33 private int value; 34 35 public void setPeer (org.apache.bcel.generic.Instruction i, ConstantPool cp) { 36 value = ((org.apache.bcel.generic.BIPUSH) i).getValue().byteValue(); 37 } 38 39 public Instruction execute (SystemState ss, KernelState ks, ThreadInfo th) { 40 th.push(value, false); 41 42 return getNext(th); 43 } 44 45 46 public int getByteCode () { 47 return 0x10; 48 } 49 } 50 | Popular Tags |