Searched refs:visitTryCatchBlock (Results 1 - 25 of 27) sorted by relevance

12

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DUnbalancedMonitorsTest.java169 mv.visitTryCatchBlock(l0, l1, l2, null);
171 mv.visitTryCatchBlock(l2, l3, l2, null);
175 mv.visitTryCatchBlock(l4, l5, l6, null);
177 mv.visitTryCatchBlock(l2, l7, l6, null);
231 mv.visitTryCatchBlock(l0, l1, l2, null);
233 mv.visitTryCatchBlock(l2, l3, l2, null);
237 mv.visitTryCatchBlock(l4, l5, l6, null);
239 mv.visitTryCatchBlock(l2, l7, l6, null);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java67 * <tt>visit</tt><i>X</i>Insn</tt> | <tt>visitLabel</tt> | <tt>visitTryCatchBlock</tt> |
71 * the bytecode instructions of the visited code, <tt>visitTryCatchBlock</tt>
371 void visitTryCatchBlock(Label start, Label end, Label handler, String type); method in interface:MethodVisitor
H A DMethodAdapter.java194 public void visitTryCatchBlock( method in class:MethodAdapter
200 mv.visitTryCatchBlock(start, end, handler, type);
H A DClassReader.java987 mv.visitTryCatchBlock(start, end, handler, null);
989 mv.visitTryCatchBlock(start,
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/
H A DTryCatchBlockNode.java165 mv.visitTryCatchBlock(start.getLabel(), end.getLabel(),
H A DMethodNode.java570 public void visitTryCatchBlock(final Label start, final Label end, method in class:MethodNode
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/
H A DTraceMethodVisitor.java268 public void visitTryCatchBlock(final Label start, final Label end, method in class:TraceMethodVisitor
270 p.visitTryCatchBlock(start, end, handler, type);
271 super.visitTryCatchBlock(start, end, handler, type);
H A DPrinter.java1014 * See {@link jdk.internal.org.objectweb.asm.MethodVisitor#visitTryCatchBlock}.
1030 public abstract void visitTryCatchBlock(final Label start, final Label end, method in class:Printer
H A DCheckMethodAdapter.java927 public void visitTryCatchBlock(final Label start, final Label end, method in class:CheckMethodAdapter
945 super.visitTryCatchBlock(start, end, handler, type);
H A DASMifier.java807 public void visitTryCatchBlock(final Label start, final Label end, method in class:ASMifier
813 buf.append(name).append(".visitTryCatchBlock(");
H A DTextifier.java1006 public void visitTryCatchBlock(final Label start, final Label end, method in class:Textifier
/openjdk9/hotspot/test/runtime/RedefineTests/
H A DRedefineRunningMethodsWithResolutionErrors.java109 mv.visitTryCatchBlock(tryLoadBegin, tryLoadEnd, catchLoadBlock, "java/lang/NoClassDefFoundError");
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DMethodVisitor.java68 * <tt>visitInsnAnnotation</tt> | <tt>visitTryCatchBlock</tt> |
75 * instruction, <tt>visitTryCatchBlock</tt> must be called <i>before</i> the
756 public void visitTryCatchBlock(Label start, Label end, Label handler, method in class:MethodVisitor
759 mv.visitTryCatchBlock(start, end, handler, type);
765 * called <i>after</i> the {@link #visitTryCatchBlock} for the annotated
H A DClassReader.java1154 mv.visitTryCatchBlock(start, end, handler, type);
H A DMethodWriter.java1314 public void visitTryCatchBlock(final Label start, final Label end, method in class:MethodWriter
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DRemappingMethodAdapter.java226 public void visitTryCatchBlock(Label start, Label end, Label handler, method in class:RemappingMethodAdapter
228 super.visitTryCatchBlock(start, end, handler, type == null ? null
H A DMethodRemapper.java223 public void visitTryCatchBlock(Label start, Label end, Label handler, method in class:MethodRemapper
225 super.visitTryCatchBlock(start, end, handler, type == null ? null
H A DAdviceAdapter.java585 public void visitTryCatchBlock(Label start, Label end, Label handler, method in class:AdviceAdapter
587 super.visitTryCatchBlock(start, end, handler, type);
H A DGeneratorAdapter.java1652 mv.visitTryCatchBlock(start, end, doCatch, null);
1654 mv.visitTryCatchBlock(start, end, doCatch,
/openjdk9/hotspot/test/compiler/c1/
H A DTest6932496.java152 mv.visitTryCatchBlock(beginLabel, block1EndLabel, handlerLabel,
154 mv.visitTryCatchBlock(handlerLabel, block2EndLabel, handlerLabel,
/openjdk9/hotspot/test/runtime/lambda-features/
H A DTestStaticandInstance.java200 mv.visitTryCatchBlock(l0, l1, l2, "java/lang/AbstractMethodError");
224 mv.visitTryCatchBlock(l0, l1, l2, "java/lang/IncompatibleClassChangeError");
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DJavaAdapterBytecodeGenerator.java829 mv.visitTryCatchBlock(tryBlockStart, normalFinally, rethrowHandler, THROWABLE_TYPE_NAME);
832 mv.visitTryCatchBlock(tryBlockStart, normalFinally, rethrowHandler, RUNTIME_EXCEPTION_TYPE_NAME);
833 mv.visitTryCatchBlock(tryBlockStart, normalFinally, rethrowHandler, ERROR_TYPE_NAME);
835 mv.visitTryCatchBlock(tryBlockStart, normalFinally, rethrowHandler, excName);
837 mv.visitTryCatchBlock(tryBlockStart, normalFinally, throwableHandler, THROWABLE_TYPE_NAME);
/openjdk9/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1462 currentMV.visitTryCatchBlock(tryStart, tryEnd, handlerBegin, asInternalName(t.getName()));
1469 currentMV.visitTryCatchBlock(handlerBegin, handlerEnd, finallyStart, null);
1472 currentMV.visitTryCatchBlock(tryStart, tryEnd, finallyStart, null);
/openjdk9/jdk/src/java.base/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java1153 mv.visitTryCatchBlock(L_startBlock, L_endBlock, L_handler, "java/lang/Throwable");
1274 mv.visitTryCatchBlock(lFrom, lTo, lCatch, "java/lang/Throwable");
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/debug/
H A DNashornTextifier.java680 public void visitTryCatchBlock(final Label start, final Label end, final Label handler, final String type) { method in class:NashornTextifier

Completed in 368 milliseconds

12