comparison graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/VMToCompiler.java @ 15603:b7fb36e57da8

made Graal initialization be driven from Java to simplify sequencing and synchronization
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 May 2014 23:27:07 +0200
parents 063ec2920d21
children
comparison
equal deleted inserted replaced
15602:c73df62cbaee 15603:b7fb36e57da8
28 /** 28 /**
29 * Calls from HotSpot into Java. 29 * Calls from HotSpot into Java.
30 */ 30 */
31 public interface VMToCompiler { 31 public interface VMToCompiler {
32 32
33 void startRuntime() throws Throwable; 33 void startRuntime();
34 34
35 void startCompiler(boolean bootstrapEnabled) throws Throwable; 35 void startCompiler(boolean bootstrapEnabled) throws Throwable;
36 36
37 void bootstrap() throws Throwable; 37 void bootstrap() throws Throwable;
38 38