author | rprotacio |
Mon, 12 Jun 2017 13:58:09 -0400 | |
changeset 48558 | b2b67c8fc91a |
parent 48105 | 8d15b1369c7a |
child 48819 | ee513596f3ee |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. |
13958
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
13952
diff
changeset
|
3 |
* Copyright (c) 2012 Red Hat, Inc. |
1 | 4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
21 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
22 |
* questions. |
1 | 23 |
* |
24 |
*/ |
|
25 |
||
7397 | 26 |
#include "precompiled.hpp" |
47659 | 27 |
#include "jni.h" |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
28 |
#include "jvm.h" |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14391
diff
changeset
|
29 |
#include "ci/ciReplay.hpp" |
13087 | 30 |
#include "classfile/altHashing.hpp" |
34666 | 31 |
#include "classfile/classFileStream.hpp" |
7397 | 32 |
#include "classfile/classLoader.hpp" |
36508 | 33 |
#include "classfile/javaClasses.hpp" |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
35219
diff
changeset
|
34 |
#include "classfile/javaClasses.inline.hpp" |
36508 | 35 |
#include "classfile/modules.hpp" |
7397 | 36 |
#include "classfile/symbolTable.hpp" |
37 |
#include "classfile/systemDictionary.hpp" |
|
38 |
#include "classfile/vmSymbols.hpp" |
|
30764 | 39 |
#include "gc/shared/gcLocker.inline.hpp" |
7397 | 40 |
#include "interpreter/linkResolver.hpp" |
13195 | 41 |
#include "memory/allocation.hpp" |
7397 | 42 |
#include "memory/allocation.inline.hpp" |
43 |
#include "memory/oopFactory.hpp" |
|
37248 | 44 |
#include "memory/resourceArea.hpp" |
7397 | 45 |
#include "memory/universe.inline.hpp" |
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47796
diff
changeset
|
46 |
#include "oops/access.inline.hpp" |
7397 | 47 |
#include "oops/instanceKlass.hpp" |
48 |
#include "oops/instanceOop.hpp" |
|
49 |
#include "oops/markOop.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
50 |
#include "oops/method.hpp" |
7397 | 51 |
#include "oops/objArrayKlass.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27685
diff
changeset
|
52 |
#include "oops/objArrayOop.inline.hpp" |
7397 | 53 |
#include "oops/oop.inline.hpp" |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
54 |
#include "oops/symbol.hpp" |
7397 | 55 |
#include "oops/typeArrayKlass.hpp" |
56 |
#include "oops/typeArrayOop.hpp" |
|
57 |
#include "prims/jniCheck.hpp" |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
11247
diff
changeset
|
58 |
#include "prims/jniExport.hpp" |
7397 | 59 |
#include "prims/jniFastGetField.hpp" |
60 |
#include "prims/jvm_misc.hpp" |
|
61 |
#include "prims/jvmtiExport.hpp" |
|
62 |
#include "prims/jvmtiThreadState.hpp" |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
38704
diff
changeset
|
63 |
#include "runtime/atomic.hpp" |
7397 | 64 |
#include "runtime/compilationPolicy.hpp" |
65 |
#include "runtime/fieldDescriptor.hpp" |
|
66 |
#include "runtime/handles.inline.hpp" |
|
67 |
#include "runtime/interfaceSupport.hpp" |
|
68 |
#include "runtime/java.hpp" |
|
69 |
#include "runtime/javaCalls.hpp" |
|
70 |
#include "runtime/jfieldIDWorkaround.hpp" |
|
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
24237
diff
changeset
|
71 |
#include "runtime/orderAccess.inline.hpp" |
7397 | 72 |
#include "runtime/reflection.hpp" |
73 |
#include "runtime/sharedRuntime.hpp" |
|
74 |
#include "runtime/signature.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14490
diff
changeset
|
75 |
#include "runtime/thread.inline.hpp" |
7397 | 76 |
#include "runtime/vm_operations.hpp" |
25946 | 77 |
#include "services/memTracker.hpp" |
7397 | 78 |
#include "services/runtimeService.hpp" |
36384 | 79 |
#include "trace/traceMacros.hpp" |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
11247
diff
changeset
|
80 |
#include "trace/tracing.hpp" |
7397 | 81 |
#include "utilities/defaultStream.hpp" |
82 |
#include "utilities/dtrace.hpp" |
|
83 |
#include "utilities/events.hpp" |
|
84 |
#include "utilities/histogram.hpp" |
|
35519
9200162499f7
8146994: Move internal vm tests to a separate file
ehelin
parents:
35500
diff
changeset
|
85 |
#include "utilities/internalVMTests.hpp" |
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
27679
diff
changeset
|
86 |
#include "utilities/macros.hpp" |
46589 | 87 |
#include "utilities/vmError.hpp" |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
88 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
89 |
#include "jvmci/jvmciCompiler.hpp" |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
90 |
#include "jvmci/jvmciRuntime.hpp" |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
91 |
#endif |
1 | 92 |
|
47613
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
93 |
static jint CurrentVersion = JNI_VERSION_10; |
1 | 94 |
|
30143
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
95 |
#ifdef _WIN32 |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
96 |
extern LONG WINAPI topLevelExceptionFilter(_EXCEPTION_POINTERS* ); |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
97 |
#endif |
1 | 98 |
|
99 |
// The DT_RETURN_MARK macros create a scoped object to fire the dtrace |
|
100 |
// '-return' probe regardless of the return path is taken out of the function. |
|
101 |
// Methods that have multiple return paths use this to avoid having to |
|
102 |
// instrument each return path. Methods that use CHECK or THROW must use this |
|
103 |
// since those macros can cause an immedate uninstrumented return. |
|
104 |
// |
|
105 |
// In order to get the return value, a reference to the variable containing |
|
106 |
// the return value must be passed to the contructor of the object, and |
|
107 |
// the return value must be set before return (since the mark object has |
|
108 |
// a reference to it). |
|
109 |
// |
|
110 |
// Example: |
|
111 |
// DT_RETURN_MARK_DECL(SomeFunc, int); |
|
112 |
// JNI_ENTRY(int, SomeFunc, ...) |
|
113 |
// int return_value = 0; |
|
114 |
// DT_RETURN_MARK(SomeFunc, int, (const int&)return_value); |
|
115 |
// foo(CHECK_0) |
|
116 |
// return_value = 5; |
|
117 |
// return return_value; |
|
118 |
// JNI_END |
|
10739 | 119 |
#define DT_RETURN_MARK_DECL(name, type, probe) \ |
120 |
DTRACE_ONLY( \ |
|
121 |
class DTraceReturnProbeMark_##name { \ |
|
122 |
public: \ |
|
123 |
const type& _ret_ref; \ |
|
124 |
DTraceReturnProbeMark_##name(const type& v) : _ret_ref(v) {} \ |
|
125 |
~DTraceReturnProbeMark_##name() { \ |
|
126 |
probe; \ |
|
127 |
} \ |
|
128 |
} \ |
|
129 |
) |
|
130 |
// Void functions are simpler since there's no return value |
|
131 |
#define DT_VOID_RETURN_MARK_DECL(name, probe) \ |
|
132 |
DTRACE_ONLY( \ |
|
133 |
class DTraceReturnProbeMark_##name { \ |
|
134 |
public: \ |
|
135 |
~DTraceReturnProbeMark_##name() { \ |
|
136 |
probe; \ |
|
137 |
} \ |
|
138 |
} \ |
|
139 |
) |
|
1 | 140 |
|
141 |
// Place these macros in the function to mark the return. Non-void |
|
142 |
// functions need the type and address of the return value. |
|
143 |
#define DT_RETURN_MARK(name, type, ref) \ |
|
144 |
DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark(ref) ) |
|
145 |
#define DT_VOID_RETURN_MARK(name) \ |
|
146 |
DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark ) |
|
147 |
||
148 |
||
149 |
// Use these to select distinct code for floating-point vs. non-floating point |
|
150 |
// situations. Used from within common macros where we need slightly |
|
151 |
// different behavior for Float/Double |
|
152 |
#define FP_SELECT_Boolean(intcode, fpcode) intcode |
|
153 |
#define FP_SELECT_Byte(intcode, fpcode) intcode |
|
154 |
#define FP_SELECT_Char(intcode, fpcode) intcode |
|
155 |
#define FP_SELECT_Short(intcode, fpcode) intcode |
|
156 |
#define FP_SELECT_Object(intcode, fpcode) intcode |
|
157 |
#define FP_SELECT_Int(intcode, fpcode) intcode |
|
158 |
#define FP_SELECT_Long(intcode, fpcode) intcode |
|
159 |
#define FP_SELECT_Float(intcode, fpcode) fpcode |
|
160 |
#define FP_SELECT_Double(intcode, fpcode) fpcode |
|
161 |
#define FP_SELECT(TypeName, intcode, fpcode) \ |
|
162 |
FP_SELECT_##TypeName(intcode, fpcode) |
|
163 |
||
164 |
// Choose DT_RETURN_MARK macros based on the type: float/double -> void |
|
165 |
// (dtrace doesn't do FP yet) |
|
10739 | 166 |
#define DT_RETURN_MARK_DECL_FOR(TypeName, name, type, probe) \ |
167 |
FP_SELECT(TypeName, \ |
|
168 |
DT_RETURN_MARK_DECL(name, type, probe), DT_VOID_RETURN_MARK_DECL(name, probe) ) |
|
1 | 169 |
#define DT_RETURN_MARK_FOR(TypeName, name, type, ref) \ |
170 |
FP_SELECT(TypeName, \ |
|
171 |
DT_RETURN_MARK(name, type, ref), DT_VOID_RETURN_MARK(name) ) |
|
172 |
||
173 |
||
174 |
// out-of-line helpers for class jfieldIDWorkaround: |
|
175 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
176 |
bool jfieldIDWorkaround::is_valid_jfieldID(Klass* k, jfieldID id) { |
1 | 177 |
if (jfieldIDWorkaround::is_instance_jfieldID(k, id)) { |
178 |
uintptr_t as_uint = (uintptr_t) id; |
|
179 |
intptr_t offset = raw_instance_offset(id); |
|
180 |
if (is_checked_jfieldID(id)) { |
|
181 |
if (!klass_hash_ok(k, id)) { |
|
182 |
return false; |
|
183 |
} |
|
184 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
185 |
return InstanceKlass::cast(k)->contains_field_offset(offset); |
1 | 186 |
} else { |
187 |
JNIid* result = (JNIid*) id; |
|
188 |
#ifdef ASSERT |
|
189 |
return result != NULL && result->is_static_field_id(); |
|
190 |
#else |
|
191 |
return result != NULL; |
|
192 |
#endif |
|
193 |
} |
|
194 |
} |
|
195 |
||
196 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
197 |
intptr_t jfieldIDWorkaround::encode_klass_hash(Klass* k, intptr_t offset) { |
1 | 198 |
if (offset <= small_offset_mask) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
199 |
Klass* field_klass = k; |
14488 | 200 |
Klass* super_klass = field_klass->super(); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
201 |
// With compressed oops the most super class with nonstatic fields would |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
202 |
// be the owner of fields embedded in the header. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
203 |
while (InstanceKlass::cast(super_klass)->has_nonstatic_fields() && |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
204 |
InstanceKlass::cast(super_klass)->contains_field_offset(offset)) { |
1 | 205 |
field_klass = super_klass; // super contains the field also |
14488 | 206 |
super_klass = field_klass->super(); |
1 | 207 |
} |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35219
diff
changeset
|
208 |
debug_only(NoSafepointVerifier nosafepoint;) |
1 | 209 |
uintptr_t klass_hash = field_klass->identity_hash(); |
210 |
return ((klass_hash & klass_mask) << klass_shift) | checked_mask_in_place; |
|
211 |
} else { |
|
212 |
#if 0 |
|
213 |
#ifndef PRODUCT |
|
214 |
{ |
|
215 |
ResourceMark rm; |
|
14488 | 216 |
warning("VerifyJNIFields: long offset %d in %s", offset, k->external_name()); |
1 | 217 |
} |
218 |
#endif |
|
219 |
#endif |
|
220 |
return 0; |
|
221 |
} |
|
222 |
} |
|
223 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
224 |
bool jfieldIDWorkaround::klass_hash_ok(Klass* k, jfieldID id) { |
1 | 225 |
uintptr_t as_uint = (uintptr_t) id; |
226 |
intptr_t klass_hash = (as_uint >> klass_shift) & klass_mask; |
|
227 |
do { |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35219
diff
changeset
|
228 |
debug_only(NoSafepointVerifier nosafepoint;) |
1 | 229 |
// Could use a non-blocking query for identity_hash here... |
230 |
if ((k->identity_hash() & klass_mask) == klass_hash) |
|
231 |
return true; |
|
14488 | 232 |
k = k->super(); |
1 | 233 |
} while (k != NULL); |
234 |
return false; |
|
235 |
} |
|
236 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
237 |
void jfieldIDWorkaround::verify_instance_jfieldID(Klass* k, jfieldID id) { |
1 | 238 |
guarantee(jfieldIDWorkaround::is_instance_jfieldID(k, id), "must be an instance field" ); |
239 |
uintptr_t as_uint = (uintptr_t) id; |
|
240 |
intptr_t offset = raw_instance_offset(id); |
|
241 |
if (VerifyJNIFields) { |
|
242 |
if (is_checked_jfieldID(id)) { |
|
243 |
guarantee(klass_hash_ok(k, id), |
|
244 |
"Bug in native code: jfieldID class must match object"); |
|
245 |
} else { |
|
246 |
#if 0 |
|
247 |
#ifndef PRODUCT |
|
248 |
if (Verbose) { |
|
249 |
ResourceMark rm; |
|
14488 | 250 |
warning("VerifyJNIFields: unverified offset %d for %s", offset, k->external_name()); |
1 | 251 |
} |
252 |
#endif |
|
253 |
#endif |
|
254 |
} |
|
255 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
256 |
guarantee(InstanceKlass::cast(k)->contains_field_offset(offset), |
1 | 257 |
"Bug in native code: jfieldID offset must address interior of object"); |
258 |
} |
|
259 |
||
260 |
// Wrapper to trace JNI functions |
|
261 |
||
262 |
#ifdef ASSERT |
|
263 |
Histogram* JNIHistogram; |
|
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
264 |
static volatile int JNIHistogram_lock = 0; |
1 | 265 |
|
266 |
class JNIHistogramElement : public HistogramElement { |
|
267 |
public: |
|
268 |
JNIHistogramElement(const char* name); |
|
269 |
}; |
|
270 |
||
271 |
JNIHistogramElement::JNIHistogramElement(const char* elementName) { |
|
272 |
_name = elementName; |
|
273 |
uintx count = 0; |
|
274 |
||
275 |
while (Atomic::cmpxchg(1, &JNIHistogram_lock, 0) != 0) { |
|
276 |
while (OrderAccess::load_acquire(&JNIHistogram_lock) != 0) { |
|
277 |
count +=1; |
|
278 |
if ( (WarnOnStalledSpinLock > 0) |
|
279 |
&& (count % WarnOnStalledSpinLock == 0)) { |
|
280 |
warning("JNIHistogram_lock seems to be stalled"); |
|
281 |
} |
|
282 |
} |
|
283 |
} |
|
284 |
||
285 |
||
286 |
if(JNIHistogram == NULL) |
|
287 |
JNIHistogram = new Histogram("JNI Call Counts",100); |
|
288 |
||
289 |
JNIHistogram->add_element(this); |
|
290 |
Atomic::dec(&JNIHistogram_lock); |
|
291 |
} |
|
292 |
||
293 |
#define JNICountWrapper(arg) \ |
|
294 |
static JNIHistogramElement* e = new JNIHistogramElement(arg); \ |
|
295 |
/* There is a MT-race condition in VC++. So we need to make sure that that e has been initialized */ \ |
|
296 |
if (e != NULL) e->increment_count() |
|
34285
0b07014c15e9
8143155: Remove TraceRuntimeCalls, TraceJNICalls, and TraceJVMCalls rather than convert to UL
rprotacio
parents:
33813
diff
changeset
|
297 |
#define JNIWrapper(arg) JNICountWrapper(arg); |
1 | 298 |
#else |
299 |
#define JNIWrapper(arg) |
|
300 |
#endif |
|
301 |
||
302 |
||
303 |
// Implementation of JNI entries |
|
304 |
||
10739 | 305 |
DT_RETURN_MARK_DECL(DefineClass, jclass |
306 |
, HOTSPOT_JNI_DEFINECLASS_RETURN(_ret_ref)); |
|
1 | 307 |
|
308 |
JNI_ENTRY(jclass, jni_DefineClass(JNIEnv *env, const char *name, jobject loaderRef, |
|
309 |
const jbyte *buf, jsize bufLen)) |
|
310 |
JNIWrapper("DefineClass"); |
|
311 |
||
10739 | 312 |
HOTSPOT_JNI_DEFINECLASS_ENTRY( |
313 |
env, (char*) name, loaderRef, (char*) buf, bufLen); |
|
22796 | 314 |
|
1 | 315 |
jclass cls = NULL; |
316 |
DT_RETURN_MARK(DefineClass, jclass, (const jclass&)cls); |
|
317 |
||
12939
c0a910665895
7171703: JNI DefineClass crashes client VM when first parameter is NULL
fparain
parents:
11480
diff
changeset
|
318 |
TempNewSymbol class_name = NULL; |
1 | 319 |
// Since exceptions can be thrown, class initialization can take place |
320 |
// if name is NULL no check for class name in .class stream has to be made. |
|
321 |
if (name != NULL) { |
|
322 |
const int str_len = (int)strlen(name); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
323 |
if (str_len > Symbol::max_length()) { |
1 | 324 |
// It's impossible to create this class; the name cannot fit |
325 |
// into the constant pool. |
|
46431
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
326 |
Exceptions::fthrow(THREAD_AND_LOCATION, |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
327 |
vmSymbols::java_lang_NoClassDefFoundError(), |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
328 |
"Class name exceeds maximum length of %d: %s", |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
329 |
Symbol::max_length(), |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
330 |
name); |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
331 |
return 0; |
1 | 332 |
} |
12939
c0a910665895
7171703: JNI DefineClass crashes client VM when first parameter is NULL
fparain
parents:
11480
diff
changeset
|
333 |
class_name = SymbolTable::new_symbol(name, CHECK_NULL); |
1 | 334 |
} |
335 |
ResourceMark rm(THREAD); |
|
34666 | 336 |
ClassFileStream st((u1*)buf, bufLen, NULL, ClassFileStream::verify); |
1 | 337 |
Handle class_loader (THREAD, JNIHandles::resolve(loaderRef)); |
338 |
||
339 |
if (UsePerfData && !class_loader.is_null()) { |
|
340 |
// check whether the current caller thread holds the lock or not. |
|
341 |
// If not, increment the corresponding counter |
|
342 |
if (ObjectSynchronizer:: |
|
343 |
query_lock_ownership((JavaThread*)THREAD, class_loader) != |
|
344 |
ObjectSynchronizer::owner_self) { |
|
345 |
ClassLoader::sync_JNIDefineClassLockFreeCounter()->inc(); |
|
346 |
} |
|
347 |
} |
|
34666 | 348 |
Klass* k = SystemDictionary::resolve_from_stream(class_name, |
349 |
class_loader, |
|
350 |
Handle(), |
|
351 |
&st, |
|
352 |
CHECK_NULL); |
|
1 | 353 |
|
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37483
diff
changeset
|
354 |
if (log_is_enabled(Debug, class, resolve) && k != NULL) { |
2269
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
355 |
trace_class_resolution(k); |
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
356 |
} |
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
357 |
|
1 | 358 |
cls = (jclass)JNIHandles::make_local( |
14488 | 359 |
env, k->java_mirror()); |
1 | 360 |
return cls; |
361 |
JNI_END |
|
362 |
||
363 |
||
364 |
||
365 |
static bool first_time_FindClass = true; |
|
366 |
||
10739 | 367 |
DT_RETURN_MARK_DECL(FindClass, jclass |
368 |
, HOTSPOT_JNI_FINDCLASS_RETURN(_ret_ref)); |
|
1 | 369 |
|
370 |
JNI_ENTRY(jclass, jni_FindClass(JNIEnv *env, const char *name)) |
|
371 |
JNIWrapper("FindClass"); |
|
22796 | 372 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
373 |
HOTSPOT_JNI_FINDCLASS_ENTRY(env, (char *)name); |
1 | 374 |
|
375 |
jclass result = NULL; |
|
376 |
DT_RETURN_MARK(FindClass, jclass, (const jclass&)result); |
|
377 |
||
378 |
// Remember if we are the first invocation of jni_FindClass |
|
379 |
bool first_time = first_time_FindClass; |
|
380 |
first_time_FindClass = false; |
|
381 |
||
382 |
// Sanity check the name: it cannot be null or larger than the maximum size |
|
383 |
// name we can fit in the constant pool. |
|
46431
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
384 |
if (name == NULL) { |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
385 |
THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), "No class name given"); |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
386 |
} |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
387 |
if ((int)strlen(name) > Symbol::max_length()) { |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
388 |
Exceptions::fthrow(THREAD_AND_LOCATION, |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
389 |
vmSymbols::java_lang_NoClassDefFoundError(), |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
390 |
"Class name exceeds maximum length of %d: %s", |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
391 |
Symbol::max_length(), |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
392 |
name); |
87b0d1afe03e
8056900: Enhance NoClassDefFound exception messaging
hseigel
parents:
46369
diff
changeset
|
393 |
return 0; |
1 | 394 |
} |
395 |
||
396 |
//%note jni_3 |
|
397 |
Handle protection_domain; |
|
398 |
// Find calling class |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
399 |
Klass* k = thread->security_get_caller_class(0); |
47662
2493edd8b479
8189193: FindClass should only see classes from the boot loader called from its associated native library
mchung
parents:
47659
diff
changeset
|
400 |
// default to the system loader when no context |
2493edd8b479
8189193: FindClass should only see classes from the boot loader called from its associated native library
mchung
parents:
47659
diff
changeset
|
401 |
Handle loader(THREAD, SystemDictionary::java_system_loader()); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
402 |
if (k != NULL) { |
1 | 403 |
// Special handling to make sure JNI_OnLoad and JNI_OnUnload are executed |
404 |
// in the correct class context. |
|
47613
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
405 |
if (k->class_loader() == NULL && |
1 | 406 |
k->name() == vmSymbols::java_lang_ClassLoader_NativeLibrary()) { |
407 |
JavaValue result(T_OBJECT); |
|
408 |
JavaCalls::call_static(&result, k, |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
409 |
vmSymbols::getFromClass_name(), |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
410 |
vmSymbols::void_class_signature(), |
47613
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
411 |
CHECK_NULL); |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
412 |
// When invoked from JNI_OnLoad, NativeLibrary::getFromClass returns |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
413 |
// a non-NULL Class object. When invoked from JNI_OnUnload, |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
414 |
// it will return NULL to indicate no context. |
1 | 415 |
oop mirror = (oop) result.get_jobject(); |
47613
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
416 |
if (mirror != NULL) { |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
417 |
Klass* fromClass = java_lang_Class::as_Klass(mirror); |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
418 |
loader = Handle(THREAD, fromClass->class_loader()); |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
419 |
protection_domain = Handle(THREAD, fromClass->protection_domain()); |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
420 |
} |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
421 |
} else { |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
422 |
loader = Handle(THREAD, k->class_loader()); |
1 | 423 |
} |
47613
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
424 |
} |
af241e3e5a13
8188052: JNI FindClass needs to specify the class loading context used for library lifecycle hooks
mchung
parents:
47216
diff
changeset
|
425 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
426 |
TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL); |
1 | 427 |
result = find_class_from_class_loader(env, sym, true, loader, |
428 |
protection_domain, true, thread); |
|
429 |
||
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37483
diff
changeset
|
430 |
if (log_is_enabled(Debug, class, resolve) && result != NULL) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
431 |
trace_class_resolution(java_lang_Class::as_Klass(JNIHandles::resolve_non_null(result))); |
2269
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
432 |
} |
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
433 |
|
1 | 434 |
// If we were the first invocation of jni_FindClass, we enable compilation again |
435 |
// rather than just allowing invocation counter to overflow and decay. |
|
436 |
// Controlled by flag DelayCompilationDuringStartup. |
|
437 |
if (first_time && !CompileTheWorld) |
|
438 |
CompilationPolicy::completed_vm_startup(); |
|
439 |
||
440 |
return result; |
|
441 |
JNI_END |
|
442 |
||
10739 | 443 |
DT_RETURN_MARK_DECL(FromReflectedMethod, jmethodID |
444 |
, HOTSPOT_JNI_FROMREFLECTEDMETHOD_RETURN((uintptr_t)_ret_ref)); |
|
1 | 445 |
|
446 |
JNI_ENTRY(jmethodID, jni_FromReflectedMethod(JNIEnv *env, jobject method)) |
|
447 |
JNIWrapper("FromReflectedMethod"); |
|
22796 | 448 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
449 |
HOTSPOT_JNI_FROMREFLECTEDMETHOD_ENTRY(env, method); |
22796 | 450 |
|
1 | 451 |
jmethodID ret = NULL; |
452 |
DT_RETURN_MARK(FromReflectedMethod, jmethodID, (const jmethodID&)ret); |
|
453 |
||
454 |
// method is a handle to a java.lang.reflect.Method object |
|
455 |
oop reflected = JNIHandles::resolve_non_null(method); |
|
456 |
oop mirror = NULL; |
|
457 |
int slot = 0; |
|
458 |
||
4571 | 459 |
if (reflected->klass() == SystemDictionary::reflect_Constructor_klass()) { |
1 | 460 |
mirror = java_lang_reflect_Constructor::clazz(reflected); |
461 |
slot = java_lang_reflect_Constructor::slot(reflected); |
|
462 |
} else { |
|
4571 | 463 |
assert(reflected->klass() == SystemDictionary::reflect_Method_klass(), "wrong type"); |
1 | 464 |
mirror = java_lang_reflect_Method::clazz(reflected); |
465 |
slot = java_lang_reflect_Method::slot(reflected); |
|
466 |
} |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
467 |
Klass* k1 = java_lang_Class::as_Klass(mirror); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
468 |
|
1 | 469 |
// Make sure class is initialized before handing id's out to methods |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
470 |
k1->initialize(CHECK_NULL); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
471 |
Method* m = InstanceKlass::cast(k1)->method_with_idnum(slot); |
1 | 472 |
ret = m==NULL? NULL : m->jmethod_id(); // return NULL if reflected method deleted |
473 |
return ret; |
|
474 |
JNI_END |
|
475 |
||
10739 | 476 |
DT_RETURN_MARK_DECL(FromReflectedField, jfieldID |
477 |
, HOTSPOT_JNI_FROMREFLECTEDFIELD_RETURN((uintptr_t)_ret_ref)); |
|
1 | 478 |
|
479 |
JNI_ENTRY(jfieldID, jni_FromReflectedField(JNIEnv *env, jobject field)) |
|
480 |
JNIWrapper("FromReflectedField"); |
|
22796 | 481 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
482 |
HOTSPOT_JNI_FROMREFLECTEDFIELD_ENTRY(env, field); |
22796 | 483 |
|
1 | 484 |
jfieldID ret = NULL; |
485 |
DT_RETURN_MARK(FromReflectedField, jfieldID, (const jfieldID&)ret); |
|
486 |
||
487 |
// field is a handle to a java.lang.reflect.Field object |
|
488 |
oop reflected = JNIHandles::resolve_non_null(field); |
|
489 |
oop mirror = java_lang_reflect_Field::clazz(reflected); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
490 |
Klass* k1 = java_lang_Class::as_Klass(mirror); |
1 | 491 |
int slot = java_lang_reflect_Field::slot(reflected); |
492 |
int modifiers = java_lang_reflect_Field::modifiers(reflected); |
|
493 |
||
494 |
// Make sure class is initialized before handing id's out to fields |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
495 |
k1->initialize(CHECK_NULL); |
1 | 496 |
|
497 |
// First check if this is a static field |
|
498 |
if (modifiers & JVM_ACC_STATIC) { |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
499 |
intptr_t offset = InstanceKlass::cast(k1)->field_offset( slot ); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
500 |
JNIid* id = InstanceKlass::cast(k1)->jni_id_for(offset); |
1 | 501 |
assert(id != NULL, "corrupt Field object"); |
502 |
debug_only(id->set_is_static_field_id();) |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
503 |
// A jfieldID for a static field is a JNIid specifying the field holder and the offset within the Klass* |
1 | 504 |
ret = jfieldIDWorkaround::to_static_jfieldID(id); |
505 |
return ret; |
|
506 |
} |
|
507 |
||
508 |
// The slot is the index of the field description in the field-array |
|
509 |
// The jfieldID is the offset of the field within the object |
|
510 |
// It may also have hash bits for k, if VerifyJNIFields is turned on. |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
511 |
intptr_t offset = InstanceKlass::cast(k1)->field_offset( slot ); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
512 |
assert(InstanceKlass::cast(k1)->contains_field_offset(offset), "stay within object"); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
513 |
ret = jfieldIDWorkaround::to_instance_jfieldID(k1, offset); |
1 | 514 |
return ret; |
515 |
JNI_END |
|
516 |
||
22796 | 517 |
|
10739 | 518 |
DT_RETURN_MARK_DECL(ToReflectedMethod, jobject |
519 |
, HOTSPOT_JNI_TOREFLECTEDMETHOD_RETURN(_ret_ref)); |
|
1 | 520 |
|
521 |
JNI_ENTRY(jobject, jni_ToReflectedMethod(JNIEnv *env, jclass cls, jmethodID method_id, jboolean isStatic)) |
|
522 |
JNIWrapper("ToReflectedMethod"); |
|
22796 | 523 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
524 |
HOTSPOT_JNI_TOREFLECTEDMETHOD_ENTRY(env, cls, (uintptr_t) method_id, isStatic); |
22796 | 525 |
|
1 | 526 |
jobject ret = NULL; |
527 |
DT_RETURN_MARK(ToReflectedMethod, jobject, (const jobject&)ret); |
|
528 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
529 |
methodHandle m (THREAD, Method::resolve_jmethod_id(method_id)); |
1 | 530 |
assert(m->is_static() == (isStatic != 0), "jni_ToReflectedMethod access flags doesn't match"); |
531 |
oop reflection_method; |
|
532 |
if (m->is_initializer()) { |
|
533 |
reflection_method = Reflection::new_constructor(m, CHECK_NULL); |
|
534 |
} else { |
|
24456
8c7933fa5a1f
8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents:
24424
diff
changeset
|
535 |
reflection_method = Reflection::new_method(m, false, CHECK_NULL); |
1 | 536 |
} |
537 |
ret = JNIHandles::make_local(env, reflection_method); |
|
538 |
return ret; |
|
539 |
JNI_END |
|
540 |
||
10739 | 541 |
DT_RETURN_MARK_DECL(GetSuperclass, jclass |
542 |
, HOTSPOT_JNI_GETSUPERCLASS_RETURN(_ret_ref)); |
|
1 | 543 |
|
544 |
JNI_ENTRY(jclass, jni_GetSuperclass(JNIEnv *env, jclass sub)) |
|
545 |
JNIWrapper("GetSuperclass"); |
|
22796 | 546 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
547 |
HOTSPOT_JNI_GETSUPERCLASS_ENTRY(env, sub); |
22796 | 548 |
|
1 | 549 |
jclass obj = NULL; |
550 |
DT_RETURN_MARK(GetSuperclass, jclass, (const jclass&)obj); |
|
551 |
||
552 |
oop mirror = JNIHandles::resolve_non_null(sub); |
|
553 |
// primitive classes return NULL |
|
554 |
if (java_lang_Class::is_primitive(mirror)) return NULL; |
|
555 |
||
556 |
// Rules of Class.getSuperClass as implemented by KLass::java_super: |
|
557 |
// arrays return Object |
|
558 |
// interfaces return NULL |
|
559 |
// proper classes return Klass::super() |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
560 |
Klass* k = java_lang_Class::as_Klass(mirror); |
14488 | 561 |
if (k->is_interface()) return NULL; |
1 | 562 |
|
563 |
// return mirror for superclass |
|
14488 | 564 |
Klass* super = k->java_super(); |
1 | 565 |
// super2 is the value computed by the compiler's getSuperClass intrinsic: |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33576
diff
changeset
|
566 |
debug_only(Klass* super2 = ( k->is_array_klass() |
4571 | 567 |
? SystemDictionary::Object_klass() |
14488 | 568 |
: k->super() ) ); |
1 | 569 |
assert(super == super2, |
570 |
"java_super computation depends on interface, array, other super"); |
|
14488 | 571 |
obj = (super == NULL) ? NULL : (jclass) JNIHandles::make_local(super->java_mirror()); |
1 | 572 |
return obj; |
573 |
JNI_END |
|
574 |
||
575 |
JNI_QUICK_ENTRY(jboolean, jni_IsAssignableFrom(JNIEnv *env, jclass sub, jclass super)) |
|
576 |
JNIWrapper("IsSubclassOf"); |
|
22796 | 577 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
578 |
HOTSPOT_JNI_ISASSIGNABLEFROM_ENTRY(env, sub, super); |
22796 | 579 |
|
1 | 580 |
oop sub_mirror = JNIHandles::resolve_non_null(sub); |
581 |
oop super_mirror = JNIHandles::resolve_non_null(super); |
|
582 |
if (java_lang_Class::is_primitive(sub_mirror) || |
|
583 |
java_lang_Class::is_primitive(super_mirror)) { |
|
584 |
jboolean ret = (sub_mirror == super_mirror); |
|
22796 | 585 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
586 |
HOTSPOT_JNI_ISASSIGNABLEFROM_RETURN(ret); |
1 | 587 |
return ret; |
588 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
589 |
Klass* sub_klass = java_lang_Class::as_Klass(sub_mirror); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
590 |
Klass* super_klass = java_lang_Class::as_Klass(super_mirror); |
1 | 591 |
assert(sub_klass != NULL && super_klass != NULL, "invalid arguments to jni_IsAssignableFrom"); |
14488 | 592 |
jboolean ret = sub_klass->is_subtype_of(super_klass) ? |
1 | 593 |
JNI_TRUE : JNI_FALSE; |
22796 | 594 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
595 |
HOTSPOT_JNI_ISASSIGNABLEFROM_RETURN(ret); |
1 | 596 |
return ret; |
597 |
JNI_END |
|
598 |
||
22796 | 599 |
|
10739 | 600 |
DT_RETURN_MARK_DECL(Throw, jint |
601 |
, HOTSPOT_JNI_THROW_RETURN(_ret_ref)); |
|
1 | 602 |
|
603 |
JNI_ENTRY(jint, jni_Throw(JNIEnv *env, jthrowable obj)) |
|
604 |
JNIWrapper("Throw"); |
|
22796 | 605 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
606 |
HOTSPOT_JNI_THROW_ENTRY(env, obj); |
22796 | 607 |
|
1 | 608 |
jint ret = JNI_OK; |
609 |
DT_RETURN_MARK(Throw, jint, (const jint&)ret); |
|
610 |
||
611 |
THROW_OOP_(JNIHandles::resolve(obj), JNI_OK); |
|
612 |
ShouldNotReachHere(); |
|
27679
06b3a53d7781
8064786: Fix debug build after 8062808: Turn on the -Wreturn-type warning
goetz
parents:
27247
diff
changeset
|
613 |
return 0; // Mute compiler. |
1 | 614 |
JNI_END |
615 |
||
22796 | 616 |
|
10739 | 617 |
DT_RETURN_MARK_DECL(ThrowNew, jint |
618 |
, HOTSPOT_JNI_THROWNEW_RETURN(_ret_ref)); |
|
1 | 619 |
|
620 |
JNI_ENTRY(jint, jni_ThrowNew(JNIEnv *env, jclass clazz, const char *message)) |
|
621 |
JNIWrapper("ThrowNew"); |
|
22796 | 622 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
623 |
HOTSPOT_JNI_THROWNEW_ENTRY(env, clazz, (char *) message); |
22796 | 624 |
|
1 | 625 |
jint ret = JNI_OK; |
626 |
DT_RETURN_MARK(ThrowNew, jint, (const jint&)ret); |
|
627 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
628 |
InstanceKlass* k = InstanceKlass::cast(java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz))); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
629 |
Symbol* name = k->name(); |
1 | 630 |
Handle class_loader (THREAD, k->class_loader()); |
631 |
Handle protection_domain (THREAD, k->protection_domain()); |
|
632 |
THROW_MSG_LOADER_(name, (char *)message, class_loader, protection_domain, JNI_OK); |
|
633 |
ShouldNotReachHere(); |
|
27679
06b3a53d7781
8064786: Fix debug build after 8062808: Turn on the -Wreturn-type warning
goetz
parents:
27247
diff
changeset
|
634 |
return 0; // Mute compiler. |
1 | 635 |
JNI_END |
636 |
||
637 |
||
638 |
// JNI functions only transform a pending async exception to a synchronous |
|
639 |
// exception in ExceptionOccurred and ExceptionCheck calls, since |
|
640 |
// delivering an async exception in other places won't change the native |
|
641 |
// code's control flow and would be harmful when native code further calls |
|
642 |
// JNI functions with a pending exception. Async exception is also checked |
|
643 |
// during the call, so ExceptionOccurred/ExceptionCheck won't return |
|
644 |
// false but deliver the async exception at the very end during |
|
645 |
// state transition. |
|
646 |
||
647 |
static void jni_check_async_exceptions(JavaThread *thread) { |
|
648 |
assert(thread == Thread::current(), "must be itself"); |
|
649 |
thread->check_and_handle_async_exceptions(); |
|
650 |
} |
|
651 |
||
652 |
JNI_ENTRY_NO_PRESERVE(jthrowable, jni_ExceptionOccurred(JNIEnv *env)) |
|
653 |
JNIWrapper("ExceptionOccurred"); |
|
22796 | 654 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
655 |
HOTSPOT_JNI_EXCEPTIONOCCURRED_ENTRY(env); |
22796 | 656 |
|
1 | 657 |
jni_check_async_exceptions(thread); |
658 |
oop exception = thread->pending_exception(); |
|
659 |
jthrowable ret = (jthrowable) JNIHandles::make_local(env, exception); |
|
22796 | 660 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
661 |
HOTSPOT_JNI_EXCEPTIONOCCURRED_RETURN(ret); |
1 | 662 |
return ret; |
663 |
JNI_END |
|
664 |
||
665 |
||
666 |
JNI_ENTRY_NO_PRESERVE(void, jni_ExceptionDescribe(JNIEnv *env)) |
|
667 |
JNIWrapper("ExceptionDescribe"); |
|
22796 | 668 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
669 |
HOTSPOT_JNI_EXCEPTIONDESCRIBE_ENTRY(env); |
22796 | 670 |
|
1 | 671 |
if (thread->has_pending_exception()) { |
672 |
Handle ex(thread, thread->pending_exception()); |
|
673 |
thread->clear_pending_exception(); |
|
4571 | 674 |
if (ex->is_a(SystemDictionary::ThreadDeath_klass())) { |
1 | 675 |
// Don't print anything if we are being killed. |
676 |
} else { |
|
677 |
jio_fprintf(defaultStream::error_stream(), "Exception "); |
|
678 |
if (thread != NULL && thread->threadObj() != NULL) { |
|
679 |
ResourceMark rm(THREAD); |
|
680 |
jio_fprintf(defaultStream::error_stream(), |
|
681 |
"in thread \"%s\" ", thread->get_thread_name()); |
|
682 |
} |
|
4571 | 683 |
if (ex->is_a(SystemDictionary::Throwable_klass())) { |
1 | 684 |
JavaValue result(T_VOID); |
685 |
JavaCalls::call_virtual(&result, |
|
686 |
ex, |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
687 |
SystemDictionary::Throwable_klass(), |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
688 |
vmSymbols::printStackTrace_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
689 |
vmSymbols::void_method_signature(), |
1 | 690 |
THREAD); |
691 |
// If an exception is thrown in the call it gets thrown away. Not much |
|
692 |
// we can do with it. The native code that calls this, does not check |
|
693 |
// for the exception - hence, it might still be in the thread when DestroyVM gets |
|
694 |
// called, potentially causing a few asserts to trigger - since no pending exception |
|
695 |
// is expected. |
|
696 |
CLEAR_PENDING_EXCEPTION; |
|
697 |
} else { |
|
698 |
ResourceMark rm(THREAD); |
|
699 |
jio_fprintf(defaultStream::error_stream(), |
|
700 |
". Uncaught exception of type %s.", |
|
14488 | 701 |
ex->klass()->external_name()); |
1 | 702 |
} |
703 |
} |
|
704 |
} |
|
22796 | 705 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
706 |
HOTSPOT_JNI_EXCEPTIONDESCRIBE_RETURN(); |
1 | 707 |
JNI_END |
708 |
||
709 |
||
710 |
JNI_QUICK_ENTRY(void, jni_ExceptionClear(JNIEnv *env)) |
|
711 |
JNIWrapper("ExceptionClear"); |
|
22796 | 712 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
713 |
HOTSPOT_JNI_EXCEPTIONCLEAR_ENTRY(env); |
1 | 714 |
|
715 |
// The jni code might be using this API to clear java thrown exception. |
|
716 |
// So just mark jvmti thread exception state as exception caught. |
|
717 |
JvmtiThreadState *state = JavaThread::current()->jvmti_thread_state(); |
|
718 |
if (state != NULL && state->is_exception_detected()) { |
|
719 |
state->set_exception_caught(); |
|
720 |
} |
|
721 |
thread->clear_pending_exception(); |
|
22796 | 722 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
723 |
HOTSPOT_JNI_EXCEPTIONCLEAR_RETURN(); |
1 | 724 |
JNI_END |
725 |
||
726 |
||
727 |
JNI_ENTRY(void, jni_FatalError(JNIEnv *env, const char *msg)) |
|
728 |
JNIWrapper("FatalError"); |
|
22796 | 729 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
730 |
HOTSPOT_JNI_FATALERROR_ENTRY(env, (char *) msg); |
22796 | 731 |
|
1 | 732 |
tty->print_cr("FATAL ERROR in native method: %s", msg); |
733 |
thread->print_stack(); |
|
773
01daf7c809b1
6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents:
360
diff
changeset
|
734 |
os::abort(); // Dump core and abort |
1 | 735 |
JNI_END |
736 |
||
737 |
||
738 |
JNI_ENTRY(jint, jni_PushLocalFrame(JNIEnv *env, jint capacity)) |
|
739 |
JNIWrapper("PushLocalFrame"); |
|
22796 | 740 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
741 |
HOTSPOT_JNI_PUSHLOCALFRAME_ENTRY(env, capacity); |
22796 | 742 |
|
1 | 743 |
//%note jni_11 |
25630
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25477
diff
changeset
|
744 |
if (capacity < 0 || |
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25477
diff
changeset
|
745 |
((MaxJNILocalCapacity > 0) && (capacity > MaxJNILocalCapacity))) { |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
746 |
HOTSPOT_JNI_PUSHLOCALFRAME_RETURN((uint32_t)JNI_ERR); |
1 | 747 |
return JNI_ERR; |
748 |
} |
|
749 |
JNIHandleBlock* old_handles = thread->active_handles(); |
|
750 |
JNIHandleBlock* new_handles = JNIHandleBlock::allocate_block(thread); |
|
751 |
assert(new_handles != NULL, "should not be NULL"); |
|
752 |
new_handles->set_pop_frame_link(old_handles); |
|
753 |
thread->set_active_handles(new_handles); |
|
754 |
jint ret = JNI_OK; |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
755 |
HOTSPOT_JNI_PUSHLOCALFRAME_RETURN(ret); |
1 | 756 |
return ret; |
757 |
JNI_END |
|
758 |
||
759 |
||
760 |
JNI_ENTRY(jobject, jni_PopLocalFrame(JNIEnv *env, jobject result)) |
|
761 |
JNIWrapper("PopLocalFrame"); |
|
22796 | 762 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
763 |
HOTSPOT_JNI_POPLOCALFRAME_ENTRY(env, result); |
22796 | 764 |
|
1 | 765 |
//%note jni_11 |
766 |
Handle result_handle(thread, JNIHandles::resolve(result)); |
|
767 |
JNIHandleBlock* old_handles = thread->active_handles(); |
|
768 |
JNIHandleBlock* new_handles = old_handles->pop_frame_link(); |
|
769 |
if (new_handles != NULL) { |
|
770 |
// As a sanity check we only release the handle blocks if the pop_frame_link is not NULL. |
|
771 |
// This way code will still work if PopLocalFrame is called without a corresponding |
|
772 |
// PushLocalFrame call. Note that we set the pop_frame_link to NULL explicitly, otherwise |
|
773 |
// the release_block call will release the blocks. |
|
774 |
thread->set_active_handles(new_handles); |
|
775 |
old_handles->set_pop_frame_link(NULL); // clear link we won't release new_handles below |
|
776 |
JNIHandleBlock::release_block(old_handles, thread); // may block |
|
777 |
result = JNIHandles::make_local(thread, result_handle()); |
|
778 |
} |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
779 |
HOTSPOT_JNI_POPLOCALFRAME_RETURN(result); |
1 | 780 |
return result; |
781 |
JNI_END |
|
782 |
||
783 |
||
784 |
JNI_ENTRY(jobject, jni_NewGlobalRef(JNIEnv *env, jobject ref)) |
|
785 |
JNIWrapper("NewGlobalRef"); |
|
22796 | 786 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
787 |
HOTSPOT_JNI_NEWGLOBALREF_ENTRY(env, ref); |
22796 | 788 |
|
1 | 789 |
Handle ref_handle(thread, JNIHandles::resolve(ref)); |
790 |
jobject ret = JNIHandles::make_global(ref_handle); |
|
22796 | 791 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
792 |
HOTSPOT_JNI_NEWGLOBALREF_RETURN(ret); |
1 | 793 |
return ret; |
794 |
JNI_END |
|
795 |
||
796 |
// Must be JNI_ENTRY (with HandleMark) |
|
797 |
JNI_ENTRY_NO_PRESERVE(void, jni_DeleteGlobalRef(JNIEnv *env, jobject ref)) |
|
798 |
JNIWrapper("DeleteGlobalRef"); |
|
22796 | 799 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
800 |
HOTSPOT_JNI_DELETEGLOBALREF_ENTRY(env, ref); |
22796 | 801 |
|
1 | 802 |
JNIHandles::destroy_global(ref); |
22796 | 803 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
804 |
HOTSPOT_JNI_DELETEGLOBALREF_RETURN(); |
1 | 805 |
JNI_END |
806 |
||
807 |
JNI_QUICK_ENTRY(void, jni_DeleteLocalRef(JNIEnv *env, jobject obj)) |
|
808 |
JNIWrapper("DeleteLocalRef"); |
|
22796 | 809 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
810 |
HOTSPOT_JNI_DELETELOCALREF_ENTRY(env, obj); |
22796 | 811 |
|
1 | 812 |
JNIHandles::destroy_local(obj); |
22796 | 813 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
814 |
HOTSPOT_JNI_DELETELOCALREF_RETURN(); |
1 | 815 |
JNI_END |
816 |
||
817 |
JNI_QUICK_ENTRY(jboolean, jni_IsSameObject(JNIEnv *env, jobject r1, jobject r2)) |
|
818 |
JNIWrapper("IsSameObject"); |
|
22796 | 819 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
820 |
HOTSPOT_JNI_ISSAMEOBJECT_ENTRY(env, r1, r2); |
22796 | 821 |
|
1 | 822 |
oop a = JNIHandles::resolve(r1); |
823 |
oop b = JNIHandles::resolve(r2); |
|
824 |
jboolean ret = (a == b) ? JNI_TRUE : JNI_FALSE; |
|
22796 | 825 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
826 |
HOTSPOT_JNI_ISSAMEOBJECT_RETURN(ret); |
1 | 827 |
return ret; |
828 |
JNI_END |
|
829 |
||
830 |
||
831 |
JNI_ENTRY(jobject, jni_NewLocalRef(JNIEnv *env, jobject ref)) |
|
832 |
JNIWrapper("NewLocalRef"); |
|
22796 | 833 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
834 |
HOTSPOT_JNI_NEWLOCALREF_ENTRY(env, ref); |
22796 | 835 |
|
1 | 836 |
jobject ret = JNIHandles::make_local(env, JNIHandles::resolve(ref)); |
22796 | 837 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
838 |
HOTSPOT_JNI_NEWLOCALREF_RETURN(ret); |
1 | 839 |
return ret; |
840 |
JNI_END |
|
841 |
||
842 |
JNI_LEAF(jint, jni_EnsureLocalCapacity(JNIEnv *env, jint capacity)) |
|
843 |
JNIWrapper("EnsureLocalCapacity"); |
|
22796 | 844 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
845 |
HOTSPOT_JNI_ENSURELOCALCAPACITY_ENTRY(env, capacity); |
22796 | 846 |
|
1 | 847 |
jint ret; |
25630
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25477
diff
changeset
|
848 |
if (capacity >= 0 && |
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25477
diff
changeset
|
849 |
((MaxJNILocalCapacity <= 0) || (capacity <= MaxJNILocalCapacity))) { |
1 | 850 |
ret = JNI_OK; |
851 |
} else { |
|
852 |
ret = JNI_ERR; |
|
853 |
} |
|
22796 | 854 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
855 |
HOTSPOT_JNI_ENSURELOCALCAPACITY_RETURN(ret); |
1 | 856 |
return ret; |
857 |
JNI_END |
|
858 |
||
859 |
// Return the Handle Type |
|
860 |
JNI_LEAF(jobjectRefType, jni_GetObjectRefType(JNIEnv *env, jobject obj)) |
|
861 |
JNIWrapper("GetObjectRefType"); |
|
22796 | 862 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
863 |
HOTSPOT_JNI_GETOBJECTREFTYPE_ENTRY(env, obj); |
22796 | 864 |
|
1 | 865 |
jobjectRefType ret; |
866 |
if (JNIHandles::is_local_handle(thread, obj) || |
|
867 |
JNIHandles::is_frame_handle(thread, obj)) |
|
868 |
ret = JNILocalRefType; |
|
869 |
else if (JNIHandles::is_global_handle(obj)) |
|
870 |
ret = JNIGlobalRefType; |
|
871 |
else if (JNIHandles::is_weak_global_handle(obj)) |
|
872 |
ret = JNIWeakGlobalRefType; |
|
873 |
else |
|
874 |
ret = JNIInvalidRefType; |
|
22796 | 875 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
876 |
HOTSPOT_JNI_GETOBJECTREFTYPE_RETURN((void *) ret); |
1 | 877 |
return ret; |
878 |
JNI_END |
|
879 |
||
880 |
||
881 |
class JNI_ArgumentPusher : public SignatureIterator { |
|
882 |
protected: |
|
883 |
JavaCallArguments* _arguments; |
|
884 |
||
885 |
virtual void get_bool () = 0; |
|
886 |
virtual void get_char () = 0; |
|
887 |
virtual void get_short () = 0; |
|
888 |
virtual void get_byte () = 0; |
|
889 |
virtual void get_int () = 0; |
|
890 |
virtual void get_long () = 0; |
|
891 |
virtual void get_float () = 0; |
|
892 |
virtual void get_double () = 0; |
|
893 |
virtual void get_object () = 0; |
|
894 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
895 |
JNI_ArgumentPusher(Symbol* signature) : SignatureIterator(signature) { |
1 | 896 |
this->_return_type = T_ILLEGAL; |
897 |
_arguments = NULL; |
|
898 |
} |
|
899 |
||
900 |
public: |
|
901 |
virtual void iterate( uint64_t fingerprint ) = 0; |
|
902 |
||
903 |
void set_java_argument_object(JavaCallArguments *arguments) { _arguments = arguments; } |
|
904 |
||
905 |
inline void do_bool() { if (!is_return_type()) get_bool(); } |
|
906 |
inline void do_char() { if (!is_return_type()) get_char(); } |
|
907 |
inline void do_short() { if (!is_return_type()) get_short(); } |
|
908 |
inline void do_byte() { if (!is_return_type()) get_byte(); } |
|
909 |
inline void do_int() { if (!is_return_type()) get_int(); } |
|
910 |
inline void do_long() { if (!is_return_type()) get_long(); } |
|
911 |
inline void do_float() { if (!is_return_type()) get_float(); } |
|
912 |
inline void do_double() { if (!is_return_type()) get_double(); } |
|
913 |
inline void do_object(int begin, int end) { if (!is_return_type()) get_object(); } |
|
914 |
inline void do_array(int begin, int end) { if (!is_return_type()) get_object(); } // do_array uses get_object -- there is no get_array |
|
915 |
inline void do_void() { } |
|
916 |
||
917 |
JavaCallArguments* arguments() { return _arguments; } |
|
918 |
void push_receiver(Handle h) { _arguments->push_oop(h); } |
|
919 |
}; |
|
920 |
||
921 |
||
922 |
class JNI_ArgumentPusherVaArg : public JNI_ArgumentPusher { |
|
923 |
protected: |
|
924 |
va_list _ap; |
|
925 |
||
37483
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
926 |
inline void get_bool() { |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
927 |
// Normalize boolean arguments from native code by converting 1-255 to JNI_TRUE and |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
928 |
// 0 to JNI_FALSE. Boolean return values from native are normalized the same in |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
929 |
// TemplateInterpreterGenerator::generate_result_handler_for and |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
930 |
// SharedRuntime::generate_native_wrapper. |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
931 |
jboolean b = va_arg(_ap, jint); |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
932 |
_arguments->push_int((jint)(b == 0 ? JNI_FALSE : JNI_TRUE)); |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
933 |
} |
1 | 934 |
inline void get_char() { _arguments->push_int(va_arg(_ap, jint)); } // char is coerced to int when using va_arg |
935 |
inline void get_short() { _arguments->push_int(va_arg(_ap, jint)); } // short is coerced to int when using va_arg |
|
936 |
inline void get_byte() { _arguments->push_int(va_arg(_ap, jint)); } // byte is coerced to int when using va_arg |
|
937 |
inline void get_int() { _arguments->push_int(va_arg(_ap, jint)); } |
|
938 |
||
939 |
// each of these paths is exercized by the various jck Call[Static,Nonvirtual,][Void,Int,..]Method[A,V,] tests |
|
940 |
||
941 |
inline void get_long() { _arguments->push_long(va_arg(_ap, jlong)); } |
|
942 |
inline void get_float() { _arguments->push_float((jfloat)va_arg(_ap, jdouble)); } // float is coerced to double w/ va_arg |
|
943 |
inline void get_double() { _arguments->push_double(va_arg(_ap, jdouble)); } |
|
44406
a46a6c4d1dd9
8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents:
44093
diff
changeset
|
944 |
inline void get_object() { _arguments->push_jobject(va_arg(_ap, jobject)); } |
1 | 945 |
|
946 |
inline void set_ap(va_list rap) { |
|
947 |
va_copy(_ap, rap); |
|
948 |
} |
|
949 |
||
950 |
public: |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
951 |
JNI_ArgumentPusherVaArg(Symbol* signature, va_list rap) |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
952 |
: JNI_ArgumentPusher(signature) { |
1 | 953 |
set_ap(rap); |
954 |
} |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
955 |
JNI_ArgumentPusherVaArg(jmethodID method_id, va_list rap) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
956 |
: JNI_ArgumentPusher(Method::resolve_jmethod_id(method_id)->signature()) { |
1 | 957 |
set_ap(rap); |
958 |
} |
|
959 |
||
960 |
// Optimized path if we have the bitvector form of signature |
|
961 |
void iterate( uint64_t fingerprint ) { |
|
27471 | 962 |
if (fingerprint == (uint64_t)CONST64(-1)) { |
963 |
SignatureIterator::iterate(); // Must be too many arguments |
|
964 |
} else { |
|
1 | 965 |
_return_type = (BasicType)((fingerprint >> static_feature_size) & |
966 |
result_feature_mask); |
|
967 |
||
968 |
assert(fingerprint, "Fingerprint should not be 0"); |
|
969 |
fingerprint = fingerprint >> (static_feature_size + result_feature_size); |
|
970 |
while ( 1 ) { |
|
971 |
switch ( fingerprint & parameter_feature_mask ) { |
|
972 |
case bool_parm: |
|
37483
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
973 |
get_bool(); |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
974 |
break; |
1 | 975 |
case char_parm: |
37483
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
976 |
get_char(); |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
977 |
break; |
1 | 978 |
case short_parm: |
37483
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
979 |
get_short(); |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
980 |
break; |
1 | 981 |
case byte_parm: |
37483
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
982 |
get_byte(); |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
983 |
break; |
1 | 984 |
case int_parm: |
985 |
get_int(); |
|
986 |
break; |
|
987 |
case obj_parm: |
|
988 |
get_object(); |
|
989 |
break; |
|
990 |
case long_parm: |
|
991 |
get_long(); |
|
992 |
break; |
|
993 |
case float_parm: |
|
994 |
get_float(); |
|
995 |
break; |
|
996 |
case double_parm: |
|
997 |
get_double(); |
|
998 |
break; |
|
999 |
case done_parm: |
|
1000 |
return; |
|
1001 |
break; |
|
1002 |
default: |
|
1003 |
ShouldNotReachHere(); |
|
1004 |
break; |
|
1005 |
} |
|
1006 |
fingerprint >>= parameter_feature_size; |
|
1007 |
} |
|
1008 |
} |
|
1009 |
} |
|
1010 |
}; |
|
1011 |
||
1012 |
||
1013 |
class JNI_ArgumentPusherArray : public JNI_ArgumentPusher { |
|
1014 |
protected: |
|
1015 |
const jvalue *_ap; |
|
1016 |
||
37483
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1017 |
inline void get_bool() { |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1018 |
// Normalize boolean arguments from native code by converting 1-255 to JNI_TRUE and |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1019 |
// 0 to JNI_FALSE. Boolean return values from native are normalized the same in |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1020 |
// TemplateInterpreterGenerator::generate_result_handler_for and |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1021 |
// SharedRuntime::generate_native_wrapper. |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1022 |
jboolean b = (_ap++)->z; |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1023 |
_arguments->push_int((jint)(b == 0 ? JNI_FALSE : JNI_TRUE)); |
8447cff6323d
8149170: Better byte behavior should normalize JNI arguments
coleenp
parents:
37480
diff
changeset
|
1024 |
} |
1 | 1025 |
inline void get_char() { _arguments->push_int((jint)(_ap++)->c); } |
1026 |
inline void get_short() { _arguments->push_int((jint)(_ap++)->s); } |
|
1027 |
inline void get_byte() { _arguments->push_int((jint)(_ap++)->b); } |
|
1028 |
inline void get_int() { _arguments->push_int((jint)(_ap++)->i); } |
|
1029 |
||
1030 |
inline void get_long() { _arguments->push_long((_ap++)->j); } |
|
1031 |
inline void get_float() { _arguments->push_float((_ap++)->f); } |
|
1032 |
inline void get_double() { _arguments->push_double((_ap++)->d);} |
|
44406
a46a6c4d1dd9
8176100: [REDO][REDO] G1 Needs pre barrier on dereference of weak JNI handles
mgerdin
parents:
44093
diff
changeset
|
1033 |
inline void get_object() { _arguments->push_jobject((_ap++)->l); } |
1 | 1034 |
|
1035 |
inline void set_ap(const jvalue *rap) { _ap = rap; } |
|
1036 |
||
1037 |
public: |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1038 |
JNI_ArgumentPusherArray(Symbol* signature, const jvalue *rap) |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1039 |
: JNI_ArgumentPusher(signature) { |
1 | 1040 |
set_ap(rap); |
1041 |
} |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1042 |
JNI_ArgumentPusherArray(jmethodID method_id, const jvalue *rap) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1043 |
: JNI_ArgumentPusher(Method::resolve_jmethod_id(method_id)->signature()) { |
1 | 1044 |
set_ap(rap); |
1045 |
} |
|
1046 |
||
1047 |
// Optimized path if we have the bitvector form of signature |
|
1048 |
void iterate( uint64_t fingerprint ) { |
|
27471 | 1049 |
if (fingerprint == (uint64_t)CONST64(-1)) { |
1050 |
SignatureIterator::iterate(); // Must be too many arguments |
|
1051 |
} else { |
|
1 | 1052 |
_return_type = (BasicType)((fingerprint >> static_feature_size) & |
1053 |
result_feature_mask); |
|
1054 |
assert(fingerprint, "Fingerprint should not be 0"); |
|
1055 |
fingerprint = fingerprint >> (static_feature_size + result_feature_size); |
|
1056 |
while ( 1 ) { |
|
1057 |
switch ( fingerprint & parameter_feature_mask ) { |
|
1058 |
case bool_parm: |
|
1059 |
get_bool(); |
|
1060 |
break; |
|
1061 |
case char_parm: |
|
1062 |
get_char(); |
|
1063 |
break; |
|
1064 |
case short_parm: |
|
1065 |
get_short(); |
|
1066 |
break; |
|
1067 |
case byte_parm: |
|
1068 |
get_byte(); |
|
1069 |
break; |
|
1070 |
case int_parm: |
|
1071 |
get_int(); |
|
1072 |
break; |
|
1073 |
case obj_parm: |
|
1074 |
get_object(); |
|
1075 |
break; |
|
1076 |
case long_parm: |
|
1077 |
get_long(); |
|
1078 |
break; |
|
1079 |
case float_parm: |
|
1080 |
get_float(); |
|
1081 |
break; |
|
1082 |
case double_parm: |
|
1083 |
get_double(); |
|
1084 |
break; |
|
1085 |
case done_parm: |
|
1086 |
return; |
|
1087 |
break; |
|
1088 |
default: |
|
1089 |
ShouldNotReachHere(); |
|
1090 |
break; |
|
1091 |
} |
|
1092 |
fingerprint >>= parameter_feature_size; |
|
1093 |
} |
|
1094 |
} |
|
1095 |
} |
|
1096 |
}; |
|
1097 |
||
1098 |
||
1099 |
enum JNICallType { |
|
1100 |
JNI_STATIC, |
|
1101 |
JNI_VIRTUAL, |
|
1102 |
JNI_NONVIRTUAL |
|
1103 |
}; |
|
1104 |
||
1105 |
||
1106 |
||
1107 |
static void jni_invoke_static(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1108 |
methodHandle method(THREAD, Method::resolve_jmethod_id(method_id)); |
1 | 1109 |
|
1110 |
// Create object to hold arguments for the JavaCall, and associate it with |
|
1111 |
// the jni parser |
|
1112 |
ResourceMark rm(THREAD); |
|
1113 |
int number_of_parameters = method->size_of_parameters(); |
|
1114 |
JavaCallArguments java_args(number_of_parameters); |
|
1115 |
args->set_java_argument_object(&java_args); |
|
1116 |
||
1117 |
assert(method->is_static(), "method should be static"); |
|
1118 |
||
1119 |
// Fill out JavaCallArguments object |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1120 |
args->iterate( Fingerprinter(method).fingerprint() ); |
1 | 1121 |
// Initialize result type |
1122 |
result->set_type(args->get_ret_type()); |
|
1123 |
||
1124 |
// Invoke the method. Result is returned as oop. |
|
1125 |
JavaCalls::call(result, method, &java_args, CHECK); |
|
1126 |
||
1127 |
// Convert result |
|
1128 |
if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) { |
|
1129 |
result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject())); |
|
1130 |
} |
|
1131 |
} |
|
1132 |
||
1133 |
||
1134 |
static void jni_invoke_nonstatic(JNIEnv *env, JavaValue* result, jobject receiver, JNICallType call_type, jmethodID method_id, JNI_ArgumentPusher *args, TRAPS) { |
|
1135 |
oop recv = JNIHandles::resolve(receiver); |
|
1136 |
if (recv == NULL) { |
|
1137 |
THROW(vmSymbols::java_lang_NullPointerException()); |
|
1138 |
} |
|
1139 |
Handle h_recv(THREAD, recv); |
|
1140 |
||
1141 |
int number_of_parameters; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1142 |
Method* selected_method; |
1 | 1143 |
{ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1144 |
Method* m = Method::resolve_jmethod_id(method_id); |
1 | 1145 |
number_of_parameters = m->size_of_parameters(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1146 |
Klass* holder = m->method_holder(); |
31027
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1147 |
if (call_type != JNI_VIRTUAL) { |
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1148 |
selected_method = m; |
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1149 |
} else if (!m->has_itable_index()) { |
1 | 1150 |
// non-interface call -- for that little speed boost, don't handlize |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35219
diff
changeset
|
1151 |
debug_only(NoSafepointVerifier nosafepoint;) |
31027
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1152 |
// jni_GetMethodID makes sure class is linked and initialized |
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1153 |
// so m should have a valid vtable index. |
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1154 |
assert(m->valid_vtable_index(), "no valid vtable index"); |
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1155 |
int vtbl_index = m->vtable_index(); |
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1156 |
if (vtbl_index != Method::nonvirtual_vtable_index) { |
35900 | 1157 |
selected_method = h_recv->klass()->method_at_vtable(vtbl_index); |
1 | 1158 |
} else { |
31027
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1159 |
// final method |
1 | 1160 |
selected_method = m; |
1161 |
} |
|
1162 |
} else { |
|
1163 |
// interface call |
|
31027
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1164 |
int itbl_index = m->itable_index(); |
6df6a1332f23
8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents:
30764
diff
changeset
|
1165 |
Klass* k = h_recv->klass(); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1166 |
selected_method = InstanceKlass::cast(k)->method_at_itable(holder, itbl_index, CHECK); |
1 | 1167 |
} |
1168 |
} |
|
1169 |
||
1170 |
methodHandle method(THREAD, selected_method); |
|
1171 |
||
1172 |
// Create object to hold arguments for the JavaCall, and associate it with |
|
1173 |
// the jni parser |
|
1174 |
ResourceMark rm(THREAD); |
|
1175 |
JavaCallArguments java_args(number_of_parameters); |
|
1176 |
args->set_java_argument_object(&java_args); |
|
1177 |
||
1178 |
// handle arguments |
|
41669
2091069b6851
8081800: AbstractMethodError when evaluating a private method in an interface via debugger
dholmes
parents:
40655
diff
changeset
|
1179 |
assert(!method->is_static(), "method %s should not be static", method->name_and_sig_as_C_string()); |
1 | 1180 |
args->push_receiver(h_recv); // Push jobject handle |
1181 |
||
1182 |
// Fill out JavaCallArguments object |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1183 |
args->iterate( Fingerprinter(method).fingerprint() ); |
1 | 1184 |
// Initialize result type |
1185 |
result->set_type(args->get_ret_type()); |
|
1186 |
||
1187 |
// Invoke the method. Result is returned as oop. |
|
1188 |
JavaCalls::call(result, method, &java_args, CHECK); |
|
1189 |
||
1190 |
// Convert result |
|
1191 |
if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) { |
|
1192 |
result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject())); |
|
1193 |
} |
|
1194 |
} |
|
1195 |
||
1196 |
||
1197 |
static instanceOop alloc_object(jclass clazz, TRAPS) { |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1198 |
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)); |
22532
1fc87ea15795
8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents:
22520
diff
changeset
|
1199 |
if (k == NULL) { |
1fc87ea15795
8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents:
22520
diff
changeset
|
1200 |
ResourceMark rm(THREAD); |
1fc87ea15795
8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents:
22520
diff
changeset
|
1201 |
THROW_(vmSymbols::java_lang_InstantiationException(), NULL); |
1fc87ea15795
8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents:
22520
diff
changeset
|
1202 |
} |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1203 |
k->check_valid_for_instantiation(false, CHECK_NULL); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1204 |
k->initialize(CHECK_NULL); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1205 |
instanceOop ih = InstanceKlass::cast(k)->allocate_instance(THREAD); |
1 | 1206 |
return ih; |
1207 |
} |
|
1208 |
||
10739 | 1209 |
DT_RETURN_MARK_DECL(AllocObject, jobject |
1210 |
, HOTSPOT_JNI_ALLOCOBJECT_RETURN(_ret_ref)); |
|
1 | 1211 |
|
1212 |
JNI_ENTRY(jobject, jni_AllocObject(JNIEnv *env, jclass clazz)) |
|
1213 |
JNIWrapper("AllocObject"); |
|
1214 |
||
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1215 |
HOTSPOT_JNI_ALLOCOBJECT_ENTRY(env, clazz); |
22796 | 1216 |
|
1 | 1217 |
jobject ret = NULL; |
1218 |
DT_RETURN_MARK(AllocObject, jobject, (const jobject&)ret); |
|
1219 |
||
1220 |
instanceOop i = alloc_object(clazz, CHECK_NULL); |
|
1221 |
ret = JNIHandles::make_local(env, i); |
|
1222 |
return ret; |
|
1223 |
JNI_END |
|
1224 |
||
10739 | 1225 |
DT_RETURN_MARK_DECL(NewObjectA, jobject |
1226 |
, HOTSPOT_JNI_NEWOBJECTA_RETURN(_ret_ref)); |
|
1 | 1227 |
|
1228 |
JNI_ENTRY(jobject, jni_NewObjectA(JNIEnv *env, jclass clazz, jmethodID methodID, const jvalue *args)) |
|
1229 |
JNIWrapper("NewObjectA"); |
|
22796 | 1230 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1231 |
HOTSPOT_JNI_NEWOBJECTA_ENTRY(env, clazz, (uintptr_t) methodID); |
22796 | 1232 |
|
1 | 1233 |
jobject obj = NULL; |
1234 |
DT_RETURN_MARK(NewObjectA, jobject, (const jobject)obj); |
|
1235 |
||
1236 |
instanceOop i = alloc_object(clazz, CHECK_NULL); |
|
1237 |
obj = JNIHandles::make_local(env, i); |
|
1238 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1239 |
JNI_ArgumentPusherArray ap(methodID, args); |
1 | 1240 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL); |
1241 |
return obj; |
|
1242 |
JNI_END |
|
1243 |
||
22796 | 1244 |
|
10739 | 1245 |
DT_RETURN_MARK_DECL(NewObjectV, jobject |
1246 |
, HOTSPOT_JNI_NEWOBJECTV_RETURN(_ret_ref)); |
|
1 | 1247 |
|
1248 |
JNI_ENTRY(jobject, jni_NewObjectV(JNIEnv *env, jclass clazz, jmethodID methodID, va_list args)) |
|
1249 |
JNIWrapper("NewObjectV"); |
|
22796 | 1250 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1251 |
HOTSPOT_JNI_NEWOBJECTV_ENTRY(env, clazz, (uintptr_t) methodID); |
22796 | 1252 |
|
1 | 1253 |
jobject obj = NULL; |
1254 |
DT_RETURN_MARK(NewObjectV, jobject, (const jobject&)obj); |
|
1255 |
||
1256 |
instanceOop i = alloc_object(clazz, CHECK_NULL); |
|
1257 |
obj = JNIHandles::make_local(env, i); |
|
1258 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1259 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 1260 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL); |
1261 |
return obj; |
|
1262 |
JNI_END |
|
1263 |
||
22796 | 1264 |
|
10739 | 1265 |
DT_RETURN_MARK_DECL(NewObject, jobject |
1266 |
, HOTSPOT_JNI_NEWOBJECT_RETURN(_ret_ref)); |
|
1 | 1267 |
|
1268 |
JNI_ENTRY(jobject, jni_NewObject(JNIEnv *env, jclass clazz, jmethodID methodID, ...)) |
|
1269 |
JNIWrapper("NewObject"); |
|
22796 | 1270 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1271 |
HOTSPOT_JNI_NEWOBJECT_ENTRY(env, clazz, (uintptr_t) methodID); |
22796 | 1272 |
|
1 | 1273 |
jobject obj = NULL; |
1274 |
DT_RETURN_MARK(NewObject, jobject, (const jobject&)obj); |
|
1275 |
||
1276 |
instanceOop i = alloc_object(clazz, CHECK_NULL); |
|
1277 |
obj = JNIHandles::make_local(env, i); |
|
1278 |
va_list args; |
|
1279 |
va_start(args, methodID); |
|
1280 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1281 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 1282 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL); |
1283 |
va_end(args); |
|
1284 |
return obj; |
|
1285 |
JNI_END |
|
1286 |
||
1287 |
||
1288 |
JNI_ENTRY(jclass, jni_GetObjectClass(JNIEnv *env, jobject obj)) |
|
1289 |
JNIWrapper("GetObjectClass"); |
|
22796 | 1290 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1291 |
HOTSPOT_JNI_GETOBJECTCLASS_ENTRY(env, obj); |
22796 | 1292 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1293 |
Klass* k = JNIHandles::resolve_non_null(obj)->klass(); |
1 | 1294 |
jclass ret = |
14488 | 1295 |
(jclass) JNIHandles::make_local(env, k->java_mirror()); |
22796 | 1296 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1297 |
HOTSPOT_JNI_GETOBJECTCLASS_RETURN(ret); |
1 | 1298 |
return ret; |
1299 |
JNI_END |
|
1300 |
||
1301 |
JNI_QUICK_ENTRY(jboolean, jni_IsInstanceOf(JNIEnv *env, jobject obj, jclass clazz)) |
|
1302 |
JNIWrapper("IsInstanceOf"); |
|
22796 | 1303 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1304 |
HOTSPOT_JNI_ISINSTANCEOF_ENTRY(env, obj, clazz); |
22796 | 1305 |
|
1 | 1306 |
jboolean ret = JNI_TRUE; |
1307 |
if (obj != NULL) { |
|
1308 |
ret = JNI_FALSE; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1309 |
Klass* k = java_lang_Class::as_Klass( |
1 | 1310 |
JNIHandles::resolve_non_null(clazz)); |
1311 |
if (k != NULL) { |
|
1312 |
ret = JNIHandles::resolve_non_null(obj)->is_a(k) ? JNI_TRUE : JNI_FALSE; |
|
1313 |
} |
|
1314 |
} |
|
22796 | 1315 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1316 |
HOTSPOT_JNI_ISINSTANCEOF_RETURN(ret); |
1 | 1317 |
return ret; |
1318 |
JNI_END |
|
1319 |
||
1320 |
||
1321 |
static jmethodID get_method_id(JNIEnv *env, jclass clazz, const char *name_str, |
|
1322 |
const char *sig, bool is_static, TRAPS) { |
|
1323 |
// %%%% This code should probably just call into a method in the LinkResolver |
|
1324 |
// |
|
1325 |
// The class should have been loaded (we have an instance of the class |
|
1326 |
// passed in) so the method and signature should already be in the symbol |
|
1327 |
// table. If they're not there, the method doesn't exist. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1328 |
const char *name_to_probe = (name_str == NULL) |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1329 |
? vmSymbols::object_initializer_name()->as_C_string() |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1330 |
: name_str; |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1331 |
TempNewSymbol name = SymbolTable::probe(name_to_probe, (int)strlen(name_to_probe)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1332 |
TempNewSymbol signature = SymbolTable::probe(sig, (int)strlen(sig)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1333 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1334 |
if (name == NULL || signature == NULL) { |
1 | 1335 |
THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str); |
1336 |
} |
|
1337 |
||
1338 |
// Throw a NoSuchMethodError exception if we have an instance of a |
|
1339 |
// primitive java.lang.Class |
|
1340 |
if (java_lang_Class::is_primitive(JNIHandles::resolve_non_null(clazz))) { |
|
1341 |
THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str); |
|
1342 |
} |
|
1343 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1344 |
Klass* klass = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)); |
1 | 1345 |
|
1346 |
// Make sure class is linked and initialized before handing id's out to |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1347 |
// Method*s. |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1348 |
klass->initialize(CHECK_NULL); |
1 | 1349 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
1350 |
Method* m; |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1351 |
if (name == vmSymbols::object_initializer_name() || |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1352 |
name == vmSymbols::class_initializer_name()) { |
1 | 1353 |
// Never search superclasses for constructors |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33576
diff
changeset
|
1354 |
if (klass->is_instance_klass()) { |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1355 |
m = InstanceKlass::cast(klass)->find_method(name, signature); |
1 | 1356 |
} else { |
1357 |
m = NULL; |
|
1358 |
} |
|
1359 |
} else { |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1360 |
m = klass->lookup_method(name, signature); |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33576
diff
changeset
|
1361 |
if (m == NULL && klass->is_instance_klass()) { |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1362 |
m = InstanceKlass::cast(klass)->lookup_method_in_ordered_interfaces(name, signature); |
1 | 1363 |
} |
1364 |
} |
|
1365 |
if (m == NULL || (m->is_static() != is_static)) { |
|
1366 |
THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str); |
|
1367 |
} |
|
1368 |
return m->jmethod_id(); |
|
1369 |
} |
|
1370 |
||
1371 |
||
1372 |
JNI_ENTRY(jmethodID, jni_GetMethodID(JNIEnv *env, jclass clazz, |
|
1373 |
const char *name, const char *sig)) |
|
1374 |
JNIWrapper("GetMethodID"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1375 |
HOTSPOT_JNI_GETMETHODID_ENTRY(env, clazz, (char *) name, (char *) sig); |
1 | 1376 |
jmethodID ret = get_method_id(env, clazz, name, sig, false, thread); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1377 |
HOTSPOT_JNI_GETMETHODID_RETURN((uintptr_t) ret); |
1 | 1378 |
return ret; |
1379 |
JNI_END |
|
1380 |
||
1381 |
||
1382 |
JNI_ENTRY(jmethodID, jni_GetStaticMethodID(JNIEnv *env, jclass clazz, |
|
1383 |
const char *name, const char *sig)) |
|
1384 |
JNIWrapper("GetStaticMethodID"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1385 |
HOTSPOT_JNI_GETSTATICMETHODID_ENTRY(env, (char *) clazz, (char *) name, (char *)sig); |
1 | 1386 |
jmethodID ret = get_method_id(env, clazz, name, sig, true, thread); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1387 |
HOTSPOT_JNI_GETSTATICMETHODID_RETURN((uintptr_t) ret); |
1 | 1388 |
return ret; |
1389 |
JNI_END |
|
1390 |
||
1391 |
||
1392 |
||
1393 |
// |
|
1394 |
// Calling Methods |
|
1395 |
// |
|
1396 |
||
10739 | 1397 |
|
1398 |
#define DEFINE_CALLMETHOD(ResultType, Result, Tag \ |
|
1399 |
, EntryProbe, ReturnProbe) \ |
|
1400 |
\ |
|
1401 |
DT_RETURN_MARK_DECL_FOR(Result, Call##Result##Method, ResultType \ |
|
1402 |
, ReturnProbe); \ |
|
1403 |
\ |
|
1404 |
JNI_ENTRY(ResultType, \ |
|
1405 |
jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \ |
|
1406 |
JNIWrapper("Call" XSTR(Result) "Method"); \ |
|
1407 |
\ |
|
1408 |
EntryProbe; \ |
|
1409 |
ResultType ret = 0;\ |
|
1410 |
DT_RETURN_MARK_FOR(Result, Call##Result##Method, ResultType, \ |
|
1411 |
(const ResultType&)ret);\ |
|
1412 |
\ |
|
1413 |
va_list args; \ |
|
1414 |
va_start(args, methodID); \ |
|
1415 |
JavaValue jvalue(Tag); \ |
|
1416 |
JNI_ArgumentPusherVaArg ap(methodID, args); \ |
|
1417 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \ |
|
1418 |
va_end(args); \ |
|
1419 |
ret = jvalue.get_##ResultType(); \ |
|
1420 |
return ret;\ |
|
1421 |
JNI_END |
|
1422 |
||
1423 |
// the runtime type of subword integral basic types is integer |
|
1424 |
DEFINE_CALLMETHOD(jboolean, Boolean, T_BOOLEAN |
|
1425 |
, HOTSPOT_JNI_CALLBOOLEANMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1426 |
HOTSPOT_JNI_CALLBOOLEANMETHOD_RETURN(_ret_ref)) |
|
1427 |
DEFINE_CALLMETHOD(jbyte, Byte, T_BYTE |
|
1428 |
, HOTSPOT_JNI_CALLBYTEMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1429 |
HOTSPOT_JNI_CALLBYTEMETHOD_RETURN(_ret_ref)) |
|
1430 |
DEFINE_CALLMETHOD(jchar, Char, T_CHAR |
|
1431 |
, HOTSPOT_JNI_CALLCHARMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1432 |
HOTSPOT_JNI_CALLCHARMETHOD_RETURN(_ret_ref)) |
|
1433 |
DEFINE_CALLMETHOD(jshort, Short, T_SHORT |
|
1434 |
, HOTSPOT_JNI_CALLSHORTMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1435 |
HOTSPOT_JNI_CALLSHORTMETHOD_RETURN(_ret_ref)) |
|
1436 |
||
1437 |
DEFINE_CALLMETHOD(jobject, Object, T_OBJECT |
|
1438 |
, HOTSPOT_JNI_CALLOBJECTMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1439 |
HOTSPOT_JNI_CALLOBJECTMETHOD_RETURN(_ret_ref)) |
|
1440 |
DEFINE_CALLMETHOD(jint, Int, T_INT, |
|
1441 |
HOTSPOT_JNI_CALLINTMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1442 |
HOTSPOT_JNI_CALLINTMETHOD_RETURN(_ret_ref)) |
|
1443 |
DEFINE_CALLMETHOD(jlong, Long, T_LONG |
|
1444 |
, HOTSPOT_JNI_CALLLONGMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1445 |
HOTSPOT_JNI_CALLLONGMETHOD_RETURN(_ret_ref)) |
|
1446 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
1447 |
DEFINE_CALLMETHOD(jfloat, Float, T_FLOAT |
|
1448 |
, HOTSPOT_JNI_CALLFLOATMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1449 |
HOTSPOT_JNI_CALLFLOATMETHOD_RETURN()) |
|
1450 |
DEFINE_CALLMETHOD(jdouble, Double, T_DOUBLE |
|
1451 |
, HOTSPOT_JNI_CALLDOUBLEMETHOD_ENTRY(env, obj, (uintptr_t)methodID), |
|
1452 |
HOTSPOT_JNI_CALLDOUBLEMETHOD_RETURN()) |
|
1453 |
||
1454 |
#define DEFINE_CALLMETHODV(ResultType, Result, Tag \ |
|
1455 |
, EntryProbe, ReturnProbe) \ |
|
1456 |
\ |
|
1457 |
DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodV, ResultType \ |
|
1458 |
, ReturnProbe); \ |
|
1459 |
\ |
|
1460 |
JNI_ENTRY(ResultType, \ |
|
1461 |
jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \ |
|
1462 |
JNIWrapper("Call" XSTR(Result) "MethodV"); \ |
|
1463 |
\ |
|
1464 |
EntryProbe;\ |
|
1465 |
ResultType ret = 0;\ |
|
1466 |
DT_RETURN_MARK_FOR(Result, Call##Result##MethodV, ResultType, \ |
|
1467 |
(const ResultType&)ret);\ |
|
1468 |
\ |
|
1469 |
JavaValue jvalue(Tag); \ |
|
1470 |
JNI_ArgumentPusherVaArg ap(methodID, args); \ |
|
1471 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \ |
|
1472 |
ret = jvalue.get_##ResultType(); \ |
|
1473 |
return ret;\ |
|
1474 |
JNI_END |
|
1475 |
||
1476 |
// the runtime type of subword integral basic types is integer |
|
1477 |
DEFINE_CALLMETHODV(jboolean, Boolean, T_BOOLEAN |
|
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1478 |
, HOTSPOT_JNI_CALLBOOLEANMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1479 |
HOTSPOT_JNI_CALLBOOLEANMETHODV_RETURN(_ret_ref)) |
10739 | 1480 |
DEFINE_CALLMETHODV(jbyte, Byte, T_BYTE |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1481 |
, HOTSPOT_JNI_CALLBYTEMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1482 |
HOTSPOT_JNI_CALLBYTEMETHODV_RETURN(_ret_ref)) |
10739 | 1483 |
DEFINE_CALLMETHODV(jchar, Char, T_CHAR |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1484 |
, HOTSPOT_JNI_CALLCHARMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1485 |
HOTSPOT_JNI_CALLCHARMETHODV_RETURN(_ret_ref)) |
10739 | 1486 |
DEFINE_CALLMETHODV(jshort, Short, T_SHORT |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1487 |
, HOTSPOT_JNI_CALLSHORTMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1488 |
HOTSPOT_JNI_CALLSHORTMETHODV_RETURN(_ret_ref)) |
10739 | 1489 |
|
1490 |
DEFINE_CALLMETHODV(jobject, Object, T_OBJECT |
|
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1491 |
, HOTSPOT_JNI_CALLOBJECTMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1492 |
HOTSPOT_JNI_CALLOBJECTMETHODV_RETURN(_ret_ref)) |
10739 | 1493 |
DEFINE_CALLMETHODV(jint, Int, T_INT, |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1494 |
HOTSPOT_JNI_CALLINTMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1495 |
HOTSPOT_JNI_CALLINTMETHODV_RETURN(_ret_ref)) |
10739 | 1496 |
DEFINE_CALLMETHODV(jlong, Long, T_LONG |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1497 |
, HOTSPOT_JNI_CALLLONGMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1498 |
HOTSPOT_JNI_CALLLONGMETHODV_RETURN(_ret_ref)) |
10739 | 1499 |
// Float and double probes don't return value because dtrace doesn't currently support it |
1500 |
DEFINE_CALLMETHODV(jfloat, Float, T_FLOAT |
|
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1501 |
, HOTSPOT_JNI_CALLFLOATMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1502 |
HOTSPOT_JNI_CALLFLOATMETHODV_RETURN()) |
10739 | 1503 |
DEFINE_CALLMETHODV(jdouble, Double, T_DOUBLE |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1504 |
, HOTSPOT_JNI_CALLDOUBLEMETHODV_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1505 |
HOTSPOT_JNI_CALLDOUBLEMETHODV_RETURN()) |
10739 | 1506 |
|
1507 |
#define DEFINE_CALLMETHODA(ResultType, Result, Tag \ |
|
1508 |
, EntryProbe, ReturnProbe) \ |
|
1509 |
\ |
|
1510 |
DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodA, ResultType \ |
|
1511 |
, ReturnProbe); \ |
|
1512 |
\ |
|
1513 |
JNI_ENTRY(ResultType, \ |
|
1514 |
jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \ |
|
1515 |
JNIWrapper("Call" XSTR(Result) "MethodA"); \ |
|
1516 |
EntryProbe; \ |
|
1517 |
ResultType ret = 0;\ |
|
1518 |
DT_RETURN_MARK_FOR(Result, Call##Result##MethodA, ResultType, \ |
|
1519 |
(const ResultType&)ret);\ |
|
1520 |
\ |
|
1521 |
JavaValue jvalue(Tag); \ |
|
1522 |
JNI_ArgumentPusherArray ap(methodID, args); \ |
|
1523 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \ |
|
1524 |
ret = jvalue.get_##ResultType(); \ |
|
1525 |
return ret;\ |
|
1526 |
JNI_END |
|
1527 |
||
1528 |
// the runtime type of subword integral basic types is integer |
|
1529 |
DEFINE_CALLMETHODA(jboolean, Boolean, T_BOOLEAN |
|
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1530 |
, HOTSPOT_JNI_CALLBOOLEANMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1531 |
HOTSPOT_JNI_CALLBOOLEANMETHODA_RETURN(_ret_ref)) |
10739 | 1532 |
DEFINE_CALLMETHODA(jbyte, Byte, T_BYTE |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1533 |
, HOTSPOT_JNI_CALLBYTEMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1534 |
HOTSPOT_JNI_CALLBYTEMETHODA_RETURN(_ret_ref)) |
10739 | 1535 |
DEFINE_CALLMETHODA(jchar, Char, T_CHAR |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1536 |
, HOTSPOT_JNI_CALLCHARMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1537 |
HOTSPOT_JNI_CALLCHARMETHODA_RETURN(_ret_ref)) |
10739 | 1538 |
DEFINE_CALLMETHODA(jshort, Short, T_SHORT |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1539 |
, HOTSPOT_JNI_CALLSHORTMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1540 |
HOTSPOT_JNI_CALLSHORTMETHODA_RETURN(_ret_ref)) |
10739 | 1541 |
|
1542 |
DEFINE_CALLMETHODA(jobject, Object, T_OBJECT |
|
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1543 |
, HOTSPOT_JNI_CALLOBJECTMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1544 |
HOTSPOT_JNI_CALLOBJECTMETHODA_RETURN(_ret_ref)) |
10739 | 1545 |
DEFINE_CALLMETHODA(jint, Int, T_INT, |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1546 |
HOTSPOT_JNI_CALLINTMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1547 |
HOTSPOT_JNI_CALLINTMETHODA_RETURN(_ret_ref)) |
10739 | 1548 |
DEFINE_CALLMETHODA(jlong, Long, T_LONG |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1549 |
, HOTSPOT_JNI_CALLLONGMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1550 |
HOTSPOT_JNI_CALLLONGMETHODA_RETURN(_ret_ref)) |
10739 | 1551 |
// Float and double probes don't return value because dtrace doesn't currently support it |
1552 |
DEFINE_CALLMETHODA(jfloat, Float, T_FLOAT |
|
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1553 |
, HOTSPOT_JNI_CALLFLOATMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1554 |
HOTSPOT_JNI_CALLFLOATMETHODA_RETURN()) |
10739 | 1555 |
DEFINE_CALLMETHODA(jdouble, Double, T_DOUBLE |
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1556 |
, HOTSPOT_JNI_CALLDOUBLEMETHODA_ENTRY(env, obj, (uintptr_t)methodID), |
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
1557 |
HOTSPOT_JNI_CALLDOUBLEMETHODA_RETURN()) |
10739 | 1558 |
|
1559 |
DT_VOID_RETURN_MARK_DECL(CallVoidMethod, HOTSPOT_JNI_CALLVOIDMETHOD_RETURN()); |
|
1560 |
DT_VOID_RETURN_MARK_DECL(CallVoidMethodV, HOTSPOT_JNI_CALLVOIDMETHODV_RETURN()); |
|
1561 |
DT_VOID_RETURN_MARK_DECL(CallVoidMethodA, HOTSPOT_JNI_CALLVOIDMETHODA_RETURN()); |
|
1562 |
||
1563 |
||
1 | 1564 |
JNI_ENTRY(void, jni_CallVoidMethod(JNIEnv *env, jobject obj, jmethodID methodID, ...)) |
1565 |
JNIWrapper("CallVoidMethod"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1566 |
HOTSPOT_JNI_CALLVOIDMETHOD_ENTRY(env, obj, (uintptr_t) methodID); |
1 | 1567 |
DT_VOID_RETURN_MARK(CallVoidMethod); |
1568 |
||
1569 |
va_list args; |
|
1570 |
va_start(args, methodID); |
|
1571 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1572 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 1573 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK); |
1574 |
va_end(args); |
|
1575 |
JNI_END |
|
1576 |
||
1577 |
||
1578 |
JNI_ENTRY(void, jni_CallVoidMethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) |
|
1579 |
JNIWrapper("CallVoidMethodV"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1580 |
HOTSPOT_JNI_CALLVOIDMETHODV_ENTRY(env, obj, (uintptr_t) methodID); |
1 | 1581 |
DT_VOID_RETURN_MARK(CallVoidMethodV); |
1582 |
||
1583 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1584 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 1585 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK); |
1586 |
JNI_END |
|
1587 |
||
1588 |
||
1589 |
JNI_ENTRY(void, jni_CallVoidMethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) |
|
1590 |
JNIWrapper("CallVoidMethodA"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1591 |
HOTSPOT_JNI_CALLVOIDMETHODA_ENTRY(env, obj, (uintptr_t) methodID); |
1 | 1592 |
DT_VOID_RETURN_MARK(CallVoidMethodA); |
1593 |
||
1594 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1595 |
JNI_ArgumentPusherArray ap(methodID, args); |
1 | 1596 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK); |
1597 |
JNI_END |
|
1598 |
||
1599 |
||
10739 | 1600 |
|
1601 |
#define DEFINE_CALLNONVIRTUALMETHOD(ResultType, Result, Tag \ |
|
1602 |
, EntryProbe, ReturnProbe) \ |
|
1603 |
\ |
|
1604 |
DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##Method, ResultType \ |
|
1605 |
, ReturnProbe);\ |
|
1606 |
\ |
|
1607 |
JNI_ENTRY(ResultType, \ |
|
1608 |
jni_CallNonvirtual##Result##Method(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...)) \ |
|
1609 |
JNIWrapper("CallNonvitual" XSTR(Result) "Method"); \ |
|
1610 |
\ |
|
1611 |
EntryProbe;\ |
|
1612 |
ResultType ret;\ |
|
1613 |
DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##Method, ResultType, \ |
|
1614 |
(const ResultType&)ret);\ |
|
1615 |
\ |
|
1616 |
va_list args; \ |
|
1617 |
va_start(args, methodID); \ |
|
1618 |
JavaValue jvalue(Tag); \ |
|
1619 |
JNI_ArgumentPusherVaArg ap(methodID, args); \ |
|
1620 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \ |
|
1621 |
va_end(args); \ |
|
1622 |
ret = jvalue.get_##ResultType(); \ |
|
1623 |
return ret;\ |
|
1624 |
JNI_END |
|
1625 |
||
1626 |
// the runtime type of subword integral basic types is integer |
|
1627 |
DEFINE_CALLNONVIRTUALMETHOD(jboolean, Boolean, T_BOOLEAN |
|
1628 |
, HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1629 |
HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHOD_RETURN(_ret_ref)) |
|
1630 |
DEFINE_CALLNONVIRTUALMETHOD(jbyte, Byte, T_BYTE |
|
1631 |
, HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1632 |
HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHOD_RETURN(_ret_ref)) |
|
1633 |
DEFINE_CALLNONVIRTUALMETHOD(jchar, Char, T_CHAR |
|
1634 |
, HOTSPOT_JNI_CALLNONVIRTUALCHARMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1635 |
HOTSPOT_JNI_CALLNONVIRTUALCHARMETHOD_RETURN(_ret_ref)) |
|
1636 |
DEFINE_CALLNONVIRTUALMETHOD(jshort, Short, T_SHORT |
|
1637 |
, HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1638 |
HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHOD_RETURN(_ret_ref)) |
|
1639 |
||
1640 |
DEFINE_CALLNONVIRTUALMETHOD(jobject, Object, T_OBJECT |
|
1641 |
, HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1642 |
HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHOD_RETURN(_ret_ref)) |
|
1643 |
DEFINE_CALLNONVIRTUALMETHOD(jint, Int, T_INT |
|
1644 |
, HOTSPOT_JNI_CALLNONVIRTUALINTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1645 |
HOTSPOT_JNI_CALLNONVIRTUALINTMETHOD_RETURN(_ret_ref)) |
|
1646 |
DEFINE_CALLNONVIRTUALMETHOD(jlong, Long, T_LONG |
|
1647 |
, HOTSPOT_JNI_CALLNONVIRTUALLONGMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1648 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
1649 |
HOTSPOT_JNI_CALLNONVIRTUALLONGMETHOD_RETURN(_ret_ref)) |
|
1650 |
DEFINE_CALLNONVIRTUALMETHOD(jfloat, Float, T_FLOAT |
|
1651 |
, HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1652 |
HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHOD_RETURN()) |
|
1653 |
DEFINE_CALLNONVIRTUALMETHOD(jdouble, Double, T_DOUBLE |
|
1654 |
, HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1655 |
HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHOD_RETURN()) |
|
1656 |
||
1657 |
#define DEFINE_CALLNONVIRTUALMETHODV(ResultType, Result, Tag \ |
|
1658 |
, EntryProbe, ReturnProbe) \ |
|
1659 |
\ |
|
1660 |
DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodV, ResultType \ |
|
1661 |
, ReturnProbe);\ |
|
1662 |
\ |
|
1663 |
JNI_ENTRY(ResultType, \ |
|
1664 |
jni_CallNonvirtual##Result##MethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args)) \ |
|
1665 |
JNIWrapper("CallNonvitual" XSTR(Result) "MethodV"); \ |
|
1666 |
\ |
|
1667 |
EntryProbe;\ |
|
1668 |
ResultType ret;\ |
|
1669 |
DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodV, ResultType, \ |
|
1670 |
(const ResultType&)ret);\ |
|
1671 |
\ |
|
1672 |
JavaValue jvalue(Tag); \ |
|
1673 |
JNI_ArgumentPusherVaArg ap(methodID, args); \ |
|
1674 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \ |
|
1675 |
ret = jvalue.get_##ResultType(); \ |
|
1676 |
return ret;\ |
|
1677 |
JNI_END |
|
1678 |
||
1679 |
// the runtime type of subword integral basic types is integer |
|
1680 |
DEFINE_CALLNONVIRTUALMETHODV(jboolean, Boolean, T_BOOLEAN |
|
1681 |
, HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1682 |
HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODV_RETURN(_ret_ref)) |
|
1683 |
DEFINE_CALLNONVIRTUALMETHODV(jbyte, Byte, T_BYTE |
|
1684 |
, HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1685 |
HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODV_RETURN(_ret_ref)) |
|
1686 |
DEFINE_CALLNONVIRTUALMETHODV(jchar, Char, T_CHAR |
|
1687 |
, HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1688 |
HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODV_RETURN(_ret_ref)) |
|
1689 |
DEFINE_CALLNONVIRTUALMETHODV(jshort, Short, T_SHORT |
|
1690 |
, HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1691 |
HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODV_RETURN(_ret_ref)) |
|
1692 |
||
1693 |
DEFINE_CALLNONVIRTUALMETHODV(jobject, Object, T_OBJECT |
|
1694 |
, HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1695 |
HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODV_RETURN(_ret_ref)) |
|
1696 |
DEFINE_CALLNONVIRTUALMETHODV(jint, Int, T_INT |
|
1697 |
, HOTSPOT_JNI_CALLNONVIRTUALINTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1698 |
HOTSPOT_JNI_CALLNONVIRTUALINTMETHODV_RETURN(_ret_ref)) |
|
1699 |
DEFINE_CALLNONVIRTUALMETHODV(jlong, Long, T_LONG |
|
1700 |
, HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1701 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
1702 |
HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODV_RETURN(_ret_ref)) |
|
1703 |
DEFINE_CALLNONVIRTUALMETHODV(jfloat, Float, T_FLOAT |
|
1704 |
, HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1705 |
HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODV_RETURN()) |
|
1706 |
DEFINE_CALLNONVIRTUALMETHODV(jdouble, Double, T_DOUBLE |
|
1707 |
, HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1708 |
HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODV_RETURN()) |
|
1709 |
||
1710 |
#define DEFINE_CALLNONVIRTUALMETHODA(ResultType, Result, Tag \ |
|
1711 |
, EntryProbe, ReturnProbe) \ |
|
1712 |
\ |
|
1713 |
DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodA, ResultType \ |
|
1714 |
, ReturnProbe);\ |
|
1715 |
\ |
|
1716 |
JNI_ENTRY(ResultType, \ |
|
1717 |
jni_CallNonvirtual##Result##MethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args)) \ |
|
1718 |
JNIWrapper("CallNonvitual" XSTR(Result) "MethodA"); \ |
|
1719 |
\ |
|
1720 |
EntryProbe;\ |
|
1721 |
ResultType ret;\ |
|
1722 |
DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodA, ResultType, \ |
|
1723 |
(const ResultType&)ret);\ |
|
1724 |
\ |
|
1725 |
JavaValue jvalue(Tag); \ |
|
1726 |
JNI_ArgumentPusherArray ap(methodID, args); \ |
|
1727 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \ |
|
1728 |
ret = jvalue.get_##ResultType(); \ |
|
1729 |
return ret;\ |
|
1730 |
JNI_END |
|
1731 |
||
1732 |
// the runtime type of subword integral basic types is integer |
|
1733 |
DEFINE_CALLNONVIRTUALMETHODA(jboolean, Boolean, T_BOOLEAN |
|
1734 |
, HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1735 |
HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODA_RETURN(_ret_ref)) |
|
1736 |
DEFINE_CALLNONVIRTUALMETHODA(jbyte, Byte, T_BYTE |
|
1737 |
, HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1738 |
HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODA_RETURN(_ret_ref)) |
|
1739 |
DEFINE_CALLNONVIRTUALMETHODA(jchar, Char, T_CHAR |
|
1740 |
, HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1741 |
HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODA_RETURN(_ret_ref)) |
|
1742 |
DEFINE_CALLNONVIRTUALMETHODA(jshort, Short, T_SHORT |
|
1743 |
, HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1744 |
HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODA_RETURN(_ret_ref)) |
|
1745 |
||
1746 |
DEFINE_CALLNONVIRTUALMETHODA(jobject, Object, T_OBJECT |
|
1747 |
, HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1748 |
HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODA_RETURN(_ret_ref)) |
|
1749 |
DEFINE_CALLNONVIRTUALMETHODA(jint, Int, T_INT |
|
1750 |
, HOTSPOT_JNI_CALLNONVIRTUALINTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1751 |
HOTSPOT_JNI_CALLNONVIRTUALINTMETHODA_RETURN(_ret_ref)) |
|
1752 |
DEFINE_CALLNONVIRTUALMETHODA(jlong, Long, T_LONG |
|
1753 |
, HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1754 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
1755 |
HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODA_RETURN(_ret_ref)) |
|
1756 |
DEFINE_CALLNONVIRTUALMETHODA(jfloat, Float, T_FLOAT |
|
1757 |
, HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1758 |
HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODA_RETURN()) |
|
1759 |
DEFINE_CALLNONVIRTUALMETHODA(jdouble, Double, T_DOUBLE |
|
1760 |
, HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID), |
|
1761 |
HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODA_RETURN()) |
|
1762 |
||
1763 |
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethod |
|
1764 |
, HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHOD_RETURN()); |
|
1765 |
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodV |
|
1766 |
, HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODV_RETURN()); |
|
1767 |
DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodA |
|
1768 |
, HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODA_RETURN()); |
|
1769 |
||
1 | 1770 |
JNI_ENTRY(void, jni_CallNonvirtualVoidMethod(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...)) |
1771 |
JNIWrapper("CallNonvirtualVoidMethod"); |
|
1772 |
||
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1773 |
HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHOD_ENTRY(env, obj, cls, (uintptr_t) methodID); |
1 | 1774 |
DT_VOID_RETURN_MARK(CallNonvirtualVoidMethod); |
1775 |
||
1776 |
va_list args; |
|
1777 |
va_start(args, methodID); |
|
1778 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1779 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 1780 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK); |
1781 |
va_end(args); |
|
1782 |
JNI_END |
|
1783 |
||
1784 |
||
1785 |
JNI_ENTRY(void, jni_CallNonvirtualVoidMethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args)) |
|
1786 |
JNIWrapper("CallNonvirtualVoidMethodV"); |
|
1787 |
||
10739 | 1788 |
HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODV_ENTRY( |
1789 |
env, obj, cls, (uintptr_t) methodID); |
|
1 | 1790 |
DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodV); |
1791 |
||
1792 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1793 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 1794 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK); |
1795 |
JNI_END |
|
1796 |
||
1797 |
||
1798 |
JNI_ENTRY(void, jni_CallNonvirtualVoidMethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args)) |
|
1799 |
JNIWrapper("CallNonvirtualVoidMethodA"); |
|
10739 | 1800 |
HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODA_ENTRY( |
1801 |
env, obj, cls, (uintptr_t) methodID); |
|
1 | 1802 |
DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodA); |
1803 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1804 |
JNI_ArgumentPusherArray ap(methodID, args); |
1 | 1805 |
jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK); |
1806 |
JNI_END |
|
1807 |
||
1808 |
||
10739 | 1809 |
|
1810 |
#define DEFINE_CALLSTATICMETHOD(ResultType, Result, Tag \ |
|
1811 |
, EntryProbe, ResultProbe) \ |
|
1812 |
\ |
|
1813 |
DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##Method, ResultType \ |
|
1814 |
, ResultProbe); \ |
|
1815 |
\ |
|
1816 |
JNI_ENTRY(ResultType, \ |
|
1817 |
jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \ |
|
1818 |
JNIWrapper("CallStatic" XSTR(Result) "Method"); \ |
|
1819 |
\ |
|
1820 |
EntryProbe; \ |
|
1821 |
ResultType ret = 0;\ |
|
1822 |
DT_RETURN_MARK_FOR(Result, CallStatic##Result##Method, ResultType, \ |
|
1823 |
(const ResultType&)ret);\ |
|
1824 |
\ |
|
1825 |
va_list args; \ |
|
1826 |
va_start(args, methodID); \ |
|
1827 |
JavaValue jvalue(Tag); \ |
|
1828 |
JNI_ArgumentPusherVaArg ap(methodID, args); \ |
|
1829 |
jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \ |
|
1830 |
va_end(args); \ |
|
1831 |
ret = jvalue.get_##ResultType(); \ |
|
1832 |
return ret;\ |
|
1833 |
JNI_END |
|
1834 |
||
1835 |
// the runtime type of subword integral basic types is integer |
|
1836 |
DEFINE_CALLSTATICMETHOD(jboolean, Boolean, T_BOOLEAN |
|
1837 |
, HOTSPOT_JNI_CALLSTATICBOOLEANMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1838 |
HOTSPOT_JNI_CALLSTATICBOOLEANMETHOD_RETURN(_ret_ref)); |
|
1839 |
DEFINE_CALLSTATICMETHOD(jbyte, Byte, T_BYTE |
|
1840 |
, HOTSPOT_JNI_CALLSTATICBYTEMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1841 |
HOTSPOT_JNI_CALLSTATICBYTEMETHOD_RETURN(_ret_ref)); |
|
1842 |
DEFINE_CALLSTATICMETHOD(jchar, Char, T_CHAR |
|
1843 |
, HOTSPOT_JNI_CALLSTATICCHARMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1844 |
HOTSPOT_JNI_CALLSTATICCHARMETHOD_RETURN(_ret_ref)); |
|
1845 |
DEFINE_CALLSTATICMETHOD(jshort, Short, T_SHORT |
|
1846 |
, HOTSPOT_JNI_CALLSTATICSHORTMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1847 |
HOTSPOT_JNI_CALLSTATICSHORTMETHOD_RETURN(_ret_ref)); |
|
1848 |
||
1849 |
DEFINE_CALLSTATICMETHOD(jobject, Object, T_OBJECT |
|
1850 |
, HOTSPOT_JNI_CALLSTATICOBJECTMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1851 |
HOTSPOT_JNI_CALLSTATICOBJECTMETHOD_RETURN(_ret_ref)); |
|
1852 |
DEFINE_CALLSTATICMETHOD(jint, Int, T_INT |
|
1853 |
, HOTSPOT_JNI_CALLSTATICINTMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1854 |
HOTSPOT_JNI_CALLSTATICINTMETHOD_RETURN(_ret_ref)); |
|
1855 |
DEFINE_CALLSTATICMETHOD(jlong, Long, T_LONG |
|
1856 |
, HOTSPOT_JNI_CALLSTATICLONGMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1857 |
HOTSPOT_JNI_CALLSTATICLONGMETHOD_RETURN(_ret_ref)); |
|
1858 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
1859 |
DEFINE_CALLSTATICMETHOD(jfloat, Float, T_FLOAT |
|
1860 |
, HOTSPOT_JNI_CALLSTATICFLOATMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1861 |
HOTSPOT_JNI_CALLSTATICFLOATMETHOD_RETURN()); |
|
1862 |
DEFINE_CALLSTATICMETHOD(jdouble, Double, T_DOUBLE |
|
1863 |
, HOTSPOT_JNI_CALLSTATICDOUBLEMETHOD_ENTRY(env, cls, (uintptr_t)methodID), |
|
1864 |
HOTSPOT_JNI_CALLSTATICDOUBLEMETHOD_RETURN()); |
|
1865 |
||
1866 |
#define DEFINE_CALLSTATICMETHODV(ResultType, Result, Tag \ |
|
1867 |
, EntryProbe, ResultProbe) \ |
|
1868 |
\ |
|
1869 |
DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodV, ResultType \ |
|
1870 |
, ResultProbe); \ |
|
1871 |
\ |
|
1872 |
JNI_ENTRY(ResultType, \ |
|
1873 |
jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \ |
|
1874 |
JNIWrapper("CallStatic" XSTR(Result) "MethodV"); \ |
|
1875 |
\ |
|
1876 |
EntryProbe; \ |
|
1877 |
ResultType ret = 0;\ |
|
1878 |
DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodV, ResultType, \ |
|
1879 |
(const ResultType&)ret);\ |
|
1880 |
\ |
|
1881 |
JavaValue jvalue(Tag); \ |
|
1882 |
JNI_ArgumentPusherVaArg ap(methodID, args); \ |
|
1883 |
/* Make sure class is initialized before trying to invoke its method */ \ |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1884 |
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(cls)); \ |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
1885 |
k->initialize(CHECK_0); \ |
10739 | 1886 |
jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \ |
1887 |
va_end(args); \ |
|
1888 |
ret = jvalue.get_##ResultType(); \ |
|
1889 |
return ret;\ |
|
1890 |
JNI_END |
|
1891 |
||
1892 |
// the runtime type of subword integral basic types is integer |
|
1893 |
DEFINE_CALLSTATICMETHODV(jboolean, Boolean, T_BOOLEAN |
|
1894 |
, HOTSPOT_JNI_CALLSTATICBOOLEANMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1895 |
HOTSPOT_JNI_CALLSTATICBOOLEANMETHODV_RETURN(_ret_ref)); |
|
1896 |
DEFINE_CALLSTATICMETHODV(jbyte, Byte, T_BYTE |
|
1897 |
, HOTSPOT_JNI_CALLSTATICBYTEMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1898 |
HOTSPOT_JNI_CALLSTATICBYTEMETHODV_RETURN(_ret_ref)); |
|
1899 |
DEFINE_CALLSTATICMETHODV(jchar, Char, T_CHAR |
|
1900 |
, HOTSPOT_JNI_CALLSTATICCHARMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1901 |
HOTSPOT_JNI_CALLSTATICCHARMETHODV_RETURN(_ret_ref)); |
|
1902 |
DEFINE_CALLSTATICMETHODV(jshort, Short, T_SHORT |
|
1903 |
, HOTSPOT_JNI_CALLSTATICSHORTMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1904 |
HOTSPOT_JNI_CALLSTATICSHORTMETHODV_RETURN(_ret_ref)); |
|
1905 |
||
1906 |
DEFINE_CALLSTATICMETHODV(jobject, Object, T_OBJECT |
|
1907 |
, HOTSPOT_JNI_CALLSTATICOBJECTMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1908 |
HOTSPOT_JNI_CALLSTATICOBJECTMETHODV_RETURN(_ret_ref)); |
|
1909 |
DEFINE_CALLSTATICMETHODV(jint, Int, T_INT |
|
1910 |
, HOTSPOT_JNI_CALLSTATICINTMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1911 |
HOTSPOT_JNI_CALLSTATICINTMETHODV_RETURN(_ret_ref)); |
|
1912 |
DEFINE_CALLSTATICMETHODV(jlong, Long, T_LONG |
|
1913 |
, HOTSPOT_JNI_CALLSTATICLONGMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1914 |
HOTSPOT_JNI_CALLSTATICLONGMETHODV_RETURN(_ret_ref)); |
|
1915 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
1916 |
DEFINE_CALLSTATICMETHODV(jfloat, Float, T_FLOAT |
|
1917 |
, HOTSPOT_JNI_CALLSTATICFLOATMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1918 |
HOTSPOT_JNI_CALLSTATICFLOATMETHODV_RETURN()); |
|
1919 |
DEFINE_CALLSTATICMETHODV(jdouble, Double, T_DOUBLE |
|
1920 |
, HOTSPOT_JNI_CALLSTATICDOUBLEMETHODV_ENTRY(env, cls, (uintptr_t)methodID), |
|
1921 |
HOTSPOT_JNI_CALLSTATICDOUBLEMETHODV_RETURN()); |
|
1922 |
||
1923 |
#define DEFINE_CALLSTATICMETHODA(ResultType, Result, Tag \ |
|
1924 |
, EntryProbe, ResultProbe) \ |
|
1925 |
\ |
|
1926 |
DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodA, ResultType \ |
|
1927 |
, ResultProbe); \ |
|
1928 |
\ |
|
1929 |
JNI_ENTRY(ResultType, \ |
|
1930 |
jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \ |
|
1931 |
JNIWrapper("CallStatic" XSTR(Result) "MethodA"); \ |
|
1932 |
\ |
|
1933 |
EntryProbe; \ |
|
1934 |
ResultType ret = 0;\ |
|
1935 |
DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodA, ResultType, \ |
|
1936 |
(const ResultType&)ret);\ |
|
1937 |
\ |
|
1938 |
JavaValue jvalue(Tag); \ |
|
1939 |
JNI_ArgumentPusherArray ap(methodID, args); \ |
|
1940 |
jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \ |
|
1941 |
ret = jvalue.get_##ResultType(); \ |
|
1942 |
return ret;\ |
|
1943 |
JNI_END |
|
1944 |
||
1945 |
// the runtime type of subword integral basic types is integer |
|
1946 |
DEFINE_CALLSTATICMETHODA(jboolean, Boolean, T_BOOLEAN |
|
1947 |
, HOTSPOT_JNI_CALLSTATICBOOLEANMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1948 |
HOTSPOT_JNI_CALLSTATICBOOLEANMETHODA_RETURN(_ret_ref)); |
|
1949 |
DEFINE_CALLSTATICMETHODA(jbyte, Byte, T_BYTE |
|
1950 |
, HOTSPOT_JNI_CALLSTATICBYTEMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1951 |
HOTSPOT_JNI_CALLSTATICBYTEMETHODA_RETURN(_ret_ref)); |
|
1952 |
DEFINE_CALLSTATICMETHODA(jchar, Char, T_CHAR |
|
1953 |
, HOTSPOT_JNI_CALLSTATICCHARMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1954 |
HOTSPOT_JNI_CALLSTATICCHARMETHODA_RETURN(_ret_ref)); |
|
1955 |
DEFINE_CALLSTATICMETHODA(jshort, Short, T_SHORT |
|
1956 |
, HOTSPOT_JNI_CALLSTATICSHORTMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1957 |
HOTSPOT_JNI_CALLSTATICSHORTMETHODA_RETURN(_ret_ref)); |
|
1958 |
||
1959 |
DEFINE_CALLSTATICMETHODA(jobject, Object, T_OBJECT |
|
1960 |
, HOTSPOT_JNI_CALLSTATICOBJECTMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1961 |
HOTSPOT_JNI_CALLSTATICOBJECTMETHODA_RETURN(_ret_ref)); |
|
1962 |
DEFINE_CALLSTATICMETHODA(jint, Int, T_INT |
|
1963 |
, HOTSPOT_JNI_CALLSTATICINTMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1964 |
HOTSPOT_JNI_CALLSTATICINTMETHODA_RETURN(_ret_ref)); |
|
1965 |
DEFINE_CALLSTATICMETHODA(jlong, Long, T_LONG |
|
1966 |
, HOTSPOT_JNI_CALLSTATICLONGMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1967 |
HOTSPOT_JNI_CALLSTATICLONGMETHODA_RETURN(_ret_ref)); |
|
1968 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
1969 |
DEFINE_CALLSTATICMETHODA(jfloat, Float, T_FLOAT |
|
1970 |
, HOTSPOT_JNI_CALLSTATICFLOATMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1971 |
HOTSPOT_JNI_CALLSTATICFLOATMETHODA_RETURN()); |
|
1972 |
DEFINE_CALLSTATICMETHODA(jdouble, Double, T_DOUBLE |
|
1973 |
, HOTSPOT_JNI_CALLSTATICDOUBLEMETHODA_ENTRY(env, cls, (uintptr_t)methodID), |
|
1974 |
HOTSPOT_JNI_CALLSTATICDOUBLEMETHODA_RETURN()); |
|
1975 |
||
1976 |
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethod |
|
1977 |
, HOTSPOT_JNI_CALLSTATICVOIDMETHOD_RETURN()); |
|
1978 |
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodV |
|
1979 |
, HOTSPOT_JNI_CALLSTATICVOIDMETHODV_RETURN()); |
|
1980 |
DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodA |
|
1981 |
, HOTSPOT_JNI_CALLSTATICVOIDMETHODA_RETURN()); |
|
1982 |
||
1 | 1983 |
JNI_ENTRY(void, jni_CallStaticVoidMethod(JNIEnv *env, jclass cls, jmethodID methodID, ...)) |
1984 |
JNIWrapper("CallStaticVoidMethod"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1985 |
HOTSPOT_JNI_CALLSTATICVOIDMETHOD_ENTRY(env, cls, (uintptr_t) methodID); |
1 | 1986 |
DT_VOID_RETURN_MARK(CallStaticVoidMethod); |
1987 |
||
1988 |
va_list args; |
|
1989 |
va_start(args, methodID); |
|
1990 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
1991 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 1992 |
jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK); |
1993 |
va_end(args); |
|
1994 |
JNI_END |
|
1995 |
||
1996 |
||
1997 |
JNI_ENTRY(void, jni_CallStaticVoidMethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) |
|
1998 |
JNIWrapper("CallStaticVoidMethodV"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
1999 |
HOTSPOT_JNI_CALLSTATICVOIDMETHODV_ENTRY(env, cls, (uintptr_t) methodID); |
1 | 2000 |
DT_VOID_RETURN_MARK(CallStaticVoidMethodV); |
2001 |
||
2002 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2003 |
JNI_ArgumentPusherVaArg ap(methodID, args); |
1 | 2004 |
jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK); |
2005 |
JNI_END |
|
2006 |
||
2007 |
||
2008 |
JNI_ENTRY(void, jni_CallStaticVoidMethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) |
|
2009 |
JNIWrapper("CallStaticVoidMethodA"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2010 |
HOTSPOT_JNI_CALLSTATICVOIDMETHODA_ENTRY(env, cls, (uintptr_t) methodID); |
1 | 2011 |
DT_VOID_RETURN_MARK(CallStaticVoidMethodA); |
2012 |
||
2013 |
JavaValue jvalue(T_VOID); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2014 |
JNI_ArgumentPusherArray ap(methodID, args); |
1 | 2015 |
jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK); |
2016 |
JNI_END |
|
2017 |
||
2018 |
||
2019 |
// |
|
2020 |
// Accessing Fields |
|
2021 |
// |
|
2022 |
||
2023 |
||
10739 | 2024 |
DT_RETURN_MARK_DECL(GetFieldID, jfieldID |
2025 |
, HOTSPOT_JNI_GETFIELDID_RETURN((uintptr_t)_ret_ref)); |
|
1 | 2026 |
|
2027 |
JNI_ENTRY(jfieldID, jni_GetFieldID(JNIEnv *env, jclass clazz, |
|
2028 |
const char *name, const char *sig)) |
|
2029 |
JNIWrapper("GetFieldID"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2030 |
HOTSPOT_JNI_GETFIELDID_ENTRY(env, clazz, (char *) name, (char *) sig); |
1 | 2031 |
jfieldID ret = 0; |
2032 |
DT_RETURN_MARK(GetFieldID, jfieldID, (const jfieldID&)ret); |
|
2033 |
||
2034 |
// The class should have been loaded (we have an instance of the class |
|
2035 |
// passed in) so the field and signature should already be in the symbol |
|
2036 |
// table. If they're not there, the field doesn't exist. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2037 |
TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2038 |
TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2039 |
if (fieldname == NULL || signame == NULL) { |
1 | 2040 |
THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name); |
2041 |
} |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2042 |
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)); |
1 | 2043 |
// Make sure class is initialized before handing id's out to fields |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2044 |
k->initialize(CHECK_NULL); |
1 | 2045 |
|
2046 |
fieldDescriptor fd; |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2047 |
if (!k->is_instance_klass() || |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2048 |
!InstanceKlass::cast(k)->find_field(fieldname, signame, false, &fd)) { |
1 | 2049 |
THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name); |
2050 |
} |
|
2051 |
||
2052 |
// A jfieldID for a non-static field is simply the offset of the field within the instanceOop |
|
2053 |
// It may also have hash bits for k, if VerifyJNIFields is turned on. |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2054 |
ret = jfieldIDWorkaround::to_instance_jfieldID(k, fd.offset()); |
1 | 2055 |
return ret; |
2056 |
JNI_END |
|
2057 |
||
2058 |
||
2059 |
JNI_ENTRY(jobject, jni_GetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID)) |
|
2060 |
JNIWrapper("GetObjectField"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2061 |
HOTSPOT_JNI_GETOBJECTFIELD_ENTRY(env, obj, (uintptr_t) fieldID); |
1 | 2062 |
oop o = JNIHandles::resolve_non_null(obj); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2063 |
Klass* k = o->klass(); |
1 | 2064 |
int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); |
2065 |
// Keep JVMTI addition small and only check enabled flag here. |
|
2066 |
// jni_GetField_probe() assumes that is okay to create handles. |
|
2067 |
if (JvmtiExport::should_post_field_access()) { |
|
2068 |
o = JvmtiExport::jni_GetField_probe(thread, obj, o, k, fieldID, false); |
|
2069 |
} |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47796
diff
changeset
|
2070 |
oop loaded_obj = HeapAccess<ON_UNKNOWN_OOP_REF>::oop_load_at(o, offset); |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47796
diff
changeset
|
2071 |
jobject ret = JNIHandles::make_local(env, loaded_obj); |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47796
diff
changeset
|
2072 |
HOTSPOT_JNI_GETOBJECTFIELD_RETURN(ret); |
1 | 2073 |
return ret; |
2074 |
JNI_END |
|
2075 |
||
2076 |
||
10739 | 2077 |
|
2078 |
#define DEFINE_GETFIELD(Return,Fieldname,Result \ |
|
2079 |
, EntryProbe, ReturnProbe) \ |
|
2080 |
\ |
|
2081 |
DT_RETURN_MARK_DECL_FOR(Result, Get##Result##Field, Return \ |
|
2082 |
, ReturnProbe); \ |
|
2083 |
\ |
|
2084 |
JNI_QUICK_ENTRY(Return, jni_Get##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID)) \ |
|
2085 |
JNIWrapper("Get" XSTR(Result) "Field"); \ |
|
2086 |
\ |
|
2087 |
EntryProbe; \ |
|
2088 |
Return ret = 0;\ |
|
2089 |
DT_RETURN_MARK_FOR(Result, Get##Result##Field, Return, (const Return&)ret);\ |
|
2090 |
\ |
|
2091 |
oop o = JNIHandles::resolve_non_null(obj); \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2092 |
Klass* k = o->klass(); \ |
10739 | 2093 |
int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \ |
2094 |
/* Keep JVMTI addition small and only check enabled flag here. */ \ |
|
2095 |
/* jni_GetField_probe_nh() assumes that is not okay to create handles */ \ |
|
2096 |
/* and creates a ResetNoHandleMark. */ \ |
|
2097 |
if (JvmtiExport::should_post_field_access()) { \ |
|
2098 |
o = JvmtiExport::jni_GetField_probe_nh(thread, obj, o, k, fieldID, false); \ |
|
2099 |
} \ |
|
2100 |
ret = o->Fieldname##_field(offset); \ |
|
2101 |
return ret; \ |
|
2102 |
JNI_END |
|
2103 |
||
2104 |
DEFINE_GETFIELD(jboolean, bool, Boolean |
|
2105 |
, HOTSPOT_JNI_GETBOOLEANFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2106 |
HOTSPOT_JNI_GETBOOLEANFIELD_RETURN(_ret_ref)) |
|
2107 |
DEFINE_GETFIELD(jbyte, byte, Byte |
|
2108 |
, HOTSPOT_JNI_GETBYTEFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2109 |
HOTSPOT_JNI_GETBYTEFIELD_RETURN(_ret_ref)) |
|
2110 |
DEFINE_GETFIELD(jchar, char, Char |
|
2111 |
, HOTSPOT_JNI_GETCHARFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2112 |
HOTSPOT_JNI_GETCHARFIELD_RETURN(_ret_ref)) |
|
2113 |
DEFINE_GETFIELD(jshort, short, Short |
|
2114 |
, HOTSPOT_JNI_GETSHORTFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2115 |
HOTSPOT_JNI_GETSHORTFIELD_RETURN(_ret_ref)) |
|
2116 |
DEFINE_GETFIELD(jint, int, Int |
|
2117 |
, HOTSPOT_JNI_GETINTFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2118 |
HOTSPOT_JNI_GETINTFIELD_RETURN(_ret_ref)) |
|
2119 |
DEFINE_GETFIELD(jlong, long, Long |
|
2120 |
, HOTSPOT_JNI_GETLONGFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2121 |
HOTSPOT_JNI_GETLONGFIELD_RETURN(_ret_ref)) |
|
2122 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
2123 |
DEFINE_GETFIELD(jfloat, float, Float |
|
2124 |
, HOTSPOT_JNI_GETFLOATFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2125 |
HOTSPOT_JNI_GETFLOATFIELD_RETURN()) |
|
2126 |
DEFINE_GETFIELD(jdouble, double, Double |
|
2127 |
, HOTSPOT_JNI_GETDOUBLEFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2128 |
HOTSPOT_JNI_GETDOUBLEFIELD_RETURN()) |
|
2129 |
||
1 | 2130 |
address jni_GetBooleanField_addr() { |
2131 |
return (address)jni_GetBooleanField; |
|
2132 |
} |
|
2133 |
address jni_GetByteField_addr() { |
|
2134 |
return (address)jni_GetByteField; |
|
2135 |
} |
|
2136 |
address jni_GetCharField_addr() { |
|
2137 |
return (address)jni_GetCharField; |
|
2138 |
} |
|
2139 |
address jni_GetShortField_addr() { |
|
2140 |
return (address)jni_GetShortField; |
|
2141 |
} |
|
2142 |
address jni_GetIntField_addr() { |
|
2143 |
return (address)jni_GetIntField; |
|
2144 |
} |
|
2145 |
address jni_GetLongField_addr() { |
|
2146 |
return (address)jni_GetLongField; |
|
2147 |
} |
|
2148 |
address jni_GetFloatField_addr() { |
|
2149 |
return (address)jni_GetFloatField; |
|
2150 |
} |
|
2151 |
address jni_GetDoubleField_addr() { |
|
2152 |
return (address)jni_GetDoubleField; |
|
2153 |
} |
|
2154 |
||
2155 |
JNI_QUICK_ENTRY(void, jni_SetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID, jobject value)) |
|
2156 |
JNIWrapper("SetObjectField"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2157 |
HOTSPOT_JNI_SETOBJECTFIELD_ENTRY(env, obj, (uintptr_t) fieldID, value); |
1 | 2158 |
oop o = JNIHandles::resolve_non_null(obj); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2159 |
Klass* k = o->klass(); |
1 | 2160 |
int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); |
2161 |
// Keep JVMTI addition small and only check enabled flag here. |
|
2162 |
// jni_SetField_probe_nh() assumes that is not okay to create handles |
|
2163 |
// and creates a ResetNoHandleMark. |
|
2164 |
if (JvmtiExport::should_post_field_modification()) { |
|
2165 |
jvalue field_value; |
|
2166 |
field_value.l = value; |
|
2167 |
o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, 'L', (jvalue *)&field_value); |
|
2168 |
} |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47796
diff
changeset
|
2169 |
HeapAccess<ON_UNKNOWN_OOP_REF>::oop_store_at(o, offset, JNIHandles::resolve(value)); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2170 |
HOTSPOT_JNI_SETOBJECTFIELD_RETURN(); |
1 | 2171 |
JNI_END |
2172 |
||
10739 | 2173 |
|
2174 |
#define DEFINE_SETFIELD(Argument,Fieldname,Result,SigType,unionType \ |
|
2175 |
, EntryProbe, ReturnProbe) \ |
|
2176 |
\ |
|
2177 |
JNI_QUICK_ENTRY(void, jni_Set##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID, Argument value)) \ |
|
2178 |
JNIWrapper("Set" XSTR(Result) "Field"); \ |
|
2179 |
\ |
|
2180 |
EntryProbe; \ |
|
2181 |
\ |
|
2182 |
oop o = JNIHandles::resolve_non_null(obj); \ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2183 |
Klass* k = o->klass(); \ |
10739 | 2184 |
int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \ |
2185 |
/* Keep JVMTI addition small and only check enabled flag here. */ \ |
|
2186 |
/* jni_SetField_probe_nh() assumes that is not okay to create handles */ \ |
|
2187 |
/* and creates a ResetNoHandleMark. */ \ |
|
2188 |
if (JvmtiExport::should_post_field_modification()) { \ |
|
2189 |
jvalue field_value; \ |
|
2190 |
field_value.unionType = value; \ |
|
2191 |
o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, SigType, (jvalue *)&field_value); \ |
|
2192 |
} \ |
|
37480 | 2193 |
if (SigType == 'Z') { value = ((jboolean)value) & 1; } \ |
10739 | 2194 |
o->Fieldname##_field_put(offset, value); \ |
2195 |
ReturnProbe; \ |
|
2196 |
JNI_END |
|
2197 |
||
2198 |
DEFINE_SETFIELD(jboolean, bool, Boolean, 'Z', z |
|
2199 |
, HOTSPOT_JNI_SETBOOLEANFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value), |
|
2200 |
HOTSPOT_JNI_SETBOOLEANFIELD_RETURN()) |
|
2201 |
DEFINE_SETFIELD(jbyte, byte, Byte, 'B', b |
|
2202 |
, HOTSPOT_JNI_SETBYTEFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value), |
|
2203 |
HOTSPOT_JNI_SETBYTEFIELD_RETURN()) |
|
2204 |
DEFINE_SETFIELD(jchar, char, Char, 'C', c |
|
2205 |
, HOTSPOT_JNI_SETCHARFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value), |
|
2206 |
HOTSPOT_JNI_SETCHARFIELD_RETURN()) |
|
2207 |
DEFINE_SETFIELD(jshort, short, Short, 'S', s |
|
2208 |
, HOTSPOT_JNI_SETSHORTFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value), |
|
2209 |
HOTSPOT_JNI_SETSHORTFIELD_RETURN()) |
|
2210 |
DEFINE_SETFIELD(jint, int, Int, 'I', i |
|
2211 |
, HOTSPOT_JNI_SETINTFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value), |
|
2212 |
HOTSPOT_JNI_SETINTFIELD_RETURN()) |
|
2213 |
DEFINE_SETFIELD(jlong, long, Long, 'J', j |
|
2214 |
, HOTSPOT_JNI_SETLONGFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value), |
|
2215 |
HOTSPOT_JNI_SETLONGFIELD_RETURN()) |
|
2216 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
2217 |
DEFINE_SETFIELD(jfloat, float, Float, 'F', f |
|
2218 |
, HOTSPOT_JNI_SETFLOATFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2219 |
HOTSPOT_JNI_SETFLOATFIELD_RETURN()) |
|
2220 |
DEFINE_SETFIELD(jdouble, double, Double, 'D', d |
|
2221 |
, HOTSPOT_JNI_SETDOUBLEFIELD_ENTRY(env, obj, (uintptr_t)fieldID), |
|
2222 |
HOTSPOT_JNI_SETDOUBLEFIELD_RETURN()) |
|
22796 | 2223 |
|
10739 | 2224 |
DT_RETURN_MARK_DECL(ToReflectedField, jobject |
2225 |
, HOTSPOT_JNI_TOREFLECTEDFIELD_RETURN(_ret_ref)); |
|
1 | 2226 |
|
2227 |
JNI_ENTRY(jobject, jni_ToReflectedField(JNIEnv *env, jclass cls, jfieldID fieldID, jboolean isStatic)) |
|
2228 |
JNIWrapper("ToReflectedField"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2229 |
HOTSPOT_JNI_TOREFLECTEDFIELD_ENTRY(env, cls, (uintptr_t) fieldID, isStatic); |
1 | 2230 |
jobject ret = NULL; |
2231 |
DT_RETURN_MARK(ToReflectedField, jobject, (const jobject&)ret); |
|
2232 |
||
2233 |
fieldDescriptor fd; |
|
2234 |
bool found = false; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2235 |
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(cls)); |
1 | 2236 |
|
2237 |
assert(jfieldIDWorkaround::is_static_jfieldID(fieldID) == (isStatic != 0), "invalid fieldID"); |
|
2238 |
||
2239 |
if (isStatic) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2240 |
// Static field. The fieldID a JNIid specifying the field holder and the offset within the Klass*. |
1 | 2241 |
JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); |
2242 |
assert(id->is_static_field_id(), "invalid static field id"); |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8076
diff
changeset
|
2243 |
found = id->find_local_field(&fd); |
1 | 2244 |
} else { |
2245 |
// Non-static field. The fieldID is really the offset of the field within the instanceOop. |
|
2246 |
int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2247 |
found = InstanceKlass::cast(k)->find_field_from_offset(offset, false, &fd); |
1 | 2248 |
} |
2249 |
assert(found, "bad fieldID passed into jni_ToReflectedField"); |
|
24456
8c7933fa5a1f
8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents:
24424
diff
changeset
|
2250 |
oop reflected = Reflection::new_field(&fd, CHECK_NULL); |
1 | 2251 |
ret = JNIHandles::make_local(env, reflected); |
2252 |
return ret; |
|
2253 |
JNI_END |
|
2254 |
||
2255 |
||
2256 |
// |
|
2257 |
// Accessing Static Fields |
|
2258 |
// |
|
10739 | 2259 |
DT_RETURN_MARK_DECL(GetStaticFieldID, jfieldID |
2260 |
, HOTSPOT_JNI_GETSTATICFIELDID_RETURN((uintptr_t)_ret_ref)); |
|
1 | 2261 |
|
2262 |
JNI_ENTRY(jfieldID, jni_GetStaticFieldID(JNIEnv *env, jclass clazz, |
|
2263 |
const char *name, const char *sig)) |
|
2264 |
JNIWrapper("GetStaticFieldID"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2265 |
HOTSPOT_JNI_GETSTATICFIELDID_ENTRY(env, clazz, (char *) name, (char *) sig); |
1 | 2266 |
jfieldID ret = NULL; |
2267 |
DT_RETURN_MARK(GetStaticFieldID, jfieldID, (const jfieldID&)ret); |
|
2268 |
||
2269 |
// The class should have been loaded (we have an instance of the class |
|
2270 |
// passed in) so the field and signature should already be in the symbol |
|
2271 |
// table. If they're not there, the field doesn't exist. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2272 |
TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2273 |
TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2274 |
if (fieldname == NULL || signame == NULL) { |
1 | 2275 |
THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name); |
2276 |
} |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2277 |
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)); |
1 | 2278 |
// Make sure class is initialized before handing id's out to static fields |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2279 |
k->initialize(CHECK_NULL); |
1 | 2280 |
|
2281 |
fieldDescriptor fd; |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2282 |
if (!k->is_instance_klass() || |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2283 |
!InstanceKlass::cast(k)->find_field(fieldname, signame, true, &fd)) { |
1 | 2284 |
THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name); |
2285 |
} |
|
2286 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2287 |
// A jfieldID for a static field is a JNIid specifying the field holder and the offset within the Klass* |
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13977
diff
changeset
|
2288 |
JNIid* id = fd.field_holder()->jni_id_for(fd.offset()); |
1 | 2289 |
debug_only(id->set_is_static_field_id();) |
2290 |
||
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8076
diff
changeset
|
2291 |
debug_only(id->verify(fd.field_holder())); |
1 | 2292 |
|
2293 |
ret = jfieldIDWorkaround::to_static_jfieldID(id); |
|
2294 |
return ret; |
|
2295 |
JNI_END |
|
2296 |
||
2297 |
||
2298 |
JNI_ENTRY(jobject, jni_GetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID)) |
|
2299 |
JNIWrapper("GetStaticObjectField"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2300 |
HOTSPOT_JNI_GETSTATICOBJECTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID); |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
2301 |
#if INCLUDE_JNI_CHECK |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2302 |
DEBUG_ONLY(Klass* param_k = jniCheck::validate_class(thread, clazz);) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
2303 |
#endif // INCLUDE_JNI_CHECK |
1 | 2304 |
JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); |
2305 |
assert(id->is_static_field_id(), "invalid static field id"); |
|
2306 |
// Keep JVMTI addition small and only check enabled flag here. |
|
2307 |
// jni_GetField_probe() assumes that is okay to create handles. |
|
2308 |
if (JvmtiExport::should_post_field_access()) { |
|
2309 |
JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true); |
|
2310 |
} |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8076
diff
changeset
|
2311 |
jobject ret = JNIHandles::make_local(id->holder()->java_mirror()->obj_field(id->offset())); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2312 |
HOTSPOT_JNI_GETSTATICOBJECTFIELD_RETURN(ret); |
1 | 2313 |
return ret; |
2314 |
JNI_END |
|
2315 |
||
10739 | 2316 |
|
2317 |
#define DEFINE_GETSTATICFIELD(Return,Fieldname,Result \ |
|
2318 |
, EntryProbe, ReturnProbe) \ |
|
2319 |
\ |
|
2320 |
DT_RETURN_MARK_DECL_FOR(Result, GetStatic##Result##Field, Return \ |
|
2321 |
, ReturnProbe); \ |
|
2322 |
\ |
|
2323 |
JNI_ENTRY(Return, jni_GetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID)) \ |
|
2324 |
JNIWrapper("GetStatic" XSTR(Result) "Field"); \ |
|
2325 |
EntryProbe; \ |
|
2326 |
Return ret = 0;\ |
|
2327 |
DT_RETURN_MARK_FOR(Result, GetStatic##Result##Field, Return, \ |
|
2328 |
(const Return&)ret);\ |
|
2329 |
JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \ |
|
2330 |
assert(id->is_static_field_id(), "invalid static field id"); \ |
|
2331 |
/* Keep JVMTI addition small and only check enabled flag here. */ \ |
|
2332 |
/* jni_GetField_probe() assumes that is okay to create handles. */ \ |
|
2333 |
if (JvmtiExport::should_post_field_access()) { \ |
|
2334 |
JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true); \ |
|
2335 |
} \ |
|
2336 |
ret = id->holder()->java_mirror()-> Fieldname##_field (id->offset()); \ |
|
2337 |
return ret;\ |
|
2338 |
JNI_END |
|
2339 |
||
2340 |
DEFINE_GETSTATICFIELD(jboolean, bool, Boolean |
|
2341 |
, HOTSPOT_JNI_GETSTATICBOOLEANFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICBOOLEANFIELD_RETURN(_ret_ref)) |
|
2342 |
DEFINE_GETSTATICFIELD(jbyte, byte, Byte |
|
2343 |
, HOTSPOT_JNI_GETSTATICBYTEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICBYTEFIELD_RETURN(_ret_ref) ) |
|
2344 |
DEFINE_GETSTATICFIELD(jchar, char, Char |
|
2345 |
, HOTSPOT_JNI_GETSTATICCHARFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICCHARFIELD_RETURN(_ret_ref) ) |
|
2346 |
DEFINE_GETSTATICFIELD(jshort, short, Short |
|
2347 |
, HOTSPOT_JNI_GETSTATICSHORTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICSHORTFIELD_RETURN(_ret_ref) ) |
|
2348 |
DEFINE_GETSTATICFIELD(jint, int, Int |
|
2349 |
, HOTSPOT_JNI_GETSTATICINTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICINTFIELD_RETURN(_ret_ref) ) |
|
2350 |
DEFINE_GETSTATICFIELD(jlong, long, Long |
|
2351 |
, HOTSPOT_JNI_GETSTATICLONGFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICLONGFIELD_RETURN(_ret_ref) ) |
|
2352 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
2353 |
DEFINE_GETSTATICFIELD(jfloat, float, Float |
|
2354 |
, HOTSPOT_JNI_GETSTATICFLOATFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICFLOATFIELD_RETURN() ) |
|
2355 |
DEFINE_GETSTATICFIELD(jdouble, double, Double |
|
2356 |
, HOTSPOT_JNI_GETSTATICDOUBLEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICDOUBLEFIELD_RETURN() ) |
|
1 | 2357 |
|
2358 |
JNI_ENTRY(void, jni_SetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID, jobject value)) |
|
2359 |
JNIWrapper("SetStaticObjectField"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2360 |
HOTSPOT_JNI_SETSTATICOBJECTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value); |
1 | 2361 |
JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); |
2362 |
assert(id->is_static_field_id(), "invalid static field id"); |
|
2363 |
// Keep JVMTI addition small and only check enabled flag here. |
|
2364 |
// jni_SetField_probe() assumes that is okay to create handles. |
|
2365 |
if (JvmtiExport::should_post_field_modification()) { |
|
2366 |
jvalue field_value; |
|
2367 |
field_value.l = value; |
|
2368 |
JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, 'L', (jvalue *)&field_value); |
|
2369 |
} |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8076
diff
changeset
|
2370 |
id->holder()->java_mirror()->obj_field_put(id->offset(), JNIHandles::resolve(value)); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2371 |
HOTSPOT_JNI_SETSTATICOBJECTFIELD_RETURN(); |
1 | 2372 |
JNI_END |
2373 |
||
2374 |
||
10739 | 2375 |
|
2376 |
#define DEFINE_SETSTATICFIELD(Argument,Fieldname,Result,SigType,unionType \ |
|
2377 |
, EntryProbe, ReturnProbe) \ |
|
2378 |
\ |
|
2379 |
JNI_ENTRY(void, jni_SetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID, Argument value)) \ |
|
2380 |
JNIWrapper("SetStatic" XSTR(Result) "Field"); \ |
|
2381 |
EntryProbe; \ |
|
2382 |
\ |
|
2383 |
JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \ |
|
2384 |
assert(id->is_static_field_id(), "invalid static field id"); \ |
|
2385 |
/* Keep JVMTI addition small and only check enabled flag here. */ \ |
|
2386 |
/* jni_SetField_probe() assumes that is okay to create handles. */ \ |
|
2387 |
if (JvmtiExport::should_post_field_modification()) { \ |
|
2388 |
jvalue field_value; \ |
|
2389 |
field_value.unionType = value; \ |
|
2390 |
JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, SigType, (jvalue *)&field_value); \ |
|
2391 |
} \ |
|
37480 | 2392 |
if (SigType == 'Z') { value = ((jboolean)value) & 1; } \ |
10739 | 2393 |
id->holder()->java_mirror()-> Fieldname##_field_put (id->offset(), value); \ |
2394 |
ReturnProbe;\ |
|
2395 |
JNI_END |
|
2396 |
||
2397 |
DEFINE_SETSTATICFIELD(jboolean, bool, Boolean, 'Z', z |
|
22190
d306a75a70d3
8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents:
21112
diff
changeset
|
2398 |
, HOTSPOT_JNI_SETSTATICBOOLEANFIELD_ENTRY(env, clazz, (uintptr_t)fieldID, value), |
23997
73485c7e8122
8039947: Dtrace return probe name for jni_SetStaticBooleanField named incorrectly
dsimms
parents:
23859
diff
changeset
|
2399 |
HOTSPOT_JNI_SETSTATICBOOLEANFIELD_RETURN()) |
10739 | 2400 |
DEFINE_SETSTATICFIELD(jbyte, byte, Byte, 'B', b |
2401 |
, HOTSPOT_JNI_SETSTATICBYTEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value), |
|
2402 |
HOTSPOT_JNI_SETSTATICBYTEFIELD_RETURN()) |
|
2403 |
DEFINE_SETSTATICFIELD(jchar, char, Char, 'C', c |
|
2404 |
, HOTSPOT_JNI_SETSTATICCHARFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value), |
|
2405 |
HOTSPOT_JNI_SETSTATICCHARFIELD_RETURN()) |
|
2406 |
DEFINE_SETSTATICFIELD(jshort, short, Short, 'S', s |
|
2407 |
, HOTSPOT_JNI_SETSTATICSHORTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value), |
|
2408 |
HOTSPOT_JNI_SETSTATICSHORTFIELD_RETURN()) |
|
2409 |
DEFINE_SETSTATICFIELD(jint, int, Int, 'I', i |
|
2410 |
, HOTSPOT_JNI_SETSTATICINTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value), |
|
2411 |
HOTSPOT_JNI_SETSTATICINTFIELD_RETURN()) |
|
2412 |
DEFINE_SETSTATICFIELD(jlong, long, Long, 'J', j |
|
2413 |
, HOTSPOT_JNI_SETSTATICLONGFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value), |
|
2414 |
HOTSPOT_JNI_SETSTATICLONGFIELD_RETURN()) |
|
2415 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
2416 |
DEFINE_SETSTATICFIELD(jfloat, float, Float, 'F', f |
|
2417 |
, HOTSPOT_JNI_SETSTATICFLOATFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), |
|
2418 |
HOTSPOT_JNI_SETSTATICFLOATFIELD_RETURN()) |
|
2419 |
DEFINE_SETSTATICFIELD(jdouble, double, Double, 'D', d |
|
2420 |
, HOTSPOT_JNI_SETSTATICDOUBLEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), |
|
2421 |
HOTSPOT_JNI_SETSTATICDOUBLEFIELD_RETURN()) |
|
1 | 2422 |
|
2423 |
// |
|
2424 |
// String Operations |
|
2425 |
// |
|
2426 |
||
2427 |
// Unicode Interface |
|
2428 |
||
10739 | 2429 |
DT_RETURN_MARK_DECL(NewString, jstring |
2430 |
, HOTSPOT_JNI_NEWSTRING_RETURN(_ret_ref)); |
|
1 | 2431 |
|
2432 |
JNI_ENTRY(jstring, jni_NewString(JNIEnv *env, const jchar *unicodeChars, jsize len)) |
|
2433 |
JNIWrapper("NewString"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2434 |
HOTSPOT_JNI_NEWSTRING_ENTRY(env, (uint16_t *) unicodeChars, len); |
1 | 2435 |
jstring ret = NULL; |
2436 |
DT_RETURN_MARK(NewString, jstring, (const jstring&)ret); |
|
2437 |
oop string=java_lang_String::create_oop_from_unicode((jchar*) unicodeChars, len, CHECK_NULL); |
|
2438 |
ret = (jstring) JNIHandles::make_local(env, string); |
|
2439 |
return ret; |
|
2440 |
JNI_END |
|
2441 |
||
2442 |
||
2443 |
JNI_QUICK_ENTRY(jsize, jni_GetStringLength(JNIEnv *env, jstring string)) |
|
2444 |
JNIWrapper("GetStringLength"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2445 |
HOTSPOT_JNI_GETSTRINGLENGTH_ENTRY(env, string); |
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2446 |
jsize ret = 0; |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2447 |
oop s = JNIHandles::resolve_non_null(string); |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2448 |
if (java_lang_String::value(s) != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2449 |
ret = java_lang_String::length(s); |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2450 |
} |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2451 |
HOTSPOT_JNI_GETSTRINGLENGTH_RETURN(ret); |
1 | 2452 |
return ret; |
2453 |
JNI_END |
|
2454 |
||
2455 |
||
2456 |
JNI_QUICK_ENTRY(const jchar*, jni_GetStringChars( |
|
2457 |
JNIEnv *env, jstring string, jboolean *isCopy)) |
|
2458 |
JNIWrapper("GetStringChars"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2459 |
HOTSPOT_JNI_GETSTRINGCHARS_ENTRY(env, string, (uintptr_t *) isCopy); |
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2460 |
jchar* buf = NULL; |
1 | 2461 |
oop s = JNIHandles::resolve_non_null(string); |
2462 |
typeArrayOop s_value = java_lang_String::value(s); |
|
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2463 |
if (s_value != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2464 |
int s_len = java_lang_String::length(s); |
33628 | 2465 |
bool is_latin1 = java_lang_String::is_latin1(s); |
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2466 |
buf = NEW_C_HEAP_ARRAY_RETURN_NULL(jchar, s_len + 1, mtInternal); // add one for zero termination |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2467 |
/* JNI Specification states return NULL on OOM */ |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2468 |
if (buf != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2469 |
if (s_len > 0) { |
33628 | 2470 |
if (!is_latin1) { |
2471 |
memcpy(buf, s_value->char_at_addr(0), sizeof(jchar)*s_len); |
|
2472 |
} else { |
|
2473 |
for (int i = 0; i < s_len; i++) { |
|
2474 |
buf[i] = ((jchar) s_value->byte_at(i)) & 0xff; |
|
2475 |
} |
|
2476 |
} |
|
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2477 |
} |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2478 |
buf[s_len] = 0; |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2479 |
//%note jni_5 |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2480 |
if (isCopy != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2481 |
*isCopy = JNI_TRUE; |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2482 |
} |
19545
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2483 |
} |
1 | 2484 |
} |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2485 |
HOTSPOT_JNI_GETSTRINGCHARS_RETURN(buf); |
1 | 2486 |
return buf; |
2487 |
JNI_END |
|
2488 |
||
2489 |
||
2490 |
JNI_QUICK_ENTRY(void, jni_ReleaseStringChars(JNIEnv *env, jstring str, const jchar *chars)) |
|
2491 |
JNIWrapper("ReleaseStringChars"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2492 |
HOTSPOT_JNI_RELEASESTRINGCHARS_ENTRY(env, str, (uint16_t *) chars); |
1 | 2493 |
//%note jni_6 |
2494 |
if (chars != NULL) { |
|
2495 |
// Since String objects are supposed to be immutable, don't copy any |
|
2496 |
// new data back. A bad user will have to go after the char array. |
|
2497 |
FreeHeap((void*) chars); |
|
2498 |
} |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2499 |
HOTSPOT_JNI_RELEASESTRINGCHARS_RETURN(); |
1 | 2500 |
JNI_END |
2501 |
||
2502 |
||
2503 |
// UTF Interface |
|
2504 |
||
10739 | 2505 |
DT_RETURN_MARK_DECL(NewStringUTF, jstring |
2506 |
, HOTSPOT_JNI_NEWSTRINGUTF_RETURN(_ret_ref)); |
|
1 | 2507 |
|
2508 |
JNI_ENTRY(jstring, jni_NewStringUTF(JNIEnv *env, const char *bytes)) |
|
2509 |
JNIWrapper("NewStringUTF"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2510 |
HOTSPOT_JNI_NEWSTRINGUTF_ENTRY(env, (char *) bytes); |
1 | 2511 |
jstring ret; |
2512 |
DT_RETURN_MARK(NewStringUTF, jstring, (const jstring&)ret); |
|
2513 |
||
2514 |
oop result = java_lang_String::create_oop_from_str((char*) bytes, CHECK_NULL); |
|
2515 |
ret = (jstring) JNIHandles::make_local(env, result); |
|
2516 |
return ret; |
|
2517 |
JNI_END |
|
2518 |
||
2519 |
||
2520 |
JNI_ENTRY(jsize, jni_GetStringUTFLength(JNIEnv *env, jstring string)) |
|
2521 |
JNIWrapper("GetStringUTFLength"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2522 |
HOTSPOT_JNI_GETSTRINGUTFLENGTH_ENTRY(env, string); |
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2523 |
jsize ret = 0; |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2524 |
oop java_string = JNIHandles::resolve_non_null(string); |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2525 |
if (java_lang_String::value(java_string) != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2526 |
ret = java_lang_String::utf8_length(java_string); |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2527 |
} |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2528 |
HOTSPOT_JNI_GETSTRINGUTFLENGTH_RETURN(ret); |
1 | 2529 |
return ret; |
2530 |
JNI_END |
|
2531 |
||
2532 |
||
2533 |
JNI_ENTRY(const char*, jni_GetStringUTFChars(JNIEnv *env, jstring string, jboolean *isCopy)) |
|
2534 |
JNIWrapper("GetStringUTFChars"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2535 |
HOTSPOT_JNI_GETSTRINGUTFCHARS_ENTRY(env, string, (uintptr_t *) isCopy); |
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2536 |
char* result = NULL; |
7414
940d84ca7fca
6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents:
7405
diff
changeset
|
2537 |
oop java_string = JNIHandles::resolve_non_null(string); |
20387
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2538 |
if (java_lang_String::value(java_string) != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2539 |
size_t length = java_lang_String::utf8_length(java_string); |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2540 |
/* JNI Specification states return NULL on OOM */ |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2541 |
result = AllocateHeap(length + 1, mtInternal, 0, AllocFailStrategy::RETURN_NULL); |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2542 |
if (result != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2543 |
java_lang_String::as_utf8_string(java_string, result, (int) length + 1); |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2544 |
if (isCopy != NULL) { |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2545 |
*isCopy = JNI_TRUE; |
df9f9f220120
8025922: JNI access to Strings need to check if the value field is non-null
sla
parents:
20084
diff
changeset
|
2546 |
} |
19545
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2547 |
} |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2548 |
} |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2549 |
HOTSPOT_JNI_GETSTRINGUTFCHARS_RETURN(result); |
1 | 2550 |
return result; |
2551 |
JNI_END |
|
2552 |
||
2553 |
||
2554 |
JNI_LEAF(void, jni_ReleaseStringUTFChars(JNIEnv *env, jstring str, const char *chars)) |
|
2555 |
JNIWrapper("ReleaseStringUTFChars"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2556 |
HOTSPOT_JNI_RELEASESTRINGUTFCHARS_ENTRY(env, str, (char *) chars); |
1 | 2557 |
if (chars != NULL) { |
2558 |
FreeHeap((char*) chars); |
|
2559 |
} |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2560 |
HOTSPOT_JNI_RELEASESTRINGUTFCHARS_RETURN(); |
1 | 2561 |
JNI_END |
2562 |
||
2563 |
||
2564 |
JNI_QUICK_ENTRY(jsize, jni_GetArrayLength(JNIEnv *env, jarray array)) |
|
2565 |
JNIWrapper("GetArrayLength"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2566 |
HOTSPOT_JNI_GETARRAYLENGTH_ENTRY(env, array); |
1 | 2567 |
arrayOop a = arrayOop(JNIHandles::resolve_non_null(array)); |
2568 |
assert(a->is_array(), "must be array"); |
|
2569 |
jsize ret = a->length(); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2570 |
HOTSPOT_JNI_GETARRAYLENGTH_RETURN(ret); |
1 | 2571 |
return ret; |
2572 |
JNI_END |
|
2573 |
||
2574 |
||
2575 |
// |
|
2576 |
// Object Array Operations |
|
2577 |
// |
|
2578 |
||
10739 | 2579 |
DT_RETURN_MARK_DECL(NewObjectArray, jobjectArray |
2580 |
, HOTSPOT_JNI_NEWOBJECTARRAY_RETURN(_ret_ref)); |
|
1 | 2581 |
|
2582 |
JNI_ENTRY(jobjectArray, jni_NewObjectArray(JNIEnv *env, jsize length, jclass elementClass, jobject initialElement)) |
|
2583 |
JNIWrapper("NewObjectArray"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2584 |
HOTSPOT_JNI_NEWOBJECTARRAY_ENTRY(env, length, elementClass, initialElement); |
1 | 2585 |
jobjectArray ret = NULL; |
2586 |
DT_RETURN_MARK(NewObjectArray, jobjectArray, (const jobjectArray&)ret); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2587 |
Klass* ek = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(elementClass)); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2588 |
Klass* ak = ek->array_klass(CHECK_NULL); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2589 |
ObjArrayKlass::cast(ak)->initialize(CHECK_NULL); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2590 |
objArrayOop result = ObjArrayKlass::cast(ak)->allocate(length, CHECK_NULL); |
1 | 2591 |
oop initial_value = JNIHandles::resolve(initialElement); |
2592 |
if (initial_value != NULL) { // array already initialized with NULL |
|
2593 |
for (int index = 0; index < length; index++) { |
|
2594 |
result->obj_at_put(index, initial_value); |
|
2595 |
} |
|
2596 |
} |
|
2597 |
ret = (jobjectArray) JNIHandles::make_local(env, result); |
|
2598 |
return ret; |
|
2599 |
JNI_END |
|
2600 |
||
10739 | 2601 |
DT_RETURN_MARK_DECL(GetObjectArrayElement, jobject |
2602 |
, HOTSPOT_JNI_GETOBJECTARRAYELEMENT_RETURN(_ret_ref)); |
|
1 | 2603 |
|
2604 |
JNI_ENTRY(jobject, jni_GetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index)) |
|
2605 |
JNIWrapper("GetObjectArrayElement"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2606 |
HOTSPOT_JNI_GETOBJECTARRAYELEMENT_ENTRY(env, array, index); |
1 | 2607 |
jobject ret = NULL; |
2608 |
DT_RETURN_MARK(GetObjectArrayElement, jobject, (const jobject&)ret); |
|
2609 |
objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array)); |
|
2610 |
if (a->is_within_bounds(index)) { |
|
4089
14bd2cd13a2c
6893483: DTrace probe return values for a couple JNI methods are wrong
kamg
parents:
3820
diff
changeset
|
2611 |
ret = JNIHandles::make_local(env, a->obj_at(index)); |
1 | 2612 |
return ret; |
2613 |
} else { |
|
2614 |
char buf[jintAsStringSize]; |
|
2615 |
sprintf(buf, "%d", index); |
|
2616 |
THROW_MSG_0(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf); |
|
2617 |
} |
|
2618 |
JNI_END |
|
2619 |
||
10739 | 2620 |
DT_VOID_RETURN_MARK_DECL(SetObjectArrayElement |
2621 |
, HOTSPOT_JNI_SETOBJECTARRAYELEMENT_RETURN()); |
|
1 | 2622 |
|
2623 |
JNI_ENTRY(void, jni_SetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index, jobject value)) |
|
2624 |
JNIWrapper("SetObjectArrayElement"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2625 |
HOTSPOT_JNI_SETOBJECTARRAYELEMENT_ENTRY(env, array, index, value); |
1 | 2626 |
DT_VOID_RETURN_MARK(SetObjectArrayElement); |
2627 |
||
2628 |
objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array)); |
|
2629 |
oop v = JNIHandles::resolve(value); |
|
2630 |
if (a->is_within_bounds(index)) { |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
2631 |
if (v == NULL || v->is_a(ObjArrayKlass::cast(a->klass())->element_klass())) { |
1 | 2632 |
a->obj_at_put(index, v); |
2633 |
} else { |
|
2634 |
THROW(vmSymbols::java_lang_ArrayStoreException()); |
|
2635 |
} |
|
2636 |
} else { |
|
2637 |
char buf[jintAsStringSize]; |
|
2638 |
sprintf(buf, "%d", index); |
|
2639 |
THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf); |
|
2640 |
} |
|
2641 |
JNI_END |
|
2642 |
||
2643 |
||
10739 | 2644 |
|
2645 |
#define DEFINE_NEWSCALARARRAY(Return,Allocator,Result \ |
|
2646 |
,EntryProbe,ReturnProbe) \ |
|
2647 |
\ |
|
2648 |
DT_RETURN_MARK_DECL(New##Result##Array, Return \ |
|
2649 |
, ReturnProbe); \ |
|
2650 |
\ |
|
2651 |
JNI_ENTRY(Return, \ |
|
2652 |
jni_New##Result##Array(JNIEnv *env, jsize len)) \ |
|
2653 |
JNIWrapper("New" XSTR(Result) "Array"); \ |
|
2654 |
EntryProbe; \ |
|
2655 |
Return ret = NULL;\ |
|
2656 |
DT_RETURN_MARK(New##Result##Array, Return, (const Return&)ret);\ |
|
2657 |
\ |
|
2658 |
oop obj= oopFactory::Allocator(len, CHECK_0); \ |
|
2659 |
ret = (Return) JNIHandles::make_local(env, obj); \ |
|
2660 |
return ret;\ |
|
2661 |
JNI_END |
|
2662 |
||
2663 |
DEFINE_NEWSCALARARRAY(jbooleanArray, new_boolArray, Boolean, |
|
2664 |
HOTSPOT_JNI_NEWBOOLEANARRAY_ENTRY(env, len), |
|
2665 |
HOTSPOT_JNI_NEWBOOLEANARRAY_RETURN(_ret_ref)) |
|
2666 |
DEFINE_NEWSCALARARRAY(jbyteArray, new_byteArray, Byte, |
|
2667 |
HOTSPOT_JNI_NEWBYTEARRAY_ENTRY(env, len), |
|
2668 |
HOTSPOT_JNI_NEWBYTEARRAY_RETURN(_ret_ref)) |
|
2669 |
DEFINE_NEWSCALARARRAY(jshortArray, new_shortArray, Short, |
|
2670 |
HOTSPOT_JNI_NEWSHORTARRAY_ENTRY(env, len), |
|
2671 |
HOTSPOT_JNI_NEWSHORTARRAY_RETURN(_ret_ref)) |
|
2672 |
DEFINE_NEWSCALARARRAY(jcharArray, new_charArray, Char, |
|
2673 |
HOTSPOT_JNI_NEWCHARARRAY_ENTRY(env, len), |
|
2674 |
HOTSPOT_JNI_NEWCHARARRAY_RETURN(_ret_ref)) |
|
2675 |
DEFINE_NEWSCALARARRAY(jintArray, new_intArray, Int, |
|
2676 |
HOTSPOT_JNI_NEWINTARRAY_ENTRY(env, len), |
|
2677 |
HOTSPOT_JNI_NEWINTARRAY_RETURN(_ret_ref)) |
|
2678 |
DEFINE_NEWSCALARARRAY(jlongArray, new_longArray, Long, |
|
2679 |
HOTSPOT_JNI_NEWLONGARRAY_ENTRY(env, len), |
|
2680 |
HOTSPOT_JNI_NEWLONGARRAY_RETURN(_ret_ref)) |
|
2681 |
DEFINE_NEWSCALARARRAY(jfloatArray, new_singleArray, Float, |
|
2682 |
HOTSPOT_JNI_NEWFLOATARRAY_ENTRY(env, len), |
|
2683 |
HOTSPOT_JNI_NEWFLOATARRAY_RETURN(_ret_ref)) |
|
2684 |
DEFINE_NEWSCALARARRAY(jdoubleArray, new_doubleArray, Double, |
|
2685 |
HOTSPOT_JNI_NEWDOUBLEARRAY_ENTRY(env, len), |
|
2686 |
HOTSPOT_JNI_NEWDOUBLEARRAY_RETURN(_ret_ref)) |
|
1 | 2687 |
|
2688 |
// Return an address which will fault if the caller writes to it. |
|
2689 |
||
2690 |
static char* get_bad_address() { |
|
2691 |
static char* bad_address = NULL; |
|
2692 |
if (bad_address == NULL) { |
|
2693 |
size_t size = os::vm_allocation_granularity(); |
|
2694 |
bad_address = os::reserve_memory(size); |
|
2695 |
if (bad_address != NULL) { |
|
1664
fc9ed50498fb
6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents:
823
diff
changeset
|
2696 |
os::protect_memory(bad_address, size, os::MEM_PROT_READ, |
fc9ed50498fb
6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents:
823
diff
changeset
|
2697 |
/*is_committed*/false); |
25946 | 2698 |
MemTracker::record_virtual_memory_type((void*)bad_address, mtInternal); |
1 | 2699 |
} |
2700 |
} |
|
2701 |
return bad_address; |
|
2702 |
} |
|
2703 |
||
2704 |
||
10739 | 2705 |
|
2706 |
#define DEFINE_GETSCALARARRAYELEMENTS(ElementTag,ElementType,Result, Tag \ |
|
2707 |
, EntryProbe, ReturnProbe) \ |
|
2708 |
\ |
|
2709 |
JNI_QUICK_ENTRY(ElementType*, \ |
|
2710 |
jni_Get##Result##ArrayElements(JNIEnv *env, ElementType##Array array, jboolean *isCopy)) \ |
|
2711 |
JNIWrapper("Get" XSTR(Result) "ArrayElements"); \ |
|
2712 |
EntryProbe; \ |
|
2713 |
/* allocate an chunk of memory in c land */ \ |
|
2714 |
typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \ |
|
2715 |
ElementType* result; \ |
|
2716 |
int len = a->length(); \ |
|
2717 |
if (len == 0) { \ |
|
2718 |
/* Empty array: legal but useless, can't return NULL. \ |
|
2719 |
* Return a pointer to something useless. \ |
|
2720 |
* Avoid asserts in typeArrayOop. */ \ |
|
2721 |
result = (ElementType*)get_bad_address(); \ |
|
2722 |
} else { \ |
|
19545
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2723 |
/* JNI Specification states return NULL on OOM */ \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2724 |
result = NEW_C_HEAP_ARRAY_RETURN_NULL(ElementType, len, mtInternal); \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2725 |
if (result != NULL) { \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2726 |
/* copy the array to the c chunk */ \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2727 |
memcpy(result, a->Tag##_at_addr(0), sizeof(ElementType)*len); \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2728 |
if (isCopy) { \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2729 |
*isCopy = JNI_TRUE; \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2730 |
} \ |
409c50cf1e5d
8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents:
18683
diff
changeset
|
2731 |
} \ |
10739 | 2732 |
} \ |
2733 |
ReturnProbe; \ |
|
2734 |
return result; \ |
|
2735 |
JNI_END |
|
2736 |
||
2737 |
DEFINE_GETSCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool |
|
2738 |
, HOTSPOT_JNI_GETBOOLEANARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy), |
|
2739 |
HOTSPOT_JNI_GETBOOLEANARRAYELEMENTS_RETURN((uintptr_t*)result)) |
|
2740 |
DEFINE_GETSCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte |
|
2741 |
, HOTSPOT_JNI_GETBYTEARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy), |
|
2742 |
HOTSPOT_JNI_GETBYTEARRAYELEMENTS_RETURN((char*)result)) |
|
2743 |
DEFINE_GETSCALARARRAYELEMENTS(T_SHORT, jshort, Short, short |
|
2744 |
, HOTSPOT_JNI_GETSHORTARRAYELEMENTS_ENTRY(env, (uint16_t*) array, (uintptr_t *) isCopy), |
|
2745 |
HOTSPOT_JNI_GETSHORTARRAYELEMENTS_RETURN((uint16_t*)result)) |
|
2746 |
DEFINE_GETSCALARARRAYELEMENTS(T_CHAR, jchar, Char, char |
|
2747 |
, HOTSPOT_JNI_GETCHARARRAYELEMENTS_ENTRY(env, (uint16_t*) array, (uintptr_t *) isCopy), |
|
2748 |
HOTSPOT_JNI_GETCHARARRAYELEMENTS_RETURN(result)) |
|
2749 |
DEFINE_GETSCALARARRAYELEMENTS(T_INT, jint, Int, int |
|
2750 |
, HOTSPOT_JNI_GETINTARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy), |
|
2751 |
HOTSPOT_JNI_GETINTARRAYELEMENTS_RETURN((uint32_t*)result)) |
|
2752 |
DEFINE_GETSCALARARRAYELEMENTS(T_LONG, jlong, Long, long |
|
2753 |
, HOTSPOT_JNI_GETLONGARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy), |
|
2754 |
HOTSPOT_JNI_GETLONGARRAYELEMENTS_RETURN(((uintptr_t*)result))) |
|
2755 |
// Float and double probes don't return value because dtrace doesn't currently support it |
|
2756 |
DEFINE_GETSCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float |
|
2757 |
, HOTSPOT_JNI_GETFLOATARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy), |
|
2758 |
HOTSPOT_JNI_GETFLOATARRAYELEMENTS_RETURN(result)) |
|
2759 |
DEFINE_GETSCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double |
|
2760 |
, HOTSPOT_JNI_GETDOUBLEARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy), |
|
2761 |
HOTSPOT_JNI_GETDOUBLEARRAYELEMENTS_RETURN(result)) |
|
22796 | 2762 |
|
10739 | 2763 |
|
2764 |
#define DEFINE_RELEASESCALARARRAYELEMENTS(ElementTag,ElementType,Result,Tag \ |
|
2765 |
, EntryProbe, ReturnProbe);\ |
|
2766 |
\ |
|
2767 |
JNI_QUICK_ENTRY(void, \ |
|
2768 |
jni_Release##Result##ArrayElements(JNIEnv *env, ElementType##Array array, \ |
|
2769 |
ElementType *buf, jint mode)) \ |
|
2770 |
JNIWrapper("Release" XSTR(Result) "ArrayElements"); \ |
|
2771 |
EntryProbe; \ |
|
2772 |
typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \ |
|
2773 |
int len = a->length(); \ |
|
2774 |
if (len != 0) { /* Empty array: nothing to free or copy. */ \ |
|
2775 |
if ((mode == 0) || (mode == JNI_COMMIT)) { \ |
|
2776 |
memcpy(a->Tag##_at_addr(0), buf, sizeof(ElementType)*len); \ |
|
2777 |
} \ |
|
2778 |
if ((mode == 0) || (mode == JNI_ABORT)) { \ |
|
2779 |
FreeHeap(buf); \ |
|
2780 |
} \ |
|
2781 |
} \ |
|
2782 |
ReturnProbe; \ |
|
2783 |
JNI_END |
|
2784 |
||
2785 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool |
|
2786 |
, HOTSPOT_JNI_RELEASEBOOLEANARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) buf, mode), |
|
2787 |
HOTSPOT_JNI_RELEASEBOOLEANARRAYELEMENTS_RETURN()) |
|
2788 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte |
|
2789 |
, HOTSPOT_JNI_RELEASEBYTEARRAYELEMENTS_ENTRY(env, array, (char *) buf, mode), |
|
2790 |
HOTSPOT_JNI_RELEASEBYTEARRAYELEMENTS_RETURN()) |
|
2791 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_SHORT, jshort, Short, short |
|
2792 |
, HOTSPOT_JNI_RELEASESHORTARRAYELEMENTS_ENTRY(env, array, (uint16_t *) buf, mode), |
|
2793 |
HOTSPOT_JNI_RELEASESHORTARRAYELEMENTS_RETURN()) |
|
2794 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_CHAR, jchar, Char, char |
|
2795 |
, HOTSPOT_JNI_RELEASECHARARRAYELEMENTS_ENTRY(env, array, (uint16_t *) buf, mode), |
|
2796 |
HOTSPOT_JNI_RELEASECHARARRAYELEMENTS_RETURN()) |
|
2797 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_INT, jint, Int, int |
|
2798 |
, HOTSPOT_JNI_RELEASEINTARRAYELEMENTS_ENTRY(env, array, (uint32_t *) buf, mode), |
|
2799 |
HOTSPOT_JNI_RELEASEINTARRAYELEMENTS_RETURN()) |
|
2800 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_LONG, jlong, Long, long |
|
2801 |
, HOTSPOT_JNI_RELEASELONGARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) buf, mode), |
|
2802 |
HOTSPOT_JNI_RELEASELONGARRAYELEMENTS_RETURN()) |
|
2803 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float |
|
2804 |
, HOTSPOT_JNI_RELEASEFLOATARRAYELEMENTS_ENTRY(env, array, (float *) buf, mode), |
|
2805 |
HOTSPOT_JNI_RELEASEFLOATARRAYELEMENTS_RETURN()) |
|
2806 |
DEFINE_RELEASESCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double |
|
2807 |
, HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_ENTRY(env, array, (double *) buf, mode), |
|
2808 |
HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_RETURN()) |
|
22796 | 2809 |
|
10739 | 2810 |
|
2811 |
#define DEFINE_GETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag \ |
|
2812 |
, EntryProbe, ReturnProbe); \ |
|
2813 |
DT_VOID_RETURN_MARK_DECL(Get##Result##ArrayRegion \ |
|
2814 |
, ReturnProbe); \ |
|
2815 |
\ |
|
2816 |
JNI_ENTRY(void, \ |
|
2817 |
jni_Get##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \ |
|
2818 |
jsize len, ElementType *buf)) \ |
|
2819 |
JNIWrapper("Get" XSTR(Result) "ArrayRegion"); \ |
|
2820 |
EntryProbe; \ |
|
2821 |
DT_VOID_RETURN_MARK(Get##Result##ArrayRegion); \ |
|
2822 |
typeArrayOop src = typeArrayOop(JNIHandles::resolve_non_null(array)); \ |
|
48558 | 2823 |
if (start < 0 || len < 0 || (start > src->length() - len)) { \ |
10739 | 2824 |
THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \ |
2825 |
} else { \ |
|
2826 |
if (len > 0) { \ |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
2827 |
int sc = TypeArrayKlass::cast(src->klass())->log2_element_size(); \ |
10739 | 2828 |
memcpy((u_char*) buf, \ |
2829 |
(u_char*) src->Tag##_at_addr(start), \ |
|
2830 |
len << sc); \ |
|
2831 |
} \ |
|
2832 |
} \ |
|
2833 |
JNI_END |
|
2834 |
||
2835 |
DEFINE_GETSCALARARRAYREGION(T_BOOLEAN, jboolean,Boolean, bool |
|
2836 |
, HOTSPOT_JNI_GETBOOLEANARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf), |
|
2837 |
HOTSPOT_JNI_GETBOOLEANARRAYREGION_RETURN()); |
|
2838 |
DEFINE_GETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte |
|
2839 |
, HOTSPOT_JNI_GETBYTEARRAYREGION_ENTRY(env, array, start, len, (char *) buf), |
|
2840 |
HOTSPOT_JNI_GETBYTEARRAYREGION_RETURN()); |
|
2841 |
DEFINE_GETSCALARARRAYREGION(T_SHORT, jshort, Short, short |
|
2842 |
, HOTSPOT_JNI_GETSHORTARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf), |
|
2843 |
HOTSPOT_JNI_GETSHORTARRAYREGION_RETURN()); |
|
2844 |
DEFINE_GETSCALARARRAYREGION(T_CHAR, jchar, Char, char |
|
2845 |
, HOTSPOT_JNI_GETCHARARRAYREGION_ENTRY(env, array, start, len, (uint16_t*) buf), |
|
2846 |
HOTSPOT_JNI_GETCHARARRAYREGION_RETURN()); |
|
2847 |
DEFINE_GETSCALARARRAYREGION(T_INT, jint, Int, int |
|
2848 |
, HOTSPOT_JNI_GETINTARRAYREGION_ENTRY(env, array, start, len, (uint32_t*) buf), |
|
2849 |
HOTSPOT_JNI_GETINTARRAYREGION_RETURN()); |
|
2850 |
DEFINE_GETSCALARARRAYREGION(T_LONG, jlong, Long, long |
|
2851 |
, HOTSPOT_JNI_GETLONGARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf), |
|
2852 |
HOTSPOT_JNI_GETLONGARRAYREGION_RETURN()); |
|
2853 |
DEFINE_GETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float |
|
2854 |
, HOTSPOT_JNI_GETFLOATARRAYREGION_ENTRY(env, array, start, len, (float *) buf), |
|
2855 |
HOTSPOT_JNI_GETFLOATARRAYREGION_RETURN()); |
|
2856 |
DEFINE_GETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double |
|
2857 |
, HOTSPOT_JNI_GETDOUBLEARRAYREGION_ENTRY(env, array, start, len, (double *) buf), |
|
2858 |
HOTSPOT_JNI_GETDOUBLEARRAYREGION_RETURN()); |
|
22796 | 2859 |
|
10739 | 2860 |
|
2861 |
#define DEFINE_SETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag \ |
|
2862 |
, EntryProbe, ReturnProbe); \ |
|
2863 |
DT_VOID_RETURN_MARK_DECL(Set##Result##ArrayRegion \ |
|
2864 |
,ReturnProbe); \ |
|
2865 |
\ |
|
2866 |
JNI_ENTRY(void, \ |
|
2867 |
jni_Set##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \ |
|
2868 |
jsize len, const ElementType *buf)) \ |
|
2869 |
JNIWrapper("Set" XSTR(Result) "ArrayRegion"); \ |
|
2870 |
EntryProbe; \ |
|
2871 |
DT_VOID_RETURN_MARK(Set##Result##ArrayRegion); \ |
|
2872 |
typeArrayOop dst = typeArrayOop(JNIHandles::resolve_non_null(array)); \ |
|
48558 | 2873 |
if (start < 0 || len < 0 || (start > dst->length() - len)) { \ |
10739 | 2874 |
THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \ |
2875 |
} else { \ |
|
2876 |
if (len > 0) { \ |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
2877 |
int sc = TypeArrayKlass::cast(dst->klass())->log2_element_size(); \ |
10739 | 2878 |
memcpy((u_char*) dst->Tag##_at_addr(start), \ |
2879 |
(u_char*) buf, \ |
|
2880 |
len << sc); \ |
|
2881 |
} \ |
|
2882 |
} \ |
|
2883 |
JNI_END |
|
2884 |
||
2885 |
DEFINE_SETSCALARARRAYREGION(T_BOOLEAN, jboolean, Boolean, bool |
|
2886 |
, HOTSPOT_JNI_SETBOOLEANARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *)buf), |
|
2887 |
HOTSPOT_JNI_SETBOOLEANARRAYREGION_RETURN()) |
|
2888 |
DEFINE_SETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte |
|
2889 |
, HOTSPOT_JNI_SETBYTEARRAYREGION_ENTRY(env, array, start, len, (char *) buf), |
|
2890 |
HOTSPOT_JNI_SETBYTEARRAYREGION_RETURN()) |
|
2891 |
DEFINE_SETSCALARARRAYREGION(T_SHORT, jshort, Short, short |
|
2892 |
, HOTSPOT_JNI_SETSHORTARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf), |
|
2893 |
HOTSPOT_JNI_SETSHORTARRAYREGION_RETURN()) |
|
2894 |
DEFINE_SETSCALARARRAYREGION(T_CHAR, jchar, Char, char |
|
2895 |
, HOTSPOT_JNI_SETCHARARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf), |
|
2896 |
HOTSPOT_JNI_SETCHARARRAYREGION_RETURN()) |
|
2897 |
DEFINE_SETSCALARARRAYREGION(T_INT, jint, Int, int |
|
2898 |
, HOTSPOT_JNI_SETINTARRAYREGION_ENTRY(env, array, start, len, (uint32_t *) buf), |
|
2899 |
HOTSPOT_JNI_SETINTARRAYREGION_RETURN()) |
|
2900 |
DEFINE_SETSCALARARRAYREGION(T_LONG, jlong, Long, long |
|
2901 |
, HOTSPOT_JNI_SETLONGARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf), |
|
2902 |
HOTSPOT_JNI_SETLONGARRAYREGION_RETURN()) |
|
2903 |
DEFINE_SETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float |
|
2904 |
, HOTSPOT_JNI_SETFLOATARRAYREGION_ENTRY(env, array, start, len, (float *) buf), |
|
2905 |
HOTSPOT_JNI_SETFLOATARRAYREGION_RETURN()) |
|
2906 |
DEFINE_SETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double |
|
2907 |
, HOTSPOT_JNI_SETDOUBLEARRAYREGION_ENTRY(env, array, start, len, (double *) buf), |
|
2908 |
HOTSPOT_JNI_SETDOUBLEARRAYREGION_RETURN()) |
|
2909 |
||
1 | 2910 |
|
2911 |
// |
|
2912 |
// Interception of natives |
|
2913 |
// |
|
2914 |
||
2915 |
// The RegisterNatives call being attempted tried to register with a method that |
|
2916 |
// is not native. Ask JVM TI what prefixes have been specified. Then check |
|
2917 |
// to see if the native method is now wrapped with the prefixes. See the |
|
2918 |
// SetNativeMethodPrefix(es) functions in the JVM TI Spec for details. |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2919 |
static Method* find_prefixed_native(Klass* k, Symbol* name, Symbol* signature, TRAPS) { |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
2920 |
#if INCLUDE_JVMTI |
1 | 2921 |
ResourceMark rm(THREAD); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2922 |
Method* method; |
1 | 2923 |
int name_len = name->utf8_length(); |
2924 |
char* name_str = name->as_utf8(); |
|
2925 |
int prefix_count; |
|
2926 |
char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count); |
|
2927 |
for (int i = 0; i < prefix_count; i++) { |
|
2928 |
char* prefix = prefixes[i]; |
|
2929 |
int prefix_len = (int)strlen(prefix); |
|
2930 |
||
2931 |
// try adding this prefix to the method name and see if it matches another method name |
|
2932 |
int trial_len = name_len + prefix_len; |
|
2933 |
char* trial_name_str = NEW_RESOURCE_ARRAY(char, trial_len + 1); |
|
2934 |
strcpy(trial_name_str, prefix); |
|
2935 |
strcat(trial_name_str, name_str); |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2936 |
TempNewSymbol trial_name = SymbolTable::probe(trial_name_str, trial_len); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
2937 |
if (trial_name == NULL) { |
1 | 2938 |
continue; // no such symbol, so this prefix wasn't used, try the next prefix |
2939 |
} |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2940 |
method = k->lookup_method(trial_name, signature); |
1 | 2941 |
if (method == NULL) { |
2942 |
continue; // signature doesn't match, try the next prefix |
|
2943 |
} |
|
2944 |
if (method->is_native()) { |
|
2945 |
method->set_is_prefixed_native(); |
|
2946 |
return method; // wahoo, we found a prefixed version of the method, return it |
|
2947 |
} |
|
2948 |
// found as non-native, so prefix is good, add it, probably just need more prefixes |
|
2949 |
name_len = trial_len; |
|
2950 |
name_str = trial_name_str; |
|
2951 |
} |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
2952 |
#endif // INCLUDE_JVMTI |
1 | 2953 |
return NULL; // not found |
2954 |
} |
|
2955 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2956 |
static bool register_native(Klass* k, Symbol* name, Symbol* signature, address entry, TRAPS) { |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2957 |
Method* method = k->lookup_method(name, signature); |
1 | 2958 |
if (method == NULL) { |
2959 |
ResourceMark rm; |
|
2960 |
stringStream st; |
|
2961 |
st.print("Method %s name or signature does not match", |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2962 |
Method::name_and_sig_as_C_string(k, name, signature)); |
1 | 2963 |
THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false); |
2964 |
} |
|
2965 |
if (!method->is_native()) { |
|
2966 |
// trying to register to a non-native method, see if a JVM TI agent has added prefix(es) |
|
2967 |
method = find_prefixed_native(k, name, signature, THREAD); |
|
2968 |
if (method == NULL) { |
|
2969 |
ResourceMark rm; |
|
2970 |
stringStream st; |
|
2971 |
st.print("Method %s is not declared as native", |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
2972 |
Method::name_and_sig_as_C_string(k, name, signature)); |
1 | 2973 |
THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false); |
2974 |
} |
|
2975 |
} |
|
2976 |
||
2977 |
if (entry != NULL) { |
|
2978 |
method->set_native_function(entry, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
2979 |
Method::native_bind_event_is_interesting); |
1 | 2980 |
} else { |
2981 |
method->clear_native_function(); |
|
2982 |
} |
|
2983 |
if (PrintJNIResolving) { |
|
2984 |
ResourceMark rm(THREAD); |
|
2985 |
tty->print_cr("[Registering JNI native method %s.%s]", |
|
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13977
diff
changeset
|
2986 |
method->method_holder()->external_name(), |
1 | 2987 |
method->name()->as_C_string()); |
2988 |
} |
|
2989 |
return true; |
|
2990 |
} |
|
2991 |
||
10739 | 2992 |
DT_RETURN_MARK_DECL(RegisterNatives, jint |
2993 |
, HOTSPOT_JNI_REGISTERNATIVES_RETURN(_ret_ref)); |
|
1 | 2994 |
|
2995 |
JNI_ENTRY(jint, jni_RegisterNatives(JNIEnv *env, jclass clazz, |
|
2996 |
const JNINativeMethod *methods, |
|
2997 |
jint nMethods)) |
|
2998 |
JNIWrapper("RegisterNatives"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
2999 |
HOTSPOT_JNI_REGISTERNATIVES_ENTRY(env, clazz, (void *) methods, nMethods); |
1 | 3000 |
jint ret = 0; |
3001 |
DT_RETURN_MARK(RegisterNatives, jint, (const jint&)ret); |
|
3002 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
3003 |
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)); |
1 | 3004 |
|
3005 |
for (int index = 0; index < nMethods; index++) { |
|
3006 |
const char* meth_name = methods[index].name; |
|
3007 |
const char* meth_sig = methods[index].signature; |
|
3008 |
int meth_name_len = (int)strlen(meth_name); |
|
3009 |
||
3010 |
// The class should have been loaded (we have an instance of the class |
|
3011 |
// passed in) so the method and signature should already be in the symbol |
|
3012 |
// table. If they're not there, the method doesn't exist. |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
3013 |
TempNewSymbol name = SymbolTable::probe(meth_name, meth_name_len); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
3014 |
TempNewSymbol signature = SymbolTable::probe(meth_sig, (int)strlen(meth_sig)); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
3015 |
|
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
3016 |
if (name == NULL || signature == NULL) { |
1 | 3017 |
ResourceMark rm; |
3018 |
stringStream st; |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
3019 |
st.print("Method %s.%s%s not found", k->external_name(), meth_name, meth_sig); |
1 | 3020 |
// Must return negative value on failure |
3021 |
THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), -1); |
|
3022 |
} |
|
3023 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
43969
diff
changeset
|
3024 |
bool res = register_native(k, name, signature, |
1 | 3025 |
(address) methods[index].fnPtr, THREAD); |
3026 |
if (!res) { |
|
3027 |
ret = -1; |
|
3028 |
break; |
|
3029 |
} |
|
3030 |
} |
|
3031 |
return ret; |
|
3032 |
JNI_END |
|
3033 |
||
3034 |
||
3035 |
JNI_ENTRY(jint, jni_UnregisterNatives(JNIEnv *env, jclass clazz)) |
|
3036 |
JNIWrapper("UnregisterNatives"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3037 |
HOTSPOT_JNI_UNREGISTERNATIVES_ENTRY(env, clazz); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
3038 |
Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)); |
1 | 3039 |
//%note jni_2 |
33611
9abd65805e19
8139203: Consistent naming for klass type predicates
coleenp
parents:
33576
diff
changeset
|
3040 |
if (k->is_instance_klass()) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
3041 |
for (int index = 0; index < InstanceKlass::cast(k)->methods()->length(); index++) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
3042 |
Method* m = InstanceKlass::cast(k)->methods()->at(index); |
1 | 3043 |
if (m->is_native()) { |
3044 |
m->clear_native_function(); |
|
3045 |
m->set_signature_handler(NULL); |
|
3046 |
} |
|
3047 |
} |
|
3048 |
} |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3049 |
HOTSPOT_JNI_UNREGISTERNATIVES_RETURN(0); |
1 | 3050 |
return 0; |
3051 |
JNI_END |
|
3052 |
||
3053 |
// |
|
3054 |
// Monitor functions |
|
3055 |
// |
|
3056 |
||
10739 | 3057 |
DT_RETURN_MARK_DECL(MonitorEnter, jint |
3058 |
, HOTSPOT_JNI_MONITORENTER_RETURN(_ret_ref)); |
|
1 | 3059 |
|
3060 |
JNI_ENTRY(jint, jni_MonitorEnter(JNIEnv *env, jobject jobj)) |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3061 |
HOTSPOT_JNI_MONITORENTER_ENTRY(env, jobj); |
1 | 3062 |
jint ret = JNI_ERR; |
3063 |
DT_RETURN_MARK(MonitorEnter, jint, (const jint&)ret); |
|
3064 |
||
3065 |
// If the object is null, we can't do anything with it |
|
3066 |
if (jobj == NULL) { |
|
3067 |
THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR); |
|
3068 |
} |
|
3069 |
||
3070 |
Handle obj(thread, JNIHandles::resolve_non_null(jobj)); |
|
3071 |
ObjectSynchronizer::jni_enter(obj, CHECK_(JNI_ERR)); |
|
3072 |
ret = JNI_OK; |
|
3073 |
return ret; |
|
3074 |
JNI_END |
|
3075 |
||
10739 | 3076 |
DT_RETURN_MARK_DECL(MonitorExit, jint |
3077 |
, HOTSPOT_JNI_MONITOREXIT_RETURN(_ret_ref)); |
|
1 | 3078 |
|
3079 |
JNI_ENTRY(jint, jni_MonitorExit(JNIEnv *env, jobject jobj)) |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3080 |
HOTSPOT_JNI_MONITOREXIT_ENTRY(env, jobj); |
1 | 3081 |
jint ret = JNI_ERR; |
3082 |
DT_RETURN_MARK(MonitorExit, jint, (const jint&)ret); |
|
3083 |
||
3084 |
// Don't do anything with a null object |
|
3085 |
if (jobj == NULL) { |
|
3086 |
THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR); |
|
3087 |
} |
|
3088 |
||
3089 |
Handle obj(THREAD, JNIHandles::resolve_non_null(jobj)); |
|
3090 |
ObjectSynchronizer::jni_exit(obj(), CHECK_(JNI_ERR)); |
|
3091 |
||
3092 |
ret = JNI_OK; |
|
3093 |
return ret; |
|
3094 |
JNI_END |
|
3095 |
||
3096 |
// |
|
3097 |
// Extensions |
|
3098 |
// |
|
3099 |
||
10739 | 3100 |
DT_VOID_RETURN_MARK_DECL(GetStringRegion |
3101 |
, HOTSPOT_JNI_GETSTRINGREGION_RETURN()); |
|
1 | 3102 |
|
3103 |
JNI_ENTRY(void, jni_GetStringRegion(JNIEnv *env, jstring string, jsize start, jsize len, jchar *buf)) |
|
3104 |
JNIWrapper("GetStringRegion"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3105 |
HOTSPOT_JNI_GETSTRINGREGION_ENTRY(env, string, start, len, buf); |
1 | 3106 |
DT_VOID_RETURN_MARK(GetStringRegion); |
3107 |
oop s = JNIHandles::resolve_non_null(string); |
|
3108 |
int s_len = java_lang_String::length(s); |
|
48558 | 3109 |
if (start < 0 || len < 0 || start > s_len - len) { |
1 | 3110 |
THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException()); |
3111 |
} else { |
|
3112 |
if (len > 0) { |
|
3113 |
typeArrayOop s_value = java_lang_String::value(s); |
|
33628 | 3114 |
bool is_latin1 = java_lang_String::is_latin1(s); |
3115 |
if (!is_latin1) { |
|
3116 |
memcpy(buf, s_value->char_at_addr(start), sizeof(jchar)*len); |
|
3117 |
} else { |
|
3118 |
for (int i = 0; i < len; i++) { |
|
3119 |
buf[i] = ((jchar) s_value->byte_at(i + start)) & 0xff; |
|
3120 |
} |
|
3121 |
} |
|
1 | 3122 |
} |
3123 |
} |
|
3124 |
JNI_END |
|
3125 |
||
10739 | 3126 |
DT_VOID_RETURN_MARK_DECL(GetStringUTFRegion |
3127 |
, HOTSPOT_JNI_GETSTRINGUTFREGION_RETURN()); |
|
1 | 3128 |
|
3129 |
JNI_ENTRY(void, jni_GetStringUTFRegion(JNIEnv *env, jstring string, jsize start, jsize len, char *buf)) |
|
3130 |
JNIWrapper("GetStringUTFRegion"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3131 |
HOTSPOT_JNI_GETSTRINGUTFREGION_ENTRY(env, string, start, len, buf); |
1 | 3132 |
DT_VOID_RETURN_MARK(GetStringUTFRegion); |
3133 |
oop s = JNIHandles::resolve_non_null(string); |
|
3134 |
int s_len = java_lang_String::length(s); |
|
48558 | 3135 |
if (start < 0 || len < 0 || start > s_len - len) { |
1 | 3136 |
THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException()); |
3137 |
} else { |
|
3138 |
//%note jni_7 |
|
3139 |
if (len > 0) { |
|
24237
7b210ef8c830
6664815: Eliminate redundant memcpy operation in jni_GetStringUTFRegion
mgerdin
parents:
23997
diff
changeset
|
3140 |
// Assume the buffer is large enough as the JNI spec. does not require user error checking |
7b210ef8c830
6664815: Eliminate redundant memcpy operation in jni_GetStringUTFRegion
mgerdin
parents:
23997
diff
changeset
|
3141 |
java_lang_String::as_utf8_string(s, start, len, buf, INT_MAX); |
7b210ef8c830
6664815: Eliminate redundant memcpy operation in jni_GetStringUTFRegion
mgerdin
parents:
23997
diff
changeset
|
3142 |
// as_utf8_string null-terminates the result string |
1 | 3143 |
} else { |
3144 |
// JDK null-terminates the buffer even in len is zero |
|
3145 |
if (buf != NULL) { |
|
3146 |
buf[0] = 0; |
|
3147 |
} |
|
3148 |
} |
|
3149 |
} |
|
3150 |
JNI_END |
|
3151 |
||
3152 |
||
3153 |
JNI_ENTRY(void*, jni_GetPrimitiveArrayCritical(JNIEnv *env, jarray array, jboolean *isCopy)) |
|
3154 |
JNIWrapper("GetPrimitiveArrayCritical"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3155 |
HOTSPOT_JNI_GETPRIMITIVEARRAYCRITICAL_ENTRY(env, array, (uintptr_t *) isCopy); |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35219
diff
changeset
|
3156 |
GCLocker::lock_critical(thread); |
1 | 3157 |
if (isCopy != NULL) { |
3158 |
*isCopy = JNI_FALSE; |
|
3159 |
} |
|
3160 |
oop a = JNIHandles::resolve_non_null(array); |
|
3161 |
assert(a->is_array(), "just checking"); |
|
3162 |
BasicType type; |
|
3163 |
if (a->is_objArray()) { |
|
3164 |
type = T_OBJECT; |
|
3165 |
} else { |
|
13952
e3cf184080bc
8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents:
13728
diff
changeset
|
3166 |
type = TypeArrayKlass::cast(a->klass())->element_type(); |
1 | 3167 |
} |
3168 |
void* ret = arrayOop(a)->base(type); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3169 |
HOTSPOT_JNI_GETPRIMITIVEARRAYCRITICAL_RETURN(ret); |
1 | 3170 |
return ret; |
3171 |
JNI_END |
|
3172 |
||
3173 |
||
3174 |
JNI_ENTRY(void, jni_ReleasePrimitiveArrayCritical(JNIEnv *env, jarray array, void *carray, jint mode)) |
|
3175 |
JNIWrapper("ReleasePrimitiveArrayCritical"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3176 |
HOTSPOT_JNI_RELEASEPRIMITIVEARRAYCRITICAL_ENTRY(env, array, carray, mode); |
1 | 3177 |
// The array, carray and mode arguments are ignored |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35219
diff
changeset
|
3178 |
GCLocker::unlock_critical(thread); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3179 |
HOTSPOT_JNI_RELEASEPRIMITIVEARRAYCRITICAL_RETURN(); |
1 | 3180 |
JNI_END |
3181 |
||
3182 |
||
3183 |
JNI_ENTRY(const jchar*, jni_GetStringCritical(JNIEnv *env, jstring string, jboolean *isCopy)) |
|
3184 |
JNIWrapper("GetStringCritical"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3185 |
HOTSPOT_JNI_GETSTRINGCRITICAL_ENTRY(env, string, (uintptr_t *) isCopy); |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35219
diff
changeset
|
3186 |
GCLocker::lock_critical(thread); |
1 | 3187 |
oop s = JNIHandles::resolve_non_null(string); |
3188 |
typeArrayOop s_value = java_lang_String::value(s); |
|
33628 | 3189 |
bool is_latin1 = java_lang_String::is_latin1(s); |
3190 |
if (isCopy != NULL) { |
|
3191 |
*isCopy = is_latin1 ? JNI_TRUE : JNI_FALSE; |
|
3192 |
} |
|
35162
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3193 |
jchar* ret; |
33628 | 3194 |
if (!is_latin1) { |
35162
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3195 |
ret = (jchar*) s_value->base(T_CHAR); |
1 | 3196 |
} else { |
33628 | 3197 |
// Inflate latin1 encoded string to UTF16 |
3198 |
int s_len = java_lang_String::length(s); |
|
35162
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3199 |
ret = NEW_C_HEAP_ARRAY_RETURN_NULL(jchar, s_len + 1, mtInternal); // add one for zero termination |
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3200 |
/* JNI Specification states return NULL on OOM */ |
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3201 |
if (ret != NULL) { |
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3202 |
for (int i = 0; i < s_len; i++) { |
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3203 |
ret[i] = ((jchar) s_value->byte_at(i)) & 0xff; |
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3204 |
} |
65d0237246b1
8145015: jni_GetStringCritical asserts for empty strings
simonis
parents:
35061
diff
changeset
|
3205 |
ret[s_len] = 0; |
33628 | 3206 |
} |
1 | 3207 |
} |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3208 |
HOTSPOT_JNI_GETSTRINGCRITICAL_RETURN((uint16_t *) ret); |
1 | 3209 |
return ret; |
3210 |
JNI_END |
|
3211 |
||
3212 |
||
3213 |
JNI_ENTRY(void, jni_ReleaseStringCritical(JNIEnv *env, jstring str, const jchar *chars)) |
|
3214 |
JNIWrapper("ReleaseStringCritical"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3215 |
HOTSPOT_JNI_RELEASESTRINGCRITICAL_ENTRY(env, str, (uint16_t *) chars); |
33628 | 3216 |
// The str and chars arguments are ignored for UTF16 strings |
3217 |
oop s = JNIHandles::resolve_non_null(str); |
|
3218 |
bool is_latin1 = java_lang_String::is_latin1(s); |
|
3219 |
if (is_latin1) { |
|
3220 |
// For latin1 string, free jchar array allocated by earlier call to GetStringCritical. |
|
3221 |
// This assumes that ReleaseStringCritical bookends GetStringCritical. |
|
3222 |
FREE_C_HEAP_ARRAY(jchar, chars); |
|
3223 |
} |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35219
diff
changeset
|
3224 |
GCLocker::unlock_critical(thread); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3225 |
HOTSPOT_JNI_RELEASESTRINGCRITICAL_RETURN(); |
1 | 3226 |
JNI_END |
3227 |
||
3228 |
||
3229 |
JNI_ENTRY(jweak, jni_NewWeakGlobalRef(JNIEnv *env, jobject ref)) |
|
3230 |
JNIWrapper("jni_NewWeakGlobalRef"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3231 |
HOTSPOT_JNI_NEWWEAKGLOBALREF_ENTRY(env, ref); |
1 | 3232 |
Handle ref_handle(thread, JNIHandles::resolve(ref)); |
3233 |
jweak ret = JNIHandles::make_weak_global(ref_handle); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3234 |
HOTSPOT_JNI_NEWWEAKGLOBALREF_RETURN(ret); |
1 | 3235 |
return ret; |
3236 |
JNI_END |
|
3237 |
||
3238 |
// Must be JNI_ENTRY (with HandleMark) |
|
3239 |
JNI_ENTRY(void, jni_DeleteWeakGlobalRef(JNIEnv *env, jweak ref)) |
|
3240 |
JNIWrapper("jni_DeleteWeakGlobalRef"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3241 |
HOTSPOT_JNI_DELETEWEAKGLOBALREF_ENTRY(env, ref); |
1 | 3242 |
JNIHandles::destroy_weak_global(ref); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3243 |
HOTSPOT_JNI_DELETEWEAKGLOBALREF_RETURN(); |
1 | 3244 |
JNI_END |
3245 |
||
3246 |
||
3247 |
JNI_QUICK_ENTRY(jboolean, jni_ExceptionCheck(JNIEnv *env)) |
|
3248 |
JNIWrapper("jni_ExceptionCheck"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3249 |
HOTSPOT_JNI_EXCEPTIONCHECK_ENTRY(env); |
1 | 3250 |
jni_check_async_exceptions(thread); |
3251 |
jboolean ret = (thread->has_pending_exception()) ? JNI_TRUE : JNI_FALSE; |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3252 |
HOTSPOT_JNI_EXCEPTIONCHECK_RETURN(ret); |
1 | 3253 |
return ret; |
3254 |
JNI_END |
|
3255 |
||
3256 |
||
3257 |
// Initialization state for three routines below relating to |
|
3258 |
// java.nio.DirectBuffers |
|
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
3259 |
static int directBufferSupportInitializeStarted = 0; |
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
3260 |
static volatile int directBufferSupportInitializeEnded = 0; |
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
3261 |
static volatile int directBufferSupportInitializeFailed = 0; |
1 | 3262 |
static jclass bufferClass = NULL; |
3263 |
static jclass directBufferClass = NULL; |
|
3264 |
static jclass directByteBufferClass = NULL; |
|
3265 |
static jmethodID directByteBufferConstructor = NULL; |
|
3266 |
static jfieldID directBufferAddressField = NULL; |
|
3267 |
static jfieldID bufferCapacityField = NULL; |
|
3268 |
||
3269 |
static jclass lookupOne(JNIEnv* env, const char* name, TRAPS) { |
|
3270 |
Handle loader; // null (bootstrap) loader |
|
3271 |
Handle protection_domain; // null protection domain |
|
3272 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7414
diff
changeset
|
3273 |
TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL); |
2269
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
3274 |
jclass result = find_class_from_class_loader(env, sym, true, loader, protection_domain, true, CHECK_NULL); |
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
3275 |
|
38151
fffedc5e5cf8
8154110: Update class* and safepoint* logging subsystems
mockner
parents:
37483
diff
changeset
|
3276 |
if (log_is_enabled(Debug, class, resolve) && result != NULL) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
3277 |
trace_class_resolution(java_lang_Class::as_Klass(JNIHandles::resolve_non_null(result))); |
2269
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
3278 |
} |
ee9da33d43ab
6603316: Improve instrumentation for classes loaded at startup
acorn
parents:
2105
diff
changeset
|
3279 |
return result; |
1 | 3280 |
} |
3281 |
||
3282 |
// These lookups are done with the NULL (bootstrap) ClassLoader to |
|
3283 |
// circumvent any security checks that would be done by jni_FindClass. |
|
3284 |
JNI_ENTRY(bool, lookupDirectBufferClasses(JNIEnv* env)) |
|
3285 |
{ |
|
3286 |
if ((bufferClass = lookupOne(env, "java/nio/Buffer", thread)) == NULL) { return false; } |
|
3287 |
if ((directBufferClass = lookupOne(env, "sun/nio/ch/DirectBuffer", thread)) == NULL) { return false; } |
|
3288 |
if ((directByteBufferClass = lookupOne(env, "java/nio/DirectByteBuffer", thread)) == NULL) { return false; } |
|
3289 |
return true; |
|
3290 |
} |
|
3291 |
JNI_END |
|
3292 |
||
3293 |
||
3294 |
static bool initializeDirectBufferSupport(JNIEnv* env, JavaThread* thread) { |
|
3295 |
if (directBufferSupportInitializeFailed) { |
|
3296 |
return false; |
|
3297 |
} |
|
3298 |
||
3299 |
if (Atomic::cmpxchg(1, &directBufferSupportInitializeStarted, 0) == 0) { |
|
3300 |
if (!lookupDirectBufferClasses(env)) { |
|
3301 |
directBufferSupportInitializeFailed = 1; |
|
3302 |
return false; |
|
3303 |
} |
|
3304 |
||
3305 |
// Make global references for these |
|
3306 |
bufferClass = (jclass) env->NewGlobalRef(bufferClass); |
|
3307 |
directBufferClass = (jclass) env->NewGlobalRef(directBufferClass); |
|
3308 |
directByteBufferClass = (jclass) env->NewGlobalRef(directByteBufferClass); |
|
3309 |
||
3310 |
// Get needed field and method IDs |
|
3311 |
directByteBufferConstructor = env->GetMethodID(directByteBufferClass, "<init>", "(JI)V"); |
|
22786
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3312 |
if (env->ExceptionCheck()) { |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3313 |
env->ExceptionClear(); |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3314 |
directBufferSupportInitializeFailed = 1; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3315 |
return false; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3316 |
} |
1 | 3317 |
directBufferAddressField = env->GetFieldID(bufferClass, "address", "J"); |
22786
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3318 |
if (env->ExceptionCheck()) { |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3319 |
env->ExceptionClear(); |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3320 |
directBufferSupportInitializeFailed = 1; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3321 |
return false; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3322 |
} |
1 | 3323 |
bufferCapacityField = env->GetFieldID(bufferClass, "capacity", "I"); |
22786
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3324 |
if (env->ExceptionCheck()) { |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3325 |
env->ExceptionClear(); |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3326 |
directBufferSupportInitializeFailed = 1; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3327 |
return false; |
86644d9539c2
8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents:
22737
diff
changeset
|
3328 |
} |
1 | 3329 |
|
3330 |
if ((directByteBufferConstructor == NULL) || |
|
3331 |
(directBufferAddressField == NULL) || |
|
3332 |
(bufferCapacityField == NULL)) { |
|
3333 |
directBufferSupportInitializeFailed = 1; |
|
3334 |
return false; |
|
3335 |
} |
|
3336 |
||
3337 |
directBufferSupportInitializeEnded = 1; |
|
3338 |
} else { |
|
3339 |
while (!directBufferSupportInitializeEnded && !directBufferSupportInitializeFailed) { |
|
25477
7dad9f95fd31
8047714: Fix for JDK-6546236 made Solaris os::yield() a no-op
fparain
parents:
25469
diff
changeset
|
3340 |
os::naked_yield(); |
1 | 3341 |
} |
3342 |
} |
|
3343 |
||
3344 |
return !directBufferSupportInitializeFailed; |
|
3345 |
} |
|
3346 |
||
3347 |
extern "C" jobject JNICALL jni_NewDirectByteBuffer(JNIEnv *env, void* address, jlong capacity) |
|
3348 |
{ |
|
3349 |
// thread_from_jni_environment() will block if VM is gone. |
|
3350 |
JavaThread* thread = JavaThread::thread_from_jni_environment(env); |
|
3351 |
||
3352 |
JNIWrapper("jni_NewDirectByteBuffer"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3353 |
HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_ENTRY(env, address, capacity); |
1 | 3354 |
|
3355 |
if (!directBufferSupportInitializeEnded) { |
|
3356 |
if (!initializeDirectBufferSupport(env, thread)) { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3357 |
HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_RETURN(NULL); |
1 | 3358 |
return NULL; |
3359 |
} |
|
3360 |
} |
|
3361 |
||
3362 |
// Being paranoid about accidental sign extension on address |
|
3363 |
jlong addr = (jlong) ((uintptr_t) address); |
|
3364 |
// NOTE that package-private DirectByteBuffer constructor currently |
|
3365 |
// takes int capacity |
|
3366 |
jint cap = (jint) capacity; |
|
3367 |
jobject ret = env->NewObject(directByteBufferClass, directByteBufferConstructor, addr, cap); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3368 |
HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_RETURN(ret); |
1 | 3369 |
return ret; |
3370 |
} |
|
3371 |
||
10739 | 3372 |
DT_RETURN_MARK_DECL(GetDirectBufferAddress, void* |
3373 |
, HOTSPOT_JNI_GETDIRECTBUFFERADDRESS_RETURN((void*) _ret_ref)); |
|
1 | 3374 |
|
3375 |
extern "C" void* JNICALL jni_GetDirectBufferAddress(JNIEnv *env, jobject buf) |
|
3376 |
{ |
|
3377 |
// thread_from_jni_environment() will block if VM is gone. |
|
3378 |
JavaThread* thread = JavaThread::thread_from_jni_environment(env); |
|
3379 |
||
3380 |
JNIWrapper("jni_GetDirectBufferAddress"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3381 |
HOTSPOT_JNI_GETDIRECTBUFFERADDRESS_ENTRY(env, buf); |
1 | 3382 |
void* ret = NULL; |
3383 |
DT_RETURN_MARK(GetDirectBufferAddress, void*, (const void*&)ret); |
|
3384 |
||
3385 |
if (!directBufferSupportInitializeEnded) { |
|
3386 |
if (!initializeDirectBufferSupport(env, thread)) { |
|
3387 |
return 0; |
|
3388 |
} |
|
3389 |
} |
|
3390 |
||
3391 |
if ((buf != NULL) && (!env->IsInstanceOf(buf, directBufferClass))) { |
|
3392 |
return 0; |
|
3393 |
} |
|
3394 |
||
3395 |
ret = (void*)(intptr_t)env->GetLongField(buf, directBufferAddressField); |
|
3396 |
return ret; |
|
3397 |
} |
|
3398 |
||
10739 | 3399 |
DT_RETURN_MARK_DECL(GetDirectBufferCapacity, jlong |
3400 |
, HOTSPOT_JNI_GETDIRECTBUFFERCAPACITY_RETURN(_ret_ref)); |
|
1 | 3401 |
|
3402 |
extern "C" jlong JNICALL jni_GetDirectBufferCapacity(JNIEnv *env, jobject buf) |
|
3403 |
{ |
|
3404 |
// thread_from_jni_environment() will block if VM is gone. |
|
3405 |
JavaThread* thread = JavaThread::thread_from_jni_environment(env); |
|
3406 |
||
3407 |
JNIWrapper("jni_GetDirectBufferCapacity"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3408 |
HOTSPOT_JNI_GETDIRECTBUFFERCAPACITY_ENTRY(env, buf); |
1 | 3409 |
jlong ret = -1; |
3410 |
DT_RETURN_MARK(GetDirectBufferCapacity, jlong, (const jlong&)ret); |
|
3411 |
||
3412 |
if (!directBufferSupportInitializeEnded) { |
|
3413 |
if (!initializeDirectBufferSupport(env, thread)) { |
|
3414 |
ret = 0; |
|
3415 |
return ret; |
|
3416 |
} |
|
3417 |
} |
|
3418 |
||
3419 |
if (buf == NULL) { |
|
3420 |
return -1; |
|
3421 |
} |
|
3422 |
||
3423 |
if (!env->IsInstanceOf(buf, directBufferClass)) { |
|
3424 |
return -1; |
|
3425 |
} |
|
3426 |
||
3427 |
// NOTE that capacity is currently an int in the implementation |
|
3428 |
ret = env->GetIntField(buf, bufferCapacityField); |
|
3429 |
return ret; |
|
3430 |
} |
|
3431 |
||
3432 |
||
3433 |
JNI_LEAF(jint, jni_GetVersion(JNIEnv *env)) |
|
3434 |
JNIWrapper("GetVersion"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3435 |
HOTSPOT_JNI_GETVERSION_ENTRY(env); |
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3436 |
HOTSPOT_JNI_GETVERSION_RETURN(CurrentVersion); |
1 | 3437 |
return CurrentVersion; |
3438 |
JNI_END |
|
3439 |
||
3440 |
extern struct JavaVM_ main_vm; |
|
3441 |
||
3442 |
JNI_LEAF(jint, jni_GetJavaVM(JNIEnv *env, JavaVM **vm)) |
|
3443 |
JNIWrapper("jni_GetJavaVM"); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3444 |
HOTSPOT_JNI_GETJAVAVM_ENTRY(env, (void **) vm); |
1 | 3445 |
*vm = (JavaVM *)(&main_vm); |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3446 |
HOTSPOT_JNI_GETJAVAVM_RETURN(JNI_OK); |
1 | 3447 |
return JNI_OK; |
3448 |
JNI_END |
|
3449 |
||
36508 | 3450 |
|
3451 |
JNI_ENTRY(jobject, jni_GetModule(JNIEnv* env, jclass clazz)) |
|
3452 |
JNIWrapper("GetModule"); |
|
3453 |
return Modules::get_module(clazz, THREAD); |
|
3454 |
JNI_END |
|
3455 |
||
3456 |
||
1 | 3457 |
// Structure containing all jni functions |
3458 |
struct JNINativeInterface_ jni_NativeInterface = { |
|
3459 |
NULL, |
|
3460 |
NULL, |
|
3461 |
NULL, |
|
3462 |
||
3463 |
NULL, |
|
3464 |
||
3465 |
jni_GetVersion, |
|
3466 |
||
3467 |
jni_DefineClass, |
|
3468 |
jni_FindClass, |
|
3469 |
||
3470 |
jni_FromReflectedMethod, |
|
3471 |
jni_FromReflectedField, |
|
3472 |
||
3473 |
jni_ToReflectedMethod, |
|
3474 |
||
3475 |
jni_GetSuperclass, |
|
3476 |
jni_IsAssignableFrom, |
|
3477 |
||
3478 |
jni_ToReflectedField, |
|
3479 |
||
3480 |
jni_Throw, |
|
3481 |
jni_ThrowNew, |
|
3482 |
jni_ExceptionOccurred, |
|
3483 |
jni_ExceptionDescribe, |
|
3484 |
jni_ExceptionClear, |
|
3485 |
jni_FatalError, |
|
3486 |
||
3487 |
jni_PushLocalFrame, |
|
3488 |
jni_PopLocalFrame, |
|
3489 |
||
3490 |
jni_NewGlobalRef, |
|
3491 |
jni_DeleteGlobalRef, |
|
3492 |
jni_DeleteLocalRef, |
|
3493 |
jni_IsSameObject, |
|
3494 |
||
3495 |
jni_NewLocalRef, |
|
3496 |
jni_EnsureLocalCapacity, |
|
3497 |
||
3498 |
jni_AllocObject, |
|
3499 |
jni_NewObject, |
|
3500 |
jni_NewObjectV, |
|
3501 |
jni_NewObjectA, |
|
3502 |
||
3503 |
jni_GetObjectClass, |
|
3504 |
jni_IsInstanceOf, |
|
3505 |
||
3506 |
jni_GetMethodID, |
|
3507 |
||
3508 |
jni_CallObjectMethod, |
|
3509 |
jni_CallObjectMethodV, |
|
3510 |
jni_CallObjectMethodA, |
|
3511 |
jni_CallBooleanMethod, |
|
3512 |
jni_CallBooleanMethodV, |
|
3513 |
jni_CallBooleanMethodA, |
|
3514 |
jni_CallByteMethod, |
|
3515 |
jni_CallByteMethodV, |
|
3516 |
jni_CallByteMethodA, |
|
3517 |
jni_CallCharMethod, |
|
3518 |
jni_CallCharMethodV, |
|
3519 |
jni_CallCharMethodA, |
|
3520 |
jni_CallShortMethod, |
|
3521 |
jni_CallShortMethodV, |
|
3522 |
jni_CallShortMethodA, |
|
3523 |
jni_CallIntMethod, |
|
3524 |
jni_CallIntMethodV, |
|
3525 |
jni_CallIntMethodA, |
|
3526 |
jni_CallLongMethod, |
|
3527 |
jni_CallLongMethodV, |
|
3528 |
jni_CallLongMethodA, |
|
3529 |
jni_CallFloatMethod, |
|
3530 |
jni_CallFloatMethodV, |
|
3531 |
jni_CallFloatMethodA, |
|
3532 |
jni_CallDoubleMethod, |
|
3533 |
jni_CallDoubleMethodV, |
|
3534 |
jni_CallDoubleMethodA, |
|
3535 |
jni_CallVoidMethod, |
|
3536 |
jni_CallVoidMethodV, |
|
3537 |
jni_CallVoidMethodA, |
|
3538 |
||
3539 |
jni_CallNonvirtualObjectMethod, |
|
3540 |
jni_CallNonvirtualObjectMethodV, |
|
3541 |
jni_CallNonvirtualObjectMethodA, |
|
3542 |
jni_CallNonvirtualBooleanMethod, |
|
3543 |
jni_CallNonvirtualBooleanMethodV, |
|
3544 |
jni_CallNonvirtualBooleanMethodA, |
|
3545 |
jni_CallNonvirtualByteMethod, |
|
3546 |
jni_CallNonvirtualByteMethodV, |
|
3547 |
jni_CallNonvirtualByteMethodA, |
|
3548 |
jni_CallNonvirtualCharMethod, |
|
3549 |
jni_CallNonvirtualCharMethodV, |
|
3550 |
jni_CallNonvirtualCharMethodA, |
|
3551 |
jni_CallNonvirtualShortMethod, |
|
3552 |
jni_CallNonvirtualShortMethodV, |
|
3553 |
jni_CallNonvirtualShortMethodA, |
|
3554 |
jni_CallNonvirtualIntMethod, |
|
3555 |
jni_CallNonvirtualIntMethodV, |
|
3556 |
jni_CallNonvirtualIntMethodA, |
|
3557 |
jni_CallNonvirtualLongMethod, |
|
3558 |
jni_CallNonvirtualLongMethodV, |
|
3559 |
jni_CallNonvirtualLongMethodA, |
|
3560 |
jni_CallNonvirtualFloatMethod, |
|
3561 |
jni_CallNonvirtualFloatMethodV, |
|
3562 |
jni_CallNonvirtualFloatMethodA, |
|
3563 |
jni_CallNonvirtualDoubleMethod, |
|
3564 |
jni_CallNonvirtualDoubleMethodV, |
|
3565 |
jni_CallNonvirtualDoubleMethodA, |
|
3566 |
jni_CallNonvirtualVoidMethod, |
|
3567 |
jni_CallNonvirtualVoidMethodV, |
|
3568 |
jni_CallNonvirtualVoidMethodA, |
|
3569 |
||
3570 |
jni_GetFieldID, |
|
3571 |
||
3572 |
jni_GetObjectField, |
|
3573 |
jni_GetBooleanField, |
|
3574 |
jni_GetByteField, |
|
3575 |
jni_GetCharField, |
|
3576 |
jni_GetShortField, |
|
3577 |
jni_GetIntField, |
|
3578 |
jni_GetLongField, |
|
3579 |
jni_GetFloatField, |
|
3580 |
jni_GetDoubleField, |
|
3581 |
||
3582 |
jni_SetObjectField, |
|
3583 |
jni_SetBooleanField, |
|
3584 |
jni_SetByteField, |
|
3585 |
jni_SetCharField, |
|
3586 |
jni_SetShortField, |
|
3587 |
jni_SetIntField, |
|
3588 |
jni_SetLongField, |
|
3589 |
jni_SetFloatField, |
|
3590 |
jni_SetDoubleField, |
|
3591 |
||
3592 |
jni_GetStaticMethodID, |
|
3593 |
||
3594 |
jni_CallStaticObjectMethod, |
|
3595 |
jni_CallStaticObjectMethodV, |
|
3596 |
jni_CallStaticObjectMethodA, |
|
3597 |
jni_CallStaticBooleanMethod, |
|
3598 |
jni_CallStaticBooleanMethodV, |
|
3599 |
jni_CallStaticBooleanMethodA, |
|
3600 |
jni_CallStaticByteMethod, |
|
3601 |
jni_CallStaticByteMethodV, |
|
3602 |
jni_CallStaticByteMethodA, |
|
3603 |
jni_CallStaticCharMethod, |
|
3604 |
jni_CallStaticCharMethodV, |
|
3605 |
jni_CallStaticCharMethodA, |
|
3606 |
jni_CallStaticShortMethod, |
|
3607 |
jni_CallStaticShortMethodV, |
|
3608 |
jni_CallStaticShortMethodA, |
|
3609 |
jni_CallStaticIntMethod, |
|
3610 |
jni_CallStaticIntMethodV, |
|
3611 |
jni_CallStaticIntMethodA, |
|
3612 |
jni_CallStaticLongMethod, |
|
3613 |
jni_CallStaticLongMethodV, |
|
3614 |
jni_CallStaticLongMethodA, |
|
3615 |
jni_CallStaticFloatMethod, |
|
3616 |
jni_CallStaticFloatMethodV, |
|
3617 |
jni_CallStaticFloatMethodA, |
|
3618 |
jni_CallStaticDoubleMethod, |
|
3619 |
jni_CallStaticDoubleMethodV, |
|
3620 |
jni_CallStaticDoubleMethodA, |
|
3621 |
jni_CallStaticVoidMethod, |
|
3622 |
jni_CallStaticVoidMethodV, |
|
3623 |
jni_CallStaticVoidMethodA, |
|
3624 |
||
3625 |
jni_GetStaticFieldID, |
|
3626 |
||
3627 |
jni_GetStaticObjectField, |
|
3628 |
jni_GetStaticBooleanField, |
|
3629 |
jni_GetStaticByteField, |
|
3630 |
jni_GetStaticCharField, |
|
3631 |
jni_GetStaticShortField, |
|
3632 |
jni_GetStaticIntField, |
|
3633 |
jni_GetStaticLongField, |
|
3634 |
jni_GetStaticFloatField, |
|
3635 |
jni_GetStaticDoubleField, |
|
3636 |
||
3637 |
jni_SetStaticObjectField, |
|
3638 |
jni_SetStaticBooleanField, |
|
3639 |
jni_SetStaticByteField, |
|
3640 |
jni_SetStaticCharField, |
|
3641 |
jni_SetStaticShortField, |
|
3642 |
jni_SetStaticIntField, |
|
3643 |
jni_SetStaticLongField, |
|
3644 |
jni_SetStaticFloatField, |
|
3645 |
jni_SetStaticDoubleField, |
|
3646 |
||
3647 |
jni_NewString, |
|
3648 |
jni_GetStringLength, |
|
3649 |
jni_GetStringChars, |
|
3650 |
jni_ReleaseStringChars, |
|
3651 |
||
3652 |
jni_NewStringUTF, |
|
3653 |
jni_GetStringUTFLength, |
|
3654 |
jni_GetStringUTFChars, |
|
3655 |
jni_ReleaseStringUTFChars, |
|
3656 |
||
3657 |
jni_GetArrayLength, |
|
3658 |
||
3659 |
jni_NewObjectArray, |
|
3660 |
jni_GetObjectArrayElement, |
|
3661 |
jni_SetObjectArrayElement, |
|
3662 |
||
3663 |
jni_NewBooleanArray, |
|
3664 |
jni_NewByteArray, |
|
3665 |
jni_NewCharArray, |
|
3666 |
jni_NewShortArray, |
|
3667 |
jni_NewIntArray, |
|
3668 |
jni_NewLongArray, |
|
3669 |
jni_NewFloatArray, |
|
3670 |
jni_NewDoubleArray, |
|
3671 |
||
3672 |
jni_GetBooleanArrayElements, |
|
3673 |
jni_GetByteArrayElements, |
|
3674 |
jni_GetCharArrayElements, |
|
3675 |
jni_GetShortArrayElements, |
|
3676 |
jni_GetIntArrayElements, |
|
3677 |
jni_GetLongArrayElements, |
|
3678 |
jni_GetFloatArrayElements, |
|
3679 |
jni_GetDoubleArrayElements, |
|
3680 |
||
3681 |
jni_ReleaseBooleanArrayElements, |
|
3682 |
jni_ReleaseByteArrayElements, |
|
3683 |
jni_ReleaseCharArrayElements, |
|
3684 |
jni_ReleaseShortArrayElements, |
|
3685 |
jni_ReleaseIntArrayElements, |
|
3686 |
jni_ReleaseLongArrayElements, |
|
3687 |
jni_ReleaseFloatArrayElements, |
|
3688 |
jni_ReleaseDoubleArrayElements, |
|
3689 |
||
3690 |
jni_GetBooleanArrayRegion, |
|
3691 |
jni_GetByteArrayRegion, |
|
3692 |
jni_GetCharArrayRegion, |
|
3693 |
jni_GetShortArrayRegion, |
|
3694 |
jni_GetIntArrayRegion, |
|
3695 |
jni_GetLongArrayRegion, |
|
3696 |
jni_GetFloatArrayRegion, |
|
3697 |
jni_GetDoubleArrayRegion, |
|
3698 |
||
3699 |
jni_SetBooleanArrayRegion, |
|
3700 |
jni_SetByteArrayRegion, |
|
3701 |
jni_SetCharArrayRegion, |
|
3702 |
jni_SetShortArrayRegion, |
|
3703 |
jni_SetIntArrayRegion, |
|
3704 |
jni_SetLongArrayRegion, |
|
3705 |
jni_SetFloatArrayRegion, |
|
3706 |
jni_SetDoubleArrayRegion, |
|
3707 |
||
3708 |
jni_RegisterNatives, |
|
3709 |
jni_UnregisterNatives, |
|
3710 |
||
3711 |
jni_MonitorEnter, |
|
3712 |
jni_MonitorExit, |
|
3713 |
||
3714 |
jni_GetJavaVM, |
|
3715 |
||
3716 |
jni_GetStringRegion, |
|
3717 |
jni_GetStringUTFRegion, |
|
3718 |
||
3719 |
jni_GetPrimitiveArrayCritical, |
|
3720 |
jni_ReleasePrimitiveArrayCritical, |
|
3721 |
||
3722 |
jni_GetStringCritical, |
|
3723 |
jni_ReleaseStringCritical, |
|
3724 |
||
3725 |
jni_NewWeakGlobalRef, |
|
3726 |
jni_DeleteWeakGlobalRef, |
|
3727 |
||
3728 |
jni_ExceptionCheck, |
|
3729 |
||
3730 |
jni_NewDirectByteBuffer, |
|
3731 |
jni_GetDirectBufferAddress, |
|
3732 |
jni_GetDirectBufferCapacity, |
|
3733 |
||
3734 |
// New 1_6 features |
|
3735 |
||
36508 | 3736 |
jni_GetObjectRefType, |
3737 |
||
3738 |
// Module features |
|
3739 |
||
42307
cefc81dc1d52
8169069: Module system implementation refresh (11/2016)
alanb
parents:
41669
diff
changeset
|
3740 |
jni_GetModule |
1 | 3741 |
}; |
3742 |
||
3743 |
||
3744 |
// For jvmti use to modify jni function table. |
|
3745 |
// Java threads in native contiues to run until it is transitioned |
|
3746 |
// to VM at safepoint. Before the transition or before it is blocked |
|
3747 |
// for safepoint it may access jni function table. VM could crash if |
|
3748 |
// any java thread access the jni function table in the middle of memcpy. |
|
3749 |
// To avoid this each function pointers are copied automically. |
|
3750 |
void copy_jni_function_table(const struct JNINativeInterface_ *new_jni_NativeInterface) { |
|
3751 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint"); |
|
3752 |
intptr_t *a = (intptr_t *) jni_functions(); |
|
3753 |
intptr_t *b = (intptr_t *) new_jni_NativeInterface; |
|
3754 |
for (uint i=0; i < sizeof(struct JNINativeInterface_)/sizeof(void *); i++) { |
|
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47627
diff
changeset
|
3755 |
Atomic::store(*b++, a++); |
1 | 3756 |
} |
3757 |
} |
|
3758 |
||
3759 |
void quicken_jni_functions() { |
|
3760 |
// Replace Get<Primitive>Field with fast versions |
|
3761 |
if (UseFastJNIAccessors && !JvmtiExport::can_post_field_access() |
|
34285
0b07014c15e9
8143155: Remove TraceRuntimeCalls, TraceJNICalls, and TraceJVMCalls rather than convert to UL
rprotacio
parents:
33813
diff
changeset
|
3762 |
&& !VerifyJNIFields && !CountJNICalls && !CheckJNICalls |
1 | 3763 |
#if defined(_WINDOWS) && defined(IA32) && defined(COMPILER2) |
3764 |
// windows x86 currently needs SEH wrapper and the gain of the fast |
|
3765 |
// versions currently isn't certain for server vm on uniprocessor. |
|
3766 |
&& os::is_MP() |
|
3767 |
#endif |
|
3768 |
) { |
|
3769 |
address func; |
|
3770 |
func = JNI_FastGetField::generate_fast_get_boolean_field(); |
|
3771 |
if (func != (address)-1) { |
|
3772 |
jni_NativeInterface.GetBooleanField = (GetBooleanField_t)func; |
|
3773 |
} |
|
3774 |
func = JNI_FastGetField::generate_fast_get_byte_field(); |
|
3775 |
if (func != (address)-1) { |
|
3776 |
jni_NativeInterface.GetByteField = (GetByteField_t)func; |
|
3777 |
} |
|
3778 |
func = JNI_FastGetField::generate_fast_get_char_field(); |
|
3779 |
if (func != (address)-1) { |
|
3780 |
jni_NativeInterface.GetCharField = (GetCharField_t)func; |
|
3781 |
} |
|
3782 |
func = JNI_FastGetField::generate_fast_get_short_field(); |
|
3783 |
if (func != (address)-1) { |
|
3784 |
jni_NativeInterface.GetShortField = (GetShortField_t)func; |
|
3785 |
} |
|
3786 |
func = JNI_FastGetField::generate_fast_get_int_field(); |
|
3787 |
if (func != (address)-1) { |
|
3788 |
jni_NativeInterface.GetIntField = (GetIntField_t)func; |
|
3789 |
} |
|
3790 |
func = JNI_FastGetField::generate_fast_get_long_field(); |
|
3791 |
if (func != (address)-1) { |
|
3792 |
jni_NativeInterface.GetLongField = (GetLongField_t)func; |
|
3793 |
} |
|
3794 |
func = JNI_FastGetField::generate_fast_get_float_field(); |
|
3795 |
if (func != (address)-1) { |
|
3796 |
jni_NativeInterface.GetFloatField = (GetFloatField_t)func; |
|
3797 |
} |
|
3798 |
func = JNI_FastGetField::generate_fast_get_double_field(); |
|
3799 |
if (func != (address)-1) { |
|
3800 |
jni_NativeInterface.GetDoubleField = (GetDoubleField_t)func; |
|
3801 |
} |
|
3802 |
} |
|
3803 |
} |
|
3804 |
||
3805 |
// Returns the function structure |
|
3806 |
struct JNINativeInterface_* jni_functions() { |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
3807 |
#if INCLUDE_JNI_CHECK |
1 | 3808 |
if (CheckJNICalls) return jni_functions_check(); |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
13728
diff
changeset
|
3809 |
#endif // INCLUDE_JNI_CHECK |
1 | 3810 |
return &jni_NativeInterface; |
3811 |
} |
|
3812 |
||
3813 |
// Returns the function structure |
|
3814 |
struct JNINativeInterface_* jni_functions_nocheck() { |
|
3815 |
return &jni_NativeInterface; |
|
3816 |
} |
|
3817 |
||
3818 |
||
3819 |
// Invocation API |
|
3820 |
||
3821 |
||
3822 |
// Forward declaration |
|
3823 |
extern const struct JNIInvokeInterface_ jni_InvokeInterface; |
|
3824 |
||
3825 |
// Global invocation API vars |
|
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
3826 |
volatile int vm_created = 0; |
1 | 3827 |
// Indicate whether it is safe to recreate VM |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
3828 |
volatile int safe_to_recreate_vm = 1; |
1 | 3829 |
struct JavaVM_ main_vm = {&jni_InvokeInterface}; |
3830 |
||
3831 |
||
3832 |
#define JAVASTACKSIZE (400 * 1024) /* Default size of a thread java stack */ |
|
3833 |
enum { VERIFY_NONE, VERIFY_REMOTE, VERIFY_ALL }; |
|
3834 |
||
10739 | 3835 |
DT_RETURN_MARK_DECL(GetDefaultJavaVMInitArgs, jint |
3836 |
, HOTSPOT_JNI_GETDEFAULTJAVAVMINITARGS_RETURN(_ret_ref)); |
|
1 | 3837 |
|
3838 |
_JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetDefaultJavaVMInitArgs(void *args_) { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3839 |
HOTSPOT_JNI_GETDEFAULTJAVAVMINITARGS_ENTRY(args_); |
1 | 3840 |
JDK1_1InitArgs *args = (JDK1_1InitArgs *)args_; |
3841 |
jint ret = JNI_ERR; |
|
3842 |
DT_RETURN_MARK(GetDefaultJavaVMInitArgs, jint, (const jint&)ret); |
|
3843 |
||
3844 |
if (Threads::is_supported_jni_version(args->version)) { |
|
3845 |
ret = JNI_OK; |
|
3846 |
} |
|
3847 |
// 1.1 style no longer supported in hotspot. |
|
3848 |
// According the JNI spec, we should update args->version on return. |
|
3849 |
// We also use the structure to communicate with launcher about default |
|
3850 |
// stack size. |
|
3851 |
if (args->version == JNI_VERSION_1_1) { |
|
3852 |
args->version = JNI_VERSION_1_2; |
|
3853 |
// javaStackSize is int in arguments structure |
|
3854 |
assert(jlong(ThreadStackSize) * K < INT_MAX, "integer overflow"); |
|
3855 |
args->javaStackSize = (jint)(ThreadStackSize * K); |
|
3856 |
} |
|
3857 |
return ret; |
|
3858 |
} |
|
3859 |
||
10739 | 3860 |
DT_RETURN_MARK_DECL(CreateJavaVM, jint |
3861 |
, HOTSPOT_JNI_CREATEJAVAVM_RETURN(_ret_ref)); |
|
1 | 3862 |
|
30143
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
3863 |
static jint JNI_CreateJavaVM_inner(JavaVM **vm, void **penv, void *args) { |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
3864 |
HOTSPOT_JNI_CREATEJAVAVM_ENTRY((void **) vm, penv, args); |
1 | 3865 |
|
3866 |
jint result = JNI_ERR; |
|
3867 |
DT_RETURN_MARK(CreateJavaVM, jint, (const jint&)result); |
|
3868 |
||
4448 | 3869 |
// We're about to use Atomic::xchg for synchronization. Some Zero |
3870 |
// platforms use the GCC builtin __sync_lock_test_and_set for this, |
|
3871 |
// but __sync_lock_test_and_set is not guaranteed to do what we want |
|
3872 |
// on all architectures. So we check it works before relying on it. |
|
3873 |
#if defined(ZERO) && defined(ASSERT) |
|
3874 |
{ |
|
3875 |
jint a = 0xcafebabe; |
|
47627
6218d903d2f2
8189333: Fix Zero build after Atomic::xchg changes
rkennke
parents:
47613
diff
changeset
|
3876 |
jint b = Atomic::xchg((jint) 0xdeadbeef, &a); |
4448 | 3877 |
void *c = &a; |
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47627
diff
changeset
|
3878 |
void *d = Atomic::xchg(&b, &c); |
4561 | 3879 |
assert(a == (jint) 0xdeadbeef && b == (jint) 0xcafebabe, "Atomic::xchg() works"); |
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47627
diff
changeset
|
3880 |
assert(c == &b && d == &a, "Atomic::xchg() works"); |
4448 | 3881 |
} |
3882 |
#endif // ZERO && ASSERT |
|
3883 |
||
1 | 3884 |
// At the moment it's only possible to have one Java VM, |
3885 |
// since some of the runtime state is in global variables. |
|
3886 |
||
3887 |
// We cannot use our mutex locks here, since they only work on |
|
3888 |
// Threads. We do an atomic compare and exchange to ensure only |
|
3889 |
// one thread can call this method at a time |
|
3890 |
||
3891 |
// We use Atomic::xchg rather than Atomic::add/dec since on some platforms |
|
3892 |
// the add/dec implementations are dependent on whether we are running |
|
3893 |
// on a multiprocessor, and at this stage of initialization the os::is_MP |
|
3894 |
// function used to determine this will always return false. Atomic::xchg |
|
3895 |
// does not have this problem. |
|
3896 |
if (Atomic::xchg(1, &vm_created) == 1) { |
|
18680
6d5dc445baec
8019833: Wrong JNI error code for preexisting JVM
coleenp
parents:
18486
diff
changeset
|
3897 |
return JNI_EEXIST; // already created, or create attempt in progress |
1 | 3898 |
} |
3899 |
if (Atomic::xchg(0, &safe_to_recreate_vm) == 0) { |
|
3900 |
return JNI_ERR; // someone tried and failed and retry not allowed. |
|
3901 |
} |
|
3902 |
||
3903 |
assert(vm_created == 1, "vm_created is true during the creation"); |
|
3904 |
||
3905 |
/** |
|
3906 |
* Certain errors during initialization are recoverable and do not |
|
3907 |
* prevent this method from being called again at a later time |
|
3908 |
* (perhaps with different arguments). However, at a certain |
|
3909 |
* point during initialization if an error occurs we cannot allow |
|
3910 |
* this function to be called again (or it will crash). In those |
|
3911 |
* situations, the 'canTryAgain' flag is set to false, which atomically |
|
3912 |
* sets safe_to_recreate_vm to 1, such that any new call to |
|
3913 |
* JNI_CreateJavaVM will immediately fail using the above logic. |
|
3914 |
*/ |
|
3915 |
bool can_try_again = true; |
|
3916 |
||
3917 |
result = Threads::create_vm((JavaVMInitArgs*) args, &can_try_again); |
|
3918 |
if (result == JNI_OK) { |
|
3919 |
JavaThread *thread = JavaThread::current(); |
|
22539
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3920 |
assert(!thread->has_pending_exception(), "should have returned not OK"); |
1 | 3921 |
/* thread is thread_in_vm here */ |
3922 |
*vm = (JavaVM *)(&main_vm); |
|
3923 |
*(JNIEnv**)penv = thread->jni_environment(); |
|
3924 |
||
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3925 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3926 |
if (EnableJVMCI) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3927 |
if (UseJVMCICompiler) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3928 |
// JVMCI is initialized on a CompilerThread |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3929 |
if (BootstrapJVMCI) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3930 |
JavaThread* THREAD = thread; |
47796
47629b00daa9
8187315: [JVMCI] hosted use of JVMCI can crash VM under -Xint
dnsimon
parents:
47765
diff
changeset
|
3931 |
JVMCICompiler* compiler = JVMCICompiler::instance(true, CATCH); |
38674
eacc567feae8
8156034: [JVMCI] Notify the jvmci compiler on completion of a bootstrap
never
parents:
38151
diff
changeset
|
3932 |
compiler->bootstrap(THREAD); |
eacc567feae8
8156034: [JVMCI] Notify the jvmci compiler on completion of a bootstrap
never
parents:
38151
diff
changeset
|
3933 |
if (HAS_PENDING_EXCEPTION) { |
eacc567feae8
8156034: [JVMCI] Notify the jvmci compiler on completion of a bootstrap
never
parents:
38151
diff
changeset
|
3934 |
HandleMark hm; |
eacc567feae8
8156034: [JVMCI] Notify the jvmci compiler on completion of a bootstrap
never
parents:
38151
diff
changeset
|
3935 |
vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION)); |
eacc567feae8
8156034: [JVMCI] Notify the jvmci compiler on completion of a bootstrap
never
parents:
38151
diff
changeset
|
3936 |
} |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3937 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3938 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3939 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3940 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32598
diff
changeset
|
3941 |
|
1 | 3942 |
// Tracks the time application was running before GC |
3943 |
RuntimeService::record_application_start(); |
|
3944 |
||
3945 |
// Notify JVMTI |
|
3946 |
if (JvmtiExport::should_post_thread_life()) { |
|
3947 |
JvmtiExport::post_thread_start(thread); |
|
3948 |
} |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
11247
diff
changeset
|
3949 |
|
18025 | 3950 |
EventThreadStart event; |
3951 |
if (event.should_commit()) { |
|
36384 | 3952 |
event.set_thread(THREAD_TRACE_ID(thread)); |
18025 | 3953 |
event.commit(); |
3954 |
} |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
11247
diff
changeset
|
3955 |
|
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3956 |
#ifndef PRODUCT |
1 | 3957 |
// Check if we should compile all classes on bootclasspath |
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3958 |
if (CompileTheWorld) ClassLoader::compile_the_world(); |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3959 |
if (ReplayCompiles) ciReplay::replay(thread); |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3960 |
|
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3961 |
// Some platforms (like Win*) need a wrapper around these test |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3962 |
// functions in order to properly handle error conditions. |
46589 | 3963 |
VMError::test_error_handler(); |
35519
9200162499f7
8146994: Move internal vm tests to a separate file
ehelin
parents:
35500
diff
changeset
|
3964 |
if (ExecuteInternalVMTests) { |
9200162499f7
8146994: Move internal vm tests to a separate file
ehelin
parents:
35500
diff
changeset
|
3965 |
InternalVMTests::run(); |
9200162499f7
8146994: Move internal vm tests to a separate file
ehelin
parents:
35500
diff
changeset
|
3966 |
} |
18683
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3967 |
#endif |
a6418e038255
8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents:
18680
diff
changeset
|
3968 |
|
1 | 3969 |
// Since this is not a JVM_ENTRY we have to set the thread state manually before leaving. |
3970 |
ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native); |
|
3971 |
} else { |
|
22539
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3972 |
// If create_vm exits because of a pending exception, exit with that |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3973 |
// exception. In the future when we figure out how to reclaim memory, |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3974 |
// we may be able to exit with JNI_ERR and allow the calling application |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3975 |
// to continue. |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3976 |
if (Universe::is_fully_initialized()) { |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3977 |
// otherwise no pending exception possible - VM will already have aborted |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3978 |
JavaThread* THREAD = JavaThread::current(); |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3979 |
if (HAS_PENDING_EXCEPTION) { |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3980 |
HandleMark hm; |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3981 |
vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION)); |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3982 |
} |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3983 |
} |
a27fa687eca8
8028275: Metaspace ShrinkGrowTest causes fatal error if run with JFR
coleenp
parents:
22532
diff
changeset
|
3984 |
|
1 | 3985 |
if (can_try_again) { |
3986 |
// reset safe_to_recreate_vm to 1 so that retrial would be possible |
|
3987 |
safe_to_recreate_vm = 1; |
|
3988 |
} |
|
3989 |
||
3990 |
// Creation failed. We must reset vm_created |
|
3991 |
*vm = 0; |
|
3992 |
*(JNIEnv**)penv = 0; |
|
3993 |
// reset vm_created last to avoid race condition. Use OrderAccess to |
|
3994 |
// control both compiler and architectural-based reordering. |
|
3995 |
OrderAccess::release_store(&vm_created, 0); |
|
3996 |
} |
|
3997 |
||
33600
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33576
diff
changeset
|
3998 |
// Flush stdout and stderr before exit. |
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33576
diff
changeset
|
3999 |
fflush(stdout); |
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33576
diff
changeset
|
4000 |
fflush(stderr); |
922600753f71
8139801: Error message from validation check has wrong order on Windows
sangheki
parents:
33576
diff
changeset
|
4001 |
|
1 | 4002 |
return result; |
30143
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4003 |
|
1 | 4004 |
} |
4005 |
||
30143
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4006 |
_JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_CreateJavaVM(JavaVM **vm, void **penv, void *args) { |
46955
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4007 |
jint result = JNI_ERR; |
30143
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4008 |
// On Windows, let CreateJavaVM run with SEH protection |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4009 |
#ifdef _WIN32 |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4010 |
__try { |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4011 |
#endif |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4012 |
result = JNI_CreateJavaVM_inner(vm, penv, args); |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4013 |
#ifdef _WIN32 |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4014 |
} __except(topLevelExceptionFilter((_EXCEPTION_POINTERS*)_exception_info())) { |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4015 |
// Nothing to do. |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4016 |
} |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4017 |
#endif |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4018 |
return result; |
7e99f2b4bae5
8074860: Structured Exception Catcher missing around CreateJavaVM on Windows
stuefe
parents:
29081
diff
changeset
|
4019 |
} |
1 | 4020 |
|
4021 |
_JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetCreatedJavaVMs(JavaVM **vm_buf, jsize bufLen, jsize *numVMs) { |
|
4022 |
// See bug 4367188, the wrapper can sometimes cause VM crashes |
|
4023 |
// JNIWrapper("GetCreatedJavaVMs"); |
|
22796 | 4024 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4025 |
HOTSPOT_JNI_GETCREATEDJAVAVMS_ENTRY((void **) vm_buf, bufLen, (uintptr_t *) numVMs); |
22796 | 4026 |
|
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
4027 |
if (vm_created == 1) { |
1 | 4028 |
if (numVMs != NULL) *numVMs = 1; |
4029 |
if (bufLen > 0) *vm_buf = (JavaVM *)(&main_vm); |
|
4030 |
} else { |
|
4031 |
if (numVMs != NULL) *numVMs = 0; |
|
4032 |
} |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4033 |
HOTSPOT_JNI_GETCREATEDJAVAVMS_RETURN(JNI_OK); |
1 | 4034 |
return JNI_OK; |
4035 |
} |
|
4036 |
||
4037 |
extern "C" { |
|
4038 |
||
10739 | 4039 |
DT_RETURN_MARK_DECL(DestroyJavaVM, jint |
4040 |
, HOTSPOT_JNI_DESTROYJAVAVM_RETURN(_ret_ref)); |
|
1 | 4041 |
|
46955
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4042 |
static jint JNICALL jni_DestroyJavaVM_inner(JavaVM *vm) { |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4043 |
HOTSPOT_JNI_DESTROYJAVAVM_ENTRY(vm); |
1 | 4044 |
jint res = JNI_ERR; |
4045 |
DT_RETURN_MARK(DestroyJavaVM, jint, (const jint&)res); |
|
4046 |
||
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
4047 |
if (vm_created == 0) { |
1 | 4048 |
res = JNI_ERR; |
4049 |
return res; |
|
4050 |
} |
|
4051 |
||
4052 |
JNIWrapper("DestroyJavaVM"); |
|
4053 |
JNIEnv *env; |
|
4054 |
JavaVMAttachArgs destroyargs; |
|
4055 |
destroyargs.version = CurrentVersion; |
|
4056 |
destroyargs.name = (char *)"DestroyJavaVM"; |
|
4057 |
destroyargs.group = NULL; |
|
4058 |
res = vm->AttachCurrentThread((void **)&env, (void *)&destroyargs); |
|
4059 |
if (res != JNI_OK) { |
|
4060 |
return res; |
|
4061 |
} |
|
4062 |
||
4063 |
// Since this is not a JVM_ENTRY we have to set the thread state manually before entering. |
|
4064 |
JavaThread* thread = JavaThread::current(); |
|
4065 |
ThreadStateTransition::transition_from_native(thread, _thread_in_vm); |
|
4066 |
if (Threads::destroy_vm()) { |
|
4067 |
// Should not change thread state, VM is gone |
|
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
4068 |
vm_created = 0; |
1 | 4069 |
res = JNI_OK; |
4070 |
return res; |
|
4071 |
} else { |
|
4072 |
ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native); |
|
4073 |
res = JNI_ERR; |
|
4074 |
return res; |
|
4075 |
} |
|
4076 |
} |
|
4077 |
||
46955
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4078 |
jint JNICALL jni_DestroyJavaVM(JavaVM *vm) { |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4079 |
jint result = JNI_ERR; |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4080 |
// On Windows, we need SEH protection |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4081 |
#ifdef _WIN32 |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4082 |
__try { |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4083 |
#endif |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4084 |
result = jni_DestroyJavaVM_inner(vm); |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4085 |
#ifdef _WIN32 |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4086 |
} __except(topLevelExceptionFilter((_EXCEPTION_POINTERS*)_exception_info())) { |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4087 |
// Nothing to do. |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4088 |
} |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4089 |
#endif |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4090 |
return result; |
c5a455ec08c0
8186199: [windows] JNI_DestroyJavaVM not covered by SEH
stuefe
parents:
46589
diff
changeset
|
4091 |
} |
1 | 4092 |
|
4093 |
static jint attach_current_thread(JavaVM *vm, void **penv, void *_args, bool daemon) { |
|
4094 |
JavaVMAttachArgs *args = (JavaVMAttachArgs *) _args; |
|
4095 |
||
4096 |
// Check below commented out from JDK1.2fcs as well |
|
4097 |
/* |
|
4098 |
if (args && (args->version != JNI_VERSION_1_1 || args->version != JNI_VERSION_1_2)) { |
|
4099 |
return JNI_EVERSION; |
|
4100 |
} |
|
4101 |
*/ |
|
4102 |
||
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34317
diff
changeset
|
4103 |
Thread* t = Thread::current_or_null(); |
1 | 4104 |
if (t != NULL) { |
4105 |
// If the thread has been attached this operation is a no-op |
|
4106 |
*(JNIEnv**)penv = ((JavaThread*) t)->jni_environment(); |
|
4107 |
return JNI_OK; |
|
4108 |
} |
|
4109 |
||
4110 |
// Create a thread and mark it as attaching so it will be skipped by the |
|
4111 |
// ThreadsListEnumerator - see CR 6404306 |
|
4112 |
JavaThread* thread = new JavaThread(true); |
|
4113 |
||
4114 |
// Set correct safepoint info. The thread is going to call into Java when |
|
4115 |
// initializing the Java level thread object. Hence, the correct state must |
|
4116 |
// be set in order for the Safepoint code to deal with it correctly. |
|
4117 |
thread->set_thread_state(_thread_in_vm); |
|
4118 |
thread->record_stack_base_and_size(); |
|
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34317
diff
changeset
|
4119 |
thread->initialize_thread_current(); |
1 | 4120 |
|
4121 |
if (!os::create_attached_thread(thread)) { |
|
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
4122 |
thread->smr_delete(); |
1 | 4123 |
return JNI_ERR; |
4124 |
} |
|
5041
5bce37d77dde
6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents:
4571
diff
changeset
|
4125 |
// Enable stack overflow checks |
5bce37d77dde
6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents:
4571
diff
changeset
|
4126 |
thread->create_stack_guard_pages(); |
5bce37d77dde
6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents:
4571
diff
changeset
|
4127 |
|
1 | 4128 |
thread->initialize_tlab(); |
4129 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
4130 |
thread->cache_global_variables(); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
4131 |
|
1 | 4132 |
// Crucial that we do not have a safepoint check for this thread, since it has |
4133 |
// not been added to the Thread list yet. |
|
4134 |
{ Threads_lock->lock_without_safepoint_check(); |
|
4135 |
// This must be inside this lock in order to get FullGCALot to work properly, i.e., to |
|
4136 |
// avoid this thread trying to do a GC before it is added to the thread-list |
|
4137 |
thread->set_active_handles(JNIHandleBlock::allocate_block()); |
|
4138 |
Threads::add(thread, daemon); |
|
4139 |
Threads_lock->unlock(); |
|
4140 |
} |
|
4141 |
// Create thread group and name info from attach arguments |
|
4142 |
oop group = NULL; |
|
4143 |
char* thread_name = NULL; |
|
4144 |
if (args != NULL && Threads::is_supported_jni_version(args->version)) { |
|
4145 |
group = JNIHandles::resolve(args->group); |
|
4146 |
thread_name = args->name; // may be NULL |
|
4147 |
} |
|
4148 |
if (group == NULL) group = Universe::main_thread_group(); |
|
4149 |
||
4150 |
// Create Java level thread object and attach it to this thread |
|
4151 |
bool attach_failed = false; |
|
4152 |
{ |
|
4153 |
EXCEPTION_MARK; |
|
4154 |
HandleMark hm(THREAD); |
|
4155 |
Handle thread_group(THREAD, group); |
|
4156 |
thread->allocate_threadObj(thread_group, thread_name, daemon, THREAD); |
|
4157 |
if (HAS_PENDING_EXCEPTION) { |
|
4158 |
CLEAR_PENDING_EXCEPTION; |
|
4159 |
// cleanup outside the handle mark. |
|
4160 |
attach_failed = true; |
|
4161 |
} |
|
4162 |
} |
|
4163 |
||
4164 |
if (attach_failed) { |
|
4165 |
// Added missing cleanup |
|
4166 |
thread->cleanup_failed_attach_current_thread(); |
|
4167 |
return JNI_ERR; |
|
4168 |
} |
|
4169 |
||
4170 |
// mark the thread as no longer attaching |
|
4171 |
// this uses a fence to push the change through so we don't have |
|
4172 |
// to regrab the threads_lock |
|
10739 | 4173 |
thread->set_done_attaching_via_jni(); |
1 | 4174 |
|
4175 |
// Set java thread status. |
|
4176 |
java_lang_Thread::set_thread_status(thread->threadObj(), |
|
4177 |
java_lang_Thread::RUNNABLE); |
|
4178 |
||
4179 |
// Notify the debugger |
|
4180 |
if (JvmtiExport::should_post_thread_life()) { |
|
4181 |
JvmtiExport::post_thread_start(thread); |
|
4182 |
} |
|
4183 |
||
18025 | 4184 |
EventThreadStart event; |
4185 |
if (event.should_commit()) { |
|
36384 | 4186 |
event.set_thread(THREAD_TRACE_ID(thread)); |
18025 | 4187 |
event.commit(); |
4188 |
} |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
11247
diff
changeset
|
4189 |
|
1 | 4190 |
*(JNIEnv**)penv = thread->jni_environment(); |
4191 |
||
4192 |
// Now leaving the VM, so change thread_state. This is normally automatically taken care |
|
4193 |
// of in the JVM_ENTRY. But in this situation we have to do it manually. Notice, that by |
|
4194 |
// using ThreadStateTransition::transition, we do a callback to the safepoint code if |
|
4195 |
// needed. |
|
4196 |
||
4197 |
ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native); |
|
4198 |
||
4199 |
// Perform any platform dependent FPU setup |
|
4200 |
os::setup_fpu(); |
|
4201 |
||
4202 |
return JNI_OK; |
|
4203 |
} |
|
4204 |
||
4205 |
||
4206 |
jint JNICALL jni_AttachCurrentThread(JavaVM *vm, void **penv, void *_args) { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4207 |
HOTSPOT_JNI_ATTACHCURRENTTHREAD_ENTRY(vm, penv, _args); |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
4208 |
if (vm_created == 0) { |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4209 |
HOTSPOT_JNI_ATTACHCURRENTTHREAD_RETURN((uint32_t) JNI_ERR); |
1 | 4210 |
return JNI_ERR; |
4211 |
} |
|
4212 |
||
4213 |
JNIWrapper("AttachCurrentThread"); |
|
4214 |
jint ret = attach_current_thread(vm, penv, _args, false); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4215 |
HOTSPOT_JNI_ATTACHCURRENTTHREAD_RETURN(ret); |
1 | 4216 |
return ret; |
4217 |
} |
|
4218 |
||
4219 |
||
4220 |
jint JNICALL jni_DetachCurrentThread(JavaVM *vm) { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4221 |
HOTSPOT_JNI_DETACHCURRENTTHREAD_ENTRY(vm); |
1 | 4222 |
VM_Exit::block_if_vm_exited(); |
4223 |
||
4224 |
JNIWrapper("DetachCurrentThread"); |
|
4225 |
||
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34317
diff
changeset
|
4226 |
// If the thread has already been detached the operation is a no-op |
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34317
diff
changeset
|
4227 |
if (Thread::current_or_null() == NULL) { |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4228 |
HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(JNI_OK); |
1 | 4229 |
return JNI_OK; |
4230 |
} |
|
4231 |
||
4232 |
JavaThread* thread = JavaThread::current(); |
|
4233 |
if (thread->has_last_Java_frame()) { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4234 |
HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN((uint32_t) JNI_ERR); |
1 | 4235 |
// Can't detach a thread that's running java, that can't work. |
4236 |
return JNI_ERR; |
|
4237 |
} |
|
4238 |
||
4239 |
// Safepoint support. Have to do call-back to safepoint code, if in the |
|
4240 |
// middel of a safepoint operation |
|
4241 |
ThreadStateTransition::transition_from_native(thread, _thread_in_vm); |
|
4242 |
||
4243 |
// XXX: Note that JavaThread::exit() call below removes the guards on the |
|
4244 |
// stack pages set up via enable_stack_{red,yellow}_zone() calls |
|
4245 |
// above in jni_AttachCurrentThread. Unfortunately, while the setting |
|
4246 |
// of the guards is visible in jni_AttachCurrentThread above, |
|
4247 |
// the removal of the guards is buried below in JavaThread::exit() |
|
4248 |
// here. The abstraction should be more symmetrically either exposed |
|
4249 |
// or hidden (e.g. it could probably be hidden in the same |
|
4250 |
// (platform-dependent) methods where we do alternate stack |
|
4251 |
// maintenance work?) |
|
4252 |
thread->exit(false, JavaThread::jni_detach); |
|
48105
8d15b1369c7a
8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents:
47998
diff
changeset
|
4253 |
thread->smr_delete(); |
1 | 4254 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4255 |
HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(JNI_OK); |
1 | 4256 |
return JNI_OK; |
4257 |
} |
|
4258 |
||
10739 | 4259 |
DT_RETURN_MARK_DECL(GetEnv, jint |
4260 |
, HOTSPOT_JNI_GETENV_RETURN(_ret_ref)); |
|
1 | 4261 |
|
4262 |
jint JNICALL jni_GetEnv(JavaVM *vm, void **penv, jint version) { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4263 |
HOTSPOT_JNI_GETENV_ENTRY(vm, penv, version); |
1 | 4264 |
jint ret = JNI_ERR; |
4265 |
DT_RETURN_MARK(GetEnv, jint, (const jint&)ret); |
|
4266 |
||
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
4267 |
if (vm_created == 0) { |
1 | 4268 |
*penv = NULL; |
4269 |
ret = JNI_EDETACHED; |
|
4270 |
return ret; |
|
4271 |
} |
|
4272 |
||
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
11247
diff
changeset
|
4273 |
if (JniExportedInterface::GetExportedInterface(vm, penv, version, &ret)) { |
1 | 4274 |
return ret; |
4275 |
} |
|
4276 |
||
4277 |
#ifndef JVMPI_VERSION_1 |
|
4278 |
// need these in order to be polite about older agents |
|
4279 |
#define JVMPI_VERSION_1 ((jint)0x10000001) |
|
4280 |
#define JVMPI_VERSION_1_1 ((jint)0x10000002) |
|
4281 |
#define JVMPI_VERSION_1_2 ((jint)0x10000003) |
|
4282 |
#endif // !JVMPI_VERSION_1 |
|
4283 |
||
34633
2a6c7c7b30a7
8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents:
34317
diff
changeset
|
4284 |
Thread* thread = Thread::current_or_null(); |
1 | 4285 |
if (thread != NULL && thread->is_Java_thread()) { |
4286 |
if (Threads::is_supported_jni_version_including_1_1(version)) { |
|
4287 |
*(JNIEnv**)penv = ((JavaThread*) thread)->jni_environment(); |
|
4288 |
ret = JNI_OK; |
|
4289 |
return ret; |
|
4290 |
||
4291 |
} else if (version == JVMPI_VERSION_1 || |
|
4292 |
version == JVMPI_VERSION_1_1 || |
|
4293 |
version == JVMPI_VERSION_1_2) { |
|
4294 |
tty->print_cr("ERROR: JVMPI, an experimental interface, is no longer supported."); |
|
4295 |
tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI)."); |
|
4296 |
ret = JNI_EVERSION; |
|
4297 |
return ret; |
|
4298 |
} else if (JvmtiExport::is_jvmdi_version(version)) { |
|
4299 |
tty->print_cr("FATAL ERROR: JVMDI is no longer supported."); |
|
4300 |
tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI)."); |
|
4301 |
ret = JNI_EVERSION; |
|
4302 |
return ret; |
|
4303 |
} else { |
|
4304 |
*penv = NULL; |
|
4305 |
ret = JNI_EVERSION; |
|
4306 |
return ret; |
|
4307 |
} |
|
4308 |
} else { |
|
4309 |
*penv = NULL; |
|
4310 |
ret = JNI_EDETACHED; |
|
4311 |
return ret; |
|
4312 |
} |
|
4313 |
} |
|
4314 |
||
4315 |
||
4316 |
jint JNICALL jni_AttachCurrentThreadAsDaemon(JavaVM *vm, void **penv, void *_args) { |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4317 |
HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_ENTRY(vm, penv, _args); |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47662
diff
changeset
|
4318 |
if (vm_created == 0) { |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4319 |
HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_RETURN((uint32_t) JNI_ERR); |
1 | 4320 |
return JNI_ERR; |
4321 |
} |
|
4322 |
||
4323 |
JNIWrapper("AttachCurrentThreadAsDaemon"); |
|
4324 |
jint ret = attach_current_thread(vm, penv, _args, true); |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22190
diff
changeset
|
4325 |
HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_RETURN(ret); |
1 | 4326 |
return ret; |
4327 |
} |
|
4328 |
||
4329 |
||
4330 |
} // End extern "C" |
|
4331 |
||
4332 |
const struct JNIInvokeInterface_ jni_InvokeInterface = { |
|
4333 |
NULL, |
|
4334 |
NULL, |
|
4335 |
NULL, |
|
4336 |
||
4337 |
jni_DestroyJavaVM, |
|
4338 |
jni_AttachCurrentThread, |
|
4339 |
jni_DetachCurrentThread, |
|
4340 |
jni_GetEnv, |
|
4341 |
jni_AttachCurrentThreadAsDaemon |
|
4342 |
}; |