annotate graal/com.oracle.graal.hotspotvmconfig/src/com/oracle/graal/hotspotvmconfig/HotSpotVMConstant.java @ 16319:a4bd33d52985

Fixing tests with number conversions, float and double handling. Introducing new VIS3 instructions. Adding testcases.
author Stefan Anzinger <stefan.anzinger@gmail.com>
date Tue, 03 Jun 2014 14:29:40 +0200
parents graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConstant.java@f57cf459f5d3
children 41d479400da8
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: 13776
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 */
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
23 package com.oracle.graal.hotspotvmconfig;
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
24
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
25 import java.lang.annotation.ElementType;
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
26 import java.lang.annotation.Retention;
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
27 import java.lang.annotation.RetentionPolicy;
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
28 import java.lang.annotation.Target;
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
29
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
30 /**
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
31 * Refers to a C++ constant in the VM.
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
32 */
12559
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 HotSpotVMConstant {
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
36
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
37 /**
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
38 * Returns the name of the constant.
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
39 *
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
40 * @return name of constant
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
41 */
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
42 String name();
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
43
13517
eefb0224149d derive CPUFeatures from VM_Version::_cpuFeatures
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
44 /**
eefb0224149d derive CPUFeatures from VM_Version::_cpuFeatures
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
45 * List of architectures where this constant is required. Names are derived from
13776
8305aec3a1ae an empty architecture specification implies all architectures
Doug Simon <doug.simon@oracle.com>
parents: 13517
diff changeset
46 * {@link HotSpotVMConfig#getHostArchitectureName()}. An empty list implies that the constant is
8305aec3a1ae an empty architecture specification implies all architectures
Doug Simon <doug.simon@oracle.com>
parents: 13517
diff changeset
47 * required on all architectures.
13517
eefb0224149d derive CPUFeatures from VM_Version::_cpuFeatures
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
48 */
16314
f57cf459f5d3 [SPARC] Adding deoptimization handler foreign call
Stefan Anzinger <stefan.anzinger@gmail.com>
parents: 13776
diff changeset
49 @SuppressWarnings("javadoc")
13517
eefb0224149d derive CPUFeatures from VM_Version::_cpuFeatures
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
50 String[] archs() default {};
eefb0224149d derive CPUFeatures from VM_Version::_cpuFeatures
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 12559
diff changeset
51
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents:
diff changeset
52 }