ReferenceMap.java revision 12657:6ef01bd40ce2
1331722Seadler/*
21553Srgrimes * Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved.
31553Srgrimes * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
41553Srgrimes *
51553Srgrimes * This code is free software; you can redistribute it and/or modify it
61553Srgrimes * under the terms of the GNU General Public License version 2 only, as
71553Srgrimes * published by the Free Software Foundation.
81553Srgrimes *
91553Srgrimes * This code is distributed in the hope that it will be useful, but WITHOUT
101553Srgrimes * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
111553Srgrimes * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
121553Srgrimes * version 2 for more details (a copy is included in the LICENSE file that
131553Srgrimes * accompanied this code).
141553Srgrimes *
151553Srgrimes * You should have received a copy of the GNU General Public License version
161553Srgrimes * 2 along with this work; if not, write to the Free Software Foundation,
171553Srgrimes * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
181553Srgrimes *
191553Srgrimes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
201553Srgrimes * or visit www.oracle.com if you need additional information or have any
211553Srgrimes * questions.
221553Srgrimes */
231553Srgrimespackage jdk.vm.ci.code;
241553Srgrimes
251553Srgrimes/**
261553Srgrimes * Marker type for an object containing information about where the object references are in machine
271553Srgrimes * state (e.g., registers or stack locations). This is typically associated with an execution point
281553Srgrimes * in compiled code.
291553Srgrimes */
301553Srgrimespublic abstract class ReferenceMap {
311553Srgrimes}
321553Srgrimes