Available Methods
- ASM5 ( )
- ASM7 ( )
- ACC_STATIC
- ACC_PUBLIC
- ACC_PRIVATE
- ASM6 ( )
- INVOKESTATIC
- ACC_ABSTRACT
- ASM4 ( )
- ACC_PROTECTED
- ACC_INTERFACE
- ACC_SYNTHETIC
- ACC_FINAL
- RETURN
- INVOKEVIRTUAL
- ASM8 ( )
- INVOKEINTERFACE
- INVOKESPECIAL
- IRETURN
- ICONST_0 ( )
- PUTFIELD
- GETSTATIC
- GETFIELD
- DLOAD
- ACC_NATIVE
- ALOAD
- SIPUSH
- ICONST_2 ( )
- ILOAD
- ICONST_3 ( )
- LSTORE
- IFNONNULL
- ISTORE
- ICONST_4 ( )
- F_NEW
- ICONST_1 ( )
- DRETURN
- ACC_ENUM
- IF_ICMPEQ
- DCONST_1 ( )
- DCONST_0 ( )
- BIPUSH
- LMUL
- PUTSTATIC
- FSTORE
- DSTORE
- FRETURN
- DADD
- SALOAD
- ICONST_5 ( )
- DUP
- LLOAD
- ATHROW
- FLOAD
- F_SAME
- DASTORE
- ACC_DEPRECATED
- GOTO
- ASTORE
- DUP2 ( )
- ACC_BRIDGE
- T_BOOLEAN
- LRETURN
- IOR
- ACC_VOLATILE
- DALOAD
- LXOR
- NEWARRAY
- DNEG
- T_BYTE
- MULTIANEWARRAY
- T_CHAR
- IFEQ
- NOP
- I2S ( )
- IF_ICMPGE
- LREM
- INEG
- ARETURN
- T_INT
- T_FLOAT
- FCONST_1 ( )
- F_SAME1 ( )
- NEW
- LCMP
- FNEG
- LCONST_1 ( )
- LOR
- POP2 ( )
- IMUL
- FCONST_2 ( )
- DCMPL
- FCONST_0 ( )
- DUP_X1 ( )
- LDC
- F_APPEND
- ICONST_M1 ( )
- LSHR
- IF_ICMPLE
- LALOAD
- FREM
- ACC_ANNOTATION
- IF_ACMPEQ
- BALOAD
- ACC_SYNCHRONIZED
- BASTORE
- FALOAD
- AALOAD
- LSHL
- T_SHORT
- ISUB
- LOOKUPSWITCH
- IFNE
- IALOAD
- H_INVOKEINTERFACE
- LDIV
- ISHR
- ACC_STRICT
- LONG
- IF_ICMPLT
- LADD
- CHECKCAST
- IFLT
- LAND
- FMUL
- IF_ICMPGT
- LCONST_0 ( )
- T_DOUBLE
- FADD
- F_CHOP
- IFLE
- H_PUTSTATIC
- DCMPG
- F2L ( )
- IDIV
- POP
- ARRAYLENGTH
- DUP2_X1 ( )
- DDIV
- L2D ( )
- FCMPL
- ANEWARRAY
- FASTORE
- MONITOREXIT
- F_FULL
- IF_ICMPNE
- LSUB
- FSUB
- ISHL
- H_INVOKEVIRTUAL
- IXOR
- ACC_VARARGS
- MONITORENTER
- IAND
- DMUL
- F2I ( )
- DREM
- DSUB
- V1_7 ( )
- DUP2_X2 ( )
- T_LONG
- IREM
- ACC_SUPER
- ACONST_NULL
- V1_8 ( )
- H_GETFIELD
- FCMPG
- IFNULL
- ACC_TRANSIENT
- H_INVOKESTATIC
- IADD
- IASTORE
- D2I ( )
- AASTORE
- UNINITIALIZED_THIS
- LUSHR
- SWAP
- H_GETSTATIC
- INTEGER
- TOP
- ACC_TRANSITIVE
- D2F ( )
- LNEG
- IFGE
- CASTORE
- CALOAD
- JSR
- F2D ( )
- L2F ( )
- D2L ( )
- LASTORE
- I2C ( )
- H_NEWINVOKESPECIAL
- IFGT
- NULL
- I2F ( )
- L2I ( )
- INVOKEDYNAMIC
- V1_5 ( )
- IUSHR
- DUP_X2 ( )
- SASTORE
- SOURCE_DEPRECATED
- V1_6 ( )
- FDIV
- IINC
- ACC_MODULE
- TABLESWITCH
- RET
- IF_ACMPNE
- H_INVOKESPECIAL
- I2L ( )
- V1_3 ( )
- V1_1 ( )
- DOUBLE
- H_PUTFIELD
- V1_2 ( )
- INSTANCEOF
- I2B ( )
- ACC_MANDATED
- V1_4 ( )
- V11 ( )
- SOURCE_MASK
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- java.io.InputStream
- java.util.Iterator
- java.lang.reflect.Method
- java.util.LinkedList
- java.util.concurrent.atomic.AtomicInteger
- java.lang.reflect.Modifier
- com.google.common.collect.ImmutableList
- java.util.ListIterator
- java.util.jar.JarEntry
- org.objectweb.asm.ClassReader
- org.objectweb.asm.MethodVisitor
- org.objectweb.asm.ClassWriter
- org.apache.commons.lang3.Validate
- org.objectweb.asm.Type
- org.objectweb.asm.ClassVisitor
- org.objectweb.asm.Label
- org.objectweb.asm.FieldVisitor
- org.objectweb.asm.tree.ClassNode
- org.objectweb.asm.tree.MethodNode
- org.objectweb.asm.AnnotationVisitor
- org.objectweb.asm.tree.AbstractInsnNode
- org.objectweb.asm.tree.MethodInsnNode
Java Code Examples for org.objectweb.asm.Opcodes#I2L
The following examples show how to use
org.objectweb.asm.Opcodes#I2L .
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: StackHelper.java From zelixkiller with GNU General Public License v3.0 | 4 votes |
public InsnValue convertValue(AbstractInsnNode insn, InsnValue value) { Object obj = value.getValue(); switch (insn.getOpcode()) { case Opcodes.I2L: case Opcodes.D2L: case Opcodes.F2L: if (obj == null) { return InsnValue.LONG_VALUE; } return InsnValue.longValue(((Number) obj).longValue()); case Opcodes.I2F: case Opcodes.L2F: case Opcodes.D2F: if (obj == null) { return InsnValue.FLOAT_VALUE; } return InsnValue.floatValue(((Number) obj).floatValue()); case Opcodes.L2I: case Opcodes.F2I: case Opcodes.D2I: if (obj == null) { return InsnValue.INT_VALUE; } return InsnValue.intValue(((Number) obj).intValue()); case Opcodes.I2D: case Opcodes.L2D: case Opcodes.F2D: if (obj == null) { return InsnValue.DOUBLE_VALUE; } return InsnValue.doubleValue(((Number) obj).doubleValue()); case Opcodes.I2B: if (obj == null) { return InsnValue.BYTE_VALUE; } return InsnValue.byteValue(((Number) obj).byteValue()); case Opcodes.I2C: if (obj == null) { return InsnValue.CHAR_VALUE; } return InsnValue.charValue(((Number) obj).intValue()); case Opcodes.I2S: if (obj == null) { return InsnValue.SHORT_VALUE; } return InsnValue.shortValue(((Number) obj).shortValue()); } return null; }
Example 2
Source File: UselessArithmeticTransformer.java From deobfuscator with Apache License 2.0 | 4 votes |
private List<AbstractInsnNode> getPossibleInsns(AbstractInsnNode ain) { List<AbstractInsnNode> instrs = new ArrayList<>(); while(ain != null) { if(ain instanceof LineNumberNode || ain instanceof FrameNode) { ain = ain.getNext(); continue; } instrs.add(ain); if(instrs.size() >= 23) break; ain = ain.getNext(); } if(instrs.size() == 23 && instrs.get(0).getOpcode() == Opcodes.ILOAD && instrs.get(1).getOpcode() == Opcodes.ICONST_1 && instrs.get(2).getOpcode() == Opcodes.ISUB && instrs.get(3).getOpcode() == Opcodes.ISTORE) { int var1 = ((VarInsnNode)instrs.get(0)).var; int var2 = ((VarInsnNode)instrs.get(3)).var; if(instrs.get(4).getOpcode() == Opcodes.ILOAD && ((VarInsnNode)instrs.get(4)).var == var1 && instrs.get(5).getOpcode() == Opcodes.ILOAD && ((VarInsnNode)instrs.get(5)).var == var2 && instrs.get(6).getOpcode() == Opcodes.IMUL && instrs.get(7).getOpcode() == Opcodes.ISTORE && ((VarInsnNode)instrs.get(7)).var == var2 && instrs.get(8).getOpcode() == Opcodes.ILOAD && ((VarInsnNode)instrs.get(8)).var == var2 && instrs.get(9).getOpcode() == Opcodes.ICONST_2 && instrs.get(10).getOpcode() == Opcodes.IREM && instrs.get(11).getOpcode() == Opcodes.ISTORE && ((VarInsnNode)instrs.get(11)).var == var2 && instrs.get(12).getOpcode() == Opcodes.ILOAD && ((VarInsnNode)instrs.get(12)).var == var2 && instrs.get(13).getOpcode() == Opcodes.I2L && instrs.get(14).getOpcode() == Opcodes.ICONST_0 && instrs.get(15).getOpcode() == Opcodes.I2L && instrs.get(16).getOpcode() == Opcodes.LCMP && instrs.get(17).getOpcode() == Opcodes.ICONST_1 && instrs.get(18).getOpcode() == Opcodes.IXOR && instrs.get(19).getOpcode() == Opcodes.ICONST_1 && instrs.get(20).getOpcode() == Opcodes.IAND && instrs.get(21).getOpcode() == Opcodes.IFEQ && instrs.get(22).getOpcode() == Opcodes.IINC) return instrs; } return null; }
Example 3
Source File: ArithmeticExpression.java From CodenameOne with GNU General Public License v2.0 | 4 votes |
public static boolean isArithmeticOp(Instruction instr) { switch (instr.getOpcode()) { case Opcodes.ISHL: case Opcodes.ISHR: case Opcodes.LSHL: case Opcodes.LSHR: case Opcodes.IUSHR: case Opcodes.LUSHR: case Opcodes.DCMPG: case Opcodes.DCMPL: case Opcodes.FCMPG: case Opcodes.FCMPL: case Opcodes.LCMP: case Opcodes.FNEG: case Opcodes.DNEG: case Opcodes.INEG: case Opcodes.D2F: case Opcodes.D2I: case Opcodes.D2L: case Opcodes.F2D: case Opcodes.F2I: case Opcodes.F2L: case Opcodes.L2D: case Opcodes.L2F: case Opcodes.L2I: case Opcodes.I2L: case Opcodes.I2B: case Opcodes.I2C: case Opcodes.I2D: case Opcodes.I2F: case Opcodes.I2S: case Opcodes.IOR: case Opcodes.LOR: case Opcodes.IXOR: case Opcodes.LXOR: case Opcodes.IAND: case Opcodes.LAND: case Opcodes.FADD: case Opcodes.DADD: case Opcodes.IADD: case Opcodes.LADD: case Opcodes.FSUB: case Opcodes.DSUB: case Opcodes.ISUB: case Opcodes.LSUB: case Opcodes.FDIV: case Opcodes.DDIV: case Opcodes.LDIV: case Opcodes.IDIV: case Opcodes.IREM: case Opcodes.FREM: case Opcodes.DREM: case Opcodes.LREM: case Opcodes.FMUL: case Opcodes.DMUL: case Opcodes.IMUL: case Opcodes.LMUL: return true; } return false; }