Home | History | Annotate | Download | only in compiler

Lines Matching refs:index

26     public static void load_local_object_var (final ByteArrayOStream out, final int index)
28 if (index <= 3)
30 out.write (_aload_0 + index); // aload_n
32 else if (index <= 0xFF)
35 index); // indexbyte
41 index >>> 8, // indexbyte1
42 index); // indexbyte2
46 public static void store_local_object_var (final ByteArrayOStream out, final int index)
48 if (index <= 3)
50 out.write (_astore_0 + index); // astore_n
52 else if (index <= 0xFF)
55 index); // indexbyte
61 index >>> 8, // indexbyte1
62 index); // indexbyte2
88 final int index = cls.getConstants ().add (new CONSTANT_Integer_info (value));
90 if (index <= 0xFF)
93 index); // index
98 index >>> 8, // indexbyte1
99 index); // indexbyte2
106 public static void push_constant_index (final ByteArrayOStream out, final int index)
108 if (index <= 0xFF)
111 index); // indexbyte
116 index >>> 8, // indexbyte1
117 index); // indexbyte2