comparison graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/HotSpotJVMCIRuntimeProvider.java @ 21558:d563baeca9df

changed uses of Graal terminology to JVMCI (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 13:43:27 +0200
parents 48c1ebd24120
children
comparison
equal deleted inserted replaced
21557:31fc2fce38f3 21558:d563baeca9df
29 import com.oracle.jvmci.runtime.*; 29 import com.oracle.jvmci.runtime.*;
30 30
31 //JaCoCo Exclude 31 //JaCoCo Exclude
32 32
33 /** 33 /**
34 * Configuration information for the HotSpot Graal runtime. 34 * Configuration information for the HotSpot JVMCI runtime.
35 */ 35 */
36 public interface HotSpotJVMCIRuntimeProvider extends JVMCIRuntime { 36 public interface HotSpotJVMCIRuntimeProvider extends JVMCIRuntime {
37 37
38 HotSpotVMConfig getConfig(); 38 HotSpotVMConfig getConfig();
39 39
53 * @throws NullPointerException if {@code accessingClass} is {@code null} 53 * @throws NullPointerException if {@code accessingClass} is {@code null}
54 */ 54 */
55 JavaType lookupType(String name, HotSpotResolvedObjectType accessingType, boolean resolve); 55 JavaType lookupType(String name, HotSpotResolvedObjectType accessingType, boolean resolve);
56 56
57 /** 57 /**
58 * Gets the Graal mirror for a {@link Class} object. 58 * Gets the JVMCI mirror for a {@link Class} object.
59 * 59 *
60 * @return the {@link ResolvedJavaType} corresponding to {@code javaClass} 60 * @return the {@link ResolvedJavaType} corresponding to {@code javaClass}
61 */ 61 */
62 ResolvedJavaType fromClass(Class<?> clazz); 62 ResolvedJavaType fromClass(Class<?> clazz);
63 63