annotate src/share/vm/prims/nativeLookup.cpp @ 2357:8033953d67ff

7012648: move JSR 292 to package java.lang.invoke and adjust names Summary: package and class renaming only; delete unused methods and classes Reviewed-by: twisti
author jrose
date Fri, 11 Mar 2011 22:34:57 -0800
parents 72dee110246f
children ed69575596ac
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2356
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
2 * Copyright (c) 1997, 2011, 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: 1142
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1142
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: 1142
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/javaClasses.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "classfile/vmSymbols.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "memory/oopFactory.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "memory/universe.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #include "oops/methodOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #include "oops/oop.inline.hpp"
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
35 #include "oops/symbol.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #include "prims/jvm_misc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 #include "prims/nativeLookup.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 #include "runtime/arguments.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
41 #include "runtime/sharedRuntime.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
42 #include "runtime/signature.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
43 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
44 # include "os_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
45 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
46 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
47 # include "os_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
48 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
49 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
50 # include "os_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
51 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
54 static void mangle_name_on(outputStream* st, Symbol* name, int begin, int end) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
55 char* bytes = (char*)name->bytes() + begin;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 char* end_bytes = (char*)name->bytes() + end;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 while (bytes < end_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 jchar c;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 bytes = UTF8::next(bytes, &c);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 if (c <= 0x7f && isalnum(c)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 st->put((char) c);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (c == '_') st->print("_1");
a61af66fc99e Initial load
duke
parents:
diff changeset
64 else if (c == '/') st->print("_");
a61af66fc99e Initial load
duke
parents:
diff changeset
65 else if (c == ';') st->print("_2");
a61af66fc99e Initial load
duke
parents:
diff changeset
66 else if (c == '[') st->print("_3");
a61af66fc99e Initial load
duke
parents:
diff changeset
67 else st->print("_%.5x", c);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
73 static void mangle_name_on(outputStream* st, Symbol* name) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 mangle_name_on(st, name, 0, name->utf8_length());
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 char* NativeLookup::pure_jni_name(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Prefix
a61af66fc99e Initial load
duke
parents:
diff changeset
81 st.print("Java_");
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Klass name
a61af66fc99e Initial load
duke
parents:
diff changeset
83 mangle_name_on(&st, method->klass_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
84 st.print("_");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // Method name
a61af66fc99e Initial load
duke
parents:
diff changeset
86 mangle_name_on(&st, method->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
87 return st.as_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 char* NativeLookup::long_jni_name(methodHandle method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // Signature ignore the wrapping parenteses and the trailing return type
a61af66fc99e Initial load
duke
parents:
diff changeset
93 stringStream st;
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
94 Symbol* signature = method->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
95 st.print("__");
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // find ')'
a61af66fc99e Initial load
duke
parents:
diff changeset
97 int end;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 for (end = 0; end < signature->utf8_length() && signature->byte_at(end) != ')'; end++);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // skip first '('
a61af66fc99e Initial load
duke
parents:
diff changeset
100 mangle_name_on(&st, signature, 1, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 return st.as_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void JNICALL JVM_RegisterUnsafeMethods(JNIEnv *env, jclass unsafecls);
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 0
diff changeset
106 void JNICALL JVM_RegisterMethodHandleMethods(JNIEnv *env, jclass unsafecls);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void JNICALL JVM_RegisterPerfMethods(JNIEnv *env, jclass perfclass);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
2356
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
110 #define CC (char*) /* cast a literal from (const char*) */
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
111 #define FN_PTR(f) CAST_FROM_FN_PTR(void*, &f)
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
112
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
113 static JNINativeMethod lookup_special_native_methods[] = {
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
114 // Next two functions only exist for compatibility with 1.3.1 and earlier.
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
115 { CC"Java_java_io_ObjectOutputStream_getPrimitiveFieldValues", NULL, FN_PTR(JVM_GetPrimitiveFieldValues) }, // intercept ObjectOutputStream getPrimitiveFieldValues for faster serialization
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
116 { CC"Java_java_io_ObjectInputStream_setPrimitiveFieldValues", NULL, FN_PTR(JVM_SetPrimitiveFieldValues) }, // intercept ObjectInputStream setPrimitiveFieldValues for faster serialization
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
117
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
118 { CC"Java_sun_misc_Unsafe_registerNatives", NULL, FN_PTR(JVM_RegisterUnsafeMethods) },
2357
8033953d67ff 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 2356
diff changeset
119 { CC"Java_java_lang_invoke_MethodHandleNatives_registerNatives", NULL, FN_PTR(JVM_RegisterMethodHandleMethods) },
2356
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
120 { CC"Java_sun_dyn_MethodHandleNatives_registerNatives", NULL, FN_PTR(JVM_RegisterMethodHandleMethods) }, // AllowTransitionalJSR292
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
121 { CC"Java_java_dyn_MethodHandleNatives_registerNatives", NULL, FN_PTR(JVM_RegisterMethodHandleMethods) }, // AllowTransitionalJSR292
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
122 { CC"Java_sun_misc_Perf_registerNatives", NULL, FN_PTR(JVM_RegisterPerfMethods) }
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
123 };
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
124
0
a61af66fc99e Initial load
duke
parents:
diff changeset
125 static address lookup_special_native(char* jni_name) {
2356
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
126 int i = !JDK_Version::is_gte_jdk14x_version() ? 0 : 2; // see comment in lookup_special_native_methods
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
127 int count = sizeof(lookup_special_native_methods) / sizeof(JNINativeMethod);
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
128 for (; i < count; i++) {
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
129 // NB: To ignore the jni prefix and jni postfix strstr is used matching.
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
130 if (strstr(jni_name, lookup_special_native_methods[i].name) != NULL) {
72dee110246f 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 2177
diff changeset
131 return CAST_FROM_FN_PTR(address, lookup_special_native_methods[i].fnPtr);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133 }
a61af66fc99e Initial load
duke
parents:
diff changeset
134 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 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
138 address entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Compute complete JNI name for style
a61af66fc99e Initial load
duke
parents:
diff changeset
140 stringStream st;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 if (os_style) os::print_jni_name_prefix_on(&st, args_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 st.print_raw(pure_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 st.print_raw(long_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if (os_style) os::print_jni_name_suffix_on(&st, args_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 char* jni_name = st.as_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // If the loader is null we have a system class, so we attempt a lookup in
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // the native Java library. This takes care of any bootstrapping problems.
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // Note: It is critical for bootstrapping that Java_java_lang_ClassLoader_00024NativeLibrary_find
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // gets found the first time around - otherwise an infinite loop can occure. This is
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // another VM/library dependency
a61af66fc99e Initial load
duke
parents:
diff changeset
152 Handle loader(THREAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
153 instanceKlass::cast(method->method_holder())->class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
154 if (loader.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 entry = lookup_special_native(jni_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 if (entry == NULL) {
1980
828eafbd85cc 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 1972
diff changeset
157 entry = (address) os::dll_lookup(os::native_java_library(), jni_name);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 in_base_library = true;
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 // Otherwise call static method findNative in ClassLoader
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 710
diff changeset
166 KlassHandle klass (THREAD, SystemDictionary::ClassLoader_klass());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167 Handle name_arg = java_lang_String::create_from_str(jni_name, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 JavaValue result(T_LONG);
a61af66fc99e Initial load
duke
parents:
diff changeset
170 JavaCalls::call_static(&result,
a61af66fc99e Initial load
duke
parents:
diff changeset
171 klass,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
172 vmSymbols::findNative_name(),
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
173 vmSymbols::classloader_string_long_signature(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
175 loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
176 name_arg,
a61af66fc99e Initial load
duke
parents:
diff changeset
177 CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 entry = (address) (intptr_t) result.get_jlong();
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // findNative didn't find it, if there are any agent libraries look in them
a61af66fc99e Initial load
duke
parents:
diff changeset
182 AgentLibrary* agent;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 for (agent = Arguments::agents(); agent != NULL; agent = agent->next()) {
1980
828eafbd85cc 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 1972
diff changeset
184 entry = (address) os::dll_lookup(agent->os_lib(), jni_name);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (entry != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // Check all the formats of native implementation name to see if there is one
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // for the specified method.
a61af66fc99e Initial load
duke
parents:
diff changeset
197 address NativeLookup::lookup_entry(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 address entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 in_base_library = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Compute pure name
a61af66fc99e Initial load
duke
parents:
diff changeset
201 char* pure_name = pure_jni_name(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // Compute argument size
a61af66fc99e Initial load
duke
parents:
diff changeset
204 int args_size = 1 // JNIEnv
a61af66fc99e Initial load
duke
parents:
diff changeset
205 + (method->is_static() ? 1 : 0) // class for static methods
a61af66fc99e Initial load
duke
parents:
diff changeset
206 + method->size_of_parameters(); // actual parameters
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // 1) Try JNI short style
a61af66fc99e Initial load
duke
parents:
diff changeset
210 entry = lookup_style(method, pure_name, "", args_size, true, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Compute long name
a61af66fc99e Initial load
duke
parents:
diff changeset
214 char* long_name = long_jni_name(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // 2) Try JNI long style
a61af66fc99e Initial load
duke
parents:
diff changeset
217 entry = lookup_style(method, pure_name, long_name, args_size, true, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // 3) Try JNI short style without os prefix/suffix
a61af66fc99e Initial load
duke
parents:
diff changeset
221 entry = lookup_style(method, pure_name, "", args_size, false, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // 4) Try JNI long style without os prefix/suffix
a61af66fc99e Initial load
duke
parents:
diff changeset
225 entry = lookup_style(method, pure_name, long_name, args_size, false, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 return entry; // NULL indicates not found
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // Check if there are any JVM TI prefixes which have been applied to the native method name.
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // If any are found, remove them before attemping the look up of the
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // native implementation again.
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // See SetNativeMethodPrefix in the JVM TI Spec for more details.
a61af66fc99e Initial load
duke
parents:
diff changeset
234 address NativeLookup::lookup_entry_prefixed(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int prefix_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
238 char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 char* in_name = method->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
240 char* wrapper_name = in_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // last applied prefix will be first -- go backwards
a61af66fc99e Initial load
duke
parents:
diff changeset
242 for (int i = prefix_count-1; i >= 0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 char* prefix = prefixes[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
244 size_t prefix_len = strlen(prefix);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 if (strncmp(prefix, wrapper_name, prefix_len) == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // has this prefix remove it
a61af66fc99e Initial load
duke
parents:
diff changeset
247 wrapper_name += prefix_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }
a61af66fc99e Initial load
duke
parents:
diff changeset
249 }
a61af66fc99e Initial load
duke
parents:
diff changeset
250 if (wrapper_name != in_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // we have a name for a wrapping method
a61af66fc99e Initial load
duke
parents:
diff changeset
252 int wrapper_name_len = (int)strlen(wrapper_name);
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
253 TempNewSymbol wrapper_symbol = SymbolTable::probe(wrapper_name, wrapper_name_len);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
254 if (wrapper_symbol != NULL) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
255 KlassHandle kh(method->method_holder());
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
256 methodOop wrapper_method = Klass::cast(kh())->lookup_method(wrapper_symbol,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
257 method->signature());
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if (wrapper_method != NULL && !wrapper_method->is_native()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // we found a wrapper method, use its native entry
a61af66fc99e Initial load
duke
parents:
diff changeset
260 method->set_is_prefixed_native();
a61af66fc99e Initial load
duke
parents:
diff changeset
261 return lookup_entry(wrapper_method, in_base_library, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 address NativeLookup::lookup_base(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 address entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 entry = lookup_entry(method, in_base_library, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
273 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // standard native method resolution has failed. Check if there are any
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // JVM TI prefixes which have been applied to the native method name.
a61af66fc99e Initial load
duke
parents:
diff changeset
277 entry = lookup_entry_prefixed(method, in_base_library, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
278 if (entry != NULL) return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // Native function not found, throw UnsatisfiedLinkError
a61af66fc99e Initial load
duke
parents:
diff changeset
281 THROW_MSG_0(vmSymbols::java_lang_UnsatisfiedLinkError(),
a61af66fc99e Initial load
duke
parents:
diff changeset
282 method->name_and_sig_as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
283 }
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 address NativeLookup::lookup(methodHandle method, bool& in_base_library, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 if (!method->has_native_function()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
288 address entry = lookup_base(method, in_base_library, CHECK_NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 method->set_native_function(entry,
a61af66fc99e Initial load
duke
parents:
diff changeset
290 methodOopDesc::native_bind_event_is_interesting);
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // -verbose:jni printing
a61af66fc99e Initial load
duke
parents:
diff changeset
292 if (PrintJNIResolving) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 tty->print_cr("[Dynamic-linking native method %s.%s ... JNI]",
a61af66fc99e Initial load
duke
parents:
diff changeset
295 Klass::cast(method->method_holder())->external_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
296 method->name()->as_C_string());
a61af66fc99e Initial load
duke
parents:
diff changeset
297 }
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 return method->native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 address NativeLookup::base_library_lookup(const char* class_name, const char* method_name, const char* signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 bool in_base_library = true; // SharedRuntime inits some math methods.
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
305 TempNewSymbol c_name = SymbolTable::new_symbol(class_name, CATCH);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
306 TempNewSymbol m_name = SymbolTable::new_symbol(method_name, CATCH);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
307 TempNewSymbol s_name = SymbolTable::new_symbol(signature, CATCH);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // Find the class
a61af66fc99e Initial load
duke
parents:
diff changeset
310 klassOop k = SystemDictionary::resolve_or_fail(c_name, true, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
311 instanceKlassHandle klass (THREAD, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // Find method and invoke standard lookup
a61af66fc99e Initial load
duke
parents:
diff changeset
314 methodHandle method (THREAD,
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 1980
diff changeset
315 klass->uncached_lookup_method(m_name, s_name));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
316 address result = lookup(method, in_base_library, CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 assert(in_base_library, "must be in basic library");
a61af66fc99e Initial load
duke
parents:
diff changeset
318 guarantee(result != NULL, "must be non NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
319 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }