1 /*
   2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   3  *
   4  * This code is free software; you can redistribute it and/or modify it
   5  * under the terms of the GNU General Public License version 2 only, as
   6  * published by the Free Software Foundation.  Oracle designates this
   7  * particular file as subject to the "Classpath" exception as provided
   8  * by Oracle in the LICENSE file that accompanied this code.
   9  *
  10  * This code is distributed in the hope that it will be useful, but WITHOUT
  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  */
  24 
  25 /*
  26  * This file is available under and governed by the GNU General Public
  27  * License version 2 only, as published by the Free Software Foundation.
  28  * However, the following notice accompanied the original version of this
  29  * file:
  30  *
  31  * ASM: a very small and fast Java bytecode manipulation framework
  32  * Copyright (c) 2000-2011 INRIA, France Telecom
  33  * All rights reserved.
  34  *
  35  * Redistribution and use in source and binary forms, with or without
  36  * modification, are permitted provided that the following conditions
  37  * are met:
  38  * 1. Redistributions of source code must retain the above copyright
  39  *    notice, this list of conditions and the following disclaimer.
  40  * 2. Redistributions in binary form must reproduce the above copyright
  41  *    notice, this list of conditions and the following disclaimer in the
  42  *    documentation and/or other materials provided with the distribution.
  43  * 3. Neither the name of the copyright holders nor the names of its
  44  *    contributors may be used to endorse or promote products derived from
  45  *    this software without specific prior written permission.
  46  *
  47  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  48  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  49  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  50  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  51  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  52  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  53  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  54  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  55  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  56  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  57  * THE POSSIBILITY OF SUCH DAMAGE.
  58  */
  59 package jdk.internal.org.objectweb.asm;
  60 
  61 /**
  62  * Defines the JVM opcodes, access flags and array type codes. This interface
  63  * does not define all the JVM opcodes because some opcodes are automatically
  64  * handled. For example, the xLOAD and xSTORE opcodes are automatically replaced
  65  * by xLOAD_n and xSTORE_n opcodes when possible. The xLOAD_n and xSTORE_n
  66  * opcodes are therefore not defined in this interface. Likewise for LDC,
  67  * automatically replaced by LDC_W or LDC2_W when necessary, WIDE, GOTO_W and
  68  * JSR_W.
  69  *
  70  * @author Eric Bruneton
  71  * @author Eugene Kuleshov
  72  */
  73 public interface Opcodes {
  74 
  75     // ASM API versions
  76 
  77     int ASM4 = 4 << 16 | 0 << 8 | 0;
  78     int ASM5 = 5 << 16 | 0 << 8 | 0;
  79 
  80     // versions
  81 
  82     int V1_1 = 3 << 16 | 45;
  83     int V1_2 = 0 << 16 | 46;
  84     int V1_3 = 0 << 16 | 47;
  85     int V1_4 = 0 << 16 | 48;
  86     int V1_5 = 0 << 16 | 49;
  87     int V1_6 = 0 << 16 | 50;
  88     int V1_7 = 0 << 16 | 51;
  89     int V1_8 = 0 << 16 | 52;
  90 
  91     // access flags
  92 
  93     int ACC_PUBLIC = 0x0001; // class, field, method
  94     int ACC_PRIVATE = 0x0002; // class, field, method
  95     int ACC_PROTECTED = 0x0004; // class, field, method
  96     int ACC_STATIC = 0x0008; // field, method
  97     int ACC_FINAL = 0x0010; // class, field, method, parameter
  98     int ACC_SUPER = 0x0020; // class
  99     int ACC_SYNCHRONIZED = 0x0020; // method
 100     int ACC_VOLATILE = 0x0040; // field
 101     int ACC_BRIDGE = 0x0040; // method
 102     int ACC_VARARGS = 0x0080; // method
 103     int ACC_TRANSIENT = 0x0080; // field
 104     int ACC_NATIVE = 0x0100; // method
 105     int ACC_INTERFACE = 0x0200; // class
 106     int ACC_ABSTRACT = 0x0400; // class, method
 107     int ACC_STRICT = 0x0800; // method
 108     int ACC_SYNTHETIC = 0x1000; // class, field, method, parameter
 109     int ACC_ANNOTATION = 0x2000; // class
 110     int ACC_ENUM = 0x4000; // class(?) field inner
 111     int ACC_MANDATED = 0x8000; // parameter
 112 
 113     // ASM specific pseudo access flags
 114 
 115     int ACC_DEPRECATED = 0x20000; // class, field, method
 116 
 117     // types for NEWARRAY
 118 
 119     int T_BOOLEAN = 4;
 120     int T_CHAR = 5;
 121     int T_FLOAT = 6;
 122     int T_DOUBLE = 7;
 123     int T_BYTE = 8;
 124     int T_SHORT = 9;
 125     int T_INT = 10;
 126     int T_LONG = 11;
 127 
 128     // tags for Handle
 129 
 130     int H_GETFIELD = 1;
 131     int H_GETSTATIC = 2;
 132     int H_PUTFIELD = 3;
 133     int H_PUTSTATIC = 4;
 134     int H_INVOKEVIRTUAL = 5;
 135     int H_INVOKESTATIC = 6;
 136     int H_INVOKESPECIAL = 7;
 137     int H_NEWINVOKESPECIAL = 8;
 138     int H_INVOKEINTERFACE = 9;
 139 
 140     // stack map frame types
 141 
 142     /**
 143      * Represents an expanded frame. See {@link ClassReader#EXPAND_FRAMES}.
 144      */
 145     int F_NEW = -1;
 146 
 147     /**
 148      * Represents a compressed frame with complete frame data.
 149      */
 150     int F_FULL = 0;
 151 
 152     /**
 153      * Represents a compressed frame where locals are the same as the locals in
 154      * the previous frame, except that additional 1-3 locals are defined, and
 155      * with an empty stack.
 156      */
 157     int F_APPEND = 1;
 158 
 159     /**
 160      * Represents a compressed frame where locals are the same as the locals in
 161      * the previous frame, except that the last 1-3 locals are absent and with
 162      * an empty stack.
 163      */
 164     int F_CHOP = 2;
 165 
 166     /**
 167      * Represents a compressed frame with exactly the same locals as the
 168      * previous frame and with an empty stack.
 169      */
 170     int F_SAME = 3;
 171 
 172     /**
 173      * Represents a compressed frame with exactly the same locals as the
 174      * previous frame and with a single value on the stack.
 175      */
 176     int F_SAME1 = 4;
 177 
 178     Integer TOP = new Integer(0);
 179     Integer INTEGER = new Integer(1);
 180     Integer FLOAT = new Integer(2);
 181     Integer DOUBLE = new Integer(3);
 182     Integer LONG = new Integer(4);
 183     Integer NULL = new Integer(5);
 184     Integer UNINITIALIZED_THIS = new Integer(6);
 185 
 186     // opcodes // visit method (- = idem)
 187 
 188     int NOP = 0; // visitInsn
 189     int ACONST_NULL = 1; // -
 190     int ICONST_M1 = 2; // -
 191     int ICONST_0 = 3; // -
 192     int ICONST_1 = 4; // -
 193     int ICONST_2 = 5; // -
 194     int ICONST_3 = 6; // -
 195     int ICONST_4 = 7; // -
 196     int ICONST_5 = 8; // -
 197     int LCONST_0 = 9; // -
 198     int LCONST_1 = 10; // -
 199     int FCONST_0 = 11; // -
 200     int FCONST_1 = 12; // -
 201     int FCONST_2 = 13; // -
 202     int DCONST_0 = 14; // -
 203     int DCONST_1 = 15; // -
 204     int BIPUSH = 16; // visitIntInsn
 205     int SIPUSH = 17; // -
 206     int LDC = 18; // visitLdcInsn
 207     // int LDC_W = 19; // -
 208     // int LDC2_W = 20; // -
 209     int ILOAD = 21; // visitVarInsn
 210     int LLOAD = 22; // -
 211     int FLOAD = 23; // -
 212     int DLOAD = 24; // -
 213     int ALOAD = 25; // -
 214     // int ILOAD_0 = 26; // -
 215     // int ILOAD_1 = 27; // -
 216     // int ILOAD_2 = 28; // -
 217     // int ILOAD_3 = 29; // -
 218     // int LLOAD_0 = 30; // -
 219     // int LLOAD_1 = 31; // -
 220     // int LLOAD_2 = 32; // -
 221     // int LLOAD_3 = 33; // -
 222     // int FLOAD_0 = 34; // -
 223     // int FLOAD_1 = 35; // -
 224     // int FLOAD_2 = 36; // -
 225     // int FLOAD_3 = 37; // -
 226     // int DLOAD_0 = 38; // -
 227     // int DLOAD_1 = 39; // -
 228     // int DLOAD_2 = 40; // -
 229     // int DLOAD_3 = 41; // -
 230     // int ALOAD_0 = 42; // -
 231     // int ALOAD_1 = 43; // -
 232     // int ALOAD_2 = 44; // -
 233     // int ALOAD_3 = 45; // -
 234     int IALOAD = 46; // visitInsn
 235     int LALOAD = 47; // -
 236     int FALOAD = 48; // -
 237     int DALOAD = 49; // -
 238     int AALOAD = 50; // -
 239     int BALOAD = 51; // -
 240     int CALOAD = 52; // -
 241     int SALOAD = 53; // -
 242     int ISTORE = 54; // visitVarInsn
 243     int LSTORE = 55; // -
 244     int FSTORE = 56; // -
 245     int DSTORE = 57; // -
 246     int ASTORE = 58; // -
 247     // int ISTORE_0 = 59; // -
 248     // int ISTORE_1 = 60; // -
 249     // int ISTORE_2 = 61; // -
 250     // int ISTORE_3 = 62; // -
 251     // int LSTORE_0 = 63; // -
 252     // int LSTORE_1 = 64; // -
 253     // int LSTORE_2 = 65; // -
 254     // int LSTORE_3 = 66; // -
 255     // int FSTORE_0 = 67; // -
 256     // int FSTORE_1 = 68; // -
 257     // int FSTORE_2 = 69; // -
 258     // int FSTORE_3 = 70; // -
 259     // int DSTORE_0 = 71; // -
 260     // int DSTORE_1 = 72; // -
 261     // int DSTORE_2 = 73; // -
 262     // int DSTORE_3 = 74; // -
 263     // int ASTORE_0 = 75; // -
 264     // int ASTORE_1 = 76; // -
 265     // int ASTORE_2 = 77; // -
 266     // int ASTORE_3 = 78; // -
 267     int IASTORE = 79; // visitInsn
 268     int LASTORE = 80; // -
 269     int FASTORE = 81; // -
 270     int DASTORE = 82; // -
 271     int AASTORE = 83; // -
 272     int BASTORE = 84; // -
 273     int CASTORE = 85; // -
 274     int SASTORE = 86; // -
 275     int POP = 87; // -
 276     int POP2 = 88; // -
 277     int DUP = 89; // -
 278     int DUP_X1 = 90; // -
 279     int DUP_X2 = 91; // -
 280     int DUP2 = 92; // -
 281     int DUP2_X1 = 93; // -
 282     int DUP2_X2 = 94; // -
 283     int SWAP = 95; // -
 284     int IADD = 96; // -
 285     int LADD = 97; // -
 286     int FADD = 98; // -
 287     int DADD = 99; // -
 288     int ISUB = 100; // -
 289     int LSUB = 101; // -
 290     int FSUB = 102; // -
 291     int DSUB = 103; // -
 292     int IMUL = 104; // -
 293     int LMUL = 105; // -
 294     int FMUL = 106; // -
 295     int DMUL = 107; // -
 296     int IDIV = 108; // -
 297     int LDIV = 109; // -
 298     int FDIV = 110; // -
 299     int DDIV = 111; // -
 300     int IREM = 112; // -
 301     int LREM = 113; // -
 302     int FREM = 114; // -
 303     int DREM = 115; // -
 304     int INEG = 116; // -
 305     int LNEG = 117; // -
 306     int FNEG = 118; // -
 307     int DNEG = 119; // -
 308     int ISHL = 120; // -
 309     int LSHL = 121; // -
 310     int ISHR = 122; // -
 311     int LSHR = 123; // -
 312     int IUSHR = 124; // -
 313     int LUSHR = 125; // -
 314     int IAND = 126; // -
 315     int LAND = 127; // -
 316     int IOR = 128; // -
 317     int LOR = 129; // -
 318     int IXOR = 130; // -
 319     int LXOR = 131; // -
 320     int IINC = 132; // visitIincInsn
 321     int I2L = 133; // visitInsn
 322     int I2F = 134; // -
 323     int I2D = 135; // -
 324     int L2I = 136; // -
 325     int L2F = 137; // -
 326     int L2D = 138; // -
 327     int F2I = 139; // -
 328     int F2L = 140; // -
 329     int F2D = 141; // -
 330     int D2I = 142; // -
 331     int D2L = 143; // -
 332     int D2F = 144; // -
 333     int I2B = 145; // -
 334     int I2C = 146; // -
 335     int I2S = 147; // -
 336     int LCMP = 148; // -
 337     int FCMPL = 149; // -
 338     int FCMPG = 150; // -
 339     int DCMPL = 151; // -
 340     int DCMPG = 152; // -
 341     int IFEQ = 153; // visitJumpInsn
 342     int IFNE = 154; // -
 343     int IFLT = 155; // -
 344     int IFGE = 156; // -
 345     int IFGT = 157; // -
 346     int IFLE = 158; // -
 347     int IF_ICMPEQ = 159; // -
 348     int IF_ICMPNE = 160; // -
 349     int IF_ICMPLT = 161; // -
 350     int IF_ICMPGE = 162; // -
 351     int IF_ICMPGT = 163; // -
 352     int IF_ICMPLE = 164; // -
 353     int IF_ACMPEQ = 165; // -
 354     int IF_ACMPNE = 166; // -
 355     int GOTO = 167; // -
 356     int JSR = 168; // -
 357     int RET = 169; // visitVarInsn
 358     int TABLESWITCH = 170; // visiTableSwitchInsn
 359     int LOOKUPSWITCH = 171; // visitLookupSwitch
 360     int IRETURN = 172; // visitInsn
 361     int LRETURN = 173; // -
 362     int FRETURN = 174; // -
 363     int DRETURN = 175; // -
 364     int ARETURN = 176; // -
 365     int RETURN = 177; // -
 366     int GETSTATIC = 178; // visitFieldInsn
 367     int PUTSTATIC = 179; // -
 368     int GETFIELD = 180; // -
 369     int PUTFIELD = 181; // -
 370     int INVOKEVIRTUAL = 182; // visitMethodInsn
 371     int INVOKESPECIAL = 183; // -
 372     int INVOKESTATIC = 184; // -
 373     int INVOKEINTERFACE = 185; // -
 374     int INVOKEDYNAMIC = 186; // visitInvokeDynamicInsn
 375     int NEW = 187; // visitTypeInsn
 376     int NEWARRAY = 188; // visitIntInsn
 377     int ANEWARRAY = 189; // visitTypeInsn
 378     int ARRAYLENGTH = 190; // visitInsn
 379     int ATHROW = 191; // -
 380     int CHECKCAST = 192; // visitTypeInsn
 381     int INSTANCEOF = 193; // -
 382     int MONITORENTER = 194; // visitInsn
 383     int MONITOREXIT = 195; // -
 384     // int WIDE = 196; // NOT VISITED
 385     int MULTIANEWARRAY = 197; // visitMultiANewArrayInsn
 386     int IFNULL = 198; // visitJumpInsn
 387     int IFNONNULL = 199; // -
 388     // int GOTO_W = 200; // -
 389     // int JSR_W = 201; // -
 390 }