mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 18:48:38 +00:00
263 lines
9.0 KiB
C
263 lines
9.0 KiB
C
/* radare - LGPL - Copyright 2007-2012 - pancake */
|
|
|
|
#include <stdio.h>
|
|
#include "code.h"
|
|
|
|
struct java_op java_ops[] = {
|
|
{ "nop" , 0x00 , 1 },
|
|
{ "aconst_null" , 0x01 , 1 },
|
|
{ "iconst_m1" , 0x02 , 1 },
|
|
{ "iconst_0" , 0x03 , 1 },
|
|
{ "iconst_1" , 0x04 , 1 },
|
|
{ "iconst_2" , 0x05 , 1 },
|
|
{ "iconst_3" , 0x06 , 1 },
|
|
{ "iconst_4" , 0x07 , 1 },
|
|
{ "iconst_5" , 0x08 , 1 },
|
|
{ "lconst_0" , 0x09 , 1 },
|
|
{ "lconst_1" , 0x0a , 1 },
|
|
{ "fconst_0" , 0x0b , 1 },
|
|
{ "fconst_1" , 0x0c , 1 },
|
|
{ "fconst_2" , 0x0d , 1 },
|
|
{ "dconst_0" , 0x0e , 1 },
|
|
{ "dconst_1" , 0x0f , 1 },
|
|
{ "bipush" , 0x10 , 2 },
|
|
{ "sipush" , 0x11 , 3 },
|
|
{ "ldc" , 0x12 , 2 },
|
|
{ "ldc_w" , 0x13 , 3 },
|
|
{ "ldc2_w" , 0x14 , 3 },
|
|
{ "iload" , 0x15 , 2 },
|
|
{ "lload" , 0x16 , 2 },
|
|
{ "fload" , 0x17 , 2 },
|
|
{ "dload" , 0x18 , 2 },
|
|
{ "aload" , 0x19 , 2 },
|
|
{ "iload_0" , 0x1a , 1 },
|
|
{ "iload_1" , 0x1b , 1 },
|
|
{ "iload_2" , 0x1c , 1 },
|
|
{ "iload_3" , 0x1d , 1 },
|
|
{ "lload_0" , 0x1e , 1 },
|
|
{ "lload_1" , 0x1f , 1 },
|
|
{ "lload_2" , 0x20 , 1 },
|
|
{ "lload_3" , 0x21 , 1 },
|
|
{ "fload_0" , 0x22 , 1 },
|
|
{ "fload_1" , 0x23 , 1 },
|
|
{ "fload_2" , 0x24 , 1 },
|
|
{ "fload_3" , 0x25 , 1 },
|
|
{ "dload_0" , 0x26 , 1 },
|
|
{ "dload_1" , 0x27 , 1 },
|
|
{ "dload_2" , 0x28 , 1 },
|
|
{ "dload_3" , 0x29 , 1 },
|
|
{ "aload_0" , 0x2a , 1 },
|
|
{ "aload_1" , 0x2b , 1 },
|
|
{ "aload_2" , 0x2c , 1 },
|
|
{ "aload_3" , 0x2d , 1 },
|
|
{ "iaload" , 0x2e , 1 },
|
|
{ "laload" , 0x2f , 1 },
|
|
{ "faload" , 0x30 , 1 },
|
|
{ "daload" , 0x31 , 1 },
|
|
{ "UNDEFINED" , 0x32 , 1 },
|
|
{ "baload" , 0x33 , 1 },
|
|
{ "caload" , 0x34 , 1 },
|
|
{ "saload" , 0x35 , 1 },
|
|
{ "istore" , 0x36 , 1 },
|
|
{ "lstore" , 0x37 , 2 },
|
|
{ "fstore" , 0x38 , 2 },
|
|
{ "dstore" , 0x39 , 2 },
|
|
{ "astore" , 0x3a , 2 },
|
|
{ "istore_0" , 0x3b , 1 },
|
|
{ "istore_1" , 0x3c , 1 },
|
|
{ "istore_2" , 0x3d , 1 },
|
|
{ "istore_3" , 0x3e , 1 },
|
|
{ "lstore_0" , 0x3f , 1 },
|
|
{ "lstore_1" , 0x40 , 1 },
|
|
{ "lstore_2" , 0x41 , 1 },
|
|
{ "lstore_3" , 0x42 , 1 },
|
|
{ "fstore_0" , 0x43 , 1 },
|
|
{ "fstore_1" , 0x44 , 1 },
|
|
{ "fstore_2" , 0x45 , 1 },
|
|
{ "fstore_3" , 0x46 , 1 },
|
|
{ "dstore_0" , 0x47 , 1 },
|
|
{ "dstore_1" , 0x48 , 1 },
|
|
{ "dstore_2" , 0x49 , 1 },
|
|
{ "dstore_3" , 0x4a , 1 },
|
|
{ "astore_0" , 0x4b , 1 },
|
|
{ "astore_1" , 0x4c , 1 },
|
|
{ "astore_2" , 0x4d , 1 },
|
|
{ "astore_3" , 0x4e , 1 },
|
|
{ "iastore" , 0x4f , 1 },
|
|
{ "lastore" , 0x50 , 1 },
|
|
{ "fastore" , 0x51 , 1 },
|
|
{ "dastore" , 0x52 , 1 },
|
|
{ "aastore" , 0x53 , 1 },
|
|
{ "bastore" , 0x54 , 1 },
|
|
{ "castore" , 0x55 , 1 },
|
|
{ "sastore" , 0x56 , 1 },
|
|
{ "pop" , 0x57 , 1 },
|
|
{ "pop2" , 0x58 , 1 },
|
|
{ "dup" , 0x59 , 1 },
|
|
{ "dup_x1" , 0x5a , 1 },
|
|
{ "dup_x2" , 0x5b , 1 },
|
|
{ "dup2" , 0x5c , 1 },
|
|
{ "dup2_x1" , 0x5d , 1 },
|
|
{ "dup2_x2" , 0x5e , 1 },
|
|
{ "swap" , 0x5f , 1 },
|
|
{ "iadd" , 0x60 , 1 },
|
|
{ "ladd" , 0x61 , 1 },
|
|
{ "fadd" , 0x62 , 1 },
|
|
{ "dadd" , 0x63 , 1 },
|
|
{ "isub" , 0x64 , 1 },
|
|
{ "lsub" , 0x65 , 1 },
|
|
{ "fsub" , 0x66 , 1 },
|
|
{ "dsub" , 0x67 , 1 },
|
|
{ "imul" , 0x68 , 1 },
|
|
{ "lmul" , 0x69 , 1 },
|
|
{ "fmul" , 0x6a , 1 },
|
|
{ "dmul" , 0x6b , 1 },
|
|
{ "idiv" , 0x6c , 1 },
|
|
{ "ldiv" , 0x6d , 1 },
|
|
{ "fdiv" , 0x6e , 1 },
|
|
{ "ddiv" , 0x6f , 1 },
|
|
{ "irem" , 0x70 , 1 },
|
|
{ "lrem" , 0x71 , 1 },
|
|
{ "frem" , 0x72 , 1 },
|
|
{ "drem" , 0x73 , 1 },
|
|
{ "ineg" , 0x74 , 1 },
|
|
{ "lneg" , 0x75 , 1 },
|
|
{ "fneg" , 0x76 , 1 },
|
|
{ "dneg" , 0x77 , 1 },
|
|
{ "ishl" , 0x78 , 1 },
|
|
{ "lshl" , 0x79 , 1 },
|
|
{ "ishr" , 0x7a , 1 },
|
|
{ "lshr" , 0x7b , 1 },
|
|
{ "iushr" , 0x7c , 1 },
|
|
{ "lushr" , 0x7d , 1 },
|
|
{ "iand" , 0x7e , 1 },
|
|
{ "land" , 0x7f , 1 },
|
|
{ "ior" , 0x80 , 1 },
|
|
{ "lor" , 0x81 , 1 },
|
|
{ "ixor" , 0x82 , 1 },
|
|
{ "lxor" , 0x83 , 1 },
|
|
{ "iinc" , 0x84 , 3 },
|
|
{ "i2l" , 0x85 , 1 },
|
|
{ "i2f" , 0x86 , 1 },
|
|
{ "i2d" , 0x87 , 1 },
|
|
{ "l2i" , 0x88 , 1 },
|
|
{ "l2f" , 0x89 , 1 },
|
|
{ "l2d" , 0x8a , 1 },
|
|
{ "f2i" , 0x8b , 1 },
|
|
{ "f2l" , 0x8c , 1 },
|
|
{ "f2d" , 0x8d , 1 },
|
|
{ "d2i" , 0x8e , 1 },
|
|
{ "d2l" , 0x8f , 1 },
|
|
{ "d2f" , 0x90 , 1 },
|
|
{ "i2b" , 0x91 , 1 },
|
|
{ "i2c" , 0x92 , 1 },
|
|
{ "i2s" , 0x93 , 1 },
|
|
{ "lcmp" , 0x94 , 1 },
|
|
{ "fcmpl" , 0x95 , 1 },
|
|
{ "fcmpg" , 0x96 , 1 },
|
|
{ "dcmpl" , 0x97 , 1 },
|
|
{ "dcmpg" , 0x98 , 1 },
|
|
{ "ifeq" , 0x99 , 3 },
|
|
{ "ifne" , 0x9a , 3 },
|
|
{ "iflt" , 0x9b , 3 },
|
|
{ "ifge" , 0x9c , 3 },
|
|
{ "ifgt" , 0x9d , 3 },
|
|
{ "ifle" , 0x9e , 3 },
|
|
{ "if_icmpeq" , 0x9f , 3 },
|
|
{ "if_icmpne" , 0xa0 , 3 },
|
|
{ "if_icmplt" , 0xa1 , 3 },
|
|
{ "if_icmpge" , 0xa2 , 3 },
|
|
{ "if_icmpgt" , 0xa3 , 3 },
|
|
{ "if_icmple" , 0xa4 , 3 },
|
|
{ "if_acmpeq" , 0xa5 , 3 },
|
|
{ "if_acmpne" , 0xa6 , 3 },
|
|
{ "goto" , 0xa7 , 3 },
|
|
{ "jsr" , 0xa8 , 3 },
|
|
{ "ret" , 0xa9 , 2 },
|
|
{ "tableswitch" , 0xaa , 3 },
|
|
{ "lookupswitch" , 0xab , 3 },
|
|
{ "ireturn" , 0xac , 1 },
|
|
{ "lreturn" , 0xad , 1 },
|
|
{ "freturn" , 0xae , 1 },
|
|
{ "dreturn" , 0xaf , 1 },
|
|
{ "areturn" , 0xb0 , 1 },
|
|
{ "return" , 0xb1 , 1 },
|
|
{ "getstatic" , 0xb2 , 3 },
|
|
{ "putstatic" , 0xb3 , 3 },
|
|
{ "getfield" , 0xb4 , 3 },
|
|
{ "putfield" , 0xb5 , 3 },
|
|
{ "invokevirtual" , 0xb6 , 3 },
|
|
{ "invokespecial" , 0xb7 , 3 },
|
|
{ "invokestatic" , 0xb8 , 3 },
|
|
{ "invokeinterface" , 0xb9 , 5 },
|
|
{ "invokedynamic" , 0xba , 5 },
|
|
{ "new" , 0xbb , 3 },
|
|
{ "newarray" , 0xbc , 2 },
|
|
{ "anewarray" , 0xbd , 3 },
|
|
{ "arraylength" , 0xbe , 1 },
|
|
{ "athrow" , 0xbf , 1 },
|
|
{ "checkcast" , 0xc0 , 3 },
|
|
{ "instanceof" , 0xc1 , 3 },
|
|
{ "monitorenter" , 0xc2 , 1 },
|
|
{ "monitorexit" , 0xc3 , 1 },
|
|
{ "wide" , 0xc4 , 1 },
|
|
{ "multinewarray" , 0xc5 , 4 },
|
|
{ "ifnull" , 0xc6 , 3 },
|
|
{ "ifnonnull" , 0xc7 , 3 },
|
|
{ "goto_w" , 0xc8 , 5 },
|
|
{ "jsr_w" , 0xc9 , 5 },
|
|
{ "breakpoint" , 0xca , 1 },
|
|
{ "UNDEFINED" , 0xcb , 1 },
|
|
{ "UNDEFINED" , 0xcc , 1 },
|
|
{ "UNDEFINED" , 0xcd , 1 },
|
|
{ "UNDEFINED" , 0xce , 1 },
|
|
{ "UNDEFINED" , 0xcf , 1 },
|
|
{ "UNDEFINED" , 0xd0 , 1 },
|
|
{ "UNDEFINED" , 0xd1 , 1 },
|
|
{ "UNDEFINED" , 0xd2 , 1 },
|
|
{ "UNDEFINED" , 0xd3 , 1 },
|
|
{ "UNDEFINED" , 0xd4 , 1 },
|
|
{ "UNDEFINED" , 0xd5 , 1 },
|
|
{ "UNDEFINED" , 0xd6 , 1 },
|
|
{ "UNDEFINED" , 0xd7 , 1 },
|
|
{ "UNDEFINED" , 0xd8 , 1 },
|
|
{ "UNDEFINED" , 0xd9 , 1 },
|
|
{ "UNDEFINED" , 0xda , 1 },
|
|
{ "UNDEFINED" , 0xdb , 1 },
|
|
{ "UNDEFINED" , 0xdc , 1 },
|
|
{ "UNDEFINED" , 0xdd , 1 },
|
|
{ "UNDEFINED" , 0xde , 1 },
|
|
{ "UNDEFINED" , 0xdf , 1 },
|
|
{ "UNDEFINED" , 0xe0 , 1 },
|
|
{ "UNDEFINED" , 0xe1 , 1 },
|
|
{ "UNDEFINED" , 0xe2 , 1 },
|
|
{ "UNDEFINED" , 0xe3 , 1 },
|
|
{ "UNDEFINED" , 0xe4 , 1 },
|
|
{ "UNDEFINED" , 0xe5 , 1 },
|
|
{ "UNDEFINED" , 0xe6 , 1 },
|
|
{ "UNDEFINED" , 0xe7 , 1 },
|
|
{ "UNDEFINED" , 0xe8 , 1 },
|
|
{ "UNDEFINED" , 0xe9 , 1 },
|
|
{ "UNDEFINED" , 0xea , 1 },
|
|
{ "UNDEFINED" , 0xeb , 1 },
|
|
{ "UNDEFINED" , 0xec , 1 },
|
|
{ "UNDEFINED" , 0xed , 1 },
|
|
{ "UNDEFINED" , 0xee , 1 },
|
|
{ "UNDEFINED" , 0xef , 1 },
|
|
{ "UNDEFINED" , 0xf0 , 1 },
|
|
{ "UNDEFINED" , 0xf1 , 1 },
|
|
{ "UNDEFINED" , 0xf2 , 1 },
|
|
{ "UNDEFINED" , 0xf3 , 1 },
|
|
{ "UNDEFINED" , 0xf4 , 1 },
|
|
{ "UNDEFINED" , 0xf5 , 1 },
|
|
{ "UNDEFINED" , 0xf6 , 1 },
|
|
{ "UNDEFINED" , 0xf7 , 1 },
|
|
{ "UNDEFINED" , 0xf8 , 1 },
|
|
{ "UNDEFINED" , 0xf9 , 1 },
|
|
{ "UNDEFINED" , 0xfa , 1 },
|
|
{ "UNDEFINED" , 0xfb , 1 },
|
|
{ "UNDEFINED" , 0xfc , 1 },
|
|
{ "UNDEFINED" , 0xfd , 1 },
|
|
{ "impdep1" , 0xfe , 1 },
|
|
{ "impdep2" , 0xff , 1 }
|
|
}; |