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#LASTORE
The following examples show how to use
jdk.internal.org.objectweb.asm.Opcodes#LASTORE .
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: InvokerBytecodeGenerator.java From Bytecoder with Apache License 2.0 | 6 votes |
private int arrayInsnOpcode(byte tcode, int aaop) throws InternalError { assert(aaop == Opcodes.AASTORE || aaop == Opcodes.AALOAD); int xas; switch (tcode) { case Opcodes.T_BOOLEAN: xas = Opcodes.BASTORE; break; case Opcodes.T_BYTE: xas = Opcodes.BASTORE; break; case Opcodes.T_CHAR: xas = Opcodes.CASTORE; break; case Opcodes.T_SHORT: xas = Opcodes.SASTORE; break; case Opcodes.T_INT: xas = Opcodes.IASTORE; break; case Opcodes.T_LONG: xas = Opcodes.LASTORE; break; case Opcodes.T_FLOAT: xas = Opcodes.FASTORE; break; case Opcodes.T_DOUBLE: xas = Opcodes.DASTORE; break; case 0: xas = Opcodes.AASTORE; break; default: throw new InternalError(); } return xas - Opcodes.AASTORE + aaop; }
Example 2
Source File: InvokerBytecodeGenerator.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
private int arrayInsnOpcode(byte tcode, int aaop) throws InternalError { assert(aaop == Opcodes.AASTORE || aaop == Opcodes.AALOAD); int xas; switch (tcode) { case Opcodes.T_BOOLEAN: xas = Opcodes.BASTORE; break; case Opcodes.T_BYTE: xas = Opcodes.BASTORE; break; case Opcodes.T_CHAR: xas = Opcodes.CASTORE; break; case Opcodes.T_SHORT: xas = Opcodes.SASTORE; break; case Opcodes.T_INT: xas = Opcodes.IASTORE; break; case Opcodes.T_LONG: xas = Opcodes.LASTORE; break; case Opcodes.T_FLOAT: xas = Opcodes.FASTORE; break; case Opcodes.T_DOUBLE: xas = Opcodes.DASTORE; break; case 0: xas = Opcodes.AASTORE; break; default: throw new InternalError(); } return xas - Opcodes.AASTORE + aaop; }