comparison graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/HotSpotResolvedJavaMethod.java @ 21630:9cc3571ef51d

Add getProfilingInfo(boolean includeNormal, boolean includeOSR) to ResolvedJavaMethod
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Fri, 29 May 2015 14:46:49 +0200
parents 36cf15e3219e
children
comparison
equal deleted inserted replaced
21629:36cf15e3219e 21630:9cc3571ef51d
82 * @param level 82 * @param level
83 * @return true if the currently installed code was generated at {@code level}. 83 * @return true if the currently installed code was generated at {@code level}.
84 */ 84 */
85 boolean hasCompiledCodeAtLevel(int level); 85 boolean hasCompiledCodeAtLevel(int level);
86 86
87 ProfilingInfo getCompilationProfilingInfo(boolean isOSR);
88
89 default boolean isDefault() { 87 default boolean isDefault() {
90 if (isConstructor()) { 88 if (isConstructor()) {
91 return false; 89 return false;
92 } 90 }
93 // Copied from java.lang.Method.isDefault() 91 // Copied from java.lang.Method.isDefault()