Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

DCONST.java

00001 package gov.nasa.arc.ase.jpf.jvm.bytecode;
00002 
00003 import de.fub.bytecode.classfile.ConstantPool;
00004 import gov.nasa.arc.ase.jpf.jvm.SystemState;
00005 import gov.nasa.arc.ase.jpf.jvm.KernelState;
00006 import gov.nasa.arc.ase.jpf.jvm.ThreadInfo;
00007 import gov.nasa.arc.ase.jpf.jvm.Types;
00008 import gov.nasa.arc.ase.util.Debug;
00009 
00010 public class DCONST extends Instruction {
00011   private long value;
00012   
00013   public Instruction execute(SystemState ss, KernelState ks, ThreadInfo th) {
00014     th.longPush(value);
00015 
00016     return th.getPC().getNext();
00017   }  
00018   public void setPeer(de.fub.bytecode.generic.Instruction i, ConstantPool cp) {
00019     value = Types.doubleToLong(((de.fub.bytecode.generic.DCONST)i).getValue().doubleValue());
00020   }  
00021 }

Generated at Thu Feb 7 06:43:20 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001