comparison graal/com.oracle.jvmci.runtime/src/com/oracle/jvmci/runtime/JVMCIBackend.java @ 21556:48c1ebd24120

renamed com.oracle.graal.api[meta|code] modules to com.oracle.jvmci.[meta|code] (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 00:36:16 +0200
parents 07b088d61d5d
children
comparison
equal deleted inserted replaced
21555:d12eaef9af72 21556:48c1ebd24120
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.jvmci.runtime; 23 package com.oracle.jvmci.runtime;
24 24
25 import com.oracle.graal.api.code.*; 25 import com.oracle.jvmci.code.CodeCacheProvider;
26 import com.oracle.graal.api.meta.*; 26 import com.oracle.jvmci.code.TargetDescription;
27 import com.oracle.jvmci.meta.MetaAccessProvider;
28 import com.oracle.jvmci.meta.ConstantReflectionProvider;
27 29
28 /** 30 /**
29 * A JVMCI backend encapsulates the capabilities needed by a Java based compiler for compiling and 31 * A JVMCI backend encapsulates the capabilities needed by a Java based compiler for compiling and
30 * installing code for a single compute unit within a JVM. In a JVM with support for heterogeneous 32 * installing code for a single compute unit within a JVM. In a JVM with support for heterogeneous
31 * computing, more than one backend may be exposed. 33 * computing, more than one backend may be exposed.