comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ri/RiResolvedMethod.java @ 5150:fdd9dd4508fa

some GC fixes avoid non-Java bytecodes in code() array passed to Graal
author Christian Haeubl <christian.haeubl@oracle.com>
date Thu, 22 Mar 2012 18:54:02 -0700
parents eb6df44a1374
children f47c770756e6
comparison
equal deleted inserted replaced
5149:c5eaee66bfa1 5150:fdd9dd4508fa
36 */ 36 */
37 public interface RiResolvedMethod extends RiMethod { 37 public interface RiResolvedMethod extends RiMethod {
38 38
39 /** 39 /**
40 * Gets the bytecode of the method, if the method {@linkplain #isResolved()} and has code. 40 * Gets the bytecode of the method, if the method {@linkplain #isResolved()} and has code.
41 * The returned byte array does not contain breakpoints or non-Java bytecodes.
41 * @return the bytecode of the method or {@code null} if none is available 42 * @return the bytecode of the method or {@code null} if none is available
42 */ 43 */
43 byte[] code(); 44 byte[] code();
44 45
45 /** 46 /**