annotate src/share/vm/prims/jni.cpp @ 24140:d4858e92c9b1

[GR-4077] support Graal.SDK on the boot class path and Truffle on a class path invisible to apps but visible to JVMCI
author Doug Simon <doug.simon@oracle.com>
date Tue, 13 Jun 2017 14:22:54 +0200
parents f13e777eb255
children 190f5f33b7d3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 23062
diff changeset
2 * Copyright (c) 1997, 2016, 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"
22298
c28cb37b2e1d Rename JVMCI to INCLUDE_JVMCI.
twisti
parents: 21559
diff changeset
36 #if INCLUDE_JVMCI
21559
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 20804
diff changeset
37 #include "jvmci/jvmciCompiler.hpp"
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 20804
diff changeset
38 #include "jvmci/jvmciRuntime.hpp"
4559
723df37192d6 Make it possible again to build a real client libjvm, drop the UseGraal flag.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 4368
diff changeset
39 #endif
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7182
diff changeset
40 #if INCLUDE_ALL_GCS
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
41 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7182
diff changeset
42 #endif // INCLUDE_ALL_GCS
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6162
diff changeset
43 #include "memory/allocation.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
44 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
45 #include "memory/gcLocker.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
46 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
47 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
48 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
49 #include "oops/instanceOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
50 #include "oops/markOop.hpp"
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
51 #include "oops/method.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
52 #include "oops/objArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
53 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
54 #include "oops/oop.inline.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
55 #include "oops/symbol.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
56 #include "oops/typeArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
57 #include "oops/typeArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
58 #include "prims/jni.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
59 #include "prims/jniCheck.hpp"
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4708
diff changeset
60 #include "prims/jniExport.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
61 #include "prims/jniFastGetField.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
62 #include "prims/jvm.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
63 #include "prims/jvm_misc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
64 #include "prims/jvmtiExport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
65 #include "prims/jvmtiThreadState.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
66 #include "runtime/compilationPolicy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
67 #include "runtime/fieldDescriptor.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
68 #include "runtime/fprofiler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
69 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
70 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
71 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
72 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
73 #include "runtime/jfieldIDWorkaround.hpp"
20197
ce8f6bb717c9 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 17937
diff changeset
74 #include "runtime/orderAccess.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
75 #include "runtime/reflection.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
76 #include "runtime/sharedRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
77 #include "runtime/signature.hpp"
7180
f34d701e952e 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 6985
diff changeset
78 #include "runtime/thread.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
79 #include "runtime/vm_operations.hpp"
20360
833b0f92429a 8046598: Scalable Native memory tracking development
zgu
parents: 20337
diff changeset
80 #include "services/memTracker.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
81 #include "services/runtimeService.hpp"
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4708
diff changeset
82 #include "trace/tracing.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
83 #include "utilities/defaultStream.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
84 #include "utilities/dtrace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
85 #include "utilities/events.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
86 #include "utilities/histogram.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
87 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
88 # include "os_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
89 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
90 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
91 # include "os_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
92 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
93 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
94 # include "os_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1681
diff changeset
95 #endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3938
diff changeset
96 #ifdef TARGET_OS_FAMILY_bsd
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3938
diff changeset
97 # include "os_bsd.inline.hpp"
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 3938
diff changeset
98 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99
8793
499ccc15bbc8 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
bpittore
parents: 8001
diff changeset
100 static jint CurrentVersion = JNI_VERSION_1_8;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // The DT_RETURN_MARK macros create a scoped object to fire the dtrace
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // '-return' probe regardless of the return path is taken out of the function.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Methods that have multiple return paths use this to avoid having to
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // instrument each return path. Methods that use CHECK or THROW must use this
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // since those macros can cause an immedate uninstrumented return.
a61af66fc99e Initial load
duke
parents:
diff changeset
108 //
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // In order to get the return value, a reference to the variable containing
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // the return value must be passed to the contructor of the object, and
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // the return value must be set before return (since the mark object has
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // a reference to it).
a61af66fc99e Initial load
duke
parents:
diff changeset
113 //
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Example:
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // DT_RETURN_MARK_DECL(SomeFunc, int);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // JNI_ENTRY(int, SomeFunc, ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // int return_value = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // DT_RETURN_MARK(SomeFunc, int, (const int&)return_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // foo(CHECK_0)
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // return_value = 5;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // return return_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // JNI_END
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
123 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124 #define DT_RETURN_MARK_DECL(name, type) \
a61af66fc99e Initial load
duke
parents:
diff changeset
125 HS_DTRACE_PROBE_DECL1(hotspot_jni, name##__return, type); \
a61af66fc99e Initial load
duke
parents:
diff changeset
126 DTRACE_ONLY( \
a61af66fc99e Initial load
duke
parents:
diff changeset
127 class DTraceReturnProbeMark_##name { \
a61af66fc99e Initial load
duke
parents:
diff changeset
128 public: \
a61af66fc99e Initial load
duke
parents:
diff changeset
129 const type& _ret_ref; \
a61af66fc99e Initial load
duke
parents:
diff changeset
130 DTraceReturnProbeMark_##name(const type& v) : _ret_ref(v) {} \
a61af66fc99e Initial load
duke
parents:
diff changeset
131 ~DTraceReturnProbeMark_##name() { \
a61af66fc99e Initial load
duke
parents:
diff changeset
132 HS_DTRACE_PROBE1(hotspot_jni, name##__return, _ret_ref); \
a61af66fc99e Initial load
duke
parents:
diff changeset
133 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
134 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
135 )
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Void functions are simpler since there's no return value
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #define DT_VOID_RETURN_MARK_DECL(name) \
a61af66fc99e Initial load
duke
parents:
diff changeset
138 HS_DTRACE_PROBE_DECL0(hotspot_jni, name##__return); \
a61af66fc99e Initial load
duke
parents:
diff changeset
139 DTRACE_ONLY( \
a61af66fc99e Initial load
duke
parents:
diff changeset
140 class DTraceReturnProbeMark_##name { \
a61af66fc99e Initial load
duke
parents:
diff changeset
141 public: \
a61af66fc99e Initial load
duke
parents:
diff changeset
142 ~DTraceReturnProbeMark_##name() { \
a61af66fc99e Initial load
duke
parents:
diff changeset
143 HS_DTRACE_PROBE0(hotspot_jni, name##__return); \
a61af66fc99e Initial load
duke
parents:
diff changeset
144 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
145 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
146 )
a61af66fc99e Initial load
duke
parents:
diff changeset
147
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
148 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
149
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
150 #define DT_RETURN_MARK_DECL(name, type, probe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
151 DTRACE_ONLY( \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
152 class DTraceReturnProbeMark_##name { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
153 public: \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
154 const type& _ret_ref; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
155 DTraceReturnProbeMark_##name(const type& v) : _ret_ref(v) {} \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
156 ~DTraceReturnProbeMark_##name() { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
157 probe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
158 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
159 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
160 )
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
161 // Void functions are simpler since there's no return value
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
162 #define DT_VOID_RETURN_MARK_DECL(name, probe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
163 DTRACE_ONLY( \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
164 class DTraceReturnProbeMark_##name { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
165 public: \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
166 ~DTraceReturnProbeMark_##name() { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
167 probe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
168 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
169 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
170 )
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
171 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // Place these macros in the function to mark the return. Non-void
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // functions need the type and address of the return value.
a61af66fc99e Initial load
duke
parents:
diff changeset
175 #define DT_RETURN_MARK(name, type, ref) \
a61af66fc99e Initial load
duke
parents:
diff changeset
176 DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark(ref) )
a61af66fc99e Initial load
duke
parents:
diff changeset
177 #define DT_VOID_RETURN_MARK(name) \
a61af66fc99e Initial load
duke
parents:
diff changeset
178 DTRACE_ONLY( DTraceReturnProbeMark_##name dtrace_return_mark )
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Use these to select distinct code for floating-point vs. non-floating point
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // situations. Used from within common macros where we need slightly
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // different behavior for Float/Double
a61af66fc99e Initial load
duke
parents:
diff changeset
184 #define FP_SELECT_Boolean(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
185 #define FP_SELECT_Byte(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
186 #define FP_SELECT_Char(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
187 #define FP_SELECT_Short(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
188 #define FP_SELECT_Object(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
189 #define FP_SELECT_Int(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
190 #define FP_SELECT_Long(intcode, fpcode) intcode
a61af66fc99e Initial load
duke
parents:
diff changeset
191 #define FP_SELECT_Float(intcode, fpcode) fpcode
a61af66fc99e Initial load
duke
parents:
diff changeset
192 #define FP_SELECT_Double(intcode, fpcode) fpcode
a61af66fc99e Initial load
duke
parents:
diff changeset
193 #define FP_SELECT(TypeName, intcode, fpcode) \
a61af66fc99e Initial load
duke
parents:
diff changeset
194 FP_SELECT_##TypeName(intcode, fpcode)
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 #define COMMA ,
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // Choose DT_RETURN_MARK macros based on the type: float/double -> void
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // (dtrace doesn't do FP yet)
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
200 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 #define DT_RETURN_MARK_DECL_FOR(TypeName, name, type) \
a61af66fc99e Initial load
duke
parents:
diff changeset
202 FP_SELECT(TypeName, \
a61af66fc99e Initial load
duke
parents:
diff changeset
203 DT_RETURN_MARK_DECL(name, type), DT_VOID_RETURN_MARK_DECL(name) )
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
204 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
205 #define DT_RETURN_MARK_DECL_FOR(TypeName, name, type, probe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
206 FP_SELECT(TypeName, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
207 DT_RETURN_MARK_DECL(name, type, probe), DT_VOID_RETURN_MARK_DECL(name, probe) )
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
208 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
209 #define DT_RETURN_MARK_FOR(TypeName, name, type, ref) \
a61af66fc99e Initial load
duke
parents:
diff changeset
210 FP_SELECT(TypeName, \
a61af66fc99e Initial load
duke
parents:
diff changeset
211 DT_RETURN_MARK(name, type, ref), DT_VOID_RETURN_MARK(name) )
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // out-of-line helpers for class jfieldIDWorkaround:
a61af66fc99e Initial load
duke
parents:
diff changeset
215
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
216 bool jfieldIDWorkaround::is_valid_jfieldID(Klass* k, jfieldID id) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 if (jfieldIDWorkaround::is_instance_jfieldID(k, id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 uintptr_t as_uint = (uintptr_t) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 intptr_t offset = raw_instance_offset(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 if (is_checked_jfieldID(id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 if (!klass_hash_ok(k, id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
222 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
225 return InstanceKlass::cast(k)->contains_field_offset(offset);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
226 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 JNIid* result = (JNIid*) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
229 return result != NULL && result->is_static_field_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
230 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
231 return result != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
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 intptr_t jfieldIDWorkaround::encode_klass_hash(Klass* k, intptr_t offset) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
238 if (offset <= small_offset_mask) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
239 Klass* field_klass = k;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
240 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
241 // 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
242 // 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
243 while (InstanceKlass::cast(super_klass)->has_nonstatic_fields() &&
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
244 InstanceKlass::cast(super_klass)->contains_field_offset(offset)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
245 field_klass = super_klass; // super contains the field also
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
246 super_klass = field_klass->super();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 debug_only(No_Safepoint_Verifier nosafepoint;)
a61af66fc99e Initial load
duke
parents:
diff changeset
249 uintptr_t klass_hash = field_klass->identity_hash();
a61af66fc99e Initial load
duke
parents:
diff changeset
250 return ((klass_hash & klass_mask) << klass_shift) | checked_mask_in_place;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
253 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
254 {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 ResourceMark rm;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
256 warning("VerifyJNIFields: long offset %d in %s", offset, k->external_name());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
259 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
260 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
264 bool jfieldIDWorkaround::klass_hash_ok(Klass* k, jfieldID id) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
265 uintptr_t as_uint = (uintptr_t) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 intptr_t klass_hash = (as_uint >> klass_shift) & klass_mask;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 debug_only(No_Safepoint_Verifier nosafepoint;)
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // Could use a non-blocking query for identity_hash here...
a61af66fc99e Initial load
duke
parents:
diff changeset
270 if ((k->identity_hash() & klass_mask) == klass_hash)
a61af66fc99e Initial load
duke
parents:
diff changeset
271 return true;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
272 k = k->super();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
273 } while (k != NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
277 void jfieldIDWorkaround::verify_instance_jfieldID(Klass* k, jfieldID id) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
278 guarantee(jfieldIDWorkaround::is_instance_jfieldID(k, id), "must be an instance field" );
a61af66fc99e Initial load
duke
parents:
diff changeset
279 uintptr_t as_uint = (uintptr_t) id;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 intptr_t offset = raw_instance_offset(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 if (VerifyJNIFields) {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 if (is_checked_jfieldID(id)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 guarantee(klass_hash_ok(k, id),
a61af66fc99e Initial load
duke
parents:
diff changeset
284 "Bug in native code: jfieldID class must match object");
a61af66fc99e Initial load
duke
parents:
diff changeset
285 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
287 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 ResourceMark rm;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
290 warning("VerifyJNIFields: unverified offset %d for %s", offset, k->external_name());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
293 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
296 guarantee(InstanceKlass::cast(k)->contains_field_offset(offset),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
297 "Bug in native code: jfieldID offset must address interior of object");
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Wrapper to trace JNI functions
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
303 Histogram* JNIHistogram;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 static volatile jint JNIHistogram_lock = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 class JNITraceWrapper : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
307 public:
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17898
diff changeset
308 JNITraceWrapper(const char* format, ...) ATTRIBUTE_PRINTF(2, 3) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
309 if (TraceJNICalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 va_list ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
311 va_start(ap, format);
a61af66fc99e Initial load
duke
parents:
diff changeset
312 tty->print("JNI ");
a61af66fc99e Initial load
duke
parents:
diff changeset
313 tty->vprint_cr(format, ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
314 va_end(ap);
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 };
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 class JNIHistogramElement : public HistogramElement {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
321 JNIHistogramElement(const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
322 };
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 JNIHistogramElement::JNIHistogramElement(const char* elementName) {
a61af66fc99e Initial load
duke
parents:
diff changeset
325 _name = elementName;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 uintx count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 while (Atomic::cmpxchg(1, &JNIHistogram_lock, 0) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
329 while (OrderAccess::load_acquire(&JNIHistogram_lock) != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
330 count +=1;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 if ( (WarnOnStalledSpinLock > 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
332 && (count % WarnOnStalledSpinLock == 0)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 warning("JNIHistogram_lock seems to be stalled");
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 if(JNIHistogram == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
340 JNIHistogram = new Histogram("JNI Call Counts",100);
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 JNIHistogram->add_element(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 Atomic::dec(&JNIHistogram_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 #define JNICountWrapper(arg) \
a61af66fc99e Initial load
duke
parents:
diff changeset
347 static JNIHistogramElement* e = new JNIHistogramElement(arg); \
a61af66fc99e Initial load
duke
parents:
diff changeset
348 /* 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
349 if (e != NULL) e->increment_count()
a61af66fc99e Initial load
duke
parents:
diff changeset
350 #define JNIWrapper(arg) JNICountWrapper(arg); JNITraceWrapper(arg)
a61af66fc99e Initial load
duke
parents:
diff changeset
351 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
352 #define JNIWrapper(arg)
a61af66fc99e Initial load
duke
parents:
diff changeset
353 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // Implementation of JNI entries
a61af66fc99e Initial load
duke
parents:
diff changeset
357
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
358 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
359 DT_RETURN_MARK_DECL(DefineClass, jclass);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
360 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
361 DT_RETURN_MARK_DECL(DefineClass, jclass
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
362 , HOTSPOT_JNI_DEFINECLASS_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
363 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 JNI_ENTRY(jclass, jni_DefineClass(JNIEnv *env, const char *name, jobject loaderRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
366 const jbyte *buf, jsize bufLen))
a61af66fc99e Initial load
duke
parents:
diff changeset
367 JNIWrapper("DefineClass");
a61af66fc99e Initial load
duke
parents:
diff changeset
368
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
369 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
370 DTRACE_PROBE5(hotspot_jni, DefineClass__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
371 env, name, loaderRef, buf, bufLen);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
372 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
373 HOTSPOT_JNI_DEFINECLASS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
374 env, (char*) name, loaderRef, (char*) buf, bufLen);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
375 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
376 jclass cls = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 DT_RETURN_MARK(DefineClass, jclass, (const jclass&)cls);
a61af66fc99e Initial load
duke
parents:
diff changeset
378
6125
dcfcdd01af4b 7171703: JNI DefineClass crashes client VM when first parameter is NULL
fparain
parents: 4800
diff changeset
379 TempNewSymbol class_name = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // Since exceptions can be thrown, class initialization can take place
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // if name is NULL no check for class name in .class stream has to be made.
a61af66fc99e Initial load
duke
parents:
diff changeset
382 if (name != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 const int str_len = (int)strlen(name);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
384 if (str_len > Symbol::max_length()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // It's impossible to create this class; the name cannot fit
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // into the constant pool.
a61af66fc99e Initial load
duke
parents:
diff changeset
387 THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), name);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
6125
dcfcdd01af4b 7171703: JNI DefineClass crashes client VM when first parameter is NULL
fparain
parents: 4800
diff changeset
389 class_name = SymbolTable::new_symbol(name, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
392 ClassFileStream st((u1*) buf, bufLen, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
393 Handle class_loader (THREAD, JNIHandles::resolve(loaderRef));
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 if (UsePerfData && !class_loader.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // check whether the current caller thread holds the lock or not.
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // If not, increment the corresponding counter
a61af66fc99e Initial load
duke
parents:
diff changeset
398 if (ObjectSynchronizer::
a61af66fc99e Initial load
duke
parents:
diff changeset
399 query_lock_ownership((JavaThread*)THREAD, class_loader) !=
a61af66fc99e Initial load
duke
parents:
diff changeset
400 ObjectSynchronizer::owner_self) {
a61af66fc99e Initial load
duke
parents:
diff changeset
401 ClassLoader::sync_JNIDefineClassLockFreeCounter()->inc();
a61af66fc99e Initial load
duke
parents:
diff changeset
402 }
a61af66fc99e Initial load
duke
parents:
diff changeset
403 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
404 Klass* k = SystemDictionary::resolve_from_stream(class_name, class_loader,
973
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 657
diff changeset
405 Handle(), &st, true,
ad6585fd4087 6830542: Performance: JVM_DefineClass already verified.
acorn
parents: 657
diff changeset
406 CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
407
657
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
408 if (TraceClassResolution && k != NULL) {
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
409 trace_class_resolution(k);
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
410 }
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
411
0
a61af66fc99e Initial load
duke
parents:
diff changeset
412 cls = (jclass)JNIHandles::make_local(
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
413 env, k->java_mirror());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
414 return cls;
a61af66fc99e Initial load
duke
parents:
diff changeset
415 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 static bool first_time_FindClass = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
420
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
421 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
422 DT_RETURN_MARK_DECL(FindClass, jclass);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
423 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
424 DT_RETURN_MARK_DECL(FindClass, jclass
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
425 , HOTSPOT_JNI_FINDCLASS_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
426 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 JNI_ENTRY(jclass, jni_FindClass(JNIEnv *env, const char *name))
a61af66fc99e Initial load
duke
parents:
diff changeset
429 JNIWrapper("FindClass");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
430 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
431 DTRACE_PROBE2(hotspot_jni, FindClass__entry, env, name);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
432 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
433 HOTSPOT_JNI_FINDCLASS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
434 env, (char *)name);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
435 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 jclass result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
438 DT_RETURN_MARK(FindClass, jclass, (const jclass&)result);
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // Remember if we are the first invocation of jni_FindClass
a61af66fc99e Initial load
duke
parents:
diff changeset
441 bool first_time = first_time_FindClass;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 first_time_FindClass = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
443
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // Sanity check the name: it cannot be null or larger than the maximum size
a61af66fc99e Initial load
duke
parents:
diff changeset
445 // 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
446 if (name == NULL || (int)strlen(name) > Symbol::max_length()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
447 THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), name);
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 //%note jni_3
a61af66fc99e Initial load
duke
parents:
diff changeset
451 Handle loader;
a61af66fc99e Initial load
duke
parents:
diff changeset
452 Handle protection_domain;
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // Find calling class
a61af66fc99e Initial load
duke
parents:
diff changeset
454 instanceKlassHandle k (THREAD, thread->security_get_caller_class(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
455 if (k.not_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 loader = Handle(THREAD, k->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // Special handling to make sure JNI_OnLoad and JNI_OnUnload are executed
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // in the correct class context.
a61af66fc99e Initial load
duke
parents:
diff changeset
459 if (loader.is_null() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
460 k->name() == vmSymbols::java_lang_ClassLoader_NativeLibrary()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
461 JavaValue result(T_OBJECT);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 JavaCalls::call_static(&result, k,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
463 vmSymbols::getFromClass_name(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
464 vmSymbols::void_class_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
465 thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
466 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
467 Handle ex(thread, thread->pending_exception());
a61af66fc99e Initial load
duke
parents:
diff changeset
468 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 THROW_HANDLE_0(ex);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 }
a61af66fc99e Initial load
duke
parents:
diff changeset
471 oop mirror = (oop) result.get_jobject();
a61af66fc99e Initial load
duke
parents:
diff changeset
472 loader = Handle(THREAD,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
473 InstanceKlass::cast(java_lang_Class::as_Klass(mirror))->class_loader());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
474 protection_domain = Handle(THREAD,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
475 InstanceKlass::cast(java_lang_Class::as_Klass(mirror))->protection_domain());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
476 }
a61af66fc99e Initial load
duke
parents:
diff changeset
477 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // We call ClassLoader.getSystemClassLoader to obtain the system class loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
479 loader = Handle(THREAD, SystemDictionary::java_system_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
480 }
a61af66fc99e Initial load
duke
parents:
diff changeset
481
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
482 TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
483 result = find_class_from_class_loader(env, sym, true, loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
484 protection_domain, true, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
485
657
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
486 if (TraceClassResolution && result != NULL) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
487 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
488 }
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
489
0
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // If we were the first invocation of jni_FindClass, we enable compilation again
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // rather than just allowing invocation counter to overflow and decay.
a61af66fc99e Initial load
duke
parents:
diff changeset
492 // Controlled by flag DelayCompilationDuringStartup.
a61af66fc99e Initial load
duke
parents:
diff changeset
493 if (first_time && !CompileTheWorld)
a61af66fc99e Initial load
duke
parents:
diff changeset
494 CompilationPolicy::completed_vm_startup();
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
497 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
498
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
499 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
500 DT_RETURN_MARK_DECL(FromReflectedMethod, jmethodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
501 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
502 DT_RETURN_MARK_DECL(FromReflectedMethod, jmethodID
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
503 , HOTSPOT_JNI_FROMREFLECTEDMETHOD_RETURN((uintptr_t)_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
504 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
505
a61af66fc99e Initial load
duke
parents:
diff changeset
506 JNI_ENTRY(jmethodID, jni_FromReflectedMethod(JNIEnv *env, jobject method))
a61af66fc99e Initial load
duke
parents:
diff changeset
507 JNIWrapper("FromReflectedMethod");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
508 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
509 DTRACE_PROBE2(hotspot_jni, FromReflectedMethod__entry, env, method);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
510 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
511 HOTSPOT_JNI_FROMREFLECTEDMETHOD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
512 env, method);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
513 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
514 jmethodID ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 DT_RETURN_MARK(FromReflectedMethod, jmethodID, (const jmethodID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
516
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // method is a handle to a java.lang.reflect.Method object
a61af66fc99e Initial load
duke
parents:
diff changeset
518 oop reflected = JNIHandles::resolve_non_null(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
519 oop mirror = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
520 int slot = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
521
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
522 if (reflected->klass() == SystemDictionary::reflect_Constructor_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
523 mirror = java_lang_reflect_Constructor::clazz(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
524 slot = java_lang_reflect_Constructor::slot(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
525 } else {
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
526 assert(reflected->klass() == SystemDictionary::reflect_Method_klass(), "wrong type");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
527 mirror = java_lang_reflect_Method::clazz(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
528 slot = java_lang_reflect_Method::slot(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
529 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
530 Klass* k = java_lang_Class::as_Klass(mirror);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 KlassHandle k1(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // Make sure class is initialized before handing id's out to methods
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
534 k1()->initialize(CHECK_NULL);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
535 Method* m = InstanceKlass::cast(k1())->method_with_idnum(slot);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
536 ret = m==NULL? NULL : m->jmethod_id(); // return NULL if reflected method deleted
a61af66fc99e Initial load
duke
parents:
diff changeset
537 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
539
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
540 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
541 DT_RETURN_MARK_DECL(FromReflectedField, jfieldID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
542 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
543 DT_RETURN_MARK_DECL(FromReflectedField, jfieldID
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
544 , HOTSPOT_JNI_FROMREFLECTEDFIELD_RETURN((uintptr_t)_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
545 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
546
a61af66fc99e Initial load
duke
parents:
diff changeset
547 JNI_ENTRY(jfieldID, jni_FromReflectedField(JNIEnv *env, jobject field))
a61af66fc99e Initial load
duke
parents:
diff changeset
548 JNIWrapper("FromReflectedField");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
549 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
550 DTRACE_PROBE2(hotspot_jni, FromReflectedField__entry, env, field);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
551 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
552 HOTSPOT_JNI_FROMREFLECTEDFIELD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
553 env, field);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
554 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
555 jfieldID ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
556 DT_RETURN_MARK(FromReflectedField, jfieldID, (const jfieldID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
557
a61af66fc99e Initial load
duke
parents:
diff changeset
558 // field is a handle to a java.lang.reflect.Field object
a61af66fc99e Initial load
duke
parents:
diff changeset
559 oop reflected = JNIHandles::resolve_non_null(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
560 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
561 Klass* k = java_lang_Class::as_Klass(mirror);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
562 int slot = java_lang_reflect_Field::slot(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
563 int modifiers = java_lang_reflect_Field::modifiers(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565 KlassHandle k1(THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // Make sure class is initialized before handing id's out to fields
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
567 k1()->initialize(CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
568
a61af66fc99e Initial load
duke
parents:
diff changeset
569 // First check if this is a static field
a61af66fc99e Initial load
duke
parents:
diff changeset
570 if (modifiers & JVM_ACC_STATIC) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
571 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
572 JNIid* id = InstanceKlass::cast(k1())->jni_id_for(offset);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
573 assert(id != NULL, "corrupt Field object");
a61af66fc99e Initial load
duke
parents:
diff changeset
574 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
575 // 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
576 ret = jfieldIDWorkaround::to_static_jfieldID(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
577 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579
a61af66fc99e Initial load
duke
parents:
diff changeset
580 // The slot is the index of the field description in the field-array
a61af66fc99e Initial load
duke
parents:
diff changeset
581 // The jfieldID is the offset of the field within the object
a61af66fc99e Initial load
duke
parents:
diff changeset
582 // 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
583 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
584 assert(InstanceKlass::cast(k1())->contains_field_offset(offset), "stay within object");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
585 ret = jfieldIDWorkaround::to_instance_jfieldID(k1(), offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
586 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
587 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
588
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
589 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
590 DT_RETURN_MARK_DECL(ToReflectedMethod, jobject);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
591 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
592 DT_RETURN_MARK_DECL(ToReflectedMethod, jobject
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
593 , HOTSPOT_JNI_TOREFLECTEDMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
594 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
595
a61af66fc99e Initial load
duke
parents:
diff changeset
596 JNI_ENTRY(jobject, jni_ToReflectedMethod(JNIEnv *env, jclass cls, jmethodID method_id, jboolean isStatic))
a61af66fc99e Initial load
duke
parents:
diff changeset
597 JNIWrapper("ToReflectedMethod");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
598 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
599 DTRACE_PROBE4(hotspot_jni, ToReflectedMethod__entry, env, cls, method_id, isStatic);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
600 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
601 HOTSPOT_JNI_TOREFLECTEDMETHOD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
602 env, cls, (uintptr_t) method_id, isStatic);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
603 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
604 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 DT_RETURN_MARK(ToReflectedMethod, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
606
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
607 methodHandle m (THREAD, Method::resolve_jmethod_id(method_id));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
608 assert(m->is_static() == (isStatic != 0), "jni_ToReflectedMethod access flags doesn't match");
a61af66fc99e Initial load
duke
parents:
diff changeset
609 oop reflection_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
610 if (m->is_initializer()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
611 reflection_method = Reflection::new_constructor(m, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
612 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
613 reflection_method = Reflection::new_method(m, UseNewReflection, false, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615 ret = JNIHandles::make_local(env, reflection_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
617 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
618
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
619 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
620 DT_RETURN_MARK_DECL(GetSuperclass, jclass);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
621 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
622 DT_RETURN_MARK_DECL(GetSuperclass, jclass
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
623 , HOTSPOT_JNI_GETSUPERCLASS_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
624 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
625
a61af66fc99e Initial load
duke
parents:
diff changeset
626 JNI_ENTRY(jclass, jni_GetSuperclass(JNIEnv *env, jclass sub))
a61af66fc99e Initial load
duke
parents:
diff changeset
627 JNIWrapper("GetSuperclass");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
628 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
629 DTRACE_PROBE2(hotspot_jni, GetSuperclass__entry, env, sub);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
630 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
631 HOTSPOT_JNI_GETSUPERCLASS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
632 env, sub);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
633 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
634 jclass obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
635 DT_RETURN_MARK(GetSuperclass, jclass, (const jclass&)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 oop mirror = JNIHandles::resolve_non_null(sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
638 // primitive classes return NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
639 if (java_lang_Class::is_primitive(mirror)) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
640
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // Rules of Class.getSuperClass as implemented by KLass::java_super:
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // arrays return Object
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // interfaces return NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
644 // proper classes return Klass::super()
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
645 Klass* k = java_lang_Class::as_Klass(mirror);
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
646 if (k->is_interface()) return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 // return mirror for superclass
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
649 Klass* super = k->java_super();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
650 // super2 is the value computed by the compiler's getSuperClass intrinsic:
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
651 debug_only(Klass* super2 = ( k->oop_is_array()
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
652 ? SystemDictionary::Object_klass()
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
653 : k->super() ) );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
654 assert(super == super2,
a61af66fc99e Initial load
duke
parents:
diff changeset
655 "java_super computation depends on interface, array, other super");
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
656 obj = (super == NULL) ? NULL : (jclass) JNIHandles::make_local(super->java_mirror());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
657 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
659
a61af66fc99e Initial load
duke
parents:
diff changeset
660 JNI_QUICK_ENTRY(jboolean, jni_IsAssignableFrom(JNIEnv *env, jclass sub, jclass super))
a61af66fc99e Initial load
duke
parents:
diff changeset
661 JNIWrapper("IsSubclassOf");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
662 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 DTRACE_PROBE3(hotspot_jni, IsAssignableFrom__entry, env, sub, super);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
664 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
665 HOTSPOT_JNI_ISASSIGNABLEFROM_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
666 env, sub, super);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
667 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
668 oop sub_mirror = JNIHandles::resolve_non_null(sub);
a61af66fc99e Initial load
duke
parents:
diff changeset
669 oop super_mirror = JNIHandles::resolve_non_null(super);
a61af66fc99e Initial load
duke
parents:
diff changeset
670 if (java_lang_Class::is_primitive(sub_mirror) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
671 java_lang_Class::is_primitive(super_mirror)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 jboolean ret = (sub_mirror == super_mirror);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
673 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
674 DTRACE_PROBE1(hotspot_jni, IsAssignableFrom__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
675 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
676 HOTSPOT_JNI_ISASSIGNABLEFROM_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
677 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
678 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
679 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
681 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
682 Klass* super_klass = java_lang_Class::as_Klass(super_mirror);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
683 assert(sub_klass != NULL && super_klass != NULL, "invalid arguments to jni_IsAssignableFrom");
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
684 jboolean ret = sub_klass->is_subtype_of(super_klass) ?
0
a61af66fc99e Initial load
duke
parents:
diff changeset
685 JNI_TRUE : JNI_FALSE;
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
686 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
687 DTRACE_PROBE1(hotspot_jni, IsAssignableFrom__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
688 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
689 HOTSPOT_JNI_ISASSIGNABLEFROM_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
690 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
691 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
692 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
693 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
694
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
695 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
696 DT_RETURN_MARK_DECL(Throw, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
697 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
698 DT_RETURN_MARK_DECL(Throw, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
699 , HOTSPOT_JNI_THROW_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
700 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 JNI_ENTRY(jint, jni_Throw(JNIEnv *env, jthrowable obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
703 JNIWrapper("Throw");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
704 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
705 DTRACE_PROBE2(hotspot_jni, Throw__entry, env, obj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
706 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
707 HOTSPOT_JNI_THROW_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
708 env, obj);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
709 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
710 jint ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
711 DT_RETURN_MARK(Throw, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
712
a61af66fc99e Initial load
duke
parents:
diff changeset
713 THROW_OOP_(JNIHandles::resolve(obj), JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
714 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
715 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
716
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
717 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
718 DT_RETURN_MARK_DECL(ThrowNew, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
719 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
720 DT_RETURN_MARK_DECL(ThrowNew, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
721 , HOTSPOT_JNI_THROWNEW_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
722 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
723
a61af66fc99e Initial load
duke
parents:
diff changeset
724 JNI_ENTRY(jint, jni_ThrowNew(JNIEnv *env, jclass clazz, const char *message))
a61af66fc99e Initial load
duke
parents:
diff changeset
725 JNIWrapper("ThrowNew");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
726 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
727 DTRACE_PROBE3(hotspot_jni, ThrowNew__entry, env, clazz, message);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
728 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
729 HOTSPOT_JNI_THROWNEW_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
730 env, clazz, (char *) message);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
731 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
732 jint ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
733 DT_RETURN_MARK(ThrowNew, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
734
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
735 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
736 Symbol* name = k->name();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
737 Handle class_loader (THREAD, k->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
738 Handle protection_domain (THREAD, k->protection_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
739 THROW_MSG_LOADER_(name, (char *)message, class_loader, protection_domain, JNI_OK);
a61af66fc99e Initial load
duke
parents:
diff changeset
740 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
741 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
742
a61af66fc99e Initial load
duke
parents:
diff changeset
743
a61af66fc99e Initial load
duke
parents:
diff changeset
744 // JNI functions only transform a pending async exception to a synchronous
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // exception in ExceptionOccurred and ExceptionCheck calls, since
a61af66fc99e Initial load
duke
parents:
diff changeset
746 // delivering an async exception in other places won't change the native
a61af66fc99e Initial load
duke
parents:
diff changeset
747 // code's control flow and would be harmful when native code further calls
a61af66fc99e Initial load
duke
parents:
diff changeset
748 // JNI functions with a pending exception. Async exception is also checked
a61af66fc99e Initial load
duke
parents:
diff changeset
749 // during the call, so ExceptionOccurred/ExceptionCheck won't return
a61af66fc99e Initial load
duke
parents:
diff changeset
750 // false but deliver the async exception at the very end during
a61af66fc99e Initial load
duke
parents:
diff changeset
751 // state transition.
a61af66fc99e Initial load
duke
parents:
diff changeset
752
a61af66fc99e Initial load
duke
parents:
diff changeset
753 static void jni_check_async_exceptions(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
754 assert(thread == Thread::current(), "must be itself");
a61af66fc99e Initial load
duke
parents:
diff changeset
755 thread->check_and_handle_async_exceptions();
a61af66fc99e Initial load
duke
parents:
diff changeset
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757
a61af66fc99e Initial load
duke
parents:
diff changeset
758 JNI_ENTRY_NO_PRESERVE(jthrowable, jni_ExceptionOccurred(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
759 JNIWrapper("ExceptionOccurred");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
760 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
761 DTRACE_PROBE1(hotspot_jni, ExceptionOccurred__entry, env);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
762 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
763 HOTSPOT_JNI_EXCEPTIONOCCURRED_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
764 env);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
765 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
766 jni_check_async_exceptions(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
767 oop exception = thread->pending_exception();
a61af66fc99e Initial load
duke
parents:
diff changeset
768 jthrowable ret = (jthrowable) JNIHandles::make_local(env, exception);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
769 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
770 DTRACE_PROBE1(hotspot_jni, ExceptionOccurred__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
771 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
772 HOTSPOT_JNI_EXCEPTIONOCCURRED_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
773 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
774 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
775 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
776 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
777
a61af66fc99e Initial load
duke
parents:
diff changeset
778
a61af66fc99e Initial load
duke
parents:
diff changeset
779 JNI_ENTRY_NO_PRESERVE(void, jni_ExceptionDescribe(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
780 JNIWrapper("ExceptionDescribe");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
781 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
782 DTRACE_PROBE1(hotspot_jni, ExceptionDescribe__entry, env);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
783 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
784 HOTSPOT_JNI_EXCEPTIONDESCRIBE_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
785 env);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
786 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
787 if (thread->has_pending_exception()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
788 Handle ex(thread, thread->pending_exception());
a61af66fc99e Initial load
duke
parents:
diff changeset
789 thread->clear_pending_exception();
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
790 if (ex->is_a(SystemDictionary::ThreadDeath_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
791 // Don't print anything if we are being killed.
a61af66fc99e Initial load
duke
parents:
diff changeset
792 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
793 jio_fprintf(defaultStream::error_stream(), "Exception ");
a61af66fc99e Initial load
duke
parents:
diff changeset
794 if (thread != NULL && thread->threadObj() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
795 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
796 jio_fprintf(defaultStream::error_stream(),
a61af66fc99e Initial load
duke
parents:
diff changeset
797 "in thread \"%s\" ", thread->get_thread_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
798 }
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
799 if (ex->is_a(SystemDictionary::Throwable_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
800 JavaValue result(T_VOID);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 JavaCalls::call_virtual(&result,
a61af66fc99e Initial load
duke
parents:
diff changeset
802 ex,
a61af66fc99e Initial load
duke
parents:
diff changeset
803 KlassHandle(THREAD,
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 1132
diff changeset
804 SystemDictionary::Throwable_klass()),
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
805 vmSymbols::printStackTrace_name(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
806 vmSymbols::void_method_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
807 THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
808 // If an exception is thrown in the call it gets thrown away. Not much
a61af66fc99e Initial load
duke
parents:
diff changeset
809 // we can do with it. The native code that calls this, does not check
a61af66fc99e Initial load
duke
parents:
diff changeset
810 // for the exception - hence, it might still be in the thread when DestroyVM gets
a61af66fc99e Initial load
duke
parents:
diff changeset
811 // called, potentially causing a few asserts to trigger - since no pending exception
a61af66fc99e Initial load
duke
parents:
diff changeset
812 // is expected.
a61af66fc99e Initial load
duke
parents:
diff changeset
813 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
814 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
816 jio_fprintf(defaultStream::error_stream(),
a61af66fc99e Initial load
duke
parents:
diff changeset
817 ". Uncaught exception of type %s.",
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
818 ex->klass()->external_name());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
819 }
a61af66fc99e Initial load
duke
parents:
diff changeset
820 }
a61af66fc99e Initial load
duke
parents:
diff changeset
821 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
822 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
823 DTRACE_PROBE(hotspot_jni, ExceptionDescribe__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
824 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
825 HOTSPOT_JNI_EXCEPTIONDESCRIBE_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
826 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
827 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
828 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
829
a61af66fc99e Initial load
duke
parents:
diff changeset
830
a61af66fc99e Initial load
duke
parents:
diff changeset
831 JNI_QUICK_ENTRY(void, jni_ExceptionClear(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
832 JNIWrapper("ExceptionClear");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
833 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
834 DTRACE_PROBE1(hotspot_jni, ExceptionClear__entry, env);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
835 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
836 HOTSPOT_JNI_EXCEPTIONCLEAR_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
837 env);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
838 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
839
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // The jni code might be using this API to clear java thrown exception.
a61af66fc99e Initial load
duke
parents:
diff changeset
841 // So just mark jvmti thread exception state as exception caught.
a61af66fc99e Initial load
duke
parents:
diff changeset
842 JvmtiThreadState *state = JavaThread::current()->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
843 if (state != NULL && state->is_exception_detected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
844 state->set_exception_caught();
a61af66fc99e Initial load
duke
parents:
diff changeset
845 }
a61af66fc99e Initial load
duke
parents:
diff changeset
846 thread->clear_pending_exception();
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
847 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
848 DTRACE_PROBE(hotspot_jni, ExceptionClear__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
849 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
850 HOTSPOT_JNI_EXCEPTIONCLEAR_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
851 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
852 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
853 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855
a61af66fc99e Initial load
duke
parents:
diff changeset
856 JNI_ENTRY(void, jni_FatalError(JNIEnv *env, const char *msg))
a61af66fc99e Initial load
duke
parents:
diff changeset
857 JNIWrapper("FatalError");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
858 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
859 DTRACE_PROBE2(hotspot_jni, FatalError__entry, env, msg);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
860 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
861 HOTSPOT_JNI_FATALERROR_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
862 env, (char *) msg);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
863 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
864 tty->print_cr("FATAL ERROR in native method: %s", msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
865 thread->print_stack();
227
8d852b81e775 6694099: Hotspot vm_exit_out_of_memory should dump core
poonam
parents: 113
diff changeset
866 os::abort(); // Dump core and abort
0
a61af66fc99e Initial load
duke
parents:
diff changeset
867 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
868
a61af66fc99e Initial load
duke
parents:
diff changeset
869
a61af66fc99e Initial load
duke
parents:
diff changeset
870 JNI_ENTRY(jint, jni_PushLocalFrame(JNIEnv *env, jint capacity))
a61af66fc99e Initial load
duke
parents:
diff changeset
871 JNIWrapper("PushLocalFrame");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
872 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
873 DTRACE_PROBE2(hotspot_jni, PushLocalFrame__entry, env, capacity);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
874 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
875 HOTSPOT_JNI_PUSHLOCALFRAME_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
876 env, capacity);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
877 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
878 //%note jni_11
20324
8ae0d26ab728 8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents: 20318
diff changeset
879 if (capacity < 0 ||
8ae0d26ab728 8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents: 20318
diff changeset
880 ((MaxJNILocalCapacity > 0) && (capacity > MaxJNILocalCapacity))) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
881 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
882 DTRACE_PROBE1(hotspot_jni, PushLocalFrame__return, JNI_ERR);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
883 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
884 HOTSPOT_JNI_PUSHLOCALFRAME_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
885 (uint32_t)JNI_ERR);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
886 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
887 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
888 }
a61af66fc99e Initial load
duke
parents:
diff changeset
889 JNIHandleBlock* old_handles = thread->active_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
890 JNIHandleBlock* new_handles = JNIHandleBlock::allocate_block(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
891 assert(new_handles != NULL, "should not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
892 new_handles->set_pop_frame_link(old_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
893 thread->set_active_handles(new_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
894 jint ret = JNI_OK;
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
895 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
896 DTRACE_PROBE1(hotspot_jni, PushLocalFrame__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
897 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
898 HOTSPOT_JNI_PUSHLOCALFRAME_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
899 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
900 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
901 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
902 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
903
a61af66fc99e Initial load
duke
parents:
diff changeset
904
a61af66fc99e Initial load
duke
parents:
diff changeset
905 JNI_ENTRY(jobject, jni_PopLocalFrame(JNIEnv *env, jobject result))
a61af66fc99e Initial load
duke
parents:
diff changeset
906 JNIWrapper("PopLocalFrame");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
907 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
908 DTRACE_PROBE2(hotspot_jni, PopLocalFrame__entry, env, result);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
909 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
910 HOTSPOT_JNI_POPLOCALFRAME_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
911 env, result);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
912 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
913 //%note jni_11
a61af66fc99e Initial load
duke
parents:
diff changeset
914 Handle result_handle(thread, JNIHandles::resolve(result));
a61af66fc99e Initial load
duke
parents:
diff changeset
915 JNIHandleBlock* old_handles = thread->active_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
916 JNIHandleBlock* new_handles = old_handles->pop_frame_link();
a61af66fc99e Initial load
duke
parents:
diff changeset
917 if (new_handles != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
918 // 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
919 // This way code will still work if PopLocalFrame is called without a corresponding
a61af66fc99e Initial load
duke
parents:
diff changeset
920 // PushLocalFrame call. Note that we set the pop_frame_link to NULL explicitly, otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
921 // the release_block call will release the blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
922 thread->set_active_handles(new_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 old_handles->set_pop_frame_link(NULL); // clear link we won't release new_handles below
a61af66fc99e Initial load
duke
parents:
diff changeset
924 JNIHandleBlock::release_block(old_handles, thread); // may block
a61af66fc99e Initial load
duke
parents:
diff changeset
925 result = JNIHandles::make_local(thread, result_handle());
a61af66fc99e Initial load
duke
parents:
diff changeset
926 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
927 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
928 DTRACE_PROBE1(hotspot_jni, PopLocalFrame__return, result);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
929 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
930 HOTSPOT_JNI_POPLOCALFRAME_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
931 result);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
932 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
933 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
934 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936
a61af66fc99e Initial load
duke
parents:
diff changeset
937 JNI_ENTRY(jobject, jni_NewGlobalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
938 JNIWrapper("NewGlobalRef");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
939 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
940 DTRACE_PROBE2(hotspot_jni, NewGlobalRef__entry, env, ref);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
941 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
942 HOTSPOT_JNI_NEWGLOBALREF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
943 env, ref);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
944 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
945 Handle ref_handle(thread, JNIHandles::resolve(ref));
a61af66fc99e Initial load
duke
parents:
diff changeset
946 jobject ret = JNIHandles::make_global(ref_handle);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
947 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
948 DTRACE_PROBE1(hotspot_jni, NewGlobalRef__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
949 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
950 HOTSPOT_JNI_NEWGLOBALREF_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
951 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
952 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
953 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
954 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
955
a61af66fc99e Initial load
duke
parents:
diff changeset
956 // Must be JNI_ENTRY (with HandleMark)
a61af66fc99e Initial load
duke
parents:
diff changeset
957 JNI_ENTRY_NO_PRESERVE(void, jni_DeleteGlobalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
958 JNIWrapper("DeleteGlobalRef");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
959 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
960 DTRACE_PROBE2(hotspot_jni, DeleteGlobalRef__entry, env, ref);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
961 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
962 HOTSPOT_JNI_DELETEGLOBALREF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
963 env, ref);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
964 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
965 JNIHandles::destroy_global(ref);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
966 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
967 DTRACE_PROBE(hotspot_jni, DeleteGlobalRef__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
968 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
969 HOTSPOT_JNI_DELETEGLOBALREF_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
970 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
971 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
972 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
973
a61af66fc99e Initial load
duke
parents:
diff changeset
974 JNI_QUICK_ENTRY(void, jni_DeleteLocalRef(JNIEnv *env, jobject obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
975 JNIWrapper("DeleteLocalRef");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
976 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
977 DTRACE_PROBE2(hotspot_jni, DeleteLocalRef__entry, env, obj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
978 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
979 HOTSPOT_JNI_DELETELOCALREF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
980 env, obj);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
981 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
982 JNIHandles::destroy_local(obj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
983 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
984 DTRACE_PROBE(hotspot_jni, DeleteLocalRef__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
985 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
986 HOTSPOT_JNI_DELETELOCALREF_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
987 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
988 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
989 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
990
a61af66fc99e Initial load
duke
parents:
diff changeset
991 JNI_QUICK_ENTRY(jboolean, jni_IsSameObject(JNIEnv *env, jobject r1, jobject r2))
a61af66fc99e Initial load
duke
parents:
diff changeset
992 JNIWrapper("IsSameObject");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
993 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
994 DTRACE_PROBE3(hotspot_jni, IsSameObject__entry, env, r1, r2);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
995 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
996 HOTSPOT_JNI_ISSAMEOBJECT_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
997 env, r1, r2);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
998 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
999 oop a = JNIHandles::resolve(r1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 oop b = JNIHandles::resolve(r2);
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 jboolean ret = (a == b) ? JNI_TRUE : JNI_FALSE;
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1002 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 DTRACE_PROBE1(hotspot_jni, IsSameObject__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1004 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1005 HOTSPOT_JNI_ISSAMEOBJECT_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1006 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1007 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1010
a61af66fc99e Initial load
duke
parents:
diff changeset
1011
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 JNI_ENTRY(jobject, jni_NewLocalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 JNIWrapper("NewLocalRef");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1014 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 DTRACE_PROBE2(hotspot_jni, NewLocalRef__entry, env, ref);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1016 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1017 HOTSPOT_JNI_NEWLOCALREF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1018 env, ref);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1019 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 jobject ret = JNIHandles::make_local(env, JNIHandles::resolve(ref));
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1021 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 DTRACE_PROBE1(hotspot_jni, NewLocalRef__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1023 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1024 HOTSPOT_JNI_NEWLOCALREF_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1025 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1026 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1029
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 JNI_LEAF(jint, jni_EnsureLocalCapacity(JNIEnv *env, jint capacity))
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 JNIWrapper("EnsureLocalCapacity");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1032 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 DTRACE_PROBE2(hotspot_jni, EnsureLocalCapacity__entry, env, capacity);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1034 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1035 HOTSPOT_JNI_ENSURELOCALCAPACITY_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1036 env, capacity);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1037 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 jint ret;
20324
8ae0d26ab728 8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents: 20318
diff changeset
1039 if (capacity >= 0 &&
8ae0d26ab728 8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents: 20318
diff changeset
1040 ((MaxJNILocalCapacity <= 0) || (capacity <= MaxJNILocalCapacity))) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1045 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 DTRACE_PROBE1(hotspot_jni, EnsureLocalCapacity__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1047 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1048 HOTSPOT_JNI_ENSURELOCALCAPACITY_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1049 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1050 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1053
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 // Return the Handle Type
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 JNI_LEAF(jobjectRefType, jni_GetObjectRefType(JNIEnv *env, jobject obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 JNIWrapper("GetObjectRefType");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1057 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 DTRACE_PROBE2(hotspot_jni, GetObjectRefType__entry, env, obj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1059 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1060 HOTSPOT_JNI_GETOBJECTREFTYPE_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1061 env, obj);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1062 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 jobjectRefType ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 if (JNIHandles::is_local_handle(thread, obj) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 JNIHandles::is_frame_handle(thread, obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 ret = JNILocalRefType;
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 else if (JNIHandles::is_global_handle(obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 ret = JNIGlobalRefType;
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 else if (JNIHandles::is_weak_global_handle(obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 ret = JNIWeakGlobalRefType;
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 else
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 ret = JNIInvalidRefType;
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1073 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 DTRACE_PROBE1(hotspot_jni, GetObjectRefType__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1075 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1076 HOTSPOT_JNI_GETOBJECTREFTYPE_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1077 (void *) ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1078 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1081
a61af66fc99e Initial load
duke
parents:
diff changeset
1082
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 class JNI_ArgumentPusher : public SignatureIterator {
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 JavaCallArguments* _arguments;
a61af66fc99e Initial load
duke
parents:
diff changeset
1086
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 virtual void get_bool () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 virtual void get_char () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 virtual void get_short () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 virtual void get_byte () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 virtual void get_int () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 virtual void get_long () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 virtual void get_float () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 virtual void get_double () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 virtual void get_object () = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1096
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1097 JNI_ArgumentPusher(Symbol* signature) : SignatureIterator(signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 this->_return_type = T_ILLEGAL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 _arguments = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1101
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 virtual void iterate( uint64_t fingerprint ) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1104
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 void set_java_argument_object(JavaCallArguments *arguments) { _arguments = arguments; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1106
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 inline void do_bool() { if (!is_return_type()) get_bool(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 inline void do_char() { if (!is_return_type()) get_char(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 inline void do_short() { if (!is_return_type()) get_short(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 inline void do_byte() { if (!is_return_type()) get_byte(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 inline void do_int() { if (!is_return_type()) get_int(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 inline void do_long() { if (!is_return_type()) get_long(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 inline void do_float() { if (!is_return_type()) get_float(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 inline void do_double() { if (!is_return_type()) get_double(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 inline void do_object(int begin, int end) { if (!is_return_type()) get_object(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 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
1117 inline void do_void() { }
a61af66fc99e Initial load
duke
parents:
diff changeset
1118
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 JavaCallArguments* arguments() { return _arguments; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 void push_receiver(Handle h) { _arguments->push_oop(h); }
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 class JNI_ArgumentPusherVaArg : public JNI_ArgumentPusher {
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 va_list _ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
1127
23633
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1128 inline void get_bool() {
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1129 // Normalize boolean arguments from native code by converting 1-255 to JNI_TRUE and
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1130 // 0 to JNI_FALSE. Boolean return values from native are normalized the same in
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1131 // TemplateInterpreterGenerator::generate_result_handler_for and
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1132 // SharedRuntime::generate_native_wrapper.
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1133 jboolean b = va_arg(_ap, jint);
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1134 _arguments->push_int((jint)(b == 0 ? JNI_FALSE : JNI_TRUE));
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1135 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 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
1137 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
1138 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
1139 inline void get_int() { _arguments->push_int(va_arg(_ap, jint)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1140
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 // 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
1142
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 inline void get_long() { _arguments->push_long(va_arg(_ap, jlong)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 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
1145 inline void get_double() { _arguments->push_double(va_arg(_ap, jdouble)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 inline void get_object() { jobject l = va_arg(_ap, jobject);
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 _arguments->push_oop(Handle((oop *)l, false)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1148
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 inline void set_ap(va_list rap) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 #ifdef va_copy
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 va_copy(_ap, rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 #elif defined (__va_copy)
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 __va_copy(_ap, rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 _ap = rap;
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1158
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 public:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1160 JNI_ArgumentPusherVaArg(Symbol* signature, va_list rap)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1161 : JNI_ArgumentPusher(signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1164 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
1165 : JNI_ArgumentPusher(Method::resolve_jmethod_id(method_id)->signature()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 // Optimized path if we have the bitvector form of signature
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 void iterate( uint64_t fingerprint ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 if ( fingerprint == UCONST64(-1) ) SignatureIterator::iterate();// Must be too many arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 _return_type = (BasicType)((fingerprint >> static_feature_size) &
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 result_feature_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 assert(fingerprint, "Fingerprint should not be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 fingerprint = fingerprint >> (static_feature_size + result_feature_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 while ( 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 switch ( fingerprint & parameter_feature_mask ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 case bool_parm:
23633
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1181 get_bool();
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1182 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 case char_parm:
23633
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1184 get_char();
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1185 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 case short_parm:
23633
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1187 get_short();
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1188 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 case byte_parm:
23633
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1190 get_byte();
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1191 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 case int_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 case obj_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 get_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 case long_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 get_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 case float_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 get_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 case double_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 get_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 case done_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 fingerprint >>= parameter_feature_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1219
a61af66fc99e Initial load
duke
parents:
diff changeset
1220
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 class JNI_ArgumentPusherArray : public JNI_ArgumentPusher {
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 const jvalue *_ap;
a61af66fc99e Initial load
duke
parents:
diff changeset
1224
23633
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1225 inline void get_bool() {
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1226 // Normalize boolean arguments from native code by converting 1-255 to JNI_TRUE and
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1227 // 0 to JNI_FALSE. Boolean return values from native are normalized the same in
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1228 // TemplateInterpreterGenerator::generate_result_handler_for and
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1229 // SharedRuntime::generate_native_wrapper.
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1230 jboolean b = (_ap++)->z;
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1231 _arguments->push_int((jint)(b == 0 ? JNI_FALSE : JNI_TRUE));
e4a935cb6f71 8149170: Better byte behavior for native arguments
kevinw
parents: 23614
diff changeset
1232 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 inline void get_char() { _arguments->push_int((jint)(_ap++)->c); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 inline void get_short() { _arguments->push_int((jint)(_ap++)->s); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 inline void get_byte() { _arguments->push_int((jint)(_ap++)->b); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 inline void get_int() { _arguments->push_int((jint)(_ap++)->i); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1237
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 inline void get_long() { _arguments->push_long((_ap++)->j); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 inline void get_float() { _arguments->push_float((_ap++)->f); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 inline void get_double() { _arguments->push_double((_ap++)->d);}
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 inline void get_object() { _arguments->push_oop(Handle((oop *)(_ap++)->l, false)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1242
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 inline void set_ap(const jvalue *rap) { _ap = rap; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1244
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 public:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1246 JNI_ArgumentPusherArray(Symbol* signature, const jvalue *rap)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1247 : JNI_ArgumentPusher(signature) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1250 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
1251 : JNI_ArgumentPusher(Method::resolve_jmethod_id(method_id)->signature()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 set_ap(rap);
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1254
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 // Optimized path if we have the bitvector form of signature
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 void iterate( uint64_t fingerprint ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 if ( fingerprint == UCONST64(-1) ) SignatureIterator::iterate(); // Must be too many arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 _return_type = (BasicType)((fingerprint >> static_feature_size) &
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 result_feature_mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 assert(fingerprint, "Fingerprint should not be 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 fingerprint = fingerprint >> (static_feature_size + result_feature_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 while ( 1 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 switch ( fingerprint & parameter_feature_mask ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 case bool_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 get_bool();
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 case char_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 get_char();
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 case short_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 get_short();
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 case byte_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 get_byte();
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 case int_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 get_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 case obj_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 get_object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 case long_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 get_long();
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 case float_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 get_float();
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 case double_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 get_double();
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 case done_parm:
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 fingerprint >>= parameter_feature_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1304
a61af66fc99e Initial load
duke
parents:
diff changeset
1305
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 enum JNICallType {
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 JNI_STATIC,
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 JNI_VIRTUAL,
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 JNI_NONVIRTUAL
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1311
a61af66fc99e Initial load
duke
parents:
diff changeset
1312
a61af66fc99e Initial load
duke
parents:
diff changeset
1313
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 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
1315 methodHandle method(THREAD, Method::resolve_jmethod_id(method_id));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1316
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 // Create object to hold arguments for the JavaCall, and associate it with
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 // the jni parser
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 int number_of_parameters = method->size_of_parameters();
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 JavaCallArguments java_args(number_of_parameters);
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 args->set_java_argument_object(&java_args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1323
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 assert(method->is_static(), "method should be static");
a61af66fc99e Initial load
duke
parents:
diff changeset
1325
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 // Fill out JavaCallArguments object
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1327 args->iterate( Fingerprinter(method).fingerprint() );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 // Initialize result type
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 result->set_type(args->get_ret_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
1330
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 // Invoke the method. Result is returned as oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 JavaCalls::call(result, method, &java_args, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1333
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 // Convert result
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1339
a61af66fc99e Initial load
duke
parents:
diff changeset
1340
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 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
1342 oop recv = JNIHandles::resolve(receiver);
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 if (recv == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 THROW(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 Handle h_recv(THREAD, recv);
a61af66fc99e Initial load
duke
parents:
diff changeset
1347
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 int number_of_parameters;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1349 Method* selected_method;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1351 Method* m = Method::resolve_jmethod_id(method_id);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 number_of_parameters = m->size_of_parameters();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1353 Klass* holder = m->method_holder();
23062
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1354 if (call_type != JNI_VIRTUAL) {
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1355 selected_method = m;
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1356 } else if (!m->has_itable_index()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 // non-interface call -- for that little speed boost, don't handlize
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 debug_only(No_Safepoint_Verifier nosafepoint;)
23062
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1359 // jni_GetMethodID makes sure class is linked and initialized
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1360 // so m should have a valid vtable index.
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1361 assert(m->valid_vtable_index(), "no valid vtable index");
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1362 int vtbl_index = m->vtable_index();
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1363 if (vtbl_index != Method::nonvirtual_vtable_index) {
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1364 Klass* k = h_recv->klass();
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1365 // k might be an arrayKlassOop but all vtables start at
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1366 // the same place. The cast is to avoid virtual call and assertion.
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1367 InstanceKlass *ik = (InstanceKlass*)k;
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1368 selected_method = ik->method_at_vtable(vtbl_index);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 } else {
23062
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1370 // final method
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 selected_method = m;
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 // interface call
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 KlassHandle h_holder(THREAD, holder);
a61af66fc99e Initial load
duke
parents:
diff changeset
1376
23062
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1377 int itbl_index = m->itable_index();
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1378 Klass* k = h_recv->klass();
3300e511bc3a 8072588: JVM crashes in JNI if toString is declared as an interface method
aeriksso
parents: 22974
diff changeset
1379 selected_method = InstanceKlass::cast(k)->method_at_itable(h_holder(), itbl_index, CHECK);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1382
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 methodHandle method(THREAD, selected_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1384
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 // Create object to hold arguments for the JavaCall, and associate it with
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 // the jni parser
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 JavaCallArguments java_args(number_of_parameters);
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 args->set_java_argument_object(&java_args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1390
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 // handle arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 assert(!method->is_static(), "method should not be static");
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 args->push_receiver(h_recv); // Push jobject handle
a61af66fc99e Initial load
duke
parents:
diff changeset
1394
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 // Fill out JavaCallArguments object
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1396 args->iterate( Fingerprinter(method).fingerprint() );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 // Initialize result type
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 result->set_type(args->get_ret_type());
a61af66fc99e Initial load
duke
parents:
diff changeset
1399
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 // Invoke the method. Result is returned as oop.
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 JavaCalls::call(result, method, &java_args, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1402
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 // Convert result
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 if (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 result->set_jobject(JNIHandles::make_local(env, (oop) result->get_jobject()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1408
a61af66fc99e Initial load
duke
parents:
diff changeset
1409
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 static instanceOop alloc_object(jclass clazz, TRAPS) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1411 KlassHandle k(THREAD, java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
23746
0dceb4846c8c 8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents: 23660
diff changeset
1412 if (k == NULL) {
0dceb4846c8c 8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents: 23660
diff changeset
1413 ResourceMark rm(THREAD);
0dceb4846c8c 8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents: 23660
diff changeset
1414 THROW_(vmSymbols::java_lang_InstantiationException(), NULL);
0dceb4846c8c 8031427: AllocObject and Unsafe.allocateInstance segfault for primitive types
gdub
parents: 23660
diff changeset
1415 }
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1416 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
1417 InstanceKlass::cast(k())->initialize(CHECK_NULL);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1418 instanceOop ih = InstanceKlass::cast(k())->allocate_instance(THREAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 return ih;
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1421
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1422 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 DT_RETURN_MARK_DECL(AllocObject, jobject);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1424 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1425 DT_RETURN_MARK_DECL(AllocObject, jobject
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1426 , HOTSPOT_JNI_ALLOCOBJECT_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1427 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1428
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 JNI_ENTRY(jobject, jni_AllocObject(JNIEnv *env, jclass clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 JNIWrapper("AllocObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
1431
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1432 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 DTRACE_PROBE2(hotspot_jni, AllocObject__entry, env, clazz);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1434 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1435 HOTSPOT_JNI_ALLOCOBJECT_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1436 env, clazz);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1437 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 DT_RETURN_MARK(AllocObject, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
1440
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 ret = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1445
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1446 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 DT_RETURN_MARK_DECL(NewObjectA, jobject);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1448 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1449 DT_RETURN_MARK_DECL(NewObjectA, jobject
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1450 , HOTSPOT_JNI_NEWOBJECTA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1451 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1452
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 JNI_ENTRY(jobject, jni_NewObjectA(JNIEnv *env, jclass clazz, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 JNIWrapper("NewObjectA");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1455 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1456 DTRACE_PROBE3(hotspot_jni, NewObjectA__entry, env, clazz, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1457 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1458 HOTSPOT_JNI_NEWOBJECTA_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1459 env, clazz, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1460 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 jobject obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 DT_RETURN_MARK(NewObjectA, jobject, (const jobject)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1463
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 obj = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1467 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1471
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1472 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 DT_RETURN_MARK_DECL(NewObjectV, jobject);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1474 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1475 DT_RETURN_MARK_DECL(NewObjectV, jobject
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1476 , HOTSPOT_JNI_NEWOBJECTV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1477 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1478
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 JNI_ENTRY(jobject, jni_NewObjectV(JNIEnv *env, jclass clazz, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1480 JNIWrapper("NewObjectV");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1481 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 DTRACE_PROBE3(hotspot_jni, NewObjectV__entry, env, clazz, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1483 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1484 HOTSPOT_JNI_NEWOBJECTV_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1485 env, clazz, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1486 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 jobject obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 DT_RETURN_MARK(NewObjectV, jobject, (const jobject&)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1489
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 obj = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1493 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1497
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1498 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 DT_RETURN_MARK_DECL(NewObject, jobject);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1500 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1501 DT_RETURN_MARK_DECL(NewObject, jobject
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1502 , HOTSPOT_JNI_NEWOBJECT_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1503 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1504
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 JNI_ENTRY(jobject, jni_NewObject(JNIEnv *env, jclass clazz, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 JNIWrapper("NewObject");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1507 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 DTRACE_PROBE3(hotspot_jni, NewObject__entry, env, clazz, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1509 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1510 HOTSPOT_JNI_NEWOBJECT_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1511 env, clazz, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1512 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 jobject obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 DT_RETURN_MARK(NewObject, jobject, (const jobject&)obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1515
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 instanceOop i = alloc_object(clazz, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 obj = JNIHandles::make_local(env, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1521 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1526
a61af66fc99e Initial load
duke
parents:
diff changeset
1527
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 JNI_ENTRY(jclass, jni_GetObjectClass(JNIEnv *env, jobject obj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 JNIWrapper("GetObjectClass");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1530 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 DTRACE_PROBE2(hotspot_jni, GetObjectClass__entry, env, obj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1532 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1533 HOTSPOT_JNI_GETOBJECTCLASS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1534 env, obj);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1535 #endif /* USDT2 */
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1536 Klass* k = JNIHandles::resolve_non_null(obj)->klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 jclass ret =
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1538 (jclass) JNIHandles::make_local(env, k->java_mirror());
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1539 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 DTRACE_PROBE1(hotspot_jni, GetObjectClass__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1541 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1542 HOTSPOT_JNI_GETOBJECTCLASS_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1543 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1544 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1545 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1547
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 JNI_QUICK_ENTRY(jboolean, jni_IsInstanceOf(JNIEnv *env, jobject obj, jclass clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 JNIWrapper("IsInstanceOf");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1550 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 DTRACE_PROBE3(hotspot_jni, IsInstanceOf__entry, env, obj, clazz);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1552 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1553 HOTSPOT_JNI_ISINSTANCEOF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1554 env, obj, clazz);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1555 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 jboolean ret = JNI_TRUE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 if (obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 ret = JNI_FALSE;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1559 Klass* k = java_lang_Class::as_Klass(
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 JNIHandles::resolve_non_null(clazz));
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 if (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 ret = JNIHandles::resolve_non_null(obj)->is_a(k) ? JNI_TRUE : JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1565 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 DTRACE_PROBE1(hotspot_jni, IsInstanceOf__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1567 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1568 HOTSPOT_JNI_ISINSTANCEOF_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1569 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1570 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1573
a61af66fc99e Initial load
duke
parents:
diff changeset
1574
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 static jmethodID get_method_id(JNIEnv *env, jclass clazz, const char *name_str,
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 const char *sig, bool is_static, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1577 // %%%% This code should probably just call into a method in the LinkResolver
a61af66fc99e Initial load
duke
parents:
diff changeset
1578 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 // passed in) so the method and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
1581 // 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
1582 const char *name_to_probe = (name_str == NULL)
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1583 ? vmSymbols::object_initializer_name()->as_C_string()
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1584 : name_str;
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1585 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
1586 TempNewSymbol signature = SymbolTable::probe(sig, (int)strlen(sig));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1587
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1588 if (name == NULL || signature == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1591
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 // Throw a NoSuchMethodError exception if we have an instance of a
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 // primitive java.lang.Class
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 if (java_lang_Class::is_primitive(JNIHandles::resolve_non_null(clazz))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1597
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 KlassHandle klass(THREAD,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1599 java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1600
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 // 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
1602 // Method*s.
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
1603 klass()->initialize(CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1604
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1605 Method* m;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1606 if (name == vmSymbols::object_initializer_name() ||
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1607 name == vmSymbols::class_initializer_name()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 // Never search superclasses for constructors
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 if (klass->oop_is_instance()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1610 m = InstanceKlass::cast(klass())->find_method(name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 m = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 } else {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1615 m = klass->lookup_method(name, signature);
12823
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12819
diff changeset
1616 if (m == NULL && klass->oop_is_instance()) {
ac9cb1d5a202 8009130: Lambda: Fix access controls, loader constraints.
acorn
parents: 12819
diff changeset
1617 m = InstanceKlass::cast(klass())->lookup_method_in_ordered_interfaces(name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 if (m == NULL || (m->is_static() != is_static)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 THROW_MSG_0(vmSymbols::java_lang_NoSuchMethodError(), name_str);
a61af66fc99e Initial load
duke
parents:
diff changeset
1622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 return m->jmethod_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1625
a61af66fc99e Initial load
duke
parents:
diff changeset
1626
a61af66fc99e Initial load
duke
parents:
diff changeset
1627 JNI_ENTRY(jmethodID, jni_GetMethodID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
1629 JNIWrapper("GetMethodID");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1630 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 DTRACE_PROBE4(hotspot_jni, GetMethodID__entry, env, clazz, name, sig);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1632 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1633 HOTSPOT_JNI_GETMETHODID_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1634 env, clazz, (char *) name, (char *) sig);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1635 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1636 jmethodID ret = get_method_id(env, clazz, name, sig, false, thread);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1637 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 DTRACE_PROBE1(hotspot_jni, GetMethodID__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1639 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1640 HOTSPOT_JNI_GETMETHODID_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1641 (uintptr_t) ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1642 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1645
a61af66fc99e Initial load
duke
parents:
diff changeset
1646
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 JNI_ENTRY(jmethodID, jni_GetStaticMethodID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 JNIWrapper("GetStaticMethodID");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1650 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 DTRACE_PROBE4(hotspot_jni, GetStaticMethodID__entry, env, clazz, name, sig);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1652 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1653 HOTSPOT_JNI_GETSTATICMETHODID_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1654 env, (char *) clazz, (char *) name, (char *)sig);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1655 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 jmethodID ret = get_method_id(env, clazz, name, sig, true, thread);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1657 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 DTRACE_PROBE1(hotspot_jni, GetStaticMethodID__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1659 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1660 HOTSPOT_JNI_GETSTATICMETHODID_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1661 (uintptr_t) ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1662 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1665
a61af66fc99e Initial load
duke
parents:
diff changeset
1666
a61af66fc99e Initial load
duke
parents:
diff changeset
1667
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 // Calling Methods
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1671
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1672 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 #define DEFINE_CALLMETHOD(ResultType, Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1675 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##Method, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1676 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodV, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodA, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1679 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 JNIWrapper("Call" XSTR(Result) "Method"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1682 \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1683 DTRACE_PROBE3(hotspot_jni, Call##Result##Method__entry, env, obj, methodID); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1685 DT_RETURN_MARK_FOR(Result, Call##Result##Method, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 va_list args; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 va_start(args, methodID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1691 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1692 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 va_end(args); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 JNIWrapper("Call" XSTR(Result) "MethodV"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1703 DTRACE_PROBE3(hotspot_jni, Call##Result##MethodV__entry, env, obj, methodID); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1705 DT_RETURN_MARK_FOR(Result, Call##Result##MethodV, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1706 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1707 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1708 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1709 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1710 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1711 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1712 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1713 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1714 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1715 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1716 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1717 jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1718 JNIWrapper("Call" XSTR(Result) "MethodA"); \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1719 DTRACE_PROBE3(hotspot_jni, Call##Result##MethodA__entry, env, obj, methodID); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1720 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1721 DT_RETURN_MARK_FOR(Result, Call##Result##MethodA, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1722 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1723 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1724 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1725 JNI_ArgumentPusherArray ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1726 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1727 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1728 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1729 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1730
a61af66fc99e Initial load
duke
parents:
diff changeset
1731 // the runtime type of subword integral basic types is integer
a61af66fc99e Initial load
duke
parents:
diff changeset
1732 DEFINE_CALLMETHOD(jboolean, Boolean, T_BOOLEAN)
a61af66fc99e Initial load
duke
parents:
diff changeset
1733 DEFINE_CALLMETHOD(jbyte, Byte, T_BYTE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1734 DEFINE_CALLMETHOD(jchar, Char, T_CHAR)
a61af66fc99e Initial load
duke
parents:
diff changeset
1735 DEFINE_CALLMETHOD(jshort, Short, T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1736
a61af66fc99e Initial load
duke
parents:
diff changeset
1737 DEFINE_CALLMETHOD(jobject, Object, T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1738 DEFINE_CALLMETHOD(jint, Int, T_INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1739 DEFINE_CALLMETHOD(jlong, Long, T_LONG)
a61af66fc99e Initial load
duke
parents:
diff changeset
1740 DEFINE_CALLMETHOD(jfloat, Float, T_FLOAT)
a61af66fc99e Initial load
duke
parents:
diff changeset
1741 DEFINE_CALLMETHOD(jdouble, Double, T_DOUBLE)
a61af66fc99e Initial load
duke
parents:
diff changeset
1742
a61af66fc99e Initial load
duke
parents:
diff changeset
1743 DT_VOID_RETURN_MARK_DECL(CallVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1744 DT_VOID_RETURN_MARK_DECL(CallVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1745 DT_VOID_RETURN_MARK_DECL(CallVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1746
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1747 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1748
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1749 #define DEFINE_CALLMETHOD(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1750 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1751 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1752 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##Method, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1753 , ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1754 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1755 JNI_ENTRY(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1756 jni_Call##Result##Method(JNIEnv *env, jobject obj, jmethodID methodID, ...)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1757 JNIWrapper("Call" XSTR(Result) "Method"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1758 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1759 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1760 ResultType ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1761 DT_RETURN_MARK_FOR(Result, Call##Result##Method, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1762 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1763 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1764 va_list args; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1765 va_start(args, methodID); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1766 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1767 JNI_ArgumentPusherVaArg ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1768 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1769 va_end(args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1770 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1771 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1772 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1773
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1774 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1775 DEFINE_CALLMETHOD(jboolean, Boolean, T_BOOLEAN
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1776 , HOTSPOT_JNI_CALLBOOLEANMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1777 HOTSPOT_JNI_CALLBOOLEANMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1778 DEFINE_CALLMETHOD(jbyte, Byte, T_BYTE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1779 , HOTSPOT_JNI_CALLBYTEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1780 HOTSPOT_JNI_CALLBYTEMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1781 DEFINE_CALLMETHOD(jchar, Char, T_CHAR
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1782 , HOTSPOT_JNI_CALLCHARMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1783 HOTSPOT_JNI_CALLCHARMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1784 DEFINE_CALLMETHOD(jshort, Short, T_SHORT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1785 , HOTSPOT_JNI_CALLSHORTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1786 HOTSPOT_JNI_CALLSHORTMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1787
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1788 DEFINE_CALLMETHOD(jobject, Object, T_OBJECT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1789 , HOTSPOT_JNI_CALLOBJECTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1790 HOTSPOT_JNI_CALLOBJECTMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1791 DEFINE_CALLMETHOD(jint, Int, T_INT,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1792 HOTSPOT_JNI_CALLINTMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1793 HOTSPOT_JNI_CALLINTMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1794 DEFINE_CALLMETHOD(jlong, Long, T_LONG
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1795 , HOTSPOT_JNI_CALLLONGMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1796 HOTSPOT_JNI_CALLLONGMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1797 // 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
1798 DEFINE_CALLMETHOD(jfloat, Float, T_FLOAT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1799 , HOTSPOT_JNI_CALLFLOATMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1800 HOTSPOT_JNI_CALLFLOATMETHOD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1801 DEFINE_CALLMETHOD(jdouble, Double, T_DOUBLE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1802 , HOTSPOT_JNI_CALLDOUBLEMETHOD_ENTRY(env, obj, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1803 HOTSPOT_JNI_CALLDOUBLEMETHOD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1804
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1805 #define DEFINE_CALLMETHODV(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1806 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1807 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1808 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodV, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1809 , ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1810 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1811 JNI_ENTRY(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1812 jni_Call##Result##MethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1813 JNIWrapper("Call" XSTR(Result) "MethodV"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1814 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1815 EntryProbe;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1816 ResultType ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1817 DT_RETURN_MARK_FOR(Result, Call##Result##MethodV, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1818 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1819 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1820 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1821 JNI_ArgumentPusherVaArg ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1822 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1823 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1824 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1825 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1826
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1827 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1828 DEFINE_CALLMETHODV(jboolean, Boolean, T_BOOLEAN
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1829 , HOTSPOT_JNI_CALLBOOLEANMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1830 HOTSPOT_JNI_CALLBOOLEANMETHODV_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1831 DEFINE_CALLMETHODV(jbyte, Byte, T_BYTE
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1832 , HOTSPOT_JNI_CALLBYTEMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1833 HOTSPOT_JNI_CALLBYTEMETHODV_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1834 DEFINE_CALLMETHODV(jchar, Char, T_CHAR
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1835 , HOTSPOT_JNI_CALLCHARMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1836 HOTSPOT_JNI_CALLCHARMETHODV_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1837 DEFINE_CALLMETHODV(jshort, Short, T_SHORT
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1838 , HOTSPOT_JNI_CALLSHORTMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1839 HOTSPOT_JNI_CALLSHORTMETHODV_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1840
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1841 DEFINE_CALLMETHODV(jobject, Object, T_OBJECT
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1842 , HOTSPOT_JNI_CALLOBJECTMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1843 HOTSPOT_JNI_CALLOBJECTMETHODV_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1844 DEFINE_CALLMETHODV(jint, Int, T_INT,
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1845 HOTSPOT_JNI_CALLINTMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1846 HOTSPOT_JNI_CALLINTMETHODV_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1847 DEFINE_CALLMETHODV(jlong, Long, T_LONG
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1848 , HOTSPOT_JNI_CALLLONGMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1849 HOTSPOT_JNI_CALLLONGMETHODV_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1850 // 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
1851 DEFINE_CALLMETHODV(jfloat, Float, T_FLOAT
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1852 , HOTSPOT_JNI_CALLFLOATMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1853 HOTSPOT_JNI_CALLFLOATMETHODV_RETURN())
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1854 DEFINE_CALLMETHODV(jdouble, Double, T_DOUBLE
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1855 , HOTSPOT_JNI_CALLDOUBLEMETHODV_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1856 HOTSPOT_JNI_CALLDOUBLEMETHODV_RETURN())
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1857
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1858 #define DEFINE_CALLMETHODA(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1859 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1860 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1861 DT_RETURN_MARK_DECL_FOR(Result, Call##Result##MethodA, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1862 , ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1863 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1864 JNI_ENTRY(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1865 jni_Call##Result##MethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1866 JNIWrapper("Call" XSTR(Result) "MethodA"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1867 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1868 ResultType ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1869 DT_RETURN_MARK_FOR(Result, Call##Result##MethodA, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1870 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1871 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1872 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1873 JNI_ArgumentPusherArray ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1874 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1875 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1876 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1877 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1878
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1879 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1880 DEFINE_CALLMETHODA(jboolean, Boolean, T_BOOLEAN
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1881 , HOTSPOT_JNI_CALLBOOLEANMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1882 HOTSPOT_JNI_CALLBOOLEANMETHODA_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1883 DEFINE_CALLMETHODA(jbyte, Byte, T_BYTE
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1884 , HOTSPOT_JNI_CALLBYTEMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1885 HOTSPOT_JNI_CALLBYTEMETHODA_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1886 DEFINE_CALLMETHODA(jchar, Char, T_CHAR
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1887 , HOTSPOT_JNI_CALLCHARMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1888 HOTSPOT_JNI_CALLCHARMETHODA_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1889 DEFINE_CALLMETHODA(jshort, Short, T_SHORT
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1890 , HOTSPOT_JNI_CALLSHORTMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1891 HOTSPOT_JNI_CALLSHORTMETHODA_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1892
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1893 DEFINE_CALLMETHODA(jobject, Object, T_OBJECT
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1894 , HOTSPOT_JNI_CALLOBJECTMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1895 HOTSPOT_JNI_CALLOBJECTMETHODA_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1896 DEFINE_CALLMETHODA(jint, Int, T_INT,
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1897 HOTSPOT_JNI_CALLINTMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1898 HOTSPOT_JNI_CALLINTMETHODA_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1899 DEFINE_CALLMETHODA(jlong, Long, T_LONG
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1900 , HOTSPOT_JNI_CALLLONGMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1901 HOTSPOT_JNI_CALLLONGMETHODA_RETURN(_ret_ref))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1902 // 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
1903 DEFINE_CALLMETHODA(jfloat, Float, T_FLOAT
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1904 , HOTSPOT_JNI_CALLFLOATMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1905 HOTSPOT_JNI_CALLFLOATMETHODA_RETURN())
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1906 DEFINE_CALLMETHODA(jdouble, Double, T_DOUBLE
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1907 , HOTSPOT_JNI_CALLDOUBLEMETHODA_ENTRY(env, obj, (uintptr_t)methodID),
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
1908 HOTSPOT_JNI_CALLDOUBLEMETHODA_RETURN())
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1909
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1910 DT_VOID_RETURN_MARK_DECL(CallVoidMethod, HOTSPOT_JNI_CALLVOIDMETHOD_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1911 DT_VOID_RETURN_MARK_DECL(CallVoidMethodV, HOTSPOT_JNI_CALLVOIDMETHODV_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1912 DT_VOID_RETURN_MARK_DECL(CallVoidMethodA, HOTSPOT_JNI_CALLVOIDMETHODA_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1913
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1914 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1915
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 JNI_ENTRY(void, jni_CallVoidMethod(JNIEnv *env, jobject obj, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 JNIWrapper("CallVoidMethod");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1918 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 DTRACE_PROBE3(hotspot_jni, CallVoidMethod__entry, env, obj, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1920 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1921 HOTSPOT_JNI_CALLVOIDMETHOD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1922 env, obj, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1923 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 DT_VOID_RETURN_MARK(CallVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
1925
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1929 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1933
a61af66fc99e Initial load
duke
parents:
diff changeset
1934
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 JNI_ENTRY(void, jni_CallVoidMethodV(JNIEnv *env, jobject obj, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 JNIWrapper("CallVoidMethodV");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1937 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 DTRACE_PROBE3(hotspot_jni, CallVoidMethodV__entry, env, obj, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1939 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1940 HOTSPOT_JNI_CALLVOIDMETHODV_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1941 env, obj, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1942 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 DT_VOID_RETURN_MARK(CallVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
1944
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1946 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1949
a61af66fc99e Initial load
duke
parents:
diff changeset
1950
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 JNI_ENTRY(void, jni_CallVoidMethodA(JNIEnv *env, jobject obj, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 JNIWrapper("CallVoidMethodA");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1953 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1954 DTRACE_PROBE3(hotspot_jni, CallVoidMethodA__entry, env, obj, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1955 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1956 HOTSPOT_JNI_CALLVOIDMETHODA_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1957 env, obj, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1958 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 DT_VOID_RETURN_MARK(CallVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
1960
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1962 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 jni_invoke_nonstatic(env, &jvalue, obj, JNI_VIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1965
a61af66fc99e Initial load
duke
parents:
diff changeset
1966
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
1967 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 #define DEFINE_CALLNONVIRTUALMETHOD(ResultType, Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##Method, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodV, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodA, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1975 jni_CallNonvirtual##Result##Method(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 JNIWrapper("CallNonvitual" XSTR(Result) "Method"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##Method__entry, env, obj, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 ResultType ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##Method, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 va_list args; \
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 va_start(args, methodID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
1986 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 va_end(args); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1989 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 \
a61af66fc99e Initial load
duke
parents:
diff changeset
1993 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 jni_CallNonvirtual##Result##MethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 JNIWrapper("CallNonvitual" XSTR(Result) "#MethodV"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##MethodV__entry, env, obj, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 ResultType ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodV, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2002 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 jni_CallNonvirtual##Result##MethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2010 JNIWrapper("CallNonvitual" XSTR(Result) "MethodA"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 DTRACE_PROBE4(hotspot_jni, CallNonvirtual##Result##MethodA__entry, env, obj, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 ResultType ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodA, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2017 JNI_ArgumentPusherArray ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 return ret;\
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 // the runtime type of subword integral basic types is integer
a61af66fc99e Initial load
duke
parents:
diff changeset
2024 DEFINE_CALLNONVIRTUALMETHOD(jboolean, Boolean, T_BOOLEAN)
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 DEFINE_CALLNONVIRTUALMETHOD(jbyte, Byte, T_BYTE)
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 DEFINE_CALLNONVIRTUALMETHOD(jchar, Char, T_CHAR)
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 DEFINE_CALLNONVIRTUALMETHOD(jshort, Short, T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2028
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 DEFINE_CALLNONVIRTUALMETHOD(jobject, Object, T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 DEFINE_CALLNONVIRTUALMETHOD(jint, Int, T_INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 DEFINE_CALLNONVIRTUALMETHOD(jlong, Long, T_LONG)
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 DEFINE_CALLNONVIRTUALMETHOD(jfloat, Float, T_FLOAT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 DEFINE_CALLNONVIRTUALMETHOD(jdouble, Double, T_DOUBLE)
a61af66fc99e Initial load
duke
parents:
diff changeset
2034
a61af66fc99e Initial load
duke
parents:
diff changeset
2035
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
2039
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2040 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2041
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2042 #define DEFINE_CALLNONVIRTUALMETHOD(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2043 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2044 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2045 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##Method, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2046 , ReturnProbe);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2047 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2048 JNI_ENTRY(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2049 jni_CallNonvirtual##Result##Method(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2050 JNIWrapper("CallNonvitual" XSTR(Result) "Method"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2051 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2052 EntryProbe;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2053 ResultType ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2054 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##Method, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2055 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2056 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2057 va_list args; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2058 va_start(args, methodID); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2059 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2060 JNI_ArgumentPusherVaArg ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2061 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2062 va_end(args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2063 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2064 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2065 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2066
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2067 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2068 DEFINE_CALLNONVIRTUALMETHOD(jboolean, Boolean, T_BOOLEAN
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2069 , HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2070 HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2071 DEFINE_CALLNONVIRTUALMETHOD(jbyte, Byte, T_BYTE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2072 , HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2073 HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2074 DEFINE_CALLNONVIRTUALMETHOD(jchar, Char, T_CHAR
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2075 , HOTSPOT_JNI_CALLNONVIRTUALCHARMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2076 HOTSPOT_JNI_CALLNONVIRTUALCHARMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2077 DEFINE_CALLNONVIRTUALMETHOD(jshort, Short, T_SHORT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2078 , HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2079 HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2080
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2081 DEFINE_CALLNONVIRTUALMETHOD(jobject, Object, T_OBJECT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2082 , HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2083 HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2084 DEFINE_CALLNONVIRTUALMETHOD(jint, Int, T_INT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2085 , HOTSPOT_JNI_CALLNONVIRTUALINTMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2086 HOTSPOT_JNI_CALLNONVIRTUALINTMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2087 DEFINE_CALLNONVIRTUALMETHOD(jlong, Long, T_LONG
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2088 , HOTSPOT_JNI_CALLNONVIRTUALLONGMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2089 // 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
2090 HOTSPOT_JNI_CALLNONVIRTUALLONGMETHOD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2091 DEFINE_CALLNONVIRTUALMETHOD(jfloat, Float, T_FLOAT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2092 , HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2093 HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHOD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2094 DEFINE_CALLNONVIRTUALMETHOD(jdouble, Double, T_DOUBLE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2095 , HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHOD_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2096 HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHOD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2097
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2098 #define DEFINE_CALLNONVIRTUALMETHODV(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2099 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2100 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2101 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodV, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2102 , ReturnProbe);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2103 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2104 JNI_ENTRY(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2105 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
2106 JNIWrapper("CallNonvitual" XSTR(Result) "MethodV"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2107 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2108 EntryProbe;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2109 ResultType ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2110 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodV, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2111 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2112 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2113 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2114 JNI_ArgumentPusherVaArg ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2115 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2116 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2117 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2118 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2119
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2120 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2121 DEFINE_CALLNONVIRTUALMETHODV(jboolean, Boolean, T_BOOLEAN
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2122 , HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2123 HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODV_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2124 DEFINE_CALLNONVIRTUALMETHODV(jbyte, Byte, T_BYTE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2125 , HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2126 HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODV_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2127 DEFINE_CALLNONVIRTUALMETHODV(jchar, Char, T_CHAR
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2128 , HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2129 HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODV_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2130 DEFINE_CALLNONVIRTUALMETHODV(jshort, Short, T_SHORT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2131 , HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2132 HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODV_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2133
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2134 DEFINE_CALLNONVIRTUALMETHODV(jobject, Object, T_OBJECT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2135 , HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2136 HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODV_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2137 DEFINE_CALLNONVIRTUALMETHODV(jint, Int, T_INT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2138 , HOTSPOT_JNI_CALLNONVIRTUALINTMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2139 HOTSPOT_JNI_CALLNONVIRTUALINTMETHODV_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2140 DEFINE_CALLNONVIRTUALMETHODV(jlong, Long, T_LONG
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2141 , HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2142 // 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
2143 HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODV_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2144 DEFINE_CALLNONVIRTUALMETHODV(jfloat, Float, T_FLOAT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2145 , HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2146 HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODV_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2147 DEFINE_CALLNONVIRTUALMETHODV(jdouble, Double, T_DOUBLE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2148 , HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODV_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2149 HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODV_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2150
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2151 #define DEFINE_CALLNONVIRTUALMETHODA(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2152 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2153 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2154 DT_RETURN_MARK_DECL_FOR(Result, CallNonvirtual##Result##MethodA, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2155 , ReturnProbe);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2156 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2157 JNI_ENTRY(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2158 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
2159 JNIWrapper("CallNonvitual" XSTR(Result) "MethodA"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2160 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2161 EntryProbe;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2162 ResultType ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2163 DT_RETURN_MARK_FOR(Result, CallNonvirtual##Result##MethodA, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2164 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2165 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2166 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2167 JNI_ArgumentPusherArray ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2168 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2169 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2170 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2171 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2172
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2173 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2174 DEFINE_CALLNONVIRTUALMETHODA(jboolean, Boolean, T_BOOLEAN
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2175 , HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2176 HOTSPOT_JNI_CALLNONVIRTUALBOOLEANMETHODA_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2177 DEFINE_CALLNONVIRTUALMETHODA(jbyte, Byte, T_BYTE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2178 , HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2179 HOTSPOT_JNI_CALLNONVIRTUALBYTEMETHODA_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2180 DEFINE_CALLNONVIRTUALMETHODA(jchar, Char, T_CHAR
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2181 , HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2182 HOTSPOT_JNI_CALLNONVIRTUALCHARMETHODA_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2183 DEFINE_CALLNONVIRTUALMETHODA(jshort, Short, T_SHORT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2184 , HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2185 HOTSPOT_JNI_CALLNONVIRTUALSHORTMETHODA_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2186
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2187 DEFINE_CALLNONVIRTUALMETHODA(jobject, Object, T_OBJECT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2188 , HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2189 HOTSPOT_JNI_CALLNONVIRTUALOBJECTMETHODA_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2190 DEFINE_CALLNONVIRTUALMETHODA(jint, Int, T_INT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2191 , HOTSPOT_JNI_CALLNONVIRTUALINTMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2192 HOTSPOT_JNI_CALLNONVIRTUALINTMETHODA_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2193 DEFINE_CALLNONVIRTUALMETHODA(jlong, Long, T_LONG
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2194 , HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2195 // 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
2196 HOTSPOT_JNI_CALLNONVIRTUALLONGMETHODA_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2197 DEFINE_CALLNONVIRTUALMETHODA(jfloat, Float, T_FLOAT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2198 , HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2199 HOTSPOT_JNI_CALLNONVIRTUALFLOATMETHODA_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2200 DEFINE_CALLNONVIRTUALMETHODA(jdouble, Double, T_DOUBLE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2201 , HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODA_ENTRY(env, obj, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2202 HOTSPOT_JNI_CALLNONVIRTUALDOUBLEMETHODA_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2203
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2204 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethod
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2205 , HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHOD_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2206 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodV
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2207 , HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODV_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2208 DT_VOID_RETURN_MARK_DECL(CallNonvirtualVoidMethodA
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2209 , HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODA_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2210 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2211
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 JNI_ENTRY(void, jni_CallNonvirtualVoidMethod(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 JNIWrapper("CallNonvirtualVoidMethod");
a61af66fc99e Initial load
duke
parents:
diff changeset
2214
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2215 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethod__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 env, obj, cls, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2218 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2219 HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHOD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2220 env, obj, cls, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2221 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 DT_VOID_RETURN_MARK(CallNonvirtualVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
2223
a61af66fc99e Initial load
duke
parents:
diff changeset
2224 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2227 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
2230 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2231
a61af66fc99e Initial load
duke
parents:
diff changeset
2232
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 JNI_ENTRY(void, jni_CallNonvirtualVoidMethodV(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 JNIWrapper("CallNonvirtualVoidMethodV");
a61af66fc99e Initial load
duke
parents:
diff changeset
2235
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2236 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethodV__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
2238 env, obj, cls, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2239 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2240 HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODV_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2241 env, obj, cls, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2242 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
2244
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2246 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2249
a61af66fc99e Initial load
duke
parents:
diff changeset
2250
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 JNI_ENTRY(void, jni_CallNonvirtualVoidMethodA(JNIEnv *env, jobject obj, jclass cls, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
2252 JNIWrapper("CallNonvirtualVoidMethodA");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2253 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2254 DTRACE_PROBE4(hotspot_jni, CallNonvirtualVoidMethodA__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 env, obj, cls, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2256 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2257 HOTSPOT_JNI_CALLNONVIRTUALVOIDMETHODA_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2258 env, obj, cls, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2259 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2260 DT_VOID_RETURN_MARK(CallNonvirtualVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2262 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 jni_invoke_nonstatic(env, &jvalue, obj, JNI_NONVIRTUAL, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2265
a61af66fc99e Initial load
duke
parents:
diff changeset
2266
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2267 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2268 #define DEFINE_CALLSTATICMETHOD(ResultType, Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2269 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##Method, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodV, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodA, ResultType);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 JNIWrapper("CallStatic" XSTR(Result) "Method"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2278 DTRACE_PROBE3(hotspot_jni, CallStatic##Result##Method__entry, env, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 DT_RETURN_MARK_FOR(Result, CallStatic##Result##Method, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 va_list args; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2284 va_start(args, methodID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2286 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2287 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 va_end(args); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 JNIWrapper("CallStatic" XSTR(Result) "MethodV"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 DTRACE_PROBE3(hotspot_jni, CallStatic##Result##MethodV__entry, env, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodV, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2302 JNI_ArgumentPusherVaArg ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2304 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 JNI_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 JNI_ENTRY(ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 JNIWrapper("CallStatic" XSTR(Result) "MethodA"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2311 DTRACE_PROBE3(hotspot_jni, CallStatic##Result##MethodA__entry, env, cls, methodID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 ResultType ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodA, ResultType, \
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 (const ResultType&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 JavaValue jvalue(Tag); \
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2317 JNI_ArgumentPusherArray ap(methodID, args); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 ret = jvalue.get_##ResultType(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2322
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 // the runtime type of subword integral basic types is integer
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 DEFINE_CALLSTATICMETHOD(jboolean, Boolean, T_BOOLEAN)
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 DEFINE_CALLSTATICMETHOD(jbyte, Byte, T_BYTE)
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 DEFINE_CALLSTATICMETHOD(jchar, Char, T_CHAR)
a61af66fc99e Initial load
duke
parents:
diff changeset
2327 DEFINE_CALLSTATICMETHOD(jshort, Short, T_SHORT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2328
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 DEFINE_CALLSTATICMETHOD(jobject, Object, T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 DEFINE_CALLSTATICMETHOD(jint, Int, T_INT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2331 DEFINE_CALLSTATICMETHOD(jlong, Long, T_LONG)
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 DEFINE_CALLSTATICMETHOD(jfloat, Float, T_FLOAT)
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 DEFINE_CALLSTATICMETHOD(jdouble, Double, T_DOUBLE)
a61af66fc99e Initial load
duke
parents:
diff changeset
2334
a61af66fc99e Initial load
duke
parents:
diff changeset
2335
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
2339
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2340 #else /* USDT2 */
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_CALLSTATICMETHOD(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2343 , EntryProbe, ResultProbe) \
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, CallStatic##Result##Method, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2346 , ResultProbe); \
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(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2349 jni_CallStatic##Result##Method(JNIEnv *env, jclass cls, jmethodID methodID, ...)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2350 JNIWrapper("CallStatic" XSTR(Result) "Method"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2351 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2352 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2353 ResultType ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2354 DT_RETURN_MARK_FOR(Result, CallStatic##Result##Method, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2355 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2356 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2357 va_list args; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2358 va_start(args, methodID); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2359 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2360 JNI_ArgumentPusherVaArg ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2361 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2362 va_end(args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2363 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2364 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2365 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2366
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2367 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2368 DEFINE_CALLSTATICMETHOD(jboolean, Boolean, T_BOOLEAN
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2369 , HOTSPOT_JNI_CALLSTATICBOOLEANMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2370 HOTSPOT_JNI_CALLSTATICBOOLEANMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2371 DEFINE_CALLSTATICMETHOD(jbyte, Byte, T_BYTE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2372 , HOTSPOT_JNI_CALLSTATICBYTEMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2373 HOTSPOT_JNI_CALLSTATICBYTEMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2374 DEFINE_CALLSTATICMETHOD(jchar, Char, T_CHAR
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2375 , HOTSPOT_JNI_CALLSTATICCHARMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2376 HOTSPOT_JNI_CALLSTATICCHARMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2377 DEFINE_CALLSTATICMETHOD(jshort, Short, T_SHORT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2378 , HOTSPOT_JNI_CALLSTATICSHORTMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2379 HOTSPOT_JNI_CALLSTATICSHORTMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2380
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2381 DEFINE_CALLSTATICMETHOD(jobject, Object, T_OBJECT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2382 , HOTSPOT_JNI_CALLSTATICOBJECTMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2383 HOTSPOT_JNI_CALLSTATICOBJECTMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2384 DEFINE_CALLSTATICMETHOD(jint, Int, T_INT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2385 , HOTSPOT_JNI_CALLSTATICINTMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2386 HOTSPOT_JNI_CALLSTATICINTMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2387 DEFINE_CALLSTATICMETHOD(jlong, Long, T_LONG
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2388 , HOTSPOT_JNI_CALLSTATICLONGMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2389 HOTSPOT_JNI_CALLSTATICLONGMETHOD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2390 // 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
2391 DEFINE_CALLSTATICMETHOD(jfloat, Float, T_FLOAT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2392 , HOTSPOT_JNI_CALLSTATICFLOATMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2393 HOTSPOT_JNI_CALLSTATICFLOATMETHOD_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2394 DEFINE_CALLSTATICMETHOD(jdouble, Double, T_DOUBLE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2395 , HOTSPOT_JNI_CALLSTATICDOUBLEMETHOD_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2396 HOTSPOT_JNI_CALLSTATICDOUBLEMETHOD_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2397
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2398 #define DEFINE_CALLSTATICMETHODV(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2399 , EntryProbe, ResultProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2400 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2401 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodV, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2402 , ResultProbe); \
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(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2405 jni_CallStatic##Result##MethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2406 JNIWrapper("CallStatic" XSTR(Result) "MethodV"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2407 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2408 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2409 ResultType ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2410 DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodV, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2411 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2412 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2413 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2414 JNI_ArgumentPusherVaArg ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2415 /* 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
2416 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
2417 k()->initialize(CHECK_0); \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2418 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2419 va_end(args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2420 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2421 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2422 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2423
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2424 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2425 DEFINE_CALLSTATICMETHODV(jboolean, Boolean, T_BOOLEAN
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2426 , HOTSPOT_JNI_CALLSTATICBOOLEANMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2427 HOTSPOT_JNI_CALLSTATICBOOLEANMETHODV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2428 DEFINE_CALLSTATICMETHODV(jbyte, Byte, T_BYTE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2429 , HOTSPOT_JNI_CALLSTATICBYTEMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2430 HOTSPOT_JNI_CALLSTATICBYTEMETHODV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2431 DEFINE_CALLSTATICMETHODV(jchar, Char, T_CHAR
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2432 , HOTSPOT_JNI_CALLSTATICCHARMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2433 HOTSPOT_JNI_CALLSTATICCHARMETHODV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2434 DEFINE_CALLSTATICMETHODV(jshort, Short, T_SHORT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2435 , HOTSPOT_JNI_CALLSTATICSHORTMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2436 HOTSPOT_JNI_CALLSTATICSHORTMETHODV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2437
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2438 DEFINE_CALLSTATICMETHODV(jobject, Object, T_OBJECT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2439 , HOTSPOT_JNI_CALLSTATICOBJECTMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2440 HOTSPOT_JNI_CALLSTATICOBJECTMETHODV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2441 DEFINE_CALLSTATICMETHODV(jint, Int, T_INT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2442 , HOTSPOT_JNI_CALLSTATICINTMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2443 HOTSPOT_JNI_CALLSTATICINTMETHODV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2444 DEFINE_CALLSTATICMETHODV(jlong, Long, T_LONG
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2445 , HOTSPOT_JNI_CALLSTATICLONGMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2446 HOTSPOT_JNI_CALLSTATICLONGMETHODV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2447 // 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
2448 DEFINE_CALLSTATICMETHODV(jfloat, Float, T_FLOAT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2449 , HOTSPOT_JNI_CALLSTATICFLOATMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2450 HOTSPOT_JNI_CALLSTATICFLOATMETHODV_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2451 DEFINE_CALLSTATICMETHODV(jdouble, Double, T_DOUBLE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2452 , HOTSPOT_JNI_CALLSTATICDOUBLEMETHODV_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2453 HOTSPOT_JNI_CALLSTATICDOUBLEMETHODV_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2454
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2455 #define DEFINE_CALLSTATICMETHODA(ResultType, Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2456 , EntryProbe, ResultProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2457 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2458 DT_RETURN_MARK_DECL_FOR(Result, CallStatic##Result##MethodA, ResultType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2459 , ResultProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2460 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2461 JNI_ENTRY(ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2462 jni_CallStatic##Result##MethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2463 JNIWrapper("CallStatic" XSTR(Result) "MethodA"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2464 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2465 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2466 ResultType ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2467 DT_RETURN_MARK_FOR(Result, CallStatic##Result##MethodA, ResultType, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2468 (const ResultType&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2469 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2470 JavaValue jvalue(Tag); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2471 JNI_ArgumentPusherArray ap(methodID, args); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2472 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2473 ret = jvalue.get_##ResultType(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2474 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2475 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2476
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2477 // the runtime type of subword integral basic types is integer
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2478 DEFINE_CALLSTATICMETHODA(jboolean, Boolean, T_BOOLEAN
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2479 , HOTSPOT_JNI_CALLSTATICBOOLEANMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2480 HOTSPOT_JNI_CALLSTATICBOOLEANMETHODA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2481 DEFINE_CALLSTATICMETHODA(jbyte, Byte, T_BYTE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2482 , HOTSPOT_JNI_CALLSTATICBYTEMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2483 HOTSPOT_JNI_CALLSTATICBYTEMETHODA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2484 DEFINE_CALLSTATICMETHODA(jchar, Char, T_CHAR
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2485 , HOTSPOT_JNI_CALLSTATICCHARMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2486 HOTSPOT_JNI_CALLSTATICCHARMETHODA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2487 DEFINE_CALLSTATICMETHODA(jshort, Short, T_SHORT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2488 , HOTSPOT_JNI_CALLSTATICSHORTMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2489 HOTSPOT_JNI_CALLSTATICSHORTMETHODA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2490
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2491 DEFINE_CALLSTATICMETHODA(jobject, Object, T_OBJECT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2492 , HOTSPOT_JNI_CALLSTATICOBJECTMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2493 HOTSPOT_JNI_CALLSTATICOBJECTMETHODA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2494 DEFINE_CALLSTATICMETHODA(jint, Int, T_INT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2495 , HOTSPOT_JNI_CALLSTATICINTMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2496 HOTSPOT_JNI_CALLSTATICINTMETHODA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2497 DEFINE_CALLSTATICMETHODA(jlong, Long, T_LONG
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2498 , HOTSPOT_JNI_CALLSTATICLONGMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2499 HOTSPOT_JNI_CALLSTATICLONGMETHODA_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2500 // 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
2501 DEFINE_CALLSTATICMETHODA(jfloat, Float, T_FLOAT
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2502 , HOTSPOT_JNI_CALLSTATICFLOATMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2503 HOTSPOT_JNI_CALLSTATICFLOATMETHODA_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2504 DEFINE_CALLSTATICMETHODA(jdouble, Double, T_DOUBLE
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2505 , HOTSPOT_JNI_CALLSTATICDOUBLEMETHODA_ENTRY(env, cls, (uintptr_t)methodID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2506 HOTSPOT_JNI_CALLSTATICDOUBLEMETHODA_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2507
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2508 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethod
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2509 , HOTSPOT_JNI_CALLSTATICVOIDMETHOD_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2510 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodV
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2511 , HOTSPOT_JNI_CALLSTATICVOIDMETHODV_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2512 DT_VOID_RETURN_MARK_DECL(CallStaticVoidMethodA
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2513 , HOTSPOT_JNI_CALLSTATICVOIDMETHODA_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2514 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2515
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2516 JNI_ENTRY(void, jni_CallStaticVoidMethod(JNIEnv *env, jclass cls, jmethodID methodID, ...))
a61af66fc99e Initial load
duke
parents:
diff changeset
2517 JNIWrapper("CallStaticVoidMethod");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2518 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2519 DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethod__entry, env, cls, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2520 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2521 HOTSPOT_JNI_CALLSTATICVOIDMETHOD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2522 env, cls, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2523 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2524 DT_VOID_RETURN_MARK(CallStaticVoidMethod);
a61af66fc99e Initial load
duke
parents:
diff changeset
2525
a61af66fc99e Initial load
duke
parents:
diff changeset
2526 va_list args;
a61af66fc99e Initial load
duke
parents:
diff changeset
2527 va_start(args, methodID);
a61af66fc99e Initial load
duke
parents:
diff changeset
2528 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2529 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2530 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
2531 va_end(args);
a61af66fc99e Initial load
duke
parents:
diff changeset
2532 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2533
a61af66fc99e Initial load
duke
parents:
diff changeset
2534
a61af66fc99e Initial load
duke
parents:
diff changeset
2535 JNI_ENTRY(void, jni_CallStaticVoidMethodV(JNIEnv *env, jclass cls, jmethodID methodID, va_list args))
a61af66fc99e Initial load
duke
parents:
diff changeset
2536 JNIWrapper("CallStaticVoidMethodV");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2537 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2538 DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethodV__entry, env, cls, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2539 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2540 HOTSPOT_JNI_CALLSTATICVOIDMETHODV_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2541 env, cls, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2542 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2543 DT_VOID_RETURN_MARK(CallStaticVoidMethodV);
a61af66fc99e Initial load
duke
parents:
diff changeset
2544
a61af66fc99e Initial load
duke
parents:
diff changeset
2545 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2546 JNI_ArgumentPusherVaArg ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2547 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
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(void, jni_CallStaticVoidMethodA(JNIEnv *env, jclass cls, jmethodID methodID, const jvalue *args))
a61af66fc99e Initial load
duke
parents:
diff changeset
2552 JNIWrapper("CallStaticVoidMethodA");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2553 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2554 DTRACE_PROBE3(hotspot_jni, CallStaticVoidMethodA__entry, env, cls, methodID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2555 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2556 HOTSPOT_JNI_CALLSTATICVOIDMETHODA_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2557 env, cls, (uintptr_t) methodID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2558 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2559 DT_VOID_RETURN_MARK(CallStaticVoidMethodA);
a61af66fc99e Initial load
duke
parents:
diff changeset
2560
a61af66fc99e Initial load
duke
parents:
diff changeset
2561 JavaValue jvalue(T_VOID);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2562 JNI_ArgumentPusherArray ap(methodID, args);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2563 jni_invoke_static(env, &jvalue, NULL, JNI_STATIC, methodID, &ap, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
2564 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2565
a61af66fc99e Initial load
duke
parents:
diff changeset
2566
a61af66fc99e Initial load
duke
parents:
diff changeset
2567 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2568 // Accessing Fields
a61af66fc99e Initial load
duke
parents:
diff changeset
2569 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2570
a61af66fc99e Initial load
duke
parents:
diff changeset
2571
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2572 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2573 DT_RETURN_MARK_DECL(GetFieldID, jfieldID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2574 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2575 DT_RETURN_MARK_DECL(GetFieldID, jfieldID
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2576 , HOTSPOT_JNI_GETFIELDID_RETURN((uintptr_t)_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2577 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2578
a61af66fc99e Initial load
duke
parents:
diff changeset
2579 JNI_ENTRY(jfieldID, jni_GetFieldID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
2580 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
2581 JNIWrapper("GetFieldID");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2582 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2583 DTRACE_PROBE4(hotspot_jni, GetFieldID__entry, env, clazz, name, sig);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2584 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2585 HOTSPOT_JNI_GETFIELDID_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2586 env, clazz, (char *) name, (char *) sig);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2587 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2588 jfieldID ret = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
2589 DT_RETURN_MARK(GetFieldID, jfieldID, (const jfieldID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2590
a61af66fc99e Initial load
duke
parents:
diff changeset
2591 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
2592 // passed in) so the field and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
2593 // 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
2594 TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2595 TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2596 if (fieldname == NULL || signame == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2597 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2599 KlassHandle k(THREAD,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2600 java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2601 // Make sure class is initialized before handing id's out to fields
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
2602 k()->initialize(CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2603
a61af66fc99e Initial load
duke
parents:
diff changeset
2604 fieldDescriptor fd;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
2605 if (!k()->oop_is_instance() ||
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2606 !InstanceKlass::cast(k())->find_field(fieldname, signame, false, &fd)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2607 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2608 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2609
a61af66fc99e Initial load
duke
parents:
diff changeset
2610 // A jfieldID for a non-static field is simply the offset of the field within the instanceOop
a61af66fc99e Initial load
duke
parents:
diff changeset
2611 // It may also have hash bits for k, if VerifyJNIFields is turned on.
a61af66fc99e Initial load
duke
parents:
diff changeset
2612 ret = jfieldIDWorkaround::to_instance_jfieldID(k(), fd.offset());
a61af66fc99e Initial load
duke
parents:
diff changeset
2613 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2614 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2615
a61af66fc99e Initial load
duke
parents:
diff changeset
2616
a61af66fc99e Initial load
duke
parents:
diff changeset
2617 JNI_ENTRY(jobject, jni_GetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID))
a61af66fc99e Initial load
duke
parents:
diff changeset
2618 JNIWrapper("GetObjectField");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2619 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2620 DTRACE_PROBE3(hotspot_jni, GetObjectField__entry, env, obj, fieldID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2621 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2622 HOTSPOT_JNI_GETOBJECTFIELD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2623 env, obj, (uintptr_t) fieldID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2624 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2625 oop o = JNIHandles::resolve_non_null(obj);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2626 Klass* k = o->klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2627 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
2628 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
2629 // jni_GetField_probe() assumes that is okay to create handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
2630 if (JvmtiExport::should_post_field_access()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2631 o = JvmtiExport::jni_GetField_probe(thread, obj, o, k, fieldID, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2632 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2633 jobject ret = JNIHandles::make_local(env, o->obj_field(offset));
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7182
diff changeset
2634 #if INCLUDE_ALL_GCS
3249
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2635 // 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
2636 // 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
2637 // referent with the SATB barrier.
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2638 if (UseG1GC) {
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2639 bool needs_barrier = false;
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2640
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2641 if (ret != NULL &&
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2642 offset == java_lang_ref_Reference::referent_offset &&
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2643 InstanceKlass::cast(k)->reference_type() != REF_NONE) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2644 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
2645 needs_barrier = true;
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2646 }
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2647
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2648 if (needs_barrier) {
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2649 oop referent = JNIHandles::resolve(ret);
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2650 G1SATBCardTableModRefBS::enqueue(referent);
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2651 }
e1162778c1c8 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 2376
diff changeset
2652 }
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7182
diff changeset
2653 #endif // INCLUDE_ALL_GCS
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2654 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2655 DTRACE_PROBE1(hotspot_jni, GetObjectField__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2656 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2657 HOTSPOT_JNI_GETOBJECTFIELD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2658 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2659 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2660 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2661 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2662
a61af66fc99e Initial load
duke
parents:
diff changeset
2663
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2664 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2665 #define DEFINE_GETFIELD(Return,Fieldname,Result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2666 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2667 DT_RETURN_MARK_DECL_FOR(Result, Get##Result##Field, Return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2668 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2669 JNI_QUICK_ENTRY(Return, jni_Get##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2670 JNIWrapper("Get" XSTR(Result) "Field"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2671 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2672 DTRACE_PROBE3(hotspot_jni, Get##Result##Field__entry, env, obj, fieldID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2673 Return ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
2674 DT_RETURN_MARK_FOR(Result, Get##Result##Field, Return, (const Return&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2675 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2676 oop o = JNIHandles::resolve_non_null(obj); \
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2677 Klass* k = o->klass(); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2678 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2679 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2680 /* jni_GetField_probe_nh() assumes that is not okay to create handles */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2681 /* and creates a ResetNoHandleMark. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2682 if (JvmtiExport::should_post_field_access()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2683 o = JvmtiExport::jni_GetField_probe_nh(thread, obj, o, k, fieldID, false); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2684 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2685 ret = o->Fieldname##_field(offset); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2686 return ret; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2687 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2688
a61af66fc99e Initial load
duke
parents:
diff changeset
2689 DEFINE_GETFIELD(jboolean, bool, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
2690 DEFINE_GETFIELD(jbyte, byte, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
2691 DEFINE_GETFIELD(jchar, char, Char)
a61af66fc99e Initial load
duke
parents:
diff changeset
2692 DEFINE_GETFIELD(jshort, short, Short)
a61af66fc99e Initial load
duke
parents:
diff changeset
2693 DEFINE_GETFIELD(jint, int, Int)
a61af66fc99e Initial load
duke
parents:
diff changeset
2694 DEFINE_GETFIELD(jlong, long, Long)
a61af66fc99e Initial load
duke
parents:
diff changeset
2695 DEFINE_GETFIELD(jfloat, float, Float)
a61af66fc99e Initial load
duke
parents:
diff changeset
2696 DEFINE_GETFIELD(jdouble, double, Double)
a61af66fc99e Initial load
duke
parents:
diff changeset
2697
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2698 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2699
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2700 #define DEFINE_GETFIELD(Return,Fieldname,Result \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2701 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2702 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2703 DT_RETURN_MARK_DECL_FOR(Result, Get##Result##Field, Return \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2704 , ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2705 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2706 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
2707 JNIWrapper("Get" XSTR(Result) "Field"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2708 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2709 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2710 Return ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2711 DT_RETURN_MARK_FOR(Result, Get##Result##Field, Return, (const Return&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2712 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2713 oop o = JNIHandles::resolve_non_null(obj); \
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2714 Klass* k = o->klass(); \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2715 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2716 /* Keep JVMTI addition small and only check enabled flag here. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2717 /* jni_GetField_probe_nh() assumes that is not okay to create handles */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2718 /* and creates a ResetNoHandleMark. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2719 if (JvmtiExport::should_post_field_access()) { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2720 o = JvmtiExport::jni_GetField_probe_nh(thread, obj, o, k, fieldID, false); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2721 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2722 ret = o->Fieldname##_field(offset); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2723 return ret; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2724 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2725
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2726 DEFINE_GETFIELD(jboolean, bool, Boolean
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2727 , HOTSPOT_JNI_GETBOOLEANFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2728 HOTSPOT_JNI_GETBOOLEANFIELD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2729 DEFINE_GETFIELD(jbyte, byte, Byte
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2730 , HOTSPOT_JNI_GETBYTEFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2731 HOTSPOT_JNI_GETBYTEFIELD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2732 DEFINE_GETFIELD(jchar, char, Char
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2733 , HOTSPOT_JNI_GETCHARFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2734 HOTSPOT_JNI_GETCHARFIELD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2735 DEFINE_GETFIELD(jshort, short, Short
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2736 , HOTSPOT_JNI_GETSHORTFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2737 HOTSPOT_JNI_GETSHORTFIELD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2738 DEFINE_GETFIELD(jint, int, Int
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2739 , HOTSPOT_JNI_GETINTFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2740 HOTSPOT_JNI_GETINTFIELD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2741 DEFINE_GETFIELD(jlong, long, Long
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2742 , HOTSPOT_JNI_GETLONGFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2743 HOTSPOT_JNI_GETLONGFIELD_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2744 // 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
2745 DEFINE_GETFIELD(jfloat, float, Float
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2746 , HOTSPOT_JNI_GETFLOATFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2747 HOTSPOT_JNI_GETFLOATFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2748 DEFINE_GETFIELD(jdouble, double, Double
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2749 , HOTSPOT_JNI_GETDOUBLEFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2750 HOTSPOT_JNI_GETDOUBLEFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2751 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2752
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2753 address jni_GetBooleanField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2754 return (address)jni_GetBooleanField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2755 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2756 address jni_GetByteField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2757 return (address)jni_GetByteField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2758 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2759 address jni_GetCharField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2760 return (address)jni_GetCharField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2761 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2762 address jni_GetShortField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2763 return (address)jni_GetShortField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2764 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2765 address jni_GetIntField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2766 return (address)jni_GetIntField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2767 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2768 address jni_GetLongField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2769 return (address)jni_GetLongField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2770 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2771 address jni_GetFloatField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2772 return (address)jni_GetFloatField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2773 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2774 address jni_GetDoubleField_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2775 return (address)jni_GetDoubleField;
a61af66fc99e Initial load
duke
parents:
diff changeset
2776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2777
a61af66fc99e Initial load
duke
parents:
diff changeset
2778 JNI_QUICK_ENTRY(void, jni_SetObjectField(JNIEnv *env, jobject obj, jfieldID fieldID, jobject value))
a61af66fc99e Initial load
duke
parents:
diff changeset
2779 JNIWrapper("SetObjectField");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2780 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2781 DTRACE_PROBE4(hotspot_jni, SetObjectField__entry, env, obj, fieldID, value);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2782 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2783 HOTSPOT_JNI_SETOBJECTFIELD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2784 env, obj, (uintptr_t) fieldID, value);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2785 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2786 oop o = JNIHandles::resolve_non_null(obj);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2787 Klass* k = o->klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2788 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
2789 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
2790 // jni_SetField_probe_nh() assumes that is not okay to create handles
a61af66fc99e Initial load
duke
parents:
diff changeset
2791 // and creates a ResetNoHandleMark.
a61af66fc99e Initial load
duke
parents:
diff changeset
2792 if (JvmtiExport::should_post_field_modification()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2793 jvalue field_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
2794 field_value.l = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
2795 o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, 'L', (jvalue *)&field_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
2796 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2797 o->obj_field_put(offset, JNIHandles::resolve(value));
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2798 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2799 DTRACE_PROBE(hotspot_jni, SetObjectField__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2800 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2801 HOTSPOT_JNI_SETOBJECTFIELD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2802 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2803 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2804 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2805
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2806 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2807 #define DEFINE_SETFIELD(Argument,Fieldname,Result,SigType,unionType) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2808 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2809 JNI_QUICK_ENTRY(void, jni_Set##Result##Field(JNIEnv *env, jobject obj, jfieldID fieldID, Argument value)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
2810 JNIWrapper("Set" XSTR(Result) "Field"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2811 \
6837
75982791ddb6 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 6831
diff changeset
2812 FP_SELECT_##Result( \
75982791ddb6 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 6831
diff changeset
2813 DTRACE_PROBE4(hotspot_jni, Set##Result##Field__entry, env, obj, fieldID, value), \
75982791ddb6 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 6831
diff changeset
2814 DTRACE_PROBE3(hotspot_jni, Set##Result##Field__entry, env, obj, fieldID)); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2815 \
a61af66fc99e Initial load
duke
parents:
diff changeset
2816 oop o = JNIHandles::resolve_non_null(obj); \
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2817 Klass* k = o->klass(); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2818 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2819 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2820 /* jni_SetField_probe_nh() assumes that is not okay to create handles */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2821 /* and creates a ResetNoHandleMark. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
2822 if (JvmtiExport::should_post_field_modification()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
2823 jvalue field_value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2824 field_value.unionType = value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
2825 o = JvmtiExport::jni_SetField_probe_nh(thread, obj, o, k, fieldID, false, SigType, (jvalue *)&field_value); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2826 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
2827 o->Fieldname##_field_put(offset, value); \
a61af66fc99e Initial load
duke
parents:
diff changeset
2828 DTRACE_PROBE(hotspot_jni, Set##Result##Field__return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
2829 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2830
a61af66fc99e Initial load
duke
parents:
diff changeset
2831 DEFINE_SETFIELD(jboolean, bool, Boolean, 'Z', z)
a61af66fc99e Initial load
duke
parents:
diff changeset
2832 DEFINE_SETFIELD(jbyte, byte, Byte, 'B', b)
a61af66fc99e Initial load
duke
parents:
diff changeset
2833 DEFINE_SETFIELD(jchar, char, Char, 'C', c)
a61af66fc99e Initial load
duke
parents:
diff changeset
2834 DEFINE_SETFIELD(jshort, short, Short, 'S', s)
a61af66fc99e Initial load
duke
parents:
diff changeset
2835 DEFINE_SETFIELD(jint, int, Int, 'I', i)
a61af66fc99e Initial load
duke
parents:
diff changeset
2836 DEFINE_SETFIELD(jlong, long, Long, 'J', j)
a61af66fc99e Initial load
duke
parents:
diff changeset
2837 DEFINE_SETFIELD(jfloat, float, Float, 'F', f)
a61af66fc99e Initial load
duke
parents:
diff changeset
2838 DEFINE_SETFIELD(jdouble, double, Double, 'D', d)
a61af66fc99e Initial load
duke
parents:
diff changeset
2839
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2840 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2841
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2842 #define DEFINE_SETFIELD(Argument,Fieldname,Result,SigType,unionType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2843 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2844 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2845 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
2846 JNIWrapper("Set" XSTR(Result) "Field"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2847 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2848 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2849 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2850 oop o = JNIHandles::resolve_non_null(obj); \
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2851 Klass* k = o->klass(); \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2852 int offset = jfieldIDWorkaround::from_instance_jfieldID(k, fieldID); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2853 /* Keep JVMTI addition small and only check enabled flag here. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2854 /* jni_SetField_probe_nh() assumes that is not okay to create handles */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2855 /* and creates a ResetNoHandleMark. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2856 if (JvmtiExport::should_post_field_modification()) { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2857 jvalue field_value; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2858 field_value.unionType = value; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2859 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
2860 } \
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 23062
diff changeset
2861 if (SigType == 'Z') { value = ((jboolean)value) & 1; } \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2862 o->Fieldname##_field_put(offset, value); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2863 ReturnProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2864 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2865
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2866 DEFINE_SETFIELD(jboolean, bool, Boolean, 'Z', z
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2867 , HOTSPOT_JNI_SETBOOLEANFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2868 HOTSPOT_JNI_SETBOOLEANFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2869 DEFINE_SETFIELD(jbyte, byte, Byte, 'B', b
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2870 , HOTSPOT_JNI_SETBYTEFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2871 HOTSPOT_JNI_SETBYTEFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2872 DEFINE_SETFIELD(jchar, char, Char, 'C', c
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2873 , HOTSPOT_JNI_SETCHARFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2874 HOTSPOT_JNI_SETCHARFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2875 DEFINE_SETFIELD(jshort, short, Short, 'S', s
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2876 , HOTSPOT_JNI_SETSHORTFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2877 HOTSPOT_JNI_SETSHORTFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2878 DEFINE_SETFIELD(jint, int, Int, 'I', i
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2879 , HOTSPOT_JNI_SETINTFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2880 HOTSPOT_JNI_SETINTFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2881 DEFINE_SETFIELD(jlong, long, Long, 'J', j
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2882 , HOTSPOT_JNI_SETLONGFIELD_ENTRY(env, obj, (uintptr_t)fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2883 HOTSPOT_JNI_SETLONGFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2884 // 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
2885 DEFINE_SETFIELD(jfloat, float, Float, 'F', f
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2886 , HOTSPOT_JNI_SETFLOATFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2887 HOTSPOT_JNI_SETFLOATFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2888 DEFINE_SETFIELD(jdouble, double, Double, 'D', d
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2889 , HOTSPOT_JNI_SETDOUBLEFIELD_ENTRY(env, obj, (uintptr_t)fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2890 HOTSPOT_JNI_SETDOUBLEFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2891 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2892
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2893 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2894 DT_RETURN_MARK_DECL(ToReflectedField, jobject);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2895 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2896 DT_RETURN_MARK_DECL(ToReflectedField, jobject
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2897 , HOTSPOT_JNI_TOREFLECTEDFIELD_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2898 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2899
a61af66fc99e Initial load
duke
parents:
diff changeset
2900 JNI_ENTRY(jobject, jni_ToReflectedField(JNIEnv *env, jclass cls, jfieldID fieldID, jboolean isStatic))
a61af66fc99e Initial load
duke
parents:
diff changeset
2901 JNIWrapper("ToReflectedField");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2902 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2903 DTRACE_PROBE4(hotspot_jni, ToReflectedField__entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
2904 env, cls, fieldID, isStatic);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2905 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2906 HOTSPOT_JNI_TOREFLECTEDFIELD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2907 env, cls, (uintptr_t) fieldID, isStatic);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2908 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2909 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2910 DT_RETURN_MARK(ToReflectedField, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2911
a61af66fc99e Initial load
duke
parents:
diff changeset
2912 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
2913 bool found = false;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2914 Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(cls));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2915
a61af66fc99e Initial load
duke
parents:
diff changeset
2916 assert(jfieldIDWorkaround::is_static_jfieldID(fieldID) == (isStatic != 0), "invalid fieldID");
a61af66fc99e Initial load
duke
parents:
diff changeset
2917
a61af66fc99e Initial load
duke
parents:
diff changeset
2918 if (isStatic) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2919 // Static field. The fieldID a JNIid specifying the field holder and the offset within the Klass*.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2920 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
2921 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
2922 found = id->find_local_field(&fd);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2923 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2924 // Non-static field. The fieldID is really the offset of the field within the instanceOop.
a61af66fc99e Initial load
duke
parents:
diff changeset
2925 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
2926 found = InstanceKlass::cast(k)->find_field_from_offset(offset, false, &fd);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2928 assert(found, "bad fieldID passed into jni_ToReflectedField");
a61af66fc99e Initial load
duke
parents:
diff changeset
2929 oop reflected = Reflection::new_field(&fd, UseNewReflection, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2930 ret = JNIHandles::make_local(env, reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
2931 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2932 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2933
a61af66fc99e Initial load
duke
parents:
diff changeset
2934
a61af66fc99e Initial load
duke
parents:
diff changeset
2935 //
a61af66fc99e Initial load
duke
parents:
diff changeset
2936 // Accessing Static Fields
a61af66fc99e Initial load
duke
parents:
diff changeset
2937 //
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2938 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2939 DT_RETURN_MARK_DECL(GetStaticFieldID, jfieldID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2940 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2941 DT_RETURN_MARK_DECL(GetStaticFieldID, jfieldID
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2942 , HOTSPOT_JNI_GETSTATICFIELDID_RETURN((uintptr_t)_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2943 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2944
a61af66fc99e Initial load
duke
parents:
diff changeset
2945 JNI_ENTRY(jfieldID, jni_GetStaticFieldID(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
2946 const char *name, const char *sig))
a61af66fc99e Initial load
duke
parents:
diff changeset
2947 JNIWrapper("GetStaticFieldID");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2948 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2949 DTRACE_PROBE4(hotspot_jni, GetStaticFieldID__entry, env, clazz, name, sig);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2950 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2951 HOTSPOT_JNI_GETSTATICFIELDID_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2952 env, clazz, (char *) name, (char *) sig);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2953 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2954 jfieldID ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2955 DT_RETURN_MARK(GetStaticFieldID, jfieldID, (const jfieldID&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
2956
a61af66fc99e Initial load
duke
parents:
diff changeset
2957 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
2958 // passed in) so the field and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
2959 // 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
2960 TempNewSymbol fieldname = SymbolTable::probe(name, (int)strlen(name));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2961 TempNewSymbol signame = SymbolTable::probe(sig, (int)strlen(sig));
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
2962 if (fieldname == NULL || signame == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2963 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2964 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2965 KlassHandle k(THREAD,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2966 java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2967 // 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
2968 k()->initialize(CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2969
a61af66fc99e Initial load
duke
parents:
diff changeset
2970 fieldDescriptor fd;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
2971 if (!k()->oop_is_instance() ||
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2972 !InstanceKlass::cast(k())->find_field(fieldname, signame, true, &fd)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2973 THROW_MSG_0(vmSymbols::java_lang_NoSuchFieldError(), (char*) name);
a61af66fc99e Initial load
duke
parents:
diff changeset
2974 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2975
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2976 // 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
2977 JNIid* id = fd.field_holder()->jni_id_for(fd.offset());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2978 debug_only(id->set_is_static_field_id();)
a61af66fc99e Initial load
duke
parents:
diff changeset
2979
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
2980 debug_only(id->verify(fd.field_holder()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2981
a61af66fc99e Initial load
duke
parents:
diff changeset
2982 ret = jfieldIDWorkaround::to_static_jfieldID(id);
a61af66fc99e Initial load
duke
parents:
diff changeset
2983 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
2984 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
2985
a61af66fc99e Initial load
duke
parents:
diff changeset
2986
a61af66fc99e Initial load
duke
parents:
diff changeset
2987 JNI_ENTRY(jobject, jni_GetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID))
a61af66fc99e Initial load
duke
parents:
diff changeset
2988 JNIWrapper("GetStaticObjectField");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2989 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2990 DTRACE_PROBE3(hotspot_jni, GetStaticObjectField__entry, env, clazz, fieldID);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2991 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2992 HOTSPOT_JNI_GETSTATICOBJECTFIELD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2993 env, clazz, (uintptr_t) fieldID);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
2994 #endif /* USDT2 */
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
2995 #if INCLUDE_JNI_CHECK
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
2996 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
2997 #endif // INCLUDE_JNI_CHECK
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2998 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
2999 assert(id->is_static_field_id(), "invalid static field id");
a61af66fc99e Initial load
duke
parents:
diff changeset
3000 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
3001 // jni_GetField_probe() assumes that is okay to create handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
3002 if (JvmtiExport::should_post_field_access()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3003 JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
3004 }
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
3005 jobject ret = JNIHandles::make_local(id->holder()->java_mirror()->obj_field(id->offset()));
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3006 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3007 DTRACE_PROBE1(hotspot_jni, GetStaticObjectField__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3008 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3009 HOTSPOT_JNI_GETSTATICOBJECTFIELD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3010 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3011 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3012 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3013 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3014
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3015 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3016 #define DEFINE_GETSTATICFIELD(Return,Fieldname,Result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3017 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3018 DT_RETURN_MARK_DECL_FOR(Result, GetStatic##Result##Field, Return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3019 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3020 JNI_ENTRY(Return, jni_GetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3021 JNIWrapper("GetStatic" XSTR(Result) "Field"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3022 DTRACE_PROBE3(hotspot_jni, GetStatic##Result##Field__entry, env, clazz, fieldID);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3023 Return ret = 0;\
a61af66fc99e Initial load
duke
parents:
diff changeset
3024 DT_RETURN_MARK_FOR(Result, GetStatic##Result##Field, Return, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3025 (const Return&)ret);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3026 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3027 assert(id->is_static_field_id(), "invalid static field id"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3028 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
3029 /* jni_GetField_probe() assumes that is okay to create handles. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
3030 if (JvmtiExport::should_post_field_access()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3031 JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3032 } \
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
3033 ret = id->holder()->java_mirror()-> Fieldname##_field (id->offset()); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3034 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
3035 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3036
a61af66fc99e Initial load
duke
parents:
diff changeset
3037 DEFINE_GETSTATICFIELD(jboolean, bool, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
3038 DEFINE_GETSTATICFIELD(jbyte, byte, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
3039 DEFINE_GETSTATICFIELD(jchar, char, Char)
a61af66fc99e Initial load
duke
parents:
diff changeset
3040 DEFINE_GETSTATICFIELD(jshort, short, Short)
a61af66fc99e Initial load
duke
parents:
diff changeset
3041 DEFINE_GETSTATICFIELD(jint, int, Int)
a61af66fc99e Initial load
duke
parents:
diff changeset
3042 DEFINE_GETSTATICFIELD(jlong, long, Long)
a61af66fc99e Initial load
duke
parents:
diff changeset
3043 DEFINE_GETSTATICFIELD(jfloat, float, Float)
a61af66fc99e Initial load
duke
parents:
diff changeset
3044 DEFINE_GETSTATICFIELD(jdouble, double, Double)
a61af66fc99e Initial load
duke
parents:
diff changeset
3045
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3046 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3047
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3048 #define DEFINE_GETSTATICFIELD(Return,Fieldname,Result \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3049 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3050 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3051 DT_RETURN_MARK_DECL_FOR(Result, GetStatic##Result##Field, Return \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3052 , ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3053 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3054 JNI_ENTRY(Return, jni_GetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3055 JNIWrapper("GetStatic" XSTR(Result) "Field"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3056 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3057 Return ret = 0;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3058 DT_RETURN_MARK_FOR(Result, GetStatic##Result##Field, Return, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3059 (const Return&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3060 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3061 assert(id->is_static_field_id(), "invalid static field id"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3062 /* Keep JVMTI addition small and only check enabled flag here. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3063 /* jni_GetField_probe() assumes that is okay to create handles. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3064 if (JvmtiExport::should_post_field_access()) { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3065 JvmtiExport::jni_GetField_probe(thread, NULL, NULL, id->holder(), fieldID, true); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3066 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3067 ret = id->holder()->java_mirror()-> Fieldname##_field (id->offset()); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3068 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3069 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3070
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3071 DEFINE_GETSTATICFIELD(jboolean, bool, Boolean
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3072 , 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
3073 DEFINE_GETSTATICFIELD(jbyte, byte, Byte
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3074 , 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
3075 DEFINE_GETSTATICFIELD(jchar, char, Char
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3076 , 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
3077 DEFINE_GETSTATICFIELD(jshort, short, Short
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3078 , 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
3079 DEFINE_GETSTATICFIELD(jint, int, Int
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3080 , 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
3081 DEFINE_GETSTATICFIELD(jlong, long, Long
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3082 , 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
3083 // 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
3084 DEFINE_GETSTATICFIELD(jfloat, float, Float
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3085 , HOTSPOT_JNI_GETSTATICFLOATFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICFLOATFIELD_RETURN() )
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3086 DEFINE_GETSTATICFIELD(jdouble, double, Double
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3087 , HOTSPOT_JNI_GETSTATICDOUBLEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID), HOTSPOT_JNI_GETSTATICDOUBLEFIELD_RETURN() )
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3088 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3089
a61af66fc99e Initial load
duke
parents:
diff changeset
3090 JNI_ENTRY(void, jni_SetStaticObjectField(JNIEnv *env, jclass clazz, jfieldID fieldID, jobject value))
a61af66fc99e Initial load
duke
parents:
diff changeset
3091 JNIWrapper("SetStaticObjectField");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3092 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3093 DTRACE_PROBE4(hotspot_jni, SetStaticObjectField__entry, env, clazz, fieldID, value);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3094 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3095 HOTSPOT_JNI_SETSTATICOBJECTFIELD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3096 env, clazz, (uintptr_t) fieldID, value);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3097 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3098 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
3099 assert(id->is_static_field_id(), "invalid static field id");
a61af66fc99e Initial load
duke
parents:
diff changeset
3100 // Keep JVMTI addition small and only check enabled flag here.
a61af66fc99e Initial load
duke
parents:
diff changeset
3101 // jni_SetField_probe() assumes that is okay to create handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
3102 if (JvmtiExport::should_post_field_modification()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3103 jvalue field_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
3104 field_value.l = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
3105 JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, 'L', (jvalue *)&field_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
3106 }
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
3107 id->holder()->java_mirror()->obj_field_put(id->offset(), JNIHandles::resolve(value));
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3108 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3109 DTRACE_PROBE(hotspot_jni, SetStaticObjectField__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3110 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3111 HOTSPOT_JNI_SETSTATICOBJECTFIELD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3112 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3113 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3114 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3115
a61af66fc99e Initial load
duke
parents:
diff changeset
3116
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3117 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3118 #define DEFINE_SETSTATICFIELD(Argument,Fieldname,Result,SigType,unionType) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3119 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3120 JNI_ENTRY(void, jni_SetStatic##Result##Field(JNIEnv *env, jclass clazz, jfieldID fieldID, Argument value)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3121 JNIWrapper("SetStatic" XSTR(Result) "Field"); \
6837
75982791ddb6 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 6831
diff changeset
3122 FP_SELECT_##Result( \
75982791ddb6 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 6831
diff changeset
3123 DTRACE_PROBE4(hotspot_jni, SetStatic##Result##Field__entry, env, clazz, fieldID, value), \
75982791ddb6 7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents: 6831
diff changeset
3124 DTRACE_PROBE3(hotspot_jni, SetStatic##Result##Field__entry, env, clazz, fieldID)); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3125 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3126 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3127 assert(id->is_static_field_id(), "invalid static field id"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3128 /* Keep JVMTI addition small and only check enabled flag here. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
3129 /* jni_SetField_probe() assumes that is okay to create handles. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
3130 if (JvmtiExport::should_post_field_modification()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3131 jvalue field_value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
3132 field_value.unionType = value; \
a61af66fc99e Initial load
duke
parents:
diff changeset
3133 JvmtiExport::jni_SetField_probe(thread, NULL, NULL, id->holder(), fieldID, true, SigType, (jvalue *)&field_value); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3134 } \
2376
c7f3d0b4570f 7017732: move static fields into Class to prepare for perm gen removal
never
parents: 2177
diff changeset
3135 id->holder()->java_mirror()-> Fieldname##_field_put (id->offset(), value); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3136 DTRACE_PROBE(hotspot_jni, SetStatic##Result##Field__return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3137 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3138
a61af66fc99e Initial load
duke
parents:
diff changeset
3139 DEFINE_SETSTATICFIELD(jboolean, bool, Boolean, 'Z', z)
a61af66fc99e Initial load
duke
parents:
diff changeset
3140 DEFINE_SETSTATICFIELD(jbyte, byte, Byte, 'B', b)
a61af66fc99e Initial load
duke
parents:
diff changeset
3141 DEFINE_SETSTATICFIELD(jchar, char, Char, 'C', c)
a61af66fc99e Initial load
duke
parents:
diff changeset
3142 DEFINE_SETSTATICFIELD(jshort, short, Short, 'S', s)
a61af66fc99e Initial load
duke
parents:
diff changeset
3143 DEFINE_SETSTATICFIELD(jint, int, Int, 'I', i)
a61af66fc99e Initial load
duke
parents:
diff changeset
3144 DEFINE_SETSTATICFIELD(jlong, long, Long, 'J', j)
a61af66fc99e Initial load
duke
parents:
diff changeset
3145 DEFINE_SETSTATICFIELD(jfloat, float, Float, 'F', f)
a61af66fc99e Initial load
duke
parents:
diff changeset
3146 DEFINE_SETSTATICFIELD(jdouble, double, Double, 'D', d)
a61af66fc99e Initial load
duke
parents:
diff changeset
3147
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3148 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3149
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3150 #define DEFINE_SETSTATICFIELD(Argument,Fieldname,Result,SigType,unionType \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3151 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3152 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3153 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
3154 JNIWrapper("SetStatic" XSTR(Result) "Field"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3155 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3156 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3157 JNIid* id = jfieldIDWorkaround::from_static_jfieldID(fieldID); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3158 assert(id->is_static_field_id(), "invalid static field id"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3159 /* Keep JVMTI addition small and only check enabled flag here. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3160 /* jni_SetField_probe() assumes that is okay to create handles. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3161 if (JvmtiExport::should_post_field_modification()) { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3162 jvalue field_value; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3163 field_value.unionType = value; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3164 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
3165 } \
23614
32b682649973 8132051: Better byte behavior
kevinw
parents: 23062
diff changeset
3166 if (SigType == 'Z') { value = ((jboolean)value) & 1; } \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3167 id->holder()->java_mirror()-> Fieldname##_field_put (id->offset(), value); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3168 ReturnProbe;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3169 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3170
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3171 DEFINE_SETSTATICFIELD(jboolean, bool, Boolean, 'Z', z
23467
c60b9a314312 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 23062
diff changeset
3172 , HOTSPOT_JNI_SETSTATICBOOLEANFIELD_ENTRY(env, clazz, (uintptr_t)fieldID, value),
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3173 HOTSPOT_JNI_SETBOOLEANFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3174 DEFINE_SETSTATICFIELD(jbyte, byte, Byte, 'B', b
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3175 , HOTSPOT_JNI_SETSTATICBYTEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3176 HOTSPOT_JNI_SETSTATICBYTEFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3177 DEFINE_SETSTATICFIELD(jchar, char, Char, 'C', c
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3178 , HOTSPOT_JNI_SETSTATICCHARFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3179 HOTSPOT_JNI_SETSTATICCHARFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3180 DEFINE_SETSTATICFIELD(jshort, short, Short, 'S', s
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3181 , HOTSPOT_JNI_SETSTATICSHORTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3182 HOTSPOT_JNI_SETSTATICSHORTFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3183 DEFINE_SETSTATICFIELD(jint, int, Int, 'I', i
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3184 , HOTSPOT_JNI_SETSTATICINTFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3185 HOTSPOT_JNI_SETSTATICINTFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3186 DEFINE_SETSTATICFIELD(jlong, long, Long, 'J', j
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3187 , HOTSPOT_JNI_SETSTATICLONGFIELD_ENTRY(env, clazz, (uintptr_t) fieldID, value),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3188 HOTSPOT_JNI_SETSTATICLONGFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3189 // 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
3190 DEFINE_SETSTATICFIELD(jfloat, float, Float, 'F', f
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3191 , HOTSPOT_JNI_SETSTATICFLOATFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3192 HOTSPOT_JNI_SETSTATICFLOATFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3193 DEFINE_SETSTATICFIELD(jdouble, double, Double, 'D', d
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3194 , HOTSPOT_JNI_SETSTATICDOUBLEFIELD_ENTRY(env, clazz, (uintptr_t) fieldID),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3195 HOTSPOT_JNI_SETSTATICDOUBLEFIELD_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3196 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3197
a61af66fc99e Initial load
duke
parents:
diff changeset
3198 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3199 // String Operations
a61af66fc99e Initial load
duke
parents:
diff changeset
3200 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3201
a61af66fc99e Initial load
duke
parents:
diff changeset
3202 // Unicode Interface
a61af66fc99e Initial load
duke
parents:
diff changeset
3203
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3204 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3205 DT_RETURN_MARK_DECL(NewString, jstring);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3206 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3207 DT_RETURN_MARK_DECL(NewString, jstring
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3208 , HOTSPOT_JNI_NEWSTRING_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3209 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3210
a61af66fc99e Initial load
duke
parents:
diff changeset
3211 JNI_ENTRY(jstring, jni_NewString(JNIEnv *env, const jchar *unicodeChars, jsize len))
a61af66fc99e Initial load
duke
parents:
diff changeset
3212 JNIWrapper("NewString");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3213 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3214 DTRACE_PROBE3(hotspot_jni, NewString__entry, env, unicodeChars, len);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3215 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3216 HOTSPOT_JNI_NEWSTRING_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3217 env, (uint16_t *) unicodeChars, len);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3218 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3219 jstring ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3220 DT_RETURN_MARK(NewString, jstring, (const jstring&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
3221 oop string=java_lang_String::create_oop_from_unicode((jchar*) unicodeChars, len, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3222 ret = (jstring) JNIHandles::make_local(env, string);
a61af66fc99e Initial load
duke
parents:
diff changeset
3223 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3224 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3225
a61af66fc99e Initial load
duke
parents:
diff changeset
3226
a61af66fc99e Initial load
duke
parents:
diff changeset
3227 JNI_QUICK_ENTRY(jsize, jni_GetStringLength(JNIEnv *env, jstring string))
a61af66fc99e Initial load
duke
parents:
diff changeset
3228 JNIWrapper("GetStringLength");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3229 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3230 DTRACE_PROBE2(hotspot_jni, GetStringLength__entry, env, string);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3231 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3232 HOTSPOT_JNI_GETSTRINGLENGTH_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3233 env, string);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3234 #endif /* USDT2 */
12819
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3235 jsize ret = 0;
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3236 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
3237 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
3238 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
3239 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3240 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3241 DTRACE_PROBE1(hotspot_jni, GetStringLength__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3242 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3243 HOTSPOT_JNI_GETSTRINGLENGTH_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3244 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3245 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3246 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3247 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3248
a61af66fc99e Initial load
duke
parents:
diff changeset
3249
a61af66fc99e Initial load
duke
parents:
diff changeset
3250 JNI_QUICK_ENTRY(const jchar*, jni_GetStringChars(
a61af66fc99e Initial load
duke
parents:
diff changeset
3251 JNIEnv *env, jstring string, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
3252 JNIWrapper("GetStringChars");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3253 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3254 DTRACE_PROBE3(hotspot_jni, GetStringChars__entry, env, string, isCopy);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3255 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3256 HOTSPOT_JNI_GETSTRINGCHARS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3257 env, string, (uintptr_t *) isCopy);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3258 #endif /* USDT2 */
12819
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3259 jchar* buf = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3260 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
3261 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
3262 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
3263 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
3264 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
3265 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
3266 /* 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
3267 if (buf != NULL) {
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3268 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
3269 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
3270 }
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3271 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
3272 //%note jni_5
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3273 if (isCopy != NULL) {
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3274 *isCopy = JNI_TRUE;
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3275 }
12109
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3276 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3277 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3278 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3279 DTRACE_PROBE1(hotspot_jni, GetStringChars__return, buf);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3280 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3281 HOTSPOT_JNI_GETSTRINGCHARS_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3282 buf);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3283 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3284 return buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
3285 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3286
a61af66fc99e Initial load
duke
parents:
diff changeset
3287
a61af66fc99e Initial load
duke
parents:
diff changeset
3288 JNI_QUICK_ENTRY(void, jni_ReleaseStringChars(JNIEnv *env, jstring str, const jchar *chars))
a61af66fc99e Initial load
duke
parents:
diff changeset
3289 JNIWrapper("ReleaseStringChars");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3290 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3291 DTRACE_PROBE3(hotspot_jni, ReleaseStringChars__entry, env, str, chars);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3292 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3293 HOTSPOT_JNI_RELEASESTRINGCHARS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3294 env, str, (uint16_t *) chars);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3295 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3296 //%note jni_6
a61af66fc99e Initial load
duke
parents:
diff changeset
3297 if (chars != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3298 // Since String objects are supposed to be immutable, don't copy any
a61af66fc99e Initial load
duke
parents:
diff changeset
3299 // new data back. A bad user will have to go after the char array.
a61af66fc99e Initial load
duke
parents:
diff changeset
3300 FreeHeap((void*) chars);
a61af66fc99e Initial load
duke
parents:
diff changeset
3301 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3302 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3303 DTRACE_PROBE(hotspot_jni, ReleaseStringChars__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3304 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3305 HOTSPOT_JNI_RELEASESTRINGCHARS_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3306 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3307 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3308 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3309
a61af66fc99e Initial load
duke
parents:
diff changeset
3310
a61af66fc99e Initial load
duke
parents:
diff changeset
3311 // UTF Interface
a61af66fc99e Initial load
duke
parents:
diff changeset
3312
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3313 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3314 DT_RETURN_MARK_DECL(NewStringUTF, jstring);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3315 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3316 DT_RETURN_MARK_DECL(NewStringUTF, jstring
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3317 , HOTSPOT_JNI_NEWSTRINGUTF_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3318 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3319
a61af66fc99e Initial load
duke
parents:
diff changeset
3320 JNI_ENTRY(jstring, jni_NewStringUTF(JNIEnv *env, const char *bytes))
a61af66fc99e Initial load
duke
parents:
diff changeset
3321 JNIWrapper("NewStringUTF");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3322 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3323 DTRACE_PROBE2(hotspot_jni, NewStringUTF__entry, env, bytes);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3324 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3325 HOTSPOT_JNI_NEWSTRINGUTF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3326 env, (char *) bytes);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3327 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3328 jstring ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3329 DT_RETURN_MARK(NewStringUTF, jstring, (const jstring&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
3330
a61af66fc99e Initial load
duke
parents:
diff changeset
3331 oop result = java_lang_String::create_oop_from_str((char*) bytes, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
3332 ret = (jstring) JNIHandles::make_local(env, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
3333 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3334 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3335
a61af66fc99e Initial load
duke
parents:
diff changeset
3336
a61af66fc99e Initial load
duke
parents:
diff changeset
3337 JNI_ENTRY(jsize, jni_GetStringUTFLength(JNIEnv *env, jstring string))
a61af66fc99e Initial load
duke
parents:
diff changeset
3338 JNIWrapper("GetStringUTFLength");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3339 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3340 DTRACE_PROBE2(hotspot_jni, GetStringUTFLength__entry, env, string);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3341 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3342 HOTSPOT_JNI_GETSTRINGUTFLENGTH_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3343 env, string);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3344 #endif /* USDT2 */
12819
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3345 jsize ret = 0;
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3346 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
3347 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
3348 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
3349 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3350 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3351 DTRACE_PROBE1(hotspot_jni, GetStringUTFLength__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3352 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3353 HOTSPOT_JNI_GETSTRINGUTFLENGTH_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3354 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3355 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3356 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3357 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3358
a61af66fc99e Initial load
duke
parents:
diff changeset
3359
a61af66fc99e Initial load
duke
parents:
diff changeset
3360 JNI_ENTRY(const char*, jni_GetStringUTFChars(JNIEnv *env, jstring string, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
3361 JNIWrapper("GetStringUTFChars");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3362 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3363 DTRACE_PROBE3(hotspot_jni, GetStringUTFChars__entry, env, string, isCopy);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3364 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3365 HOTSPOT_JNI_GETSTRINGUTFCHARS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3366 env, string, (uintptr_t *) isCopy);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3367 #endif /* USDT2 */
12819
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3368 char* result = NULL;
1989
017cd8bce8a8 6539281: -Xcheck:jni should validate char* argument to ReleaseStringUTFChars
sla
parents: 1980
diff changeset
3369 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
3370 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
3371 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
3372 /* 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
3373 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
3374 if (result != NULL) {
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3375 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
3376 if (isCopy != NULL) {
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3377 *isCopy = JNI_TRUE;
f9be370a7d54 8025922: JNI access to Strings need to check if the value field is non-null
sla
parents: 12306
diff changeset
3378 }
12109
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3379 }
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3380 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3381 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3382 DTRACE_PROBE1(hotspot_jni, GetStringUTFChars__return, result);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3383 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3384 HOTSPOT_JNI_GETSTRINGUTFCHARS_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3385 result);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3386 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3387 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
3388 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3389
a61af66fc99e Initial load
duke
parents:
diff changeset
3390
a61af66fc99e Initial load
duke
parents:
diff changeset
3391 JNI_LEAF(void, jni_ReleaseStringUTFChars(JNIEnv *env, jstring str, const char *chars))
a61af66fc99e Initial load
duke
parents:
diff changeset
3392 JNIWrapper("ReleaseStringUTFChars");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3393 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3394 DTRACE_PROBE3(hotspot_jni, ReleaseStringUTFChars__entry, env, str, chars);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3395 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3396 HOTSPOT_JNI_RELEASESTRINGUTFCHARS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3397 env, str, (char *) chars);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3398 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3399 if (chars != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3400 FreeHeap((char*) chars);
a61af66fc99e Initial load
duke
parents:
diff changeset
3401 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3402 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3403 DTRACE_PROBE(hotspot_jni, ReleaseStringUTFChars__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3404 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3405 HOTSPOT_JNI_RELEASESTRINGUTFCHARS_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3406 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3407 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3408 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3409
a61af66fc99e Initial load
duke
parents:
diff changeset
3410
a61af66fc99e Initial load
duke
parents:
diff changeset
3411 JNI_QUICK_ENTRY(jsize, jni_GetArrayLength(JNIEnv *env, jarray array))
a61af66fc99e Initial load
duke
parents:
diff changeset
3412 JNIWrapper("GetArrayLength");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3413 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3414 DTRACE_PROBE2(hotspot_jni, GetArrayLength__entry, env, array);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3415 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3416 HOTSPOT_JNI_GETARRAYLENGTH_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3417 env, array);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3418 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3419 arrayOop a = arrayOop(JNIHandles::resolve_non_null(array));
a61af66fc99e Initial load
duke
parents:
diff changeset
3420 assert(a->is_array(), "must be array");
a61af66fc99e Initial load
duke
parents:
diff changeset
3421 jsize ret = a->length();
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3422 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3423 DTRACE_PROBE1(hotspot_jni, GetArrayLength__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3424 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3425 HOTSPOT_JNI_GETARRAYLENGTH_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3426 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3427 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3428 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3429 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3430
a61af66fc99e Initial load
duke
parents:
diff changeset
3431
a61af66fc99e Initial load
duke
parents:
diff changeset
3432 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3433 // Object Array Operations
a61af66fc99e Initial load
duke
parents:
diff changeset
3434 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3435
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3436 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3437 DT_RETURN_MARK_DECL(NewObjectArray, jobjectArray);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3438 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3439 DT_RETURN_MARK_DECL(NewObjectArray, jobjectArray
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3440 , HOTSPOT_JNI_NEWOBJECTARRAY_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3441 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3442
a61af66fc99e Initial load
duke
parents:
diff changeset
3443 JNI_ENTRY(jobjectArray, jni_NewObjectArray(JNIEnv *env, jsize length, jclass elementClass, jobject initialElement))
a61af66fc99e Initial load
duke
parents:
diff changeset
3444 JNIWrapper("NewObjectArray");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3445 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3446 DTRACE_PROBE4(hotspot_jni, NewObjectArray__entry, env, length, elementClass, initialElement);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3447 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3448 HOTSPOT_JNI_NEWOBJECTARRAY_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3449 env, length, elementClass, initialElement);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3450 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3451 jobjectArray ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3452 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
3453 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
3454 Klass* ako = ek()->array_klass(CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3455 KlassHandle ak = KlassHandle(THREAD, ako);
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
3456 ObjArrayKlass::cast(ak())->initialize(CHECK_NULL);
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
3457 objArrayOop result = ObjArrayKlass::cast(ak())->allocate(length, CHECK_NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3458 oop initial_value = JNIHandles::resolve(initialElement);
a61af66fc99e Initial load
duke
parents:
diff changeset
3459 if (initial_value != NULL) { // array already initialized with NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
3460 for (int index = 0; index < length; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3461 result->obj_at_put(index, initial_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
3462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3463 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3464 ret = (jobjectArray) JNIHandles::make_local(env, result);
a61af66fc99e Initial load
duke
parents:
diff changeset
3465 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3466 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3467
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3468 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3469 DT_RETURN_MARK_DECL(GetObjectArrayElement, jobject);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3470 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3471 DT_RETURN_MARK_DECL(GetObjectArrayElement, jobject
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3472 , HOTSPOT_JNI_GETOBJECTARRAYELEMENT_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3473 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3474
a61af66fc99e Initial load
duke
parents:
diff changeset
3475 JNI_ENTRY(jobject, jni_GetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index))
a61af66fc99e Initial load
duke
parents:
diff changeset
3476 JNIWrapper("GetObjectArrayElement");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3477 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3478 DTRACE_PROBE3(hotspot_jni, GetObjectArrayElement__entry, env, array, index);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3479 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3480 HOTSPOT_JNI_GETOBJECTARRAYELEMENT_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3481 env, array, index);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3482 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3483 jobject ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3484 DT_RETURN_MARK(GetObjectArrayElement, jobject, (const jobject&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
3485 objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array));
a61af66fc99e Initial load
duke
parents:
diff changeset
3486 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
3487 ret = JNIHandles::make_local(env, a->obj_at(index));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3488 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
3489 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3490 char buf[jintAsStringSize];
a61af66fc99e Initial load
duke
parents:
diff changeset
3491 sprintf(buf, "%d", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
3492 THROW_MSG_0(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3494 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3495
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3496 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3497 DT_VOID_RETURN_MARK_DECL(SetObjectArrayElement);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3498 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3499 DT_VOID_RETURN_MARK_DECL(SetObjectArrayElement
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3500 , HOTSPOT_JNI_SETOBJECTARRAYELEMENT_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3501 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3502
a61af66fc99e Initial load
duke
parents:
diff changeset
3503 JNI_ENTRY(void, jni_SetObjectArrayElement(JNIEnv *env, jobjectArray array, jsize index, jobject value))
a61af66fc99e Initial load
duke
parents:
diff changeset
3504 JNIWrapper("SetObjectArrayElement");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3505 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3506 DTRACE_PROBE4(hotspot_jni, SetObjectArrayElement__entry, env, array, index, value);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3507 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3508 HOTSPOT_JNI_SETOBJECTARRAYELEMENT_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3509 env, array, index, value);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3510 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3511 DT_VOID_RETURN_MARK(SetObjectArrayElement);
a61af66fc99e Initial load
duke
parents:
diff changeset
3512
a61af66fc99e Initial load
duke
parents:
diff changeset
3513 objArrayOop a = objArrayOop(JNIHandles::resolve_non_null(array));
a61af66fc99e Initial load
duke
parents:
diff changeset
3514 oop v = JNIHandles::resolve(value);
a61af66fc99e Initial load
duke
parents:
diff changeset
3515 if (a->is_within_bounds(index)) {
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
3516 if (v == NULL || v->is_a(ObjArrayKlass::cast(a->klass())->element_klass())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3517 a->obj_at_put(index, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
3518 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3519 THROW(vmSymbols::java_lang_ArrayStoreException());
a61af66fc99e Initial load
duke
parents:
diff changeset
3520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3521 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
3522 char buf[jintAsStringSize];
a61af66fc99e Initial load
duke
parents:
diff changeset
3523 sprintf(buf, "%d", index);
a61af66fc99e Initial load
duke
parents:
diff changeset
3524 THROW_MSG(vmSymbols::java_lang_ArrayIndexOutOfBoundsException(), buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
3525 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3526 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3527
a61af66fc99e Initial load
duke
parents:
diff changeset
3528
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3529 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3530 #define DEFINE_NEWSCALARARRAY(Return,Allocator,Result) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3531 \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3532 DT_RETURN_MARK_DECL(New##Result##Array, Return); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3533 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3534 JNI_ENTRY(Return, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3535 jni_New##Result##Array(JNIEnv *env, jsize len)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3536 JNIWrapper("New" XSTR(Result) "Array"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3537 DTRACE_PROBE2(hotspot_jni, New##Result##Array__entry, env, len);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3538 Return ret = NULL;\
1034
08780c8a9f04 6893483: DTrace probe return values for a couple JNI methods are wrong
kamg
parents: 973
diff changeset
3539 DT_RETURN_MARK(New##Result##Array, Return, (const Return&)ret);\
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3540 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3541 oop obj= oopFactory::Allocator(len, CHECK_0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3542 ret = (Return) JNIHandles::make_local(env, obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3543 return ret;\
a61af66fc99e Initial load
duke
parents:
diff changeset
3544 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3545
a61af66fc99e Initial load
duke
parents:
diff changeset
3546 DEFINE_NEWSCALARARRAY(jbooleanArray, new_boolArray, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
3547 DEFINE_NEWSCALARARRAY(jbyteArray, new_byteArray, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
3548 DEFINE_NEWSCALARARRAY(jshortArray, new_shortArray, Short)
a61af66fc99e Initial load
duke
parents:
diff changeset
3549 DEFINE_NEWSCALARARRAY(jcharArray, new_charArray, Char)
a61af66fc99e Initial load
duke
parents:
diff changeset
3550 DEFINE_NEWSCALARARRAY(jintArray, new_intArray, Int)
a61af66fc99e Initial load
duke
parents:
diff changeset
3551 DEFINE_NEWSCALARARRAY(jlongArray, new_longArray, Long)
a61af66fc99e Initial load
duke
parents:
diff changeset
3552 DEFINE_NEWSCALARARRAY(jfloatArray, new_singleArray, Float)
a61af66fc99e Initial load
duke
parents:
diff changeset
3553 DEFINE_NEWSCALARARRAY(jdoubleArray, new_doubleArray, Double)
a61af66fc99e Initial load
duke
parents:
diff changeset
3554
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3555 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3556
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3557 #define DEFINE_NEWSCALARARRAY(Return,Allocator,Result \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3558 ,EntryProbe,ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3559 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3560 DT_RETURN_MARK_DECL(New##Result##Array, Return \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3561 , ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3562 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3563 JNI_ENTRY(Return, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3564 jni_New##Result##Array(JNIEnv *env, jsize len)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3565 JNIWrapper("New" XSTR(Result) "Array"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3566 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3567 Return ret = NULL;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3568 DT_RETURN_MARK(New##Result##Array, Return, (const Return&)ret);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3569 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3570 oop obj= oopFactory::Allocator(len, CHECK_0); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3571 ret = (Return) JNIHandles::make_local(env, obj); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3572 return ret;\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3573 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3574
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3575 DEFINE_NEWSCALARARRAY(jbooleanArray, new_boolArray, Boolean,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3576 HOTSPOT_JNI_NEWBOOLEANARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3577 HOTSPOT_JNI_NEWBOOLEANARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3578 DEFINE_NEWSCALARARRAY(jbyteArray, new_byteArray, Byte,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3579 HOTSPOT_JNI_NEWBYTEARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3580 HOTSPOT_JNI_NEWBYTEARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3581 DEFINE_NEWSCALARARRAY(jshortArray, new_shortArray, Short,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3582 HOTSPOT_JNI_NEWSHORTARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3583 HOTSPOT_JNI_NEWSHORTARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3584 DEFINE_NEWSCALARARRAY(jcharArray, new_charArray, Char,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3585 HOTSPOT_JNI_NEWCHARARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3586 HOTSPOT_JNI_NEWCHARARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3587 DEFINE_NEWSCALARARRAY(jintArray, new_intArray, Int,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3588 HOTSPOT_JNI_NEWINTARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3589 HOTSPOT_JNI_NEWINTARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3590 DEFINE_NEWSCALARARRAY(jlongArray, new_longArray, Long,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3591 HOTSPOT_JNI_NEWLONGARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3592 HOTSPOT_JNI_NEWLONGARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3593 DEFINE_NEWSCALARARRAY(jfloatArray, new_singleArray, Float,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3594 HOTSPOT_JNI_NEWFLOATARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3595 HOTSPOT_JNI_NEWFLOATARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3596 DEFINE_NEWSCALARARRAY(jdoubleArray, new_doubleArray, Double,
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3597 HOTSPOT_JNI_NEWDOUBLEARRAY_ENTRY(env, len),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3598 HOTSPOT_JNI_NEWDOUBLEARRAY_RETURN(_ret_ref))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3599 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3600
a61af66fc99e Initial load
duke
parents:
diff changeset
3601 // Return an address which will fault if the caller writes to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
3602
a61af66fc99e Initial load
duke
parents:
diff changeset
3603 static char* get_bad_address() {
a61af66fc99e Initial load
duke
parents:
diff changeset
3604 static char* bad_address = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
3605 if (bad_address == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3606 size_t size = os::vm_allocation_granularity();
a61af66fc99e Initial load
duke
parents:
diff changeset
3607 bad_address = os::reserve_memory(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
3608 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
3609 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
3610 /*is_committed*/false);
20360
833b0f92429a 8046598: Scalable Native memory tracking development
zgu
parents: 20337
diff changeset
3611 MemTracker::record_virtual_memory_type((void*)bad_address, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3612 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3613 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3614 return bad_address;
a61af66fc99e Initial load
duke
parents:
diff changeset
3615 }
a61af66fc99e Initial load
duke
parents:
diff changeset
3616
a61af66fc99e Initial load
duke
parents:
diff changeset
3617
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3618 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3619 #define DEFINE_GETSCALARARRAYELEMENTS(ElementTag,ElementType,Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3620 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3621 JNI_QUICK_ENTRY(ElementType*, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3622 jni_Get##Result##ArrayElements(JNIEnv *env, ElementType##Array array, jboolean *isCopy)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3623 JNIWrapper("Get" XSTR(Result) "ArrayElements"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3624 DTRACE_PROBE3(hotspot_jni, Get##Result##ArrayElements__entry, env, array, isCopy);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3625 /* allocate an chunk of memory in c land */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
3626 typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3627 ElementType* result; \
a61af66fc99e Initial load
duke
parents:
diff changeset
3628 int len = a->length(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3629 if (len == 0) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3630 /* Empty array: legal but useless, can't return NULL. \
a61af66fc99e Initial load
duke
parents:
diff changeset
3631 * Return a pointer to something useless. \
a61af66fc99e Initial load
duke
parents:
diff changeset
3632 * Avoid asserts in typeArrayOop. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
3633 result = (ElementType*)get_bad_address(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3634 } else { \
12109
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3635 /* 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
3636 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
3637 if (result != NULL) { \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3638 /* 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
3639 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
3640 if (isCopy) { \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3641 *isCopy = JNI_TRUE; \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3642 } \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3643 } \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3644 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3645 DTRACE_PROBE1(hotspot_jni, Get##Result##ArrayElements__return, result);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3646 return result; \
a61af66fc99e Initial load
duke
parents:
diff changeset
3647 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3648
a61af66fc99e Initial load
duke
parents:
diff changeset
3649 DEFINE_GETSCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
3650 DEFINE_GETSCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
3651 DEFINE_GETSCALARARRAYELEMENTS(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
3652 DEFINE_GETSCALARARRAYELEMENTS(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
3653 DEFINE_GETSCALARARRAYELEMENTS(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
3654 DEFINE_GETSCALARARRAYELEMENTS(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
3655 DEFINE_GETSCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
3656 DEFINE_GETSCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
3657
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3658 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3659
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3660 #define DEFINE_GETSCALARARRAYELEMENTS(ElementTag,ElementType,Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3661 , EntryProbe, ReturnProbe) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3662 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3663 JNI_QUICK_ENTRY(ElementType*, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3664 jni_Get##Result##ArrayElements(JNIEnv *env, ElementType##Array array, jboolean *isCopy)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3665 JNIWrapper("Get" XSTR(Result) "ArrayElements"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3666 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3667 /* allocate an chunk of memory in c land */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3668 typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3669 ElementType* result; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3670 int len = a->length(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3671 if (len == 0) { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3672 /* Empty array: legal but useless, can't return NULL. \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3673 * Return a pointer to something useless. \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3674 * Avoid asserts in typeArrayOop. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3675 result = (ElementType*)get_bad_address(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3676 } else { \
12109
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3677 /* 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
3678 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
3679 if (result != NULL) { \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3680 /* 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
3681 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
3682 if (isCopy) { \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3683 *isCopy = JNI_TRUE; \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3684 } \
faf2631b9334 8022683: JNI GetStringUTFChars should return NULL on allocation failure not abort the VM
dsimms
parents: 11092
diff changeset
3685 } \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3686 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3687 ReturnProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3688 return result; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3689 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3690
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3691 DEFINE_GETSCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3692 , HOTSPOT_JNI_GETBOOLEANARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3693 HOTSPOT_JNI_GETBOOLEANARRAYELEMENTS_RETURN((uintptr_t*)result))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3694 DEFINE_GETSCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3695 , HOTSPOT_JNI_GETBYTEARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3696 HOTSPOT_JNI_GETBYTEARRAYELEMENTS_RETURN((char*)result))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3697 DEFINE_GETSCALARARRAYELEMENTS(T_SHORT, jshort, Short, short
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3698 , HOTSPOT_JNI_GETSHORTARRAYELEMENTS_ENTRY(env, (uint16_t*) array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3699 HOTSPOT_JNI_GETSHORTARRAYELEMENTS_RETURN((uint16_t*)result))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3700 DEFINE_GETSCALARARRAYELEMENTS(T_CHAR, jchar, Char, char
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3701 , HOTSPOT_JNI_GETCHARARRAYELEMENTS_ENTRY(env, (uint16_t*) array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3702 HOTSPOT_JNI_GETCHARARRAYELEMENTS_RETURN(result))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3703 DEFINE_GETSCALARARRAYELEMENTS(T_INT, jint, Int, int
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3704 , HOTSPOT_JNI_GETINTARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3705 HOTSPOT_JNI_GETINTARRAYELEMENTS_RETURN((uint32_t*)result))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3706 DEFINE_GETSCALARARRAYELEMENTS(T_LONG, jlong, Long, long
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3707 , HOTSPOT_JNI_GETLONGARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3708 HOTSPOT_JNI_GETLONGARRAYELEMENTS_RETURN(((uintptr_t*)result)))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3709 // 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
3710 DEFINE_GETSCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3711 , HOTSPOT_JNI_GETFLOATARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3712 HOTSPOT_JNI_GETFLOATARRAYELEMENTS_RETURN(result))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3713 DEFINE_GETSCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3714 , HOTSPOT_JNI_GETDOUBLEARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) isCopy),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3715 HOTSPOT_JNI_GETDOUBLEARRAYELEMENTS_RETURN(result))
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3716 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3717
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3718 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3719 #define DEFINE_RELEASESCALARARRAYELEMENTS(ElementTag,ElementType,Result,Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3720 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3721 JNI_QUICK_ENTRY(void, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3722 jni_Release##Result##ArrayElements(JNIEnv *env, ElementType##Array array, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3723 ElementType *buf, jint mode)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3724 JNIWrapper("Release" XSTR(Result) "ArrayElements"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3725 DTRACE_PROBE4(hotspot_jni, Release##Result##ArrayElements__entry, env, array, buf, mode);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3726 typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3727 int len = a->length(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3728 if (len != 0) { /* Empty array: nothing to free or copy. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
3729 if ((mode == 0) || (mode == JNI_COMMIT)) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3730 memcpy(a->Tag##_at_addr(0), buf, sizeof(ElementType)*len); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3731 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3732 if ((mode == 0) || (mode == JNI_ABORT)) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3733 FreeHeap(buf); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3734 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3735 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3736 DTRACE_PROBE(hotspot_jni, Release##Result##ArrayElements__return);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3737 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3738
a61af66fc99e Initial load
duke
parents:
diff changeset
3739 DEFINE_RELEASESCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
3740 DEFINE_RELEASESCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
3741 DEFINE_RELEASESCALARARRAYELEMENTS(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
3742 DEFINE_RELEASESCALARARRAYELEMENTS(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
3743 DEFINE_RELEASESCALARARRAYELEMENTS(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
3744 DEFINE_RELEASESCALARARRAYELEMENTS(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
3745 DEFINE_RELEASESCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
3746 DEFINE_RELEASESCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
3747
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3748 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3749
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3750 #define DEFINE_RELEASESCALARARRAYELEMENTS(ElementTag,ElementType,Result,Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3751 , EntryProbe, ReturnProbe);\
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3752 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3753 JNI_QUICK_ENTRY(void, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3754 jni_Release##Result##ArrayElements(JNIEnv *env, ElementType##Array array, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3755 ElementType *buf, jint mode)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3756 JNIWrapper("Release" XSTR(Result) "ArrayElements"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3757 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3758 typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(array)); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3759 int len = a->length(); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3760 if (len != 0) { /* Empty array: nothing to free or copy. */ \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3761 if ((mode == 0) || (mode == JNI_COMMIT)) { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3762 memcpy(a->Tag##_at_addr(0), buf, sizeof(ElementType)*len); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3763 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3764 if ((mode == 0) || (mode == JNI_ABORT)) { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3765 FreeHeap(buf); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3766 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3767 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3768 ReturnProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3769 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3770
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3771 DEFINE_RELEASESCALARARRAYELEMENTS(T_BOOLEAN, jboolean, Boolean, bool
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3772 , HOTSPOT_JNI_RELEASEBOOLEANARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3773 HOTSPOT_JNI_RELEASEBOOLEANARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3774 DEFINE_RELEASESCALARARRAYELEMENTS(T_BYTE, jbyte, Byte, byte
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3775 , HOTSPOT_JNI_RELEASEBYTEARRAYELEMENTS_ENTRY(env, array, (char *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3776 HOTSPOT_JNI_RELEASEBYTEARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3777 DEFINE_RELEASESCALARARRAYELEMENTS(T_SHORT, jshort, Short, short
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3778 , HOTSPOT_JNI_RELEASESHORTARRAYELEMENTS_ENTRY(env, array, (uint16_t *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3779 HOTSPOT_JNI_RELEASESHORTARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3780 DEFINE_RELEASESCALARARRAYELEMENTS(T_CHAR, jchar, Char, char
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3781 , HOTSPOT_JNI_RELEASECHARARRAYELEMENTS_ENTRY(env, array, (uint16_t *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3782 HOTSPOT_JNI_RELEASECHARARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3783 DEFINE_RELEASESCALARARRAYELEMENTS(T_INT, jint, Int, int
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3784 , HOTSPOT_JNI_RELEASEINTARRAYELEMENTS_ENTRY(env, array, (uint32_t *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3785 HOTSPOT_JNI_RELEASEINTARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3786 DEFINE_RELEASESCALARARRAYELEMENTS(T_LONG, jlong, Long, long
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3787 , HOTSPOT_JNI_RELEASELONGARRAYELEMENTS_ENTRY(env, array, (uintptr_t *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3788 HOTSPOT_JNI_RELEASELONGARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3789 DEFINE_RELEASESCALARARRAYELEMENTS(T_FLOAT, jfloat, Float, float
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3790 , HOTSPOT_JNI_RELEASEFLOATARRAYELEMENTS_ENTRY(env, array, (float *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3791 HOTSPOT_JNI_RELEASEFLOATARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3792 DEFINE_RELEASESCALARARRAYELEMENTS(T_DOUBLE, jdouble, Double, double
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3793 , HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_ENTRY(env, array, (double *) buf, mode),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3794 HOTSPOT_JNI_RELEASEDOUBLEARRAYELEMENTS_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3795 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3796
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3797 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3798 #define DEFINE_GETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3799 DT_VOID_RETURN_MARK_DECL(Get##Result##ArrayRegion);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3800 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3801 JNI_ENTRY(void, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3802 jni_Get##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3803 jsize len, ElementType *buf)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3804 JNIWrapper("Get" XSTR(Result) "ArrayRegion"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3805 DTRACE_PROBE5(hotspot_jni, Get##Result##ArrayRegion__entry, env, array, start, len, buf);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3806 DT_VOID_RETURN_MARK(Get##Result##ArrayRegion); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3807 typeArrayOop src = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3808 if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)src->length())) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3809 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3810 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3811 if (len > 0) { \
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
3812 int sc = TypeArrayKlass::cast(src->klass())->log2_element_size(); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3813 memcpy((u_char*) buf, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3814 (u_char*) src->Tag##_at_addr(start), \
a61af66fc99e Initial load
duke
parents:
diff changeset
3815 len << sc); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3816 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3817 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3818 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3819
a61af66fc99e Initial load
duke
parents:
diff changeset
3820 DEFINE_GETSCALARARRAYREGION(T_BOOLEAN, jboolean,Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
3821 DEFINE_GETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
3822 DEFINE_GETSCALARARRAYREGION(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
3823 DEFINE_GETSCALARARRAYREGION(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
3824 DEFINE_GETSCALARARRAYREGION(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
3825 DEFINE_GETSCALARARRAYREGION(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
3826 DEFINE_GETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
3827 DEFINE_GETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
3828
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3829 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3830
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3831 #define DEFINE_GETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3832 , EntryProbe, ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3833 DT_VOID_RETURN_MARK_DECL(Get##Result##ArrayRegion \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3834 , ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3835 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3836 JNI_ENTRY(void, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3837 jni_Get##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3838 jsize len, ElementType *buf)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3839 JNIWrapper("Get" XSTR(Result) "ArrayRegion"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3840 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3841 DT_VOID_RETURN_MARK(Get##Result##ArrayRegion); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3842 typeArrayOop src = typeArrayOop(JNIHandles::resolve_non_null(array)); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3843 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
3844 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3845 } else { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3846 if (len > 0) { \
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
3847 int sc = TypeArrayKlass::cast(src->klass())->log2_element_size(); \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3848 memcpy((u_char*) buf, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3849 (u_char*) src->Tag##_at_addr(start), \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3850 len << sc); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3851 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3852 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3853 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3854
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3855 DEFINE_GETSCALARARRAYREGION(T_BOOLEAN, jboolean,Boolean, bool
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3856 , HOTSPOT_JNI_GETBOOLEANARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3857 HOTSPOT_JNI_GETBOOLEANARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3858 DEFINE_GETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3859 , HOTSPOT_JNI_GETBYTEARRAYREGION_ENTRY(env, array, start, len, (char *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3860 HOTSPOT_JNI_GETBYTEARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3861 DEFINE_GETSCALARARRAYREGION(T_SHORT, jshort, Short, short
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3862 , HOTSPOT_JNI_GETSHORTARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3863 HOTSPOT_JNI_GETSHORTARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3864 DEFINE_GETSCALARARRAYREGION(T_CHAR, jchar, Char, char
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3865 , HOTSPOT_JNI_GETCHARARRAYREGION_ENTRY(env, array, start, len, (uint16_t*) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3866 HOTSPOT_JNI_GETCHARARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3867 DEFINE_GETSCALARARRAYREGION(T_INT, jint, Int, int
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3868 , HOTSPOT_JNI_GETINTARRAYREGION_ENTRY(env, array, start, len, (uint32_t*) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3869 HOTSPOT_JNI_GETINTARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3870 DEFINE_GETSCALARARRAYREGION(T_LONG, jlong, Long, long
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3871 , HOTSPOT_JNI_GETLONGARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3872 HOTSPOT_JNI_GETLONGARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3873 DEFINE_GETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3874 , HOTSPOT_JNI_GETFLOATARRAYREGION_ENTRY(env, array, start, len, (float *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3875 HOTSPOT_JNI_GETFLOATARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3876 DEFINE_GETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3877 , HOTSPOT_JNI_GETDOUBLEARRAYREGION_ENTRY(env, array, start, len, (double *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3878 HOTSPOT_JNI_GETDOUBLEARRAYREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3879 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3880
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3881 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3882 #define DEFINE_SETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3883 DT_VOID_RETURN_MARK_DECL(Set##Result##ArrayRegion);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3884 \
a61af66fc99e Initial load
duke
parents:
diff changeset
3885 JNI_ENTRY(void, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3886 jni_Set##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3887 jsize len, const ElementType *buf)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
3888 JNIWrapper("Set" XSTR(Result) "ArrayRegion"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3889 DTRACE_PROBE5(hotspot_jni, Set##Result##ArrayRegion__entry, env, array, start, len, buf);\
a61af66fc99e Initial load
duke
parents:
diff changeset
3890 DT_VOID_RETURN_MARK(Set##Result##ArrayRegion); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3891 typeArrayOop dst = typeArrayOop(JNIHandles::resolve_non_null(array)); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3892 if (start < 0 || len < 0 || ((unsigned int)start + (unsigned int)len > (unsigned int)dst->length())) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3893 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3894 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
3895 if (len > 0) { \
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
3896 int sc = TypeArrayKlass::cast(dst->klass())->log2_element_size(); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3897 memcpy((u_char*) dst->Tag##_at_addr(start), \
a61af66fc99e Initial load
duke
parents:
diff changeset
3898 (u_char*) buf, \
a61af66fc99e Initial load
duke
parents:
diff changeset
3899 len << sc); \
a61af66fc99e Initial load
duke
parents:
diff changeset
3900 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3901 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
3902 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
3903
a61af66fc99e Initial load
duke
parents:
diff changeset
3904 DEFINE_SETSCALARARRAYREGION(T_BOOLEAN, jboolean, Boolean, bool)
a61af66fc99e Initial load
duke
parents:
diff changeset
3905 DEFINE_SETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
3906 DEFINE_SETSCALARARRAYREGION(T_SHORT, jshort, Short, short)
a61af66fc99e Initial load
duke
parents:
diff changeset
3907 DEFINE_SETSCALARARRAYREGION(T_CHAR, jchar, Char, char)
a61af66fc99e Initial load
duke
parents:
diff changeset
3908 DEFINE_SETSCALARARRAYREGION(T_INT, jint, Int, int)
a61af66fc99e Initial load
duke
parents:
diff changeset
3909 DEFINE_SETSCALARARRAYREGION(T_LONG, jlong, Long, long)
a61af66fc99e Initial load
duke
parents:
diff changeset
3910 DEFINE_SETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float)
a61af66fc99e Initial load
duke
parents:
diff changeset
3911 DEFINE_SETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double)
a61af66fc99e Initial load
duke
parents:
diff changeset
3912
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3913 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3914
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3915 #define DEFINE_SETSCALARARRAYREGION(ElementTag,ElementType,Result, Tag \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3916 , EntryProbe, ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3917 DT_VOID_RETURN_MARK_DECL(Set##Result##ArrayRegion \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3918 ,ReturnProbe); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3919 \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3920 JNI_ENTRY(void, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3921 jni_Set##Result##ArrayRegion(JNIEnv *env, ElementType##Array array, jsize start, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3922 jsize len, const ElementType *buf)) \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3923 JNIWrapper("Set" XSTR(Result) "ArrayRegion"); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3924 EntryProbe; \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3925 DT_VOID_RETURN_MARK(Set##Result##ArrayRegion); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3926 typeArrayOop dst = typeArrayOop(JNIHandles::resolve_non_null(array)); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3927 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
3928 THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException()); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3929 } else { \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3930 if (len > 0) { \
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
3931 int sc = TypeArrayKlass::cast(dst->klass())->log2_element_size(); \
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3932 memcpy((u_char*) dst->Tag##_at_addr(start), \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3933 (u_char*) buf, \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3934 len << sc); \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3935 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3936 } \
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3937 JNI_END
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3938
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3939 DEFINE_SETSCALARARRAYREGION(T_BOOLEAN, jboolean, Boolean, bool
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3940 , HOTSPOT_JNI_SETBOOLEANARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *)buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3941 HOTSPOT_JNI_SETBOOLEANARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3942 DEFINE_SETSCALARARRAYREGION(T_BYTE, jbyte, Byte, byte
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3943 , HOTSPOT_JNI_SETBYTEARRAYREGION_ENTRY(env, array, start, len, (char *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3944 HOTSPOT_JNI_SETBYTEARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3945 DEFINE_SETSCALARARRAYREGION(T_SHORT, jshort, Short, short
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3946 , HOTSPOT_JNI_SETSHORTARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3947 HOTSPOT_JNI_SETSHORTARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3948 DEFINE_SETSCALARARRAYREGION(T_CHAR, jchar, Char, char
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3949 , HOTSPOT_JNI_SETCHARARRAYREGION_ENTRY(env, array, start, len, (uint16_t *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3950 HOTSPOT_JNI_SETCHARARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3951 DEFINE_SETSCALARARRAYREGION(T_INT, jint, Int, int
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3952 , HOTSPOT_JNI_SETINTARRAYREGION_ENTRY(env, array, start, len, (uint32_t *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3953 HOTSPOT_JNI_SETINTARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3954 DEFINE_SETSCALARARRAYREGION(T_LONG, jlong, Long, long
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3955 , HOTSPOT_JNI_SETLONGARRAYREGION_ENTRY(env, array, start, len, (uintptr_t *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3956 HOTSPOT_JNI_SETLONGARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3957 DEFINE_SETSCALARARRAYREGION(T_FLOAT, jfloat, Float, float
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3958 , HOTSPOT_JNI_SETFLOATARRAYREGION_ENTRY(env, array, start, len, (float *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3959 HOTSPOT_JNI_SETFLOATARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3960 DEFINE_SETSCALARARRAYREGION(T_DOUBLE, jdouble, Double, double
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3961 , HOTSPOT_JNI_SETDOUBLEARRAYREGION_ENTRY(env, array, start, len, (double *) buf),
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3962 HOTSPOT_JNI_SETDOUBLEARRAYREGION_RETURN())
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3963 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
3964
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3965
a61af66fc99e Initial load
duke
parents:
diff changeset
3966 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3967 // Interception of natives
a61af66fc99e Initial load
duke
parents:
diff changeset
3968 //
a61af66fc99e Initial load
duke
parents:
diff changeset
3969
a61af66fc99e Initial load
duke
parents:
diff changeset
3970 // The RegisterNatives call being attempted tried to register with a method that
a61af66fc99e Initial load
duke
parents:
diff changeset
3971 // is not native. Ask JVM TI what prefixes have been specified. Then check
a61af66fc99e Initial load
duke
parents:
diff changeset
3972 // to see if the native method is now wrapped with the prefixes. See the
a61af66fc99e Initial load
duke
parents:
diff changeset
3973 // 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
3974 static Method* find_prefixed_native(KlassHandle k,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
3975 Symbol* name, Symbol* signature, TRAPS) {
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
3976 #if INCLUDE_JVMTI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3977 ResourceMark rm(THREAD);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
3978 Method* method;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3979 int name_len = name->utf8_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
3980 char* name_str = name->as_utf8();
a61af66fc99e Initial load
duke
parents:
diff changeset
3981 int prefix_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
3982 char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
3983 for (int i = 0; i < prefix_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3984 char* prefix = prefixes[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
3985 int prefix_len = (int)strlen(prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
3986
a61af66fc99e Initial load
duke
parents:
diff changeset
3987 // try adding this prefix to the method name and see if it matches another method name
a61af66fc99e Initial load
duke
parents:
diff changeset
3988 int trial_len = name_len + prefix_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
3989 char* trial_name_str = NEW_RESOURCE_ARRAY(char, trial_len + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
3990 strcpy(trial_name_str, prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
3991 strcat(trial_name_str, name_str);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
3992 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
3993 if (trial_name == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3994 continue; // no such symbol, so this prefix wasn't used, try the next prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
3995 }
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
3996 method = k()->lookup_method(trial_name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3997 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
3998 continue; // signature doesn't match, try the next prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
3999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4000 if (method->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4001 method->set_is_prefixed_native();
a61af66fc99e Initial load
duke
parents:
diff changeset
4002 return method; // wahoo, we found a prefixed version of the method, return it
a61af66fc99e Initial load
duke
parents:
diff changeset
4003 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4004 // found as non-native, so prefix is good, add it, probably just need more prefixes
a61af66fc99e Initial load
duke
parents:
diff changeset
4005 name_len = trial_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
4006 name_str = trial_name_str;
a61af66fc99e Initial load
duke
parents:
diff changeset
4007 }
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
4008 #endif // INCLUDE_JVMTI
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4009 return NULL; // not found
a61af66fc99e Initial load
duke
parents:
diff changeset
4010 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4011
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
4012 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
4013 Method* method = k()->lookup_method(name, signature);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4014 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4015 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
4016 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
4017 st.print("Method %s name or signature does not match",
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
4018 Method::name_and_sig_as_C_string(k(), name, signature));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4019 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
4020 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4021 if (!method->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4022 // 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
4023 method = find_prefixed_native(k, name, signature, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4024 if (method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4025 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
4026 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
4027 st.print("Method %s is not declared as native",
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
4028 Method::name_and_sig_as_C_string(k(), name, signature));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4029 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), false);
a61af66fc99e Initial load
duke
parents:
diff changeset
4030 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4031 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4032
a61af66fc99e Initial load
duke
parents:
diff changeset
4033 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4034 method->set_native_function(entry,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
4035 Method::native_bind_event_is_interesting);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4036 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
4037 method->clear_native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
4038 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4039 if (PrintJNIResolving) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4040 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4041 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
4042 method->method_holder()->external_name(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4043 method->name()->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
4044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4045 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
4046 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4047
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4048 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4049 DT_RETURN_MARK_DECL(RegisterNatives, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4050 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4051 DT_RETURN_MARK_DECL(RegisterNatives, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4052 , HOTSPOT_JNI_REGISTERNATIVES_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4053 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4054
a61af66fc99e Initial load
duke
parents:
diff changeset
4055 JNI_ENTRY(jint, jni_RegisterNatives(JNIEnv *env, jclass clazz,
a61af66fc99e Initial load
duke
parents:
diff changeset
4056 const JNINativeMethod *methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
4057 jint nMethods))
a61af66fc99e Initial load
duke
parents:
diff changeset
4058 JNIWrapper("RegisterNatives");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4059 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4060 DTRACE_PROBE4(hotspot_jni, RegisterNatives__entry, env, clazz, methods, nMethods);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4061 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4062 HOTSPOT_JNI_REGISTERNATIVES_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4063 env, clazz, (void *) methods, nMethods);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4064 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4065 jint ret = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4066 DT_RETURN_MARK(RegisterNatives, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
4067
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
4068 KlassHandle h_k(thread, java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4069
a61af66fc99e Initial load
duke
parents:
diff changeset
4070 for (int index = 0; index < nMethods; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4071 const char* meth_name = methods[index].name;
a61af66fc99e Initial load
duke
parents:
diff changeset
4072 const char* meth_sig = methods[index].signature;
a61af66fc99e Initial load
duke
parents:
diff changeset
4073 int meth_name_len = (int)strlen(meth_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
4074
a61af66fc99e Initial load
duke
parents:
diff changeset
4075 // The class should have been loaded (we have an instance of the class
a61af66fc99e Initial load
duke
parents:
diff changeset
4076 // passed in) so the method and signature should already be in the symbol
a61af66fc99e Initial load
duke
parents:
diff changeset
4077 // 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
4078 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
4079 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
4080
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
4081 if (name == NULL || signature == NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4082 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
4083 stringStream st;
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
4084 st.print("Method %s.%s%s not found", h_k()->external_name(), meth_name, meth_sig);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4085 // Must return negative value on failure
a61af66fc99e Initial load
duke
parents:
diff changeset
4086 THROW_MSG_(vmSymbols::java_lang_NoSuchMethodError(), st.as_string(), -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
4087 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4088
a61af66fc99e Initial load
duke
parents:
diff changeset
4089 bool res = register_native(h_k, name, signature,
a61af66fc99e Initial load
duke
parents:
diff changeset
4090 (address) methods[index].fnPtr, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4091 if (!res) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4092 ret = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4093 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
4094 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4095 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4096 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4097 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4098
a61af66fc99e Initial load
duke
parents:
diff changeset
4099
a61af66fc99e Initial load
duke
parents:
diff changeset
4100 JNI_ENTRY(jint, jni_UnregisterNatives(JNIEnv *env, jclass clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
4101 JNIWrapper("UnregisterNatives");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4102 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4103 DTRACE_PROBE2(hotspot_jni, UnregisterNatives__entry, env, clazz);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4104 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4105 HOTSPOT_JNI_UNREGISTERNATIVES_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4106 env, clazz);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4107 #endif /* USDT2 */
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
4108 Klass* k = java_lang_Class::as_Klass(JNIHandles::resolve_non_null(clazz));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4109 //%note jni_2
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6940
diff changeset
4110 if (k->oop_is_instance()) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
4111 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
4112 Method* m = InstanceKlass::cast(k)->methods()->at(index);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4113 if (m->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4114 m->clear_native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
4115 m->set_signature_handler(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
4116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4118 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4119 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4120 DTRACE_PROBE1(hotspot_jni, UnregisterNatives__return, 0);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4121 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4122 HOTSPOT_JNI_UNREGISTERNATIVES_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4123 0);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4124 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4125 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4126 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4127
a61af66fc99e Initial load
duke
parents:
diff changeset
4128 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4129 // Monitor functions
a61af66fc99e Initial load
duke
parents:
diff changeset
4130 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4131
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4132 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4133 DT_RETURN_MARK_DECL(MonitorEnter, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4134 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4135 DT_RETURN_MARK_DECL(MonitorEnter, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4136 , HOTSPOT_JNI_MONITORENTER_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4137 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4138
a61af66fc99e Initial load
duke
parents:
diff changeset
4139 JNI_ENTRY(jint, jni_MonitorEnter(JNIEnv *env, jobject jobj))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4140 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4141 DTRACE_PROBE2(hotspot_jni, MonitorEnter__entry, env, jobj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4142 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4143 HOTSPOT_JNI_MONITORENTER_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4144 env, jobj);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4145 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4146 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
4147 DT_RETURN_MARK(MonitorEnter, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
4148
a61af66fc99e Initial load
duke
parents:
diff changeset
4149 // If the object is null, we can't do anything with it
a61af66fc99e Initial load
duke
parents:
diff changeset
4150 if (jobj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4151 THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
4152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4153
a61af66fc99e Initial load
duke
parents:
diff changeset
4154 Handle obj(thread, JNIHandles::resolve_non_null(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
4155 ObjectSynchronizer::jni_enter(obj, CHECK_(JNI_ERR));
a61af66fc99e Initial load
duke
parents:
diff changeset
4156 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
4157 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4158 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4159
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4160 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4161 DT_RETURN_MARK_DECL(MonitorExit, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4162 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4163 DT_RETURN_MARK_DECL(MonitorExit, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4164 , HOTSPOT_JNI_MONITOREXIT_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4165 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4166
a61af66fc99e Initial load
duke
parents:
diff changeset
4167 JNI_ENTRY(jint, jni_MonitorExit(JNIEnv *env, jobject jobj))
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4168 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4169 DTRACE_PROBE2(hotspot_jni, MonitorExit__entry, env, jobj);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4170 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4171 HOTSPOT_JNI_MONITOREXIT_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4172 env, jobj);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4173 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4174 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
4175 DT_RETURN_MARK(MonitorExit, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
4176
a61af66fc99e Initial load
duke
parents:
diff changeset
4177 // Don't do anything with a null object
a61af66fc99e Initial load
duke
parents:
diff changeset
4178 if (jobj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4179 THROW_(vmSymbols::java_lang_NullPointerException(), JNI_ERR);
a61af66fc99e Initial load
duke
parents:
diff changeset
4180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4181
a61af66fc99e Initial load
duke
parents:
diff changeset
4182 Handle obj(THREAD, JNIHandles::resolve_non_null(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
4183 ObjectSynchronizer::jni_exit(obj(), CHECK_(JNI_ERR));
a61af66fc99e Initial load
duke
parents:
diff changeset
4184
a61af66fc99e Initial load
duke
parents:
diff changeset
4185 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
4186 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4187 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4188
a61af66fc99e Initial load
duke
parents:
diff changeset
4189 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4190 // Extensions
a61af66fc99e Initial load
duke
parents:
diff changeset
4191 //
a61af66fc99e Initial load
duke
parents:
diff changeset
4192
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4193 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4194 DT_VOID_RETURN_MARK_DECL(GetStringRegion);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4195 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4196 DT_VOID_RETURN_MARK_DECL(GetStringRegion
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4197 , HOTSPOT_JNI_GETSTRINGREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4198 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4199
a61af66fc99e Initial load
duke
parents:
diff changeset
4200 JNI_ENTRY(void, jni_GetStringRegion(JNIEnv *env, jstring string, jsize start, jsize len, jchar *buf))
a61af66fc99e Initial load
duke
parents:
diff changeset
4201 JNIWrapper("GetStringRegion");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4202 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4203 DTRACE_PROBE5(hotspot_jni, GetStringRegion__entry, env, string, start, len, buf);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4204 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4205 HOTSPOT_JNI_GETSTRINGREGION_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4206 env, string, start, len, buf);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4207 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4208 DT_VOID_RETURN_MARK(GetStringRegion);
a61af66fc99e Initial load
duke
parents:
diff changeset
4209 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
4210 int s_len = java_lang_String::length(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
4211 if (start < 0 || len < 0 || start + len > s_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4212 THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException());
a61af66fc99e Initial load
duke
parents:
diff changeset
4213 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
4214 if (len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4215 int s_offset = java_lang_String::offset(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
4216 typeArrayOop s_value = java_lang_String::value(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
4217 memcpy(buf, s_value->char_at_addr(s_offset+start), sizeof(jchar)*len);
a61af66fc99e Initial load
duke
parents:
diff changeset
4218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4220 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4221
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4222 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4223 DT_VOID_RETURN_MARK_DECL(GetStringUTFRegion);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4224 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4225 DT_VOID_RETURN_MARK_DECL(GetStringUTFRegion
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4226 , HOTSPOT_JNI_GETSTRINGUTFREGION_RETURN());
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4227 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4228
a61af66fc99e Initial load
duke
parents:
diff changeset
4229 JNI_ENTRY(void, jni_GetStringUTFRegion(JNIEnv *env, jstring string, jsize start, jsize len, char *buf))
a61af66fc99e Initial load
duke
parents:
diff changeset
4230 JNIWrapper("GetStringUTFRegion");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4231 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4232 DTRACE_PROBE5(hotspot_jni, GetStringUTFRegion__entry, env, string, start, len, buf);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4233 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4234 HOTSPOT_JNI_GETSTRINGUTFREGION_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4235 env, string, start, len, buf);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4236 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4237 DT_VOID_RETURN_MARK(GetStringUTFRegion);
a61af66fc99e Initial load
duke
parents:
diff changeset
4238 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
4239 int s_len = java_lang_String::length(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
4240 if (start < 0 || len < 0 || start + len > s_len) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4241 THROW(vmSymbols::java_lang_StringIndexOutOfBoundsException());
a61af66fc99e Initial load
duke
parents:
diff changeset
4242 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
4243 //%note jni_7
a61af66fc99e Initial load
duke
parents:
diff changeset
4244 if (len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4245 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
4246 char *utf_region = java_lang_String::as_utf8_string(s, start, len);
a61af66fc99e Initial load
duke
parents:
diff changeset
4247 int utf_len = (int)strlen(utf_region);
a61af66fc99e Initial load
duke
parents:
diff changeset
4248 memcpy(buf, utf_region, utf_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
4249 buf[utf_len] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4250 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
4251 // JDK null-terminates the buffer even in len is zero
a61af66fc99e Initial load
duke
parents:
diff changeset
4252 if (buf != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4253 buf[0] = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4257 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4258
a61af66fc99e Initial load
duke
parents:
diff changeset
4259
a61af66fc99e Initial load
duke
parents:
diff changeset
4260 JNI_ENTRY(void*, jni_GetPrimitiveArrayCritical(JNIEnv *env, jarray array, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
4261 JNIWrapper("GetPrimitiveArrayCritical");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4262 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4263 DTRACE_PROBE3(hotspot_jni, GetPrimitiveArrayCritical__entry, env, array, isCopy);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4264 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4265 HOTSPOT_JNI_GETPRIMITIVEARRAYCRITICAL_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4266 env, array, (uintptr_t *) isCopy);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4267 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4268 GC_locker::lock_critical(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
4269 if (isCopy != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4270 *isCopy = JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
4271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4272 oop a = JNIHandles::resolve_non_null(array);
a61af66fc99e Initial load
duke
parents:
diff changeset
4273 assert(a->is_array(), "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
4274 BasicType type;
a61af66fc99e Initial load
duke
parents:
diff changeset
4275 if (a->is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4276 type = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
4277 } else {
6831
d8ce2825b193 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 6725
diff changeset
4278 type = TypeArrayKlass::cast(a->klass())->element_type();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4280 void* ret = arrayOop(a)->base(type);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4281 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4282 DTRACE_PROBE1(hotspot_jni, GetPrimitiveArrayCritical__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4283 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4284 HOTSPOT_JNI_GETPRIMITIVEARRAYCRITICAL_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4285 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4286 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4287 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4288 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4289
a61af66fc99e Initial load
duke
parents:
diff changeset
4290
a61af66fc99e Initial load
duke
parents:
diff changeset
4291 JNI_ENTRY(void, jni_ReleasePrimitiveArrayCritical(JNIEnv *env, jarray array, void *carray, jint mode))
a61af66fc99e Initial load
duke
parents:
diff changeset
4292 JNIWrapper("ReleasePrimitiveArrayCritical");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4293 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4294 DTRACE_PROBE4(hotspot_jni, ReleasePrimitiveArrayCritical__entry, env, array, carray, mode);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4295 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4296 HOTSPOT_JNI_RELEASEPRIMITIVEARRAYCRITICAL_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4297 env, array, carray, mode);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4298 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4299 // The array, carray and mode arguments are ignored
a61af66fc99e Initial load
duke
parents:
diff changeset
4300 GC_locker::unlock_critical(thread);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4301 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4302 DTRACE_PROBE(hotspot_jni, ReleasePrimitiveArrayCritical__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4303 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4304 HOTSPOT_JNI_RELEASEPRIMITIVEARRAYCRITICAL_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4305 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4306 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4307 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4308
a61af66fc99e Initial load
duke
parents:
diff changeset
4309
a61af66fc99e Initial load
duke
parents:
diff changeset
4310 JNI_ENTRY(const jchar*, jni_GetStringCritical(JNIEnv *env, jstring string, jboolean *isCopy))
a61af66fc99e Initial load
duke
parents:
diff changeset
4311 JNIWrapper("GetStringCritical");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4312 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4313 DTRACE_PROBE3(hotspot_jni, GetStringCritical__entry, env, string, isCopy);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4314 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4315 HOTSPOT_JNI_GETSTRINGCRITICAL_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4316 env, string, (uintptr_t *) isCopy);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4317 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4318 GC_locker::lock_critical(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
4319 if (isCopy != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4320 *isCopy = JNI_FALSE;
a61af66fc99e Initial load
duke
parents:
diff changeset
4321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4322 oop s = JNIHandles::resolve_non_null(string);
a61af66fc99e Initial load
duke
parents:
diff changeset
4323 int s_len = java_lang_String::length(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
4324 typeArrayOop s_value = java_lang_String::value(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
4325 int s_offset = java_lang_String::offset(s);
a61af66fc99e Initial load
duke
parents:
diff changeset
4326 const jchar* ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4327 if (s_len > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4328 ret = s_value->char_at_addr(s_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
4329 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
4330 ret = (jchar*) s_value->base(T_CHAR);
a61af66fc99e Initial load
duke
parents:
diff changeset
4331 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4332 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4333 DTRACE_PROBE1(hotspot_jni, GetStringCritical__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4334 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4335 HOTSPOT_JNI_GETSTRINGCRITICAL_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4336 (uint16_t *) ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4337 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4338 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4339 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4340
a61af66fc99e Initial load
duke
parents:
diff changeset
4341
a61af66fc99e Initial load
duke
parents:
diff changeset
4342 JNI_ENTRY(void, jni_ReleaseStringCritical(JNIEnv *env, jstring str, const jchar *chars))
a61af66fc99e Initial load
duke
parents:
diff changeset
4343 JNIWrapper("ReleaseStringCritical");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4344 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4345 DTRACE_PROBE3(hotspot_jni, ReleaseStringCritical__entry, env, str, chars);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4346 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4347 HOTSPOT_JNI_RELEASESTRINGCRITICAL_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4348 env, str, (uint16_t *) chars);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4349 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4350 // The str and chars arguments are ignored
a61af66fc99e Initial load
duke
parents:
diff changeset
4351 GC_locker::unlock_critical(thread);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4352 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4353 DTRACE_PROBE(hotspot_jni, ReleaseStringCritical__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4354 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4355 HOTSPOT_JNI_RELEASESTRINGCRITICAL_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4356 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4357 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4358 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4359
a61af66fc99e Initial load
duke
parents:
diff changeset
4360
a61af66fc99e Initial load
duke
parents:
diff changeset
4361 JNI_ENTRY(jweak, jni_NewWeakGlobalRef(JNIEnv *env, jobject ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
4362 JNIWrapper("jni_NewWeakGlobalRef");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4363 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4364 DTRACE_PROBE2(hotspot_jni, NewWeakGlobalRef__entry, env, ref);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4365 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4366 HOTSPOT_JNI_NEWWEAKGLOBALREF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4367 env, ref);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4368 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4369 Handle ref_handle(thread, JNIHandles::resolve(ref));
a61af66fc99e Initial load
duke
parents:
diff changeset
4370 jweak ret = JNIHandles::make_weak_global(ref_handle);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4371 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4372 DTRACE_PROBE1(hotspot_jni, NewWeakGlobalRef__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4373 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4374 HOTSPOT_JNI_NEWWEAKGLOBALREF_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4375 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4376 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4377 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4378 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4379
a61af66fc99e Initial load
duke
parents:
diff changeset
4380 // Must be JNI_ENTRY (with HandleMark)
a61af66fc99e Initial load
duke
parents:
diff changeset
4381 JNI_ENTRY(void, jni_DeleteWeakGlobalRef(JNIEnv *env, jweak ref))
a61af66fc99e Initial load
duke
parents:
diff changeset
4382 JNIWrapper("jni_DeleteWeakGlobalRef");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4383 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4384 DTRACE_PROBE2(hotspot_jni, DeleteWeakGlobalRef__entry, env, ref);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4385 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4386 HOTSPOT_JNI_DELETEWEAKGLOBALREF_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4387 env, ref);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4388 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4389 JNIHandles::destroy_weak_global(ref);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4390 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4391 DTRACE_PROBE(hotspot_jni, DeleteWeakGlobalRef__return);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4392 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4393 HOTSPOT_JNI_DELETEWEAKGLOBALREF_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4394 );
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4395 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4396 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4397
a61af66fc99e Initial load
duke
parents:
diff changeset
4398
a61af66fc99e Initial load
duke
parents:
diff changeset
4399 JNI_QUICK_ENTRY(jboolean, jni_ExceptionCheck(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
4400 JNIWrapper("jni_ExceptionCheck");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4401 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4402 DTRACE_PROBE1(hotspot_jni, ExceptionCheck__entry, env);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4403 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4404 HOTSPOT_JNI_EXCEPTIONCHECK_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4405 env);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4406 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4407 jni_check_async_exceptions(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
4408 jboolean ret = (thread->has_pending_exception()) ? JNI_TRUE : JNI_FALSE;
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4409 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4410 DTRACE_PROBE1(hotspot_jni, ExceptionCheck__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4411 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4412 HOTSPOT_JNI_EXCEPTIONCHECK_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4413 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4414 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4415 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4416 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4417
a61af66fc99e Initial load
duke
parents:
diff changeset
4418
a61af66fc99e Initial load
duke
parents:
diff changeset
4419 // Initialization state for three routines below relating to
a61af66fc99e Initial load
duke
parents:
diff changeset
4420 // java.nio.DirectBuffers
a61af66fc99e Initial load
duke
parents:
diff changeset
4421 static jint directBufferSupportInitializeStarted = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4422 static volatile jint directBufferSupportInitializeEnded = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4423 static volatile jint directBufferSupportInitializeFailed = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4424 static jclass bufferClass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4425 static jclass directBufferClass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4426 static jclass directByteBufferClass = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4427 static jmethodID directByteBufferConstructor = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4428 static jfieldID directBufferAddressField = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4429 static jfieldID bufferCapacityField = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4430
a61af66fc99e Initial load
duke
parents:
diff changeset
4431 static jclass lookupOne(JNIEnv* env, const char* name, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4432 Handle loader; // null (bootstrap) loader
a61af66fc99e Initial load
duke
parents:
diff changeset
4433 Handle protection_domain; // null protection domain
a61af66fc99e Initial load
duke
parents:
diff changeset
4434
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1989
diff changeset
4435 TempNewSymbol sym = SymbolTable::new_symbol(name, CHECK_NULL);
657
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
4436 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
4437
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
4438 if (TraceClassResolution && result != NULL) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
4439 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
4440 }
715dceaa89b7 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 579
diff changeset
4441 return result;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4442 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4443
a61af66fc99e Initial load
duke
parents:
diff changeset
4444 // These lookups are done with the NULL (bootstrap) ClassLoader to
a61af66fc99e Initial load
duke
parents:
diff changeset
4445 // circumvent any security checks that would be done by jni_FindClass.
a61af66fc99e Initial load
duke
parents:
diff changeset
4446 JNI_ENTRY(bool, lookupDirectBufferClasses(JNIEnv* env))
a61af66fc99e Initial load
duke
parents:
diff changeset
4447 {
a61af66fc99e Initial load
duke
parents:
diff changeset
4448 if ((bufferClass = lookupOne(env, "java/nio/Buffer", thread)) == NULL) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
4449 if ((directBufferClass = lookupOne(env, "sun/nio/ch/DirectBuffer", thread)) == NULL) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
4450 if ((directByteBufferClass = lookupOne(env, "java/nio/DirectByteBuffer", thread)) == NULL) { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
4451 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
4452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4453 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4454
a61af66fc99e Initial load
duke
parents:
diff changeset
4455
a61af66fc99e Initial load
duke
parents:
diff changeset
4456 static bool initializeDirectBufferSupport(JNIEnv* env, JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4457 if (directBufferSupportInitializeFailed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4458 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4459 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4460
a61af66fc99e Initial load
duke
parents:
diff changeset
4461 if (Atomic::cmpxchg(1, &directBufferSupportInitializeStarted, 0) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4462 if (!lookupDirectBufferClasses(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4463 directBufferSupportInitializeFailed = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4464 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4465 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4466
a61af66fc99e Initial load
duke
parents:
diff changeset
4467 // Make global references for these
a61af66fc99e Initial load
duke
parents:
diff changeset
4468 bufferClass = (jclass) env->NewGlobalRef(bufferClass);
a61af66fc99e Initial load
duke
parents:
diff changeset
4469 directBufferClass = (jclass) env->NewGlobalRef(directBufferClass);
a61af66fc99e Initial load
duke
parents:
diff changeset
4470 directByteBufferClass = (jclass) env->NewGlobalRef(directByteBufferClass);
a61af66fc99e Initial load
duke
parents:
diff changeset
4471
a61af66fc99e Initial load
duke
parents:
diff changeset
4472 // Get needed field and method IDs
a61af66fc99e Initial load
duke
parents:
diff changeset
4473 directByteBufferConstructor = env->GetMethodID(directByteBufferClass, "<init>", "(JI)V");
17704
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4474 if (env->ExceptionCheck()) {
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4475 env->ExceptionClear();
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4476 directBufferSupportInitializeFailed = 1;
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4477 return false;
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4478 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4479 directBufferAddressField = env->GetFieldID(bufferClass, "address", "J");
17704
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4480 if (env->ExceptionCheck()) {
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4481 env->ExceptionClear();
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4482 directBufferSupportInitializeFailed = 1;
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4483 return false;
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4484 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4485 bufferCapacityField = env->GetFieldID(bufferClass, "capacity", "I");
17704
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4486 if (env->ExceptionCheck()) {
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4487 env->ExceptionClear();
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4488 directBufferSupportInitializeFailed = 1;
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4489 return false;
56cd09c4a5c9 8028785: [parfait] warnings from b116 for hotspot.src.share.vm.prims: JNI exception pending
ccheung
parents: 17694
diff changeset
4490 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4491
a61af66fc99e Initial load
duke
parents:
diff changeset
4492 if ((directByteBufferConstructor == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4493 (directBufferAddressField == NULL) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
4494 (bufferCapacityField == NULL)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4495 directBufferSupportInitializeFailed = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4496 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
4497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4498
a61af66fc99e Initial load
duke
parents:
diff changeset
4499 directBufferSupportInitializeEnded = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4500 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
4501 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
4502 // 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
4503 // 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
4504 // 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
4505 // 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
4506 // 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
4507 ThreadInVMfromNative tivn(thread);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4508 os::yield_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
4509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4511
a61af66fc99e Initial load
duke
parents:
diff changeset
4512 return !directBufferSupportInitializeFailed;
a61af66fc99e Initial load
duke
parents:
diff changeset
4513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4514
a61af66fc99e Initial load
duke
parents:
diff changeset
4515 extern "C" jobject JNICALL jni_NewDirectByteBuffer(JNIEnv *env, void* address, jlong capacity)
a61af66fc99e Initial load
duke
parents:
diff changeset
4516 {
a61af66fc99e Initial load
duke
parents:
diff changeset
4517 // thread_from_jni_environment() will block if VM is gone.
a61af66fc99e Initial load
duke
parents:
diff changeset
4518 JavaThread* thread = JavaThread::thread_from_jni_environment(env);
a61af66fc99e Initial load
duke
parents:
diff changeset
4519
a61af66fc99e Initial load
duke
parents:
diff changeset
4520 JNIWrapper("jni_NewDirectByteBuffer");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4521 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4522 DTRACE_PROBE3(hotspot_jni, NewDirectByteBuffer__entry, env, address, capacity);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4523 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4524 HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4525 env, address, capacity);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4526 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4527
a61af66fc99e Initial load
duke
parents:
diff changeset
4528 if (!directBufferSupportInitializeEnded) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4529 if (!initializeDirectBufferSupport(env, thread)) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4530 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4531 DTRACE_PROBE1(hotspot_jni, NewDirectByteBuffer__return, NULL);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4532 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4533 HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4534 NULL);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4535 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4536 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4538 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4539
a61af66fc99e Initial load
duke
parents:
diff changeset
4540 // Being paranoid about accidental sign extension on address
a61af66fc99e Initial load
duke
parents:
diff changeset
4541 jlong addr = (jlong) ((uintptr_t) address);
a61af66fc99e Initial load
duke
parents:
diff changeset
4542 // NOTE that package-private DirectByteBuffer constructor currently
a61af66fc99e Initial load
duke
parents:
diff changeset
4543 // takes int capacity
a61af66fc99e Initial load
duke
parents:
diff changeset
4544 jint cap = (jint) capacity;
a61af66fc99e Initial load
duke
parents:
diff changeset
4545 jobject ret = env->NewObject(directByteBufferClass, directByteBufferConstructor, addr, cap);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4546 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4547 DTRACE_PROBE1(hotspot_jni, NewDirectByteBuffer__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4548 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4549 HOTSPOT_JNI_NEWDIRECTBYTEBUFFER_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4550 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4551 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4552 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4554
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4555 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4556 DT_RETURN_MARK_DECL(GetDirectBufferAddress, void*);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4557 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4558 DT_RETURN_MARK_DECL(GetDirectBufferAddress, void*
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4559 , HOTSPOT_JNI_GETDIRECTBUFFERADDRESS_RETURN((void*) _ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4560 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4561
a61af66fc99e Initial load
duke
parents:
diff changeset
4562 extern "C" void* JNICALL jni_GetDirectBufferAddress(JNIEnv *env, jobject buf)
a61af66fc99e Initial load
duke
parents:
diff changeset
4563 {
a61af66fc99e Initial load
duke
parents:
diff changeset
4564 // thread_from_jni_environment() will block if VM is gone.
a61af66fc99e Initial load
duke
parents:
diff changeset
4565 JavaThread* thread = JavaThread::thread_from_jni_environment(env);
a61af66fc99e Initial load
duke
parents:
diff changeset
4566
a61af66fc99e Initial load
duke
parents:
diff changeset
4567 JNIWrapper("jni_GetDirectBufferAddress");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4568 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4569 DTRACE_PROBE2(hotspot_jni, GetDirectBufferAddress__entry, env, buf);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4570 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4571 HOTSPOT_JNI_GETDIRECTBUFFERADDRESS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4572 env, buf);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4573 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4574 void* ret = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
4575 DT_RETURN_MARK(GetDirectBufferAddress, void*, (const void*&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
4576
a61af66fc99e Initial load
duke
parents:
diff changeset
4577 if (!directBufferSupportInitializeEnded) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4578 if (!initializeDirectBufferSupport(env, thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4579 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4582
a61af66fc99e Initial load
duke
parents:
diff changeset
4583 if ((buf != NULL) && (!env->IsInstanceOf(buf, directBufferClass))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4584 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4586
a61af66fc99e Initial load
duke
parents:
diff changeset
4587 ret = (void*)(intptr_t)env->GetLongField(buf, directBufferAddressField);
a61af66fc99e Initial load
duke
parents:
diff changeset
4588 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4590
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4591 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4592 DT_RETURN_MARK_DECL(GetDirectBufferCapacity, jlong);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4593 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4594 DT_RETURN_MARK_DECL(GetDirectBufferCapacity, jlong
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4595 , HOTSPOT_JNI_GETDIRECTBUFFERCAPACITY_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4596 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4597
a61af66fc99e Initial load
duke
parents:
diff changeset
4598 extern "C" jlong JNICALL jni_GetDirectBufferCapacity(JNIEnv *env, jobject buf)
a61af66fc99e Initial load
duke
parents:
diff changeset
4599 {
a61af66fc99e Initial load
duke
parents:
diff changeset
4600 // thread_from_jni_environment() will block if VM is gone.
a61af66fc99e Initial load
duke
parents:
diff changeset
4601 JavaThread* thread = JavaThread::thread_from_jni_environment(env);
a61af66fc99e Initial load
duke
parents:
diff changeset
4602
a61af66fc99e Initial load
duke
parents:
diff changeset
4603 JNIWrapper("jni_GetDirectBufferCapacity");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4604 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4605 DTRACE_PROBE2(hotspot_jni, GetDirectBufferCapacity__entry, env, buf);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4606 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4607 HOTSPOT_JNI_GETDIRECTBUFFERCAPACITY_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4608 env, buf);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4609 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4610 jlong ret = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4611 DT_RETURN_MARK(GetDirectBufferCapacity, jlong, (const jlong&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
4612
a61af66fc99e Initial load
duke
parents:
diff changeset
4613 if (!directBufferSupportInitializeEnded) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4614 if (!initializeDirectBufferSupport(env, thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4615 ret = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
4616 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4617 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4619
a61af66fc99e Initial load
duke
parents:
diff changeset
4620 if (buf == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4621 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4623
a61af66fc99e Initial load
duke
parents:
diff changeset
4624 if (!env->IsInstanceOf(buf, directBufferClass)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4625 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
4626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4627
a61af66fc99e Initial load
duke
parents:
diff changeset
4628 // NOTE that capacity is currently an int in the implementation
a61af66fc99e Initial load
duke
parents:
diff changeset
4629 ret = env->GetIntField(buf, bufferCapacityField);
a61af66fc99e Initial load
duke
parents:
diff changeset
4630 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
4631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4632
a61af66fc99e Initial load
duke
parents:
diff changeset
4633
a61af66fc99e Initial load
duke
parents:
diff changeset
4634 JNI_LEAF(jint, jni_GetVersion(JNIEnv *env))
a61af66fc99e Initial load
duke
parents:
diff changeset
4635 JNIWrapper("GetVersion");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4636 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4637 DTRACE_PROBE1(hotspot_jni, GetVersion__entry, env);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4638 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4639 HOTSPOT_JNI_GETVERSION_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4640 env);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4641 #endif /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4642 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4643 DTRACE_PROBE1(hotspot_jni, GetVersion__return, CurrentVersion);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4644 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4645 HOTSPOT_JNI_GETVERSION_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4646 CurrentVersion);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4647 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4648 return CurrentVersion;
a61af66fc99e Initial load
duke
parents:
diff changeset
4649 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4650
a61af66fc99e Initial load
duke
parents:
diff changeset
4651 extern struct JavaVM_ main_vm;
a61af66fc99e Initial load
duke
parents:
diff changeset
4652
a61af66fc99e Initial load
duke
parents:
diff changeset
4653 JNI_LEAF(jint, jni_GetJavaVM(JNIEnv *env, JavaVM **vm))
a61af66fc99e Initial load
duke
parents:
diff changeset
4654 JNIWrapper("jni_GetJavaVM");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4655 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4656 DTRACE_PROBE2(hotspot_jni, GetJavaVM__entry, env, vm);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4657 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4658 HOTSPOT_JNI_GETJAVAVM_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4659 env, (void **) vm);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4660 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4661 *vm = (JavaVM *)(&main_vm);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4662 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4663 DTRACE_PROBE1(hotspot_jni, GetJavaVM__return, JNI_OK);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4664 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4665 HOTSPOT_JNI_GETJAVAVM_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4666 JNI_OK);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
4667 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4668 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
4669 JNI_END
a61af66fc99e Initial load
duke
parents:
diff changeset
4670
a61af66fc99e Initial load
duke
parents:
diff changeset
4671 // Structure containing all jni functions
a61af66fc99e Initial load
duke
parents:
diff changeset
4672 struct JNINativeInterface_ jni_NativeInterface = {
a61af66fc99e Initial load
duke
parents:
diff changeset
4673 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
4674 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
4675 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
4676
a61af66fc99e Initial load
duke
parents:
diff changeset
4677 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
4678
a61af66fc99e Initial load
duke
parents:
diff changeset
4679 jni_GetVersion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4680
a61af66fc99e Initial load
duke
parents:
diff changeset
4681 jni_DefineClass,
a61af66fc99e Initial load
duke
parents:
diff changeset
4682 jni_FindClass,
a61af66fc99e Initial load
duke
parents:
diff changeset
4683
a61af66fc99e Initial load
duke
parents:
diff changeset
4684 jni_FromReflectedMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4685 jni_FromReflectedField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4686
a61af66fc99e Initial load
duke
parents:
diff changeset
4687 jni_ToReflectedMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4688
a61af66fc99e Initial load
duke
parents:
diff changeset
4689 jni_GetSuperclass,
a61af66fc99e Initial load
duke
parents:
diff changeset
4690 jni_IsAssignableFrom,
a61af66fc99e Initial load
duke
parents:
diff changeset
4691
a61af66fc99e Initial load
duke
parents:
diff changeset
4692 jni_ToReflectedField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4693
a61af66fc99e Initial load
duke
parents:
diff changeset
4694 jni_Throw,
a61af66fc99e Initial load
duke
parents:
diff changeset
4695 jni_ThrowNew,
a61af66fc99e Initial load
duke
parents:
diff changeset
4696 jni_ExceptionOccurred,
a61af66fc99e Initial load
duke
parents:
diff changeset
4697 jni_ExceptionDescribe,
a61af66fc99e Initial load
duke
parents:
diff changeset
4698 jni_ExceptionClear,
a61af66fc99e Initial load
duke
parents:
diff changeset
4699 jni_FatalError,
a61af66fc99e Initial load
duke
parents:
diff changeset
4700
a61af66fc99e Initial load
duke
parents:
diff changeset
4701 jni_PushLocalFrame,
a61af66fc99e Initial load
duke
parents:
diff changeset
4702 jni_PopLocalFrame,
a61af66fc99e Initial load
duke
parents:
diff changeset
4703
a61af66fc99e Initial load
duke
parents:
diff changeset
4704 jni_NewGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
4705 jni_DeleteGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
4706 jni_DeleteLocalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
4707 jni_IsSameObject,
a61af66fc99e Initial load
duke
parents:
diff changeset
4708
a61af66fc99e Initial load
duke
parents:
diff changeset
4709 jni_NewLocalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
4710 jni_EnsureLocalCapacity,
a61af66fc99e Initial load
duke
parents:
diff changeset
4711
a61af66fc99e Initial load
duke
parents:
diff changeset
4712 jni_AllocObject,
a61af66fc99e Initial load
duke
parents:
diff changeset
4713 jni_NewObject,
a61af66fc99e Initial load
duke
parents:
diff changeset
4714 jni_NewObjectV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4715 jni_NewObjectA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4716
a61af66fc99e Initial load
duke
parents:
diff changeset
4717 jni_GetObjectClass,
a61af66fc99e Initial load
duke
parents:
diff changeset
4718 jni_IsInstanceOf,
a61af66fc99e Initial load
duke
parents:
diff changeset
4719
a61af66fc99e Initial load
duke
parents:
diff changeset
4720 jni_GetMethodID,
a61af66fc99e Initial load
duke
parents:
diff changeset
4721
a61af66fc99e Initial load
duke
parents:
diff changeset
4722 jni_CallObjectMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4723 jni_CallObjectMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4724 jni_CallObjectMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4725 jni_CallBooleanMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4726 jni_CallBooleanMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4727 jni_CallBooleanMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4728 jni_CallByteMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4729 jni_CallByteMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4730 jni_CallByteMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4731 jni_CallCharMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4732 jni_CallCharMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4733 jni_CallCharMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4734 jni_CallShortMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4735 jni_CallShortMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4736 jni_CallShortMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4737 jni_CallIntMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4738 jni_CallIntMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4739 jni_CallIntMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4740 jni_CallLongMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4741 jni_CallLongMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4742 jni_CallLongMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4743 jni_CallFloatMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4744 jni_CallFloatMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4745 jni_CallFloatMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4746 jni_CallDoubleMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4747 jni_CallDoubleMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4748 jni_CallDoubleMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4749 jni_CallVoidMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4750 jni_CallVoidMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4751 jni_CallVoidMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4752
a61af66fc99e Initial load
duke
parents:
diff changeset
4753 jni_CallNonvirtualObjectMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4754 jni_CallNonvirtualObjectMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4755 jni_CallNonvirtualObjectMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4756 jni_CallNonvirtualBooleanMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4757 jni_CallNonvirtualBooleanMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4758 jni_CallNonvirtualBooleanMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4759 jni_CallNonvirtualByteMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4760 jni_CallNonvirtualByteMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4761 jni_CallNonvirtualByteMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4762 jni_CallNonvirtualCharMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4763 jni_CallNonvirtualCharMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4764 jni_CallNonvirtualCharMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4765 jni_CallNonvirtualShortMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4766 jni_CallNonvirtualShortMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4767 jni_CallNonvirtualShortMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4768 jni_CallNonvirtualIntMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4769 jni_CallNonvirtualIntMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4770 jni_CallNonvirtualIntMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4771 jni_CallNonvirtualLongMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4772 jni_CallNonvirtualLongMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4773 jni_CallNonvirtualLongMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4774 jni_CallNonvirtualFloatMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4775 jni_CallNonvirtualFloatMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4776 jni_CallNonvirtualFloatMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4777 jni_CallNonvirtualDoubleMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4778 jni_CallNonvirtualDoubleMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4779 jni_CallNonvirtualDoubleMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4780 jni_CallNonvirtualVoidMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4781 jni_CallNonvirtualVoidMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4782 jni_CallNonvirtualVoidMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4783
a61af66fc99e Initial load
duke
parents:
diff changeset
4784 jni_GetFieldID,
a61af66fc99e Initial load
duke
parents:
diff changeset
4785
a61af66fc99e Initial load
duke
parents:
diff changeset
4786 jni_GetObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4787 jni_GetBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4788 jni_GetByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4789 jni_GetCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4790 jni_GetShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4791 jni_GetIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4792 jni_GetLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4793 jni_GetFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4794 jni_GetDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4795
a61af66fc99e Initial load
duke
parents:
diff changeset
4796 jni_SetObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4797 jni_SetBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4798 jni_SetByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4799 jni_SetCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4800 jni_SetShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4801 jni_SetIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4802 jni_SetLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4803 jni_SetFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4804 jni_SetDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4805
a61af66fc99e Initial load
duke
parents:
diff changeset
4806 jni_GetStaticMethodID,
a61af66fc99e Initial load
duke
parents:
diff changeset
4807
a61af66fc99e Initial load
duke
parents:
diff changeset
4808 jni_CallStaticObjectMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4809 jni_CallStaticObjectMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4810 jni_CallStaticObjectMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4811 jni_CallStaticBooleanMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4812 jni_CallStaticBooleanMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4813 jni_CallStaticBooleanMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4814 jni_CallStaticByteMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4815 jni_CallStaticByteMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4816 jni_CallStaticByteMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4817 jni_CallStaticCharMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4818 jni_CallStaticCharMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4819 jni_CallStaticCharMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4820 jni_CallStaticShortMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4821 jni_CallStaticShortMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4822 jni_CallStaticShortMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4823 jni_CallStaticIntMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4824 jni_CallStaticIntMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4825 jni_CallStaticIntMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4826 jni_CallStaticLongMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4827 jni_CallStaticLongMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4828 jni_CallStaticLongMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4829 jni_CallStaticFloatMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4830 jni_CallStaticFloatMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4831 jni_CallStaticFloatMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4832 jni_CallStaticDoubleMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4833 jni_CallStaticDoubleMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4834 jni_CallStaticDoubleMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4835 jni_CallStaticVoidMethod,
a61af66fc99e Initial load
duke
parents:
diff changeset
4836 jni_CallStaticVoidMethodV,
a61af66fc99e Initial load
duke
parents:
diff changeset
4837 jni_CallStaticVoidMethodA,
a61af66fc99e Initial load
duke
parents:
diff changeset
4838
a61af66fc99e Initial load
duke
parents:
diff changeset
4839 jni_GetStaticFieldID,
a61af66fc99e Initial load
duke
parents:
diff changeset
4840
a61af66fc99e Initial load
duke
parents:
diff changeset
4841 jni_GetStaticObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4842 jni_GetStaticBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4843 jni_GetStaticByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4844 jni_GetStaticCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4845 jni_GetStaticShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4846 jni_GetStaticIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4847 jni_GetStaticLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4848 jni_GetStaticFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4849 jni_GetStaticDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4850
a61af66fc99e Initial load
duke
parents:
diff changeset
4851 jni_SetStaticObjectField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4852 jni_SetStaticBooleanField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4853 jni_SetStaticByteField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4854 jni_SetStaticCharField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4855 jni_SetStaticShortField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4856 jni_SetStaticIntField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4857 jni_SetStaticLongField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4858 jni_SetStaticFloatField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4859 jni_SetStaticDoubleField,
a61af66fc99e Initial load
duke
parents:
diff changeset
4860
a61af66fc99e Initial load
duke
parents:
diff changeset
4861 jni_NewString,
a61af66fc99e Initial load
duke
parents:
diff changeset
4862 jni_GetStringLength,
a61af66fc99e Initial load
duke
parents:
diff changeset
4863 jni_GetStringChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
4864 jni_ReleaseStringChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
4865
a61af66fc99e Initial load
duke
parents:
diff changeset
4866 jni_NewStringUTF,
a61af66fc99e Initial load
duke
parents:
diff changeset
4867 jni_GetStringUTFLength,
a61af66fc99e Initial load
duke
parents:
diff changeset
4868 jni_GetStringUTFChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
4869 jni_ReleaseStringUTFChars,
a61af66fc99e Initial load
duke
parents:
diff changeset
4870
a61af66fc99e Initial load
duke
parents:
diff changeset
4871 jni_GetArrayLength,
a61af66fc99e Initial load
duke
parents:
diff changeset
4872
a61af66fc99e Initial load
duke
parents:
diff changeset
4873 jni_NewObjectArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4874 jni_GetObjectArrayElement,
a61af66fc99e Initial load
duke
parents:
diff changeset
4875 jni_SetObjectArrayElement,
a61af66fc99e Initial load
duke
parents:
diff changeset
4876
a61af66fc99e Initial load
duke
parents:
diff changeset
4877 jni_NewBooleanArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4878 jni_NewByteArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4879 jni_NewCharArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4880 jni_NewShortArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4881 jni_NewIntArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4882 jni_NewLongArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4883 jni_NewFloatArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4884 jni_NewDoubleArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
4885
a61af66fc99e Initial load
duke
parents:
diff changeset
4886 jni_GetBooleanArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4887 jni_GetByteArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4888 jni_GetCharArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4889 jni_GetShortArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4890 jni_GetIntArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4891 jni_GetLongArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4892 jni_GetFloatArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4893 jni_GetDoubleArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4894
a61af66fc99e Initial load
duke
parents:
diff changeset
4895 jni_ReleaseBooleanArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4896 jni_ReleaseByteArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4897 jni_ReleaseCharArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4898 jni_ReleaseShortArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4899 jni_ReleaseIntArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4900 jni_ReleaseLongArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4901 jni_ReleaseFloatArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4902 jni_ReleaseDoubleArrayElements,
a61af66fc99e Initial load
duke
parents:
diff changeset
4903
a61af66fc99e Initial load
duke
parents:
diff changeset
4904 jni_GetBooleanArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4905 jni_GetByteArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4906 jni_GetCharArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4907 jni_GetShortArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4908 jni_GetIntArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4909 jni_GetLongArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4910 jni_GetFloatArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4911 jni_GetDoubleArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4912
a61af66fc99e Initial load
duke
parents:
diff changeset
4913 jni_SetBooleanArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4914 jni_SetByteArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4915 jni_SetCharArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4916 jni_SetShortArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4917 jni_SetIntArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4918 jni_SetLongArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4919 jni_SetFloatArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4920 jni_SetDoubleArrayRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4921
a61af66fc99e Initial load
duke
parents:
diff changeset
4922 jni_RegisterNatives,
a61af66fc99e Initial load
duke
parents:
diff changeset
4923 jni_UnregisterNatives,
a61af66fc99e Initial load
duke
parents:
diff changeset
4924
a61af66fc99e Initial load
duke
parents:
diff changeset
4925 jni_MonitorEnter,
a61af66fc99e Initial load
duke
parents:
diff changeset
4926 jni_MonitorExit,
a61af66fc99e Initial load
duke
parents:
diff changeset
4927
a61af66fc99e Initial load
duke
parents:
diff changeset
4928 jni_GetJavaVM,
a61af66fc99e Initial load
duke
parents:
diff changeset
4929
a61af66fc99e Initial load
duke
parents:
diff changeset
4930 jni_GetStringRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4931 jni_GetStringUTFRegion,
a61af66fc99e Initial load
duke
parents:
diff changeset
4932
a61af66fc99e Initial load
duke
parents:
diff changeset
4933 jni_GetPrimitiveArrayCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
4934 jni_ReleasePrimitiveArrayCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
4935
a61af66fc99e Initial load
duke
parents:
diff changeset
4936 jni_GetStringCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
4937 jni_ReleaseStringCritical,
a61af66fc99e Initial load
duke
parents:
diff changeset
4938
a61af66fc99e Initial load
duke
parents:
diff changeset
4939 jni_NewWeakGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
4940 jni_DeleteWeakGlobalRef,
a61af66fc99e Initial load
duke
parents:
diff changeset
4941
a61af66fc99e Initial load
duke
parents:
diff changeset
4942 jni_ExceptionCheck,
a61af66fc99e Initial load
duke
parents:
diff changeset
4943
a61af66fc99e Initial load
duke
parents:
diff changeset
4944 jni_NewDirectByteBuffer,
a61af66fc99e Initial load
duke
parents:
diff changeset
4945 jni_GetDirectBufferAddress,
a61af66fc99e Initial load
duke
parents:
diff changeset
4946 jni_GetDirectBufferCapacity,
a61af66fc99e Initial load
duke
parents:
diff changeset
4947
a61af66fc99e Initial load
duke
parents:
diff changeset
4948 // New 1_6 features
a61af66fc99e Initial load
duke
parents:
diff changeset
4949
a61af66fc99e Initial load
duke
parents:
diff changeset
4950 jni_GetObjectRefType
a61af66fc99e Initial load
duke
parents:
diff changeset
4951 };
a61af66fc99e Initial load
duke
parents:
diff changeset
4952
a61af66fc99e Initial load
duke
parents:
diff changeset
4953
a61af66fc99e Initial load
duke
parents:
diff changeset
4954 // For jvmti use to modify jni function table.
a61af66fc99e Initial load
duke
parents:
diff changeset
4955 // Java threads in native contiues to run until it is transitioned
a61af66fc99e Initial load
duke
parents:
diff changeset
4956 // to VM at safepoint. Before the transition or before it is blocked
a61af66fc99e Initial load
duke
parents:
diff changeset
4957 // for safepoint it may access jni function table. VM could crash if
a61af66fc99e Initial load
duke
parents:
diff changeset
4958 // any java thread access the jni function table in the middle of memcpy.
a61af66fc99e Initial load
duke
parents:
diff changeset
4959 // To avoid this each function pointers are copied automically.
a61af66fc99e Initial load
duke
parents:
diff changeset
4960 void copy_jni_function_table(const struct JNINativeInterface_ *new_jni_NativeInterface) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4961 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
4962 intptr_t *a = (intptr_t *) jni_functions();
a61af66fc99e Initial load
duke
parents:
diff changeset
4963 intptr_t *b = (intptr_t *) new_jni_NativeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
4964 for (uint i=0; i < sizeof(struct JNINativeInterface_)/sizeof(void *); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4965 Atomic::store_ptr(*b++, a++);
a61af66fc99e Initial load
duke
parents:
diff changeset
4966 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4967 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4968
a61af66fc99e Initial load
duke
parents:
diff changeset
4969 void quicken_jni_functions() {
a61af66fc99e Initial load
duke
parents:
diff changeset
4970 // Replace Get<Primitive>Field with fast versions
a61af66fc99e Initial load
duke
parents:
diff changeset
4971 if (UseFastJNIAccessors && !JvmtiExport::can_post_field_access()
a61af66fc99e Initial load
duke
parents:
diff changeset
4972 && !VerifyJNIFields && !TraceJNICalls && !CountJNICalls && !CheckJNICalls
a61af66fc99e Initial load
duke
parents:
diff changeset
4973 #if defined(_WINDOWS) && defined(IA32) && defined(COMPILER2)
a61af66fc99e Initial load
duke
parents:
diff changeset
4974 // windows x86 currently needs SEH wrapper and the gain of the fast
a61af66fc99e Initial load
duke
parents:
diff changeset
4975 // versions currently isn't certain for server vm on uniprocessor.
a61af66fc99e Initial load
duke
parents:
diff changeset
4976 && os::is_MP()
a61af66fc99e Initial load
duke
parents:
diff changeset
4977 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
4978 ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4979 address func;
a61af66fc99e Initial load
duke
parents:
diff changeset
4980 func = JNI_FastGetField::generate_fast_get_boolean_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
4981 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4982 jni_NativeInterface.GetBooleanField = (GetBooleanField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
4983 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4984 func = JNI_FastGetField::generate_fast_get_byte_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
4985 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4986 jni_NativeInterface.GetByteField = (GetByteField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
4987 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4988 func = JNI_FastGetField::generate_fast_get_char_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
4989 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4990 jni_NativeInterface.GetCharField = (GetCharField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
4991 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4992 func = JNI_FastGetField::generate_fast_get_short_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
4993 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4994 jni_NativeInterface.GetShortField = (GetShortField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
4995 }
a61af66fc99e Initial load
duke
parents:
diff changeset
4996 func = JNI_FastGetField::generate_fast_get_int_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
4997 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
4998 jni_NativeInterface.GetIntField = (GetIntField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
4999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5000 func = JNI_FastGetField::generate_fast_get_long_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
5001 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5002 jni_NativeInterface.GetLongField = (GetLongField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
5003 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5004 func = JNI_FastGetField::generate_fast_get_float_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
5005 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5006 jni_NativeInterface.GetFloatField = (GetFloatField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
5007 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5008 func = JNI_FastGetField::generate_fast_get_double_field();
a61af66fc99e Initial load
duke
parents:
diff changeset
5009 if (func != (address)-1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5010 jni_NativeInterface.GetDoubleField = (GetDoubleField_t)func;
a61af66fc99e Initial load
duke
parents:
diff changeset
5011 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5012 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5013 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5014
a61af66fc99e Initial load
duke
parents:
diff changeset
5015 // Returns the function structure
a61af66fc99e Initial load
duke
parents:
diff changeset
5016 struct JNINativeInterface_* jni_functions() {
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
5017 #if INCLUDE_JNI_CHECK
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5018 if (CheckJNICalls) return jni_functions_check();
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
5019 #endif // INCLUDE_JNI_CHECK
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5020 return &jni_NativeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
5021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5022
a61af66fc99e Initial load
duke
parents:
diff changeset
5023 // Returns the function structure
a61af66fc99e Initial load
duke
parents:
diff changeset
5024 struct JNINativeInterface_* jni_functions_nocheck() {
a61af66fc99e Initial load
duke
parents:
diff changeset
5025 return &jni_NativeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
5026 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5027
a61af66fc99e Initial load
duke
parents:
diff changeset
5028
a61af66fc99e Initial load
duke
parents:
diff changeset
5029 // Invocation API
a61af66fc99e Initial load
duke
parents:
diff changeset
5030
a61af66fc99e Initial load
duke
parents:
diff changeset
5031
a61af66fc99e Initial load
duke
parents:
diff changeset
5032 // Forward declaration
a61af66fc99e Initial load
duke
parents:
diff changeset
5033 extern const struct JNIInvokeInterface_ jni_InvokeInterface;
a61af66fc99e Initial load
duke
parents:
diff changeset
5034
a61af66fc99e Initial load
duke
parents:
diff changeset
5035 // Global invocation API vars
a61af66fc99e Initial load
duke
parents:
diff changeset
5036 volatile jint vm_created = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
5037 // Indicate whether it is safe to recreate VM
a61af66fc99e Initial load
duke
parents:
diff changeset
5038 volatile jint safe_to_recreate_vm = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
5039 struct JavaVM_ main_vm = {&jni_InvokeInterface};
a61af66fc99e Initial load
duke
parents:
diff changeset
5040
a61af66fc99e Initial load
duke
parents:
diff changeset
5041
a61af66fc99e Initial load
duke
parents:
diff changeset
5042 #define JAVASTACKSIZE (400 * 1024) /* Default size of a thread java stack */
a61af66fc99e Initial load
duke
parents:
diff changeset
5043 enum { VERIFY_NONE, VERIFY_REMOTE, VERIFY_ALL };
a61af66fc99e Initial load
duke
parents:
diff changeset
5044
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5045 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5046 HS_DTRACE_PROBE_DECL1(hotspot_jni, GetDefaultJavaVMInitArgs__entry, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
5047 DT_RETURN_MARK_DECL(GetDefaultJavaVMInitArgs, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5048 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5049 DT_RETURN_MARK_DECL(GetDefaultJavaVMInitArgs, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5050 , HOTSPOT_JNI_GETDEFAULTJAVAVMINITARGS_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5051 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5052
a61af66fc99e Initial load
duke
parents:
diff changeset
5053 _JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetDefaultJavaVMInitArgs(void *args_) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5054 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5055 HS_DTRACE_PROBE1(hotspot_jni, GetDefaultJavaVMInitArgs__entry, args_);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5056 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5057 HOTSPOT_JNI_GETDEFAULTJAVAVMINITARGS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5058 args_);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5059 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5060 JDK1_1InitArgs *args = (JDK1_1InitArgs *)args_;
a61af66fc99e Initial load
duke
parents:
diff changeset
5061 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5062 DT_RETURN_MARK(GetDefaultJavaVMInitArgs, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
5063
a61af66fc99e Initial load
duke
parents:
diff changeset
5064 if (Threads::is_supported_jni_version(args->version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5065 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5066 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5067 // 1.1 style no longer supported in hotspot.
a61af66fc99e Initial load
duke
parents:
diff changeset
5068 // According the JNI spec, we should update args->version on return.
a61af66fc99e Initial load
duke
parents:
diff changeset
5069 // We also use the structure to communicate with launcher about default
a61af66fc99e Initial load
duke
parents:
diff changeset
5070 // stack size.
a61af66fc99e Initial load
duke
parents:
diff changeset
5071 if (args->version == JNI_VERSION_1_1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5072 args->version = JNI_VERSION_1_2;
a61af66fc99e Initial load
duke
parents:
diff changeset
5073 // javaStackSize is int in arguments structure
a61af66fc99e Initial load
duke
parents:
diff changeset
5074 assert(jlong(ThreadStackSize) * K < INT_MAX, "integer overflow");
a61af66fc99e Initial load
duke
parents:
diff changeset
5075 args->javaStackSize = (jint)(ThreadStackSize * K);
a61af66fc99e Initial load
duke
parents:
diff changeset
5076 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5077 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5078 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5079
3779
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5080 #ifndef PRODUCT
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5081
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5082 #include "gc_implementation/shared/gcTimer.hpp"
4708
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5083 #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
5084 #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
5085 #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
5086 #endif
20318
fa62fb12cdca 6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents: 20262
diff changeset
5087 #include "memory/guardedMemory.hpp"
3779
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5088 #include "utilities/quickSort.hpp"
12215
621eda7235d2 7164841: Improvements to the GC log file rotation
minqi
parents: 12111
diff changeset
5089 #include "utilities/ostream.hpp"
7171
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6985
diff changeset
5090 #if INCLUDE_VM_STRUCTS
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6985
diff changeset
5091 #include "runtime/vmStructs.hpp"
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6985
diff changeset
5092 #endif
3779
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5093
4708
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5094 #define run_unit_test(unit_test_function_call) \
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5095 tty->print_cr("Running test: " #unit_test_function_call); \
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5096 unit_test_function_call
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5097
12110
4c84d351cca9 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 11092
diff changeset
5098 // Forward declaration
22974
c2ce24504334 8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents: 20619
diff changeset
5099 void TestOS_test();
12110
4c84d351cca9 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 11092
diff changeset
5100 void TestReservedSpace_test();
4c84d351cca9 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 11092
diff changeset
5101 void TestReserveMemorySpecial_test();
12236
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12111
diff changeset
5102 void TestVirtualSpace_test();
12306
03f493ce3a71 8025228: assert(new_entry->reserved_words() == vs_word_size) fails in nightly
brutisso
parents: 12305
diff changeset
5103 void TestMetaspaceAux_test();
12902
bdfbb1fb19ca 8026391: The Metachunk header wastes memory
stefank
parents: 12823
diff changeset
5104 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
5105 void TestVirtualSpaceNode_test();
17898
1d01a7f3a336 8033426: Scale initial NewSize using NewRatio if not set on command line
sjohanss
parents: 17829
diff changeset
5106 void TestNewSize_test();
20262
76b588255908 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 20255
diff changeset
5107 void TestKlass_test();
20360
833b0f92429a 8046598: Scalable Native memory tracking development
zgu
parents: 20337
diff changeset
5108 void Test_linked_list();
20619
b12a2a9b05ca 8056240: Investigate increased GC remark time after class unloading changes in CRM Fuse
stefank
parents: 20360
diff changeset
5109 void TestChunkedList_test();
17694
cc3f124c6eae 8035822: Unable to test minimalVM
jwilhelm
parents: 17685
diff changeset
5110 #if INCLUDE_ALL_GCS
17648
a034dc5e910b 8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents: 12979
diff changeset
5111 void TestOldFreeSpaceCalculation_test();
12305
a19bea467577 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 12269
diff changeset
5112 void TestG1BiasedArray_test();
20255
02e61cf08ab3 8033764: Remove the usage of StarTask from BufferingOopClosure
stefank
parents: 20197
diff changeset
5113 void TestBufferingOopClosure_test();
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17704
diff changeset
5114 void TestCodeCacheRemSet_test();
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20324
diff changeset
5115 void FreeRegionList_test();
12305
a19bea467577 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 12269
diff changeset
5116 #endif
12110
4c84d351cca9 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 11092
diff changeset
5117
3779
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5118 void execute_internal_vm_tests() {
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5119 if (ExecuteInternalVMTests) {
4708
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5120 tty->print_cr("Running internal VM tests");
22974
c2ce24504334 8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents: 20619
diff changeset
5121 run_unit_test(TestOS_test());
12110
4c84d351cca9 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 11092
diff changeset
5122 run_unit_test(TestReservedSpace_test());
4c84d351cca9 8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents: 11092
diff changeset
5123 run_unit_test(TestReserveMemorySpecial_test());
12236
c4c768305a8f 8024638: Count and expose the amount of committed memory in the metaspaces
stefank
parents: 12111
diff changeset
5124 run_unit_test(TestVirtualSpace_test());
12306
03f493ce3a71 8025228: assert(new_entry->reserved_words() == vs_word_size) fails in nightly
brutisso
parents: 12305
diff changeset
5125 run_unit_test(TestMetaspaceAux_test());
12902
bdfbb1fb19ca 8026391: The Metachunk header wastes memory
stefank
parents: 12823
diff changeset
5126 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
5127 run_unit_test(TestVirtualSpaceNode_test());
9060
cc32ccaaf47f 8003310: Enable -Wunused-function when compiling with gcc
mikael
parents: 8793
diff changeset
5128 run_unit_test(GlobalDefinitions::test_globals());
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5129 run_unit_test(GCTimerAllTest::all());
4708
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5130 run_unit_test(arrayOopDesc::test_max_array_length());
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5131 run_unit_test(CollectedHeap::test_is_in());
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5132 run_unit_test(QuickSort::test_quick_sort());
20318
fa62fb12cdca 6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents: 20262
diff changeset
5133 run_unit_test(GuardedMemory::test_guarded_memory());
6162
e9140bf80b4a 7158800: Improve storage of symbol tables
coleenp
parents: 6125
diff changeset
5134 run_unit_test(AltHashing::test_alt_hash());
12215
621eda7235d2 7164841: Improvements to the GC log file rotation
minqi
parents: 12111
diff changeset
5135 run_unit_test(test_loggc_filename());
17898
1d01a7f3a336 8033426: Scale initial NewSize using NewRatio if not set on command line
sjohanss
parents: 17829
diff changeset
5136 run_unit_test(TestNewSize_test());
20262
76b588255908 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 20255
diff changeset
5137 run_unit_test(TestKlass_test());
20360
833b0f92429a 8046598: Scalable Native memory tracking development
zgu
parents: 20337
diff changeset
5138 run_unit_test(Test_linked_list());
20619
b12a2a9b05ca 8056240: Investigate increased GC remark time after class unloading changes in CRM Fuse
stefank
parents: 20360
diff changeset
5139 run_unit_test(TestChunkedList_test());
7171
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6985
diff changeset
5140 #if INCLUDE_VM_STRUCTS
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6985
diff changeset
5141 run_unit_test(VMStructs::test());
7c15faa95ce7 8003879: Duplicate definitions in vmStructs
mikael
parents: 6985
diff changeset
5142 #endif
10333
6702da6b6082 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 9060
diff changeset
5143 #if INCLUDE_ALL_GCS
17694
cc3f124c6eae 8035822: Unable to test minimalVM
jwilhelm
parents: 17685
diff changeset
5144 run_unit_test(TestOldFreeSpaceCalculation_test());
12305
a19bea467577 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents: 12269
diff changeset
5145 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
5146 run_unit_test(HeapRegionRemSet::test_prt());
20255
02e61cf08ab3 8033764: Remove the usage of StarTask from BufferingOopClosure
stefank
parents: 20197
diff changeset
5147 run_unit_test(TestBufferingOopClosure_test());
17753
191174b49bec 8035406: Improve data structure for Code Cache remembered sets
tschatzl
parents: 17704
diff changeset
5148 run_unit_test(TestCodeCacheRemSet_test());
20337
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20324
diff changeset
5149 if (UseG1GC) {
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20324
diff changeset
5150 run_unit_test(FreeRegionList_test());
1f1d373cd044 8038423: G1: Decommit memory within heap
tschatzl
parents: 20324
diff changeset
5151 }
10333
6702da6b6082 8014405: G1: PerRegionTable::fl_mem_size() calculates size of the free list using wrong element sizes
tschatzl
parents: 9060
diff changeset
5152 #endif
4070
6fd81579526f 7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents: 4006
diff changeset
5153 tty->print_cr("All internal VM tests passed");
3779
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5154 }
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5155 }
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5156
4708
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5157 #undef run_unit_test
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 4070
diff changeset
5158
3779
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5159 #endif
04760e41b01e 7016112: CMS: crash during promotion testing
brutisso
parents: 3249
diff changeset
5160
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5161 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5162 HS_DTRACE_PROBE_DECL3(hotspot_jni, CreateJavaVM__entry, vm, penv, args);
a61af66fc99e Initial load
duke
parents:
diff changeset
5163 DT_RETURN_MARK_DECL(CreateJavaVM, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5164 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5165 DT_RETURN_MARK_DECL(CreateJavaVM, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5166 , HOTSPOT_JNI_CREATEJAVAVM_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5167 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5168
a61af66fc99e Initial load
duke
parents:
diff changeset
5169 _JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_CreateJavaVM(JavaVM **vm, void **penv, void *args) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5170 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5171 HS_DTRACE_PROBE3(hotspot_jni, CreateJavaVM__entry, vm, penv, args);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5172 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5173 HOTSPOT_JNI_CREATEJAVAVM_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5174 (void **) vm, penv, args);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5175 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5176
a61af66fc99e Initial load
duke
parents:
diff changeset
5177 jint result = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5178 DT_RETURN_MARK(CreateJavaVM, jint, (const jint&)result);
a61af66fc99e Initial load
duke
parents:
diff changeset
5179
1078
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5180 // We're about to use Atomic::xchg for synchronization. Some Zero
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5181 // platforms use the GCC builtin __sync_lock_test_and_set for this,
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5182 // 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
5183 // on all architectures. So we check it works before relying on it.
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5184 #if defined(ZERO) && defined(ASSERT)
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5185 {
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5186 jint a = 0xcafebabe;
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5187 jint b = Atomic::xchg(0xdeadbeef, &a);
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5188 void *c = &a;
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5189 void *d = Atomic::xchg_ptr(&b, &c);
1132
896da934748c 6913869: Zero assert fix
twisti
parents: 1078
diff changeset
5190 assert(a == (jint) 0xdeadbeef && b == (jint) 0xcafebabe, "Atomic::xchg() works");
1078
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5191 assert(c == &b && d == &a, "Atomic::xchg_ptr() works");
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5192 }
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5193 #endif // ZERO && ASSERT
8e7adf982378 6896043: first round of zero fixes
twisti
parents: 1034
diff changeset
5194
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5195 // At the moment it's only possible to have one Java VM,
a61af66fc99e Initial load
duke
parents:
diff changeset
5196 // since some of the runtime state is in global variables.
a61af66fc99e Initial load
duke
parents:
diff changeset
5197
a61af66fc99e Initial load
duke
parents:
diff changeset
5198 // We cannot use our mutex locks here, since they only work on
a61af66fc99e Initial load
duke
parents:
diff changeset
5199 // Threads. We do an atomic compare and exchange to ensure only
a61af66fc99e Initial load
duke
parents:
diff changeset
5200 // one thread can call this method at a time
a61af66fc99e Initial load
duke
parents:
diff changeset
5201
a61af66fc99e Initial load
duke
parents:
diff changeset
5202 // We use Atomic::xchg rather than Atomic::add/dec since on some platforms
a61af66fc99e Initial load
duke
parents:
diff changeset
5203 // the add/dec implementations are dependent on whether we are running
a61af66fc99e Initial load
duke
parents:
diff changeset
5204 // on a multiprocessor, and at this stage of initialization the os::is_MP
a61af66fc99e Initial load
duke
parents:
diff changeset
5205 // function used to determine this will always return false. Atomic::xchg
a61af66fc99e Initial load
duke
parents:
diff changeset
5206 // does not have this problem.
a61af66fc99e Initial load
duke
parents:
diff changeset
5207 if (Atomic::xchg(1, &vm_created) == 1) {
11089
f323bbb0e6c1 8019833: Wrong JNI error code for preexisting JVM
coleenp
parents: 11059
diff changeset
5208 return JNI_EEXIST; // already created, or create attempt in progress
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5210 if (Atomic::xchg(0, &safe_to_recreate_vm) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5211 return JNI_ERR; // someone tried and failed and retry not allowed.
a61af66fc99e Initial load
duke
parents:
diff changeset
5212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5213
a61af66fc99e Initial load
duke
parents:
diff changeset
5214 assert(vm_created == 1, "vm_created is true during the creation");
a61af66fc99e Initial load
duke
parents:
diff changeset
5215
a61af66fc99e Initial load
duke
parents:
diff changeset
5216 /**
a61af66fc99e Initial load
duke
parents:
diff changeset
5217 * Certain errors during initialization are recoverable and do not
a61af66fc99e Initial load
duke
parents:
diff changeset
5218 * prevent this method from being called again at a later time
a61af66fc99e Initial load
duke
parents:
diff changeset
5219 * (perhaps with different arguments). However, at a certain
a61af66fc99e Initial load
duke
parents:
diff changeset
5220 * point during initialization if an error occurs we cannot allow
a61af66fc99e Initial load
duke
parents:
diff changeset
5221 * this function to be called again (or it will crash). In those
a61af66fc99e Initial load
duke
parents:
diff changeset
5222 * situations, the 'canTryAgain' flag is set to false, which atomically
a61af66fc99e Initial load
duke
parents:
diff changeset
5223 * sets safe_to_recreate_vm to 1, such that any new call to
a61af66fc99e Initial load
duke
parents:
diff changeset
5224 * JNI_CreateJavaVM will immediately fail using the above logic.
a61af66fc99e Initial load
duke
parents:
diff changeset
5225 */
a61af66fc99e Initial load
duke
parents:
diff changeset
5226 bool can_try_again = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
5227
a61af66fc99e Initial load
duke
parents:
diff changeset
5228 result = Threads::create_vm((JavaVMInitArgs*) args, &can_try_again);
a61af66fc99e Initial load
duke
parents:
diff changeset
5229 if (result == JNI_OK) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5230 JavaThread *thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
5231 /* thread is thread_in_vm here */
a61af66fc99e Initial load
duke
parents:
diff changeset
5232 *vm = (JavaVM *)(&main_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5233 *(JNIEnv**)penv = thread->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
5234
23404
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5235 #if INCLUDE_JVMCI
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5236 if (UseJVMCICompiler) {
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5237 // JVMCI is initialized on a CompilerThread
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5238 if (BootstrapJVMCI) {
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5239 JavaThread* THREAD = thread;
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5240 JVMCICompiler* compiler = JVMCICompiler::instance(CATCH);
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5241 compiler->bootstrap(THREAD);
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5242 if (HAS_PENDING_EXCEPTION) {
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5243 HandleMark hm;
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5244 vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION));
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23386
diff changeset
5245 }
23385
6ee2af864395 8156034: update 01
Josef Eisl <josef.eisl@jku.at>
parents: 23286
diff changeset
5246 }
13174
b00553202ec2 add NULL check so that -Xint option works again
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13086
diff changeset
5247 }
4368
d8d6b3de346b Add another #ifdef GRAAL
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4137
diff changeset
5248 #endif
3650
0e8a2a629afb Pass-by compilation broker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 3540
diff changeset
5249
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5250 // Tracks the time application was running before GC
a61af66fc99e Initial load
duke
parents:
diff changeset
5251 RuntimeService::record_application_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
5252
a61af66fc99e Initial load
duke
parents:
diff changeset
5253 // Notify JVMTI
a61af66fc99e Initial load
duke
parents:
diff changeset
5254 if (JvmtiExport::should_post_thread_life()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5255 JvmtiExport::post_thread_start(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
5256 }
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4708
diff changeset
5257
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5258 EventThreadStart event;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5259 if (event.should_commit()) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5260 event.set_javalangthread(java_lang_Thread::thread_id(thread->threadObj()));
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5261 event.commit();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5262 }
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4708
diff changeset
5263
11092
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 11089
diff changeset
5264 #ifndef PRODUCT
17829
0118c8c7b80f 8038633: crash in VM_Version::get_processor_features() on startup
kvn
parents: 17753
diff changeset
5265 #ifndef CALL_TEST_FUNC_WITH_WRAPPER_IF_NEEDED
11092
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 11089
diff changeset
5266 #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
5267 #endif
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 11089
diff changeset
5268
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5269 // 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
5270 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
5271 if (ReplayCompiles) ciReplay::replay(thread);
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 11089
diff changeset
5272
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 11089
diff changeset
5273 // 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
5274 // 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
5275 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
5276 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
5277 #endif
59b052799158 8015884: runThese crashed with SIGSEGV, hs_err has an error instead of stacktrace
dcubed
parents: 11089
diff changeset
5278
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5279 // Since this is not a JVM_ENTRY we have to set the thread state manually before leaving.
a61af66fc99e Initial load
duke
parents:
diff changeset
5280 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
5281 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
5282 if (can_try_again) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5283 // reset safe_to_recreate_vm to 1 so that retrial would be possible
a61af66fc99e Initial load
duke
parents:
diff changeset
5284 safe_to_recreate_vm = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
5285 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5286
a61af66fc99e Initial load
duke
parents:
diff changeset
5287 // Creation failed. We must reset vm_created
a61af66fc99e Initial load
duke
parents:
diff changeset
5288 *vm = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
5289 *(JNIEnv**)penv = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
5290 // reset vm_created last to avoid race condition. Use OrderAccess to
a61af66fc99e Initial load
duke
parents:
diff changeset
5291 // control both compiler and architectural-based reordering.
a61af66fc99e Initial load
duke
parents:
diff changeset
5292 OrderAccess::release_store(&vm_created, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
5293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5294
a61af66fc99e Initial load
duke
parents:
diff changeset
5295 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
5296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5297
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5298 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5299 HS_DTRACE_PROBE_DECL3(hotspot_jni, GetCreatedJavaVMs__entry, \
a61af66fc99e Initial load
duke
parents:
diff changeset
5300 JavaVM**, jsize, jsize*);
a61af66fc99e Initial load
duke
parents:
diff changeset
5301 HS_DTRACE_PROBE_DECL1(hotspot_jni, GetCreatedJavaVMs__return, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5302 #endif /* !USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5303
a61af66fc99e Initial load
duke
parents:
diff changeset
5304 _JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetCreatedJavaVMs(JavaVM **vm_buf, jsize bufLen, jsize *numVMs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5305 // See bug 4367188, the wrapper can sometimes cause VM crashes
a61af66fc99e Initial load
duke
parents:
diff changeset
5306 // JNIWrapper("GetCreatedJavaVMs");
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5307 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5308 HS_DTRACE_PROBE3(hotspot_jni, GetCreatedJavaVMs__entry, \
a61af66fc99e Initial load
duke
parents:
diff changeset
5309 vm_buf, bufLen, numVMs);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5310 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5311 HOTSPOT_JNI_GETCREATEDJAVAVMS_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5312 (void **) vm_buf, bufLen, (uintptr_t *) numVMs);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5313 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5314 if (vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5315 if (numVMs != NULL) *numVMs = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
5316 if (bufLen > 0) *vm_buf = (JavaVM *)(&main_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5317 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
5318 if (numVMs != NULL) *numVMs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
5319 }
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5320 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5321 HS_DTRACE_PROBE1(hotspot_jni, GetCreatedJavaVMs__return, JNI_OK);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5322 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5323 HOTSPOT_JNI_GETCREATEDJAVAVMS_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5324 JNI_OK);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5325 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5326 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5327 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5328
a61af66fc99e Initial load
duke
parents:
diff changeset
5329 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
5330
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5331 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5332 DT_RETURN_MARK_DECL(DestroyJavaVM, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5333 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5334 DT_RETURN_MARK_DECL(DestroyJavaVM, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5335 , HOTSPOT_JNI_DESTROYJAVAVM_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5336 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5337
a61af66fc99e Initial load
duke
parents:
diff changeset
5338 jint JNICALL jni_DestroyJavaVM(JavaVM *vm) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5339 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5340 DTRACE_PROBE1(hotspot_jni, DestroyJavaVM__entry, vm);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5341 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5342 HOTSPOT_JNI_DESTROYJAVAVM_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5343 vm);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5344 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5345 jint res = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5346 DT_RETURN_MARK(DestroyJavaVM, jint, (const jint&)res);
a61af66fc99e Initial load
duke
parents:
diff changeset
5347
a61af66fc99e Initial load
duke
parents:
diff changeset
5348 if (!vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5349 res = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5350 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
5351 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5352
a61af66fc99e Initial load
duke
parents:
diff changeset
5353 JNIWrapper("DestroyJavaVM");
a61af66fc99e Initial load
duke
parents:
diff changeset
5354 JNIEnv *env;
a61af66fc99e Initial load
duke
parents:
diff changeset
5355 JavaVMAttachArgs destroyargs;
a61af66fc99e Initial load
duke
parents:
diff changeset
5356 destroyargs.version = CurrentVersion;
a61af66fc99e Initial load
duke
parents:
diff changeset
5357 destroyargs.name = (char *)"DestroyJavaVM";
a61af66fc99e Initial load
duke
parents:
diff changeset
5358 destroyargs.group = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
5359 res = vm->AttachCurrentThread((void **)&env, (void *)&destroyargs);
a61af66fc99e Initial load
duke
parents:
diff changeset
5360 if (res != JNI_OK) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5361 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
5362 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5363
a61af66fc99e Initial load
duke
parents:
diff changeset
5364 // Since this is not a JVM_ENTRY we have to set the thread state manually before entering.
a61af66fc99e Initial load
duke
parents:
diff changeset
5365 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
5366 ThreadStateTransition::transition_from_native(thread, _thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5367 if (Threads::destroy_vm()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5368 // Should not change thread state, VM is gone
a61af66fc99e Initial load
duke
parents:
diff changeset
5369 vm_created = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
5370 res = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5371 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
5372 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
5373 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
5374 res = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5375 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
5376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5378
a61af66fc99e Initial load
duke
parents:
diff changeset
5379
a61af66fc99e Initial load
duke
parents:
diff changeset
5380 static jint attach_current_thread(JavaVM *vm, void **penv, void *_args, bool daemon) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5381 JavaVMAttachArgs *args = (JavaVMAttachArgs *) _args;
a61af66fc99e Initial load
duke
parents:
diff changeset
5382
a61af66fc99e Initial load
duke
parents:
diff changeset
5383 // Check below commented out from JDK1.2fcs as well
a61af66fc99e Initial load
duke
parents:
diff changeset
5384 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
5385 if (args && (args->version != JNI_VERSION_1_1 || args->version != JNI_VERSION_1_2)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5386 return JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
5387 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5388 */
a61af66fc99e Initial load
duke
parents:
diff changeset
5389
a61af66fc99e Initial load
duke
parents:
diff changeset
5390 Thread* t = ThreadLocalStorage::get_thread_slow();
a61af66fc99e Initial load
duke
parents:
diff changeset
5391 if (t != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5392 // If the thread has been attached this operation is a no-op
a61af66fc99e Initial load
duke
parents:
diff changeset
5393 *(JNIEnv**)penv = ((JavaThread*) t)->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
5394 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5396
a61af66fc99e Initial load
duke
parents:
diff changeset
5397 // Create a thread and mark it as attaching so it will be skipped by the
a61af66fc99e Initial load
duke
parents:
diff changeset
5398 // ThreadsListEnumerator - see CR 6404306
a61af66fc99e Initial load
duke
parents:
diff changeset
5399 JavaThread* thread = new JavaThread(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
5400
a61af66fc99e Initial load
duke
parents:
diff changeset
5401 // Set correct safepoint info. The thread is going to call into Java when
a61af66fc99e Initial load
duke
parents:
diff changeset
5402 // initializing the Java level thread object. Hence, the correct state must
a61af66fc99e Initial load
duke
parents:
diff changeset
5403 // be set in order for the Safepoint code to deal with it correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
5404 thread->set_thread_state(_thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5405 // Must do this before initialize_thread_local_storage
a61af66fc99e Initial load
duke
parents:
diff changeset
5406 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
5407
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5408 thread->initialize_thread_local_storage();
a61af66fc99e Initial load
duke
parents:
diff changeset
5409
a61af66fc99e Initial load
duke
parents:
diff changeset
5410 if (!os::create_attached_thread(thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5411 delete thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
5412 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5413 }
1290
c8a467bf56ad 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 1142
diff changeset
5414 // Enable stack overflow checks
c8a467bf56ad 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 1142
diff changeset
5415 thread->create_stack_guard_pages();
c8a467bf56ad 6914050: jvm assertion "guard pages must be in use" in -Xcomp mode
coleenp
parents: 1142
diff changeset
5416
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5417 thread->initialize_tlab();
a61af66fc99e Initial load
duke
parents:
diff changeset
5418
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
5419 thread->cache_global_variables();
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
5420
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5421 // Crucial that we do not have a safepoint check for this thread, since it has
a61af66fc99e Initial load
duke
parents:
diff changeset
5422 // not been added to the Thread list yet.
a61af66fc99e Initial load
duke
parents:
diff changeset
5423 { Threads_lock->lock_without_safepoint_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
5424 // This must be inside this lock in order to get FullGCALot to work properly, i.e., to
a61af66fc99e Initial load
duke
parents:
diff changeset
5425 // avoid this thread trying to do a GC before it is added to the thread-list
a61af66fc99e Initial load
duke
parents:
diff changeset
5426 thread->set_active_handles(JNIHandleBlock::allocate_block());
a61af66fc99e Initial load
duke
parents:
diff changeset
5427 Threads::add(thread, daemon);
a61af66fc99e Initial load
duke
parents:
diff changeset
5428 Threads_lock->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
5429 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5430 // Create thread group and name info from attach arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
5431 oop group = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
5432 char* thread_name = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
5433 if (args != NULL && Threads::is_supported_jni_version(args->version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5434 group = JNIHandles::resolve(args->group);
a61af66fc99e Initial load
duke
parents:
diff changeset
5435 thread_name = args->name; // may be NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
5436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5437 if (group == NULL) group = Universe::main_thread_group();
a61af66fc99e Initial load
duke
parents:
diff changeset
5438
a61af66fc99e Initial load
duke
parents:
diff changeset
5439 // Create Java level thread object and attach it to this thread
a61af66fc99e Initial load
duke
parents:
diff changeset
5440 bool attach_failed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
5441 {
a61af66fc99e Initial load
duke
parents:
diff changeset
5442 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5443 HandleMark hm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
5444 Handle thread_group(THREAD, group);
a61af66fc99e Initial load
duke
parents:
diff changeset
5445 thread->allocate_threadObj(thread_group, thread_name, daemon, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
5446 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5447 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
5448 // cleanup outside the handle mark.
a61af66fc99e Initial load
duke
parents:
diff changeset
5449 attach_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
5450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5452
a61af66fc99e Initial load
duke
parents:
diff changeset
5453 if (attach_failed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5454 // Added missing cleanup
a61af66fc99e Initial load
duke
parents:
diff changeset
5455 thread->cleanup_failed_attach_current_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
5456 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5458
a61af66fc99e Initial load
duke
parents:
diff changeset
5459 // mark the thread as no longer attaching
a61af66fc99e Initial load
duke
parents:
diff changeset
5460 // this uses a fence to push the change through so we don't have
a61af66fc99e Initial load
duke
parents:
diff changeset
5461 // to regrab the threads_lock
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5462 thread->set_done_attaching_via_jni();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5463
a61af66fc99e Initial load
duke
parents:
diff changeset
5464 // Set java thread status.
a61af66fc99e Initial load
duke
parents:
diff changeset
5465 java_lang_Thread::set_thread_status(thread->threadObj(),
a61af66fc99e Initial load
duke
parents:
diff changeset
5466 java_lang_Thread::RUNNABLE);
a61af66fc99e Initial load
duke
parents:
diff changeset
5467
a61af66fc99e Initial load
duke
parents:
diff changeset
5468 // Notify the debugger
a61af66fc99e Initial load
duke
parents:
diff changeset
5469 if (JvmtiExport::should_post_thread_life()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5470 JvmtiExport::post_thread_start(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
5471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5472
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5473 EventThreadStart event;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5474 if (event.should_commit()) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5475 event.set_javalangthread(java_lang_Thread::thread_id(thread->threadObj()));
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5476 event.commit();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10333
diff changeset
5477 }
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4708
diff changeset
5478
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5479 *(JNIEnv**)penv = thread->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
5480
a61af66fc99e Initial load
duke
parents:
diff changeset
5481 // Now leaving the VM, so change thread_state. This is normally automatically taken care
a61af66fc99e Initial load
duke
parents:
diff changeset
5482 // 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
5483 // using ThreadStateTransition::transition, we do a callback to the safepoint code if
a61af66fc99e Initial load
duke
parents:
diff changeset
5484 // needed.
a61af66fc99e Initial load
duke
parents:
diff changeset
5485
a61af66fc99e Initial load
duke
parents:
diff changeset
5486 ThreadStateTransition::transition_and_fence(thread, _thread_in_vm, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
5487
a61af66fc99e Initial load
duke
parents:
diff changeset
5488 // Perform any platform dependent FPU setup
a61af66fc99e Initial load
duke
parents:
diff changeset
5489 os::setup_fpu();
a61af66fc99e Initial load
duke
parents:
diff changeset
5490
a61af66fc99e Initial load
duke
parents:
diff changeset
5491 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5493
a61af66fc99e Initial load
duke
parents:
diff changeset
5494
a61af66fc99e Initial load
duke
parents:
diff changeset
5495 jint JNICALL jni_AttachCurrentThread(JavaVM *vm, void **penv, void *_args) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5496 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5497 DTRACE_PROBE3(hotspot_jni, AttachCurrentThread__entry, vm, penv, _args);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5498 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5499 HOTSPOT_JNI_ATTACHCURRENTTHREAD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5500 vm, penv, _args);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5501 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5502 if (!vm_created) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5503 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5504 DTRACE_PROBE1(hotspot_jni, AttachCurrentThread__return, JNI_ERR);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5505 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5506 HOTSPOT_JNI_ATTACHCURRENTTHREAD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5507 (uint32_t) JNI_ERR);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5508 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5509 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5511
a61af66fc99e Initial load
duke
parents:
diff changeset
5512 JNIWrapper("AttachCurrentThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
5513 jint ret = attach_current_thread(vm, penv, _args, false);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5514 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5515 DTRACE_PROBE1(hotspot_jni, AttachCurrentThread__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5516 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5517 HOTSPOT_JNI_ATTACHCURRENTTHREAD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5518 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5519 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5520 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5522
a61af66fc99e Initial load
duke
parents:
diff changeset
5523
a61af66fc99e Initial load
duke
parents:
diff changeset
5524 jint JNICALL jni_DetachCurrentThread(JavaVM *vm) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5525 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5526 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__entry, vm);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5527 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5528 HOTSPOT_JNI_DETACHCURRENTTHREAD_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5529 vm);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5530 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5531 VM_Exit::block_if_vm_exited();
a61af66fc99e Initial load
duke
parents:
diff changeset
5532
a61af66fc99e Initial load
duke
parents:
diff changeset
5533 JNIWrapper("DetachCurrentThread");
a61af66fc99e Initial load
duke
parents:
diff changeset
5534
a61af66fc99e Initial load
duke
parents:
diff changeset
5535 // If the thread has been deattacted the operations is a no-op
a61af66fc99e Initial load
duke
parents:
diff changeset
5536 if (ThreadLocalStorage::thread() == NULL) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5537 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5538 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_OK);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5539 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5540 HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5541 JNI_OK);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5542 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5543 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5545
a61af66fc99e Initial load
duke
parents:
diff changeset
5546 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
5547 if (thread->has_last_Java_frame()) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5548 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5549 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_ERR);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5550 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5551 HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5552 (uint32_t) JNI_ERR);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5553 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5554 // Can't detach a thread that's running java, that can't work.
a61af66fc99e Initial load
duke
parents:
diff changeset
5555 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5557
a61af66fc99e Initial load
duke
parents:
diff changeset
5558 // Safepoint support. Have to do call-back to safepoint code, if in the
a61af66fc99e Initial load
duke
parents:
diff changeset
5559 // middel of a safepoint operation
a61af66fc99e Initial load
duke
parents:
diff changeset
5560 ThreadStateTransition::transition_from_native(thread, _thread_in_vm);
a61af66fc99e Initial load
duke
parents:
diff changeset
5561
a61af66fc99e Initial load
duke
parents:
diff changeset
5562 // XXX: Note that JavaThread::exit() call below removes the guards on the
a61af66fc99e Initial load
duke
parents:
diff changeset
5563 // stack pages set up via enable_stack_{red,yellow}_zone() calls
a61af66fc99e Initial load
duke
parents:
diff changeset
5564 // above in jni_AttachCurrentThread. Unfortunately, while the setting
a61af66fc99e Initial load
duke
parents:
diff changeset
5565 // of the guards is visible in jni_AttachCurrentThread above,
a61af66fc99e Initial load
duke
parents:
diff changeset
5566 // the removal of the guards is buried below in JavaThread::exit()
a61af66fc99e Initial load
duke
parents:
diff changeset
5567 // here. The abstraction should be more symmetrically either exposed
a61af66fc99e Initial load
duke
parents:
diff changeset
5568 // or hidden (e.g. it could probably be hidden in the same
a61af66fc99e Initial load
duke
parents:
diff changeset
5569 // (platform-dependent) methods where we do alternate stack
a61af66fc99e Initial load
duke
parents:
diff changeset
5570 // maintenance work?)
a61af66fc99e Initial load
duke
parents:
diff changeset
5571 thread->exit(false, JavaThread::jni_detach);
a61af66fc99e Initial load
duke
parents:
diff changeset
5572 delete thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
5573
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5574 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5575 DTRACE_PROBE1(hotspot_jni, DetachCurrentThread__return, JNI_OK);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5576 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5577 HOTSPOT_JNI_DETACHCURRENTTHREAD_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5578 JNI_OK);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5579 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5580 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5581 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5582
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5583 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5584 DT_RETURN_MARK_DECL(GetEnv, jint);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5585 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5586 DT_RETURN_MARK_DECL(GetEnv, jint
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5587 , HOTSPOT_JNI_GETENV_RETURN(_ret_ref));
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5588 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5589
a61af66fc99e Initial load
duke
parents:
diff changeset
5590 jint JNICALL jni_GetEnv(JavaVM *vm, void **penv, jint version) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5591 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5592 DTRACE_PROBE3(hotspot_jni, GetEnv__entry, vm, penv, version);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5593 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5594 HOTSPOT_JNI_GETENV_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5595 vm, penv, version);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5596 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5597 jint ret = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5598 DT_RETURN_MARK(GetEnv, jint, (const jint&)ret);
a61af66fc99e Initial load
duke
parents:
diff changeset
5599
a61af66fc99e Initial load
duke
parents:
diff changeset
5600 if (!vm_created) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5601 *penv = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
5602 ret = JNI_EDETACHED;
a61af66fc99e Initial load
duke
parents:
diff changeset
5603 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5604 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5605
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4708
diff changeset
5606 if (JniExportedInterface::GetExportedInterface(vm, penv, version, &ret)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5607 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5608 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5609
a61af66fc99e Initial load
duke
parents:
diff changeset
5610 #ifndef JVMPI_VERSION_1
a61af66fc99e Initial load
duke
parents:
diff changeset
5611 // need these in order to be polite about older agents
a61af66fc99e Initial load
duke
parents:
diff changeset
5612 #define JVMPI_VERSION_1 ((jint)0x10000001)
a61af66fc99e Initial load
duke
parents:
diff changeset
5613 #define JVMPI_VERSION_1_1 ((jint)0x10000002)
a61af66fc99e Initial load
duke
parents:
diff changeset
5614 #define JVMPI_VERSION_1_2 ((jint)0x10000003)
a61af66fc99e Initial load
duke
parents:
diff changeset
5615 #endif // !JVMPI_VERSION_1
a61af66fc99e Initial load
duke
parents:
diff changeset
5616
a61af66fc99e Initial load
duke
parents:
diff changeset
5617 Thread* thread = ThreadLocalStorage::thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
5618 if (thread != NULL && thread->is_Java_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5619 if (Threads::is_supported_jni_version_including_1_1(version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5620 *(JNIEnv**)penv = ((JavaThread*) thread)->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
5621 ret = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
5622 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5623
a61af66fc99e Initial load
duke
parents:
diff changeset
5624 } else if (version == JVMPI_VERSION_1 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
5625 version == JVMPI_VERSION_1_1 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
5626 version == JVMPI_VERSION_1_2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5627 tty->print_cr("ERROR: JVMPI, an experimental interface, is no longer supported.");
a61af66fc99e Initial load
duke
parents:
diff changeset
5628 tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI).");
a61af66fc99e Initial load
duke
parents:
diff changeset
5629 ret = JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
5630 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5631 } else if (JvmtiExport::is_jvmdi_version(version)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
5632 tty->print_cr("FATAL ERROR: JVMDI is no longer supported.");
a61af66fc99e Initial load
duke
parents:
diff changeset
5633 tty->print_cr("Please use the supported interface: the JVM Tool Interface (JVM TI).");
a61af66fc99e Initial load
duke
parents:
diff changeset
5634 ret = JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
5635 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5636 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
5637 *penv = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
5638 ret = JNI_EVERSION;
a61af66fc99e Initial load
duke
parents:
diff changeset
5639 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5640 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5641 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
5642 *penv = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
5643 ret = JNI_EDETACHED;
a61af66fc99e Initial load
duke
parents:
diff changeset
5644 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5645 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5647
a61af66fc99e Initial load
duke
parents:
diff changeset
5648
a61af66fc99e Initial load
duke
parents:
diff changeset
5649 jint JNICALL jni_AttachCurrentThreadAsDaemon(JavaVM *vm, void **penv, void *_args) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5650 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5651 DTRACE_PROBE3(hotspot_jni, AttachCurrentThreadAsDaemon__entry, vm, penv, _args);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5652 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5653 HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_ENTRY(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5654 vm, penv, _args);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5655 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5656 if (!vm_created) {
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5657 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5658 DTRACE_PROBE1(hotspot_jni, AttachCurrentThreadAsDaemon__return, JNI_ERR);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5659 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5660 HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5661 (uint32_t) JNI_ERR);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5662 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5663 return JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
5664 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5665
a61af66fc99e Initial load
duke
parents:
diff changeset
5666 JNIWrapper("AttachCurrentThreadAsDaemon");
a61af66fc99e Initial load
duke
parents:
diff changeset
5667 jint ret = attach_current_thread(vm, penv, _args, true);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5668 #ifndef USDT2
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5669 DTRACE_PROBE1(hotspot_jni, AttachCurrentThreadAsDaemon__return, ret);
4006
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5670 #else /* USDT2 */
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5671 HOTSPOT_JNI_ATTACHCURRENTTHREADASDAEMON_RETURN(
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5672 ret);
436b4a3231bf 7098194: integrate macosx-port changes
dcubed
parents: 3960
diff changeset
5673 #endif /* USDT2 */
0
a61af66fc99e Initial load
duke
parents:
diff changeset
5674 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
5675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
5676
a61af66fc99e Initial load
duke
parents:
diff changeset
5677
a61af66fc99e Initial load
duke
parents:
diff changeset
5678 } // End extern "C"
a61af66fc99e Initial load
duke
parents:
diff changeset
5679
a61af66fc99e Initial load
duke
parents:
diff changeset
5680 const struct JNIInvokeInterface_ jni_InvokeInterface = {
a61af66fc99e Initial load
duke
parents:
diff changeset
5681 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
5682 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
5683 NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
5684
a61af66fc99e Initial load
duke
parents:
diff changeset
5685 jni_DestroyJavaVM,
a61af66fc99e Initial load
duke
parents:
diff changeset
5686 jni_AttachCurrentThread,
a61af66fc99e Initial load
duke
parents:
diff changeset
5687 jni_DetachCurrentThread,
a61af66fc99e Initial load
duke
parents:
diff changeset
5688 jni_GetEnv,
a61af66fc99e Initial load
duke
parents:
diff changeset
5689 jni_AttachCurrentThreadAsDaemon
a61af66fc99e Initial load
duke
parents:
diff changeset
5690 };