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