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 import gov.nasa.jpf.jvm.Types; 25 26 import org.apache.bcel.classfile.ConstantPool; 27 28 29 33 public class FCONST extends Instruction { 34 private int value; 35 36 public void setPeer (org.apache.bcel.generic.Instruction i, ConstantPool cp) { 37 value = Types.floatToInt(((org.apache.bcel.generic.FCONST) i).getValue() 38 .floatValue()); 39 } 40 41 public Instruction execute (SystemState ss, KernelState ks, ThreadInfo th) { 42 th.push(value, false); 43 44 return getNext(th); 45 } 46 47 public int getByteCode () { 48 return 0x0B; } 50 } 51 | Popular Tags |