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 ICONST 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.ICONST) i).getValue().intValue(); 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 public int getByteCode () { 46 return 0x03; } 48 } 49 | Popular Tags |