diff graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/CompileTheWorld.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 9c454c650b29
children
line wrap: on
line diff
--- a/graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/CompileTheWorld.java	Mon Jun 08 20:24:05 2015 +0200
+++ b/graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/CompileTheWorld.java	Mon Jun 08 20:24:51 2015 +0200
@@ -22,9 +22,6 @@
  */
 package com.oracle.jvmci.hotspot;
 
-//import static com.oracle.graal.compiler.common.GraalOptions.*;
-//import static com.oracle.graal.hotspot.HotSpotGraalRuntime.*;
-//import static com.oracle.graal.nodes.StructuredGraph.*;
 import static com.oracle.jvmci.compiler.Compiler.*;
 import static com.oracle.jvmci.debug.internal.MemUseTrackerImpl.*;
 
@@ -50,7 +47,7 @@
 import com.oracle.jvmci.runtime.*;
 
 /**
- * This class implements compile-the-world functionality in Graal.
+ * This class implements compile-the-world functionality with JVMCI.
  */
 public final class CompileTheWorld {
 
@@ -101,14 +98,14 @@
     }
 
     /**
-     * A mechanism for overriding Graal options that affect compilation. A {@link Config} object
+     * A mechanism for overriding JVMCI options that affect compilation. A {@link Config} object
      * should be used in a try-with-resources statement to ensure overriding of options is scoped
      * properly. For example:
      *
      * <pre>
      *     Config config = ...;
      *     try (AutoCloseable s = config == null ? null : config.apply()) {
-     *         // perform a Graal compilation
+     *         // perform a JVMCI compilation
      *     }
      * </pre>
      */