Home | History | Annotate | Download | only in peephole

Lines Matching refs:ExceptionInfo

86     public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
91 exceptionInfo.u2startPC,
92 exceptionInfo.u2endPC))
95 exceptionInfo.u2endPC = exceptionInfo.u2startPC;
99 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
147 private int removeEmptyExceptions(ExceptionInfo[] exceptionInfos,
154 ExceptionInfo exceptionInfo = exceptionInfos[index];
155 if (exceptionInfo.u2startPC < exceptionInfo.u2endPC)
157 exceptionInfos[newIndex++] = exceptionInfo;