annotate src/share/vm/runtime/java.hpp @ 176:6b648fefb395

6705523: Fix for 6695506 will violate spec when used in JDK6 Summary: Make max classfile version number dependent on JDK version Reviewed-by: acorn, never
author kamg
date Thu, 22 May 2008 13:03:52 -0400
parents a61af66fc99e
children d1605aabd0a1 8d852b81e775
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // Register function to be called by before_exit
a61af66fc99e Initial load
duke
parents:
diff changeset
26 extern "C" { void register_on_exit_function(void (*func)(void)) ;}
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Execute code before all handles are released and thread is killed; prologue to vm_exit
a61af66fc99e Initial load
duke
parents:
diff changeset
29 extern void before_exit(JavaThread * thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Forced VM exit (i.e, internal error or JVM_Exit)
a61af66fc99e Initial load
duke
parents:
diff changeset
32 extern void vm_exit(int code);
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Wrapper for ::exit()
a61af66fc99e Initial load
duke
parents:
diff changeset
35 extern void vm_direct_exit(int code);
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Shutdown the VM but do not exit the process
a61af66fc99e Initial load
duke
parents:
diff changeset
38 extern void vm_shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Shutdown the VM and abort the process
a61af66fc99e Initial load
duke
parents:
diff changeset
40 extern void vm_abort();
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Trigger any necessary notification of the VM being shutdown
a61af66fc99e Initial load
duke
parents:
diff changeset
43 extern void notify_vm_shutdown();
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // VM exit if error occurs during initialization of VM
a61af66fc99e Initial load
duke
parents:
diff changeset
46 extern void vm_exit_during_initialization(Handle exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
47 extern void vm_exit_during_initialization(symbolHandle exception_name, const char* message);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 extern void vm_exit_during_initialization(const char* error, const char* message = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 extern void vm_shutdown_during_initialization(const char* error, const char* message = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class JDK_Version : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
54 static jdk_version_info _version_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static bool _pre_jdk16_version;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static int _jdk_version; // JDK version number representing the release
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // i.e. n in 1.n.x (= jdk_minor_version())
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
60 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static int jdk_major_version() { return JDK_VERSION_MAJOR(_version_info.jdk_version); }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 static int jdk_minor_version() { return JDK_VERSION_MINOR(_version_info.jdk_version); }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 static int jdk_micro_version() { return JDK_VERSION_MICRO(_version_info.jdk_version); }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static int jdk_build_number() { return JDK_VERSION_BUILD(_version_info.jdk_version); }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 static bool is_pre_jdk16_version() { return _pre_jdk16_version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static bool is_jdk12x_version() { assert(is_jdk_version_initialized(), "must have been initialized"); return _jdk_version == 2; }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static bool is_jdk13x_version() { assert(is_jdk_version_initialized(), "must have been initialized"); return _jdk_version == 3; }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static bool is_jdk14x_version() { assert(is_jdk_version_initialized(), "must have been initialized"); return _jdk_version == 4; }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static bool is_jdk15x_version() { assert(is_jdk_version_initialized(), "must have been initialized"); return _jdk_version == 5; }
176
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
71
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
72 static bool is_jdk16x_version() {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
73 if (is_jdk_version_initialized()) {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
74 return _jdk_version == 6;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
75 } else {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
76 assert(is_pre_jdk16_version(), "must have been initialized");
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
77 return false;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
78 }
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
79 }
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
80
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
81 static bool is_jdk17x_version() {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
82 if (is_jdk_version_initialized()) {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
83 return _jdk_version == 7;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
84 } else {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
85 assert(is_pre_jdk16_version(), "must have been initialized");
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
86 return false;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
87 }
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
88 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 static bool supports_thread_park_blocker() { return _version_info.thread_park_blocker; }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static bool is_gte_jdk14x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // Keep the semantics of this that the version number is >= 1.4
a61af66fc99e Initial load
duke
parents:
diff changeset
94 assert(is_jdk_version_initialized(), "Not initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
95 return _jdk_version >= 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 static bool is_gte_jdk15x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // Keep the semantics of this that the version number is >= 1.5
a61af66fc99e Initial load
duke
parents:
diff changeset
99 assert(is_jdk_version_initialized(), "Not initialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
100 return _jdk_version >= 5;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 static bool is_gte_jdk16x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Keep the semantics of this that the version number is >= 1.6
176
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
104 if (is_jdk_version_initialized()) {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
105 return _jdk_version >= 6;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
106 } else {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
107 assert(is_pre_jdk16_version(), "Not initialized");
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
108 return false;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
109 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 static bool is_gte_jdk17x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Keep the semantics of this that the version number is >= 1.7
176
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
114 if (is_jdk_version_initialized()) {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
115 return _jdk_version >= 7;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
116 } else {
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
117 assert(is_pre_jdk16_version(), "Not initialized");
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
118 return false;
6b648fefb395 6705523: Fix for 6695506 will violate spec when used in JDK6
kamg
parents: 0
diff changeset
119 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 static bool is_jdk_version_initialized() {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 return _jdk_version > 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // These methods are defined to deal with pre JDK 1.6 versions
a61af66fc99e Initial load
duke
parents:
diff changeset
127 static void set_jdk12x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 assert(_pre_jdk16_version && !is_jdk_version_initialized(), "must not initialize");
a61af66fc99e Initial load
duke
parents:
diff changeset
129 _jdk_version = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _version_info.jdk_version = (1 << 24) | (2 << 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 static void set_jdk13x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 assert(_pre_jdk16_version && !is_jdk_version_initialized(), "must not initialize");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 _jdk_version = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 _version_info.jdk_version = (1 << 24) | (3 << 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 static void set_jdk14x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 assert(_pre_jdk16_version && !is_jdk_version_initialized(), "must not initialize");
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _jdk_version = 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 _version_info.jdk_version = (1 << 24) | (4 << 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 static void set_jdk15x_version() {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 assert(_pre_jdk16_version && !is_jdk_version_initialized(), "must not initialize");
a61af66fc99e Initial load
duke
parents:
diff changeset
144 _jdk_version = 5;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 _version_info.jdk_version = (1 << 24) | (5 << 16);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 };