Home | History | Annotate | Download | only in peephole

Lines Matching refs:ExceptionInfo

83     public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
88 exceptionInfo.u2startPC,
89 exceptionInfo.u2endPC))
92 exceptionInfo.u2endPC = exceptionInfo.u2startPC;
96 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
140 private int removeEmptyExceptions(ExceptionInfo[] exceptionInfos,
147 ExceptionInfo exceptionInfo = exceptionInfos[index];
148 if (exceptionInfo.u2startPC < exceptionInfo.u2endPC)
150 exceptionInfos[newIndex++] = exceptionInfo;