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 D2F extends Instruction { 34 public void setPeer (org.apache.bcel.generic.Instruction i, ConstantPool cp) { 35 } 36 37 public Instruction execute (SystemState ss, KernelState ks, ThreadInfo th) { 38 th.push(Types.floatToInt((float) Types.longToDouble(th.longPop())), false); 39 40 return getNext(th); 41 } 42 43 44 public int getByteCode () { 45 return 0x90; 46 } 47 } 48 | Popular Tags |