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

IDIV.java

00001 package gov.nasa.arc.ase.jpf.jvm.bytecode;
00002 
00003 import gov.nasa.arc.ase.jpf.*;
00004 import gov.nasa.arc.ase.jpf.jvm.*;
00005 import de.fub.bytecode.generic.InstructionHandle;
00006 import gov.nasa.arc.ase.util.Debug;
00007 
00008 public class IDIV extends AbstractInstruction {
00009   private de.fub.bytecode.generic.IDIV peer;
00010 
00011   public InstructionHandle execute(SystemState ss, KernelState ks, ThreadInfo th) {
00012     int v1 = th.pop();
00013     int v2 = th.pop();
00014 
00015     if (v1 == 0)
00016       return th.createAndThrowException("java.lang.ArithmeticException", ss, ks, th);
00017 
00018     th.push(v2 / v1);
00019 
00020     return th.getPC().getNext();
00021   }  
00022   public void setPeer(de.fub.bytecode.generic.Instruction i) {
00023     peer = (de.fub.bytecode.generic.IDIV)i;
00024   }  
00025 }

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