< prev index next >

src/java.base/share/classes/jdk/internal/org/objectweb/asm/Opcodes.java

Print this page
rev 14117 : 8145468: update java.lang APIs with new deprecations
Reviewed-by: XXX


 159 
 160     /**
 161      * Represents a compressed frame where locals are the same as the locals in
 162      * the previous frame, except that the last 1-3 locals are absent and with
 163      * an empty stack.
 164      */
 165     int F_CHOP = 2;
 166 
 167     /**
 168      * Represents a compressed frame with exactly the same locals as the
 169      * previous frame and with an empty stack.
 170      */
 171     int F_SAME = 3;
 172 
 173     /**
 174      * Represents a compressed frame with exactly the same locals as the
 175      * previous frame and with a single value on the stack.
 176      */
 177     int F_SAME1 = 4;
 178 
 179     Integer TOP = new Integer(0);
 180     Integer INTEGER = new Integer(1);
 181     Integer FLOAT = new Integer(2);
 182     Integer DOUBLE = new Integer(3);
 183     Integer LONG = new Integer(4);
 184     Integer NULL = new Integer(5);
 185     Integer UNINITIALIZED_THIS = new Integer(6);
 186 
 187     // opcodes // visit method (- = idem)
 188 
 189     int NOP = 0; // visitInsn
 190     int ACONST_NULL = 1; // -
 191     int ICONST_M1 = 2; // -
 192     int ICONST_0 = 3; // -
 193     int ICONST_1 = 4; // -
 194     int ICONST_2 = 5; // -
 195     int ICONST_3 = 6; // -
 196     int ICONST_4 = 7; // -
 197     int ICONST_5 = 8; // -
 198     int LCONST_0 = 9; // -
 199     int LCONST_1 = 10; // -
 200     int FCONST_0 = 11; // -
 201     int FCONST_1 = 12; // -
 202     int FCONST_2 = 13; // -
 203     int DCONST_0 = 14; // -
 204     int DCONST_1 = 15; // -
 205     int BIPUSH = 16; // visitIntInsn




 159 
 160     /**
 161      * Represents a compressed frame where locals are the same as the locals in
 162      * the previous frame, except that the last 1-3 locals are absent and with
 163      * an empty stack.
 164      */
 165     int F_CHOP = 2;
 166 
 167     /**
 168      * Represents a compressed frame with exactly the same locals as the
 169      * previous frame and with an empty stack.
 170      */
 171     int F_SAME = 3;
 172 
 173     /**
 174      * Represents a compressed frame with exactly the same locals as the
 175      * previous frame and with a single value on the stack.
 176      */
 177     int F_SAME1 = 4;
 178 
 179     Integer TOP = 0;
 180     Integer INTEGER = 1;
 181     Integer FLOAT = 2;
 182     Integer DOUBLE = 3;
 183     Integer LONG = 4;
 184     Integer NULL = 5;
 185     Integer UNINITIALIZED_THIS = 6;
 186 
 187     // opcodes // visit method (- = idem)
 188 
 189     int NOP = 0; // visitInsn
 190     int ACONST_NULL = 1; // -
 191     int ICONST_M1 = 2; // -
 192     int ICONST_0 = 3; // -
 193     int ICONST_1 = 4; // -
 194     int ICONST_2 = 5; // -
 195     int ICONST_3 = 6; // -
 196     int ICONST_4 = 7; // -
 197     int ICONST_5 = 8; // -
 198     int LCONST_0 = 9; // -
 199     int LCONST_1 = 10; // -
 200     int FCONST_0 = 11; // -
 201     int FCONST_1 = 12; // -
 202     int FCONST_2 = 13; // -
 203     int DCONST_0 = 14; // -
 204     int DCONST_1 = 15; // -
 205     int BIPUSH = 16; // visitIntInsn


< prev index next >