亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jvmbytecodes.jrag

?? JDK1.4編譯器后端
?? JRAG
字號:
/* * The JastAdd Extensible Java Compiler (http://jastadd.org) is covered * by the modified BSD License. You should have received a copy of the * modified BSD license with this compiler. *  * Copyright (c) 2005-2008, Torbjorn Ekman * All rights reserved. */import java.io.*;aspect JVMBytecodes {  class Bytecode {    public final static byte NOP = 0;    public final static byte ACONST_NULL = 1;    public final static byte ICONST_M1 = 2;    public final static byte ICONST_0 = 3;    public final static byte ICONST_1 = 4;    public final static byte ICONST_2 = 5;    public final static byte ICONST_3 = 6;    public final static byte ICONST_4 = 7;    public final static byte ICONST_5 = 8;    public final static byte LCONST_0 = 9;    public final static byte LCONST_1 = 10;    public final static byte FCONST_0 = 11;    public final static byte FCONST_1 = 12;    public final static byte FCONST_2 = 13;    public final static byte DCONST_0 = 14;    public final static byte DCONST_1 = 15;    public final static byte BIPUSH = 16;    public final static byte SIPUSH = 17;    public final static byte LDC = 18;    public final static byte LDC_W = 19;    public final static byte LDC2_W = 20;    public final static byte ILOAD = 21;    public final static byte LLOAD = 22;    public final static byte FLOAD = 23;    public final static byte DLOAD = 24;    public final static byte ALOAD = 25;    public final static byte ILOAD_0 = 26;    public final static byte ILOAD_1 = 27;    public final static byte ILOAD_2 = 28;    public final static byte ILOAD_3 = 29;    public final static byte LLOAD_0 = 30;    public final static byte LLOAD_1 = 31;    public final static byte LLOAD_2 = 32;    public final static byte LLOAD_3 = 33;    public final static byte FLOAD_0 = 34;    public final static byte FLOAD_1 = 35;    public final static byte FLOAD_2 = 36;    public final static byte FLOAD_3 = 37;    public final static byte DLOAD_0 = 38;    public final static byte DLOAD_1 = 39;    public final static byte DLOAD_2 = 40;    public final static byte DLOAD_3 = 41;    public final static byte ALOAD_0 = 42;    public final static byte ALOAD_1 = 43;    public final static byte ALOAD_2 = 44;    public final static byte ALOAD_3 = 45;    public final static byte IALOAD = 46;    public final static byte LALOAD = 47;    public final static byte FALOAD = 48;    public final static byte DALOAD = 49;    public final static byte AALOAD = 50;    public final static byte BALOAD = 51;    public final static byte CALOAD = 52;    public final static byte SALOAD = 53;    public final static byte ISTORE = 54;    public final static byte LSTORE = 55;    public final static byte FSTORE = 56;    public final static byte DSTORE = 57;    public final static byte ASTORE = 58;    public final static byte ISTORE_0 = 59;    public final static byte ISTORE_1 = 60;    public final static byte ISTORE_2 = 61;    public final static byte ISTORE_3 = 62;    public final static byte LSTORE_0 = 63;    public final static byte LSTORE_1 = 64;    public final static byte LSTORE_2 = 65;    public final static byte LSTORE_3 = 66;    public final static byte FSTORE_0 = 67;    public final static byte FSTORE_1 = 68;    public final static byte FSTORE_2 = 69;    public final static byte FSTORE_3 = 70;    public final static byte DSTORE_0 = 71;    public final static byte DSTORE_1 = 72;    public final static byte DSTORE_2 = 73;    public final static byte DSTORE_3 = 74;    public final static byte ASTORE_0 = 75;    public final static byte ASTORE_1 = 76;    public final static byte ASTORE_2 = 77;    public final static byte ASTORE_3 = 78;    public final static byte IASTORE = 79;    public final static byte LASTORE = 80;    public final static byte FASTORE = 81;    public final static byte DASTORE = 82;    public final static byte AASTORE = 83;    public final static byte BASTORE = 84;    public final static byte CASTORE = 85;    public final static byte SASTORE = 86;    public final static byte POP = 87;    public final static byte POP2 = 88;    public final static byte DUP = 89;    public final static byte DUP_X1 = 90;    public final static byte DUP_X2 = 91;    public final static byte DUP2 = 92;    public final static byte DUP2_X1 = 93;    public final static byte DUP2_X2 = 94 ;    public final static byte SWAP = 95;    public final static byte IADD = 96;    public final static byte LADD = 97;    public final static byte FADD = 98;    public final static byte DADD = 99;    public final static byte ISUB = 100;    public final static byte LSUB = 101;    public final static byte FSUB = 102;    public final static byte DSUB = 103;    public final static byte IMUL = 104;    public final static byte LMUL = 105;    public final static byte FMUL = 106;    public final static byte DMUL = 107;    public final static byte IDIV = 108;    public final static byte LDIV = 109;    public final static byte FDIV = 110;    public final static byte DDIV = 111;    public final static byte IREM = 112;    public final static byte LREM = 113;    public final static byte FREM = 114;    public final static byte DREM = 115;    public final static byte INEG = 116;    public final static byte LNEG = 117;    public final static byte FNEG = 118;    public final static byte DNEG = 119;    public final static byte ISHL = 120;    public final static byte LSHL = 121;    public final static byte ISHR = 122;    public final static byte LSHR = 123;    public final static byte IUSHR = 124;    public final static byte LUSHR = 125;    public final static byte IAND = 126;    public final static byte LAND = 127;    public final static byte IOR = -256+128;    public final static byte LOR = -256+129;    public final static byte IXOR = -256+130;    public final static byte LXOR = -256+131;    public final static byte IINC = -256+132;    public final static byte I2L = -256+133;    public final static byte I2F = -256+134;    public final static byte I2D = -256+135;    public final static byte L2I = -256+136;    public final static byte L2F = -256+137;    public final static byte L2D = -256+138;    public final static byte F2I = -256+139;    public final static byte F2L = -256+140;    public final static byte F2D = -256+141;    public final static byte D2I = -256+142;    public final static byte D2L = -256+143;    public final static byte D2F = -256+144;    public final static byte I2B = -256+145;    public final static byte I2C = -256+146;    public final static byte I2S = -256+147;    public final static byte LCMP = -256+148;    public final static byte FCMPL = -256+149;    public final static byte FCMPG = -256+150;    public final static byte DCMPL = -256+151;    public final static byte DCMPG = -256+152;    public final static byte IFEQ = -256+153;    public final static byte IFNE = -256+154;    public final static byte IFLT = -256+155;    public final static byte IFGE = -256+156;    public final static byte IFGT = -256+157;    public final static byte IFLE = -256+158;    public final static byte IF_ICMPEQ = -256+159;    public final static byte IF_ICMPNE = -256+160;    public final static byte IF_ICMPLT = -256+161;    public final static byte IF_ICMPGE = -256+162;    public final static byte IF_ICMPGT = -256+163;    public final static byte IF_ICMPLE = -256+164;    public final static byte IF_ACMPEQ = -256+165;    public final static byte IF_ACMPNE = -256+166;    public final static byte GOTO = -256+167;    public final static byte JSR = -256+168;    public final static byte RET = -256+169;    public final static byte TABLESWITCH = -256+170;    public final static byte LOOKUPSWITCH = -256+171;    public final static byte IRETURN = -256+172;    public final static byte LRETURN = -256+173;    public final static byte FRETURN = -256+174 ;    public final static byte DRETURN = -256+175;    public final static byte ARETURN = -256+176;    public final static byte RETURN = -256+177;    public final static byte GETSTATIC = -256+178 ;    public final static byte PUTSTATIC = -256+179;    public final static byte GETFIELD = -256+180;    public final static byte PUTFIELD = -256+181;    public final static byte INVOKEVIRTUAL = -256+182;    public final static byte INVOKESPECIAL = -256+183;    public final static byte INVOKESTATIC = -256+184;    public final static byte INVOKEINTERFACE = -256+185;    //Opcode 186 is unused    public final static byte NEW = -256+187;    public final static byte NEWARRAY = -256+188;    public final static byte ANEWARRAY = -256+189;    public final static byte ARRAYLENGTH = -256+190;    public final static byte ATHROW = -256+191;    public final static byte CHECKCAST = -256+192;    public final static byte INSTANCEOF = -256+193;    public final static byte MONITORENTER = -256+194;    public final static byte MONITOREXIT = -256+195;    public final static byte WIDE = -256+196;    public final static byte MULTIANEWARRAY = -256+197;    public final static byte IFNULL = -256+198;    public final static byte IFNONNULL = -256+199;    public final static byte GOTO_W = -256+200;    public final static byte JSR_W = -256+201;    public final static byte BREAKPOINT = -256+202;    public final static byte IMPDEP1 = -256+254;    public final static byte IMPDEP2 = -256+255;     }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久三| 久草这里只有精品视频| 国产精品短视频| 欧美成人a∨高清免费观看| 欧美视频自拍偷拍| 色婷婷综合久久久中文字幕| 韩国精品主播一区二区在线观看| 午夜久久久久久久久| 亚洲精品福利视频网站| 国产精品午夜在线观看| 国产肉丝袜一区二区| 久久先锋影音av鲁色资源网| 91精品国产综合久久小美女| 欧美丝袜自拍制服另类| 色天使色偷偷av一区二区| 91色九色蝌蚪| 91理论电影在线观看| 91视频观看视频| 91丝袜呻吟高潮美腿白嫩在线观看| 国产91精品露脸国语对白| 国产精品一区二区在线观看不卡| 日韩精品一二三四| 日韩电影免费在线观看网站| 五月婷婷欧美视频| 天堂久久一区二区三区| 日本视频在线一区| 亚洲一本大道在线| 一区二区在线观看不卡| 亚洲精品videosex极品| 久久久高清一区二区三区| 国产欧美精品一区二区三区四区| 久久久久国产成人精品亚洲午夜| 国产性做久久久久久| 国产精品久久综合| 亚洲综合一区二区三区| 日日夜夜精品视频天天综合网| 日韩一区在线看| 一区二区三区精密机械公司| 亚瑟在线精品视频| 免费国产亚洲视频| 九九**精品视频免费播放| 国产曰批免费观看久久久| 高清在线不卡av| 国产99久久久久久免费看农村| 激情深爱一区二区| 久久av老司机精品网站导航| 日韩在线观看一区二区| 国产一区免费电影| 99热精品国产| 91麻豆精品国产| 国产三级三级三级精品8ⅰ区| 国产精品传媒入口麻豆| 香蕉久久夜色精品国产使用方法| 日韩成人一区二区| 成人免费毛片app| 欧洲色大大久久| 日韩精品一区二区三区四区视频| 精品欧美乱码久久久久久| 国产精品久久久久久久岛一牛影视| 亚洲欧美日韩国产综合在线| 亚洲大片在线观看| 日本中文字幕一区二区有限公司| 国产成人综合亚洲91猫咪| 国产成人一级电影| 91高清视频免费看| 欧美午夜片在线看| 久久亚洲欧美国产精品乐播 | 欧美日韩国产另类一区| 精品国产91乱码一区二区三区| 国产精品每日更新在线播放网址| 亚洲电影在线播放| 国产成人一级电影| 91精品在线麻豆| 国产精品美女久久久久久久| 亚洲男人天堂av| 亚洲图片一区二区| 麻豆91精品视频| 色域天天综合网| 久久久噜噜噜久久人人看 | 91免费看视频| 日韩精品中文字幕一区| 亚洲码国产岛国毛片在线| 久久99精品一区二区三区| 欧美午夜片在线看| 亚洲欧美在线另类| 国内不卡的二区三区中文字幕| 欧美日韩精品欧美日韩精品一| 国产精品电影一区二区| 国产乱码精品一区二区三区五月婷| 91久久精品日日躁夜夜躁欧美| 91精品久久久久久久91蜜桃| ...av二区三区久久精品| 久久国产剧场电影| 欧美日韩国产高清一区二区三区| 中文字幕一区av| 懂色av一区二区三区蜜臀| 精品噜噜噜噜久久久久久久久试看| 亚洲一区二区三区四区在线免费观看 | 日韩网站在线看片你懂的| ...av二区三区久久精品| 日本三级韩国三级欧美三级| 国产不卡在线一区| 精品1区2区在线观看| 美女精品一区二区| 精品视频一区三区九区| 亚洲美女区一区| 不卡视频免费播放| 欧美韩国日本综合| 国产精品一二三四| 精品成人一区二区| 久久se精品一区二区| 欧美一区二区三区影视| 亚洲第一精品在线| 欧美视频日韩视频| 亚洲国产精品影院| 欧美视频精品在线| 亚洲图片自拍偷拍| 欧美日韩国产在线播放网站| 亚洲一二三四区不卡| 色视频欧美一区二区三区| 精品久久人人做人人爽| 精品综合久久久久久8888| 日韩欧美中文一区二区| 久热成人在线视频| 欧美第一区第二区| 国内精品伊人久久久久av一坑| 精品久久久网站| 国产一区二区三区| 日韩欧美你懂的| 经典三级一区二区| 日韩欧美国产不卡| 精彩视频一区二区| 精品福利一区二区三区免费视频| 久久精品国产免费看久久精品| 欧美高清dvd| 亚洲国产cao| 日韩一区二区三区四区| 精品一区二区免费在线观看| 精品99久久久久久| 成人美女视频在线看| 亚洲免费av高清| 欧美三级一区二区| 美女一区二区三区| 国产亚洲欧洲997久久综合| 成人性视频免费网站| 亚洲久草在线视频| 欧美日本一区二区在线观看| 日韩精品色哟哟| 精品成人私密视频| 国产成人啪午夜精品网站男同| 国产精品美女久久久久av爽李琼| 91在线高清观看| 午夜精品在线看| 欧美精品一区二区高清在线观看| 国产91综合网| 亚洲电影一区二区三区| 精品国产sm最大网站免费看| 波多野结衣一区二区三区 | 亚洲黄色av一区| 欧美另类高清zo欧美| 极品少妇xxxx偷拍精品少妇| 亚洲国产成人自拍| 欧美日韩一区二区欧美激情| 国产精品一线二线三线精华| 一本色道久久综合亚洲精品按摩 | 国产成人免费视频网站| 亚洲午夜激情av| 欧美va日韩va| 成人动漫视频在线| 午夜激情久久久| 久久久精品影视| 欧美日韩激情一区二区| 丁香婷婷深情五月亚洲| 一区二区三区四区不卡在线| 欧美一二区视频| 欧美精品视频www在线观看| 国产夫妻精品视频| 免费观看久久久4p| 综合激情网...| 亚洲国产精品av| 日韩一区和二区| 欧美日韩一区高清| 国产一区二区三区最好精华液 | 国产suv一区二区三区88区| 免费观看日韩av| 夜色激情一区二区| 亚洲女与黑人做爰| 日韩欧美www| 欧美精品成人一区二区三区四区| 91原创在线视频| 国产美女一区二区| 国产一区欧美二区| 日韩高清在线观看| 亚洲一区二区三区四区的 | 国产精品热久久久久夜色精品三区| 欧美一区二区三区在线观看视频| 色婷婷精品大视频在线蜜桃视频| 丁香天五香天堂综合| 精东粉嫩av免费一区二区三区| 免费成人在线视频观看|