annotate graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/jvmci/Stable.java @ 21545:a04dfbf81bc4

removed dependency from JVMCI class HotSpotProfilingInfo to non-JVMCI class StructuredGraph (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Tue, 26 May 2015 00:31:30 +0200
parents 1da7aef31a08
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
1 /*
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
4 *
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
7 * published by the Free Software Foundation.
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
8 *
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
13 * accompanied this code).
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
14 *
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
18 *
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
21 * questions.
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
22 */
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
23
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: 17398
diff changeset
24 package com.oracle.graal.hotspot.jvmci;
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
25
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
26 import java.lang.annotation.*;
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
27
17398
9e1ec84d2899 fix privileged check for Stable
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
28 /**
9e1ec84d2899 fix privileged check for Stable
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
29 * This annotation functions as an alias for the sun.invoke.Stable annotation within Graal code. It
9e1ec84d2899 fix privileged check for Stable
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
30 * is specially recognized during class file parsing in the same way as that annotation.
9e1ec84d2899 fix privileged check for Stable
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
31 */
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
32
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
33 @Target(ElementType.FIELD)
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
34 @Retention(RetentionPolicy.RUNTIME)
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
35 public @interface Stable {
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
36 }