comparison jvmci/jdk.vm.ci.code/src/jdk/vm/ci/code/ReferenceMap.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 1bbd4a7c274b
children
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; 23 package jdk.vm.ci.code;
24 24
25 /**
26 * Marker type for an object containing information about where the object references are in machine
27 * state (e.g., registers or stack locations). This is typically associated with an execution point
28 * in compiled code.
29 */
25 public abstract class ReferenceMap { 30 public abstract class ReferenceMap {
26 } 31 }