annotate src/share/vm/prims/unsafe.cpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children 4fc084dac61e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1324
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1324
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1324
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "memory/allocation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "prims/jni.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "prims/jvm.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/globals.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "runtime/reflection.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "runtime/reflectionCompat.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "runtime/synchronizer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #include "services/threadService.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "utilities/copy.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 #include "utilities/dtrace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38
0
a61af66fc99e Initial load
duke
parents:
diff changeset
39 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
40 * Implementation of class sun.misc.Unsafe
a61af66fc99e Initial load
duke
parents:
diff changeset
41 */
a61af66fc99e Initial load
duke
parents:
diff changeset
42
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 845
diff changeset
43 HS_DTRACE_PROBE_DECL3(hotspot, thread__park__begin, uintptr_t, int, long long);
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 845
diff changeset
44 HS_DTRACE_PROBE_DECL1(hotspot, thread__park__end, uintptr_t);
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 845
diff changeset
45 HS_DTRACE_PROBE_DECL1(hotspot, thread__unpark, uintptr_t);
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 845
diff changeset
46
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47 #define MAX_OBJECT_SIZE \
a61af66fc99e Initial load
duke
parents:
diff changeset
48 ( arrayOopDesc::header_size(T_DOUBLE) * HeapWordSize \
a61af66fc99e Initial load
duke
parents:
diff changeset
49 + ((julong)max_jint * sizeof(double)) )
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 #define UNSAFE_ENTRY(result_type, header) \
a61af66fc99e Initial load
duke
parents:
diff changeset
53 JVM_ENTRY(result_type, header)
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Can't use UNSAFE_LEAF because it has the signature of a straight
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // call into the runtime (just like JVM_LEAF, funny that) but it's
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // called like a Java Native and thus the wrapper built for it passes
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // arguments like a JNI call. It expects those arguments to be popped
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // from the stack on Intel like all good JNI args are, and adjusts the
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // stack according. Since the JVM_LEAF call expects no extra
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // arguments the stack isn't popped in the C code, is pushed by the
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // wrapper and we get sick.
a61af66fc99e Initial load
duke
parents:
diff changeset
63 //#define UNSAFE_LEAF(result_type, header) \
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // JVM_LEAF(result_type, header)
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 #define UNSAFE_END JVM_END
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 #define UnsafeWrapper(arg) /*nothing, for the present*/
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70
a61af66fc99e Initial load
duke
parents:
diff changeset
71 inline void* addr_from_java(jlong addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // This assert fails in a variety of ways on 32-bit systems.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // It is impossible to predict whether native code that converts
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // pointers to longs will sign-extend or zero-extend the addresses.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 //assert(addr == (uintptr_t)addr, "must not be odd high bits");
a61af66fc99e Initial load
duke
parents:
diff changeset
76 return (void*)(uintptr_t)addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 inline jlong addr_to_java(void* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 assert(p == (void*)(uintptr_t)p, "must not be odd high bits");
a61af66fc99e Initial load
duke
parents:
diff changeset
81 return (uintptr_t)p;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // Note: The VM's obj_field and related accessors use byte-scaled
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // ("unscaled") offsets, just as the unsafe methods do.
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // However, the method Unsafe.fieldOffset explicitly declines to
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // guarantee this. The field offset values manipulated by the Java user
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // through the Unsafe API are opaque cookies that just happen to be byte
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // offsets. We represent this state of affairs by passing the cookies
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // through conversion functions when going between the VM and the Unsafe API.
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // The conversion functions just happen to be no-ops at present.
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 inline jlong field_offset_to_byte_offset(jlong field_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 return field_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 }
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 inline jlong field_offset_from_byte_offset(jlong byte_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 return byte_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 inline jint invocation_key_from_method_slot(jint slot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return slot;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 inline jint invocation_key_to_method_slot(jint key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 return key;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 inline void* index_oop_from_field_offset_long(oop p, jlong field_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 jlong byte_offset = field_offset_to_byte_offset(field_offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
114 if (p != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 assert(byte_offset >= 0 && byte_offset <= (jlong)MAX_OBJECT_SIZE, "sane offset");
a61af66fc99e Initial load
duke
parents:
diff changeset
116 if (byte_offset == (jint)byte_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void* ptr_plus_disp = (address)p + byte_offset;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
118 assert((void*)p->obj_field_addr<oop>((jint)byte_offset) == ptr_plus_disp,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
119 "raw [ptr+disp] must be consistent with oop::field_base");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
123 if (sizeof(char*) == sizeof(jint)) // (this constant folds!)
a61af66fc99e Initial load
duke
parents:
diff changeset
124 return (address)p + (jint) byte_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 else
a61af66fc99e Initial load
duke
parents:
diff changeset
126 return (address)p + byte_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // Externally callable versions:
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // (Use these in compiler intrinsics which emulate unsafe primitives.)
a61af66fc99e Initial load
duke
parents:
diff changeset
131 jlong Unsafe_field_offset_to_byte_offset(jlong field_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 return field_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 jlong Unsafe_field_offset_from_byte_offset(jlong byte_offset) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return byte_offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 jint Unsafe_invocation_key_from_method_slot(jint slot) {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 return invocation_key_from_method_slot(slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140 jint Unsafe_invocation_key_to_method_slot(jint key) {
a61af66fc99e Initial load
duke
parents:
diff changeset
141 return invocation_key_to_method_slot(key);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 ///// Data in the Java heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 #define GET_FIELD(obj, offset, type_name, v) \
a61af66fc99e Initial load
duke
parents:
diff changeset
148 oop p = JNIHandles::resolve(obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
149 type_name v = *(type_name*)index_oop_from_field_offset_long(p, offset)
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 #define SET_FIELD(obj, offset, type_name, x) \
a61af66fc99e Initial load
duke
parents:
diff changeset
152 oop p = JNIHandles::resolve(obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
153 *(type_name*)index_oop_from_field_offset_long(p, offset) = x
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 #define GET_FIELD_VOLATILE(obj, offset, type_name, v) \
a61af66fc99e Initial load
duke
parents:
diff changeset
156 oop p = JNIHandles::resolve(obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
157 volatile type_name v = *(volatile type_name*)index_oop_from_field_offset_long(p, offset)
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 #define SET_FIELD_VOLATILE(obj, offset, type_name, x) \
a61af66fc99e Initial load
duke
parents:
diff changeset
160 oop p = JNIHandles::resolve(obj); \
a61af66fc99e Initial load
duke
parents:
diff changeset
161 *(volatile type_name*)index_oop_from_field_offset_long(p, offset) = x; \
a61af66fc99e Initial load
duke
parents:
diff changeset
162 OrderAccess::fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
163
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
164 // Macros for oops that check UseCompressedOops
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
165
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
166 #define GET_OOP_FIELD(obj, offset, v) \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
167 oop p = JNIHandles::resolve(obj); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
168 oop v; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
169 if (UseCompressedOops) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
170 narrowOop n = *(narrowOop*)index_oop_from_field_offset_long(p, offset); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
171 v = oopDesc::decode_heap_oop(n); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
172 } else { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
173 v = *(oop*)index_oop_from_field_offset_long(p, offset); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
174 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
175
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
176 #define GET_OOP_FIELD_VOLATILE(obj, offset, v) \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
177 oop p = JNIHandles::resolve(obj); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
178 volatile oop v; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
179 if (UseCompressedOops) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
180 volatile narrowOop n = *(volatile narrowOop*)index_oop_from_field_offset_long(p, offset); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
181 v = oopDesc::decode_heap_oop(n); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
182 } else { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
183 v = *(volatile oop*)index_oop_from_field_offset_long(p, offset); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
184 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
185
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
186
0
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // Get/SetObject must be special-cased, since it works with handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // The xxx140 variants for backward compatibility do not allow a full-width offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 UNSAFE_ENTRY(jobject, Unsafe_GetObject140(JNIEnv *env, jobject unsafe, jobject obj, jint offset))
a61af66fc99e Initial load
duke
parents:
diff changeset
191 UnsafeWrapper("Unsafe_GetObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
192 if (obj == NULL) THROW_0(vmSymbols::java_lang_NullPointerException());
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
193 GET_OOP_FIELD(obj, offset, v)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194 return JNIHandles::make_local(env, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 UNSAFE_ENTRY(void, Unsafe_SetObject140(JNIEnv *env, jobject unsafe, jobject obj, jint offset, jobject x_h))
a61af66fc99e Initial load
duke
parents:
diff changeset
198 UnsafeWrapper("Unsafe_SetObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
199 if (obj == NULL) THROW(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
200 oop x = JNIHandles::resolve(x_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 //SET_FIELD(obj, offset, oop, x);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 oop p = JNIHandles::resolve(obj);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
203 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
204 if (x != NULL) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
205 // If there is a heap base pointer, we are obliged to emit a store barrier.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
206 oop_store((narrowOop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
207 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
208 narrowOop n = oopDesc::encode_heap_oop_not_null(x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
209 *(narrowOop*)index_oop_from_field_offset_long(p, offset) = n;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
210 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
211 } else {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
212 if (x != NULL) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
213 // If there is a heap base pointer, we are obliged to emit a store barrier.
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
214 oop_store((oop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
215 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
216 *(oop*)index_oop_from_field_offset_long(p, offset) = x;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
217 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // The normal variants allow a null base pointer with an arbitrary address.
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // But if the base pointer is non-null, the offset should make some sense.
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // That is, it should be in the range [0, MAX_OBJECT_SIZE].
a61af66fc99e Initial load
duke
parents:
diff changeset
224 UNSAFE_ENTRY(jobject, Unsafe_GetObject(JNIEnv *env, jobject unsafe, jobject obj, jlong offset))
a61af66fc99e Initial load
duke
parents:
diff changeset
225 UnsafeWrapper("Unsafe_GetObject");
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
226 GET_OOP_FIELD(obj, offset, v)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 return JNIHandles::make_local(env, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 UNSAFE_ENTRY(void, Unsafe_SetObject(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jobject x_h))
a61af66fc99e Initial load
duke
parents:
diff changeset
231 UnsafeWrapper("Unsafe_SetObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
232 oop x = JNIHandles::resolve(x_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 oop p = JNIHandles::resolve(obj);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
234 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
235 oop_store((narrowOop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
236 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
237 oop_store((oop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
238 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
239 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 UNSAFE_ENTRY(jobject, Unsafe_GetObjectVolatile(JNIEnv *env, jobject unsafe, jobject obj, jlong offset))
a61af66fc99e Initial load
duke
parents:
diff changeset
242 UnsafeWrapper("Unsafe_GetObjectVolatile");
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
243 GET_OOP_FIELD_VOLATILE(obj, offset, v)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244 return JNIHandles::make_local(env, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 UNSAFE_ENTRY(void, Unsafe_SetObjectVolatile(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jobject x_h))
a61af66fc99e Initial load
duke
parents:
diff changeset
248 UnsafeWrapper("Unsafe_SetObjectVolatile");
a61af66fc99e Initial load
duke
parents:
diff changeset
249 oop x = JNIHandles::resolve(x_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 oop p = JNIHandles::resolve(obj);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
251 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
252 oop_store((narrowOop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
253 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
254 oop_store((oop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
255 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
256 OrderAccess::fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
257 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // Volatile long versions must use locks if !VM_Version::supports_cx8().
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // support_cx8 is a surrogate for 'supports atomic long memory ops'.
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 UNSAFE_ENTRY(jlong, Unsafe_GetLongVolatile(JNIEnv *env, jobject unsafe, jobject obj, jlong offset))
a61af66fc99e Initial load
duke
parents:
diff changeset
263 UnsafeWrapper("Unsafe_GetLongVolatile");
a61af66fc99e Initial load
duke
parents:
diff changeset
264 {
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (VM_Version::supports_cx8()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 GET_FIELD_VOLATILE(obj, offset, jlong, v);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return v;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
270 Handle p (THREAD, JNIHandles::resolve(obj));
a61af66fc99e Initial load
duke
parents:
diff changeset
271 jlong* addr = (jlong*)(index_oop_from_field_offset_long(p(), offset));
a61af66fc99e Initial load
duke
parents:
diff changeset
272 ObjectLocker ol(p, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
273 jlong value = *addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return value;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
277 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 UNSAFE_ENTRY(void, Unsafe_SetLongVolatile(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jlong x))
a61af66fc99e Initial load
duke
parents:
diff changeset
280 UnsafeWrapper("Unsafe_SetLongVolatile");
a61af66fc99e Initial load
duke
parents:
diff changeset
281 {
a61af66fc99e Initial load
duke
parents:
diff changeset
282 if (VM_Version::supports_cx8()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 SET_FIELD_VOLATILE(obj, offset, jlong, x);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 Handle p (THREAD, JNIHandles::resolve(obj));
a61af66fc99e Initial load
duke
parents:
diff changeset
287 jlong* addr = (jlong*)(index_oop_from_field_offset_long(p(), offset));
a61af66fc99e Initial load
duke
parents:
diff changeset
288 ObjectLocker ol(p, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 *addr = x;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 #define DEFINE_GETSETOOP(jboolean, Boolean) \
a61af66fc99e Initial load
duke
parents:
diff changeset
296 \
a61af66fc99e Initial load
duke
parents:
diff changeset
297 UNSAFE_ENTRY(jboolean, Unsafe_Get##Boolean##140(JNIEnv *env, jobject unsafe, jobject obj, jint offset)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
298 UnsafeWrapper("Unsafe_Get"#Boolean); \
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if (obj == NULL) THROW_0(vmSymbols::java_lang_NullPointerException()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
300 GET_FIELD(obj, offset, jboolean, v); \
a61af66fc99e Initial load
duke
parents:
diff changeset
301 return v; \
a61af66fc99e Initial load
duke
parents:
diff changeset
302 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
303 \
a61af66fc99e Initial load
duke
parents:
diff changeset
304 UNSAFE_ENTRY(void, Unsafe_Set##Boolean##140(JNIEnv *env, jobject unsafe, jobject obj, jint offset, jboolean x)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
305 UnsafeWrapper("Unsafe_Set"#Boolean); \
a61af66fc99e Initial load
duke
parents:
diff changeset
306 if (obj == NULL) THROW(vmSymbols::java_lang_NullPointerException()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
307 SET_FIELD(obj, offset, jboolean, x); \
a61af66fc99e Initial load
duke
parents:
diff changeset
308 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
309 \
a61af66fc99e Initial load
duke
parents:
diff changeset
310 UNSAFE_ENTRY(jboolean, Unsafe_Get##Boolean(JNIEnv *env, jobject unsafe, jobject obj, jlong offset)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
311 UnsafeWrapper("Unsafe_Get"#Boolean); \
a61af66fc99e Initial load
duke
parents:
diff changeset
312 GET_FIELD(obj, offset, jboolean, v); \
a61af66fc99e Initial load
duke
parents:
diff changeset
313 return v; \
a61af66fc99e Initial load
duke
parents:
diff changeset
314 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
315 \
a61af66fc99e Initial load
duke
parents:
diff changeset
316 UNSAFE_ENTRY(void, Unsafe_Set##Boolean(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jboolean x)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
317 UnsafeWrapper("Unsafe_Set"#Boolean); \
a61af66fc99e Initial load
duke
parents:
diff changeset
318 SET_FIELD(obj, offset, jboolean, x); \
a61af66fc99e Initial load
duke
parents:
diff changeset
319 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
320 \
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // END DEFINE_GETSETOOP.
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 #define DEFINE_GETSETOOP_VOLATILE(jboolean, Boolean) \
a61af66fc99e Initial load
duke
parents:
diff changeset
325 \
a61af66fc99e Initial load
duke
parents:
diff changeset
326 UNSAFE_ENTRY(jboolean, Unsafe_Get##Boolean##Volatile(JNIEnv *env, jobject unsafe, jobject obj, jlong offset)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
327 UnsafeWrapper("Unsafe_Get"#Boolean); \
a61af66fc99e Initial load
duke
parents:
diff changeset
328 GET_FIELD_VOLATILE(obj, offset, jboolean, v); \
a61af66fc99e Initial load
duke
parents:
diff changeset
329 return v; \
a61af66fc99e Initial load
duke
parents:
diff changeset
330 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
331 \
a61af66fc99e Initial load
duke
parents:
diff changeset
332 UNSAFE_ENTRY(void, Unsafe_Set##Boolean##Volatile(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jboolean x)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
333 UnsafeWrapper("Unsafe_Set"#Boolean); \
a61af66fc99e Initial load
duke
parents:
diff changeset
334 SET_FIELD_VOLATILE(obj, offset, jboolean, x); \
a61af66fc99e Initial load
duke
parents:
diff changeset
335 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
336 \
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // END DEFINE_GETSETOOP_VOLATILE.
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 DEFINE_GETSETOOP(jboolean, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
340 DEFINE_GETSETOOP(jbyte, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
341 DEFINE_GETSETOOP(jshort, Short);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 DEFINE_GETSETOOP(jchar, Char);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 DEFINE_GETSETOOP(jint, Int);
a61af66fc99e Initial load
duke
parents:
diff changeset
344 DEFINE_GETSETOOP(jlong, Long);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 DEFINE_GETSETOOP(jfloat, Float);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 DEFINE_GETSETOOP(jdouble, Double);
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348 DEFINE_GETSETOOP_VOLATILE(jboolean, Boolean)
a61af66fc99e Initial load
duke
parents:
diff changeset
349 DEFINE_GETSETOOP_VOLATILE(jbyte, Byte)
a61af66fc99e Initial load
duke
parents:
diff changeset
350 DEFINE_GETSETOOP_VOLATILE(jshort, Short);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 DEFINE_GETSETOOP_VOLATILE(jchar, Char);
a61af66fc99e Initial load
duke
parents:
diff changeset
352 DEFINE_GETSETOOP_VOLATILE(jint, Int);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // no long -- handled specially
a61af66fc99e Initial load
duke
parents:
diff changeset
354 DEFINE_GETSETOOP_VOLATILE(jfloat, Float);
a61af66fc99e Initial load
duke
parents:
diff changeset
355 DEFINE_GETSETOOP_VOLATILE(jdouble, Double);
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 #undef DEFINE_GETSETOOP
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // The non-intrinsified versions of setOrdered just use setVolatile
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 UNSAFE_ENTRY(void, Unsafe_SetOrderedInt(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jint x)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
362 UnsafeWrapper("Unsafe_SetOrderedInt"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
363 SET_FIELD_VOLATILE(obj, offset, jint, x); \
a61af66fc99e Initial load
duke
parents:
diff changeset
364 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
365
a61af66fc99e Initial load
duke
parents:
diff changeset
366 UNSAFE_ENTRY(void, Unsafe_SetOrderedObject(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jobject x_h))
a61af66fc99e Initial load
duke
parents:
diff changeset
367 UnsafeWrapper("Unsafe_SetOrderedObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
368 oop x = JNIHandles::resolve(x_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
369 oop p = JNIHandles::resolve(obj);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
370 if (UseCompressedOops) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
371 oop_store((narrowOop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
372 } else {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
373 oop_store((oop*)index_oop_from_field_offset_long(p, offset), x);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
374 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
375 OrderAccess::fence();
a61af66fc99e Initial load
duke
parents:
diff changeset
376 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
377
a61af66fc99e Initial load
duke
parents:
diff changeset
378 UNSAFE_ENTRY(void, Unsafe_SetOrderedLong(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jlong x))
a61af66fc99e Initial load
duke
parents:
diff changeset
379 UnsafeWrapper("Unsafe_SetOrderedLong");
a61af66fc99e Initial load
duke
parents:
diff changeset
380 {
a61af66fc99e Initial load
duke
parents:
diff changeset
381 if (VM_Version::supports_cx8()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 SET_FIELD_VOLATILE(obj, offset, jlong, x);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
385 Handle p (THREAD, JNIHandles::resolve(obj));
a61af66fc99e Initial load
duke
parents:
diff changeset
386 jlong* addr = (jlong*)(index_oop_from_field_offset_long(p(), offset));
a61af66fc99e Initial load
duke
parents:
diff changeset
387 ObjectLocker ol(p, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 *addr = x;
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 }
a61af66fc99e Initial load
duke
parents:
diff changeset
391 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 ////// Data in the C heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // Note: These do not throw NullPointerException for bad pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // They just crash. Only a oop base pointer can generate a NullPointerException.
a61af66fc99e Initial load
duke
parents:
diff changeset
397 //
a61af66fc99e Initial load
duke
parents:
diff changeset
398 #define DEFINE_GETSETNATIVE(java_type, Type, native_type) \
a61af66fc99e Initial load
duke
parents:
diff changeset
399 \
a61af66fc99e Initial load
duke
parents:
diff changeset
400 UNSAFE_ENTRY(java_type, Unsafe_GetNative##Type(JNIEnv *env, jobject unsafe, jlong addr)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
401 UnsafeWrapper("Unsafe_GetNative"#Type); \
a61af66fc99e Initial load
duke
parents:
diff changeset
402 void* p = addr_from_java(addr); \
a61af66fc99e Initial load
duke
parents:
diff changeset
403 JavaThread* t = JavaThread::current(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
404 t->set_doing_unsafe_access(true); \
a61af66fc99e Initial load
duke
parents:
diff changeset
405 java_type x = *(volatile native_type*)p; \
a61af66fc99e Initial load
duke
parents:
diff changeset
406 t->set_doing_unsafe_access(false); \
a61af66fc99e Initial load
duke
parents:
diff changeset
407 return x; \
a61af66fc99e Initial load
duke
parents:
diff changeset
408 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
409 \
a61af66fc99e Initial load
duke
parents:
diff changeset
410 UNSAFE_ENTRY(void, Unsafe_SetNative##Type(JNIEnv *env, jobject unsafe, jlong addr, java_type x)) \
a61af66fc99e Initial load
duke
parents:
diff changeset
411 UnsafeWrapper("Unsafe_SetNative"#Type); \
a61af66fc99e Initial load
duke
parents:
diff changeset
412 JavaThread* t = JavaThread::current(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
413 t->set_doing_unsafe_access(true); \
a61af66fc99e Initial load
duke
parents:
diff changeset
414 void* p = addr_from_java(addr); \
a61af66fc99e Initial load
duke
parents:
diff changeset
415 *(volatile native_type*)p = x; \
a61af66fc99e Initial load
duke
parents:
diff changeset
416 t->set_doing_unsafe_access(false); \
a61af66fc99e Initial load
duke
parents:
diff changeset
417 UNSAFE_END \
a61af66fc99e Initial load
duke
parents:
diff changeset
418 \
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // END DEFINE_GETSETNATIVE.
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 DEFINE_GETSETNATIVE(jbyte, Byte, signed char)
a61af66fc99e Initial load
duke
parents:
diff changeset
422 DEFINE_GETSETNATIVE(jshort, Short, signed short);
a61af66fc99e Initial load
duke
parents:
diff changeset
423 DEFINE_GETSETNATIVE(jchar, Char, unsigned short);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 DEFINE_GETSETNATIVE(jint, Int, jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // no long -- handled specially
a61af66fc99e Initial load
duke
parents:
diff changeset
426 DEFINE_GETSETNATIVE(jfloat, Float, float);
a61af66fc99e Initial load
duke
parents:
diff changeset
427 DEFINE_GETSETNATIVE(jdouble, Double, double);
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 #undef DEFINE_GETSETNATIVE
a61af66fc99e Initial load
duke
parents:
diff changeset
430
a61af66fc99e Initial load
duke
parents:
diff changeset
431 UNSAFE_ENTRY(jlong, Unsafe_GetNativeLong(JNIEnv *env, jobject unsafe, jlong addr))
a61af66fc99e Initial load
duke
parents:
diff changeset
432 UnsafeWrapper("Unsafe_GetNativeLong");
a61af66fc99e Initial load
duke
parents:
diff changeset
433 JavaThread* t = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // We do it this way to avoid problems with access to heap using 64
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // bit loads, as jlong in heap could be not 64-bit aligned, and on
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // some CPUs (SPARC) it leads to SIGBUS.
a61af66fc99e Initial load
duke
parents:
diff changeset
437 t->set_doing_unsafe_access(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 void* p = addr_from_java(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
439 jlong x;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 if (((intptr_t)p & 7) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // jlong is aligned, do a volatile access
a61af66fc99e Initial load
duke
parents:
diff changeset
442 x = *(volatile jlong*)p;
a61af66fc99e Initial load
duke
parents:
diff changeset
443 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 jlong_accessor acc;
a61af66fc99e Initial load
duke
parents:
diff changeset
445 acc.words[0] = ((volatile jint*)p)[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
446 acc.words[1] = ((volatile jint*)p)[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
447 x = acc.long_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 t->set_doing_unsafe_access(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
450 return x;
a61af66fc99e Initial load
duke
parents:
diff changeset
451 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 UNSAFE_ENTRY(void, Unsafe_SetNativeLong(JNIEnv *env, jobject unsafe, jlong addr, jlong x))
a61af66fc99e Initial load
duke
parents:
diff changeset
454 UnsafeWrapper("Unsafe_SetNativeLong");
a61af66fc99e Initial load
duke
parents:
diff changeset
455 JavaThread* t = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
456 // see comment for Unsafe_GetNativeLong
a61af66fc99e Initial load
duke
parents:
diff changeset
457 t->set_doing_unsafe_access(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 void* p = addr_from_java(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
459 if (((intptr_t)p & 7) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // jlong is aligned, do a volatile access
a61af66fc99e Initial load
duke
parents:
diff changeset
461 *(volatile jlong*)p = x;
a61af66fc99e Initial load
duke
parents:
diff changeset
462 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
463 jlong_accessor acc;
a61af66fc99e Initial load
duke
parents:
diff changeset
464 acc.long_value = x;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 ((volatile jint*)p)[0] = acc.words[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
466 ((volatile jint*)p)[1] = acc.words[1];
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468 t->set_doing_unsafe_access(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
469 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
470
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472 UNSAFE_ENTRY(jlong, Unsafe_GetNativeAddress(JNIEnv *env, jobject unsafe, jlong addr))
a61af66fc99e Initial load
duke
parents:
diff changeset
473 UnsafeWrapper("Unsafe_GetNativeAddress");
a61af66fc99e Initial load
duke
parents:
diff changeset
474 void* p = addr_from_java(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
475 return addr_to_java(*(void**)p);
a61af66fc99e Initial load
duke
parents:
diff changeset
476 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 UNSAFE_ENTRY(void, Unsafe_SetNativeAddress(JNIEnv *env, jobject unsafe, jlong addr, jlong x))
a61af66fc99e Initial load
duke
parents:
diff changeset
479 UnsafeWrapper("Unsafe_SetNativeAddress");
a61af66fc99e Initial load
duke
parents:
diff changeset
480 void* p = addr_from_java(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
481 *(void**)p = addr_from_java(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
482 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485 ////// Allocation requests
a61af66fc99e Initial load
duke
parents:
diff changeset
486
a61af66fc99e Initial load
duke
parents:
diff changeset
487 UNSAFE_ENTRY(jobject, Unsafe_AllocateInstance(JNIEnv *env, jobject unsafe, jclass cls))
a61af66fc99e Initial load
duke
parents:
diff changeset
488 UnsafeWrapper("Unsafe_AllocateInstance");
a61af66fc99e Initial load
duke
parents:
diff changeset
489 {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 ThreadToNativeFromVM ttnfv(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
491 return env->AllocObject(cls);
a61af66fc99e Initial load
duke
parents:
diff changeset
492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
493 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 UNSAFE_ENTRY(jlong, Unsafe_AllocateMemory(JNIEnv *env, jobject unsafe, jlong size))
a61af66fc99e Initial load
duke
parents:
diff changeset
496 UnsafeWrapper("Unsafe_AllocateMemory");
a61af66fc99e Initial load
duke
parents:
diff changeset
497 size_t sz = (size_t)size;
a61af66fc99e Initial load
duke
parents:
diff changeset
498 if (sz != (julong)size || size < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
499 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
501 if (sz == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
502 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504 sz = round_to(sz, HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
505 void* x = os::malloc(sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
506 if (x == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
507 THROW_0(vmSymbols::java_lang_OutOfMemoryError());
a61af66fc99e Initial load
duke
parents:
diff changeset
508 }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 //Copy::fill_to_words((HeapWord*)x, sz / HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
510 return addr_to_java(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
511 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 UNSAFE_ENTRY(jlong, Unsafe_ReallocateMemory(JNIEnv *env, jobject unsafe, jlong addr, jlong size))
a61af66fc99e Initial load
duke
parents:
diff changeset
514 UnsafeWrapper("Unsafe_ReallocateMemory");
a61af66fc99e Initial load
duke
parents:
diff changeset
515 void* p = addr_from_java(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
516 size_t sz = (size_t)size;
a61af66fc99e Initial load
duke
parents:
diff changeset
517 if (sz != (julong)size || size < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
520 if (sz == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
521 os::free(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
522 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524 sz = round_to(sz, HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
525 void* x = (p == NULL) ? os::malloc(sz) : os::realloc(p, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
526 if (x == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 THROW_0(vmSymbols::java_lang_OutOfMemoryError());
a61af66fc99e Initial load
duke
parents:
diff changeset
528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
529 return addr_to_java(x);
a61af66fc99e Initial load
duke
parents:
diff changeset
530 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 UNSAFE_ENTRY(void, Unsafe_FreeMemory(JNIEnv *env, jobject unsafe, jlong addr))
a61af66fc99e Initial load
duke
parents:
diff changeset
533 UnsafeWrapper("Unsafe_FreeMemory");
a61af66fc99e Initial load
duke
parents:
diff changeset
534 void* p = addr_from_java(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
535 if (p == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
538 os::free(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
539 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 UNSAFE_ENTRY(void, Unsafe_SetMemory(JNIEnv *env, jobject unsafe, jlong addr, jlong size, jbyte value))
a61af66fc99e Initial load
duke
parents:
diff changeset
542 UnsafeWrapper("Unsafe_SetMemory");
a61af66fc99e Initial load
duke
parents:
diff changeset
543 size_t sz = (size_t)size;
a61af66fc99e Initial load
duke
parents:
diff changeset
544 if (sz != (julong)size || size < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
545 THROW(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
546 }
a61af66fc99e Initial load
duke
parents:
diff changeset
547 char* p = (char*) addr_from_java(addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
548 Copy::fill_to_memory_atomic(p, sz, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
549 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
550
a61af66fc99e Initial load
duke
parents:
diff changeset
551 UNSAFE_ENTRY(void, Unsafe_SetMemory2(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jlong size, jbyte value))
a61af66fc99e Initial load
duke
parents:
diff changeset
552 UnsafeWrapper("Unsafe_SetMemory");
a61af66fc99e Initial load
duke
parents:
diff changeset
553 size_t sz = (size_t)size;
a61af66fc99e Initial load
duke
parents:
diff changeset
554 if (sz != (julong)size || size < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
555 THROW(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
557 oop base = JNIHandles::resolve(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
558 void* p = index_oop_from_field_offset_long(base, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
559 Copy::fill_to_memory_atomic(p, sz, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
560 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
561
a61af66fc99e Initial load
duke
parents:
diff changeset
562 UNSAFE_ENTRY(void, Unsafe_CopyMemory(JNIEnv *env, jobject unsafe, jlong srcAddr, jlong dstAddr, jlong size))
a61af66fc99e Initial load
duke
parents:
diff changeset
563 UnsafeWrapper("Unsafe_CopyMemory");
a61af66fc99e Initial load
duke
parents:
diff changeset
564 if (size == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
565 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
567 size_t sz = (size_t)size;
a61af66fc99e Initial load
duke
parents:
diff changeset
568 if (sz != (julong)size || size < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
569 THROW(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
571 void* src = addr_from_java(srcAddr);
a61af66fc99e Initial load
duke
parents:
diff changeset
572 void* dst = addr_from_java(dstAddr);
a61af66fc99e Initial load
duke
parents:
diff changeset
573 Copy::conjoint_memory_atomic(src, dst, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
574 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
575
a61af66fc99e Initial load
duke
parents:
diff changeset
576 UNSAFE_ENTRY(void, Unsafe_CopyMemory2(JNIEnv *env, jobject unsafe, jobject srcObj, jlong srcOffset, jobject dstObj, jlong dstOffset, jlong size))
a61af66fc99e Initial load
duke
parents:
diff changeset
577 UnsafeWrapper("Unsafe_CopyMemory");
a61af66fc99e Initial load
duke
parents:
diff changeset
578 if (size == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
581 size_t sz = (size_t)size;
a61af66fc99e Initial load
duke
parents:
diff changeset
582 if (sz != (julong)size || size < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 THROW(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
584 }
a61af66fc99e Initial load
duke
parents:
diff changeset
585 oop srcp = JNIHandles::resolve(srcObj);
a61af66fc99e Initial load
duke
parents:
diff changeset
586 oop dstp = JNIHandles::resolve(dstObj);
a61af66fc99e Initial load
duke
parents:
diff changeset
587 if (dstp != NULL && !dstp->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
588 // NYI: This works only for non-oop arrays at present.
a61af66fc99e Initial load
duke
parents:
diff changeset
589 // Generalizing it would be reasonable, but requires card marking.
a61af66fc99e Initial load
duke
parents:
diff changeset
590 // Also, autoboxing a Long from 0L in copyMemory(x,y, 0L,z, n) would be bad.
a61af66fc99e Initial load
duke
parents:
diff changeset
591 THROW(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
592 }
a61af66fc99e Initial load
duke
parents:
diff changeset
593 void* src = index_oop_from_field_offset_long(srcp, srcOffset);
a61af66fc99e Initial load
duke
parents:
diff changeset
594 void* dst = index_oop_from_field_offset_long(dstp, dstOffset);
a61af66fc99e Initial load
duke
parents:
diff changeset
595 Copy::conjoint_memory_atomic(src, dst, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
596 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 ////// Random queries
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 // See comment at file start about UNSAFE_LEAF
a61af66fc99e Initial load
duke
parents:
diff changeset
602 //UNSAFE_LEAF(jint, Unsafe_AddressSize())
a61af66fc99e Initial load
duke
parents:
diff changeset
603 UNSAFE_ENTRY(jint, Unsafe_AddressSize(JNIEnv *env, jobject unsafe))
a61af66fc99e Initial load
duke
parents:
diff changeset
604 UnsafeWrapper("Unsafe_AddressSize");
a61af66fc99e Initial load
duke
parents:
diff changeset
605 return sizeof(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
606 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 // See comment at file start about UNSAFE_LEAF
a61af66fc99e Initial load
duke
parents:
diff changeset
609 //UNSAFE_LEAF(jint, Unsafe_PageSize())
a61af66fc99e Initial load
duke
parents:
diff changeset
610 UNSAFE_ENTRY(jint, Unsafe_PageSize(JNIEnv *env, jobject unsafe))
a61af66fc99e Initial load
duke
parents:
diff changeset
611 UnsafeWrapper("Unsafe_PageSize");
a61af66fc99e Initial load
duke
parents:
diff changeset
612 return os::vm_page_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
613 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
614
a61af66fc99e Initial load
duke
parents:
diff changeset
615 jint find_field_offset(jobject field, int must_be_static, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
616 if (field == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
617 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
618 }
a61af66fc99e Initial load
duke
parents:
diff changeset
619
a61af66fc99e Initial load
duke
parents:
diff changeset
620 oop reflected = JNIHandles::resolve_non_null(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
621 oop mirror = java_lang_reflect_Field::clazz(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
622 klassOop k = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
623 int slot = java_lang_reflect_Field::slot(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
624 int modifiers = java_lang_reflect_Field::modifiers(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
625
a61af66fc99e Initial load
duke
parents:
diff changeset
626 if (must_be_static >= 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
627 int really_is_static = ((modifiers & JVM_ACC_STATIC) != 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
628 if (must_be_static != really_is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
632
a61af66fc99e Initial load
duke
parents:
diff changeset
633 int offset = instanceKlass::cast(k)->offset_from_fields(slot);
a61af66fc99e Initial load
duke
parents:
diff changeset
634 return field_offset_from_byte_offset(offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 UNSAFE_ENTRY(jlong, Unsafe_ObjectFieldOffset(JNIEnv *env, jobject unsafe, jobject field))
a61af66fc99e Initial load
duke
parents:
diff changeset
638 UnsafeWrapper("Unsafe_ObjectFieldOffset");
a61af66fc99e Initial load
duke
parents:
diff changeset
639 return find_field_offset(field, 0, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
641
a61af66fc99e Initial load
duke
parents:
diff changeset
642 UNSAFE_ENTRY(jlong, Unsafe_StaticFieldOffset(JNIEnv *env, jobject unsafe, jobject field))
a61af66fc99e Initial load
duke
parents:
diff changeset
643 UnsafeWrapper("Unsafe_StaticFieldOffset");
a61af66fc99e Initial load
duke
parents:
diff changeset
644 return find_field_offset(field, 1, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
645 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
646
a61af66fc99e Initial load
duke
parents:
diff changeset
647 UNSAFE_ENTRY(jobject, Unsafe_StaticFieldBaseFromField(JNIEnv *env, jobject unsafe, jobject field))
a61af66fc99e Initial load
duke
parents:
diff changeset
648 UnsafeWrapper("Unsafe_StaticFieldBase");
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // Note: In this VM implementation, a field address is always a short
a61af66fc99e Initial load
duke
parents:
diff changeset
650 // offset from the base of a a klass metaobject. Thus, the full dynamic
a61af66fc99e Initial load
duke
parents:
diff changeset
651 // range of the return type is never used. However, some implementations
a61af66fc99e Initial load
duke
parents:
diff changeset
652 // might put the static field inside an array shared by many classes,
a61af66fc99e Initial load
duke
parents:
diff changeset
653 // or even at a fixed address, in which case the address could be quite
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // large. In that last case, this function would return NULL, since
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // the address would operate alone, without any base pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
656
a61af66fc99e Initial load
duke
parents:
diff changeset
657 if (field == NULL) THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
658
a61af66fc99e Initial load
duke
parents:
diff changeset
659 oop reflected = JNIHandles::resolve_non_null(field);
a61af66fc99e Initial load
duke
parents:
diff changeset
660 oop mirror = java_lang_reflect_Field::clazz(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 int modifiers = java_lang_reflect_Field::modifiers(reflected);
a61af66fc99e Initial load
duke
parents:
diff changeset
662
a61af66fc99e Initial load
duke
parents:
diff changeset
663 if ((modifiers & JVM_ACC_STATIC) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
664 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a61af66fc99e Initial load
duke
parents:
diff changeset
665 }
a61af66fc99e Initial load
duke
parents:
diff changeset
666
a61af66fc99e Initial load
duke
parents:
diff changeset
667 return JNIHandles::make_local(env, java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
668 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 //@deprecated
a61af66fc99e Initial load
duke
parents:
diff changeset
671 UNSAFE_ENTRY(jint, Unsafe_FieldOffset(JNIEnv *env, jobject unsafe, jobject field))
a61af66fc99e Initial load
duke
parents:
diff changeset
672 UnsafeWrapper("Unsafe_FieldOffset");
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // tries (but fails) to be polymorphic between static and non-static:
a61af66fc99e Initial load
duke
parents:
diff changeset
674 jlong offset = find_field_offset(field, -1, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
675 guarantee(offset == (jint)offset, "offset fits in 32 bits");
a61af66fc99e Initial load
duke
parents:
diff changeset
676 return (jint)offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
677 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
678
a61af66fc99e Initial load
duke
parents:
diff changeset
679 //@deprecated
a61af66fc99e Initial load
duke
parents:
diff changeset
680 UNSAFE_ENTRY(jobject, Unsafe_StaticFieldBaseFromClass(JNIEnv *env, jobject unsafe, jobject clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
681 UnsafeWrapper("Unsafe_StaticFieldBase");
a61af66fc99e Initial load
duke
parents:
diff changeset
682 if (clazz == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
683 THROW_0(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685 return JNIHandles::make_local(env, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(clazz)));
a61af66fc99e Initial load
duke
parents:
diff changeset
686 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688 UNSAFE_ENTRY(void, Unsafe_EnsureClassInitialized(JNIEnv *env, jobject unsafe, jobject clazz))
a61af66fc99e Initial load
duke
parents:
diff changeset
689 UnsafeWrapper("Unsafe_EnsureClassInitialized");
a61af66fc99e Initial load
duke
parents:
diff changeset
690 if (clazz == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
691 THROW(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
692 }
a61af66fc99e Initial load
duke
parents:
diff changeset
693 oop mirror = JNIHandles::resolve_non_null(clazz);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 instanceKlass* k = instanceKlass::cast(java_lang_Class::as_klassOop(mirror));
a61af66fc99e Initial load
duke
parents:
diff changeset
695 if (k != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
696 k->initialize(CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
697 }
a61af66fc99e Initial load
duke
parents:
diff changeset
698 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
699
a61af66fc99e Initial load
duke
parents:
diff changeset
700 static void getBaseAndScale(int& base, int& scale, jclass acls, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
701 if (acls == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
702 THROW(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
704 oop mirror = JNIHandles::resolve_non_null(acls);
a61af66fc99e Initial load
duke
parents:
diff changeset
705 klassOop k = java_lang_Class::as_klassOop(mirror);
a61af66fc99e Initial load
duke
parents:
diff changeset
706 if (k == NULL || !k->klass_part()->oop_is_array()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
707 THROW(vmSymbols::java_lang_InvalidClassException());
a61af66fc99e Initial load
duke
parents:
diff changeset
708 } else if (k->klass_part()->oop_is_objArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
709 base = arrayOopDesc::base_offset_in_bytes(T_OBJECT);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
710 scale = heapOopSize;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
711 } else if (k->klass_part()->oop_is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
712 typeArrayKlass* tak = typeArrayKlass::cast(k);
a61af66fc99e Initial load
duke
parents:
diff changeset
713 base = tak->array_header_in_bytes();
a61af66fc99e Initial load
duke
parents:
diff changeset
714 assert(base == arrayOopDesc::base_offset_in_bytes(tak->element_type()), "array_header_size semantics ok");
a61af66fc99e Initial load
duke
parents:
diff changeset
715 scale = (1 << tak->log2_element_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
716 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
717 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
718 }
a61af66fc99e Initial load
duke
parents:
diff changeset
719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
720
a61af66fc99e Initial load
duke
parents:
diff changeset
721 UNSAFE_ENTRY(jint, Unsafe_ArrayBaseOffset(JNIEnv *env, jobject unsafe, jclass acls))
a61af66fc99e Initial load
duke
parents:
diff changeset
722 UnsafeWrapper("Unsafe_ArrayBaseOffset");
a61af66fc99e Initial load
duke
parents:
diff changeset
723 int base, scale;
a61af66fc99e Initial load
duke
parents:
diff changeset
724 getBaseAndScale(base, scale, acls, CHECK_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
725 return field_offset_from_byte_offset(base);
a61af66fc99e Initial load
duke
parents:
diff changeset
726 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
727
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 UNSAFE_ENTRY(jint, Unsafe_ArrayIndexScale(JNIEnv *env, jobject unsafe, jclass acls))
a61af66fc99e Initial load
duke
parents:
diff changeset
730 UnsafeWrapper("Unsafe_ArrayIndexScale");
a61af66fc99e Initial load
duke
parents:
diff changeset
731 int base, scale;
a61af66fc99e Initial load
duke
parents:
diff changeset
732 getBaseAndScale(base, scale, acls, CHECK_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // This VM packs both fields and array elements down to the byte.
a61af66fc99e Initial load
duke
parents:
diff changeset
734 // But watch out: If this changes, so that array references for
a61af66fc99e Initial load
duke
parents:
diff changeset
735 // a given primitive type (say, T_BOOLEAN) use different memory units
a61af66fc99e Initial load
duke
parents:
diff changeset
736 // than fields, this method MUST return zero for such arrays.
a61af66fc99e Initial load
duke
parents:
diff changeset
737 // For example, the VM used to store sub-word sized fields in full
a61af66fc99e Initial load
duke
parents:
diff changeset
738 // words in the object layout, so that accessors like getByte(Object,int)
a61af66fc99e Initial load
duke
parents:
diff changeset
739 // did not really do what one might expect for arrays. Therefore,
a61af66fc99e Initial load
duke
parents:
diff changeset
740 // this function used to report a zero scale factor, so that the user
a61af66fc99e Initial load
duke
parents:
diff changeset
741 // would know not to attempt to access sub-word array elements.
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // // Code for unpacked fields:
a61af66fc99e Initial load
duke
parents:
diff changeset
743 // if (scale < wordSize) return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 // The following allows for a pretty general fieldOffset cookie scheme,
a61af66fc99e Initial load
duke
parents:
diff changeset
746 // but requires it to be linear in byte offset.
a61af66fc99e Initial load
duke
parents:
diff changeset
747 return field_offset_from_byte_offset(scale) - field_offset_from_byte_offset(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
748 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
749
a61af66fc99e Initial load
duke
parents:
diff changeset
750
a61af66fc99e Initial load
duke
parents:
diff changeset
751 static inline void throw_new(JNIEnv *env, const char *ename) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 char buf[100];
a61af66fc99e Initial load
duke
parents:
diff changeset
753 strcpy(buf, "java/lang/");
a61af66fc99e Initial load
duke
parents:
diff changeset
754 strcat(buf, ename);
a61af66fc99e Initial load
duke
parents:
diff changeset
755 jclass cls = env->FindClass(buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
756 char* msg = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
757 env->ThrowNew(cls, msg);
a61af66fc99e Initial load
duke
parents:
diff changeset
758 }
a61af66fc99e Initial load
duke
parents:
diff changeset
759
a61af66fc99e Initial load
duke
parents:
diff changeset
760 static jclass Unsafe_DefineClass(JNIEnv *env, jstring name, jbyteArray data, int offset, int length, jobject loader, jobject pd) {
a61af66fc99e Initial load
duke
parents:
diff changeset
761 {
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // Code lifted from JDK 1.3 ClassLoader.c
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764 jbyte *body;
a61af66fc99e Initial load
duke
parents:
diff changeset
765 char *utfName;
a61af66fc99e Initial load
duke
parents:
diff changeset
766 jclass result = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
767 char buf[128];
a61af66fc99e Initial load
duke
parents:
diff changeset
768
a61af66fc99e Initial load
duke
parents:
diff changeset
769 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
770 ClassLoader::unsafe_defineClassCallCounter()->inc();
a61af66fc99e Initial load
duke
parents:
diff changeset
771 }
a61af66fc99e Initial load
duke
parents:
diff changeset
772
a61af66fc99e Initial load
duke
parents:
diff changeset
773 if (data == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
774 throw_new(env, "NullPointerException");
a61af66fc99e Initial load
duke
parents:
diff changeset
775 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
777
a61af66fc99e Initial load
duke
parents:
diff changeset
778 /* Work around 4153825. malloc crashes on Solaris when passed a
a61af66fc99e Initial load
duke
parents:
diff changeset
779 * negative size.
a61af66fc99e Initial load
duke
parents:
diff changeset
780 */
a61af66fc99e Initial load
duke
parents:
diff changeset
781 if (length < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
782 throw_new(env, "ArrayIndexOutOfBoundsException");
a61af66fc99e Initial load
duke
parents:
diff changeset
783 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
784 }
a61af66fc99e Initial load
duke
parents:
diff changeset
785
a61af66fc99e Initial load
duke
parents:
diff changeset
786 body = NEW_C_HEAP_ARRAY(jbyte, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
787
a61af66fc99e Initial load
duke
parents:
diff changeset
788 if (body == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
789 throw_new(env, "OutOfMemoryError");
a61af66fc99e Initial load
duke
parents:
diff changeset
790 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
792
a61af66fc99e Initial load
duke
parents:
diff changeset
793 env->GetByteArrayRegion(data, offset, length, body);
a61af66fc99e Initial load
duke
parents:
diff changeset
794
a61af66fc99e Initial load
duke
parents:
diff changeset
795 if (env->ExceptionOccurred())
a61af66fc99e Initial load
duke
parents:
diff changeset
796 goto free_body;
a61af66fc99e Initial load
duke
parents:
diff changeset
797
a61af66fc99e Initial load
duke
parents:
diff changeset
798 if (name != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
799 uint len = env->GetStringUTFLength(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
800 int unicode_len = env->GetStringLength(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 if (len >= sizeof(buf)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
802 utfName = NEW_C_HEAP_ARRAY(char, len + 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 if (utfName == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
804 throw_new(env, "OutOfMemoryError");
a61af66fc99e Initial load
duke
parents:
diff changeset
805 goto free_body;
a61af66fc99e Initial load
duke
parents:
diff changeset
806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
807 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
808 utfName = buf;
a61af66fc99e Initial load
duke
parents:
diff changeset
809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
810 env->GetStringUTFRegion(name, 0, unicode_len, utfName);
a61af66fc99e Initial load
duke
parents:
diff changeset
811 //VerifyFixClassname(utfName);
a61af66fc99e Initial load
duke
parents:
diff changeset
812 for (uint i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
813 if (utfName[i] == '.') utfName[i] = '/';
a61af66fc99e Initial load
duke
parents:
diff changeset
814 }
a61af66fc99e Initial load
duke
parents:
diff changeset
815 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
816 utfName = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
817 }
a61af66fc99e Initial load
duke
parents:
diff changeset
818
a61af66fc99e Initial load
duke
parents:
diff changeset
819 result = JVM_DefineClass(env, utfName, loader, body, length, pd);
a61af66fc99e Initial load
duke
parents:
diff changeset
820
a61af66fc99e Initial load
duke
parents:
diff changeset
821 if (utfName && utfName != buf)
a61af66fc99e Initial load
duke
parents:
diff changeset
822 FREE_C_HEAP_ARRAY(char, utfName);
a61af66fc99e Initial load
duke
parents:
diff changeset
823
a61af66fc99e Initial load
duke
parents:
diff changeset
824 free_body:
a61af66fc99e Initial load
duke
parents:
diff changeset
825 FREE_C_HEAP_ARRAY(jbyte, body);
a61af66fc99e Initial load
duke
parents:
diff changeset
826 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
827 }
a61af66fc99e Initial load
duke
parents:
diff changeset
828 }
a61af66fc99e Initial load
duke
parents:
diff changeset
829
a61af66fc99e Initial load
duke
parents:
diff changeset
830
a61af66fc99e Initial load
duke
parents:
diff changeset
831 UNSAFE_ENTRY(jclass, Unsafe_DefineClass0(JNIEnv *env, jobject unsafe, jstring name, jbyteArray data, int offset, int length))
a61af66fc99e Initial load
duke
parents:
diff changeset
832 UnsafeWrapper("Unsafe_DefineClass");
a61af66fc99e Initial load
duke
parents:
diff changeset
833 {
a61af66fc99e Initial load
duke
parents:
diff changeset
834 ThreadToNativeFromVM ttnfv(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
835
a61af66fc99e Initial load
duke
parents:
diff changeset
836 int depthFromDefineClass0 = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
837 jclass caller = JVM_GetCallerClass(env, depthFromDefineClass0);
a61af66fc99e Initial load
duke
parents:
diff changeset
838 jobject loader = (caller == NULL) ? NULL : JVM_GetClassLoader(env, caller);
a61af66fc99e Initial load
duke
parents:
diff changeset
839 jobject pd = (caller == NULL) ? NULL : JVM_GetProtectionDomain(env, caller);
a61af66fc99e Initial load
duke
parents:
diff changeset
840
a61af66fc99e Initial load
duke
parents:
diff changeset
841 return Unsafe_DefineClass(env, name, data, offset, length, loader, pd);
a61af66fc99e Initial load
duke
parents:
diff changeset
842 }
a61af66fc99e Initial load
duke
parents:
diff changeset
843 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
844
a61af66fc99e Initial load
duke
parents:
diff changeset
845
a61af66fc99e Initial load
duke
parents:
diff changeset
846 UNSAFE_ENTRY(jclass, Unsafe_DefineClass1(JNIEnv *env, jobject unsafe, jstring name, jbyteArray data, int offset, int length, jobject loader, jobject pd))
a61af66fc99e Initial load
duke
parents:
diff changeset
847 UnsafeWrapper("Unsafe_DefineClass");
a61af66fc99e Initial load
duke
parents:
diff changeset
848 {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 ThreadToNativeFromVM ttnfv(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
850
a61af66fc99e Initial load
duke
parents:
diff changeset
851 return Unsafe_DefineClass(env, name, data, offset, length, loader, pd);
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
a61af66fc99e Initial load
duke
parents:
diff changeset
853 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
854
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
855 #define DAC_Args CLS"[B["OBJ
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
856 // define a class but do not make it known to the class loader or system dictionary
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
857 // - host_class: supplies context for linkage, access control, protection domain, and class loader
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
858 // - data: bytes of a class file, a raw memory address (length gives the number of bytes)
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
859 // - cp_patches: where non-null entries exist, they replace corresponding CP entries in data
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
860
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
861 // When you load an anonymous class U, it works as if you changed its name just before loading,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
862 // to a name that you will never use again. Since the name is lost, no other class can directly
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
863 // link to any member of U. Just after U is loaded, the only way to use it is reflectively,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
864 // through java.lang.Class methods like Class.newInstance.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
865
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
866 // Access checks for linkage sites within U continue to follow the same rules as for named classes.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
867 // The package of an anonymous class is given by the package qualifier on the name under which it was loaded.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
868 // An anonymous class also has special privileges to access any member of its host class.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
869 // This is the main reason why this loading operation is unsafe. The purpose of this is to
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
870 // allow language implementations to simulate "open classes"; a host class in effect gets
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
871 // new code when an anonymous class is loaded alongside it. A less convenient but more
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
872 // standard way to do this is with reflection, which can also be set to ignore access
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
873 // restrictions.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
874
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
875 // Access into an anonymous class is possible only through reflection. Therefore, there
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
876 // are no special access rules for calling into an anonymous class. The relaxed access
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
877 // rule for the host class is applied in the opposite direction: A host class reflectively
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
878 // access one of its anonymous classes.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
879
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
880 // If you load the same bytecodes twice, you get two different classes. You can reload
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
881 // the same bytecodes with or without varying CP patches.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
882
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
883 // By using the CP patching array, you can have a new anonymous class U2 refer to an older one U1.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
884 // The bytecodes for U2 should refer to U1 by a symbolic name (doesn't matter what the name is).
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
885 // The CONSTANT_Class entry for that name can be patched to refer directly to U1.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
886
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
887 // This allows, for example, U2 to use U1 as a superclass or super-interface, or as
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
888 // an outer class (so that U2 is an anonymous inner class of anonymous U1).
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
889 // It is not possible for a named class, or an older anonymous class, to refer by
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
890 // name (via its CP) to a newer anonymous class.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
891
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
892 // CP patching may also be used to modify (i.e., hack) the names of methods, classes,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
893 // or type descriptors used in the loaded anonymous class.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
894
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
895 // Finally, CP patching may be used to introduce "live" objects into the constant pool,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
896 // instead of "dead" strings. A compiled statement like println((Object)"hello") can
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
897 // be changed to println(greeting), where greeting is an arbitrary object created before
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
898 // the anonymous class is loaded. This is useful in dynamic languages, in which
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
899 // various kinds of metaobjects must be introduced as constants into bytecode.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
900 // Note the cast (Object), which tells the verifier to expect an arbitrary object,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
901 // not just a literal string. For such ldc instructions, the verifier uses the
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
902 // type Object instead of String, if the loaded constant is not in fact a String.
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
903
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
904 static oop
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
905 Unsafe_DefineAnonymousClass_impl(JNIEnv *env,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
906 jclass host_class, jbyteArray data, jobjectArray cp_patches_jh,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
907 HeapWord* *temp_alloc,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
908 TRAPS) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
909
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
910 if (UsePerfData) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
911 ClassLoader::unsafe_defineClassCallCounter()->inc();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
912 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
913
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
914 if (data == NULL) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
915 THROW_0(vmSymbols::java_lang_NullPointerException());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
916 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
917
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
918 jint length = typeArrayOop(JNIHandles::resolve_non_null(data))->length();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
919 jint word_length = (length + sizeof(HeapWord)-1) / sizeof(HeapWord);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
920 HeapWord* body = NEW_C_HEAP_ARRAY(HeapWord, word_length);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
921 if (body == NULL) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
922 THROW_0(vmSymbols::java_lang_OutOfMemoryError());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
923 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
924
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
925 // caller responsible to free it:
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
926 (*temp_alloc) = body;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
927
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
928 {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
929 jbyte* array_base = typeArrayOop(JNIHandles::resolve_non_null(data))->byte_at_addr(0);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
930 Copy::conjoint_words((HeapWord*) array_base, body, word_length);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
931 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
932
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
933 u1* class_bytes = (u1*) body;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
934 int class_bytes_length = (int) length;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
935 if (class_bytes_length < 0) class_bytes_length = 0;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
936 if (class_bytes == NULL
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
937 || host_class == NULL
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
938 || length != class_bytes_length)
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
939 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
940
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
941 objArrayHandle cp_patches_h;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
942 if (cp_patches_jh != NULL) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
943 oop p = JNIHandles::resolve_non_null(cp_patches_jh);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
944 if (!p->is_objArray())
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
945 THROW_0(vmSymbols::java_lang_IllegalArgumentException());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
946 cp_patches_h = objArrayHandle(THREAD, (objArrayOop)p);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
947 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
948
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
949 KlassHandle host_klass(THREAD, java_lang_Class::as_klassOop(JNIHandles::resolve_non_null(host_class)));
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
950 const char* host_source = host_klass->external_name();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
951 Handle host_loader(THREAD, host_klass->class_loader());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
952 Handle host_domain(THREAD, host_klass->protection_domain());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
953
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
954 GrowableArray<Handle>* cp_patches = NULL;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
955 if (cp_patches_h.not_null()) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
956 int alen = cp_patches_h->length();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
957 for (int i = alen-1; i >= 0; i--) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
958 oop p = cp_patches_h->obj_at(i);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
959 if (p != NULL) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
960 Handle patch(THREAD, p);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
961 if (cp_patches == NULL)
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
962 cp_patches = new GrowableArray<Handle>(i+1, i+1, Handle());
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
963 cp_patches->at_put(i, patch);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
964 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
965 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
966 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
967
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
968 ClassFileStream st(class_bytes, class_bytes_length, (char*) host_source);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
969
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
970 instanceKlassHandle anon_klass;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
971 {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
972 symbolHandle no_class_name;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
973 klassOop anonk = SystemDictionary::parse_stream(no_class_name,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
974 host_loader, host_domain,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
975 &st, host_klass, cp_patches,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
976 CHECK_NULL);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
977 if (anonk == NULL) return NULL;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
978 anon_klass = instanceKlassHandle(THREAD, anonk);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
979 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
980
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
981 // let caller initialize it as needed...
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
982
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
983 return anon_klass->java_mirror();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
984 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
985
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
986 UNSAFE_ENTRY(jclass, Unsafe_DefineAnonymousClass(JNIEnv *env, jobject unsafe, jclass host_class, jbyteArray data, jobjectArray cp_patches_jh))
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
987 {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
988 UnsafeWrapper("Unsafe_DefineAnonymousClass");
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
989 ResourceMark rm(THREAD);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
990
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
991 HeapWord* temp_alloc = NULL;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
992
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
993 jobject res_jh = NULL;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
994
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
995 { oop res_oop = Unsafe_DefineAnonymousClass_impl(env,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
996 host_class, data, cp_patches_jh,
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
997 &temp_alloc, THREAD);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
998 if (res_oop != NULL)
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
999 res_jh = JNIHandles::make_local(env, res_oop);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1000 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1001
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1002 // try/finally clause:
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1003 if (temp_alloc != NULL) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1004 FREE_C_HEAP_ARRAY(HeapWord, temp_alloc);
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1005 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1006
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1007 return (jclass) res_jh;
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1008 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1009 UNSAFE_END
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1010
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1011
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1012
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 UNSAFE_ENTRY(void, Unsafe_MonitorEnter(JNIEnv *env, jobject unsafe, jobject jobj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 UnsafeWrapper("Unsafe_MonitorEnter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 if (jobj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 THROW(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 Handle obj(thread, JNIHandles::resolve_non_null(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 ObjectSynchronizer::jni_enter(obj, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1023
a61af66fc99e Initial load
duke
parents:
diff changeset
1024
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 UNSAFE_ENTRY(jboolean, Unsafe_TryMonitorEnter(JNIEnv *env, jobject unsafe, jobject jobj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 UnsafeWrapper("Unsafe_TryMonitorEnter");
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 if (jobj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 THROW_(vmSymbols::java_lang_NullPointerException(), JNI_FALSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 Handle obj(thread, JNIHandles::resolve_non_null(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 bool res = ObjectSynchronizer::jni_try_enter(obj, CHECK_0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 return (res ? JNI_TRUE : JNI_FALSE);
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1036
a61af66fc99e Initial load
duke
parents:
diff changeset
1037
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 UNSAFE_ENTRY(void, Unsafe_MonitorExit(JNIEnv *env, jobject unsafe, jobject jobj))
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 UnsafeWrapper("Unsafe_MonitorExit");
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (jobj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 THROW(vmSymbols::java_lang_NullPointerException());
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 Handle obj(THREAD, JNIHandles::resolve_non_null(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 ObjectSynchronizer::jni_exit(obj(), CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1048
a61af66fc99e Initial load
duke
parents:
diff changeset
1049
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 UNSAFE_ENTRY(void, Unsafe_ThrowException(JNIEnv *env, jobject unsafe, jthrowable thr))
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 UnsafeWrapper("Unsafe_ThrowException");
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 ThreadToNativeFromVM ttnfv(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 env->Throw(thr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1057
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 // JSR166 ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1059
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 UNSAFE_ENTRY(jboolean, Unsafe_CompareAndSwapObject(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jobject e_h, jobject x_h))
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 UnsafeWrapper("Unsafe_CompareAndSwapObject");
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 oop x = JNIHandles::resolve(x_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 oop e = JNIHandles::resolve(e_h);
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 oop p = JNIHandles::resolve(obj);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1065 HeapWord* addr = (HeapWord *)index_oop_from_field_offset_long(p, offset);
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 431
diff changeset
1066 if (UseCompressedOops) {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 431
diff changeset
1067 update_barrier_set_pre((narrowOop*)addr, e);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 431
diff changeset
1068 } else {
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 431
diff changeset
1069 update_barrier_set_pre((oop*)addr, e);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 431
diff changeset
1070 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1071 oop res = oopDesc::atomic_compare_exchange_oop(x, addr, e);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1072 jboolean success = (res == e);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 if (success)
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
1074 update_barrier_set((void*)addr, x);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 return success;
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1077
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 UNSAFE_ENTRY(jboolean, Unsafe_CompareAndSwapInt(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jint e, jint x))
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 UnsafeWrapper("Unsafe_CompareAndSwapInt");
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 oop p = JNIHandles::resolve(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 jint* addr = (jint *) index_oop_from_field_offset_long(p, offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 return (jint)(Atomic::cmpxchg(x, addr, e)) == e;
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1084
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 UNSAFE_ENTRY(jboolean, Unsafe_CompareAndSwapLong(JNIEnv *env, jobject unsafe, jobject obj, jlong offset, jlong e, jlong x))
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 UnsafeWrapper("Unsafe_CompareAndSwapLong");
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 Handle p (THREAD, JNIHandles::resolve(obj));
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 jlong* addr = (jlong*)(index_oop_from_field_offset_long(p(), offset));
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 if (VM_Version::supports_cx8())
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 return (jlong)(Atomic::cmpxchg(x, addr, e)) == e;
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 jboolean success = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 ObjectLocker ol(p, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 if (*addr == e) { *addr = x; success = true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 return success;
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1098
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 UNSAFE_ENTRY(void, Unsafe_Park(JNIEnv *env, jobject unsafe, jboolean isAbsolute, jlong time))
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 UnsafeWrapper("Unsafe_Park");
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 845
diff changeset
1101 HS_DTRACE_PROBE3(hotspot, thread__park__begin, thread->parker(), (int) isAbsolute, time);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 JavaThreadParkedState jtps(thread, time != 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 thread->parker()->park(isAbsolute != 0, time);
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 845
diff changeset
1104 HS_DTRACE_PROBE1(hotspot, thread__park__end, thread->parker());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1106
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 UNSAFE_ENTRY(void, Unsafe_Unpark(JNIEnv *env, jobject unsafe, jobject jthread))
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 UnsafeWrapper("Unsafe_Unpark");
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 Parker* p = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 if (jthread != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 oop java_thread = JNIHandles::resolve_non_null(jthread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 if (java_thread != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 jlong lp = java_lang_Thread::park_event(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 if (lp != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 // This cast is OK even though the jlong might have been read
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 // non-atomically on 32bit systems, since there, one word will
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 // always be zero anyway and the value set is always the same
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 p = (Parker*)addr_from_java(lp);
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 // Grab lock if apparently null or using older version of library
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 MutexLocker mu(Threads_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 java_thread = JNIHandles::resolve_non_null(jthread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 if (java_thread != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 JavaThread* thr = java_lang_Thread::thread(java_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 if (thr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 p = thr->parker();
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 if (p != NULL) { // Bind to Java thread for next time.
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 java_lang_Thread::set_park_event(java_thread, addr_to_java(p));
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 if (p != NULL) {
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 845
diff changeset
1136 HS_DTRACE_PROBE1(hotspot, thread__unpark, p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 p->unpark();
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1140
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 UNSAFE_ENTRY(jint, Unsafe_Loadavg(JNIEnv *env, jobject unsafe, jdoubleArray loadavg, jint nelem))
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 UnsafeWrapper("Unsafe_Loadavg");
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 const int max_nelem = 3;
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 double la[max_nelem];
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 jint ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1146
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 typeArrayOop a = typeArrayOop(JNIHandles::resolve_non_null(loadavg));
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 assert(a->is_typeArray(), "must be type array");
a61af66fc99e Initial load
duke
parents:
diff changeset
1149
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 if (nelem < 0 || nelem > max_nelem || a->length() < nelem) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 ThreadToNativeFromVM ttnfv(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 throw_new(env, "ArrayIndexOutOfBoundsException");
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1155
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 ret = os::loadavg(la, nelem);
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 if (ret == -1) return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1158
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 // if successful, ret is the number of samples actually retrieved.
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 assert(ret >= 0 && ret <= max_nelem, "Unexpected loadavg return value");
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 switch(ret) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 case 3: a->double_at_put(2, (jdouble)la[2]); // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 case 2: a->double_at_put(1, (jdouble)la[1]); // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 case 1: a->double_at_put(0, (jdouble)la[0]); break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 UNSAFE_ENTRY(void, Unsafe_PrefetchRead(JNIEnv* env, jclass ignored, jobject obj, jlong offset))
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 UnsafeWrapper("Unsafe_PrefetchRead");
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 oop p = JNIHandles::resolve(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 void* addr = index_oop_from_field_offset_long(p, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 Prefetch::read(addr, (intx)offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1175
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 UNSAFE_ENTRY(void, Unsafe_PrefetchWrite(JNIEnv* env, jclass ignored, jobject obj, jlong offset))
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 UnsafeWrapper("Unsafe_PrefetchWrite");
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 oop p = JNIHandles::resolve(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 void* addr = index_oop_from_field_offset_long(p, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 Prefetch::write(addr, (intx)offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 UNSAFE_END
a61af66fc99e Initial load
duke
parents:
diff changeset
1182
a61af66fc99e Initial load
duke
parents:
diff changeset
1183
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 /// JVM_RegisterUnsafeMethods
a61af66fc99e Initial load
duke
parents:
diff changeset
1185
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 #define ADR "J"
a61af66fc99e Initial load
duke
parents:
diff changeset
1187
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 #define LANG "Ljava/lang/"
a61af66fc99e Initial load
duke
parents:
diff changeset
1189
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 #define OBJ LANG"Object;"
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 #define CLS LANG"Class;"
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 #define CTR LANG"reflect/Constructor;"
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 #define FLD LANG"reflect/Field;"
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 #define MTH LANG"reflect/Method;"
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 #define THR LANG"Throwable;"
a61af66fc99e Initial load
duke
parents:
diff changeset
1196
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 #define DC0_Args LANG"String;[BII"
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 #define DC1_Args DC0_Args LANG"ClassLoader;" "Ljava/security/ProtectionDomain;"
a61af66fc99e Initial load
duke
parents:
diff changeset
1199
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 #define CC (char*) /*cast a literal from (const char*)*/
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 #define FN_PTR(f) CAST_FROM_FN_PTR(void*, &f)
a61af66fc99e Initial load
duke
parents:
diff changeset
1202
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 // define deprecated accessors for compabitility with 1.4.0
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 #define DECLARE_GETSETOOP_140(Boolean, Z) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 {CC"get"#Boolean, CC"("OBJ"I)"#Z, FN_PTR(Unsafe_Get##Boolean##140)}, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 {CC"put"#Boolean, CC"("OBJ"I"#Z")V", FN_PTR(Unsafe_Set##Boolean##140)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1207
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 // Note: In 1.4.1, getObject and kin take both int and long offsets.
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 #define DECLARE_GETSETOOP_141(Boolean, Z) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 {CC"get"#Boolean, CC"("OBJ"J)"#Z, FN_PTR(Unsafe_Get##Boolean)}, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 {CC"put"#Boolean, CC"("OBJ"J"#Z")V", FN_PTR(Unsafe_Set##Boolean)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1212
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 // Note: In 1.5.0, there are volatile versions too
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 #define DECLARE_GETSETOOP(Boolean, Z) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 {CC"get"#Boolean, CC"("OBJ"J)"#Z, FN_PTR(Unsafe_Get##Boolean)}, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1216 {CC"put"#Boolean, CC"("OBJ"J"#Z")V", FN_PTR(Unsafe_Set##Boolean)}, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 {CC"get"#Boolean"Volatile", CC"("OBJ"J)"#Z, FN_PTR(Unsafe_Get##Boolean##Volatile)}, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 {CC"put"#Boolean"Volatile", CC"("OBJ"J"#Z")V", FN_PTR(Unsafe_Set##Boolean##Volatile)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1219
a61af66fc99e Initial load
duke
parents:
diff changeset
1220
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 #define DECLARE_GETSETNATIVE(Byte, B) \
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 {CC"get"#Byte, CC"("ADR")"#B, FN_PTR(Unsafe_GetNative##Byte)}, \
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 {CC"put"#Byte, CC"("ADR#B")V", FN_PTR(Unsafe_SetNative##Byte)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1224
a61af66fc99e Initial load
duke
parents:
diff changeset
1225
a61af66fc99e Initial load
duke
parents:
diff changeset
1226
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 // %%% These are temporarily supported until the SDK sources
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 // contain the necessarily updated Unsafe.java.
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 static JNINativeMethod methods_140[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1230
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 {CC"getObject", CC"("OBJ"I)"OBJ"", FN_PTR(Unsafe_GetObject140)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 {CC"putObject", CC"("OBJ"I"OBJ")V", FN_PTR(Unsafe_SetObject140)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1233
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 DECLARE_GETSETOOP_140(Boolean, Z),
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 DECLARE_GETSETOOP_140(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1236 DECLARE_GETSETOOP_140(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 DECLARE_GETSETOOP_140(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 DECLARE_GETSETOOP_140(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 DECLARE_GETSETOOP_140(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 DECLARE_GETSETOOP_140(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 DECLARE_GETSETOOP_140(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1242
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 DECLARE_GETSETNATIVE(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 DECLARE_GETSETNATIVE(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 DECLARE_GETSETNATIVE(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 DECLARE_GETSETNATIVE(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 DECLARE_GETSETNATIVE(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 DECLARE_GETSETNATIVE(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 DECLARE_GETSETNATIVE(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1250
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 {CC"getAddress", CC"("ADR")"ADR, FN_PTR(Unsafe_GetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 {CC"putAddress", CC"("ADR""ADR")V", FN_PTR(Unsafe_SetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1253
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 {CC"allocateMemory", CC"(J)"ADR, FN_PTR(Unsafe_AllocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 {CC"reallocateMemory", CC"("ADR"J)"ADR, FN_PTR(Unsafe_ReallocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 // {CC"setMemory", CC"("ADR"JB)V", FN_PTR(Unsafe_SetMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 // {CC"copyMemory", CC"("ADR ADR"J)V", FN_PTR(Unsafe_CopyMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 {CC"freeMemory", CC"("ADR")V", FN_PTR(Unsafe_FreeMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1259
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 {CC"fieldOffset", CC"("FLD")I", FN_PTR(Unsafe_FieldOffset)}, //deprecated
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 {CC"staticFieldBase", CC"("CLS")"OBJ, FN_PTR(Unsafe_StaticFieldBaseFromClass)}, //deprecated
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 {CC"ensureClassInitialized",CC"("CLS")V", FN_PTR(Unsafe_EnsureClassInitialized)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 {CC"arrayBaseOffset", CC"("CLS")I", FN_PTR(Unsafe_ArrayBaseOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 {CC"arrayIndexScale", CC"("CLS")I", FN_PTR(Unsafe_ArrayIndexScale)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 {CC"addressSize", CC"()I", FN_PTR(Unsafe_AddressSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 {CC"pageSize", CC"()I", FN_PTR(Unsafe_PageSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1267
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 {CC"defineClass", CC"("DC0_Args")"CLS, FN_PTR(Unsafe_DefineClass0)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 {CC"defineClass", CC"("DC1_Args")"CLS, FN_PTR(Unsafe_DefineClass1)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 {CC"allocateInstance", CC"("CLS")"OBJ, FN_PTR(Unsafe_AllocateInstance)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 {CC"monitorEnter", CC"("OBJ")V", FN_PTR(Unsafe_MonitorEnter)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 {CC"monitorExit", CC"("OBJ")V", FN_PTR(Unsafe_MonitorExit)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 {CC"throwException", CC"("THR")V", FN_PTR(Unsafe_ThrowException)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1275
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 // These are the old methods prior to the JSR 166 changes in 1.5.0
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 static JNINativeMethod methods_141[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1278
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 {CC"getObject", CC"("OBJ"J)"OBJ"", FN_PTR(Unsafe_GetObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 {CC"putObject", CC"("OBJ"J"OBJ")V", FN_PTR(Unsafe_SetObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1281
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 DECLARE_GETSETOOP_141(Boolean, Z),
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 DECLARE_GETSETOOP_141(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 DECLARE_GETSETOOP_141(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 DECLARE_GETSETOOP_141(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 DECLARE_GETSETOOP_141(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 DECLARE_GETSETOOP_141(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 DECLARE_GETSETOOP_141(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 DECLARE_GETSETOOP_141(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1290
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 DECLARE_GETSETNATIVE(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 DECLARE_GETSETNATIVE(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 DECLARE_GETSETNATIVE(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 DECLARE_GETSETNATIVE(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 DECLARE_GETSETNATIVE(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 DECLARE_GETSETNATIVE(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 DECLARE_GETSETNATIVE(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1298
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 {CC"getAddress", CC"("ADR")"ADR, FN_PTR(Unsafe_GetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 {CC"putAddress", CC"("ADR""ADR")V", FN_PTR(Unsafe_SetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1301
a61af66fc99e Initial load
duke
parents:
diff changeset
1302 {CC"allocateMemory", CC"(J)"ADR, FN_PTR(Unsafe_AllocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 {CC"reallocateMemory", CC"("ADR"J)"ADR, FN_PTR(Unsafe_ReallocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 // {CC"setMemory", CC"("ADR"JB)V", FN_PTR(Unsafe_SetMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 // {CC"copyMemory", CC"("ADR ADR"J)V", FN_PTR(Unsafe_CopyMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 {CC"freeMemory", CC"("ADR")V", FN_PTR(Unsafe_FreeMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1307
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 {CC"objectFieldOffset", CC"("FLD")J", FN_PTR(Unsafe_ObjectFieldOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 {CC"staticFieldOffset", CC"("FLD")J", FN_PTR(Unsafe_StaticFieldOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 {CC"staticFieldBase", CC"("FLD")"OBJ, FN_PTR(Unsafe_StaticFieldBaseFromField)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 {CC"ensureClassInitialized",CC"("CLS")V", FN_PTR(Unsafe_EnsureClassInitialized)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 {CC"arrayBaseOffset", CC"("CLS")I", FN_PTR(Unsafe_ArrayBaseOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 {CC"arrayIndexScale", CC"("CLS")I", FN_PTR(Unsafe_ArrayIndexScale)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 {CC"addressSize", CC"()I", FN_PTR(Unsafe_AddressSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1315 {CC"pageSize", CC"()I", FN_PTR(Unsafe_PageSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1316
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 {CC"defineClass", CC"("DC0_Args")"CLS, FN_PTR(Unsafe_DefineClass0)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 {CC"defineClass", CC"("DC1_Args")"CLS, FN_PTR(Unsafe_DefineClass1)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 {CC"allocateInstance", CC"("CLS")"OBJ, FN_PTR(Unsafe_AllocateInstance)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1320 {CC"monitorEnter", CC"("OBJ")V", FN_PTR(Unsafe_MonitorEnter)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1321 {CC"monitorExit", CC"("OBJ")V", FN_PTR(Unsafe_MonitorExit)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 {CC"throwException", CC"("THR")V", FN_PTR(Unsafe_ThrowException)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1323
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1325
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 // These are the old methods prior to the JSR 166 changes in 1.6.0
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 static JNINativeMethod methods_15[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1328
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 {CC"getObject", CC"("OBJ"J)"OBJ"", FN_PTR(Unsafe_GetObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1330 {CC"putObject", CC"("OBJ"J"OBJ")V", FN_PTR(Unsafe_SetObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 {CC"getObjectVolatile",CC"("OBJ"J)"OBJ"", FN_PTR(Unsafe_GetObjectVolatile)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 {CC"putObjectVolatile",CC"("OBJ"J"OBJ")V", FN_PTR(Unsafe_SetObjectVolatile)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1333
a61af66fc99e Initial load
duke
parents:
diff changeset
1334
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 DECLARE_GETSETOOP(Boolean, Z),
a61af66fc99e Initial load
duke
parents:
diff changeset
1336 DECLARE_GETSETOOP(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 DECLARE_GETSETOOP(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1338 DECLARE_GETSETOOP(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 DECLARE_GETSETOOP(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 DECLARE_GETSETOOP(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 DECLARE_GETSETOOP(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 DECLARE_GETSETOOP(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1343
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 DECLARE_GETSETNATIVE(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 DECLARE_GETSETNATIVE(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 DECLARE_GETSETNATIVE(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 DECLARE_GETSETNATIVE(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 DECLARE_GETSETNATIVE(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 DECLARE_GETSETNATIVE(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1350 DECLARE_GETSETNATIVE(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1351
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 {CC"getAddress", CC"("ADR")"ADR, FN_PTR(Unsafe_GetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 {CC"putAddress", CC"("ADR""ADR")V", FN_PTR(Unsafe_SetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1354
a61af66fc99e Initial load
duke
parents:
diff changeset
1355 {CC"allocateMemory", CC"(J)"ADR, FN_PTR(Unsafe_AllocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1356 {CC"reallocateMemory", CC"("ADR"J)"ADR, FN_PTR(Unsafe_ReallocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 // {CC"setMemory", CC"("ADR"JB)V", FN_PTR(Unsafe_SetMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 // {CC"copyMemory", CC"("ADR ADR"J)V", FN_PTR(Unsafe_CopyMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 {CC"freeMemory", CC"("ADR")V", FN_PTR(Unsafe_FreeMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1360
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 {CC"objectFieldOffset", CC"("FLD")J", FN_PTR(Unsafe_ObjectFieldOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 {CC"staticFieldOffset", CC"("FLD")J", FN_PTR(Unsafe_StaticFieldOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 {CC"staticFieldBase", CC"("FLD")"OBJ, FN_PTR(Unsafe_StaticFieldBaseFromField)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 {CC"ensureClassInitialized",CC"("CLS")V", FN_PTR(Unsafe_EnsureClassInitialized)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 {CC"arrayBaseOffset", CC"("CLS")I", FN_PTR(Unsafe_ArrayBaseOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 {CC"arrayIndexScale", CC"("CLS")I", FN_PTR(Unsafe_ArrayIndexScale)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 {CC"addressSize", CC"()I", FN_PTR(Unsafe_AddressSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 {CC"pageSize", CC"()I", FN_PTR(Unsafe_PageSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1369
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 {CC"defineClass", CC"("DC0_Args")"CLS, FN_PTR(Unsafe_DefineClass0)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 {CC"defineClass", CC"("DC1_Args")"CLS, FN_PTR(Unsafe_DefineClass1)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 {CC"allocateInstance", CC"("CLS")"OBJ, FN_PTR(Unsafe_AllocateInstance)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1373 {CC"monitorEnter", CC"("OBJ")V", FN_PTR(Unsafe_MonitorEnter)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 {CC"monitorExit", CC"("OBJ")V", FN_PTR(Unsafe_MonitorExit)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1375 {CC"throwException", CC"("THR")V", FN_PTR(Unsafe_ThrowException)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 {CC"compareAndSwapObject", CC"("OBJ"J"OBJ""OBJ")Z", FN_PTR(Unsafe_CompareAndSwapObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 {CC"compareAndSwapInt", CC"("OBJ"J""I""I"")Z", FN_PTR(Unsafe_CompareAndSwapInt)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 {CC"compareAndSwapLong", CC"("OBJ"J""J""J"")Z", FN_PTR(Unsafe_CompareAndSwapLong)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 {CC"park", CC"(ZJ)V", FN_PTR(Unsafe_Park)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 {CC"unpark", CC"("OBJ")V", FN_PTR(Unsafe_Unpark)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1381
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1383
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 // These are the correct methods, moving forward:
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 static JNINativeMethod methods[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1386
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 {CC"getObject", CC"("OBJ"J)"OBJ"", FN_PTR(Unsafe_GetObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 {CC"putObject", CC"("OBJ"J"OBJ")V", FN_PTR(Unsafe_SetObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 {CC"getObjectVolatile",CC"("OBJ"J)"OBJ"", FN_PTR(Unsafe_GetObjectVolatile)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 {CC"putObjectVolatile",CC"("OBJ"J"OBJ")V", FN_PTR(Unsafe_SetObjectVolatile)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1391
a61af66fc99e Initial load
duke
parents:
diff changeset
1392
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 DECLARE_GETSETOOP(Boolean, Z),
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 DECLARE_GETSETOOP(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 DECLARE_GETSETOOP(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1396 DECLARE_GETSETOOP(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 DECLARE_GETSETOOP(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 DECLARE_GETSETOOP(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 DECLARE_GETSETOOP(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 DECLARE_GETSETOOP(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1401
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 DECLARE_GETSETNATIVE(Byte, B),
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 DECLARE_GETSETNATIVE(Short, S),
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 DECLARE_GETSETNATIVE(Char, C),
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 DECLARE_GETSETNATIVE(Int, I),
a61af66fc99e Initial load
duke
parents:
diff changeset
1406 DECLARE_GETSETNATIVE(Long, J),
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 DECLARE_GETSETNATIVE(Float, F),
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 DECLARE_GETSETNATIVE(Double, D),
a61af66fc99e Initial load
duke
parents:
diff changeset
1409
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 {CC"getAddress", CC"("ADR")"ADR, FN_PTR(Unsafe_GetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 {CC"putAddress", CC"("ADR""ADR")V", FN_PTR(Unsafe_SetNativeAddress)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1412
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 {CC"allocateMemory", CC"(J)"ADR, FN_PTR(Unsafe_AllocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 {CC"reallocateMemory", CC"("ADR"J)"ADR, FN_PTR(Unsafe_ReallocateMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 // {CC"setMemory", CC"("ADR"JB)V", FN_PTR(Unsafe_SetMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 // {CC"copyMemory", CC"("ADR ADR"J)V", FN_PTR(Unsafe_CopyMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 {CC"freeMemory", CC"("ADR")V", FN_PTR(Unsafe_FreeMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1418
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 {CC"objectFieldOffset", CC"("FLD")J", FN_PTR(Unsafe_ObjectFieldOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 {CC"staticFieldOffset", CC"("FLD")J", FN_PTR(Unsafe_StaticFieldOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1421 {CC"staticFieldBase", CC"("FLD")"OBJ, FN_PTR(Unsafe_StaticFieldBaseFromField)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 {CC"ensureClassInitialized",CC"("CLS")V", FN_PTR(Unsafe_EnsureClassInitialized)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1423 {CC"arrayBaseOffset", CC"("CLS")I", FN_PTR(Unsafe_ArrayBaseOffset)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 {CC"arrayIndexScale", CC"("CLS")I", FN_PTR(Unsafe_ArrayIndexScale)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 {CC"addressSize", CC"()I", FN_PTR(Unsafe_AddressSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 {CC"pageSize", CC"()I", FN_PTR(Unsafe_PageSize)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1427
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 {CC"defineClass", CC"("DC0_Args")"CLS, FN_PTR(Unsafe_DefineClass0)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 {CC"defineClass", CC"("DC1_Args")"CLS, FN_PTR(Unsafe_DefineClass1)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 {CC"allocateInstance", CC"("CLS")"OBJ, FN_PTR(Unsafe_AllocateInstance)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 {CC"monitorEnter", CC"("OBJ")V", FN_PTR(Unsafe_MonitorEnter)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 {CC"monitorExit", CC"("OBJ")V", FN_PTR(Unsafe_MonitorExit)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 {CC"tryMonitorEnter", CC"("OBJ")Z", FN_PTR(Unsafe_TryMonitorEnter)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1434 {CC"throwException", CC"("THR")V", FN_PTR(Unsafe_ThrowException)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 {CC"compareAndSwapObject", CC"("OBJ"J"OBJ""OBJ")Z", FN_PTR(Unsafe_CompareAndSwapObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1436 {CC"compareAndSwapInt", CC"("OBJ"J""I""I"")Z", FN_PTR(Unsafe_CompareAndSwapInt)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 {CC"compareAndSwapLong", CC"("OBJ"J""J""J"")Z", FN_PTR(Unsafe_CompareAndSwapLong)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 {CC"putOrderedObject", CC"("OBJ"J"OBJ")V", FN_PTR(Unsafe_SetOrderedObject)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 {CC"putOrderedInt", CC"("OBJ"JI)V", FN_PTR(Unsafe_SetOrderedInt)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 {CC"putOrderedLong", CC"("OBJ"JJ)V", FN_PTR(Unsafe_SetOrderedLong)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 {CC"park", CC"(ZJ)V", FN_PTR(Unsafe_Park)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 {CC"unpark", CC"("OBJ")V", FN_PTR(Unsafe_Unpark)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1443
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 // {CC"getLoadAverage", CC"([DI)I", FN_PTR(Unsafe_Loadavg)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1445
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 // {CC"prefetchRead", CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchRead)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 // {CC"prefetchWrite", CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchWrite)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 // {CC"prefetchReadStatic", CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchRead)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1449 // {CC"prefetchWriteStatic",CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchWrite)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1450
a61af66fc99e Initial load
duke
parents:
diff changeset
1451 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1452
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 JNINativeMethod loadavg_method[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 {CC"getLoadAverage", CC"([DI)I", FN_PTR(Unsafe_Loadavg)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1456
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 JNINativeMethod prefetch_methods[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 {CC"prefetchRead", CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchRead)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 {CC"prefetchWrite", CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchWrite)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 {CC"prefetchReadStatic", CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchRead)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 {CC"prefetchWriteStatic",CC"("OBJ"J)V", FN_PTR(Unsafe_PrefetchWrite)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1463
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 JNINativeMethod memcopy_methods[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1465 {CC"copyMemory", CC"("OBJ"J"OBJ"JJ)V", FN_PTR(Unsafe_CopyMemory2)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 {CC"setMemory", CC"("OBJ"JJB)V", FN_PTR(Unsafe_SetMemory2)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1468
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 JNINativeMethod memcopy_methods_15[] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 {CC"setMemory", CC"("ADR"JB)V", FN_PTR(Unsafe_SetMemory)},
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 {CC"copyMemory", CC"("ADR ADR"J)V", FN_PTR(Unsafe_CopyMemory)}
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1473
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1474 JNINativeMethod anonk_methods[] = {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1475 {CC"defineAnonymousClass", CC"("DAC_Args")"CLS, FN_PTR(Unsafe_DefineAnonymousClass)},
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1476 };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1477
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 #undef CC
a61af66fc99e Initial load
duke
parents:
diff changeset
1479 #undef FN_PTR
a61af66fc99e Initial load
duke
parents:
diff changeset
1480
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 #undef ADR
a61af66fc99e Initial load
duke
parents:
diff changeset
1482 #undef LANG
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 #undef OBJ
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 #undef CLS
a61af66fc99e Initial load
duke
parents:
diff changeset
1485 #undef CTR
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 #undef FLD
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 #undef MTH
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 #undef THR
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 #undef DC0_Args
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 #undef DC1_Args
a61af66fc99e Initial load
duke
parents:
diff changeset
1491
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 #undef DECLARE_GETSETOOP
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 #undef DECLARE_GETSETNATIVE
a61af66fc99e Initial load
duke
parents:
diff changeset
1494
a61af66fc99e Initial load
duke
parents:
diff changeset
1495
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 // This one function is exported, used by NativeLookup.
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 // The Unsafe_xxx functions above are called only from the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 // The optimizer looks at names and signatures to recognize
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 // individual functions.
a61af66fc99e Initial load
duke
parents:
diff changeset
1500
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 JVM_ENTRY(void, JVM_RegisterUnsafeMethods(JNIEnv *env, jclass unsafecls))
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 UnsafeWrapper("JVM_RegisterUnsafeMethods");
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 ThreadToNativeFromVM ttnfv(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 env->RegisterNatives(unsafecls, loadavg_method, sizeof(loadavg_method)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 if (env->ExceptionOccurred()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 tty->print_cr("Warning: SDK 1.6 Unsafe.loadavg not found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 env->ExceptionClear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1515 env->RegisterNatives(unsafecls, prefetch_methods, sizeof(prefetch_methods)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 if (env->ExceptionOccurred()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1517 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 tty->print_cr("Warning: SDK 1.6 Unsafe.prefetchRead/Write not found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 env->ExceptionClear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 env->RegisterNatives(unsafecls, memcopy_methods, sizeof(memcopy_methods)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 if (env->ExceptionOccurred()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 tty->print_cr("Warning: SDK 1.7 Unsafe.copyMemory not found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1529 env->ExceptionClear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 env->RegisterNatives(unsafecls, memcopy_methods_15, sizeof(memcopy_methods_15)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1531 if (env->ExceptionOccurred()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 tty->print_cr("Warning: SDK 1.5 Unsafe.copyMemory not found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 env->ExceptionClear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 }
431
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1539 if (AnonymousClasses) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1540 env->RegisterNatives(unsafecls, anonk_methods, sizeof(anonk_methods)/sizeof(JNINativeMethod));
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1541 if (env->ExceptionOccurred()) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1542 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1543 tty->print_cr("Warning: SDK 1.7 Unsafe.defineClass (anonymous version) not found.");
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1544 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1545 env->ExceptionClear();
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1546 }
a45484ea312d 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 356
diff changeset
1547 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 int status = env->RegisterNatives(unsafecls, methods, sizeof(methods)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 if (env->ExceptionOccurred()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 tty->print_cr("Warning: SDK 1.6 version of Unsafe not found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1553 env->ExceptionClear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 // %%% For now, be backward compatible with an older class:
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 status = env->RegisterNatives(unsafecls, methods_15, sizeof(methods_15)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 if (env->ExceptionOccurred()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 tty->print_cr("Warning: SDK 1.5 version of Unsafe not found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 env->ExceptionClear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1562 // %%% For now, be backward compatible with an older class:
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 status = env->RegisterNatives(unsafecls, methods_141, sizeof(methods_141)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 if (env->ExceptionOccurred()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 if (PrintMiscellaneous && (Verbose || WizardMode)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 tty->print_cr("Warning: SDK 1.4.1 version of Unsafe not found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 env->ExceptionClear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 // %%% For now, be backward compatible with an older class:
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 status = env->RegisterNatives(unsafecls, methods_140, sizeof(methods_140)/sizeof(JNINativeMethod));
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 guarantee(status == 0, "register unsafe natives");
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 JVM_END