comparison graal/com.oracle.graal.compiler.common/src/com/oracle/graal/compiler/common/FieldIntrospection.java @ 21541:5e868236654f

moved UnsafeAccess to com.oracle.jvmci.common (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Mon, 25 May 2015 22:17:10 +0200
parents 8cc395785d0a
children
comparison
equal deleted inserted replaced
21540:ccb1b1391192 21541:5e868236654f
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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.graal.compiler.common; 23 package com.oracle.graal.compiler.common;
24
25 import com.oracle.jvmci.common.*;
24 26
25 public abstract class FieldIntrospection<T> extends UnsafeAccess { 27 public abstract class FieldIntrospection<T> extends UnsafeAccess {
26 28
27 private final Class<T> clazz; 29 private final Class<T> clazz;
28 30