comparison graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/CompilerToVMImpl.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 36cf15e3219e
comparison
equal deleted inserted replaced
21557:31fc2fce38f3 21558:d563baeca9df
25 25
26 import static com.oracle.jvmci.hotspot.InitTimer.*; 26 import static com.oracle.jvmci.hotspot.InitTimer.*;
27 27
28 import com.oracle.jvmci.code.*; 28 import com.oracle.jvmci.code.*;
29 29
30
31 /** 30 /**
32 * Entries into the HotSpot VM from Java code. 31 * Entries into the HotSpot VM from Java code.
33 */ 32 */
34 public class CompilerToVMImpl implements CompilerToVM { 33 public class CompilerToVMImpl implements CompilerToVM {
35 34
36 /** 35 /**
37 * Initializes the native part of the Graal runtime. 36 * Initializes the native part of the JVMCI runtime.
38 */ 37 */
39 private static native void init(); 38 private static native void init();
40 39
41 static { 40 static {
42 try (InitTimer t = timer("CompilerToVMImpl.init")) { 41 try (InitTimer t = timer("CompilerToVMImpl.init")) {