package js.tinyvm; /** * Machine-generated file. Do not modify. */ public interface OpCodeConstants { int OP_NOP = 0; int OP_ACONST_NULL = 1; int OP_ICONST_M1 = 2; int OP_ICONST_0 = 3; int OP_ICONST_1 = 4; int OP_ICONST_2 = 5; int OP_ICONST_3 = 6; int OP_ICONST_4 = 7; int OP_ICONST_5 = 8; int OP_LCONST_0 = 9; int OP_LCONST_1 = 10; int OP_FCONST_0 = 11; int OP_FCONST_1 = 12; int OP_FCONST_2 = 13; int OP_DCONST_0 = 14; int OP_DCONST_1 = 15; int OP_BIPUSH = 16; int OP_SIPUSH = 17; int OP_LDC = 18; int OP_LDC_W = 19; int OP_LDC2_W = 20; int OP_ILOAD = 21; int OP_LLOAD = 22; int OP_FLOAD = 23; int OP_DLOAD = 24; int OP_ALOAD = 25; int OP_ILOAD_0 = 26; int OP_ILOAD_1 = 27; int OP_ILOAD_2 = 28; int OP_ILOAD_3 = 29; int OP_LLOAD_0 = 30; int OP_LLOAD_1 = 31; int OP_LLOAD_2 = 32; int OP_LLOAD_3 = 33; int OP_FLOAD_0 = 34; int OP_FLOAD_1 = 35; int OP_FLOAD_2 = 36; int OP_FLOAD_3 = 37; int OP_DLOAD_0 = 38; int OP_DLOAD_1 = 39; int OP_DLOAD_2 = 40; int OP_DLOAD_3 = 41; int OP_ALOAD_0 = 42; int OP_ALOAD_1 = 43; int OP_ALOAD_2 = 44; int OP_ALOAD_3 = 45; int OP_IALOAD = 46; int OP_LALOAD = 47; int OP_FALOAD = 48; int OP_DALOAD = 49; int OP_AALOAD = 50; int OP_BALOAD = 51; int OP_CALOAD = 52; int OP_SALOAD = 53; int OP_ISTORE = 54; int OP_LSTORE = 55; int OP_FSTORE = 56; int OP_DSTORE = 57; int OP_ASTORE = 58; int OP_ISTORE_0 = 59; int OP_ISTORE_1 = 60; int OP_ISTORE_2 = 61; int OP_ISTORE_3 = 62; int OP_LSTORE_0 = 63; int OP_LSTORE_1 = 64; int OP_LSTORE_2 = 65; int OP_LSTORE_3 = 66; int OP_FSTORE_0 = 67; int OP_FSTORE_1 = 68; int OP_FSTORE_2 = 69; int OP_FSTORE_3 = 70; int OP_DSTORE_0 = 71; int OP_DSTORE_1 = 72; int OP_DSTORE_2 = 73; int OP_DSTORE_3 = 74; int OP_ASTORE_0 = 75; int OP_ASTORE_1 = 76; int OP_ASTORE_2 = 77; int OP_ASTORE_3 = 78; int OP_IASTORE = 79; int OP_LASTORE = 80; int OP_FASTORE = 81; int OP_DASTORE = 82; int OP_AASTORE = 83; int OP_BASTORE = 84; int OP_CASTORE = 85; int OP_SASTORE = 86; int OP_POP = 87; int OP_POP2 = 88; int OP_DUP = 89; int OP_DUP_X1 = 90; int OP_DUP_X2 = 91; int OP_DUP2 = 92; int OP_DUP2_X1 = 93; int OP_DUP2_X2 = 94; int OP_SWAP = 95; int OP_IADD = 96; int OP_LADD = 97; int OP_FADD = 98; int OP_DADD = 99; int OP_ISUB = 100; int OP_LSUB = 101; int OP_FSUB = 102; int OP_DSUB = 103; int OP_IMUL = 104; int OP_LMUL = 105; int OP_FMUL = 106; int OP_DMUL = 107; int OP_IDIV = 108; int OP_LDIV = 109; int OP_FDIV = 110; int OP_DDIV = 111; int OP_IREM = 112; int OP_LREM = 113; int OP_FREM = 114; int OP_DREM = 115; int OP_INEG = 116; int OP_LNEG = 117; int OP_FNEG = 118; int OP_DNEG = 119; int OP_ISHL = 120; int OP_LSHL = 121; int OP_ISHR = 122; int OP_LSHR = 123; int OP_IUSHR = 124; int OP_LUSHR = 125; int OP_IAND = 126; int OP_LAND = 127; int OP_IOR = 128; int OP_LOR = 129; int OP_IXOR = 130; int OP_LXOR = 131; int OP_IINC = 132; int OP_I2L = 133; int OP_I2F = 134; int OP_I2D = 135; int OP_L2I = 136; int OP_L2F = 137; int OP_L2D = 138; int OP_F2I = 139; int OP_F2L = 140; int OP_F2D = 141; int OP_D2I = 142; int OP_D2L = 143; int OP_D2F = 144; int OP_I2B = 145; int OP_I2C = 146; int OP_I2S = 147; int OP_LCMP = 148; int OP_FCMPL = 149; int OP_FCMPG = 150; int OP_DCMPL = 151; int OP_DCMPG = 152; int OP_IFEQ = 153; int OP_IFNE = 154; int OP_IFLT = 155; int OP_IFGE = 156; int OP_IFGT = 157; int OP_IFLE = 158; int OP_IF_ICMPEQ = 159; int OP_IF_ICMPNE = 160; int OP_IF_ICMPLT = 161; int OP_IF_ICMPGE = 162; int OP_IF_ICMPGT = 163; int OP_IF_ICMPLE = 164; int OP_IF_ACMPEQ = 165; int OP_IF_ACMPNE = 166; int OP_GOTO = 167; int OP_JSR = 168; int OP_RET = 169; int OP_TABLESWITCH = 170; int OP_LOOKUPSWITCH = 171; int OP_IRETURN = 172; int OP_LRETURN = 173; int OP_FRETURN = 174; int OP_DRETURN = 175; int OP_ARETURN = 176; int OP_RETURN = 177; int OP_GETSTATIC = 178; int OP_PUTSTATIC = 179; int OP_GETFIELD = 180; int OP_PUTFIELD = 181; int OP_INVOKEVIRTUAL = 182; int OP_INVOKESPECIAL = 183; int OP_INVOKESTATIC = 184; int OP_INVOKEINTERFACE = 185; int OP_XXXUNUSEDXXX = 186; int OP_NEW = 187; int OP_NEWARRAY = 188; int OP_ANEWARRAY = 189; int OP_ARRAYLENGTH = 190; int OP_ATHROW = 191; int OP_CHECKCAST = 192; int OP_INSTANCEOF = 193; int OP_MONITORENTER = 194; int OP_MONITOREXIT = 195; int OP_WIDE = 196; int OP_MULTIANEWARRAY = 197; int OP_IFNULL = 198; int OP_IFNONNULL = 199; int OP_GOTO_W = 200; int OP_JSR_W = 201; int OP_BREAKPOINT = 202; }