Lines Matching defs:INSTRUCTIONS

175   public static final Instruction[] INSTRUCTIONS = new Instruction[256];
184 INSTRUCTIONS[Constants.NOP] = NOP;
185 INSTRUCTIONS[Constants.ACONST_NULL] = ACONST_NULL;
186 INSTRUCTIONS[Constants.ICONST_M1] = ICONST_M1;
187 INSTRUCTIONS[Constants.ICONST_0] = ICONST_0;
188 INSTRUCTIONS[Constants.ICONST_1] = ICONST_1;
189 INSTRUCTIONS[Constants.ICONST_2] = ICONST_2;
190 INSTRUCTIONS[Constants.ICONST_3] = ICONST_3;
191 INSTRUCTIONS[Constants.ICONST_4] = ICONST_4;
192 INSTRUCTIONS[Constants.ICONST_5] = ICONST_5;
193 INSTRUCTIONS[Constants.LCONST_0] = LCONST_0;
194 INSTRUCTIONS[Constants.LCONST_1] = LCONST_1;
195 INSTRUCTIONS[Constants.FCONST_0] = FCONST_0;
196 INSTRUCTIONS[Constants.FCONST_1] = FCONST_1;
197 INSTRUCTIONS[Constants.FCONST_2] = FCONST_2;
198 INSTRUCTIONS[Constants.DCONST_0] = DCONST_0;
199 INSTRUCTIONS[Constants.DCONST_1] = DCONST_1;
200 INSTRUCTIONS[Constants.IALOAD] = IALOAD;
201 INSTRUCTIONS[Constants.LALOAD] = LALOAD;
202 INSTRUCTIONS[Constants.FALOAD] = FALOAD;
203 INSTRUCTIONS[Constants.DALOAD] = DALOAD;
204 INSTRUCTIONS[Constants.AALOAD] = AALOAD;
205 INSTRUCTIONS[Constants.BALOAD] = BALOAD;
206 INSTRUCTIONS[Constants.CALOAD] = CALOAD;
207 INSTRUCTIONS[Constants.SALOAD] = SALOAD;
208 INSTRUCTIONS[Constants.IASTORE] = IASTORE;
209 INSTRUCTIONS[Constants.LASTORE] = LASTORE;
210 INSTRUCTIONS[Constants.FASTORE] = FASTORE;
211 INSTRUCTIONS[Constants.DASTORE] = DASTORE;
212 INSTRUCTIONS[Constants.AASTORE] = AASTORE;
213 INSTRUCTIONS[Constants.BASTORE] = BASTORE;
214 INSTRUCTIONS[Constants.CASTORE] = CASTORE;
215 INSTRUCTIONS[Constants.SASTORE] = SASTORE;
216 INSTRUCTIONS[Constants.POP] = POP;
217 INSTRUCTIONS[Constants.POP2] = POP2;
218 INSTRUCTIONS[Constants.DUP] = DUP;
219 INSTRUCTIONS[Constants.DUP_X1] = DUP_X1;
220 INSTRUCTIONS[Constants.DUP_X2] = DUP_X2;
221 INSTRUCTIONS[Constants.DUP2] = DUP2;
222 INSTRUCTIONS[Constants.DUP2_X1] = DUP2_X1;
223 INSTRUCTIONS[Constants.DUP2_X2] = DUP2_X2;
224 INSTRUCTIONS[Constants.SWAP] = SWAP;
225 INSTRUCTIONS[Constants.IADD] = IADD;
226 INSTRUCTIONS[Constants.LADD] = LADD;
227 INSTRUCTIONS[Constants.FADD] = FADD;
228 INSTRUCTIONS[Constants.DADD] = DADD;
229 INSTRUCTIONS[Constants.ISUB] = ISUB;
230 INSTRUCTIONS[Constants.LSUB] = LSUB;
231 INSTRUCTIONS[Constants.FSUB] = FSUB;
232 INSTRUCTIONS[Constants.DSUB] = DSUB;
233 INSTRUCTIONS[Constants.IMUL] = IMUL;
234 INSTRUCTIONS[Constants.LMUL] = LMUL;
235 INSTRUCTIONS[Constants.FMUL] = FMUL;
236 INSTRUCTIONS[Constants.DMUL] = DMUL;
237 INSTRUCTIONS[Constants.IDIV] = IDIV;
238 INSTRUCTIONS[Constants.LDIV] = LDIV;
239 INSTRUCTIONS[Constants.FDIV] = FDIV;
240 INSTRUCTIONS[Constants.DDIV] = DDIV;
241 INSTRUCTIONS[Constants.IREM] = IREM;
242 INSTRUCTIONS[Constants.LREM] = LREM;
243 INSTRUCTIONS[Constants.FREM] = FREM;
244 INSTRUCTIONS[Constants.DREM] = DREM;
245 INSTRUCTIONS[Constants.INEG] = INEG;
246 INSTRUCTIONS[Constants.LNEG] = LNEG;
247 INSTRUCTIONS[Constants.FNEG] = FNEG;
248 INSTRUCTIONS[Constants.DNEG] = DNEG;
249 INSTRUCTIONS[Constants.ISHL] = ISHL;
250 INSTRUCTIONS[Constants.LSHL] = LSHL;
251 INSTRUCTIONS[Constants.ISHR] = ISHR;
252 INSTRUCTIONS[Constants.LSHR] = LSHR;
253 INSTRUCTIONS[Constants.IUSHR] = IUSHR;
254 INSTRUCTIONS[Constants.LUSHR] = LUSHR;
255 INSTRUCTIONS[Constants.IAND] = IAND;
256 INSTRUCTIONS[Constants.LAND] = LAND;
257 INSTRUCTIONS[Constants.IOR] = IOR;
258 INSTRUCTIONS[Constants.LOR] = LOR;
259 INSTRUCTIONS[Constants.IXOR] = IXOR;
260 INSTRUCTIONS[Constants.LXOR] = LXOR;
261 INSTRUCTIONS[Constants.I2L] = I2L;
262 INSTRUCTIONS[Constants.I2F] = I2F;
263 INSTRUCTIONS[Constants.I2D] = I2D;
264 INSTRUCTIONS[Constants.L2I] = L2I;
265 INSTRUCTIONS[Constants.L2F] = L2F;
266 INSTRUCTIONS[Constants.L2D] = L2D;
267 INSTRUCTIONS[Constants.F2I] = F2I;
268 INSTRUCTIONS[Constants.F2L] = F2L;
269 INSTRUCTIONS[Constants.F2D] = F2D;
270 INSTRUCTIONS[Constants.D2I] = D2I;
271 INSTRUCTIONS[Constants.D2L] = D2L;
272 INSTRUCTIONS[Constants.D2F] = D2F;
273 INSTRUCTIONS[Constants.I2B] = I2B;
274 INSTRUCTIONS[Constants.I2C] = I2C;
275 INSTRUCTIONS[Constants.I2S] = I2S;
276 INSTRUCTIONS[Constants.LCMP] = LCMP;
277 INSTRUCTIONS[Constants.FCMPL] = FCMPL;
278 INSTRUCTIONS[Constants.FCMPG] = FCMPG;
279 INSTRUCTIONS[Constants.DCMPL] = DCMPL;
280 INSTRUCTIONS[Constants.DCMPG] = DCMPG;
281 INSTRUCTIONS[Constants.IRETURN] = IRETURN;
282 INSTRUCTIONS[Constants.LRETURN] = LRETURN;
283 INSTRUCTIONS[Constants.FRETURN] = FRETURN;
284 INSTRUCTIONS[Constants.DRETURN] = DRETURN;
285 INSTRUCTIONS[Constants.ARETURN] = ARETURN;
286 INSTRUCTIONS[Constants.RETURN] = RETURN;
287 INSTRUCTIONS[Constants.ARRAYLENGTH] = ARRAYLENGTH;
288 INSTRUCTIONS[Constants.ATHROW] = ATHROW;
289 INSTRUCTIONS[Constants.MONITORENTER] = MONITORENTER;
290 INSTRUCTIONS[Constants.MONITOREXIT] = MONITOREXIT;