src/jdk.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotInstalledCode.java

Print this page
rev 10816 : 8153756: jdk.vm.ci should not depend on sun.misc ( jdk.unsupported module )
Reviewed-by:


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  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
  21  * questions.
  22  */
  23 package jdk.vm.ci.hotspot;
  24 
  25 import static jdk.vm.ci.hotspot.UnsafeAccess.UNSAFE;
  26 import jdk.vm.ci.code.InstalledCode;
  27 import jdk.vm.ci.inittimer.SuppressFBWarnings;
  28 import sun.misc.Unsafe;
  29 
  30 /**
  31  * Implementation of {@link InstalledCode} for HotSpot.
  32  */
  33 public abstract class HotSpotInstalledCode extends InstalledCode {
  34 
  35     /**
  36      * Total size of the code blob.
  37      */
  38     @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "field is set by the native part") private int size;
  39 
  40     /**
  41      * Start address of the code.
  42      */
  43     @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "field is set by the native part") private long codeStart;
  44 
  45     /**
  46      * Size of the code.
  47      */
  48     @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "field is set by the native part") private int codeSize;




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  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
  21  * questions.
  22  */
  23 package jdk.vm.ci.hotspot;
  24 
  25 import static jdk.vm.ci.hotspot.UnsafeAccess.UNSAFE;
  26 import jdk.vm.ci.code.InstalledCode;
  27 import jdk.vm.ci.inittimer.SuppressFBWarnings;
  28 import jdk.internal.misc.Unsafe;
  29 
  30 /**
  31  * Implementation of {@link InstalledCode} for HotSpot.
  32  */
  33 public abstract class HotSpotInstalledCode extends InstalledCode {
  34 
  35     /**
  36      * Total size of the code blob.
  37      */
  38     @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "field is set by the native part") private int size;
  39 
  40     /**
  41      * Start address of the code.
  42      */
  43     @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "field is set by the native part") private long codeStart;
  44 
  45     /**
  46      * Size of the code.
  47      */
  48     @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "field is set by the native part") private int codeSize;