comparison jvmci/jdk.vm.ci.code/src/jdk/vm/ci/code/site/DataSectionReference.java @ 23393:1d4ce2d19e52

clean up and minimize JVMCI (JDK-8156835)
author Doug Simon <doug.simon@oracle.com>
date Thu, 12 May 2016 20:57:31 +0200
parents 9273bb6ba33e
children 3e8ce13f4e12
comparison
equal deleted inserted replaced
23392:b3a816d3b844 23393:1d4ce2d19e52
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 jdk.vm.ci.code.site; 23 package jdk.vm.ci.code.site;
24 24
25 /**
26 * Represents a pointer to some location in the data section that should be {@link DataPatch
27 * patched} into the code.
28 */
25 public final class DataSectionReference extends Reference { 29 public final class DataSectionReference extends Reference {
26 30
27 private boolean initialized; 31 private boolean initialized;
28 private int offset; 32 private int offset;
29 33