00001 package gov.nasa.arc.ase.jpf.jvm.bytecode;
00002
00003 import gov.nasa.arc.ase.util.Debug;
00004 import gov.nasa.arc.ase.jpf.jvm.ElementInfo;
00005 import gov.nasa.arc.ase.jpf.jvm.SystemState;
00006 import gov.nasa.arc.ase.jpf.jvm.KernelState;
00007 import gov.nasa.arc.ase.jpf.jvm.ThreadInfo;
00008 import de.fub.bytecode.classfile.ConstantPool;
00009
00010
00011
00012
00013 public class AALOAD extends Instruction {
00014 public Instruction execute(SystemState ss, KernelState ks, ThreadInfo th) {
00015
00016 int index = th.pop();
00017 int arrayRef = th.pop();
00018
00019 if(arrayRef == -1)
00020 return th.createAndThrowException("java.lang.NullPointerException");
00021
00022 ElementInfo e = ks.da.get(arrayRef);
00023
00024 if(e.outOfBounds(index))
00025 return th.createAndThrowException("java.lang.ArrayIndexOutOfBoundsException");
00026
00027 th.push(e.getField(index), true);
00028
00029
00030
00031
00032
00033
00034 return th.getPC().getNext();
00035 }
00036 public void setPeer(de.fub.bytecode.generic.Instruction i, ConstantPool cp) {
00037 }
00038 }