annotate graal/com.oracle.jvmci.hotspotvmconfig/src/com/oracle/jvmci/hotspotvmconfig/HotSpotVMType.java @ 21607:71b338926f2e

moved JVMCI classes into their own distributions (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Fri, 29 May 2015 22:27:38 +0200
parents b1530a6cce8c
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 /*
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
2 * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
12559
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 */
21554
b1530a6cce8c renamed com.oracle.graal.[debug|options|hotspotvmconfig]* modules to com.oracle.jvmci.[debug|options|hotspotvmconfig]* modules (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 16330
diff changeset
23 package com.oracle.jvmci.hotspotvmconfig;
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
24
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
25 import java.lang.annotation.*;
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
26
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
27 /**
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
28 * Refers to a C++ type in the VM.
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
29 */
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
30 @Target(ElementType.FIELD)
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
31 @Retention(RetentionPolicy.RUNTIME)
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
32 public @interface HotSpotVMType {
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
33
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
34 /**
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
35 * Types of information this annotation can return.
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
36 */
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
37 enum Type {
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
38 /**
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
39 * Returns the size of the type (C++ {@code sizeof()}).
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
40 */
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
41 SIZE;
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
42 }
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
43
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
44 /**
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
45 * Specifies what type of information to return.
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
46 *
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
47 * @see Type
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
48 */
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
49 Type get();
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
50
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
51 /**
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
52 * Returns the name of the type.
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
53 *
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
54 * @return name of type
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
55 */
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 12559
diff changeset
56 String name();
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
57 }