annotate graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/jvmci/HotSpotConstant.java @ 21538:c1e2fdb5fea3

removed more dependencies from JVMCI classes to non-JVMCI classes (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Mon, 25 May 2015 17:20:39 +0200
parents 1da7aef31a08
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15909
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
1 /*
19864
51da1608115e Move isCompressed method to HotSpotConstant interface.
Roland Schatz <roland.schatz@oracle.com>
parents: 18188
diff changeset
2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
15909
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
4 *
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
8 *
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
13 * accompanied this code).
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
14 *
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
18 *
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
21 * questions.
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
22 */
21526
1da7aef31a08 created com.oracle.graal.hotspot.jvmci package and moved classes destined for future JVMCI module into it (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 19864
diff changeset
23 package com.oracle.graal.hotspot.jvmci;
15909
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
24
18188
8652481a1110 Introduce new Constant interface for use in high-level graph.
Roland Schatz <roland.schatz@oracle.com>
parents: 18186
diff changeset
25 import com.oracle.graal.api.meta.*;
8652481a1110 Introduce new Constant interface for use in high-level graph.
Roland Schatz <roland.schatz@oracle.com>
parents: 18186
diff changeset
26
15909
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
27 /**
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
28 * Marker interface for hotspot specific constants.
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
29 */
18188
8652481a1110 Introduce new Constant interface for use in high-level graph.
Roland Schatz <roland.schatz@oracle.com>
parents: 18186
diff changeset
30 public interface HotSpotConstant extends Constant {
19864
51da1608115e Move isCompressed method to HotSpotConstant interface.
Roland Schatz <roland.schatz@oracle.com>
parents: 18188
diff changeset
31
51da1608115e Move isCompressed method to HotSpotConstant interface.
Roland Schatz <roland.schatz@oracle.com>
parents: 18188
diff changeset
32 boolean isCompressed();
15909
e43591136d9f Support for compressed constants.
Roland Schatz <roland.schatz@oracle.com>
parents:
diff changeset
33 }