Home | History | Annotate | Download | only in util

Lines Matching refs:precompile

345         // Precompile some aliases first
346 map.put("iconst", precompile(Const.ICONST_0, Const.ICONST_5, Const.ICONST_M1));
350 map.put("lload", precompile(Const.LLOAD_0, Const.LLOAD_3, Const.LLOAD));
351 map.put("iload", precompile(Const.ILOAD_0, Const.ILOAD_3, Const.ILOAD));
352 map.put("dload", precompile(Const.DLOAD_0, Const.DLOAD_3, Const.DLOAD));
353 map.put("fload", precompile(Const.FLOAD_0, Const.FLOAD_3, Const.FLOAD));
354 map.put("aload", precompile(Const.ALOAD_0, Const.ALOAD_3, Const.ALOAD));
355 map.put("lstore", precompile(Const.LSTORE_0, Const.LSTORE_3, Const.LSTORE));
356 map.put("istore", precompile(Const.ISTORE_0, Const.ISTORE_3, Const.ISTORE));
357 map.put("dstore", precompile(Const.DSTORE_0, Const.DSTORE_3, Const.DSTORE));
358 map.put("fstore", precompile(Const.FSTORE_0, Const.FSTORE_3, Const.FSTORE));
359 map.put("astore", precompile(Const.ASTORE_0, Const.ASTORE_3, Const.ASTORE));
366 map.put(key, compilePattern(value)); // precompile all patterns
384 private static String precompile( final short from, final short to, final short extra ) {