Home | History | Annotate | Download | only in peephole

Lines Matching defs:inlined

51     private static final int MAXIMUM_INLINED_CODE_LENGTH       = Integer.parseInt(System.getProperty("maximum.inlined.code.length",      "8"));
82 private boolean inlined;
94 * should be inlined, or, alternatively,
116 * should be inlined, or, alternatively,
119 * inlined invocation instructions.
154 System.err.println(" Inlined class = ["+clazz.getName()+"]");
155 System.err.println(" Inlined method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
202 // Update the code attribute if any code has been inlined.
233 // the modification of a few inlined instructions.
242 inlined = true;
430 inlined = false;
432 // Append a label, in case the invocation will be inlined.
446 // Was the method inlined?
447 if (inlined)
536 // Only inline if the code access of the inlined method allows it.