annotate src/cpu/zero/vm/jni_zero.h @ 17467:55fb97c4c58d hs25-b65

8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013 Summary: Copyright year updated for files modified during 2013 Reviewed-by: twisti, iveresov
author mikael
date Tue, 24 Dec 2013 11:48:39 -0800
parents 58bb870a0cbd
children 4ca6dc0799b6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
1 /*
17467
55fb97c4c58d 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 10231
diff changeset
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
3 * Copyright 2009 Red Hat, Inc.
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
5 *
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
6 * This code is free software; you can redistribute it and/or modify it
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
7 * under the terms of the GNU General Public License version 2 only, as
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1010
diff changeset
8 * published by the Free Software Foundation. Oracle designates this
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
9 * particular file as subject to the "Classpath" exception as provided
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1010
diff changeset
10 * by Oracle in the LICENSE file that accompanied this code.
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
11 *
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
12 * This code is distributed in the hope that it will be useful, but WITHOUT
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
15 * version 2 for more details (a copy is included in the LICENSE file that
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
16 * accompanied this code).
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
17 *
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
18 * You should have received a copy of the GNU General Public License version
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
19 * 2 along with this work; if not, write to the Free Software Foundation,
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
21 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1010
diff changeset
22 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1010
diff changeset
23 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1010
diff changeset
24 * questions.
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
25 */
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
26
2191
d70fe6ab4436 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 1972
diff changeset
27
10231
58bb870a0cbd 8009729: Refix hotspot jni_<cpu>.h JNIEXPORT and JNIIMPORT definitions to match jdk version
emc
parents: 2426
diff changeset
28
58bb870a0cbd 8009729: Refix hotspot jni_<cpu>.h JNIEXPORT and JNIIMPORT definitions to match jdk version
emc
parents: 2426
diff changeset
29 // Note: please do not change these without also changing jni_md.h in the JDK
58bb870a0cbd 8009729: Refix hotspot jni_<cpu>.h JNIEXPORT and JNIIMPORT definitions to match jdk version
emc
parents: 2426
diff changeset
30 // repository
58bb870a0cbd 8009729: Refix hotspot jni_<cpu>.h JNIEXPORT and JNIIMPORT definitions to match jdk version
emc
parents: 2426
diff changeset
31 #ifndef __has_attribute
58bb870a0cbd 8009729: Refix hotspot jni_<cpu>.h JNIEXPORT and JNIIMPORT definitions to match jdk version
emc
parents: 2426
diff changeset
32 #define __has_attribute(x) 0
58bb870a0cbd 8009729: Refix hotspot jni_<cpu>.h JNIEXPORT and JNIIMPORT definitions to match jdk version
emc
parents: 2426
diff changeset
33 #endif
58bb870a0cbd 8009729: Refix hotspot jni_<cpu>.h JNIEXPORT and JNIIMPORT definitions to match jdk version
emc
parents: 2426
diff changeset
34 #if (defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ > 2))) || __has_attribute(visibility)
2191
d70fe6ab4436 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 1972
diff changeset
35 #define JNIEXPORT __attribute__((visibility("default")))
d70fe6ab4436 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 1972
diff changeset
36 #define JNIIMPORT __attribute__((visibility("default")))
d70fe6ab4436 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 1972
diff changeset
37 #else
d70fe6ab4436 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 1972
diff changeset
38 #define JNIEXPORT
d70fe6ab4436 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 1972
diff changeset
39 #define JNIIMPORT
d70fe6ab4436 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 1972
diff changeset
40 #endif
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
41 #define JNICALL
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
42
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
43 typedef int jint;
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
44 typedef signed char jbyte;
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
45
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
46 #ifdef _LP64
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
47 typedef long jlong;
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
48 #else
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
49 typedef long long jlong;
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents:
diff changeset
50 #endif