Home
last modified time | relevance | path

Searched refs:finallyEnd (Results 1 – 15 of 15) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Reflection.Metadata/tests/PortableExecutable/
H A DPEBuilderTests.cs267 var finallyEnd = il.DefineLabel(); in BasicValidationEmit()
268 flowBuilder.AddFinallyRegion(tryStart, tryEnd, finallyStart, finallyEnd); in BasicValidationEmit()
280 il.Branch(ILOpCode.Leave_s, finallyEnd); in BasicValidationEmit()
294 il.MarkLabel(finallyEnd); in BasicValidationEmit()
/dports/lang/rhino/rhino1_7R4/src/org/mozilla/javascript/optimizer/
H A DCodegen.java2090 int finallyEnd = cfw.acquireLabel(); in generateStatement() local
2109 cfw.markLabel(finallyEnd); in generateStatement()
3767 int finallyEnd = cfw.acquireLabel(); in visitTryCatchFinally() local
3784 finallyEnd); in visitTryCatchFinally()
3793 cfw.markLabel(finallyEnd); in visitTryCatchFinally()
4027 ei.exceptionStarts[i] = finallyEnd; in markInlineFinallyEnd()
4117 int finallyEnd) { in inlineFinally() argument
4126 exceptionManager.markInlineFinallyEnd(fBlock, finallyEnd); in inlineFinally()
4131 int finallyEnd = cfw.acquireLabel(); in inlineFinally() local
4133 inlineFinally(finallyTarget, finallyStart, finallyEnd); in inlineFinally()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/PEAPI/
H A DCode.cs1099 public Finally(CILLabel finallyStart, CILLabel finallyEnd) in Finally() argument
1100 : base(finallyStart,finallyEnd) { } in Finally()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/testlibrary/jittester/src/jdk/test/lib/jittester/visitors/
H A DByteCodeVisitor.java1447 Label finallyEnd = new Label(); in visit() local
1453 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1468 currentMV.visitJumpInsn(Opcodes.GOTO, finallyEnd); in visit()
1478 currentMV.visitLabel(finallyEnd); in visit()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/src/System/Linq/Expressions/Interpreter/
H A DLightCompiler.cs91 …int tryStart, int tryEnd, int gotoEndLabelIndex, int finallyStart, int finallyEnd, ExceptionHandle… in TryCatchFinallyHandler() argument
96 FinallyEndIndex = finallyEnd; in TryCatchFinallyHandler()
186 internal TryFaultHandler(int tryStart, int tryEnd, int finallyStart, int finallyEnd) in TryFaultHandler() argument
191 FinallyEndIndex = finallyEnd; in TryFaultHandler()
/dports/lang/rhino/rhino1_7R4/src/org/mozilla/javascript/
H A DIRFactory.java1737 Node finallyEnd = Node.newTarget(); in createTryCatchFinally() local
1738 pn.addChildToBack(makeJump(Token.GOTO, finallyEnd)); in createTryCatchFinally()
1745 pn.addChildToBack(finallyEnd); in createTryCatchFinally()
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A DPEAPI.cs395 …public Finally(PEAPI.CILLabel finallyStart, PEAPI.CILLabel finallyEnd) : base (default(PEAPI.CILLa… in Finally() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/mono/
H A DPEAPI.cs396 …public Finally(PEAPI.CILLabel finallyStart, PEAPI.CILLabel finallyEnd) : base (default(PEAPI.CILLa… in Finally() argument