annotate src/share/vm/prims/nativeLookup.cpp @ 452:00b023ae2d78

6722113: CMS: Incorrect overflow handling during precleaning of Reference lists Summary: When we encounter marking stack overflow during precleaning of Reference lists, we were using the overflow list mechanism, which can cause problems on account of mutating the mark word of the header because of conflicts with mutator accesses and updates of that field. Instead we should use the usual mechanism for overflow handling in concurrent phases, namely dirtying of the card on which the overflowed object lies. Since precleaning effectively does a form of discovered list processing, albeit with discovery enabled, we needed to adjust some code to be correct in the face of interleaved processing and discovery. Reviewed-by: apetrusenko, jcoomes
author ysr
date Thu, 20 Nov 2008 12:27:41 -0800
parents a61af66fc99e
children e5b0439ef4ae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_nativeLookup.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 static void mangle_name_on(outputStream* st, symbolOop name, int begin, int end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 char* bytes = (char*)name->bytes() + begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 char* end_bytes = (char*)name->bytes() + end;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 while (bytes < end_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 jchar c;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 bytes = UTF8::next(bytes, &c);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 if (c <= 0x7f && isalnum(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 st->put((char) c);
a61af66fc99e Initial load
duke
parents:
diff changeset
37 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 if (c == '_') st->print("_1");
a61af66fc99e Initial load
duke
parents:
diff changeset
39 else if (c == '/') st->print("_");
a61af66fc99e Initial load
duke
parents:
diff changeset
40 else if (c == ';') st->print("_2");
a61af66fc99e Initial load
duke
parents:
diff changeset
41 else if (c == '[') st->print("_3");
a61af66fc99e Initial load
duke
parents:
diff changeset
42 else st->print("_%.5x", c);
a61af66fc99e Initial load
duke
parents:
diff changeset
43 }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static void mangle_name_on(outputStream* st, symbolOop name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 mangle_name_on(st, name, 0, name->utf8_length());
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 char* NativeLookup::pure_jni_name(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
56 st.print("Java_");
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Klass name
a61af66fc99e Initial load
duke
parents:
diff changeset
58 mangle_name_on(&st, method->klass_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
59 st.print("_");
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // Method name
a61af66fc99e Initial load
duke
parents:
diff changeset
61 mangle_name_on(&st, method->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
62 return st.as_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 char* NativeLookup::long_jni_name(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // Signature ignore the wrapping parenteses and the trailing return type
a61af66fc99e Initial load
duke
parents:
diff changeset
68 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 symbolOop signature = method->signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 st.print("__");
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // find ')'
a61af66fc99e Initial load
duke
parents:
diff changeset
72 int end;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 for (end = 0; end < signature->utf8_length() && signature->byte_at(end) != ')'; end++);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // skip first '('
a61af66fc99e Initial load
duke
parents:
diff changeset
75 mangle_name_on(&st, signature, 1, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 return st.as_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void JNICALL JVM_RegisterUnsafeMethods(JNIEnv *env, jclass unsafecls);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 void JNICALL JVM_RegisterPerfMethods(JNIEnv *env, jclass perfclass);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static address lookup_special_native(char* jni_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // NB: To ignore the jni prefix and jni postfix strstr is used matching.
a61af66fc99e Initial load
duke
parents:
diff changeset
86 if (!JDK_Version::is_gte_jdk14x_version()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // These functions only exist for compatibility with 1.3.1 and earlier
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Intercept ObjectOutputStream getPrimitiveFieldValues for faster serialization
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (strstr(jni_name, "Java_java_io_ObjectOutputStream_getPrimitiveFieldValues") != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 return CAST_FROM_FN_PTR(address, JVM_GetPrimitiveFieldValues);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // Intercept ObjectInputStream setPrimitiveFieldValues for faster serialization
a61af66fc99e Initial load
duke
parents:
diff changeset
93 if (strstr(jni_name, "Java_java_io_ObjectInputStream_setPrimitiveFieldValues") != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 return CAST_FROM_FN_PTR(address, JVM_SetPrimitiveFieldValues);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (strstr(jni_name, "Java_sun_misc_Unsafe_registerNatives") != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 return CAST_FROM_FN_PTR(address, JVM_RegisterUnsafeMethods);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }
a61af66fc99e Initial load
duke
parents:
diff changeset
100 if (strstr(jni_name, "Java_sun_misc_Perf_registerNatives") != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return CAST_FROM_FN_PTR(address, JVM_RegisterPerfMethods);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 address NativeLookup::lookup_style(methodHandle method, char* pure_name, const char* long_name, int args_size, bool os_style, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
108 address entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Compute complete JNI name for style
a61af66fc99e Initial load
duke
parents:
diff changeset
110 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 if (os_style) os::print_jni_name_prefix_on(&st, args_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 st.print_raw(pure_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 st.print_raw(long_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 if (os_style) os::print_jni_name_suffix_on(&st, args_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 char* jni_name = st.as_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // If the loader is null we have a system class, so we attempt a lookup in
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // the native Java library. This takes care of any bootstrapping problems.
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Note: It is critical for bootstrapping that Java_java_lang_ClassLoader_00024NativeLibrary_find
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // gets found the first time around - otherwise an infinite loop can occure. This is
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // another VM/library dependency
a61af66fc99e Initial load
duke
parents:
diff changeset
122 Handle loader(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 instanceKlass::cast(method->method_holder())->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (loader.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 entry = lookup_special_native(jni_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 if (entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 entry = (address) hpi::dll_lookup(os::native_java_library(), jni_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 in_base_library = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Otherwise call static method findNative in ClassLoader
a61af66fc99e Initial load
duke
parents:
diff changeset
136 KlassHandle klass (THREAD, SystemDictionary::classloader_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
137 Handle name_arg = java_lang_String::create_from_str(jni_name, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 JavaValue result(T_LONG);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 JavaCalls::call_static(&result,
a61af66fc99e Initial load
duke
parents:
diff changeset
141 klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
142 vmSymbolHandles::findNative_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
143 vmSymbolHandles::classloader_string_long_signature(),
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
145 loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
146 name_arg,
a61af66fc99e Initial load
duke
parents:
diff changeset
147 CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 entry = (address) (intptr_t) result.get_jlong();
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // findNative didn't find it, if there are any agent libraries look in them
a61af66fc99e Initial load
duke
parents:
diff changeset
152 AgentLibrary* agent;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 for (agent = Arguments::agents(); agent != NULL; agent = agent->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 entry = (address) hpi::dll_lookup(agent->os_lib(), jni_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Check all the formats of native implementation name to see if there is one
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // for the specified method.
a61af66fc99e Initial load
duke
parents:
diff changeset
167 address NativeLookup::lookup_entry(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
168 address entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 in_base_library = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // Compute pure name
a61af66fc99e Initial load
duke
parents:
diff changeset
171 char* pure_name = pure_jni_name(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // Compute argument size
a61af66fc99e Initial load
duke
parents:
diff changeset
174 int args_size = 1 // JNIEnv
a61af66fc99e Initial load
duke
parents:
diff changeset
175 + (method->is_static() ? 1 : 0) // class for static methods
a61af66fc99e Initial load
duke
parents:
diff changeset
176 + method->size_of_parameters(); // actual parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // 1) Try JNI short style
a61af66fc99e Initial load
duke
parents:
diff changeset
180 entry = lookup_style(method, pure_name, "", args_size, true, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // Compute long name
a61af66fc99e Initial load
duke
parents:
diff changeset
184 char* long_name = long_jni_name(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // 2) Try JNI long style
a61af66fc99e Initial load
duke
parents:
diff changeset
187 entry = lookup_style(method, pure_name, long_name, args_size, true, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // 3) Try JNI short style without os prefix/suffix
a61af66fc99e Initial load
duke
parents:
diff changeset
191 entry = lookup_style(method, pure_name, "", args_size, false, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // 4) Try JNI long style without os prefix/suffix
a61af66fc99e Initial load
duke
parents:
diff changeset
195 entry = lookup_style(method, pure_name, long_name, args_size, false, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 return entry; // NULL indicates not found
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Check if there are any JVM TI prefixes which have been applied to the native method name.
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // If any are found, remove them before attemping the look up of the
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // native implementation again.
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // See SetNativeMethodPrefix in the JVM TI Spec for more details.
a61af66fc99e Initial load
duke
parents:
diff changeset
204 address NativeLookup::lookup_entry_prefixed(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 int prefix_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 char* in_name = method->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
210 char* wrapper_name = in_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // last applied prefix will be first -- go backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
212 for (int i = prefix_count-1; i >= 0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 char* prefix = prefixes[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
214 size_t prefix_len = strlen(prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 if (strncmp(prefix, wrapper_name, prefix_len) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // has this prefix remove it
a61af66fc99e Initial load
duke
parents:
diff changeset
217 wrapper_name += prefix_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 if (wrapper_name != in_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // we have a name for a wrapping method
a61af66fc99e Initial load
duke
parents:
diff changeset
222 int wrapper_name_len = (int)strlen(wrapper_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 symbolHandle wrapper_symbol(THREAD, SymbolTable::probe(wrapper_name, wrapper_name_len));
a61af66fc99e Initial load
duke
parents:
diff changeset
224 if (!wrapper_symbol.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 KlassHandle kh(method->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
226 methodOop wrapper_method = Klass::cast(kh())->lookup_method(wrapper_symbol(),
a61af66fc99e Initial load
duke
parents:
diff changeset
227 method->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
228 if (wrapper_method != NULL && !wrapper_method->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // we found a wrapper method, use its native entry
a61af66fc99e Initial load
duke
parents:
diff changeset
230 method->set_is_prefixed_native();
a61af66fc99e Initial load
duke
parents:
diff changeset
231 return lookup_entry(wrapper_method, in_base_library, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 address NativeLookup::lookup_base(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 address entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 entry = lookup_entry(method, in_base_library, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // standard native method resolution has failed. Check if there are any
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // JVM TI prefixes which have been applied to the native method name.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 entry = lookup_entry_prefixed(method, in_base_library, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
248 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // Native function not found, throw UnsatisfiedLinkError
a61af66fc99e Initial load
duke
parents:
diff changeset
251 THROW_MSG_0(vmSymbols::java_lang_UnsatisfiedLinkError(),
a61af66fc99e Initial load
duke
parents:
diff changeset
252 method->name_and_sig_as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 address NativeLookup::lookup(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 if (!method->has_native_function()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
258 address entry = lookup_base(method, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 method->set_native_function(entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
260 methodOopDesc::native_bind_event_is_interesting);
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // -verbose:jni printing
a61af66fc99e Initial load
duke
parents:
diff changeset
262 if (PrintJNIResolving) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 tty->print_cr("[Dynamic-linking native method %s.%s ... JNI]",
a61af66fc99e Initial load
duke
parents:
diff changeset
265 Klass::cast(method->method_holder())->external_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
266 method->name()->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 return method->native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 address NativeLookup::base_library_lookup(const char* class_name, const char* method_name, const char* signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 bool in_base_library = true; // SharedRuntime inits some math methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
275 symbolHandle c_name = oopFactory::new_symbol_handle(class_name, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
276 symbolHandle m_name = oopFactory::new_symbol_handle(method_name, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
277 symbolHandle s_name = oopFactory::new_symbol_handle(signature, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // Find the class
a61af66fc99e Initial load
duke
parents:
diff changeset
280 klassOop k = SystemDictionary::resolve_or_fail(c_name, true, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 instanceKlassHandle klass (THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // Find method and invoke standard lookup
a61af66fc99e Initial load
duke
parents:
diff changeset
284 methodHandle method (THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
285 klass->uncached_lookup_method(m_name(), s_name()));
a61af66fc99e Initial load
duke
parents:
diff changeset
286 address result = lookup(method, in_base_library, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
287 assert(in_base_library, "must be in basic library");
a61af66fc99e Initial load
duke
parents:
diff changeset
288 guarantee(result != NULL, "must be non NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
289 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }