📄 asmcontenthandler.java
字号:
new Opcode( Opcodes.ISTORE,
OpcodeGroup.INSN_VAR ) );
ASMContentHandler.OPCODES.put( "LSTORE",
new Opcode( Opcodes.LSTORE,
OpcodeGroup.INSN_VAR ) );
ASMContentHandler.OPCODES.put( "FSTORE",
new Opcode( Opcodes.FSTORE,
OpcodeGroup.INSN_VAR ) );
ASMContentHandler.OPCODES.put( "DSTORE",
new Opcode( Opcodes.DSTORE,
OpcodeGroup.INSN_VAR ) );
ASMContentHandler.OPCODES.put( "ASTORE",
new Opcode( Opcodes.ASTORE,
OpcodeGroup.INSN_VAR ) );
ASMContentHandler.OPCODES.put( "IASTORE",
new Opcode( Opcodes.IASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LASTORE",
new Opcode( Opcodes.LASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FASTORE",
new Opcode( Opcodes.FASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DASTORE",
new Opcode( Opcodes.DASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "AASTORE",
new Opcode( Opcodes.AASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "BASTORE",
new Opcode( Opcodes.BASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "CASTORE",
new Opcode( Opcodes.CASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "SASTORE",
new Opcode( Opcodes.SASTORE,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "POP",
new Opcode( Opcodes.POP,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "POP2",
new Opcode( Opcodes.POP2,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DUP",
new Opcode( Opcodes.DUP,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DUP_X1",
new Opcode( Opcodes.DUP_X1,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DUP_X2",
new Opcode( Opcodes.DUP_X2,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DUP2",
new Opcode( Opcodes.DUP2,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DUP2_X1",
new Opcode( Opcodes.DUP2_X1,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DUP2_X2",
new Opcode( Opcodes.DUP2_X2,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "SWAP",
new Opcode( Opcodes.SWAP,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IADD",
new Opcode( Opcodes.IADD,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LADD",
new Opcode( Opcodes.LADD,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FADD",
new Opcode( Opcodes.FADD,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DADD",
new Opcode( Opcodes.DADD,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "ISUB",
new Opcode( Opcodes.ISUB,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LSUB",
new Opcode( Opcodes.LSUB,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FSUB",
new Opcode( Opcodes.FSUB,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DSUB",
new Opcode( Opcodes.DSUB,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IMUL",
new Opcode( Opcodes.IMUL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LMUL",
new Opcode( Opcodes.LMUL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FMUL",
new Opcode( Opcodes.FMUL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DMUL",
new Opcode( Opcodes.DMUL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IDIV",
new Opcode( Opcodes.IDIV,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LDIV",
new Opcode( Opcodes.LDIV,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FDIV",
new Opcode( Opcodes.FDIV,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DDIV",
new Opcode( Opcodes.DDIV,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IREM",
new Opcode( Opcodes.IREM,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LREM",
new Opcode( Opcodes.LREM,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FREM",
new Opcode( Opcodes.FREM,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DREM",
new Opcode( Opcodes.DREM,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "INEG",
new Opcode( Opcodes.INEG,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LNEG",
new Opcode( Opcodes.LNEG,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FNEG",
new Opcode( Opcodes.FNEG,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DNEG",
new Opcode( Opcodes.DNEG,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "ISHL",
new Opcode( Opcodes.ISHL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LSHL",
new Opcode( Opcodes.LSHL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "ISHR",
new Opcode( Opcodes.ISHR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LSHR",
new Opcode( Opcodes.LSHR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IUSHR",
new Opcode( Opcodes.IUSHR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LUSHR",
new Opcode( Opcodes.LUSHR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IAND",
new Opcode( Opcodes.IAND,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LAND",
new Opcode( Opcodes.LAND,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IOR",
new Opcode( Opcodes.IOR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LOR",
new Opcode( Opcodes.LOR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IXOR",
new Opcode( Opcodes.IXOR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LXOR",
new Opcode( Opcodes.LXOR,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IINC",
new Opcode( Opcodes.IINC,
OpcodeGroup.INSN_IINC ) );
ASMContentHandler.OPCODES.put( "I2L",
new Opcode( Opcodes.I2L,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "I2F",
new Opcode( Opcodes.I2F,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "I2D",
new Opcode( Opcodes.I2D,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "L2I",
new Opcode( Opcodes.L2I,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "L2F",
new Opcode( Opcodes.L2F,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "L2D",
new Opcode( Opcodes.L2D,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "F2I",
new Opcode( Opcodes.F2I,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "F2L",
new Opcode( Opcodes.F2L,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "F2D",
new Opcode( Opcodes.F2D,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "D2I",
new Opcode( Opcodes.D2I,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "D2L",
new Opcode( Opcodes.D2L,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "D2F",
new Opcode( Opcodes.D2F,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "I2B",
new Opcode( Opcodes.I2B,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "I2C",
new Opcode( Opcodes.I2C,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "I2S",
new Opcode( Opcodes.I2S,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "LCMP",
new Opcode( Opcodes.LCMP,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FCMPL",
new Opcode( Opcodes.FCMPL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "FCMPG",
new Opcode( Opcodes.FCMPG,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DCMPL",
new Opcode( Opcodes.DCMPL,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "DCMPG",
new Opcode( Opcodes.DCMPG,
OpcodeGroup.INSN ) );
ASMContentHandler.OPCODES.put( "IFEQ",
new Opcode( Opcodes.IFEQ,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IFNE",
new Opcode( Opcodes.IFNE,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IFLT",
new Opcode( Opcodes.IFLT,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IFGE",
new Opcode( Opcodes.IFGE,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IFGT",
new Opcode( Opcodes.IFGT,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IFLE",
new Opcode( Opcodes.IFLE,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ICMPEQ",
new Opcode( Opcodes.IF_ICMPEQ,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ICMPNE",
new Opcode( Opcodes.IF_ICMPNE,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ICMPLT",
new Opcode( Opcodes.IF_ICMPLT,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ICMPGE",
new Opcode( Opcodes.IF_ICMPGE,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ICMPGT",
new Opcode( Opcodes.IF_ICMPGT,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ICMPLE",
new Opcode( Opcodes.IF_ICMPLE,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ACMPEQ",
new Opcode( Opcodes.IF_ACMPEQ,
OpcodeGroup.INSN_JUMP ) );
ASMContentHandler.OPCODES.put( "IF_ACMPNE",
new Opcode( Opcodes.IF_ACMPNE,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -