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.ElementInfo;
00008 import gov.nasa.arc.ase.util.Debug;
00009
00010
00011
00012
00013 public class SALOAD extends Instruction {
00014 public Instruction execute(SystemState ss, KernelState ks, ThreadInfo th) {
00015 int index = th.pop();
00016 int arrayRef = th.pop();
00017
00018 ElementInfo e = ks.da.get(arrayRef);
00019
00020 th.push(e.getField(index), false);
00021
00022
00023
00024
00025
00026
00027 return th.getPC().getNext();
00028 }
00029 public void setPeer(de.fub.bytecode.generic.Instruction i, ConstantPool cp) {
00030 }
00031 }