annotate src/share/vm/prims/jni.cpp @ 3650:0e8a2a629afb

Pass-by compilation broker.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Nov 2011 21:27:28 +0100
parents 85625aff715b
children 04b9a2566eec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0
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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
26 #include "classfile/classLoader.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
27 #include "classfile/javaClasses.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
28 #include "classfile/symbolTable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
29 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
30 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
31 #include "interpreter/linkResolver.hpp"
2925
b78b4ae0757c Also call Compiler shutdown hook in case of System.exit call. Draft VMExits.Sandbox class.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2901
diff changeset
32 #include "graal/graalCompiler.hpp"
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
33 #ifndef SERIALGC
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
34 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
35 #endif // SERIALGC
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
36 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
37 #include "memory/gcLocker.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
38 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
39 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
40 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
41 #include "oops/instanceOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
42 #include "oops/markOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
43 #include "oops/methodOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
44 #include "oops/objArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
45 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
46 #include "oops/oop.inline.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
47 #include "oops/symbol.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
48 #include "oops/typeArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
49 #include "oops/typeArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
50 #include "prims/jni.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
51 #include "prims/jniCheck.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
52 #include "prims/jniFastGetField.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
53 #include "prims/jvm.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
54 #include "prims/jvm_misc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
55 #include "prims/jvmtiExport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
56 #include "prims/jvmtiThreadState.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
57 #include "runtime/compilationPolicy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
58 #include "runtime/fieldDescriptor.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
59 #include "runtime/fprofiler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
60 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
61 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
62 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
63 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
64 #include "runtime/jfieldIDWorkaround.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
65 #include "runtime/reflection.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
66 #include "runtime/sharedRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
67 #include "runtime/signature.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
68 #include "runtime/vm_operations.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
69 #include "services/runtimeService.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
70 #include "utilities/defaultStream.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
71 #include "utilities/dtrace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
72 #include "utilities/events.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
73 #include "utilities/histogram.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
74 #ifdef TARGET_ARCH_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
75 # include "jniTypes_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
76 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
77 #ifdef TARGET_ARCH_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
78 # include "jniTypes_sparc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
79 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
80 #ifdef TARGET_ARCH_zero
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
81 # include "jniTypes_zero.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
82 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
83 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
84 # include "os_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
85 # include "thread_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
86 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
87 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
88 # include "os_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
89 # include "thread_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
90 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
91 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
92 # include "os_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
93 # include "thread_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
94 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 static jint CurrentVersion = JNI_VERSION_1_6;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // The DT_RETURN_MARK macros create a scoped object to fire the dtrace
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // '-return' probe regardless of the return path is taken out of the function.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // Methods that have multiple return paths use this to avoid having to
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // instrument each return path. Methods that use CHECK or THROW must use this
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // since those macros can cause an immedate uninstrumented return.
a61af66fc99e Initial load
duke
parents:
diff changeset
104 //
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // In order to get the return value, a reference to the variable containing
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // the return value must be passed to the contructor of the object, and
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // the return value must be set before return (since the mark object has
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // a reference to it).
a61af66fc99e Initial load
duke
parents:
diff changeset
109 //
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // Example:
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // DT_RETURN_MARK_DECL(SomeFunc, int);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // JNI_ENTRY(int, SomeFunc, ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // int return_value = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // DT_RETURN_MARK(SomeFunc, int, (const int&)return_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // foo(CHECK_0)
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // return_value = 5;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // return return_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
119 #define DT_RETURN_MARK_DECL(name, type) \
a61af66fc99e Initial load
duke
parents:
diff changeset
120 HS_DTRACE_PROBE_DECL1(hotspot_jni, name##__return, type); \
a61af66fc99e Initial load
duke
parents:
diff changeset
121 DTRACE_ONLY( \
a61af66fc99e Initial load
duke
parents:
diff changeset
122 class DTraceReturnProbeMark_##name { \
a61af66fc99e Initial load
duke
parents:
diff changeset
123 public: \
a61af66fc99e Initial load
duke
parents:
diff changeset
124 const type& _ret_ref; \
a61af66fc99e Initial load
duke
parents:
diff changeset
125 DTraceReturnProbeMark_##name(const type& v) : _ret_ref(v) {} \
a61af66fc99e Initial load
duke
parents:
diff changeset
126 ~DTraceReturnProbeMark_##name() { \
a61af66fc99e Initial load
duke
parents:
diff changeset
127 HS_DTRACE_PROBE1(hotspot_jni, name##__return, _ret_ref); \
a61af66fc99e Initial load
duke
parents:
diff changeset
128 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
129 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
130 )
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Void functions are simpler since there's no return value
a61af66fc99e Initial load
duke
parents:
diff changeset
132 #define DT_VOID_RETURN_MARK_DECL(name) \
a61af66fc99e Initial load
duke
parents:
diff changeset
133 HS_DTRACE_PROBE_DECL0(hotspot_jni, name##__return); \
a61af66fc99e Initial load
duke
parents:
diff changeset
134 DTRACE_ONLY( \
a61af66fc99e Initial load
duke
parents:
diff changeset
135 class DTraceReturnProbeMark_##name { \
a61af66fc99e Initial load
duke
parents:
diff changeset
136 public: \
a61af66fc99e Initial load
duke
parents:
diff changeset
137 ~DTraceReturnProbeMark_##name() { \
a61af66fc99e Initial load
duke
parents:
diff changeset
138 HS_DTRACE_PROBE0(hotspot_jni, name##__return); \
a61af66fc99e Initial load
duke
parents:
diff changeset
139 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
140 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
141 )
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Place these macros in the function to mark the return. Non-void
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // functions need the type and address of the return value.
a61af66fc99e Initial load
duke
parents:
diff changeset
146 #define DT_RETURN_MARK(name, type, ref) \
a61af66fc99e Initial load
duke
parents:
diff changeset
147 DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark(ref) )
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #define DT_VOID_RETURN_MARK(name) \
a61af66fc99e Initial load
duke
parents:
diff changeset
149 DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark )
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // Use these to select distinct code for floating-point vs. non-floating point
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // situations. Used from within common macros where we need slightly
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // different behavior for Float/Double
a61af66fc99e Initial load
duke
parents:
diff changeset
155 #define FP_SELECT_Boolean(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
156 #define FP_SELECT_Byte(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
157 #define FP_SELECT_Char(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
158 #define FP_SELECT_Short(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
159 #define FP_SELECT_Object(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
160 #define FP_SELECT_Int(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
161 #define FP_SELECT_Long(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
162 #define FP_SELECT_Float(intcode, fpcode) fpcode
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #define FP_SELECT_Double(intcode, fpcode) fpcode
a61af66fc99e Initial load
duke
parents:
diff changeset
164 #define FP_SELECT(TypeName, intcode, fpcode) \
a61af66fc99e Initial load
duke
parents:
diff changeset
165 FP_SELECT_##TypeName(intcode, fpcode)
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 #define COMMA ,
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // Choose DT_RETURN_MARK macros based on the type: float/double -> void
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // (dtrace doesn't do FP yet)
a61af66fc99e Initial load
duke
parents:
diff changeset
171 #define DT_RETURN_MARK_DECL_FOR(TypeName, name, type) \
a61af66fc99e Initial load
duke
parents:
diff changeset
172 FP_SELECT(TypeName, \
a61af66fc99e Initial load
duke
parents:
diff changeset
173 DT_RETURN_MARK_DECL(name, type), DT_VOID_RETURN_MARK_DECL(name) )
a61af66fc99e Initial load
duke
parents:
diff changeset
174 #define DT_RETURN_MARK_FOR(TypeName, name, type, ref) \
a61af66fc99e Initial load
duke
parents:
diff changeset
175 FP_SELECT(TypeName, \
a61af66fc99e Initial load
duke
parents:
diff changeset
176 DT_RETURN_MARK(name, type, ref), DT_VOID_RETURN_MARK(name) )
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // out-of-line helpers for class jfieldIDWorkaround:
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 bool jfieldIDWorkaround::is_valid_jfieldID(klassOop k, jfieldID id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (jfieldIDWorkaround::is_instance_jfieldID(k, id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 uintptr_t as_uint = (uintptr_t) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
184 intptr_t offset = raw_instance_offset(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (is_checked_jfieldID(id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if (!klass_hash_ok(k, id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 return instanceKlass::cast(k)->contains_field_offset(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 JNIid* result = (JNIid*) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
194 return result != NULL && result->is_static_field_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
195 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
196 return result != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 intptr_t jfieldIDWorkaround::encode_klass_hash(klassOop k, intptr_t offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 if (offset <= small_offset_mask) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 klassOop field_klass = k;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 klassOop super_klass = Klass::cast(field_klass)->super();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
206 // With compressed oops the most super class with nonstatic fields would
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
207 // be the owner of fields embedded in the header.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
208 while (instanceKlass::cast(super_klass)->has_nonstatic_fields() &&
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
209 instanceKlass::cast(super_klass)->contains_field_offset(offset)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
210 field_klass = super_klass; // super contains the field also
a61af66fc99e Initial load
duke
parents:
diff changeset
211 super_klass = Klass::cast(field_klass)->super();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 debug_only(No_Safepoint_Verifier nosafepoint;)
a61af66fc99e Initial load
duke
parents:
diff changeset
214 uintptr_t klass_hash = field_klass->identity_hash();
a61af66fc99e Initial load
duke
parents:
diff changeset
215 return ((klass_hash & klass_mask) << klass_shift) | checked_mask_in_place;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
218 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
219 {
a61af66fc99e Initial load
duke
parents:
diff changeset
220 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 warning("VerifyJNIFields: long offset %d in %s", offset, Klass::cast(k)->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
224 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
225 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 bool jfieldIDWorkaround::klass_hash_ok(klassOop k, jfieldID id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 uintptr_t as_uint = (uintptr_t) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 intptr_t klass_hash = (as_uint >> klass_shift) & klass_mask;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
233 debug_only(No_Safepoint_Verifier nosafepoint;)
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // Could use a non-blocking query for identity_hash here...
a61af66fc99e Initial load
duke
parents:
diff changeset
235 if ((k->identity_hash() & klass_mask) == klass_hash)
a61af66fc99e Initial load
duke
parents:
diff changeset
236 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 k = Klass::cast(k)->super();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 } while (k != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void jfieldIDWorkaround::verify_instance_jfieldID(klassOop k, jfieldID id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 guarantee(jfieldIDWorkaround::is_instance_jfieldID(k, id), "must be an instance field" );
a61af66fc99e Initial load
duke
parents:
diff changeset
244 uintptr_t as_uint = (uintptr_t) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 intptr_t offset = raw_instance_offset(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 if (VerifyJNIFields) {
a61af66fc99e Initial load
duke
parents:
diff changeset
247 if (is_checked_jfieldID(id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
248 guarantee(klass_hash_ok(k, id),
a61af66fc99e Initial load
duke
parents:
diff changeset
249 "Bug in native code: jfieldID class must match object");
a61af66fc99e Initial load
duke
parents:
diff changeset
250 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
252 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if (Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
255 warning("VerifyJNIFields: unverified offset %d for %s", offset, Klass::cast(k)->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
258 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 guarantee(instanceKlass::cast(k)->contains_field_offset(offset),
a61af66fc99e Initial load
duke
parents:
diff changeset
262 "Bug in native code: jfieldID offset must address interior of object");
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // Pick a reasonable higher bound for local capacity requested
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // for EnsureLocalCapacity and PushLocalFrame. We don't want it too
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // high because a test (or very unusual application) may try to allocate
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // that many handles and run out of swap space. An implementation is
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // permitted to allocate more handles than the ensured capacity, so this
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // value is set high enough to prevent compatibility problems.
a61af66fc99e Initial load
duke
parents:
diff changeset
271 const int MAX_REASONABLE_LOCAL_CAPACITY = 4*K;
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // Wrapper to trace JNI functions
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
277 Histogram* JNIHistogram;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 static volatile jint JNIHistogram_lock = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 class JNITraceWrapper : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
282 JNITraceWrapper(const char* format, ...) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 if (TraceJNICalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 va_list ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
285 va_start(ap, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 tty->print("JNI ");
a61af66fc99e Initial load
duke
parents:
diff changeset
287 tty->vprint_cr(format, ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 va_end(ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 };
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 class JNIHistogramElement : public HistogramElement {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
295 JNIHistogramElement(const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 };
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 JNIHistogramElement::JNIHistogramElement(const char* elementName) {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 _name = elementName;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 uintx count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 while (Atomic::cmpxchg(1, &JNIHistogram_lock, 0) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 while (OrderAccess::load_acquire(&JNIHistogram_lock) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 count +=1;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 if ( (WarnOnStalledSpinLock > 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
306 && (count % WarnOnStalledSpinLock == 0)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 warning("JNIHistogram_lock seems to be stalled");
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 if(JNIHistogram == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
314 JNIHistogram = new Histogram("JNI Call Counts",100);
a61af66fc99e Initial load
duke
parents:
diff changeset
315
a61af66fc99e Initial load
duke
parents:
diff changeset
316 JNIHistogram->add_element(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 Atomic::dec(&JNIHistogram_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 #define JNICountWrapper(arg) \
a61af66fc99e Initial load
duke
parents:
diff changeset
321 static JNIHistogramElement* e = new JNIHistogramElement(arg); \
a61af66fc99e Initial load
duke
parents:
diff changeset
322 /* There is a MT-race condition in VC++. So we need to make sure that that e has been initialized */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
323 if (e != NULL) e->increment_count()
a61af66fc99e Initial load
duke
parents:
diff changeset
324 #define JNIWrapper(arg) JNICountWrapper(arg); JNITraceWrapper(arg)
a61af66fc99e Initial load
duke
parents:
diff changeset
325 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
326 #define JNIWrapper(arg)
a61af66fc99e Initial load
duke
parents:
diff changeset
327 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // Implementation of JNI entries
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 DT_RETURN_MARK_DECL(DefineClass, jclass);
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 JNI_ENTRY(jclass, jni_DefineClass(JNIEnv *env, const char *name, jobject loaderRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
335 const jbyte *buf, jsize bufLen))
a61af66fc99e Initial load
duke
parents:
diff changeset
336 JNIWrapper("DefineClass");
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338 DTRACE_PROBE5(hotspot_jni, DefineClass__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
339 env, name, loaderRef, buf, bufLen);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 jclass cls = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 DT_RETURN_MARK(DefineClass, jclass, (const jclass&)cls);
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // Since exceptions can be thrown, class initialization can take place
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // if name is NULL no check for class name in .class stream has to be made.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 if (name != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 const int str_len = (int)strlen(name);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
347 if (str_len > Symbol::max_length()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // It's impossible to create this class; the name cannot fit
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // into the constant pool.
a61af66fc99e Initial load
duke
parents:
diff changeset
350 THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), name);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
353 TempNewSymbol class_name = SymbolTable::new_symbol(name, THREAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 ClassFileStream st((u1*) buf, bufLen, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
357 Handle class_loader (THREAD, JNIHandles::resolve(loaderRef));
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 if (UsePerfData && !class_loader.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // check whether the current caller thread holds the lock or not.
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // If not, increment the corresponding counter
a61af66fc99e Initial load
duke
parents:
diff changeset
362 if (ObjectSynchronizer::
a61af66fc99e Initial load
duke
parents:
diff changeset
363 query_lock_ownership((JavaThread*)THREAD, class_loader) !=
a61af66fc99e Initial load
duke
parents:
diff changeset
364 ObjectSynchronizer::owner_self) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365 ClassLoader::sync_JNIDefineClassLockFreeCounter()->inc();
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368 klassOop k = SystemDictionary::resolve_from_stream(class_name, class_loader,
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 657
diff changeset
369 Handle(), &st, true,
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 657
diff changeset
370 CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
371
657
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
372 if (TraceClassResolution && k != NULL) {
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
373 trace_class_resolution(k);
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
374 }
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
375
0
a61af66fc99e Initial load
duke
parents:
diff changeset
376 cls = (jclass)JNIHandles::make_local(
a61af66fc99e Initial load
duke
parents:
diff changeset
377 env, Klass::cast(k)->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
378 return cls;
a61af66fc99e Initial load
duke
parents:
diff changeset
379 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 static bool first_time_FindClass = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 DT_RETURN_MARK_DECL(FindClass, jclass);
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 JNI_ENTRY(jclass, jni_FindClass(JNIEnv *env, const char *name))
a61af66fc99e Initial load
duke
parents:
diff changeset
388 JNIWrapper("FindClass");
a61af66fc99e Initial load
duke
parents:
diff changeset
389 DTRACE_PROBE2(hotspot_jni, FindClass__entry, env, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
390
a61af66fc99e Initial load
duke
parents:
diff changeset
391 jclass result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 DT_RETURN_MARK(FindClass, jclass, (const jclass&)result);
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // Remember if we are the first invocation of jni_FindClass
a61af66fc99e Initial load
duke
parents:
diff changeset
395 bool first_time = first_time_FindClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
396 first_time_FindClass = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // Sanity check the name: it cannot be null or larger than the maximum size
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // name we can fit in the constant pool.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
400 if (name == NULL || (int)strlen(name) > Symbol::max_length()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
401 THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), name);
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403
a61af66fc99e Initial load
duke
parents:
diff changeset
404 //%note jni_3
a61af66fc99e Initial load
duke
parents:
diff changeset
405 Handle loader;
a61af66fc99e Initial load
duke
parents:
diff changeset
406 Handle protection_domain;
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // Find calling class
a61af66fc99e Initial load
duke
parents:
diff changeset
408 instanceKlassHandle k (THREAD, thread->security_get_caller_class(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
409 if (k.not_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 loader = Handle(THREAD, k->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
411 // Special handling to make sure JNI_OnLoad and JNI_OnUnload are executed
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // in the correct class context.
a61af66fc99e Initial load
duke
parents:
diff changeset
413 if (loader.is_null() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
414 k->name() == vmSymbols::java_lang_ClassLoader_NativeLibrary()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 JavaValue result(T_OBJECT);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 JavaCalls::call_static(&result, k,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
417 vmSymbols::getFromClass_name(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
418 vmSymbols::void_class_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
419 thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
421 Handle ex(thread, thread->pending_exception());
a61af66fc99e Initial load
duke
parents:
diff changeset
422 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 THROW_HANDLE_0(ex);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425 oop mirror = (oop) result.get_jobject();
a61af66fc99e Initial load
duke
parents:
diff changeset
426 loader = Handle(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
427 instanceKlass::cast(java_lang_Class::as_klassOop(mirror))->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
428 protection_domain = Handle(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
429 instanceKlass::cast(java_lang_Class::as_klassOop(mirror))->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
431 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // We call ClassLoader.getSystemClassLoader to obtain the system class loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
433 loader = Handle(THREAD, SystemDictionary::java_system_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
436 TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
437 result = find_class_from_class_loader(env, sym, true, loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
438 protection_domain, true, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
439
657
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
440 if (TraceClassResolution && result != NULL) {
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
441 trace_class_resolution(java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(result)));
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
442 }
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
443
0
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // If we were the first invocation of jni_FindClass, we enable compilation again
a61af66fc99e Initial load
duke
parents:
diff changeset
445 // rather than just allowing invocation counter to overflow and decay.
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // Controlled by flag DelayCompilationDuringStartup.
a61af66fc99e Initial load
duke
parents:
diff changeset
447 if (first_time && !CompileTheWorld)
a61af66fc99e Initial load
duke
parents:
diff changeset
448 CompilationPolicy::completed_vm_startup();
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 DT_RETURN_MARK_DECL(FromReflectedMethod, jmethodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
454
a61af66fc99e Initial load
duke
parents:
diff changeset
455 JNI_ENTRY(jmethodID, jni_FromReflectedMethod(JNIEnv *env, jobject method))
a61af66fc99e Initial load
duke
parents:
diff changeset
456 JNIWrapper("FromReflectedMethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
457 DTRACE_PROBE2(hotspot_jni, FromReflectedMethod__entry, env, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 jmethodID ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
459 DT_RETURN_MARK(FromReflectedMethod, jmethodID, (const jmethodID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // method is a handle to a java.lang.reflect.Method object
a61af66fc99e Initial load
duke
parents:
diff changeset
462 oop reflected = JNIHandles::resolve_non_null(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
463 oop mirror = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 int slot = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
465
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
466 if (reflected->klass() == SystemDictionary::reflect_Constructor_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
467 mirror = java_lang_reflect_Constructor::clazz(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
468 slot = java_lang_reflect_Constructor::slot(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
469 } else {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
470 assert(reflected->klass() == SystemDictionary::reflect_Method_klass(), "wrong type");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
471 mirror = java_lang_reflect_Method::clazz(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
472 slot = java_lang_reflect_Method::slot(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
474 klassOop k = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 KlassHandle k1(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
477 // Make sure class is initialized before handing id's out to methods
a61af66fc99e Initial load
duke
parents:
diff changeset
478 Klass::cast(k1())->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 methodOop m = instanceKlass::cast(k1())->method_with_idnum(slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
480 ret = m==NULL? NULL : m->jmethod_id(); // return NULL if reflected method deleted
a61af66fc99e Initial load
duke
parents:
diff changeset
481 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
482 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 DT_RETURN_MARK_DECL(FromReflectedField, jfieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486 JNI_ENTRY(jfieldID, jni_FromReflectedField(JNIEnv *env, jobject field))
a61af66fc99e Initial load
duke
parents:
diff changeset
487 JNIWrapper("FromReflectedField");
a61af66fc99e Initial load
duke
parents:
diff changeset
488 DTRACE_PROBE2(hotspot_jni, FromReflectedField__entry, env, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
489 jfieldID ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
490 DT_RETURN_MARK(FromReflectedField, jfieldID, (const jfieldID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
491
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // field is a handle to a java.lang.reflect.Field object
a61af66fc99e Initial load
duke
parents:
diff changeset
493 oop reflected = JNIHandles::resolve_non_null(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 oop mirror = java_lang_reflect_Field::clazz(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
495 klassOop k = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
496 int slot = java_lang_reflect_Field::slot(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
497 int modifiers = java_lang_reflect_Field::modifiers(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 KlassHandle k1(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // Make sure class is initialized before handing id's out to fields
a61af66fc99e Initial load
duke
parents:
diff changeset
501 Klass::cast(k1())->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // First check if this is a static field
a61af66fc99e Initial load
duke
parents:
diff changeset
504 if (modifiers & JVM_ACC_STATIC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
505 intptr_t offset = instanceKlass::cast(k1())->offset_from_fields( slot );
a61af66fc99e Initial load
duke
parents:
diff changeset
506 JNIid* id = instanceKlass::cast(k1())->jni_id_for(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
507 assert(id != NULL, "corrupt Field object");
a61af66fc99e Initial load
duke
parents:
diff changeset
508 debug_only(id->set_is_static_field_id();)
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // A jfieldID for a static field is a JNIid specifying the field holder and the offset within the klassOop
a61af66fc99e Initial load
duke
parents:
diff changeset
510 ret = jfieldIDWorkaround::to_static_jfieldID(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
511 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
513
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // The slot is the index of the field description in the field-array
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // The jfieldID is the offset of the field within the object
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // It may also have hash bits for k, if VerifyJNIFields is turned on.
a61af66fc99e Initial load
duke
parents:
diff changeset
517 intptr_t offset = instanceKlass::cast(k1())->offset_from_fields( slot );
a61af66fc99e Initial load
duke
parents:
diff changeset
518 assert(instanceKlass::cast(k1())->contains_field_offset(offset), "stay within object");
a61af66fc99e Initial load
duke
parents:
diff changeset
519 ret = jfieldIDWorkaround::to_instance_jfieldID(k1(), offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
520 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
521 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 DT_RETURN_MARK_DECL(ToReflectedMethod, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
524
a61af66fc99e Initial load
duke
parents:
diff changeset
525 JNI_ENTRY(jobject, jni_ToReflectedMethod(JNIEnv *env, jclass cls, jmethodID method_id, jboolean isStatic))
a61af66fc99e Initial load
duke
parents:
diff changeset
526 JNIWrapper("ToReflectedMethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
527 DTRACE_PROBE4(hotspot_jni, ToReflectedMethod__entry, env, cls, method_id, isStatic);
a61af66fc99e Initial load
duke
parents:
diff changeset
528 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
529 DT_RETURN_MARK(ToReflectedMethod, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 methodHandle m (THREAD, JNIHandles::resolve_jmethod_id(method_id));
a61af66fc99e Initial load
duke
parents:
diff changeset
532 assert(m->is_static() == (isStatic != 0), "jni_ToReflectedMethod access flags doesn't match");
a61af66fc99e Initial load
duke
parents:
diff changeset
533 oop reflection_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
534 if (m->is_initializer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
535 reflection_method = Reflection::new_constructor(m, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
536 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
537 reflection_method = Reflection::new_method(m, UseNewReflection, false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
539 ret = JNIHandles::make_local(env, reflection_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
540 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
541 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
542
a61af66fc99e Initial load
duke
parents:
diff changeset
543 DT_RETURN_MARK_DECL(GetSuperclass, jclass);
a61af66fc99e Initial load
duke
parents:
diff changeset
544
a61af66fc99e Initial load
duke
parents:
diff changeset
545 JNI_ENTRY(jclass, jni_GetSuperclass(JNIEnv *env, jclass sub))
a61af66fc99e Initial load
duke
parents:
diff changeset
546 JNIWrapper("GetSuperclass");
a61af66fc99e Initial load
duke
parents:
diff changeset
547 DTRACE_PROBE2(hotspot_jni, GetSuperclass__entry, env, sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
548 jclass obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 DT_RETURN_MARK(GetSuperclass, jclass, (const jclass&)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 oop mirror = JNIHandles::resolve_non_null(sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // primitive classes return NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
553 if (java_lang_Class::is_primitive(mirror)) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
554
a61af66fc99e Initial load
duke
parents:
diff changeset
555 // Rules of Class.getSuperClass as implemented by KLass::java_super:
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // arrays return Object
a61af66fc99e Initial load
duke
parents:
diff changeset
557 // interfaces return NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
558 // proper classes return Klass::super()
a61af66fc99e Initial load
duke
parents:
diff changeset
559 klassOop k = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
560 if (Klass::cast(k)->is_interface()) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // return mirror for superclass
a61af66fc99e Initial load
duke
parents:
diff changeset
563 klassOop super = Klass::cast(k)->java_super();
a61af66fc99e Initial load
duke
parents:
diff changeset
564 // super2 is the value computed by the compiler's getSuperClass intrinsic:
a61af66fc99e Initial load
duke
parents:
diff changeset
565 debug_only(klassOop super2 = ( Klass::cast(k)->oop_is_javaArray()
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
566 ? SystemDictionary::Object_klass()
0
a61af66fc99e Initial load
duke
parents:
diff changeset
567 : Klass::cast(k)->super() ) );
a61af66fc99e Initial load
duke
parents:
diff changeset
568 assert(super == super2,
a61af66fc99e Initial load
duke
parents:
diff changeset
569 "java_super computation depends on interface, array, other super");
a61af66fc99e Initial load
duke
parents:
diff changeset
570 obj = (super == NULL) ? NULL : (jclass) JNIHandles::make_local(Klass::cast(super)->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
571 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
572 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
573
a61af66fc99e Initial load
duke
parents:
diff changeset
574 JNI_QUICK_ENTRY(jboolean, jni_IsAssignableFrom(JNIEnv *env, jclass sub, jclass super))
a61af66fc99e Initial load
duke
parents:
diff changeset
575 JNIWrapper("IsSubclassOf");
a61af66fc99e Initial load
duke
parents:
diff changeset
576 DTRACE_PROBE3(hotspot_jni, IsAssignableFrom__entry, env, sub, super);
a61af66fc99e Initial load
duke
parents:
diff changeset
577 oop sub_mirror = JNIHandles::resolve_non_null(sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
578 oop super_mirror = JNIHandles::resolve_non_null(super);
a61af66fc99e Initial load
duke
parents:
diff changeset
579 if (java_lang_Class::is_primitive(sub_mirror) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
580 java_lang_Class::is_primitive(super_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
581 jboolean ret = (sub_mirror == super_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 DTRACE_PROBE1(hotspot_jni, IsAssignableFrom__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
583 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585 klassOop sub_klass = java_lang_Class::as_klassOop(sub_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
586 klassOop super_klass = java_lang_Class::as_klassOop(super_mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
587 assert(sub_klass != NULL && super_klass != NULL, "invalid arguments to jni_IsAssignableFrom");
a61af66fc99e Initial load
duke
parents:
diff changeset
588 jboolean ret = Klass::cast(sub_klass)->is_subtype_of(super_klass) ?
a61af66fc99e Initial load
duke
parents:
diff changeset
589 JNI_TRUE : JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
590 DTRACE_PROBE1(hotspot_jni, IsAssignableFrom__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
591 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
592 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 DT_RETURN_MARK_DECL(Throw, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 JNI_ENTRY(jint, jni_Throw(JNIEnv *env, jthrowable obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
597 JNIWrapper("Throw");
a61af66fc99e Initial load
duke
parents:
diff changeset
598 DTRACE_PROBE2(hotspot_jni, Throw__entry, env, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
599 jint ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
600 DT_RETURN_MARK(Throw, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
601
a61af66fc99e Initial load
duke
parents:
diff changeset
602 THROW_OOP_(JNIHandles::resolve(obj), JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
603 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
604 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
605
a61af66fc99e Initial load
duke
parents:
diff changeset
606 DT_RETURN_MARK_DECL(ThrowNew, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 JNI_ENTRY(jint, jni_ThrowNew(JNIEnv *env, jclass clazz, const char *message))
a61af66fc99e Initial load
duke
parents:
diff changeset
609 JNIWrapper("ThrowNew");
a61af66fc99e Initial load
duke
parents:
diff changeset
610 DTRACE_PROBE3(hotspot_jni, ThrowNew__entry, env, clazz, message);
a61af66fc99e Initial load
duke
parents:
diff changeset
611 jint ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
612 DT_RETURN_MARK(ThrowNew, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
613
a61af66fc99e Initial load
duke
parents:
diff changeset
614 instanceKlass* k = instanceKlass::cast(java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz)));
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
615 Symbol* name = k->name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
616 Handle class_loader (THREAD, k->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
617 Handle protection_domain (THREAD, k->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
618 THROW_MSG_LOADER_(name, (char *)message, class_loader, protection_domain, JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
619 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
620 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
621
a61af66fc99e Initial load
duke
parents:
diff changeset
622
a61af66fc99e Initial load
duke
parents:
diff changeset
623 // JNI functions only transform a pending async exception to a synchronous
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // exception in ExceptionOccurred and ExceptionCheck calls, since
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // delivering an async exception in other places won't change the native
a61af66fc99e Initial load
duke
parents:
diff changeset
626 // code's control flow and would be harmful when native code further calls
a61af66fc99e Initial load
duke
parents:
diff changeset
627 // JNI functions with a pending exception. Async exception is also checked
a61af66fc99e Initial load
duke
parents:
diff changeset
628 // during the call, so ExceptionOccurred/ExceptionCheck won't return
a61af66fc99e Initial load
duke
parents:
diff changeset
629 // false but deliver the async exception at the very end during
a61af66fc99e Initial load
duke
parents:
diff changeset
630 // state transition.
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 static void jni_check_async_exceptions(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
633 assert(thread == Thread::current(), "must be itself");
a61af66fc99e Initial load
duke
parents:
diff changeset
634 thread->check_and_handle_async_exceptions();
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 JNI_ENTRY_NO_PRESERVE(jthrowable, jni_ExceptionOccurred(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
638 JNIWrapper("ExceptionOccurred");
a61af66fc99e Initial load
duke
parents:
diff changeset
639 DTRACE_PROBE1(hotspot_jni, ExceptionOccurred__entry, env);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 jni_check_async_exceptions(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
641 oop exception = thread->pending_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
642 jthrowable ret = (jthrowable) JNIHandles::make_local(env, exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
643 DTRACE_PROBE1(hotspot_jni, ExceptionOccurred__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
644 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
645 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
646
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 JNI_ENTRY_NO_PRESERVE(void, jni_ExceptionDescribe(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
649 JNIWrapper("ExceptionDescribe");
a61af66fc99e Initial load
duke
parents:
diff changeset
650 DTRACE_PROBE1(hotspot_jni, ExceptionDescribe__entry, env);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 if (thread->has_pending_exception()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
652 Handle ex(thread, thread->pending_exception());
a61af66fc99e Initial load
duke
parents:
diff changeset
653 thread->clear_pending_exception();
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
654 if (ex->is_a(SystemDictionary::ThreadDeath_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // Don't print anything if we are being killed.
a61af66fc99e Initial load
duke
parents:
diff changeset
656 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
657 jio_fprintf(defaultStream::error_stream(), "Exception ");
a61af66fc99e Initial load
duke
parents:
diff changeset
658 if (thread != NULL && thread->threadObj() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
659 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
660 jio_fprintf(defaultStream::error_stream(),
a61af66fc99e Initial load
duke
parents:
diff changeset
661 "in thread \"%s\" ", thread->get_thread_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
662 }
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
663 if (ex->is_a(SystemDictionary::Throwable_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
664 JavaValue result(T_VOID);
a61af66fc99e Initial load
duke
parents:
diff changeset
665 JavaCalls::call_virtual(&result,
a61af66fc99e Initial load
duke
parents:
diff changeset
666 ex,
a61af66fc99e Initial load
duke
parents:
diff changeset
667 KlassHandle(THREAD,
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
668 SystemDictionary::Throwable_klass()),
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
669 vmSymbols::printStackTrace_name(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
670 vmSymbols::void_method_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
671 THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // If an exception is thrown in the call it gets thrown away. Not much
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // we can do with it. The native code that calls this, does not check
a61af66fc99e Initial load
duke
parents:
diff changeset
674 // for the exception - hence, it might still be in the thread when DestroyVM gets
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // called, potentially causing a few asserts to trigger - since no pending exception
a61af66fc99e Initial load
duke
parents:
diff changeset
676 // is expected.
a61af66fc99e Initial load
duke
parents:
diff changeset
677 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
678 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
679 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
680 jio_fprintf(defaultStream::error_stream(),
a61af66fc99e Initial load
duke
parents:
diff changeset
681 ". Uncaught exception of type %s.",
a61af66fc99e Initial load
duke
parents:
diff changeset
682 Klass::cast(ex->klass())->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685 }
a61af66fc99e Initial load
duke
parents:
diff changeset
686 DTRACE_PROBE(hotspot_jni, ExceptionDescribe__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
687 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
688
a61af66fc99e Initial load
duke
parents:
diff changeset
689
a61af66fc99e Initial load
duke
parents:
diff changeset
690 JNI_QUICK_ENTRY(void, jni_ExceptionClear(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
691 JNIWrapper("ExceptionClear");
a61af66fc99e Initial load
duke
parents:
diff changeset
692 DTRACE_PROBE1(hotspot_jni, ExceptionClear__entry, env);
a61af66fc99e Initial load
duke
parents:
diff changeset
693
a61af66fc99e Initial load
duke
parents:
diff changeset
694 // The jni code might be using this API to clear java thrown exception.
a61af66fc99e Initial load
duke
parents:
diff changeset
695 // So just mark jvmti thread exception state as exception caught.
a61af66fc99e Initial load
duke
parents:
diff changeset
696 JvmtiThreadState *state = JavaThread::current()->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
697 if (state != NULL && state->is_exception_detected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
698 state->set_exception_caught();
a61af66fc99e Initial load
duke
parents:
diff changeset
699 }
a61af66fc99e Initial load
duke
parents:
diff changeset
700 thread->clear_pending_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
701 DTRACE_PROBE(hotspot_jni, ExceptionClear__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
702 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
703
a61af66fc99e Initial load
duke
parents:
diff changeset
704
a61af66fc99e Initial load
duke
parents:
diff changeset
705 JNI_ENTRY(void, jni_FatalError(JNIEnv *env, const char *msg))
a61af66fc99e Initial load
duke
parents:
diff changeset
706 JNIWrapper("FatalError");
a61af66fc99e Initial load
duke
parents:
diff changeset
707 DTRACE_PROBE2(hotspot_jni, FatalError__entry, env, msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
708 tty->print_cr("FATAL ERROR in native method: %s", msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
709 thread->print_stack();
227
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 113
diff changeset
710 os::abort(); // Dump core and abort
0
a61af66fc99e Initial load
duke
parents:
diff changeset
711 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
712
a61af66fc99e Initial load
duke
parents:
diff changeset
713
a61af66fc99e Initial load
duke
parents:
diff changeset
714 JNI_ENTRY(jint, jni_PushLocalFrame(JNIEnv *env, jint capacity))
a61af66fc99e Initial load
duke
parents:
diff changeset
715 JNIWrapper("PushLocalFrame");
a61af66fc99e Initial load
duke
parents:
diff changeset
716 DTRACE_PROBE2(hotspot_jni, PushLocalFrame__entry, env, capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
717 //%note jni_11
a61af66fc99e Initial load
duke
parents:
diff changeset
718 if (capacity < 0 && capacity > MAX_REASONABLE_LOCAL_CAPACITY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
719 DTRACE_PROBE1(hotspot_jni, PushLocalFrame__return, JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
720 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
721 }
a61af66fc99e Initial load
duke
parents:
diff changeset
722 JNIHandleBlock* old_handles = thread->active_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
723 JNIHandleBlock* new_handles = JNIHandleBlock::allocate_block(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
724 assert(new_handles != NULL, "should not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
725 new_handles->set_pop_frame_link(old_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
726 thread->set_active_handles(new_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
727 jint ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
728 DTRACE_PROBE1(hotspot_jni, PushLocalFrame__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
729 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
730 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
731
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733 JNI_ENTRY(jobject, jni_PopLocalFrame(JNIEnv *env, jobject result))
a61af66fc99e Initial load
duke
parents:
diff changeset
734 JNIWrapper("PopLocalFrame");
a61af66fc99e Initial load
duke
parents:
diff changeset
735 DTRACE_PROBE2(hotspot_jni, PopLocalFrame__entry, env, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
736 //%note jni_11
a61af66fc99e Initial load
duke
parents:
diff changeset
737 Handle result_handle(thread, JNIHandles::resolve(result));
a61af66fc99e Initial load
duke
parents:
diff changeset
738 JNIHandleBlock* old_handles = thread->active_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
739 JNIHandleBlock* new_handles = old_handles->pop_frame_link();
a61af66fc99e Initial load
duke
parents:
diff changeset
740 if (new_handles != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
741 // As a sanity check we only release the handle blocks if the pop_frame_link is not NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // This way code will still work if PopLocalFrame is called without a corresponding
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // PushLocalFrame call. Note that we set the pop_frame_link to NULL explicitly, otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
744 // the release_block call will release the blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
745 thread->set_active_handles(new_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
746 old_handles->set_pop_frame_link(NULL); // clear link we won't release new_handles below
a61af66fc99e Initial load
duke
parents:
diff changeset
747 JNIHandleBlock::release_block(old_handles, thread); // may block
a61af66fc99e Initial load
duke
parents:
diff changeset
748 result = JNIHandles::make_local(thread, result_handle());
a61af66fc99e Initial load
duke
parents:
diff changeset
749 }
a61af66fc99e Initial load
duke
parents:
diff changeset
750 DTRACE_PROBE1(hotspot_jni, PopLocalFrame__return, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
751 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
752 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
753
a61af66fc99e Initial load
duke
parents:
diff changeset
754
a61af66fc99e Initial load
duke
parents:
diff changeset
755 JNI_ENTRY(jobject, jni_NewGlobalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
756 JNIWrapper("NewGlobalRef");
a61af66fc99e Initial load
duke
parents:
diff changeset
757 DTRACE_PROBE2(hotspot_jni, NewGlobalRef__entry, env, ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
758 Handle ref_handle(thread, JNIHandles::resolve(ref));
a61af66fc99e Initial load
duke
parents:
diff changeset
759 jobject ret = JNIHandles::make_global(ref_handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
760 DTRACE_PROBE1(hotspot_jni, NewGlobalRef__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
761 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
762 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 // Must be JNI_ENTRY (with HandleMark)
a61af66fc99e Initial load
duke
parents:
diff changeset
765 JNI_ENTRY_NO_PRESERVE(void, jni_DeleteGlobalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
766 JNIWrapper("DeleteGlobalRef");
a61af66fc99e Initial load
duke
parents:
diff changeset
767 DTRACE_PROBE2(hotspot_jni, DeleteGlobalRef__entry, env, ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
768 JNIHandles::destroy_global(ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
769 DTRACE_PROBE(hotspot_jni, DeleteGlobalRef__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
770 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
771
a61af66fc99e Initial load
duke
parents:
diff changeset
772 JNI_QUICK_ENTRY(void, jni_DeleteLocalRef(JNIEnv *env, jobject obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
773 JNIWrapper("DeleteLocalRef");
a61af66fc99e Initial load
duke
parents:
diff changeset
774 DTRACE_PROBE2(hotspot_jni, DeleteLocalRef__entry, env, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
775 JNIHandles::destroy_local(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
776 DTRACE_PROBE(hotspot_jni, DeleteLocalRef__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
777 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
778
a61af66fc99e Initial load
duke
parents:
diff changeset
779 JNI_QUICK_ENTRY(jboolean, jni_IsSameObject(JNIEnv *env, jobject r1, jobject r2))
a61af66fc99e Initial load
duke
parents:
diff changeset
780 JNIWrapper("IsSameObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
781 DTRACE_PROBE3(hotspot_jni, IsSameObject__entry, env, r1, r2);
a61af66fc99e Initial load
duke
parents:
diff changeset
782 oop a = JNIHandles::resolve(r1);
a61af66fc99e Initial load
duke
parents:
diff changeset
783 oop b = JNIHandles::resolve(r2);
a61af66fc99e Initial load
duke
parents:
diff changeset
784 jboolean ret = (a == b) ? JNI_TRUE : JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
785 DTRACE_PROBE1(hotspot_jni, IsSameObject__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
787 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
788
a61af66fc99e Initial load
duke
parents:
diff changeset
789
a61af66fc99e Initial load
duke
parents:
diff changeset
790 JNI_ENTRY(jobject, jni_NewLocalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
791 JNIWrapper("NewLocalRef");
a61af66fc99e Initial load
duke
parents:
diff changeset
792 DTRACE_PROBE2(hotspot_jni, NewLocalRef__entry, env, ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
793 jobject ret = JNIHandles::make_local(env, JNIHandles::resolve(ref));
a61af66fc99e Initial load
duke
parents:
diff changeset
794 DTRACE_PROBE1(hotspot_jni, NewLocalRef__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
795 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
796 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
797
a61af66fc99e Initial load
duke
parents:
diff changeset
798 JNI_LEAF(jint, jni_EnsureLocalCapacity(JNIEnv *env, jint capacity))
a61af66fc99e Initial load
duke
parents:
diff changeset
799 JNIWrapper("EnsureLocalCapacity");
a61af66fc99e Initial load
duke
parents:
diff changeset
800 DTRACE_PROBE2(hotspot_jni, EnsureLocalCapacity__entry, env, capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 jint ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
802 if (capacity >= 0 && capacity <= MAX_REASONABLE_LOCAL_CAPACITY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
803 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
804 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
805 ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
807 DTRACE_PROBE1(hotspot_jni, EnsureLocalCapacity__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
808 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
809 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 // Return the Handle Type
a61af66fc99e Initial load
duke
parents:
diff changeset
812 JNI_LEAF(jobjectRefType, jni_GetObjectRefType(JNIEnv *env, jobject obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
813 JNIWrapper("GetObjectRefType");
a61af66fc99e Initial load
duke
parents:
diff changeset
814 DTRACE_PROBE2(hotspot_jni, GetObjectRefType__entry, env, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
815 jobjectRefType ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
816 if (JNIHandles::is_local_handle(thread, obj) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
817 JNIHandles::is_frame_handle(thread, obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
818 ret = JNILocalRefType;
a61af66fc99e Initial load
duke
parents:
diff changeset
819 else if (JNIHandles::is_global_handle(obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
820 ret = JNIGlobalRefType;
a61af66fc99e Initial load
duke
parents:
diff changeset
821 else if (JNIHandles::is_weak_global_handle(obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
822 ret = JNIWeakGlobalRefType;
a61af66fc99e Initial load
duke
parents:
diff changeset
823 else
a61af66fc99e Initial load
duke
parents:
diff changeset
824 ret = JNIInvalidRefType;
a61af66fc99e Initial load
duke
parents:
diff changeset
825 DTRACE_PROBE1(hotspot_jni, GetObjectRefType__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
826 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
827 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
828
a61af66fc99e Initial load
duke
parents:
diff changeset
829
a61af66fc99e Initial load
duke
parents:
diff changeset
830 class JNI_ArgumentPusher : public SignatureIterator {
a61af66fc99e Initial load
duke
parents:
diff changeset
831 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
832 JavaCallArguments* _arguments;
a61af66fc99e Initial load
duke
parents:
diff changeset
833
a61af66fc99e Initial load
duke
parents:
diff changeset
834 virtual void get_bool () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
835 virtual void get_char () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
836 virtual void get_short () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
837 virtual void get_byte () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
838 virtual void get_int () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
839 virtual void get_long () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
840 virtual void get_float () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
841 virtual void get_double () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
842 virtual void get_object () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
843
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
844 JNI_ArgumentPusher(Symbol* signature) : SignatureIterator(signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
845 this->_return_type = T_ILLEGAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
846 _arguments = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
847 }
a61af66fc99e Initial load
duke
parents:
diff changeset
848
a61af66fc99e Initial load
duke
parents:
diff changeset
849 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
850 virtual void iterate( uint64_t fingerprint ) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 void set_java_argument_object(JavaCallArguments *arguments) { _arguments = arguments; }
a61af66fc99e Initial load
duke
parents:
diff changeset
853
a61af66fc99e Initial load
duke
parents:
diff changeset
854 inline void do_bool() { if (!is_return_type()) get_bool(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
855 inline void do_char() { if (!is_return_type()) get_char(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
856 inline void do_short() { if (!is_return_type()) get_short(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
857 inline void do_byte() { if (!is_return_type()) get_byte(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
858 inline void do_int() { if (!is_return_type()) get_int(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
859 inline void do_long() { if (!is_return_type()) get_long(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
860 inline void do_float() { if (!is_return_type()) get_float(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
861 inline void do_double() { if (!is_return_type()) get_double(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
862 inline void do_object(int begin, int end) { if (!is_return_type()) get_object(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
863 inline void do_array(int begin, int end) { if (!is_return_type()) get_object(); } // do_array uses get_object -- there is no get_array
a61af66fc99e Initial load
duke
parents:
diff changeset
864 inline void do_void() { }
a61af66fc99e Initial load
duke
parents:
diff changeset
865
a61af66fc99e Initial load
duke
parents:
diff changeset
866 JavaCallArguments* arguments() { return _arguments; }
a61af66fc99e Initial load
duke
parents:
diff changeset
867 void push_receiver(Handle h) { _arguments->push_oop(h); }
a61af66fc99e Initial load
duke
parents:
diff changeset
868 };
a61af66fc99e Initial load
duke
parents:
diff changeset
869
a61af66fc99e Initial load
duke
parents:
diff changeset
870
a61af66fc99e Initial load
duke
parents:
diff changeset
871 class JNI_ArgumentPusherVaArg : public JNI_ArgumentPusher {
a61af66fc99e Initial load
duke
parents:
diff changeset
872 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
873 va_list _ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
874
a61af66fc99e Initial load
duke
parents:
diff changeset
875 inline void get_bool() { _arguments->push_int(va_arg(_ap, jint)); } // bool is coerced to int when using va_arg
a61af66fc99e Initial load
duke
parents:
diff changeset
876 inline void get_char() { _arguments->push_int(va_arg(_ap, jint)); } // char is coerced to int when using va_arg
a61af66fc99e Initial load
duke
parents:
diff changeset
877 inline void get_short() { _arguments->push_int(va_arg(_ap, jint)); } // short is coerced to int when using va_arg
a61af66fc99e Initial load
duke
parents:
diff changeset
878 inline void get_byte() { _arguments->push_int(va_arg(_ap, jint)); } // byte is coerced to int when using va_arg
a61af66fc99e Initial load
duke
parents:
diff changeset
879 inline void get_int() { _arguments->push_int(va_arg(_ap, jint)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
880
a61af66fc99e Initial load
duke
parents:
diff changeset
881 // each of these paths is exercized by the various jck Call[Static,Nonvirtual,][Void,Int,..]Method[A,V,] tests
a61af66fc99e Initial load
duke
parents:
diff changeset
882
a61af66fc99e Initial load
duke
parents:
diff changeset
883 inline void get_long() { _arguments->push_long(va_arg(_ap, jlong)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
884 inline void get_float() { _arguments->push_float((jfloat)va_arg(_ap, jdouble)); } // float is coerced to double w/ va_arg
a61af66fc99e Initial load
duke
parents:
diff changeset
885 inline void get_double() { _arguments->push_double(va_arg(_ap, jdouble)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
886 inline void get_object() { jobject l = va_arg(_ap, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
887 _arguments->push_oop(Handle((oop *)l, false)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
888
a61af66fc99e Initial load
duke
parents:
diff changeset
889 inline void set_ap(va_list rap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
890 #ifdef va_copy
a61af66fc99e Initial load
duke
parents:
diff changeset
891 va_copy(_ap, rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
892 #elif defined (__va_copy)
a61af66fc99e Initial load
duke
parents:
diff changeset
893 __va_copy(_ap, rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
894 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
895 _ap = rap;
a61af66fc99e Initial load
duke
parents:
diff changeset
896 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
897 }
a61af66fc99e Initial load
duke
parents:
diff changeset
898
a61af66fc99e Initial load
duke
parents:
diff changeset
899 public:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
900 JNI_ArgumentPusherVaArg(Symbol* signature, va_list rap)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
901 : JNI_ArgumentPusher(signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
902 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
903 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
904 JNI_ArgumentPusherVaArg(jmethodID method_id, va_list rap)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
905 : JNI_ArgumentPusher(JNIHandles::resolve_jmethod_id(method_id)->signature()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
906 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 // Optimized path if we have the bitvector form of signature
a61af66fc99e Initial load
duke
parents:
diff changeset
910 void iterate( uint64_t fingerprint ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
911 if ( fingerprint == UCONST64(-1) ) SignatureIterator::iterate();// Must be too many arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
912 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
913 _return_type = (BasicType)((fingerprint >> static_feature_size) &
a61af66fc99e Initial load
duke
parents:
diff changeset
914 result_feature_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
915
a61af66fc99e Initial load
duke
parents:
diff changeset
916 assert(fingerprint, "Fingerprint should not be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
917 fingerprint = fingerprint >> (static_feature_size + result_feature_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
918 while ( 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
919 switch ( fingerprint & parameter_feature_mask ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
920 case bool_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
921 case char_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
922 case short_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
923 case byte_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
924 case int_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
925 get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
926 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
927 case obj_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
928 get_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
929 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
930 case long_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
931 get_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
932 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
933 case float_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
934 get_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
935 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
936 case double_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
937 get_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
938 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
939 case done_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
940 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
941 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
942 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
943 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
944 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
945 }
a61af66fc99e Initial load
duke
parents:
diff changeset
946 fingerprint >>= parameter_feature_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
947 }
a61af66fc99e Initial load
duke
parents:
diff changeset
948 }
a61af66fc99e Initial load
duke
parents:
diff changeset
949 }
a61af66fc99e Initial load
duke
parents:
diff changeset
950 };
a61af66fc99e Initial load
duke
parents:
diff changeset
951
a61af66fc99e Initial load
duke
parents:
diff changeset
952
a61af66fc99e Initial load
duke
parents:
diff changeset
953 class JNI_ArgumentPusherArray : public JNI_ArgumentPusher {
a61af66fc99e Initial load
duke
parents:
diff changeset
954 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
955 const jvalue *_ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
956
a61af66fc99e Initial load
duke
parents:
diff changeset
957 inline void get_bool() { _arguments->push_int((jint)(_ap++)->z); }
a61af66fc99e Initial load
duke
parents:
diff changeset
958 inline void get_char() { _arguments->push_int((jint)(_ap++)->c); }
a61af66fc99e Initial load
duke
parents:
diff changeset
959 inline void get_short() { _arguments->push_int((jint)(_ap++)->s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
960 inline void get_byte() { _arguments->push_int((jint)(_ap++)->b); }
a61af66fc99e Initial load
duke
parents:
diff changeset
961 inline void get_int() { _arguments->push_int((jint)(_ap++)->i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
962
a61af66fc99e Initial load
duke
parents:
diff changeset
963 inline void get_long() { _arguments->push_long((_ap++)->j); }
a61af66fc99e Initial load
duke
parents:
diff changeset
964 inline void get_float() { _arguments->push_float((_ap++)->f); }
a61af66fc99e Initial load
duke
parents:
diff changeset
965 inline void get_double() { _arguments->push_double((_ap++)->d);}
a61af66fc99e Initial load
duke
parents:
diff changeset
966 inline void get_object() { _arguments->push_oop(Handle((oop *)(_ap++)->l, false)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
967
a61af66fc99e Initial load
duke
parents:
diff changeset
968 inline void set_ap(const jvalue *rap) { _ap = rap; }
a61af66fc99e Initial load
duke
parents:
diff changeset
969
a61af66fc99e Initial load
duke
parents:
diff changeset
970 public:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
971 JNI_ArgumentPusherArray(Symbol* signature, const jvalue *rap)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
972 : JNI_ArgumentPusher(signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
973 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
974 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
975 JNI_ArgumentPusherArray(jmethodID method_id, const jvalue *rap)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
976 : JNI_ArgumentPusher(JNIHandles::resolve_jmethod_id(method_id)->signature()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
977 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
978 }
a61af66fc99e Initial load
duke
parents:
diff changeset
979
a61af66fc99e Initial load
duke
parents:
diff changeset
980 // Optimized path if we have the bitvector form of signature
a61af66fc99e Initial load
duke
parents:
diff changeset
981 void iterate( uint64_t fingerprint ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
982 if ( fingerprint == UCONST64(-1) ) SignatureIterator::iterate(); // Must be too many arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
983 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
984 _return_type = (BasicType)((fingerprint >> static_feature_size) &
a61af66fc99e Initial load
duke
parents:
diff changeset
985 result_feature_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
986 assert(fingerprint, "Fingerprint should not be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
987 fingerprint = fingerprint >> (static_feature_size + result_feature_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
988 while ( 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
989 switch ( fingerprint & parameter_feature_mask ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 case bool_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
991 get_bool();
a61af66fc99e Initial load
duke
parents:
diff changeset
992 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
993 case char_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
994 get_char();
a61af66fc99e Initial load
duke
parents:
diff changeset
995 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
996 case short_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
997 get_short();
a61af66fc99e Initial load
duke
parents:
diff changeset
998 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
999 case byte_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 get_byte();
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 case int_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 case obj_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 get_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 case long_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 get_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 case float_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 get_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 case double_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 get_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 case done_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 fingerprint >>= parameter_feature_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1029
a61af66fc99e Initial load
duke
parents:
diff changeset
1030
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 enum JNICallType {
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 JNI_STATIC,
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 JNI_VIRTUAL,
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 JNI_NONVIRTUAL
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1036
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 static methodHandle jni_resolve_interface_call(Handle recv, methodHandle method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 assert(!method.is_null() , "method should not be null");
a61af66fc99e Initial load
duke
parents:
diff changeset
1039
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 KlassHandle recv_klass; // Default to NULL (use of ?: can confuse gcc)
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (recv.not_null()) recv_klass = KlassHandle(THREAD, recv->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 KlassHandle spec_klass (THREAD, method->method_holder());
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1043 Symbol* name = method->name();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1044 Symbol* signature = method->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 CallInfo info;
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 LinkResolver::resolve_interface_call(info, recv, recv_klass, spec_klass, name, signature, KlassHandle(), false, true, CHECK_(methodHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 return info.selected_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1049
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 static methodHandle jni_resolve_virtual_call(Handle recv, methodHandle method, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 assert(!method.is_null() , "method should not be null");
a61af66fc99e Initial load
duke
parents:
diff changeset
1052
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 KlassHandle recv_klass; // Default to NULL (use of ?: can confuse gcc)
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 if (recv.not_null()) recv_klass = KlassHandle(THREAD, recv->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 KlassHandle spec_klass (THREAD, method->method_holder());
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1056 Symbol* name = method->name();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1057 Symbol* signature = method->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 CallInfo info;
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 LinkResolver::resolve_virtual_call(info, recv, recv_klass, spec_klass, name, signature, KlassHandle(), false, true, CHECK_(methodHandle()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 return info.selected_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1062
a61af66fc99e Initial load
duke
parents:
diff changeset
1063
a61af66fc99e Initial load
duke
parents:
diff changeset
1064
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 static void jni_invoke_static(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 methodHandle method(THREAD, JNIHandles::resolve_jmethod_id(method_id));
a61af66fc99e Initial load
duke
parents:
diff changeset
1067
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 // Create object to hold arguments for the JavaCall, and associate it with
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 // the jni parser
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 int number_of_parameters = method->size_of_parameters();
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 JavaCallArguments java_args(number_of_parameters);
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 args->set_java_argument_object(&java_args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1074
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 assert(method->is_static(), "method should be static");
a61af66fc99e Initial load
duke
parents:
diff changeset
1076
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 // Fill out JavaCallArguments object
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1078 args->iterate( Fingerprinter(method).fingerprint() );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 // Initialize result type
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 result->set_type(args->get_ret_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
1081
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 // Invoke the method. Result is returned as oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 JavaCalls::call(result, method, &java_args, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1084
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 // Convert result
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1090
a61af66fc99e Initial load
duke
parents:
diff changeset
1091
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 static void jni_invoke_nonstatic(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 oop recv = JNIHandles::resolve(receiver);
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 if (recv == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 THROW(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 Handle h_recv(THREAD, recv);
a61af66fc99e Initial load
duke
parents:
diff changeset
1098
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 int number_of_parameters;
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 methodOop selected_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 methodOop m = JNIHandles::resolve_jmethod_id(method_id);
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 number_of_parameters = m->size_of_parameters();
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 klassOop holder = m->method_holder();
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 if (!(Klass::cast(holder))->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 // non-interface call -- for that little speed boost, don't handlize
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 debug_only(No_Safepoint_Verifier nosafepoint;)
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 if (call_type == JNI_VIRTUAL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 // jni_GetMethodID makes sure class is linked and initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 // so m should have a valid vtable index.
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 int vtbl_index = m->vtable_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 if (vtbl_index != methodOopDesc::nonvirtual_vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 klassOop k = h_recv->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 // k might be an arrayKlassOop but all vtables start at
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 // the same place. The cast is to avoid virtual call and assertion.
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 instanceKlass *ik = (instanceKlass*)k->klass_part();
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 selected_method = ik->method_at_vtable(vtbl_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 // final method
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 selected_method = m;
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 // JNI_NONVIRTUAL call
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 selected_method = m;
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 // interface call
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 KlassHandle h_holder(THREAD, holder);
a61af66fc99e Initial load
duke
parents:
diff changeset
1129
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 int itbl_index = m->cached_itable_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 if (itbl_index == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 itbl_index = klassItable::compute_itable_index(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 m->set_cached_itable_index(itbl_index);
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 // the above may have grabbed a lock, 'm' and anything non-handlized can't be used again
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 klassOop k = h_recv->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 selected_method = instanceKlass::cast(k)->method_at_itable(h_holder(), itbl_index, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1140
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 methodHandle method(THREAD, selected_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1142
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 // Create object to hold arguments for the JavaCall, and associate it with
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 // the jni parser
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 JavaCallArguments java_args(number_of_parameters);
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 args->set_java_argument_object(&java_args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1148
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 // handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 assert(!method->is_static(), "method should not be static");
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 args->push_receiver(h_recv); // Push jobject handle
a61af66fc99e Initial load
duke
parents:
diff changeset
1152
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 // Fill out JavaCallArguments object
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1154 args->iterate( Fingerprinter(method).fingerprint() );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 // Initialize result type
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 result->set_type(args->get_ret_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
1157
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 // Invoke the method. Result is returned as oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 JavaCalls::call(result, method, &java_args, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1160
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 // Convert result
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1166
a61af66fc99e Initial load
duke
parents:
diff changeset
1167
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 static instanceOop alloc_object(jclass clazz, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 KlassHandle k(THREAD, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 Klass::cast(k())->check_valid_for_instantiation(false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 instanceKlass::cast(k())->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 instanceOop ih = instanceKlass::cast(k())->allocate_instance(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 return ih;
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 DT_RETURN_MARK_DECL(AllocObject, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
1177
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 JNI_ENTRY(jobject, jni_AllocObject(JNIEnv *env, jclass clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 JNIWrapper("AllocObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
1180
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 DTRACE_PROBE2(hotspot_jni, AllocObject__entry, env, clazz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 DT_RETURN_MARK(AllocObject, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1184
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 ret = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1189
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 DT_RETURN_MARK_DECL(NewObjectA, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
1191
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 JNI_ENTRY(jobject, jni_NewObjectA(JNIEnv *env, jclass clazz, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 JNIWrapper("NewObjectA");
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 DTRACE_PROBE3(hotspot_jni, NewObjectA__entry, env, clazz, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 jobject obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 DT_RETURN_MARK(NewObjectA, jobject, (const jobject)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1197
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 obj = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1201 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1205
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 DT_RETURN_MARK_DECL(NewObjectV, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
1207
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 JNI_ENTRY(jobject, jni_NewObjectV(JNIEnv *env, jclass clazz, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 JNIWrapper("NewObjectV");
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 DTRACE_PROBE3(hotspot_jni, NewObjectV__entry, env, clazz, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 jobject obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 DT_RETURN_MARK(NewObjectV, jobject, (const jobject&)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1213
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 obj = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1217 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1221
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 DT_RETURN_MARK_DECL(NewObject, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
1223
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 JNI_ENTRY(jobject, jni_NewObject(JNIEnv *env, jclass clazz, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 JNIWrapper("NewObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 DTRACE_PROBE3(hotspot_jni, NewObject__entry, env, clazz, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 jobject obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 DT_RETURN_MARK(NewObject, jobject, (const jobject&)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1229
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 obj = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1235 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1240
a61af66fc99e Initial load
duke
parents:
diff changeset
1241
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 JNI_ENTRY(jclass, jni_GetObjectClass(JNIEnv *env, jobject obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 JNIWrapper("GetObjectClass");
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 DTRACE_PROBE2(hotspot_jni, GetObjectClass__entry, env, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 klassOop k = JNIHandles::resolve_non_null(obj)->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 jclass ret =
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 (jclass) JNIHandles::make_local(env, Klass::cast(k)->java_mirror());
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 DTRACE_PROBE1(hotspot_jni, GetObjectClass__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1251
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 JNI_QUICK_ENTRY(jboolean, jni_IsInstanceOf(JNIEnv *env, jobject obj, jclass clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 JNIWrapper("IsInstanceOf");
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 DTRACE_PROBE3(hotspot_jni, IsInstanceOf__entry, env, obj, clazz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 jboolean ret = JNI_TRUE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 if (obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 ret = JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 klassOop k = java_lang_Class::as_klassOop(
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 JNIHandles::resolve_non_null(clazz));
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 if (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 ret = JNIHandles::resolve_non_null(obj)->is_a(k) ? JNI_TRUE : JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 DTRACE_PROBE1(hotspot_jni, IsInstanceOf__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1267
a61af66fc99e Initial load
duke
parents:
diff changeset
1268
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 static jmethodID get_method_id(JNIEnv *env, jclass clazz, const char *name_str,
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 const char *sig, bool is_static, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 // %%%% This code should probably just call into a method in the LinkResolver
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 // passed in) so the method and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 // table. If they're not there, the method doesn't exist.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1276 const char *name_to_probe = (name_str == NULL)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1277 ? vmSymbols::object_initializer_name()->as_C_string()
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1278 : name_str;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1279 TempNewSymbol name = SymbolTable::probe(name_to_probe, (int)strlen(name_to_probe));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1280 TempNewSymbol signature = SymbolTable::probe(sig, (int)strlen(sig));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1281
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1282 if (name == NULL || signature == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1285
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 // Throw a NoSuchMethodError exception if we have an instance of a
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 // primitive java.lang.Class
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 if (java_lang_Class::is_primitive(JNIHandles::resolve_non_null(clazz))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1291
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 KlassHandle klass(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1294
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 // Make sure class is linked and initialized before handing id's out to
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 // methodOops.
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 Klass::cast(klass())->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1298
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 methodOop m;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1300 if (name == vmSymbols::object_initializer_name() ||
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1301 name == vmSymbols::class_initializer_name()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 // Never search superclasses for constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 if (klass->oop_is_instance()) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1304 m = instanceKlass::cast(klass())->find_method(name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 m = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 } else {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1309 m = klass->lookup_method(name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 // Look up interfaces
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 if (m == NULL && klass->oop_is_instance()) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1312 m = instanceKlass::cast(klass())->lookup_method_in_all_interfaces(name,
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1313 signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 if (m == NULL || (m->is_static() != is_static)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 return m->jmethod_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1321
a61af66fc99e Initial load
duke
parents:
diff changeset
1322
a61af66fc99e Initial load
duke
parents:
diff changeset
1323 JNI_ENTRY(jmethodID, jni_GetMethodID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 JNIWrapper("GetMethodID");
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 DTRACE_PROBE4(hotspot_jni, GetMethodID__entry, env, clazz, name, sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 jmethodID ret = get_method_id(env, clazz, name, sig, false, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 DTRACE_PROBE1(hotspot_jni, GetMethodID__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1331
a61af66fc99e Initial load
duke
parents:
diff changeset
1332
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 JNI_ENTRY(jmethodID, jni_GetStaticMethodID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 JNIWrapper("GetStaticMethodID");
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 DTRACE_PROBE4(hotspot_jni, GetStaticMethodID__entry, env, clazz, name, sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 jmethodID ret = get_method_id(env, clazz, name, sig, true, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 DTRACE_PROBE1(hotspot_jni, GetStaticMethodID__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1341
a61af66fc99e Initial load
duke
parents:
diff changeset
1342
a61af66fc99e Initial load
duke
parents:
diff changeset
1343
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 // Calling Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1347
a61af66fc99e Initial load
duke
parents:
diff changeset
1348
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 #define DEFINE_CALLMETHOD(ResultType, Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##Method, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodV, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodA, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1354 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 JNIWrapper("Call" XSTR(Result) "Method"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 DTRACE_PROBE3(hotspot_jni, Call##Result##Method__entry, env, obj, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1360 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 DT_RETURN_MARK_FOR(Result, Call##Result##Method, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 va_list args; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 va_start(args, methodID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1367 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 va_end(args); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 JNIWrapper("Call" XSTR(Result) "MethodV"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 DTRACE_PROBE3(hotspot_jni, Call##Result##MethodV__entry, env, obj, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 DT_RETURN_MARK_FOR(Result, Call##Result##MethodV, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1385 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 JNIWrapper("Call" XSTR(Result) "MethodA"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 DTRACE_PROBE3(hotspot_jni, Call##Result##MethodA__entry, env, obj, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 DT_RETURN_MARK_FOR(Result, Call##Result##MethodA, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1401 JNI_ArgumentPusherArray ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1406
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 // the runtime type of subword integral basic types is integer
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 DEFINE_CALLMETHOD(jboolean, Boolean, T_BOOLEAN)
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 DEFINE_CALLMETHOD(jbyte, Byte, T_BYTE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 DEFINE_CALLMETHOD(jchar, Char, T_CHAR)
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 DEFINE_CALLMETHOD(jshort, Short, T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1412
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 DEFINE_CALLMETHOD(jobject, Object, T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 DEFINE_CALLMETHOD(jint, Int, T_INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 DEFINE_CALLMETHOD(jlong, Long, T_LONG)
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 DEFINE_CALLMETHOD(jfloat, Float, T_FLOAT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 DEFINE_CALLMETHOD(jdouble, Double, T_DOUBLE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1418
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 DT_VOID_RETURN_MARK_DECL(CallVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 DT_VOID_RETURN_MARK_DECL(CallVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 DT_VOID_RETURN_MARK_DECL(CallVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1422
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 JNI_ENTRY(void, jni_CallVoidMethod(JNIEnv *env, jobject obj, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 JNIWrapper("CallVoidMethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 DTRACE_PROBE3(hotspot_jni, CallVoidMethod__entry, env, obj, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 DT_VOID_RETURN_MARK(CallVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1427
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1431 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1435
a61af66fc99e Initial load
duke
parents:
diff changeset
1436
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 JNI_ENTRY(void, jni_CallVoidMethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 JNIWrapper("CallVoidMethodV");
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 DTRACE_PROBE3(hotspot_jni, CallVoidMethodV__entry, env, obj, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 DT_VOID_RETURN_MARK(CallVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1441
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1443 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1446
a61af66fc99e Initial load
duke
parents:
diff changeset
1447
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 JNI_ENTRY(void, jni_CallVoidMethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 JNIWrapper("CallVoidMethodA");
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 DTRACE_PROBE3(hotspot_jni, CallVoidMethodA__entry, env, obj, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 DT_VOID_RETURN_MARK(CallVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1452
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1454 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1457
a61af66fc99e Initial load
duke
parents:
diff changeset
1458
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 #define DEFINE_CALLNONVIRTUALMETHOD(ResultType, Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##Method, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodV, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodA, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 jni_CallNonvirtual##Result##Method(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 JNIWrapper("CallNonvitual" XSTR(Result) "Method"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##Method__entry, env, obj, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 ResultType ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##Method, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 va_list args; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 va_start(args, methodID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1477 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 va_end(args); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 jni_CallNonvirtual##Result##MethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 JNIWrapper("CallNonvitual" XSTR(Result) "#MethodV"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##MethodV__entry, env, obj, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 ResultType ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodV, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1493 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1500 jni_CallNonvirtual##Result##MethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 JNIWrapper("CallNonvitual" XSTR(Result) "MethodA"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##MethodA__entry, env, obj, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 ResultType ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodA, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1508 JNI_ArgumentPusherArray ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1513
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 // the runtime type of subword integral basic types is integer
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 DEFINE_CALLNONVIRTUALMETHOD(jboolean, Boolean, T_BOOLEAN)
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 DEFINE_CALLNONVIRTUALMETHOD(jbyte, Byte, T_BYTE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 DEFINE_CALLNONVIRTUALMETHOD(jchar, Char, T_CHAR)
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 DEFINE_CALLNONVIRTUALMETHOD(jshort, Short, T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1519
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 DEFINE_CALLNONVIRTUALMETHOD(jobject, Object, T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 DEFINE_CALLNONVIRTUALMETHOD(jint, Int, T_INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 DEFINE_CALLNONVIRTUALMETHOD(jlong, Long, T_LONG)
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 DEFINE_CALLNONVIRTUALMETHOD(jfloat, Float, T_FLOAT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 DEFINE_CALLNONVIRTUALMETHOD(jdouble, Double, T_DOUBLE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1525
a61af66fc99e Initial load
duke
parents:
diff changeset
1526
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1530
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 JNI_ENTRY(void, jni_CallNonvirtualVoidMethod(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 JNIWrapper("CallNonvirtualVoidMethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
1533
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethod__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 env, obj, cls, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 DT_VOID_RETURN_MARK(CallNonvirtualVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1537
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1541 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1545
a61af66fc99e Initial load
duke
parents:
diff changeset
1546
a61af66fc99e Initial load
duke
parents:
diff changeset
1547 JNI_ENTRY(void, jni_CallNonvirtualVoidMethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 JNIWrapper("CallNonvirtualVoidMethodV");
a61af66fc99e Initial load
duke
parents:
diff changeset
1549
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethodV__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 env, obj, cls, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1553
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1555 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1558
a61af66fc99e Initial load
duke
parents:
diff changeset
1559
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 JNI_ENTRY(void, jni_CallNonvirtualVoidMethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 JNIWrapper("CallNonvirtualVoidMethodA");
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethodA__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 env, obj, cls, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1566 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1569
a61af66fc99e Initial load
duke
parents:
diff changeset
1570
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 #define DEFINE_CALLSTATICMETHOD(ResultType, Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##Method, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodV, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodA, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 JNIWrapper("CallStatic" XSTR(Result) "Method"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 DTRACE_PROBE3(hotspot_jni, CallStatic##Result##Method__entry, env, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 DT_RETURN_MARK_FOR(Result, CallStatic##Result##Method, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 va_list args; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 va_start(args, methodID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1589 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 va_end(args); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 JNIWrapper("CallStatic" XSTR(Result) "MethodV"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 DTRACE_PROBE3(hotspot_jni, CallStatic##Result##MethodV__entry, env, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodV, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1605 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 JNIWrapper("CallStatic" XSTR(Result) "MethodA"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 DTRACE_PROBE3(hotspot_jni, CallStatic##Result##MethodA__entry, env, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodA, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1620 JNI_ArgumentPusherArray ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1625
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 // the runtime type of subword integral basic types is integer
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 DEFINE_CALLSTATICMETHOD(jboolean, Boolean, T_BOOLEAN)
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 DEFINE_CALLSTATICMETHOD(jbyte, Byte, T_BYTE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 DEFINE_CALLSTATICMETHOD(jchar, Char, T_CHAR)
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 DEFINE_CALLSTATICMETHOD(jshort, Short, T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1631
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 DEFINE_CALLSTATICMETHOD(jobject, Object, T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 DEFINE_CALLSTATICMETHOD(jint, Int, T_INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 DEFINE_CALLSTATICMETHOD(jlong, Long, T_LONG)
a61af66fc99e Initial load
duke
parents:
diff changeset
1635 DEFINE_CALLSTATICMETHOD(jfloat, Float, T_FLOAT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 DEFINE_CALLSTATICMETHOD(jdouble, Double, T_DOUBLE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1637
a61af66fc99e Initial load
duke
parents:
diff changeset
1638
a61af66fc99e Initial load
duke
parents:
diff changeset
1639 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1642
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 JNI_ENTRY(void, jni_CallStaticVoidMethod(JNIEnv *env, jclass cls, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 JNIWrapper("CallStaticVoidMethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethod__entry, env, cls, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 DT_VOID_RETURN_MARK(CallStaticVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1647
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1650 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1651 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1655
a61af66fc99e Initial load
duke
parents:
diff changeset
1656
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 JNI_ENTRY(void, jni_CallStaticVoidMethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 JNIWrapper("CallStaticVoidMethodV");
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethodV__entry, env, cls, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1660 DT_VOID_RETURN_MARK(CallStaticVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1661
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1663 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1666
a61af66fc99e Initial load
duke
parents:
diff changeset
1667
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 JNI_ENTRY(void, jni_CallStaticVoidMethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 JNIWrapper("CallStaticVoidMethodA");
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethodA__entry, env, cls, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 DT_VOID_RETURN_MARK(CallStaticVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1672
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1674 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1677
a61af66fc99e Initial load
duke
parents:
diff changeset
1678
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 // Accessing Fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1682
a61af66fc99e Initial load
duke
parents:
diff changeset
1683
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 DT_RETURN_MARK_DECL(GetFieldID, jfieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1685
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 JNI_ENTRY(jfieldID, jni_GetFieldID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 JNIWrapper("GetFieldID");
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 DTRACE_PROBE4(hotspot_jni, GetFieldID__entry, env, clazz, name, sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 jfieldID ret = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 DT_RETURN_MARK(GetFieldID, jfieldID, (const jfieldID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1692
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 // passed in) so the field and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 // table. If they're not there, the field doesn't exist.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1696 TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1697 TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1698 if (fieldname == NULL || signame == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 KlassHandle k(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 // Make sure class is initialized before handing id's out to fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 Klass::cast(k())->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1705
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 if (!Klass::cast(k())->oop_is_instance() ||
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1708 !instanceKlass::cast(k())->find_field(fieldname, signame, false, &fd)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1709 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1711
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 // A jfieldID for a non-static field is simply the offset of the field within the instanceOop
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 // It may also have hash bits for k, if VerifyJNIFields is turned on.
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 ret = jfieldIDWorkaround::to_instance_jfieldID(k(), fd.offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1717
a61af66fc99e Initial load
duke
parents:
diff changeset
1718
a61af66fc99e Initial load
duke
parents:
diff changeset
1719 JNI_ENTRY(jobject, jni_GetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID))
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 JNIWrapper("GetObjectField");
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 DTRACE_PROBE3(hotspot_jni, GetObjectField__entry, env, obj, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 oop o = JNIHandles::resolve_non_null(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 klassOop k = o->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1725 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 // jni_GetField_probe() assumes that is okay to create handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 if (JvmtiExport::should_post_field_access()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 o = JvmtiExport::jni_GetField_probe(thread, obj, o, k, fieldID, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1730 jobject ret = JNIHandles::make_local(env, o->obj_field(offset));
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1731 #ifndef SERIALGC
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1732 // If G1 is enabled and we are accessing the value of the referent
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1733 // field in a reference object then we need to register a non-null
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1734 // referent with the SATB barrier.
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1735 if (UseG1GC) {
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1736 bool needs_barrier = false;
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1737
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1738 if (ret != NULL &&
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1739 offset == java_lang_ref_Reference::referent_offset &&
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1740 instanceKlass::cast(k)->reference_type() != REF_NONE) {
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1741 assert(instanceKlass::cast(k)->is_subclass_of(SystemDictionary::Reference_klass()), "sanity");
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1742 needs_barrier = true;
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1743 }
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1744
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1745 if (needs_barrier) {
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1746 oop referent = JNIHandles::resolve(ret);
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1747 G1SATBCardTableModRefBS::enqueue(referent);
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1748 }
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1749 }
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
1750 #endif // SERIALGC
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 DTRACE_PROBE1(hotspot_jni, GetObjectField__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1753 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1754
a61af66fc99e Initial load
duke
parents:
diff changeset
1755
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 #define DEFINE_GETFIELD(Return,Fieldname,Result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1757 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 DT_RETURN_MARK_DECL_FOR(Result, Get##Result##Field, Return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 JNI_QUICK_ENTRY(Return, jni_Get##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 JNIWrapper("Get" XSTR(Result) "Field"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 DTRACE_PROBE3(hotspot_jni, Get##Result##Field__entry, env, obj, fieldID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1764 Return ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1765 DT_RETURN_MARK_FOR(Result, Get##Result##Field, Return, (const Return&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1766 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1767 oop o = JNIHandles::resolve_non_null(obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1768 klassOop k = o->klass(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1769 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 /* jni_GetField_probe_nh() assumes that is not okay to create handles */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 /* and creates a ResetNoHandleMark. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 if (JvmtiExport::should_post_field_access()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 o = JvmtiExport::jni_GetField_probe_nh(thread, obj, o, k, fieldID, false); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 ret = o->Fieldname##_field(offset); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 return ret; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1779
a61af66fc99e Initial load
duke
parents:
diff changeset
1780 DEFINE_GETFIELD(jboolean, bool, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
1781 DEFINE_GETFIELD(jbyte, byte, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 DEFINE_GETFIELD(jchar, char, Char)
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 DEFINE_GETFIELD(jshort, short, Short)
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 DEFINE_GETFIELD(jint, int, Int)
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 DEFINE_GETFIELD(jlong, long, Long)
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 DEFINE_GETFIELD(jfloat, float, Float)
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 DEFINE_GETFIELD(jdouble, double, Double)
a61af66fc99e Initial load
duke
parents:
diff changeset
1788
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 address jni_GetBooleanField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 return (address)jni_GetBooleanField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1792 address jni_GetByteField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 return (address)jni_GetByteField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 address jni_GetCharField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1796 return (address)jni_GetCharField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 address jni_GetShortField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 return (address)jni_GetShortField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 address jni_GetIntField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 return (address)jni_GetIntField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 address jni_GetLongField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 return (address)jni_GetLongField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1807 address jni_GetFloatField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 return (address)jni_GetFloatField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1810 address jni_GetDoubleField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 return (address)jni_GetDoubleField;
a61af66fc99e Initial load
duke
parents:
diff changeset
1812 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1813
a61af66fc99e Initial load
duke
parents:
diff changeset
1814 JNI_QUICK_ENTRY(void, jni_SetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID, jobject value))
a61af66fc99e Initial load
duke
parents:
diff changeset
1815 JNIWrapper("SetObjectField");
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 DTRACE_PROBE4(hotspot_jni, SetObjectField__entry, env, obj, fieldID, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 oop o = JNIHandles::resolve_non_null(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 klassOop k = o->klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 // jni_SetField_probe_nh() assumes that is not okay to create handles
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 // and creates a ResetNoHandleMark.
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 if (JvmtiExport::should_post_field_modification()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 jvalue field_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 field_value.l = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, 'L', (jvalue *)&field_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 o->obj_field_put(offset, JNIHandles::resolve(value));
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 DTRACE_PROBE(hotspot_jni, SetObjectField__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1831
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 #define DEFINE_SETFIELD(Argument,Fieldname,Result,SigType,unionType) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 JNI_QUICK_ENTRY(void, jni_Set##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID, Argument value)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1835 JNIWrapper("Set" XSTR(Result) "Field"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 HS_DTRACE_PROBE_CDECL_N(hotspot_jni, Set##Result##Field__entry, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 ( JNIEnv*, jobject, jfieldID FP_SELECT_##Result(COMMA Argument,/*empty*/) ) ); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 HS_DTRACE_PROBE_N(hotspot_jni, Set##Result##Field__entry, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1840 ( env, obj, fieldID FP_SELECT_##Result(COMMA value,/*empty*/) ) ); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1841 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1842 oop o = JNIHandles::resolve_non_null(obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1843 klassOop k = o->klass(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1844 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1845 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1846 /* jni_SetField_probe_nh() assumes that is not okay to create handles */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1847 /* and creates a ResetNoHandleMark. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 if (JvmtiExport::should_post_field_modification()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 jvalue field_value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1850 field_value.unionType = value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1851 o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, SigType, (jvalue *)&field_value); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 o->Fieldname##_field_put(offset, value); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 DTRACE_PROBE(hotspot_jni, Set##Result##Field__return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1856
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 DEFINE_SETFIELD(jboolean, bool, Boolean, 'Z', z)
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 DEFINE_SETFIELD(jbyte, byte, Byte, 'B', b)
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 DEFINE_SETFIELD(jchar, char, Char, 'C', c)
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 DEFINE_SETFIELD(jshort, short, Short, 'S', s)
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 DEFINE_SETFIELD(jint, int, Int, 'I', i)
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 DEFINE_SETFIELD(jlong, long, Long, 'J', j)
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 DEFINE_SETFIELD(jfloat, float, Float, 'F', f)
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 DEFINE_SETFIELD(jdouble, double, Double, 'D', d)
a61af66fc99e Initial load
duke
parents:
diff changeset
1865
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 DT_RETURN_MARK_DECL(ToReflectedField, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
1867
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 JNI_ENTRY(jobject, jni_ToReflectedField(JNIEnv *env, jclass cls, jfieldID fieldID, jboolean isStatic))
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 JNIWrapper("ToReflectedField");
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 DTRACE_PROBE4(hotspot_jni, ToReflectedField__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 env, cls, fieldID, isStatic);
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 DT_RETURN_MARK(ToReflectedField, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1874
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 bool found = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 klassOop k = java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(cls));
a61af66fc99e Initial load
duke
parents:
diff changeset
1878
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 assert(jfieldIDWorkaround::is_static_jfieldID(fieldID) == (isStatic != 0), "invalid fieldID");
a61af66fc99e Initial load
duke
parents:
diff changeset
1880
a61af66fc99e Initial load
duke
parents:
diff changeset
1881 if (isStatic) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1882 // Static field. The fieldID a JNIid specifying the field holder and the offset within the klassOop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1883 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 assert(id->is_static_field_id(), "invalid static field id");
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
1885 found = id->find_local_field(&fd);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 // Non-static field. The fieldID is really the offset of the field within the instanceOop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1888 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 found = instanceKlass::cast(k)->find_field_from_offset(offset, false, &fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 assert(found, "bad fieldID passed into jni_ToReflectedField");
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 oop reflected = Reflection::new_field(&fd, UseNewReflection, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 ret = JNIHandles::make_local(env, reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1896
a61af66fc99e Initial load
duke
parents:
diff changeset
1897
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 // Accessing Static Fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 DT_RETURN_MARK_DECL(GetStaticFieldID, jfieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1902
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 JNI_ENTRY(jfieldID, jni_GetStaticFieldID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
1905 JNIWrapper("GetStaticFieldID");
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 DTRACE_PROBE4(hotspot_jni, GetStaticFieldID__entry, env, clazz, name, sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 jfieldID ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 DT_RETURN_MARK(GetStaticFieldID, jfieldID, (const jfieldID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1909
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 // passed in) so the field and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
1912 // table. If they're not there, the field doesn't exist.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1913 TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1914 TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1915 if (fieldname == NULL || signame == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 KlassHandle k(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 // Make sure class is initialized before handing id's out to static fields
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 Klass::cast(k())->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1922
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 if (!Klass::cast(k())->oop_is_instance() ||
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1925 !instanceKlass::cast(k())->find_field(fieldname, signame, true, &fd)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1928
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 // A jfieldID for a static field is a JNIid specifying the field holder and the offset within the klassOop
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 JNIid* id = instanceKlass::cast(fd.field_holder())->jni_id_for(fd.offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 debug_only(id->set_is_static_field_id();)
a61af66fc99e Initial load
duke
parents:
diff changeset
1932
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
1933 debug_only(id->verify(fd.field_holder()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1934
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 ret = jfieldIDWorkaround::to_static_jfieldID(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1938
a61af66fc99e Initial load
duke
parents:
diff changeset
1939
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 JNI_ENTRY(jobject, jni_GetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID))
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 JNIWrapper("GetStaticObjectField");
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 DTRACE_PROBE3(hotspot_jni, GetStaticObjectField__entry, env, clazz, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 #ifndef JNICHECK_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 DEBUG_ONLY(klassOop param_k = jniCheck::validate_class(thread, clazz);)
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 #endif // JNICHECK_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 assert(id->is_static_field_id(), "invalid static field id");
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 // jni_GetField_probe() assumes that is okay to create handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 if (JvmtiExport::should_post_field_access()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 }
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
1953 jobject ret = JNIHandles::make_local(id->holder()->java_mirror()->obj_field(id->offset()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 DTRACE_PROBE1(hotspot_jni, GetStaticObjectField__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1957
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 #define DEFINE_GETSTATICFIELD(Return,Fieldname,Result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 DT_RETURN_MARK_DECL_FOR(Result, GetStatic##Result##Field, Return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 JNI_ENTRY(Return, jni_GetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 JNIWrapper("GetStatic" XSTR(Result) "Field"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 DTRACE_PROBE3(hotspot_jni, GetStatic##Result##Field__entry, env, clazz, fieldID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 Return ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 DT_RETURN_MARK_FOR(Result, GetStatic##Result##Field, Return, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 (const Return&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 assert(id->is_static_field_id(), "invalid static field id"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 /* jni_GetField_probe() assumes that is okay to create handles. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 if (JvmtiExport::should_post_field_access()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 } \
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
1975 ret = id->holder()->java_mirror()-> Fieldname##_field (id->offset()); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1978
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 DEFINE_GETSTATICFIELD(jboolean, bool, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 DEFINE_GETSTATICFIELD(jbyte, byte, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 DEFINE_GETSTATICFIELD(jchar, char, Char)
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 DEFINE_GETSTATICFIELD(jshort, short, Short)
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 DEFINE_GETSTATICFIELD(jint, int, Int)
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 DEFINE_GETSTATICFIELD(jlong, long, Long)
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 DEFINE_GETSTATICFIELD(jfloat, float, Float)
a61af66fc99e Initial load
duke
parents:
diff changeset
1986 DEFINE_GETSTATICFIELD(jdouble, double, Double)
a61af66fc99e Initial load
duke
parents:
diff changeset
1987
a61af66fc99e Initial load
duke
parents:
diff changeset
1988
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 JNI_ENTRY(void, jni_SetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID, jobject value))
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 JNIWrapper("SetStaticObjectField");
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 DTRACE_PROBE4(hotspot_jni, SetStaticObjectField__entry, env, clazz, fieldID, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 assert(id->is_static_field_id(), "invalid static field id");
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 // jni_SetField_probe() assumes that is okay to create handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 if (JvmtiExport::should_post_field_modification()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 jvalue field_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 field_value.l = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, 'L', (jvalue *)&field_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 }
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2001 id->holder()->java_mirror()->obj_field_put(id->offset(), JNIHandles::resolve(value));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 DTRACE_PROBE(hotspot_jni, SetStaticObjectField__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2004
a61af66fc99e Initial load
duke
parents:
diff changeset
2005
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 #define DEFINE_SETSTATICFIELD(Argument,Fieldname,Result,SigType,unionType) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 JNI_ENTRY(void, jni_SetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID, Argument value)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 JNIWrapper("SetStatic" XSTR(Result) "Field"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 HS_DTRACE_PROBE_CDECL_N(hotspot_jni, SetStatic##Result##Field__entry,\
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 ( JNIEnv*, jclass, jfieldID FP_SELECT_##Result(COMMA Argument,/*empty*/) ) ); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 HS_DTRACE_PROBE_N(hotspot_jni, SetStatic##Result##Field__entry, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 ( env, clazz, fieldID FP_SELECT_##Result(COMMA value,/*empty*/) ) ); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 assert(id->is_static_field_id(), "invalid static field id"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 /* jni_SetField_probe() assumes that is okay to create handles. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 if (JvmtiExport::should_post_field_modification()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 jvalue field_value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2021 field_value.unionType = value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, SigType, (jvalue *)&field_value); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 } \
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2024 id->holder()->java_mirror()-> Fieldname##_field_put (id->offset(), value); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 DTRACE_PROBE(hotspot_jni, SetStatic##Result##Field__return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2027
a61af66fc99e Initial load
duke
parents:
diff changeset
2028 DEFINE_SETSTATICFIELD(jboolean, bool, Boolean, 'Z', z)
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 DEFINE_SETSTATICFIELD(jbyte, byte, Byte, 'B', b)
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 DEFINE_SETSTATICFIELD(jchar, char, Char, 'C', c)
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 DEFINE_SETSTATICFIELD(jshort, short, Short, 'S', s)
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 DEFINE_SETSTATICFIELD(jint, int, Int, 'I', i)
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 DEFINE_SETSTATICFIELD(jlong, long, Long, 'J', j)
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 DEFINE_SETSTATICFIELD(jfloat, float, Float, 'F', f)
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 DEFINE_SETSTATICFIELD(jdouble, double, Double, 'D', d)
a61af66fc99e Initial load
duke
parents:
diff changeset
2036
a61af66fc99e Initial load
duke
parents:
diff changeset
2037
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 // String Operations
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2041
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 // Unicode Interface
a61af66fc99e Initial load
duke
parents:
diff changeset
2043
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 DT_RETURN_MARK_DECL(NewString, jstring);
a61af66fc99e Initial load
duke
parents:
diff changeset
2045
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 JNI_ENTRY(jstring, jni_NewString(JNIEnv *env, const jchar *unicodeChars, jsize len))
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 JNIWrapper("NewString");
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 DTRACE_PROBE3(hotspot_jni, NewString__entry, env, unicodeChars, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 jstring ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 DT_RETURN_MARK(NewString, jstring, (const jstring&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 oop string=java_lang_String::create_oop_from_unicode((jchar*) unicodeChars, len, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2052 ret = (jstring) JNIHandles::make_local(env, string);
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2055
a61af66fc99e Initial load
duke
parents:
diff changeset
2056
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 JNI_QUICK_ENTRY(jsize, jni_GetStringLength(JNIEnv *env, jstring string))
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 JNIWrapper("GetStringLength");
a61af66fc99e Initial load
duke
parents:
diff changeset
2059 DTRACE_PROBE2(hotspot_jni, GetStringLength__entry, env, string);
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 jsize ret = java_lang_String::length(JNIHandles::resolve_non_null(string));
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 DTRACE_PROBE1(hotspot_jni, GetStringLength__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2064
a61af66fc99e Initial load
duke
parents:
diff changeset
2065
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 JNI_QUICK_ENTRY(const jchar*, jni_GetStringChars(
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 JNIEnv *env, jstring string, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 JNIWrapper("GetStringChars");
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 DTRACE_PROBE3(hotspot_jni, GetStringChars__entry, env, string, isCopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 //%note jni_5
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 if (isCopy != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 *isCopy = JNI_TRUE;
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 int s_len = java_lang_String::length(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 typeArrayOop s_value = java_lang_String::value(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2077 int s_offset = java_lang_String::offset(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 jchar* buf = NEW_C_HEAP_ARRAY(jchar, s_len + 1); // add one for zero termination
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 if (s_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 memcpy(buf, s_value->char_at_addr(s_offset), sizeof(jchar)*s_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 buf[s_len] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 DTRACE_PROBE1(hotspot_jni, GetStringChars__return, buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 return buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2086
a61af66fc99e Initial load
duke
parents:
diff changeset
2087
a61af66fc99e Initial load
duke
parents:
diff changeset
2088 JNI_QUICK_ENTRY(void, jni_ReleaseStringChars(JNIEnv *env, jstring str, const jchar *chars))
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 JNIWrapper("ReleaseStringChars");
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 DTRACE_PROBE3(hotspot_jni, ReleaseStringChars__entry, env, str, chars);
a61af66fc99e Initial load
duke
parents:
diff changeset
2091 //%note jni_6
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 if (chars != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 // Since String objects are supposed to be immutable, don't copy any
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 // new data back. A bad user will have to go after the char array.
a61af66fc99e Initial load
duke
parents:
diff changeset
2095 FreeHeap((void*) chars);
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 DTRACE_PROBE(hotspot_jni, ReleaseStringChars__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2099
a61af66fc99e Initial load
duke
parents:
diff changeset
2100
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 // UTF Interface
a61af66fc99e Initial load
duke
parents:
diff changeset
2102
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 DT_RETURN_MARK_DECL(NewStringUTF, jstring);
a61af66fc99e Initial load
duke
parents:
diff changeset
2104
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 JNI_ENTRY(jstring, jni_NewStringUTF(JNIEnv *env, const char *bytes))
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 JNIWrapper("NewStringUTF");
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 DTRACE_PROBE2(hotspot_jni, NewStringUTF__entry, env, bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 jstring ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 DT_RETURN_MARK(NewStringUTF, jstring, (const jstring&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2110
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 oop result = java_lang_String::create_oop_from_str((char*) bytes, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 ret = (jstring) JNIHandles::make_local(env, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
2113 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2114 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2115
a61af66fc99e Initial load
duke
parents:
diff changeset
2116
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 JNI_ENTRY(jsize, jni_GetStringUTFLength(JNIEnv *env, jstring string))
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 JNIWrapper("GetStringUTFLength");
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 DTRACE_PROBE2(hotspot_jni, GetStringUTFLength__entry, env, string);
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 jsize ret = java_lang_String::utf8_length(JNIHandles::resolve_non_null(string));
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 DTRACE_PROBE1(hotspot_jni, GetStringUTFLength__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2124
a61af66fc99e Initial load
duke
parents:
diff changeset
2125
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 JNI_ENTRY(const char*, jni_GetStringUTFChars(JNIEnv *env, jstring string, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 JNIWrapper("GetStringUTFChars");
a61af66fc99e Initial load
duke
parents:
diff changeset
2128 DTRACE_PROBE3(hotspot_jni, GetStringUTFChars__entry, env, string, isCopy);
1989
017cd8bce8a8 6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents: 1980
diff changeset
2129 oop java_string = JNIHandles::resolve_non_null(string);
017cd8bce8a8 6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents: 1980
diff changeset
2130 size_t length = java_lang_String::utf8_length(java_string);
017cd8bce8a8 6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents: 1980
diff changeset
2131 char* result = AllocateHeap(length + 1, "GetStringUTFChars");
017cd8bce8a8 6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents: 1980
diff changeset
2132 java_lang_String::as_utf8_string(java_string, result, (int) length + 1);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 if (isCopy != NULL) *isCopy = JNI_TRUE;
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 DTRACE_PROBE1(hotspot_jni, GetStringUTFChars__return, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2137
a61af66fc99e Initial load
duke
parents:
diff changeset
2138
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 JNI_LEAF(void, jni_ReleaseStringUTFChars(JNIEnv *env, jstring str, const char *chars))
a61af66fc99e Initial load
duke
parents:
diff changeset
2140 JNIWrapper("ReleaseStringUTFChars");
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 DTRACE_PROBE3(hotspot_jni, ReleaseStringUTFChars__entry, env, str, chars);
a61af66fc99e Initial load
duke
parents:
diff changeset
2142 if (chars != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 FreeHeap((char*) chars);
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2145 DTRACE_PROBE(hotspot_jni, ReleaseStringUTFChars__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
2146 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2147
a61af66fc99e Initial load
duke
parents:
diff changeset
2148
a61af66fc99e Initial load
duke
parents:
diff changeset
2149 JNI_QUICK_ENTRY(jsize, jni_GetArrayLength(JNIEnv *env, jarray array))
a61af66fc99e Initial load
duke
parents:
diff changeset
2150 JNIWrapper("GetArrayLength");
a61af66fc99e Initial load
duke
parents:
diff changeset
2151 DTRACE_PROBE2(hotspot_jni, GetArrayLength__entry, env, array);
a61af66fc99e Initial load
duke
parents:
diff changeset
2152 arrayOop a = arrayOop(JNIHandles::resolve_non_null(array));
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 assert(a->is_array(), "must be array");
a61af66fc99e Initial load
duke
parents:
diff changeset
2154 jsize ret = a->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 DTRACE_PROBE1(hotspot_jni, GetArrayLength__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2158
a61af66fc99e Initial load
duke
parents:
diff changeset
2159
a61af66fc99e Initial load
duke
parents:
diff changeset
2160 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2161 // Object Array Operations
a61af66fc99e Initial load
duke
parents:
diff changeset
2162 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2163
a61af66fc99e Initial load
duke
parents:
diff changeset
2164 DT_RETURN_MARK_DECL(NewObjectArray, jobjectArray);
a61af66fc99e Initial load
duke
parents:
diff changeset
2165
a61af66fc99e Initial load
duke
parents:
diff changeset
2166 JNI_ENTRY(jobjectArray, jni_NewObjectArray(JNIEnv *env, jsize length, jclass elementClass, jobject initialElement))
a61af66fc99e Initial load
duke
parents:
diff changeset
2167 JNIWrapper("NewObjectArray");
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 DTRACE_PROBE4(hotspot_jni, NewObjectArray__entry, env, length, elementClass, initialElement);
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 jobjectArray ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 DT_RETURN_MARK(NewObjectArray, jobjectArray, (const jobjectArray&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 KlassHandle ek(THREAD, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(elementClass)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2172 klassOop ako = Klass::cast(ek())->array_klass(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 KlassHandle ak = KlassHandle(THREAD, ako);
a61af66fc99e Initial load
duke
parents:
diff changeset
2174 objArrayKlass::cast(ak())->initialize(CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 objArrayOop result = objArrayKlass::cast(ak())->allocate(length, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 oop initial_value = JNIHandles::resolve(initialElement);
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 if (initial_value != NULL) { // array already initialized with NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 for (int index = 0; index < length; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2179 result->obj_at_put(index, initial_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 ret = (jobjectArray) JNIHandles::make_local(env, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
2183 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2185
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 DT_RETURN_MARK_DECL(GetObjectArrayElement, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
2187
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 JNI_ENTRY(jobject, jni_GetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index))
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 JNIWrapper("GetObjectArrayElement");
a61af66fc99e Initial load
duke
parents:
diff changeset
2190 DTRACE_PROBE3(hotspot_jni, GetObjectArrayElement__entry, env, array, index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 DT_RETURN_MARK(GetObjectArrayElement, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2193 objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array));
a61af66fc99e Initial load
duke
parents:
diff changeset
2194 if (a->is_within_bounds(index)) {
1034
08780c8a9f04 6893483: DTrace probe return values for a couple JNI methods are wrong
kamg
parents: 973
diff changeset
2195 ret = JNIHandles::make_local(env, a->obj_at(index));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2197 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 char buf[jintAsStringSize];
a61af66fc99e Initial load
duke
parents:
diff changeset
2199 sprintf(buf, "%d", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 THROW_MSG_0(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2202 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2203
a61af66fc99e Initial load
duke
parents:
diff changeset
2204 DT_VOID_RETURN_MARK_DECL(SetObjectArrayElement);
a61af66fc99e Initial load
duke
parents:
diff changeset
2205
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 JNI_ENTRY(void, jni_SetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index, jobject value))
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 JNIWrapper("SetObjectArrayElement");
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 DTRACE_PROBE4(hotspot_jni, SetObjectArrayElement__entry, env, array, index, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
2209 DT_VOID_RETURN_MARK(SetObjectArrayElement);
a61af66fc99e Initial load
duke
parents:
diff changeset
2210
a61af66fc99e Initial load
duke
parents:
diff changeset
2211 objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array));
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 oop v = JNIHandles::resolve(value);
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 if (a->is_within_bounds(index)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2214 if (v == NULL || v->is_a(objArrayKlass::cast(a->klass())->element_klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 a->obj_at_put(index, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 THROW(vmSymbols::java_lang_ArrayStoreException());
a61af66fc99e Initial load
duke
parents:
diff changeset
2218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 char buf[jintAsStringSize];
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 sprintf(buf, "%d", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2225
a61af66fc99e Initial load
duke
parents:
diff changeset
2226
a61af66fc99e Initial load
duke
parents:
diff changeset
2227 #define DEFINE_NEWSCALARARRAY(Return,Allocator,Result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 \
1034
08780c8a9f04 6893483: DTrace probe return values for a couple JNI methods are wrong
kamg
parents: 973
diff changeset
2229 DT_RETURN_MARK_DECL(New##Result##Array, Return);\
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 JNI_ENTRY(Return, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 jni_New##Result##Array(JNIEnv *env, jsize len)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 JNIWrapper("New" XSTR(Result) "Array"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 DTRACE_PROBE2(hotspot_jni, New##Result##Array__entry, env, len);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 Return ret = NULL;\
1034
08780c8a9f04 6893483: DTrace probe return values for a couple JNI methods are wrong
kamg
parents: 973
diff changeset
2236 DT_RETURN_MARK(New##Result##Array, Return, (const Return&)ret);\
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2238 oop obj= oopFactory::Allocator(len, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 ret = (Return) JNIHandles::make_local(env, obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2241 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2242
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 DEFINE_NEWSCALARARRAY(jbooleanArray, new_boolArray, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 DEFINE_NEWSCALARARRAY(jbyteArray, new_byteArray, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 DEFINE_NEWSCALARARRAY(jshortArray, new_shortArray, Short)
a61af66fc99e Initial load
duke
parents:
diff changeset
2246 DEFINE_NEWSCALARARRAY(jcharArray, new_charArray, Char)
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 DEFINE_NEWSCALARARRAY(jintArray, new_intArray, Int)
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 DEFINE_NEWSCALARARRAY(jlongArray, new_longArray, Long)
a61af66fc99e Initial load
duke
parents:
diff changeset
2249 DEFINE_NEWSCALARARRAY(jfloatArray, new_singleArray, Float)
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 DEFINE_NEWSCALARARRAY(jdoubleArray, new_doubleArray, Double)
a61af66fc99e Initial load
duke
parents:
diff changeset
2251
a61af66fc99e Initial load
duke
parents:
diff changeset
2252
a61af66fc99e Initial load
duke
parents:
diff changeset
2253 // Return an address which will fault if the caller writes to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
2254
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 static char* get_bad_address() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2256 static char* bad_address = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2257 if (bad_address == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2258 size_t size = os::vm_allocation_granularity();
a61af66fc99e Initial load
duke
parents:
diff changeset
2259 bad_address = os::reserve_memory(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
2260 if (bad_address != NULL) {
477
24fda36852ce 6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents: 237
diff changeset
2261 os::protect_memory(bad_address, size, os::MEM_PROT_READ,
24fda36852ce 6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents: 237
diff changeset
2262 /*is_committed*/false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 return bad_address;
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2267
a61af66fc99e Initial load
duke
parents:
diff changeset
2268
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 #define DEFINE_GETSCALARARRAYELEMENTS(ElementTag,ElementType,Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 JNI_QUICK_ENTRY(ElementType*, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 jni_Get##Result##ArrayElements(JNIEnv *env, ElementType##Array array, jboolean *isCopy)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 JNIWrapper("Get" XSTR(Result) "ArrayElements"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 DTRACE_PROBE3(hotspot_jni, Get##Result##ArrayElements__entry, env, array, isCopy);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 /* allocate an chunk of memory in c land */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 ElementType* result; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 int len = a->length(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 if (len == 0) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 /* Empty array: legal but useless, can't return NULL. \
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 * Return a pointer to something useless. \
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 * Avoid asserts in typeArrayOop. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 result = (ElementType*)get_bad_address(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2284 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 result = NEW_C_HEAP_ARRAY(ElementType, len); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 /* copy the array to the c chunk */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2287 memcpy(result, a->Tag##_at_addr(0), sizeof(ElementType)*len); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 if (isCopy) *isCopy = JNI_TRUE; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 DTRACE_PROBE1(hotspot_jni, Get##Result##ArrayElements__return, result);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 return result; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2293
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 DEFINE_GETSCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 DEFINE_GETSCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 DEFINE_GETSCALARARRAYELEMENTS(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 DEFINE_GETSCALARARRAYELEMENTS(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 DEFINE_GETSCALARARRAYELEMENTS(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 DEFINE_GETSCALARARRAYELEMENTS(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 DEFINE_GETSCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 DEFINE_GETSCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
2302
a61af66fc99e Initial load
duke
parents:
diff changeset
2303
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 #define DEFINE_RELEASESCALARARRAYELEMENTS(ElementTag,ElementType,Result,Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 JNI_QUICK_ENTRY(void, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 jni_Release##Result##ArrayElements(JNIEnv *env, ElementType##Array array, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 ElementType *buf, jint mode)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 JNIWrapper("Release" XSTR(Result) "ArrayElements"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 DTRACE_PROBE4(hotspot_jni, Release##Result##ArrayElements__entry, env, array, buf, mode);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 int len = a->length(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 if (len != 0) { /* Empty array: nothing to free or copy. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 if ((mode == 0) || (mode == JNI_COMMIT)) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 memcpy(a->Tag##_at_addr(0), buf, sizeof(ElementType)*len); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 if ((mode == 0) || (mode == JNI_ABORT)) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 FreeHeap(buf); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 DTRACE_PROBE(hotspot_jni, Release##Result##ArrayElements__return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2323
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 DEFINE_RELEASESCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 DEFINE_RELEASESCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 DEFINE_RELEASESCALARARRAYELEMENTS(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 DEFINE_RELEASESCALARARRAYELEMENTS(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 DEFINE_RELEASESCALARARRAYELEMENTS(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 DEFINE_RELEASESCALARARRAYELEMENTS(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 DEFINE_RELEASESCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 DEFINE_RELEASESCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
2332
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 #define DEFINE_GETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 DT_VOID_RETURN_MARK_DECL(Get##Result##ArrayRegion);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2335 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 JNI_ENTRY(void, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 jni_Get##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 jsize len, ElementType *buf)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 JNIWrapper("Get" XSTR(Result) "ArrayRegion"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 DTRACE_PROBE5(hotspot_jni, Get##Result##ArrayRegion__entry, env, array, start, len, buf);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 DT_VOID_RETURN_MARK(Get##Result##ArrayRegion); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 typeArrayOop src = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)src->length())) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2345 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 if (len > 0) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 int sc = typeArrayKlass::cast(src->klass())->log2_element_size(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 memcpy((u_char*) buf, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 (u_char*) src->Tag##_at_addr(start), \
a61af66fc99e Initial load
duke
parents:
diff changeset
2350 len << sc); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2354
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 DEFINE_GETSCALARARRAYREGION(T_BOOLEAN, jboolean,Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 DEFINE_GETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 DEFINE_GETSCALARARRAYREGION(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 DEFINE_GETSCALARARRAYREGION(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 DEFINE_GETSCALARARRAYREGION(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 DEFINE_GETSCALARARRAYREGION(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
2361 DEFINE_GETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 DEFINE_GETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
2363
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 #define DEFINE_SETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2365 DT_VOID_RETURN_MARK_DECL(Set##Result##ArrayRegion);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 JNI_ENTRY(void, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 jni_Set##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2369 jsize len, const ElementType *buf)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 JNIWrapper("Set" XSTR(Result) "ArrayRegion"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 DTRACE_PROBE5(hotspot_jni, Set##Result##ArrayRegion__entry, env, array, start, len, buf);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 DT_VOID_RETURN_MARK(Set##Result##ArrayRegion); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 typeArrayOop dst = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)dst->length())) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 if (len > 0) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 int sc = typeArrayKlass::cast(dst->klass())->log2_element_size(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2379 memcpy((u_char*) dst->Tag##_at_addr(start), \
a61af66fc99e Initial load
duke
parents:
diff changeset
2380 (u_char*) buf, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 len << sc); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2385
a61af66fc99e Initial load
duke
parents:
diff changeset
2386 DEFINE_SETSCALARARRAYREGION(T_BOOLEAN, jboolean, Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 DEFINE_SETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 DEFINE_SETSCALARARRAYREGION(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 DEFINE_SETSCALARARRAYREGION(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 DEFINE_SETSCALARARRAYREGION(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 DEFINE_SETSCALARARRAYREGION(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 DEFINE_SETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 DEFINE_SETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
2394
a61af66fc99e Initial load
duke
parents:
diff changeset
2395
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 // Interception of natives
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2399
a61af66fc99e Initial load
duke
parents:
diff changeset
2400 // The RegisterNatives call being attempted tried to register with a method that
a61af66fc99e Initial load
duke
parents:
diff changeset
2401 // is not native. Ask JVM TI what prefixes have been specified. Then check
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 // to see if the native method is now wrapped with the prefixes. See the
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 // SetNativeMethodPrefix(es) functions in the JVM TI Spec for details.
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 static methodOop find_prefixed_native(KlassHandle k,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2405 Symbol* name, Symbol* signature, TRAPS) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2406 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2407 methodOop method;
a61af66fc99e Initial load
duke
parents:
diff changeset
2408 int name_len = name->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 char* name_str = name->as_utf8();
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 int prefix_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 for (int i = 0; i < prefix_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 char* prefix = prefixes[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 int prefix_len = (int)strlen(prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
2415
a61af66fc99e Initial load
duke
parents:
diff changeset
2416 // try adding this prefix to the method name and see if it matches another method name
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 int trial_len = name_len + prefix_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 char* trial_name_str = NEW_RESOURCE_ARRAY(char, trial_len + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 strcpy(trial_name_str, prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 strcat(trial_name_str, name_str);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2421 TempNewSymbol trial_name = SymbolTable::probe(trial_name_str, trial_len);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2422 if (trial_name == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 continue; // no such symbol, so this prefix wasn't used, try the next prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2425 method = Klass::cast(k())->lookup_method(trial_name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 continue; // signature doesn't match, try the next prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2429 if (method->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2430 method->set_is_prefixed_native();
a61af66fc99e Initial load
duke
parents:
diff changeset
2431 return method; // wahoo, we found a prefixed version of the method, return it
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 // found as non-native, so prefix is good, add it, probably just need more prefixes
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 name_len = trial_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
2435 name_str = trial_name_str;
a61af66fc99e Initial load
duke
parents:
diff changeset
2436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 return NULL; // not found
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2439
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2440 static bool register_native(KlassHandle k, Symbol* name, Symbol* signature, address entry, TRAPS) {
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2441 methodOop method = Klass::cast(k())->lookup_method(name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2442 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
2444 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
2445 st.print("Method %s name or signature does not match",
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2446 methodOopDesc::name_and_sig_as_C_string(Klass::cast(k()), name, signature));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 if (!method->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 // trying to register to a non-native method, see if a JVM TI agent has added prefix(es)
a61af66fc99e Initial load
duke
parents:
diff changeset
2451 method = find_prefixed_native(k, name, signature, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 st.print("Method %s is not declared as native",
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2456 methodOopDesc::name_and_sig_as_C_string(Klass::cast(k()), name, signature));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2457 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2459 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2460
a61af66fc99e Initial load
duke
parents:
diff changeset
2461 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2462 method->set_native_function(entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
2463 methodOopDesc::native_bind_event_is_interesting);
a61af66fc99e Initial load
duke
parents:
diff changeset
2464 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2465 method->clear_native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
2466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2467 if (PrintJNIResolving) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2468 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2469 tty->print_cr("[Registering JNI native method %s.%s]",
a61af66fc99e Initial load
duke
parents:
diff changeset
2470 Klass::cast(method->method_holder())->external_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2471 method->name()->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
2472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2473 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2474 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2475
a61af66fc99e Initial load
duke
parents:
diff changeset
2476 DT_RETURN_MARK_DECL(RegisterNatives, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
2477
a61af66fc99e Initial load
duke
parents:
diff changeset
2478 JNI_ENTRY(jint, jni_RegisterNatives(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
2479 const JNINativeMethod *methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
2480 jint nMethods))
a61af66fc99e Initial load
duke
parents:
diff changeset
2481 JNIWrapper("RegisterNatives");
a61af66fc99e Initial load
duke
parents:
diff changeset
2482 DTRACE_PROBE4(hotspot_jni, RegisterNatives__entry, env, clazz, methods, nMethods);
a61af66fc99e Initial load
duke
parents:
diff changeset
2483 jint ret = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2484 DT_RETURN_MARK(RegisterNatives, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2485
a61af66fc99e Initial load
duke
parents:
diff changeset
2486 KlassHandle h_k(thread, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2487
a61af66fc99e Initial load
duke
parents:
diff changeset
2488 for (int index = 0; index < nMethods; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2489 const char* meth_name = methods[index].name;
a61af66fc99e Initial load
duke
parents:
diff changeset
2490 const char* meth_sig = methods[index].signature;
a61af66fc99e Initial load
duke
parents:
diff changeset
2491 int meth_name_len = (int)strlen(meth_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2492
a61af66fc99e Initial load
duke
parents:
diff changeset
2493 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
2494 // passed in) so the method and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
2495 // table. If they're not there, the method doesn't exist.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2496 TempNewSymbol name = SymbolTable::probe(meth_name, meth_name_len);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2497 TempNewSymbol signature = SymbolTable::probe(meth_sig, (int)strlen(meth_sig));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2498
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2499 if (name == NULL || signature == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2500 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
2501 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
2502 st.print("Method %s.%s%s not found", Klass::cast(h_k())->external_name(), meth_name, meth_sig);
a61af66fc99e Initial load
duke
parents:
diff changeset
2503 // Must return negative value on failure
a61af66fc99e Initial load
duke
parents:
diff changeset
2504 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2506
a61af66fc99e Initial load
duke
parents:
diff changeset
2507 bool res = register_native(h_k, name, signature,
a61af66fc99e Initial load
duke
parents:
diff changeset
2508 (address) methods[index].fnPtr, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2509 if (!res) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2510 ret = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2511 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2514 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2515 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2516
a61af66fc99e Initial load
duke
parents:
diff changeset
2517
a61af66fc99e Initial load
duke
parents:
diff changeset
2518 JNI_ENTRY(jint, jni_UnregisterNatives(JNIEnv *env, jclass clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
2519 JNIWrapper("UnregisterNatives");
a61af66fc99e Initial load
duke
parents:
diff changeset
2520 DTRACE_PROBE2(hotspot_jni, UnregisterNatives__entry, env, clazz);
a61af66fc99e Initial load
duke
parents:
diff changeset
2521 klassOop k = java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz));
a61af66fc99e Initial load
duke
parents:
diff changeset
2522 //%note jni_2
a61af66fc99e Initial load
duke
parents:
diff changeset
2523 if (Klass::cast(k)->oop_is_instance()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 for (int index = 0; index < instanceKlass::cast(k)->methods()->length(); index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2525 methodOop m = methodOop(instanceKlass::cast(k)->methods()->obj_at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 if (m->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 m->clear_native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 m->set_signature_handler(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2532 DTRACE_PROBE1(hotspot_jni, UnregisterNatives__return, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2533 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2534 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2535
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2537 // Monitor functions
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2539
a61af66fc99e Initial load
duke
parents:
diff changeset
2540 DT_RETURN_MARK_DECL(MonitorEnter, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
2541
a61af66fc99e Initial load
duke
parents:
diff changeset
2542 JNI_ENTRY(jint, jni_MonitorEnter(JNIEnv *env, jobject jobj))
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 DTRACE_PROBE2(hotspot_jni, MonitorEnter__entry, env, jobj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2544 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 DT_RETURN_MARK(MonitorEnter, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2546
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 // If the object is null, we can't do anything with it
a61af66fc99e Initial load
duke
parents:
diff changeset
2548 if (jobj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2549 THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
2550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2551
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 Handle obj(thread, JNIHandles::resolve_non_null(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
2553 ObjectSynchronizer::jni_enter(obj, CHECK_(JNI_ERR));
a61af66fc99e Initial load
duke
parents:
diff changeset
2554 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
2555 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2556 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2557
a61af66fc99e Initial load
duke
parents:
diff changeset
2558 DT_RETURN_MARK_DECL(MonitorExit, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
2559
a61af66fc99e Initial load
duke
parents:
diff changeset
2560 JNI_ENTRY(jint, jni_MonitorExit(JNIEnv *env, jobject jobj))
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 DTRACE_PROBE2(hotspot_jni, MonitorExit__entry, env, jobj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2562 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 DT_RETURN_MARK(MonitorExit, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2564
a61af66fc99e Initial load
duke
parents:
diff changeset
2565 // Don't do anything with a null object
a61af66fc99e Initial load
duke
parents:
diff changeset
2566 if (jobj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2569
a61af66fc99e Initial load
duke
parents:
diff changeset
2570 Handle obj(THREAD, JNIHandles::resolve_non_null(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
2571 ObjectSynchronizer::jni_exit(obj(), CHECK_(JNI_ERR));
a61af66fc99e Initial load
duke
parents:
diff changeset
2572
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
2574 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2575 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2576
a61af66fc99e Initial load
duke
parents:
diff changeset
2577 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2578 // Extensions
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2580
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 DT_VOID_RETURN_MARK_DECL(GetStringRegion);
a61af66fc99e Initial load
duke
parents:
diff changeset
2582
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 JNI_ENTRY(void, jni_GetStringRegion(JNIEnv *env, jstring string, jsize start, jsize len, jchar *buf))
a61af66fc99e Initial load
duke
parents:
diff changeset
2584 JNIWrapper("GetStringRegion");
a61af66fc99e Initial load
duke
parents:
diff changeset
2585 DTRACE_PROBE5(hotspot_jni, GetStringRegion__entry, env, string, start, len, buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2586 DT_VOID_RETURN_MARK(GetStringRegion);
a61af66fc99e Initial load
duke
parents:
diff changeset
2587 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 int s_len = java_lang_String::length(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2589 if (start < 0 || len < 0 || start + len > s_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2590 THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException());
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2592 if (len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2593 int s_offset = java_lang_String::offset(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2594 typeArrayOop s_value = java_lang_String::value(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2595 memcpy(buf, s_value->char_at_addr(s_offset+start), sizeof(jchar)*len);
a61af66fc99e Initial load
duke
parents:
diff changeset
2596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2598 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2599
a61af66fc99e Initial load
duke
parents:
diff changeset
2600 DT_VOID_RETURN_MARK_DECL(GetStringUTFRegion);
a61af66fc99e Initial load
duke
parents:
diff changeset
2601
a61af66fc99e Initial load
duke
parents:
diff changeset
2602 JNI_ENTRY(void, jni_GetStringUTFRegion(JNIEnv *env, jstring string, jsize start, jsize len, char *buf))
a61af66fc99e Initial load
duke
parents:
diff changeset
2603 JNIWrapper("GetStringUTFRegion");
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 DTRACE_PROBE5(hotspot_jni, GetStringUTFRegion__entry, env, string, start, len, buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2605 DT_VOID_RETURN_MARK(GetStringUTFRegion);
a61af66fc99e Initial load
duke
parents:
diff changeset
2606 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 int s_len = java_lang_String::length(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 if (start < 0 || len < 0 || start + len > s_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2609 THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException());
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 //%note jni_7
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 if (len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 char *utf_region = java_lang_String::as_utf8_string(s, start, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
2615 int utf_len = (int)strlen(utf_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
2616 memcpy(buf, utf_region, utf_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
2617 buf[utf_len] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2618 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2619 // JDK null-terminates the buffer even in len is zero
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 if (buf != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2621 buf[0] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2625 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2626
a61af66fc99e Initial load
duke
parents:
diff changeset
2627
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 JNI_ENTRY(void*, jni_GetPrimitiveArrayCritical(JNIEnv *env, jarray array, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 JNIWrapper("GetPrimitiveArrayCritical");
a61af66fc99e Initial load
duke
parents:
diff changeset
2630 DTRACE_PROBE3(hotspot_jni, GetPrimitiveArrayCritical__entry, env, array, isCopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 GC_locker::lock_critical(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 if (isCopy != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 *isCopy = JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
2634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2635 oop a = JNIHandles::resolve_non_null(array);
a61af66fc99e Initial load
duke
parents:
diff changeset
2636 assert(a->is_array(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
2637 BasicType type;
a61af66fc99e Initial load
duke
parents:
diff changeset
2638 if (a->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2639 type = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
2640 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2641 type = typeArrayKlass::cast(a->klass())->element_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
2642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2643 void* ret = arrayOop(a)->base(type);
a61af66fc99e Initial load
duke
parents:
diff changeset
2644 DTRACE_PROBE1(hotspot_jni, GetPrimitiveArrayCritical__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2645 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2646 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2647
a61af66fc99e Initial load
duke
parents:
diff changeset
2648
a61af66fc99e Initial load
duke
parents:
diff changeset
2649 JNI_ENTRY(void, jni_ReleasePrimitiveArrayCritical(JNIEnv *env, jarray array, void *carray, jint mode))
a61af66fc99e Initial load
duke
parents:
diff changeset
2650 JNIWrapper("ReleasePrimitiveArrayCritical");
a61af66fc99e Initial load
duke
parents:
diff changeset
2651 DTRACE_PROBE4(hotspot_jni, ReleasePrimitiveArrayCritical__entry, env, array, carray, mode);
a61af66fc99e Initial load
duke
parents:
diff changeset
2652 // The array, carray and mode arguments are ignored
a61af66fc99e Initial load
duke
parents:
diff changeset
2653 GC_locker::unlock_critical(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2654 DTRACE_PROBE(hotspot_jni, ReleasePrimitiveArrayCritical__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2656
a61af66fc99e Initial load
duke
parents:
diff changeset
2657
a61af66fc99e Initial load
duke
parents:
diff changeset
2658 JNI_ENTRY(const jchar*, jni_GetStringCritical(JNIEnv *env, jstring string, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
2659 JNIWrapper("GetStringCritical");
a61af66fc99e Initial load
duke
parents:
diff changeset
2660 DTRACE_PROBE3(hotspot_jni, GetStringCritical__entry, env, string, isCopy);
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 GC_locker::lock_critical(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2662 if (isCopy != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2663 *isCopy = JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
2664 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
2666 int s_len = java_lang_String::length(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 typeArrayOop s_value = java_lang_String::value(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2668 int s_offset = java_lang_String::offset(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
2669 const jchar* ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 if (s_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2671 ret = s_value->char_at_addr(s_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
2672 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 ret = (jchar*) s_value->base(T_CHAR);
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2675 DTRACE_PROBE1(hotspot_jni, GetStringCritical__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2677 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2678
a61af66fc99e Initial load
duke
parents:
diff changeset
2679
a61af66fc99e Initial load
duke
parents:
diff changeset
2680 JNI_ENTRY(void, jni_ReleaseStringCritical(JNIEnv *env, jstring str, const jchar *chars))
a61af66fc99e Initial load
duke
parents:
diff changeset
2681 JNIWrapper("ReleaseStringCritical");
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 DTRACE_PROBE3(hotspot_jni, ReleaseStringCritical__entry, env, str, chars);
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 // The str and chars arguments are ignored
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 GC_locker::unlock_critical(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2685 DTRACE_PROBE(hotspot_jni, ReleaseStringCritical__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
2686 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2687
a61af66fc99e Initial load
duke
parents:
diff changeset
2688
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 JNI_ENTRY(jweak, jni_NewWeakGlobalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 JNIWrapper("jni_NewWeakGlobalRef");
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 DTRACE_PROBE2(hotspot_jni, NewWeakGlobalRef__entry, env, ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
2692 Handle ref_handle(thread, JNIHandles::resolve(ref));
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 jweak ret = JNIHandles::make_weak_global(ref_handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
2694 DTRACE_PROBE1(hotspot_jni, NewWeakGlobalRef__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2697
a61af66fc99e Initial load
duke
parents:
diff changeset
2698 // Must be JNI_ENTRY (with HandleMark)
a61af66fc99e Initial load
duke
parents:
diff changeset
2699 JNI_ENTRY(void, jni_DeleteWeakGlobalRef(JNIEnv *env, jweak ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
2700 JNIWrapper("jni_DeleteWeakGlobalRef");
a61af66fc99e Initial load
duke
parents:
diff changeset
2701 DTRACE_PROBE2(hotspot_jni, DeleteWeakGlobalRef__entry, env, ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
2702 JNIHandles::destroy_weak_global(ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
2703 DTRACE_PROBE(hotspot_jni, DeleteWeakGlobalRef__return);
a61af66fc99e Initial load
duke
parents:
diff changeset
2704 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2705
a61af66fc99e Initial load
duke
parents:
diff changeset
2706
a61af66fc99e Initial load
duke
parents:
diff changeset
2707 JNI_QUICK_ENTRY(jboolean, jni_ExceptionCheck(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
2708 JNIWrapper("jni_ExceptionCheck");
a61af66fc99e Initial load
duke
parents:
diff changeset
2709 DTRACE_PROBE1(hotspot_jni, ExceptionCheck__entry, env);
a61af66fc99e Initial load
duke
parents:
diff changeset
2710 jni_check_async_exceptions(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2711 jboolean ret = (thread->has_pending_exception()) ? JNI_TRUE : JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
2712 DTRACE_PROBE1(hotspot_jni, ExceptionCheck__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2713 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2714 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2715
a61af66fc99e Initial load
duke
parents:
diff changeset
2716
a61af66fc99e Initial load
duke
parents:
diff changeset
2717 // Initialization state for three routines below relating to
a61af66fc99e Initial load
duke
parents:
diff changeset
2718 // java.nio.DirectBuffers
a61af66fc99e Initial load
duke
parents:
diff changeset
2719 static jint directBufferSupportInitializeStarted = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2720 static volatile jint directBufferSupportInitializeEnded = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2721 static volatile jint directBufferSupportInitializeFailed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2722 static jclass bufferClass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2723 static jclass directBufferClass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2724 static jclass directByteBufferClass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2725 static jmethodID directByteBufferConstructor = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2726 static jfieldID directBufferAddressField = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2727 static jfieldID bufferCapacityField = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2728
a61af66fc99e Initial load
duke
parents:
diff changeset
2729 static jclass lookupOne(JNIEnv* env, const char* name, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2730 Handle loader; // null (bootstrap) loader
a61af66fc99e Initial load
duke
parents:
diff changeset
2731 Handle protection_domain; // null protection domain
a61af66fc99e Initial load
duke
parents:
diff changeset
2732
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2733 TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL);
657
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
2734 jclass result = find_class_from_class_loader(env, sym, true, loader, protection_domain, true, CHECK_NULL);
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
2735
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
2736 if (TraceClassResolution && result != NULL) {
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
2737 trace_class_resolution(java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(result)));
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
2738 }
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
2739 return result;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2741
a61af66fc99e Initial load
duke
parents:
diff changeset
2742 // These lookups are done with the NULL (bootstrap) ClassLoader to
a61af66fc99e Initial load
duke
parents:
diff changeset
2743 // circumvent any security checks that would be done by jni_FindClass.
a61af66fc99e Initial load
duke
parents:
diff changeset
2744 JNI_ENTRY(bool, lookupDirectBufferClasses(JNIEnv* env))
a61af66fc99e Initial load
duke
parents:
diff changeset
2745 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2746 if ((bufferClass = lookupOne(env, "java/nio/Buffer", thread)) == NULL) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2747 if ((directBufferClass = lookupOne(env, "sun/nio/ch/DirectBuffer", thread)) == NULL) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2748 if ((directByteBufferClass = lookupOne(env, "java/nio/DirectByteBuffer", thread)) == NULL) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
2749 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2750 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2751 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2752
a61af66fc99e Initial load
duke
parents:
diff changeset
2753
a61af66fc99e Initial load
duke
parents:
diff changeset
2754 static bool initializeDirectBufferSupport(JNIEnv* env, JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 if (directBufferSupportInitializeFailed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2758
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 if (Atomic::cmpxchg(1, &directBufferSupportInitializeStarted, 0) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 if (!lookupDirectBufferClasses(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 directBufferSupportInitializeFailed = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2762 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2764
a61af66fc99e Initial load
duke
parents:
diff changeset
2765 // Make global references for these
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 bufferClass = (jclass) env->NewGlobalRef(bufferClass);
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 directBufferClass = (jclass) env->NewGlobalRef(directBufferClass);
a61af66fc99e Initial load
duke
parents:
diff changeset
2768 directByteBufferClass = (jclass) env->NewGlobalRef(directByteBufferClass);
a61af66fc99e Initial load
duke
parents:
diff changeset
2769
a61af66fc99e Initial load
duke
parents:
diff changeset
2770 // Get needed field and method IDs
a61af66fc99e Initial load
duke
parents:
diff changeset
2771 directByteBufferConstructor = env->GetMethodID(directByteBufferClass, "<init>", "(JI)V");
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 directBufferAddressField = env->GetFieldID(bufferClass, "address", "J");
a61af66fc99e Initial load
duke
parents:
diff changeset
2773 bufferCapacityField = env->GetFieldID(bufferClass, "capacity", "I");
a61af66fc99e Initial load
duke
parents:
diff changeset
2774
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 if ((directByteBufferConstructor == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
2776 (directBufferAddressField == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
2777 (bufferCapacityField == NULL)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2778 directBufferSupportInitializeFailed = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2779 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2780 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2781
a61af66fc99e Initial load
duke
parents:
diff changeset
2782 directBufferSupportInitializeEnded = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2783 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2784 while (!directBufferSupportInitializeEnded && !directBufferSupportInitializeFailed) {
521
4db4e58c16bd 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 477
diff changeset
2785 // Set state as yield_all can call os:sleep. On Solaris, yield_all calls
4db4e58c16bd 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 477
diff changeset
2786 // os::sleep which requires the VM state transition. On other platforms, it
4db4e58c16bd 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 477
diff changeset
2787 // is not necessary. The following call to change the VM state is purposely
4db4e58c16bd 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 477
diff changeset
2788 // put inside the loop to avoid potential deadlock when multiple threads
4db4e58c16bd 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 477
diff changeset
2789 // try to call this method. See 6791815 for more details.
4db4e58c16bd 6791815: Fix for 6471657 can cause deadlock on non-Solaris platforms when initializing direct buffer support
xlu
parents: 477
diff changeset
2790 ThreadInVMfromNative tivn(thread);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 os::yield_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2794
a61af66fc99e Initial load
duke
parents:
diff changeset
2795 return !directBufferSupportInitializeFailed;
a61af66fc99e Initial load
duke
parents:
diff changeset
2796 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2797
a61af66fc99e Initial load
duke
parents:
diff changeset
2798 extern "C" jobject JNICALL jni_NewDirectByteBuffer(JNIEnv *env, void* address, jlong capacity)
a61af66fc99e Initial load
duke
parents:
diff changeset
2799 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2800 // thread_from_jni_environment() will block if VM is gone.
a61af66fc99e Initial load
duke
parents:
diff changeset
2801 JavaThread* thread = JavaThread::thread_from_jni_environment(env);
a61af66fc99e Initial load
duke
parents:
diff changeset
2802
a61af66fc99e Initial load
duke
parents:
diff changeset
2803 JNIWrapper("jni_NewDirectByteBuffer");
a61af66fc99e Initial load
duke
parents:
diff changeset
2804 DTRACE_PROBE3(hotspot_jni, NewDirectByteBuffer__entry, env, address, capacity);
a61af66fc99e Initial load
duke
parents:
diff changeset
2805
a61af66fc99e Initial load
duke
parents:
diff changeset
2806 if (!directBufferSupportInitializeEnded) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 if (!initializeDirectBufferSupport(env, thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 DTRACE_PROBE1(hotspot_jni, NewDirectByteBuffer__return, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2809 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2812
a61af66fc99e Initial load
duke
parents:
diff changeset
2813 // Being paranoid about accidental sign extension on address
a61af66fc99e Initial load
duke
parents:
diff changeset
2814 jlong addr = (jlong) ((uintptr_t) address);
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 // NOTE that package-private DirectByteBuffer constructor currently
a61af66fc99e Initial load
duke
parents:
diff changeset
2816 // takes int capacity
a61af66fc99e Initial load
duke
parents:
diff changeset
2817 jint cap = (jint) capacity;
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 jobject ret = env->NewObject(directByteBufferClass, directByteBufferConstructor, addr, cap);
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 DTRACE_PROBE1(hotspot_jni, NewDirectByteBuffer__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2822
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 DT_RETURN_MARK_DECL(GetDirectBufferAddress, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
2824
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 extern "C" void* JNICALL jni_GetDirectBufferAddress(JNIEnv *env, jobject buf)
a61af66fc99e Initial load
duke
parents:
diff changeset
2826 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 // thread_from_jni_environment() will block if VM is gone.
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 JavaThread* thread = JavaThread::thread_from_jni_environment(env);
a61af66fc99e Initial load
duke
parents:
diff changeset
2829
a61af66fc99e Initial load
duke
parents:
diff changeset
2830 JNIWrapper("jni_GetDirectBufferAddress");
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 DTRACE_PROBE2(hotspot_jni, GetDirectBufferAddress__entry, env, buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2832 void* ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2833 DT_RETURN_MARK(GetDirectBufferAddress, void*, (const void*&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2834
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 if (!directBufferSupportInitializeEnded) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 if (!initializeDirectBufferSupport(env, thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2839 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2840
a61af66fc99e Initial load
duke
parents:
diff changeset
2841 if ((buf != NULL) && (!env->IsInstanceOf(buf, directBufferClass))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2842 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2843 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2844
a61af66fc99e Initial load
duke
parents:
diff changeset
2845 ret = (void*)(intptr_t)env->GetLongField(buf, directBufferAddressField);
a61af66fc99e Initial load
duke
parents:
diff changeset
2846 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2847 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2848
a61af66fc99e Initial load
duke
parents:
diff changeset
2849 DT_RETURN_MARK_DECL(GetDirectBufferCapacity, jlong);
a61af66fc99e Initial load
duke
parents:
diff changeset
2850
a61af66fc99e Initial load
duke
parents:
diff changeset
2851 extern "C" jlong JNICALL jni_GetDirectBufferCapacity(JNIEnv *env, jobject buf)
a61af66fc99e Initial load
duke
parents:
diff changeset
2852 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2853 // thread_from_jni_environment() will block if VM is gone.
a61af66fc99e Initial load
duke
parents:
diff changeset
2854 JavaThread* thread = JavaThread::thread_from_jni_environment(env);
a61af66fc99e Initial load
duke
parents:
diff changeset
2855
a61af66fc99e Initial load
duke
parents:
diff changeset
2856 JNIWrapper("jni_GetDirectBufferCapacity");
a61af66fc99e Initial load
duke
parents:
diff changeset
2857 DTRACE_PROBE2(hotspot_jni, GetDirectBufferCapacity__entry, env, buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
2858 jlong ret = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2859 DT_RETURN_MARK(GetDirectBufferCapacity, jlong, (const jlong&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2860
a61af66fc99e Initial load
duke
parents:
diff changeset
2861 if (!directBufferSupportInitializeEnded) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2862 if (!initializeDirectBufferSupport(env, thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2863 ret = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2864 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2865 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2866 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2867
a61af66fc99e Initial load
duke
parents:
diff changeset
2868 if (buf == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2869 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2870 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2871
a61af66fc99e Initial load
duke
parents:
diff changeset
2872 if (!env->IsInstanceOf(buf, directBufferClass)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2873 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
2874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2875
a61af66fc99e Initial load
duke
parents:
diff changeset
2876 // NOTE that capacity is currently an int in the implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
2877 ret = env->GetIntField(buf, bufferCapacityField);
a61af66fc99e Initial load
duke
parents:
diff changeset
2878 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2879 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2880
a61af66fc99e Initial load
duke
parents:
diff changeset
2881
a61af66fc99e Initial load
duke
parents:
diff changeset
2882 JNI_LEAF(jint, jni_GetVersion(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
2883 JNIWrapper("GetVersion");
a61af66fc99e Initial load
duke
parents:
diff changeset
2884 DTRACE_PROBE1(hotspot_jni, GetVersion__entry, env);
a61af66fc99e Initial load
duke
parents:
diff changeset
2885 DTRACE_PROBE1(hotspot_jni, GetVersion__return, CurrentVersion);
a61af66fc99e Initial load
duke
parents:
diff changeset
2886 return CurrentVersion;
a61af66fc99e Initial load
duke
parents:
diff changeset
2887 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2888
a61af66fc99e Initial load
duke
parents:
diff changeset
2889 extern struct JavaVM_ main_vm;
a61af66fc99e Initial load
duke
parents:
diff changeset
2890
a61af66fc99e Initial load
duke
parents:
diff changeset
2891 JNI_LEAF(jint, jni_GetJavaVM(JNIEnv *env, JavaVM **vm))
a61af66fc99e Initial load
duke
parents:
diff changeset
2892 JNIWrapper("jni_GetJavaVM");
a61af66fc99e Initial load
duke
parents:
diff changeset
2893 DTRACE_PROBE2(hotspot_jni, GetJavaVM__entry, env, vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
2894 *vm = (JavaVM *)(&main_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
2895 DTRACE_PROBE1(hotspot_jni, GetJavaVM__return, JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
2896 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
2897 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2898
a61af66fc99e Initial load
duke
parents:
diff changeset
2899 // Structure containing all jni functions
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 struct JNINativeInterface_ jni_NativeInterface = {
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2902 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2904
a61af66fc99e Initial load
duke
parents:
diff changeset
2905 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
2906
a61af66fc99e Initial load
duke
parents:
diff changeset
2907 jni_GetVersion,
a61af66fc99e Initial load
duke
parents:
diff changeset
2908
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 jni_DefineClass,
a61af66fc99e Initial load
duke
parents:
diff changeset
2910 jni_FindClass,
a61af66fc99e Initial load
duke
parents:
diff changeset
2911
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 jni_FromReflectedMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 jni_FromReflectedField,
a61af66fc99e Initial load
duke
parents:
diff changeset
2914
a61af66fc99e Initial load
duke
parents:
diff changeset
2915 jni_ToReflectedMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2916
a61af66fc99e Initial load
duke
parents:
diff changeset
2917 jni_GetSuperclass,
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 jni_IsAssignableFrom,
a61af66fc99e Initial load
duke
parents:
diff changeset
2919
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 jni_ToReflectedField,
a61af66fc99e Initial load
duke
parents:
diff changeset
2921
a61af66fc99e Initial load
duke
parents:
diff changeset
2922 jni_Throw,
a61af66fc99e Initial load
duke
parents:
diff changeset
2923 jni_ThrowNew,
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 jni_ExceptionOccurred,
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 jni_ExceptionDescribe,
a61af66fc99e Initial load
duke
parents:
diff changeset
2926 jni_ExceptionClear,
a61af66fc99e Initial load
duke
parents:
diff changeset
2927 jni_FatalError,
a61af66fc99e Initial load
duke
parents:
diff changeset
2928
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 jni_PushLocalFrame,
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 jni_PopLocalFrame,
a61af66fc99e Initial load
duke
parents:
diff changeset
2931
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 jni_NewGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
2933 jni_DeleteGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
2934 jni_DeleteLocalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 jni_IsSameObject,
a61af66fc99e Initial load
duke
parents:
diff changeset
2936
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 jni_NewLocalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
2938 jni_EnsureLocalCapacity,
a61af66fc99e Initial load
duke
parents:
diff changeset
2939
a61af66fc99e Initial load
duke
parents:
diff changeset
2940 jni_AllocObject,
a61af66fc99e Initial load
duke
parents:
diff changeset
2941 jni_NewObject,
a61af66fc99e Initial load
duke
parents:
diff changeset
2942 jni_NewObjectV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2943 jni_NewObjectA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2944
a61af66fc99e Initial load
duke
parents:
diff changeset
2945 jni_GetObjectClass,
a61af66fc99e Initial load
duke
parents:
diff changeset
2946 jni_IsInstanceOf,
a61af66fc99e Initial load
duke
parents:
diff changeset
2947
a61af66fc99e Initial load
duke
parents:
diff changeset
2948 jni_GetMethodID,
a61af66fc99e Initial load
duke
parents:
diff changeset
2949
a61af66fc99e Initial load
duke
parents:
diff changeset
2950 jni_CallObjectMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2951 jni_CallObjectMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2952 jni_CallObjectMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2953 jni_CallBooleanMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 jni_CallBooleanMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2955 jni_CallBooleanMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2956 jni_CallByteMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2957 jni_CallByteMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 jni_CallByteMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2959 jni_CallCharMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2960 jni_CallCharMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2961 jni_CallCharMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2962 jni_CallShortMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2963 jni_CallShortMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2964 jni_CallShortMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2965 jni_CallIntMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2966 jni_CallIntMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 jni_CallIntMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2968 jni_CallLongMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2969 jni_CallLongMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2970 jni_CallLongMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2971 jni_CallFloatMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2972 jni_CallFloatMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2973 jni_CallFloatMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2974 jni_CallDoubleMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2975 jni_CallDoubleMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2976 jni_CallDoubleMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2977 jni_CallVoidMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 jni_CallVoidMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2979 jni_CallVoidMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2980
a61af66fc99e Initial load
duke
parents:
diff changeset
2981 jni_CallNonvirtualObjectMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 jni_CallNonvirtualObjectMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2983 jni_CallNonvirtualObjectMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2984 jni_CallNonvirtualBooleanMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2985 jni_CallNonvirtualBooleanMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2986 jni_CallNonvirtualBooleanMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2987 jni_CallNonvirtualByteMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2988 jni_CallNonvirtualByteMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2989 jni_CallNonvirtualByteMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2990 jni_CallNonvirtualCharMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2991 jni_CallNonvirtualCharMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2992 jni_CallNonvirtualCharMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2993 jni_CallNonvirtualShortMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2994 jni_CallNonvirtualShortMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2995 jni_CallNonvirtualShortMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2996 jni_CallNonvirtualIntMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
2997 jni_CallNonvirtualIntMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
2998 jni_CallNonvirtualIntMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 jni_CallNonvirtualLongMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3000 jni_CallNonvirtualLongMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3001 jni_CallNonvirtualLongMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 jni_CallNonvirtualFloatMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3003 jni_CallNonvirtualFloatMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3004 jni_CallNonvirtualFloatMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3005 jni_CallNonvirtualDoubleMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3006 jni_CallNonvirtualDoubleMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 jni_CallNonvirtualDoubleMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3008 jni_CallNonvirtualVoidMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3009 jni_CallNonvirtualVoidMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3010 jni_CallNonvirtualVoidMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3011
a61af66fc99e Initial load
duke
parents:
diff changeset
3012 jni_GetFieldID,
a61af66fc99e Initial load
duke
parents:
diff changeset
3013
a61af66fc99e Initial load
duke
parents:
diff changeset
3014 jni_GetObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3015 jni_GetBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3016 jni_GetByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3017 jni_GetCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3018 jni_GetShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3019 jni_GetIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3020 jni_GetLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3021 jni_GetFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 jni_GetDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3023
a61af66fc99e Initial load
duke
parents:
diff changeset
3024 jni_SetObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3025 jni_SetBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 jni_SetByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 jni_SetCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3028 jni_SetShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3029 jni_SetIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3030 jni_SetLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3031 jni_SetFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3032 jni_SetDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3033
a61af66fc99e Initial load
duke
parents:
diff changeset
3034 jni_GetStaticMethodID,
a61af66fc99e Initial load
duke
parents:
diff changeset
3035
a61af66fc99e Initial load
duke
parents:
diff changeset
3036 jni_CallStaticObjectMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3037 jni_CallStaticObjectMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3038 jni_CallStaticObjectMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3039 jni_CallStaticBooleanMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3040 jni_CallStaticBooleanMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3041 jni_CallStaticBooleanMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3042 jni_CallStaticByteMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3043 jni_CallStaticByteMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3044 jni_CallStaticByteMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3045 jni_CallStaticCharMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3046 jni_CallStaticCharMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3047 jni_CallStaticCharMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3048 jni_CallStaticShortMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3049 jni_CallStaticShortMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3050 jni_CallStaticShortMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3051 jni_CallStaticIntMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3052 jni_CallStaticIntMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3053 jni_CallStaticIntMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3054 jni_CallStaticLongMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3055 jni_CallStaticLongMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3056 jni_CallStaticLongMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3057 jni_CallStaticFloatMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3058 jni_CallStaticFloatMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3059 jni_CallStaticFloatMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3060 jni_CallStaticDoubleMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3061 jni_CallStaticDoubleMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3062 jni_CallStaticDoubleMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3063 jni_CallStaticVoidMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
3064 jni_CallStaticVoidMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
3065 jni_CallStaticVoidMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
3066
a61af66fc99e Initial load
duke
parents:
diff changeset
3067 jni_GetStaticFieldID,
a61af66fc99e Initial load
duke
parents:
diff changeset
3068
a61af66fc99e Initial load
duke
parents:
diff changeset
3069 jni_GetStaticObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3070 jni_GetStaticBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3071 jni_GetStaticByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3072 jni_GetStaticCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3073 jni_GetStaticShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3074 jni_GetStaticIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3075 jni_GetStaticLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3076 jni_GetStaticFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3077 jni_GetStaticDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3078
a61af66fc99e Initial load
duke
parents:
diff changeset
3079 jni_SetStaticObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3080 jni_SetStaticBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3081 jni_SetStaticByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3082 jni_SetStaticCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3083 jni_SetStaticShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3084 jni_SetStaticIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3085 jni_SetStaticLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3086 jni_SetStaticFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3087 jni_SetStaticDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
3088
a61af66fc99e Initial load
duke
parents:
diff changeset
3089 jni_NewString,
a61af66fc99e Initial load
duke
parents:
diff changeset
3090 jni_GetStringLength,
a61af66fc99e Initial load
duke
parents:
diff changeset
3091 jni_GetStringChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
3092 jni_ReleaseStringChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
3093
a61af66fc99e Initial load
duke
parents:
diff changeset
3094 jni_NewStringUTF,
a61af66fc99e Initial load
duke
parents:
diff changeset
3095 jni_GetStringUTFLength,
a61af66fc99e Initial load
duke
parents:
diff changeset
3096 jni_GetStringUTFChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
3097 jni_ReleaseStringUTFChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
3098
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 jni_GetArrayLength,
a61af66fc99e Initial load
duke
parents:
diff changeset
3100
a61af66fc99e Initial load
duke
parents:
diff changeset
3101 jni_NewObjectArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3102 jni_GetObjectArrayElement,
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 jni_SetObjectArrayElement,
a61af66fc99e Initial load
duke
parents:
diff changeset
3104
a61af66fc99e Initial load
duke
parents:
diff changeset
3105 jni_NewBooleanArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 jni_NewByteArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3107 jni_NewCharArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3108 jni_NewShortArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3109 jni_NewIntArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3110 jni_NewLongArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3111 jni_NewFloatArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3112 jni_NewDoubleArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
3113
a61af66fc99e Initial load
duke
parents:
diff changeset
3114 jni_GetBooleanArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3115 jni_GetByteArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3116 jni_GetCharArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3117 jni_GetShortArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3118 jni_GetIntArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3119 jni_GetLongArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3120 jni_GetFloatArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 jni_GetDoubleArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3122
a61af66fc99e Initial load
duke
parents:
diff changeset
3123 jni_ReleaseBooleanArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3124 jni_ReleaseByteArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 jni_ReleaseCharArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3126 jni_ReleaseShortArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3127 jni_ReleaseIntArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3128 jni_ReleaseLongArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3129 jni_ReleaseFloatArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3130 jni_ReleaseDoubleArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
3131
a61af66fc99e Initial load
duke
parents:
diff changeset
3132 jni_GetBooleanArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3133 jni_GetByteArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3134 jni_GetCharArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3135 jni_GetShortArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3136 jni_GetIntArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3137 jni_GetLongArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3138 jni_GetFloatArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3139 jni_GetDoubleArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3140
a61af66fc99e Initial load
duke
parents:
diff changeset
3141 jni_SetBooleanArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 jni_SetByteArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 jni_SetCharArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 jni_SetShortArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3145 jni_SetIntArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3146 jni_SetLongArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3147 jni_SetFloatArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3148 jni_SetDoubleArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3149
a61af66fc99e Initial load
duke
parents:
diff changeset
3150 jni_RegisterNatives,
a61af66fc99e Initial load
duke
parents:
diff changeset
3151 jni_UnregisterNatives,
a61af66fc99e Initial load
duke
parents:
diff changeset
3152
a61af66fc99e Initial load
duke
parents:
diff changeset
3153 jni_MonitorEnter,
a61af66fc99e Initial load
duke
parents:
diff changeset
3154 jni_MonitorExit,
a61af66fc99e Initial load
duke
parents:
diff changeset
3155
a61af66fc99e Initial load
duke
parents:
diff changeset
3156 jni_GetJavaVM,
a61af66fc99e Initial load
duke
parents:
diff changeset
3157
a61af66fc99e Initial load
duke
parents:
diff changeset
3158 jni_GetStringRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3159 jni_GetStringUTFRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
3160
a61af66fc99e Initial load
duke
parents:
diff changeset
3161 jni_GetPrimitiveArrayCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
3162 jni_ReleasePrimitiveArrayCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
3163
a61af66fc99e Initial load
duke
parents:
diff changeset
3164 jni_GetStringCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
3165 jni_ReleaseStringCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
3166
a61af66fc99e Initial load
duke
parents:
diff changeset
3167 jni_NewWeakGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
3168 jni_DeleteWeakGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
3169
a61af66fc99e Initial load
duke
parents:
diff changeset
3170 jni_ExceptionCheck,
a61af66fc99e Initial load
duke
parents:
diff changeset
3171
a61af66fc99e Initial load
duke
parents:
diff changeset
3172 jni_NewDirectByteBuffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
3173 jni_GetDirectBufferAddress,
a61af66fc99e Initial load
duke
parents:
diff changeset
3174 jni_GetDirectBufferCapacity,
a61af66fc99e Initial load
duke
parents:
diff changeset
3175
a61af66fc99e Initial load
duke
parents:
diff changeset
3176 // New 1_6 features
a61af66fc99e Initial load
duke
parents:
diff changeset
3177
a61af66fc99e Initial load
duke
parents:
diff changeset
3178 jni_GetObjectRefType
a61af66fc99e Initial load
duke
parents:
diff changeset
3179 };
a61af66fc99e Initial load
duke
parents:
diff changeset
3180
a61af66fc99e Initial load
duke
parents:
diff changeset
3181
a61af66fc99e Initial load
duke
parents:
diff changeset
3182 // For jvmti use to modify jni function table.
a61af66fc99e Initial load
duke
parents:
diff changeset
3183 // Java threads in native contiues to run until it is transitioned
a61af66fc99e Initial load
duke
parents:
diff changeset
3184 // to VM at safepoint. Before the transition or before it is blocked
a61af66fc99e Initial load
duke
parents:
diff changeset
3185 // for safepoint it may access jni function table. VM could crash if
a61af66fc99e Initial load
duke
parents:
diff changeset
3186 // any java thread access the jni function table in the middle of memcpy.
a61af66fc99e Initial load
duke
parents:
diff changeset
3187 // To avoid this each function pointers are copied automically.
a61af66fc99e Initial load
duke
parents:
diff changeset
3188 void copy_jni_function_table(const struct JNINativeInterface_ *new_jni_NativeInterface) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3189 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
3190 intptr_t *a = (intptr_t *) jni_functions();
a61af66fc99e Initial load
duke
parents:
diff changeset
3191 intptr_t *b = (intptr_t *) new_jni_NativeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
3192 for (uint i=0; i < sizeof(struct JNINativeInterface_)/sizeof(void *); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3193 Atomic::store_ptr(*b++, a++);
a61af66fc99e Initial load
duke
parents:
diff changeset
3194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3195 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3196
a61af66fc99e Initial load
duke
parents:
diff changeset
3197 void quicken_jni_functions() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 // Replace Get<Primitive>Field with fast versions
a61af66fc99e Initial load
duke
parents:
diff changeset
3199 if (UseFastJNIAccessors && !JvmtiExport::can_post_field_access()
a61af66fc99e Initial load
duke
parents:
diff changeset
3200 && !VerifyJNIFields && !TraceJNICalls && !CountJNICalls && !CheckJNICalls
a61af66fc99e Initial load
duke
parents:
diff changeset
3201 #if defined(_WINDOWS) && defined(IA32) && defined(COMPILER2)
a61af66fc99e Initial load
duke
parents:
diff changeset
3202 // windows x86 currently needs SEH wrapper and the gain of the fast
a61af66fc99e Initial load
duke
parents:
diff changeset
3203 // versions currently isn't certain for server vm on uniprocessor.
a61af66fc99e Initial load
duke
parents:
diff changeset
3204 && os::is_MP()
a61af66fc99e Initial load
duke
parents:
diff changeset
3205 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
3206 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3207 address func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3208 func = JNI_FastGetField::generate_fast_get_boolean_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3209 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3210 jni_NativeInterface.GetBooleanField = (GetBooleanField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3212 func = JNI_FastGetField::generate_fast_get_byte_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3213 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3214 jni_NativeInterface.GetByteField = (GetByteField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3216 func = JNI_FastGetField::generate_fast_get_char_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3217 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3218 jni_NativeInterface.GetCharField = (GetCharField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3220 func = JNI_FastGetField::generate_fast_get_short_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3221 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3222 jni_NativeInterface.GetShortField = (GetShortField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3224 func = JNI_FastGetField::generate_fast_get_int_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3225 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3226 jni_NativeInterface.GetIntField = (GetIntField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3228 func = JNI_FastGetField::generate_fast_get_long_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3229 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3230 jni_NativeInterface.GetLongField = (GetLongField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3232 func = JNI_FastGetField::generate_fast_get_float_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3233 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3234 jni_NativeInterface.GetFloatField = (GetFloatField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3236 func = JNI_FastGetField::generate_fast_get_double_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
3237 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3238 jni_NativeInterface.GetDoubleField = (GetDoubleField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
3239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3242
a61af66fc99e Initial load
duke
parents:
diff changeset
3243 // Returns the function structure
a61af66fc99e Initial load
duke
parents:
diff changeset
3244 struct JNINativeInterface_* jni_functions() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3245 #ifndef JNICHECK_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 if (CheckJNICalls) return jni_functions_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
3247 #else // JNICHECK_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
3248 if (CheckJNICalls) warning("-Xcheck:jni is not supported in kernel vm.");
a61af66fc99e Initial load
duke
parents:
diff changeset
3249 #endif // JNICHECK_KERNEL
a61af66fc99e Initial load
duke
parents:
diff changeset
3250 return &jni_NativeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
3251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3252
a61af66fc99e Initial load
duke
parents:
diff changeset
3253 // Returns the function structure
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 struct JNINativeInterface_* jni_functions_nocheck() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3255 return &jni_NativeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
3256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3257
a61af66fc99e Initial load
duke
parents:
diff changeset
3258
a61af66fc99e Initial load
duke
parents:
diff changeset
3259 // Invocation API
a61af66fc99e Initial load
duke
parents:
diff changeset
3260
a61af66fc99e Initial load
duke
parents:
diff changeset
3261
a61af66fc99e Initial load
duke
parents:
diff changeset
3262 // Forward declaration
a61af66fc99e Initial load
duke
parents:
diff changeset
3263 extern const struct JNIInvokeInterface_ jni_InvokeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
3264
a61af66fc99e Initial load
duke
parents:
diff changeset
3265 // Global invocation API vars
a61af66fc99e Initial load
duke
parents:
diff changeset
3266 volatile jint vm_created = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3267 // Indicate whether it is safe to recreate VM
a61af66fc99e Initial load
duke
parents:
diff changeset
3268 volatile jint safe_to_recreate_vm = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3269 struct JavaVM_ main_vm = {&jni_InvokeInterface};
a61af66fc99e Initial load
duke
parents:
diff changeset
3270
a61af66fc99e Initial load
duke
parents:
diff changeset
3271
a61af66fc99e Initial load
duke
parents:
diff changeset
3272 #define JAVASTACKSIZE (400 * 1024) /* Default size of a thread java stack */
a61af66fc99e Initial load
duke
parents:
diff changeset
3273 enum { VERIFY_NONE, VERIFY_REMOTE, VERIFY_ALL };
a61af66fc99e Initial load
duke
parents:
diff changeset
3274
a61af66fc99e Initial load
duke
parents:
diff changeset
3275 HS_DTRACE_PROBE_DECL1(hotspot_jni, GetDefaultJavaVMInitArgs__entry, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
3276 DT_RETURN_MARK_DECL(GetDefaultJavaVMInitArgs, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
3277
a61af66fc99e Initial load
duke
parents:
diff changeset
3278 _JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetDefaultJavaVMInitArgs(void *args_) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 HS_DTRACE_PROBE1(hotspot_jni, GetDefaultJavaVMInitArgs__entry, args_);
a61af66fc99e Initial load
duke
parents:
diff changeset
3280 JDK1_1InitArgs *args = (JDK1_1InitArgs *)args_;
a61af66fc99e Initial load
duke
parents:
diff changeset
3281 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3282 DT_RETURN_MARK(GetDefaultJavaVMInitArgs, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
3283
a61af66fc99e Initial load
duke
parents:
diff changeset
3284 if (Threads::is_supported_jni_version(args->version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3285 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3287 // 1.1 style no longer supported in hotspot.
a61af66fc99e Initial load
duke
parents:
diff changeset
3288 // According the JNI spec, we should update args->version on return.
a61af66fc99e Initial load
duke
parents:
diff changeset
3289 // We also use the structure to communicate with launcher about default
a61af66fc99e Initial load
duke
parents:
diff changeset
3290 // stack size.
a61af66fc99e Initial load
duke
parents:
diff changeset
3291 if (args->version == JNI_VERSION_1_1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3292 args->version = JNI_VERSION_1_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
3293 // javaStackSize is int in arguments structure
a61af66fc99e Initial load
duke
parents:
diff changeset
3294 assert(jlong(ThreadStackSize) * K < INT_MAX, "integer overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
3295 args->javaStackSize = (jint)(ThreadStackSize * K);
a61af66fc99e Initial load
duke
parents:
diff changeset
3296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3297 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3299
a61af66fc99e Initial load
duke
parents:
diff changeset
3300 HS_DTRACE_PROBE_DECL3(hotspot_jni, CreateJavaVM__entry, vm, penv, args);
a61af66fc99e Initial load
duke
parents:
diff changeset
3301 DT_RETURN_MARK_DECL(CreateJavaVM, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
3302
a61af66fc99e Initial load
duke
parents:
diff changeset
3303 _JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_CreateJavaVM(JavaVM **vm, void **penv, void *args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3304 HS_DTRACE_PROBE3(hotspot_jni, CreateJavaVM__entry, vm, penv, args);
a61af66fc99e Initial load
duke
parents:
diff changeset
3305
a61af66fc99e Initial load
duke
parents:
diff changeset
3306 jint result = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3307 DT_RETURN_MARK(CreateJavaVM, jint, (const jint&)result);
a61af66fc99e Initial load
duke
parents:
diff changeset
3308
1078
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3309 // We're about to use Atomic::xchg for synchronization. Some Zero
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3310 // platforms use the GCC builtin __sync_lock_test_and_set for this,
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3311 // but __sync_lock_test_and_set is not guaranteed to do what we want
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3312 // on all architectures. So we check it works before relying on it.
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3313 #if defined(ZERO) && defined(ASSERT)
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3314 {
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3315 jint a = 0xcafebabe;
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3316 jint b = Atomic::xchg(0xdeadbeef, &a);
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3317 void *c = &a;
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3318 void *d = Atomic::xchg_ptr(&b, &c);
1132
896da934748c 6913869: Zero assert fix
twisti
parents: 1078
diff changeset
3319 assert(a == (jint) 0xdeadbeef && b == (jint) 0xcafebabe, "Atomic::xchg() works");
1078
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3320 assert(c == &b && d == &a, "Atomic::xchg_ptr() works");
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3321 }
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3322 #endif // ZERO && ASSERT
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
3323
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3324 // At the moment it's only possible to have one Java VM,
a61af66fc99e Initial load
duke
parents:
diff changeset
3325 // since some of the runtime state is in global variables.
a61af66fc99e Initial load
duke
parents:
diff changeset
3326
a61af66fc99e Initial load
duke
parents:
diff changeset
3327 // We cannot use our mutex locks here, since they only work on
a61af66fc99e Initial load
duke
parents:
diff changeset
3328 // Threads. We do an atomic compare and exchange to ensure only
a61af66fc99e Initial load
duke
parents:
diff changeset
3329 // one thread can call this method at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
3330
a61af66fc99e Initial load
duke
parents:
diff changeset
3331 // We use Atomic::xchg rather than Atomic::add/dec since on some platforms
a61af66fc99e Initial load
duke
parents:
diff changeset
3332 // the add/dec implementations are dependent on whether we are running
a61af66fc99e Initial load
duke
parents:
diff changeset
3333 // on a multiprocessor, and at this stage of initialization the os::is_MP
a61af66fc99e Initial load
duke
parents:
diff changeset
3334 // function used to determine this will always return false. Atomic::xchg
a61af66fc99e Initial load
duke
parents:
diff changeset
3335 // does not have this problem.
a61af66fc99e Initial load
duke
parents:
diff changeset
3336 if (Atomic::xchg(1, &vm_created) == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3337 return JNI_ERR; // already created, or create attempt in progress
a61af66fc99e Initial load
duke
parents:
diff changeset
3338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3339 if (Atomic::xchg(0, &safe_to_recreate_vm) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3340 return JNI_ERR; // someone tried and failed and retry not allowed.
a61af66fc99e Initial load
duke
parents:
diff changeset
3341 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3342
a61af66fc99e Initial load
duke
parents:
diff changeset
3343 assert(vm_created == 1, "vm_created is true during the creation");
a61af66fc99e Initial load
duke
parents:
diff changeset
3344
a61af66fc99e Initial load
duke
parents:
diff changeset
3345 /**
a61af66fc99e Initial load
duke
parents:
diff changeset
3346 * Certain errors during initialization are recoverable and do not
a61af66fc99e Initial load
duke
parents:
diff changeset
3347 * prevent this method from being called again at a later time
a61af66fc99e Initial load
duke
parents:
diff changeset
3348 * (perhaps with different arguments). However, at a certain
a61af66fc99e Initial load
duke
parents:
diff changeset
3349 * point during initialization if an error occurs we cannot allow
a61af66fc99e Initial load
duke
parents:
diff changeset
3350 * this function to be called again (or it will crash). In those
a61af66fc99e Initial load
duke
parents:
diff changeset
3351 * situations, the 'canTryAgain' flag is set to false, which atomically
a61af66fc99e Initial load
duke
parents:
diff changeset
3352 * sets safe_to_recreate_vm to 1, such that any new call to
a61af66fc99e Initial load
duke
parents:
diff changeset
3353 * JNI_CreateJavaVM will immediately fail using the above logic.
a61af66fc99e Initial load
duke
parents:
diff changeset
3354 */
a61af66fc99e Initial load
duke
parents:
diff changeset
3355 bool can_try_again = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3356
a61af66fc99e Initial load
duke
parents:
diff changeset
3357 result = Threads::create_vm((JavaVMInitArgs*) args, &can_try_again);
a61af66fc99e Initial load
duke
parents:
diff changeset
3358 if (result == JNI_OK) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3359 JavaThread *thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
3360 /* thread is thread_in_vm here */
a61af66fc99e Initial load
duke
parents:
diff changeset
3361 *vm = (JavaVM *)(&main_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
3362 *(JNIEnv**)penv = thread->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
3363
3650
0e8a2a629afb Pass-by compilation broker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3540
diff changeset
3364 if (UseGraal) {
0e8a2a629afb Pass-by compilation broker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3540
diff changeset
3365 GraalCompiler* compiler = GraalCompiler::instance();
0e8a2a629afb Pass-by compilation broker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3540
diff changeset
3366 ciObjectFactory::initialize();
0e8a2a629afb Pass-by compilation broker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3540
diff changeset
3367 compiler->initialize();
0e8a2a629afb Pass-by compilation broker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3540
diff changeset
3368 }
0e8a2a629afb Pass-by compilation broker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3540
diff changeset
3369
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3370 // Tracks the time application was running before GC
a61af66fc99e Initial load
duke
parents:
diff changeset
3371 RuntimeService::record_application_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
3372
a61af66fc99e Initial load
duke
parents:
diff changeset
3373 // Notify JVMTI
a61af66fc99e Initial load
duke
parents:
diff changeset
3374 if (JvmtiExport::should_post_thread_life()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3375 JvmtiExport::post_thread_start(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
3376 }
1454
7cf1952ec5fb Added flag -XX:BootstrapC1X that precompiles Object::<init> and then every method in the compilation queue until it is empty.
Thomas Wuerthinger <wuerthinger@ssw.jku.at>
parents: 1290
diff changeset
3377
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3378 // Check if we should compile all classes on bootclasspath
a61af66fc99e Initial load
duke
parents:
diff changeset
3379 NOT_PRODUCT(if (CompileTheWorld) ClassLoader::compile_the_world();)
a61af66fc99e Initial load
duke
parents:
diff changeset
3380 // Since this is not a JVM_ENTRY we have to set the thread state manually before leaving.
a61af66fc99e Initial load
duke
parents:
diff changeset
3381 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
3382 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3383 if (can_try_again) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3384 // reset safe_to_recreate_vm to 1 so that retrial would be possible
a61af66fc99e Initial load
duke
parents:
diff changeset
3385 safe_to_recreate_vm = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3387
a61af66fc99e Initial load
duke
parents:
diff changeset
3388 // Creation failed. We must reset vm_created
a61af66fc99e Initial load
duke
parents:
diff changeset
3389 *vm = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3390 *(JNIEnv**)penv = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3391 // reset vm_created last to avoid race condition. Use OrderAccess to
a61af66fc99e Initial load
duke
parents:
diff changeset
3392 // control both compiler and architectural-based reordering.
a61af66fc99e Initial load
duke
parents:
diff changeset
3393 OrderAccess::release_store(&vm_created, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
3394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3395
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 1290
diff changeset
3396 NOT_PRODUCT(test_error_handler(ErrorHandlerTest));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3397 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3399
a61af66fc99e Initial load
duke
parents:
diff changeset
3400 HS_DTRACE_PROBE_DECL3(hotspot_jni, GetCreatedJavaVMs__entry, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3401 JavaVM**, jsize, jsize*);
a61af66fc99e Initial load
duke
parents:
diff changeset
3402 HS_DTRACE_PROBE_DECL1(hotspot_jni, GetCreatedJavaVMs__return, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
3403
a61af66fc99e Initial load
duke
parents:
diff changeset
3404 _JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetCreatedJavaVMs(JavaVM **vm_buf, jsize bufLen, jsize *numVMs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3405 // See bug 4367188, the wrapper can sometimes cause VM crashes
a61af66fc99e Initial load
duke
parents:
diff changeset
3406 // JNIWrapper("GetCreatedJavaVMs");
a61af66fc99e Initial load
duke
parents:
diff changeset
3407 HS_DTRACE_PROBE3(hotspot_jni, GetCreatedJavaVMs__entry, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3408 vm_buf, bufLen, numVMs);
a61af66fc99e Initial load
duke
parents:
diff changeset
3409 if (vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3410 if (numVMs != NULL) *numVMs = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
3411 if (bufLen > 0) *vm_buf = (JavaVM *)(&main_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
3412 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3413 if (numVMs != NULL) *numVMs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
3414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3415 HS_DTRACE_PROBE1(hotspot_jni, GetCreatedJavaVMs__return, JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
3416 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3418
a61af66fc99e Initial load
duke
parents:
diff changeset
3419 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
3420
a61af66fc99e Initial load
duke
parents:
diff changeset
3421 DT_RETURN_MARK_DECL(DestroyJavaVM, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
3422
a61af66fc99e Initial load
duke
parents:
diff changeset
3423 jint JNICALL jni_DestroyJavaVM(JavaVM *vm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3424 DTRACE_PROBE1(hotspot_jni, DestroyJavaVM__entry, vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
3425 jint res = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3426 DT_RETURN_MARK(DestroyJavaVM, jint, (const jint&)res);
a61af66fc99e Initial load
duke
parents:
diff changeset
3427
a61af66fc99e Initial load
duke
parents:
diff changeset
3428 if (!vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3429 res = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3430 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
3431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3432
a61af66fc99e Initial load
duke
parents:
diff changeset
3433 JNIWrapper("DestroyJavaVM");
a61af66fc99e Initial load
duke
parents:
diff changeset
3434 JNIEnv *env;
a61af66fc99e Initial load
duke
parents:
diff changeset
3435 JavaVMAttachArgs destroyargs;
a61af66fc99e Initial load
duke
parents:
diff changeset
3436 destroyargs.version = CurrentVersion;
a61af66fc99e Initial load
duke
parents:
diff changeset
3437 destroyargs.name = (char *)"DestroyJavaVM";
a61af66fc99e Initial load
duke
parents:
diff changeset
3438 destroyargs.group = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3439 res = vm->AttachCurrentThread((void **)&env, (void *)&destroyargs);
a61af66fc99e Initial load
duke
parents:
diff changeset
3440 if (res != JNI_OK) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3441 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
3442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3443
a61af66fc99e Initial load
duke
parents:
diff changeset
3444 // Since this is not a JVM_ENTRY we have to set the thread state manually before entering.
a61af66fc99e Initial load
duke
parents:
diff changeset
3445 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
3446 ThreadStateTransition::transition_from_native(thread, _thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
3447 if (Threads::destroy_vm()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3448 // Should not change thread state, VM is gone
a61af66fc99e Initial load
duke
parents:
diff changeset
3449 vm_created = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3450 res = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3451 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
3452 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3453 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
3454 res = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3455 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
3456 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3458
a61af66fc99e Initial load
duke
parents:
diff changeset
3459
a61af66fc99e Initial load
duke
parents:
diff changeset
3460 static jint attach_current_thread(JavaVM *vm, void **penv, void *_args, bool daemon) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3461 JavaVMAttachArgs *args = (JavaVMAttachArgs *) _args;
a61af66fc99e Initial load
duke
parents:
diff changeset
3462
a61af66fc99e Initial load
duke
parents:
diff changeset
3463 // Check below commented out from JDK1.2fcs as well
a61af66fc99e Initial load
duke
parents:
diff changeset
3464 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
3465 if (args && (args->version != JNI_VERSION_1_1 || args->version != JNI_VERSION_1_2)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3466 return JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
3467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3468 */
a61af66fc99e Initial load
duke
parents:
diff changeset
3469
a61af66fc99e Initial load
duke
parents:
diff changeset
3470 Thread* t = ThreadLocalStorage::get_thread_slow();
a61af66fc99e Initial load
duke
parents:
diff changeset
3471 if (t != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3472 // If the thread has been attached this operation is a no-op
a61af66fc99e Initial load
duke
parents:
diff changeset
3473 *(JNIEnv**)penv = ((JavaThread*) t)->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
3474 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3475 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3476
a61af66fc99e Initial load
duke
parents:
diff changeset
3477 // Create a thread and mark it as attaching so it will be skipped by the
a61af66fc99e Initial load
duke
parents:
diff changeset
3478 // ThreadsListEnumerator - see CR 6404306
a61af66fc99e Initial load
duke
parents:
diff changeset
3479 JavaThread* thread = new JavaThread(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
3480
a61af66fc99e Initial load
duke
parents:
diff changeset
3481 // Set correct safepoint info. The thread is going to call into Java when
a61af66fc99e Initial load
duke
parents:
diff changeset
3482 // initializing the Java level thread object. Hence, the correct state must
a61af66fc99e Initial load
duke
parents:
diff changeset
3483 // be set in order for the Safepoint code to deal with it correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
3484 thread->set_thread_state(_thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
3485 // Must do this before initialize_thread_local_storage
a61af66fc99e Initial load
duke
parents:
diff changeset
3486 thread->record_stack_base_and_size();
1290
c8a467bf56ad 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 1142
diff changeset
3487
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3488 thread->initialize_thread_local_storage();
a61af66fc99e Initial load
duke
parents:
diff changeset
3489
a61af66fc99e Initial load
duke
parents:
diff changeset
3490 if (!os::create_attached_thread(thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3491 delete thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
3492 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3493 }
1290
c8a467bf56ad 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 1142
diff changeset
3494 // Enable stack overflow checks
c8a467bf56ad 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 1142
diff changeset
3495 thread->create_stack_guard_pages();
c8a467bf56ad 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 1142
diff changeset
3496
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3497 thread->initialize_tlab();
a61af66fc99e Initial load
duke
parents:
diff changeset
3498
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
3499 thread->cache_global_variables();
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
3500
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3501 // Crucial that we do not have a safepoint check for this thread, since it has
a61af66fc99e Initial load
duke
parents:
diff changeset
3502 // not been added to the Thread list yet.
a61af66fc99e Initial load
duke
parents:
diff changeset
3503 { Threads_lock->lock_without_safepoint_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
3504 // This must be inside this lock in order to get FullGCALot to work properly, i.e., to
a61af66fc99e Initial load
duke
parents:
diff changeset
3505 // avoid this thread trying to do a GC before it is added to the thread-list
a61af66fc99e Initial load
duke
parents:
diff changeset
3506 thread->set_active_handles(JNIHandleBlock::allocate_block());
a61af66fc99e Initial load
duke
parents:
diff changeset
3507 Threads::add(thread, daemon);
a61af66fc99e Initial load
duke
parents:
diff changeset
3508 Threads_lock->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
3509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3510 // Create thread group and name info from attach arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
3511 oop group = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3512 char* thread_name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3513 if (args != NULL && Threads::is_supported_jni_version(args->version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3514 group = JNIHandles::resolve(args->group);
a61af66fc99e Initial load
duke
parents:
diff changeset
3515 thread_name = args->name; // may be NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
3516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3517 if (group == NULL) group = Universe::main_thread_group();
a61af66fc99e Initial load
duke
parents:
diff changeset
3518
a61af66fc99e Initial load
duke
parents:
diff changeset
3519 // Create Java level thread object and attach it to this thread
a61af66fc99e Initial load
duke
parents:
diff changeset
3520 bool attach_failed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
3521 {
a61af66fc99e Initial load
duke
parents:
diff changeset
3522 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3523 HandleMark hm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3524 Handle thread_group(THREAD, group);
a61af66fc99e Initial load
duke
parents:
diff changeset
3525 thread->allocate_threadObj(thread_group, thread_name, daemon, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
3526 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3527 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
3528 // cleanup outside the handle mark.
a61af66fc99e Initial load
duke
parents:
diff changeset
3529 attach_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
3530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3532
a61af66fc99e Initial load
duke
parents:
diff changeset
3533 if (attach_failed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3534 // Added missing cleanup
a61af66fc99e Initial load
duke
parents:
diff changeset
3535 thread->cleanup_failed_attach_current_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
3536 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3538
a61af66fc99e Initial load
duke
parents:
diff changeset
3539 // mark the thread as no longer attaching
a61af66fc99e Initial load
duke
parents:
diff changeset
3540 // this uses a fence to push the change through so we don't have
a61af66fc99e Initial load
duke
parents:
diff changeset
3541 // to regrab the threads_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
3542 thread->set_attached();
a61af66fc99e Initial load
duke
parents:
diff changeset
3543
a61af66fc99e Initial load
duke
parents:
diff changeset
3544 // Set java thread status.
a61af66fc99e Initial load
duke
parents:
diff changeset
3545 java_lang_Thread::set_thread_status(thread->threadObj(),
a61af66fc99e Initial load
duke
parents:
diff changeset
3546 java_lang_Thread::RUNNABLE);
a61af66fc99e Initial load
duke
parents:
diff changeset
3547
a61af66fc99e Initial load
duke
parents:
diff changeset
3548 // Notify the debugger
a61af66fc99e Initial load
duke
parents:
diff changeset
3549 if (JvmtiExport::should_post_thread_life()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3550 JvmtiExport::post_thread_start(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
3551 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3552
a61af66fc99e Initial load
duke
parents:
diff changeset
3553 *(JNIEnv**)penv = thread->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
3554
a61af66fc99e Initial load
duke
parents:
diff changeset
3555 // Now leaving the VM, so change thread_state. This is normally automatically taken care
a61af66fc99e Initial load
duke
parents:
diff changeset
3556 // of in the JVM_ENTRY. But in this situation we have to do it manually. Notice, that by
a61af66fc99e Initial load
duke
parents:
diff changeset
3557 // using ThreadStateTransition::transition, we do a callback to the safepoint code if
a61af66fc99e Initial load
duke
parents:
diff changeset
3558 // needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
3559
a61af66fc99e Initial load
duke
parents:
diff changeset
3560 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
3561
a61af66fc99e Initial load
duke
parents:
diff changeset
3562 // Perform any platform dependent FPU setup
a61af66fc99e Initial load
duke
parents:
diff changeset
3563 os::setup_fpu();
a61af66fc99e Initial load
duke
parents:
diff changeset
3564
a61af66fc99e Initial load
duke
parents:
diff changeset
3565 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3567
a61af66fc99e Initial load
duke
parents:
diff changeset
3568
a61af66fc99e Initial load
duke
parents:
diff changeset
3569 jint JNICALL jni_AttachCurrentThread(JavaVM *vm, void **penv, void *_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3570 DTRACE_PROBE3(hotspot_jni, AttachCurrentThread__entry, vm, penv, _args);
a61af66fc99e Initial load
duke
parents:
diff changeset
3571 if (!vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3572 DTRACE_PROBE1(hotspot_jni, AttachCurrentThread__return, JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
3573 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3575
a61af66fc99e Initial load
duke
parents:
diff changeset
3576 JNIWrapper("AttachCurrentThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
3577 jint ret = attach_current_thread(vm, penv, _args, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
3578 DTRACE_PROBE1(hotspot_jni, AttachCurrentThread__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
3579 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3581
a61af66fc99e Initial load
duke
parents:
diff changeset
3582
a61af66fc99e Initial load
duke
parents:
diff changeset
3583 jint JNICALL jni_DetachCurrentThread(JavaVM *vm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3584 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__entry, vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
3585 VM_Exit::block_if_vm_exited();
a61af66fc99e Initial load
duke
parents:
diff changeset
3586
a61af66fc99e Initial load
duke
parents:
diff changeset
3587 JNIWrapper("DetachCurrentThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
3588
a61af66fc99e Initial load
duke
parents:
diff changeset
3589 // If the thread has been deattacted the operations is a no-op
a61af66fc99e Initial load
duke
parents:
diff changeset
3590 if (ThreadLocalStorage::thread() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3591 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
3592 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3593 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3594
a61af66fc99e Initial load
duke
parents:
diff changeset
3595 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
3596 if (thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3597 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
3598 // Can't detach a thread that's running java, that can't work.
a61af66fc99e Initial load
duke
parents:
diff changeset
3599 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3600 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3601
a61af66fc99e Initial load
duke
parents:
diff changeset
3602 // Safepoint support. Have to do call-back to safepoint code, if in the
a61af66fc99e Initial load
duke
parents:
diff changeset
3603 // middel of a safepoint operation
a61af66fc99e Initial load
duke
parents:
diff changeset
3604 ThreadStateTransition::transition_from_native(thread, _thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
3605
a61af66fc99e Initial load
duke
parents:
diff changeset
3606 // XXX: Note that JavaThread::exit() call below removes the guards on the
a61af66fc99e Initial load
duke
parents:
diff changeset
3607 // stack pages set up via enable_stack_{red,yellow}_zone() calls
a61af66fc99e Initial load
duke
parents:
diff changeset
3608 // above in jni_AttachCurrentThread. Unfortunately, while the setting
a61af66fc99e Initial load
duke
parents:
diff changeset
3609 // of the guards is visible in jni_AttachCurrentThread above,
a61af66fc99e Initial load
duke
parents:
diff changeset
3610 // the removal of the guards is buried below in JavaThread::exit()
a61af66fc99e Initial load
duke
parents:
diff changeset
3611 // here. The abstraction should be more symmetrically either exposed
a61af66fc99e Initial load
duke
parents:
diff changeset
3612 // or hidden (e.g. it could probably be hidden in the same
a61af66fc99e Initial load
duke
parents:
diff changeset
3613 // (platform-dependent) methods where we do alternate stack
a61af66fc99e Initial load
duke
parents:
diff changeset
3614 // maintenance work?)
a61af66fc99e Initial load
duke
parents:
diff changeset
3615 thread->exit(false, JavaThread::jni_detach);
a61af66fc99e Initial load
duke
parents:
diff changeset
3616 delete thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
3617
a61af66fc99e Initial load
duke
parents:
diff changeset
3618 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
3619 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3621
a61af66fc99e Initial load
duke
parents:
diff changeset
3622 DT_RETURN_MARK_DECL(GetEnv, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
3623
a61af66fc99e Initial load
duke
parents:
diff changeset
3624 jint JNICALL jni_GetEnv(JavaVM *vm, void **penv, jint version) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3625 DTRACE_PROBE3(hotspot_jni, GetEnv__entry, vm, penv, version);
a61af66fc99e Initial load
duke
parents:
diff changeset
3626 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3627 DT_RETURN_MARK(GetEnv, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
3628
a61af66fc99e Initial load
duke
parents:
diff changeset
3629 if (!vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3630 *penv = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3631 ret = JNI_EDETACHED;
a61af66fc99e Initial load
duke
parents:
diff changeset
3632 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3634
a61af66fc99e Initial load
duke
parents:
diff changeset
3635 if (JvmtiExport::is_jvmti_version(version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3636 ret = JvmtiExport::get_jvmti_interface(vm, penv, version);
a61af66fc99e Initial load
duke
parents:
diff changeset
3637 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3639
a61af66fc99e Initial load
duke
parents:
diff changeset
3640 #ifndef JVMPI_VERSION_1
a61af66fc99e Initial load
duke
parents:
diff changeset
3641 // need these in order to be polite about older agents
a61af66fc99e Initial load
duke
parents:
diff changeset
3642 #define JVMPI_VERSION_1 ((jint)0x10000001)
a61af66fc99e Initial load
duke
parents:
diff changeset
3643 #define JVMPI_VERSION_1_1 ((jint)0x10000002)
a61af66fc99e Initial load
duke
parents:
diff changeset
3644 #define JVMPI_VERSION_1_2 ((jint)0x10000003)
a61af66fc99e Initial load
duke
parents:
diff changeset
3645 #endif // !JVMPI_VERSION_1
a61af66fc99e Initial load
duke
parents:
diff changeset
3646
a61af66fc99e Initial load
duke
parents:
diff changeset
3647 Thread* thread = ThreadLocalStorage::thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
3648 if (thread != NULL && thread->is_Java_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3649 if (Threads::is_supported_jni_version_including_1_1(version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3650 *(JNIEnv**)penv = ((JavaThread*) thread)->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
3651 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
3652 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3653
a61af66fc99e Initial load
duke
parents:
diff changeset
3654 } else if (version == JVMPI_VERSION_1 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
3655 version == JVMPI_VERSION_1_1 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
3656 version == JVMPI_VERSION_1_2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3657 tty->print_cr("ERROR: JVMPI, an experimental interface, is no longer supported.");
a61af66fc99e Initial load
duke
parents:
diff changeset
3658 tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI).");
a61af66fc99e Initial load
duke
parents:
diff changeset
3659 ret = JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
3660 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3661 } else if (JvmtiExport::is_jvmdi_version(version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3662 tty->print_cr("FATAL ERROR: JVMDI is no longer supported.");
a61af66fc99e Initial load
duke
parents:
diff changeset
3663 tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI).");
a61af66fc99e Initial load
duke
parents:
diff changeset
3664 ret = JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
3665 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3666 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3667 *penv = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3668 ret = JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
3669 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3670 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3671 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3672 *penv = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3673 ret = JNI_EDETACHED;
a61af66fc99e Initial load
duke
parents:
diff changeset
3674 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3676 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3677
a61af66fc99e Initial load
duke
parents:
diff changeset
3678
a61af66fc99e Initial load
duke
parents:
diff changeset
3679 jint JNICALL jni_AttachCurrentThreadAsDaemon(JavaVM *vm, void **penv, void *_args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3680 DTRACE_PROBE3(hotspot_jni, AttachCurrentThreadAsDaemon__entry, vm, penv, _args);
a61af66fc99e Initial load
duke
parents:
diff changeset
3681 if (!vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3682 DTRACE_PROBE1(hotspot_jni, AttachCurrentThreadAsDaemon__return, JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
3683 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
3684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3685
a61af66fc99e Initial load
duke
parents:
diff changeset
3686 JNIWrapper("AttachCurrentThreadAsDaemon");
a61af66fc99e Initial load
duke
parents:
diff changeset
3687 jint ret = attach_current_thread(vm, penv, _args, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
3688 DTRACE_PROBE1(hotspot_jni, AttachCurrentThreadAsDaemon__return, ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
3689 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3690 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3691
a61af66fc99e Initial load
duke
parents:
diff changeset
3692
a61af66fc99e Initial load
duke
parents:
diff changeset
3693 } // End extern "C"
a61af66fc99e Initial load
duke
parents:
diff changeset
3694
a61af66fc99e Initial load
duke
parents:
diff changeset
3695 const struct JNIInvokeInterface_ jni_InvokeInterface = {
a61af66fc99e Initial load
duke
parents:
diff changeset
3696 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
3697 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
3698 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
3699
a61af66fc99e Initial load
duke
parents:
diff changeset
3700 jni_DestroyJavaVM,
a61af66fc99e Initial load
duke
parents:
diff changeset
3701 jni_AttachCurrentThread,
a61af66fc99e Initial load
duke
parents:
diff changeset
3702 jni_DetachCurrentThread,
a61af66fc99e Initial load
duke
parents:
diff changeset
3703 jni_GetEnv,
a61af66fc99e Initial load
duke
parents:
diff changeset
3704 jni_AttachCurrentThreadAsDaemon
a61af66fc99e Initial load
duke
parents:
diff changeset
3705 };