00001 package gov.nasa.arc.ase.jpf.jvm.bytecode;
00002
00003 import de.fub.bytecode.classfile.CodeException;
00004 import de.fub.bytecode.classfile.Utility;
00005 import de.fub.bytecode.generic.CodeExceptionGen;
00006 import de.fub.bytecode.generic.InstructionHandle;
00007 import gov.nasa.arc.ase.jpf.*;
00008 import gov.nasa.arc.ase.jpf.jvm.*;
00009 import gov.nasa.arc.ase.util.Debug;
00010
00011 public class ATHROW extends AbstractInstruction {
00012 private de.fub.bytecode.generic.ATHROW peer;
00013
00014 public InstructionHandle execute(SystemState ss, KernelState ks, ThreadInfo th) {
00015 int objref = th.pop();
00016
00017 ClassInfo ci = ks.dynamic_area.getClass(objref);
00018
00019 return findExceptionHandler(th, objref, ci, ks);
00020 }
00021
00022 private InstructionHandle findExceptionHandler(ThreadInfo th,
00023 int exception, ClassInfo type, KernelState ks) {
00024 JPFVM jpfvm = JPFVM.getJPFVM();
00025
00026 while (th.depth() != 0) {
00027
00028
00029 int pc = th.getPC().getPosition();
00030
00031
00032 CodeExceptionGen[] exceptions = th.getCurrentMethod().getExceptions();
00033
00034
00035 for(int idx = 0, s = exceptions.length; idx < s; idx++) {
00036
00037 CodeException ce = exceptions[idx].getCodeException(th.getCPG());
00038
00039
00040 String classname;
00041 if (ce.getCatchType() == 0)
00042
00043 classname = "java.lang.Exception";
00044 else
00045
00046 classname = Utility.replace(
00047 exceptions[idx].getCatchType().getClassName(),"/",".");
00048
00049 ClassInfo ci;
00050 if (classname.equals("java.lang.Exception"))
00051
00052
00053
00054 ci = type;
00055 else
00056
00057 ci = jpfvm.getClass(classname);
00058
00059
00060
00061
00062
00063 if (pc >= ce.getStartPC() && pc <= ce.getEndPC() && (ci == type)) {
00064
00065 th.clearOperandStack();
00066
00067
00068 th.push(exception);
00069
00070 th.setOperandRef();
00071
00072
00073
00074 return exceptions[idx].getHandlerPC();
00075 }
00076 }
00077
00078
00079
00080
00081
00082 MethodInfo mi = th.getCurrentMethod();
00083 if (mi.getMethodGen().isSynchronized()) {
00084
00085 if (mi.getMethodGen().isStatic()) {
00086
00087 String className = mi.getClassInfo().getClassData().getClassName();
00088
00089 ks.static_area.monitorUnlock(className, th);
00090 } else {
00091
00092 ks.dynamic_area.monitorUnlock(th.getThis(), th);
00093 }
00094 }
00095
00096
00097 th.popFrame();
00098 }
00099
00100
00101 throw new InternalErrorException("No handler found for exception " + type.getClassName());
00102 }
00103 public void setPeer(de.fub.bytecode.generic.Instruction i) {
00104 peer = (de.fub.bytecode.generic.ATHROW)i;
00105 }
00106 }