comparison graal/com.oracle.jvmci.meta/src/com/oracle/jvmci/meta/ResolvedJavaMethod.java @ 21789:5b9adb645217

fixed remnants of "graal" names in JVMCI code
author Doug Simon <doug.simon@oracle.com>
date Mon, 08 Jun 2015 20:24:51 +0200
parents 9cc3571ef51d
children
comparison
equal deleted inserted replaced
21788:c1610658bba0 21789:5b9adb645217
35 * Returns the bytecode of this method, if the method has code. The returned byte array does not 35 * Returns the bytecode of this method, if the method has code. The returned byte array does not
36 * contain breakpoints or non-Java bytecodes. This may return null if the 36 * contain breakpoints or non-Java bytecodes. This may return null if the
37 * {@link #getDeclaringClass() holder} is not {@link ResolvedJavaType#isLinked() linked}. 37 * {@link #getDeclaringClass() holder} is not {@link ResolvedJavaType#isLinked() linked}.
38 * 38 *
39 * The contained constant pool indices may not be the ones found in the original class file but 39 * The contained constant pool indices may not be the ones found in the original class file but
40 * they can be used with the Graal API (e.g. methods in {@link ConstantPool}). 40 * they can be used with the JVMCI API (e.g. methods in {@link ConstantPool}).
41 * 41 *
42 * @return the bytecode of the method, or {@code null} if {@code getCodeSize() == 0} or if the 42 * @return the bytecode of the method, or {@code null} if {@code getCodeSize() == 0} or if the
43 * code is not ready. 43 * code is not ready.
44 */ 44 */
45 byte[] getCode(); 45 byte[] getCode();