annotate src/share/vm/prims/jni.cpp @ 14380:e6195383bcaf

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