Available Methods
- ASM5 ( )
- ACC_STATIC
- ASM4 ( )
- ACC_INTERFACE
- ACC_FINAL
- F_APPEND
- ACC_PRIVATE
- T_BYTE
- T_SHORT
- INVOKEINTERFACE
- T_BOOLEAN
- T_LONG
- F_FULL
- F_NEW
- ACC_ABSTRACT
- ACC_PROTECTED
- ACC_PUBLIC
- FLOAD
- ACC_ENUM
- T_CHAR
- F_SAME1 ( )
- T_FLOAT
- F_SAME
- RETURN
- LLOAD
- DRETURN
- F_CHOP
- ACC_BRIDGE
- DOUBLE
- ACC_DEPRECATED
- DLOAD
- ACC_NATIVE
- BIPUSH
- INVOKESTATIC
- ATHROW
- LONG
- ACC_SYNTHETIC
- IF_ICMPEQ
- ACC_SYNCHRONIZED
- ACC_TRANSIENT
- T_INT
- LSTORE
- ASM7 ( )
- IF_ICMPNE
- IRETURN
- NEW
- DREM
- ACC_STRICT
- FSTORE
- D2L ( )
- DASTORE
- H_INVOKESTATIC
- IF_ICMPLT
- NOP
- ASTORE
- GOTO
- T_DOUBLE
- ISTORE
- ICONST_1 ( )
- PUTSTATIC
- LOOKUPSWITCH
- IFGE
- NEWARRAY
- L2I ( )
- IF_ICMPLE
- I2C ( )
- INSTANCEOF
- ACC_VOLATILE
- V1_5 ( )
- L2F ( )
- ACC_VARARGS
- ARETURN
- SIPUSH
- H_INVOKEINTERFACE
- LSUB
- IFGT
- DUP2 ( )
- ICONST_2 ( )
- ISHR
- FCONST_2 ( )
- IF_ACMPEQ
- CASTORE
- JSR
- IF_ACMPNE
- ILOAD
- ANEWARRAY
- F2I ( )
- I2B ( )
- DUP_X2 ( )
- FREM
- CHECKCAST
- AASTORE
- DDIV
- DCONST_1 ( )
- I2D ( )
- LREM
- ICONST_3 ( )
- IF_ICMPGT
- IF_ICMPGE
- CALOAD
- FDIV
- DSTORE
- IFLE
- FALOAD
- DMUL
- POP2 ( )
- H_NEWINVOKESPECIAL
- INTEGER
- BASTORE
- ICONST_4 ( )
- IFNONNULL
- FCMPG
- INVOKEVIRTUAL
- I2S ( )
- L2D ( )
- ACC_ANNOTATION
- FCONST_0 ( )
- LOR
- LRETURN
- FRETURN
- LMUL
- F2D ( )
- DNEG
- FLOAT
- D2F ( )
- ICONST_5 ( )
- FSUB
- ISHL
- SASTORE
- LALOAD
- ISUB
- DSUB
- ACC_MANDATED
- FASTORE
- IREM
- DUP2_X2 ( )
- IFLT
- IFNE
- I2L ( )
- PUTFIELD
- RET
- IADD
- D2I ( )
- DUP2_X1 ( )
- TABLESWITCH
- BALOAD
- MONITORENTER
- DCMPL
- GETSTATIC
- IALOAD
- UNINITIALIZED_THIS
- DCMPG
- POP
- FADD
- LSHL
- MULTIANEWARRAY
- DALOAD
- INVOKESPECIAL
- ICONST_M1 ( )
- INEG
- DUP
- I2F ( )
- F2L ( )
- LCMP
- LAND
- SALOAD
- LDIV
- LNEG
- LUSHR
- IASTORE
- IXOR
- DCONST_0 ( )
- V1_2 ( )
- IOR
- H_GETFIELD
- ACONST_NULL
- ICONST_0 ( )
- GETFIELD
- AALOAD
- IDIV
- IMUL
- DUP_X1 ( )
- IUSHR
- FNEG
- LADD
- FCMPL
- LXOR
- LSHR
- ARRAYLENGTH
- DADD
- IINC
- TOP
- FMUL
- SWAP
- ALOAD
- FCONST_1 ( )
- LDC
- MONITOREXIT
- IFEQ
- V1_7 ( )
- LCONST_0 ( )
- V1_6 ( )
- LCONST_1 ( )
- LASTORE
- IFNULL
- H_PUTSTATIC
- H_GETSTATIC
- V1_3 ( )
- NULL
- IAND
- H_INVOKEVIRTUAL
- INVOKEDYNAMIC
- V1_1 ( )
- H_PUTFIELD
- ASM6 ( )
- ACC_STATIC_PHASE
- H_INVOKESPECIAL
Related Classes
- java.util.Arrays
- java.io.InputStream
- java.util.Iterator
- java.lang.reflect.Method
- java.io.PrintWriter
- java.util.stream.Stream
- java.util.function.Consumer
- java.lang.invoke.MethodHandles
- java.lang.invoke.MethodType
- java.security.SecureClassLoader
- jdk.internal.org.objectweb.asm.ClassWriter
- jdk.internal.org.objectweb.asm.MethodVisitor
- jdk.internal.org.objectweb.asm.Type
- jdk.internal.org.objectweb.asm.ClassReader
- jdk.internal.org.objectweb.asm.FieldVisitor
- jdk.internal.org.objectweb.asm.tree.ClassNode
- jdk.internal.org.objectweb.asm.tree.MethodNode
- jdk.internal.org.objectweb.asm.AnnotationVisitor
- jdk.internal.org.objectweb.asm.Label
- jdk.internal.org.objectweb.asm.signature.SignatureReader
- jdk.internal.org.objectweb.asm.tree.AbstractInsnNode
- jdk.internal.org.objectweb.asm.tree.VarInsnNode
- jdk.internal.org.objectweb.asm.ClassVisitor
- jdk.internal.org.objectweb.asm.Attribute
- jdk.internal.org.objectweb.asm.Handle
Java Code Examples for jdk.internal.org.objectweb.asm.Opcodes#FRETURN
The following examples show how to use
jdk.internal.org.objectweb.asm.Opcodes#FRETURN .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GetBytecodeTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
private static boolean containsReturn(byte[] bytecode) { for (byte b : bytecode) { // cast unsigned byte to int int value = (int) b & 0x000000FF; switch (value) { case Opcodes.RET: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: case Opcodes.RETURN: return true; } } return false; }
Example 2
Source File: NashornTextifier.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
private static final boolean noFallThru(final int opcode) { switch (opcode) { case Opcodes.GOTO: case Opcodes.ATHROW: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: return true; default: return false; } }
Example 3
Source File: NashornTextifier.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
private static final boolean noFallThru(final int opcode) { switch (opcode) { case Opcodes.GOTO: case Opcodes.ATHROW: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: return true; default: return false; } }
Example 4
Source File: NashornTextifier.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
private static final boolean noFallThru(final int opcode) { switch (opcode) { case Opcodes.GOTO: case Opcodes.ATHROW: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: return true; default: return false; } }
Example 5
Source File: NashornTextifier.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
private static final boolean noFallThru(final int opcode) { switch (opcode) { case Opcodes.GOTO: case Opcodes.ATHROW: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: return true; default: return false; } }
Example 6
Source File: InvokerBytecodeGenerator.java From Bytecoder with Apache License 2.0 | 5 votes |
/** * Emits an actual return instruction conforming to the given return type. */ private void emitReturnInsn(BasicType type) { int opcode; switch (type) { case I_TYPE: opcode = Opcodes.IRETURN; break; case J_TYPE: opcode = Opcodes.LRETURN; break; case F_TYPE: opcode = Opcodes.FRETURN; break; case D_TYPE: opcode = Opcodes.DRETURN; break; case L_TYPE: opcode = Opcodes.ARETURN; break; case V_TYPE: opcode = Opcodes.RETURN; break; default: throw new InternalError("unknown return type: " + type); } mv.visitInsn(opcode); }
Example 7
Source File: InvokerBytecodeGenerator.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Emits an actual return instruction conforming to the given return type. */ private void emitReturnInsn(BasicType type) { int opcode; switch (type) { case I_TYPE: opcode = Opcodes.IRETURN; break; case J_TYPE: opcode = Opcodes.LRETURN; break; case F_TYPE: opcode = Opcodes.FRETURN; break; case D_TYPE: opcode = Opcodes.DRETURN; break; case L_TYPE: opcode = Opcodes.ARETURN; break; case V_TYPE: opcode = Opcodes.RETURN; break; default: throw new InternalError("unknown return type: " + type); } mv.visitInsn(opcode); }
Example 8
Source File: NashornTextifier.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private static boolean noFallThru(final int opcode) { switch (opcode) { case Opcodes.GOTO: case Opcodes.ATHROW: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: return true; default: return false; } }
Example 9
Source File: NashornTextifier.java From hottub with GNU General Public License v2.0 | 5 votes |
private static final boolean noFallThru(final int opcode) { switch (opcode) { case Opcodes.GOTO: case Opcodes.ATHROW: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: return true; default: return false; } }
Example 10
Source File: NashornTextifier.java From jdk8u_nashorn with GNU General Public License v2.0 | 5 votes |
private static final boolean noFallThru(final int opcode) { switch (opcode) { case Opcodes.GOTO: case Opcodes.ATHROW: case Opcodes.ARETURN: case Opcodes.IRETURN: case Opcodes.LRETURN: case Opcodes.FRETURN: case Opcodes.DRETURN: return true; default: return false; } }