comparison graal/com.oracle.jvmci.debug/src/com/oracle/jvmci/debug/DebugEnvironment.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 3d15183f3c93
children
comparison
equal deleted inserted replaced
21788:c1610658bba0 21789:5b9adb645217
31 31
32 public class DebugEnvironment { 32 public class DebugEnvironment {
33 33
34 public static JVMCIDebugConfig initialize(PrintStream log) { 34 public static JVMCIDebugConfig initialize(PrintStream log) {
35 35
36 // Ensure Graal runtime is initialized prior to Debug being initialized as the former
37 // may include processing command line options used by the latter.
38 // Graal.getRuntime();
39
40 if (!Debug.isEnabled()) { 36 if (!Debug.isEnabled()) {
41 log.println("WARNING: Scope debugging needs to be enabled with -esa or -D" + Debug.Initialization.INITIALIZER_PROPERTY_NAME + "=true"); 37 log.println("WARNING: Scope debugging needs to be enabled with -esa or -D" + Debug.Initialization.INITIALIZER_PROPERTY_NAME + "=true");
42 return null; 38 return null;
43 } 39 }
44 List<DebugDumpHandler> dumpHandlers = new ArrayList<>(); 40 List<DebugDumpHandler> dumpHandlers = new ArrayList<>();