comparison graal/com.oracle.jvmci.hotspot/src/com/oracle/jvmci/hotspot/HotSpotNmethod.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 9579a3c62a9e
children f5b549811bac
comparison
equal deleted inserted replaced
21555:d12eaef9af72 21556:48c1ebd24120
22 */ 22 */
23 package com.oracle.jvmci.hotspot; 23 package com.oracle.jvmci.hotspot;
24 24
25 import static com.oracle.jvmci.hotspot.HotSpotJVMCIRuntime.*; 25 import static com.oracle.jvmci.hotspot.HotSpotJVMCIRuntime.*;
26 26
27 import com.oracle.graal.api.code.*; 27 import com.oracle.jvmci.code.*;
28 import com.oracle.graal.api.meta.*; 28 import com.oracle.jvmci.meta.*;
29
29 30
30 /** 31 /**
31 * Implementation of {@link InstalledCode} for code installed as an nmethod. The nmethod stores a 32 * Implementation of {@link InstalledCode} for code installed as an nmethod. The nmethod stores a
32 * weak reference to an instance of this class. This is necessary to keep the nmethod from being 33 * weak reference to an instance of this class. This is necessary to keep the nmethod from being
33 * unloaded while the associated {@link HotSpotNmethod} instance is alive. 34 * unloaded while the associated {@link HotSpotNmethod} instance is alive.