src/hotspot/share/prims/nativeLookup.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 59016 3b9eeae66fa0
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 51997
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4571
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/javaClasses.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54432
diff changeset
    27
#include "classfile/symbolTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "classfile/vmSymbols.hpp"
59016
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58722
diff changeset
    30
#include "logging/log.hpp"
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58722
diff changeset
    31
#include "logging/logTag.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "oops/instanceKlass.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13396
diff changeset
    35
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
    37
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "prims/jvm_misc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "prims/nativeLookup.hpp"
36551
77f29c57ed2e 8149159: Clean up Unsafe
mikael
parents: 35235
diff changeset
    40
#include "prims/unsafe.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#include "runtime/handles.inline.hpp"
57710
05ff6e27de45 8229236: CriticalJNINatives: dll handling should be done in native thread state
mdoerr
parents: 57600
diff changeset
    43
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#include "runtime/javaCalls.hpp"
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 51997
diff changeset
    45
#include "runtime/os.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    46
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    47
#include "runtime/signature.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14488
diff changeset
    48
#include "utilities/macros.hpp"
54347
235883996bc7 8221698: Remove redundant includes from popular header files
iklam
parents: 53582
diff changeset
    49
#include "utilities/utf8.hpp"
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49359
diff changeset
    50
#if INCLUDE_JFR
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49359
diff changeset
    51
#include "jfr/jfr.hpp"
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35235
diff changeset
    52
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
    54
static void mangle_name_on(outputStream* st, Symbol* name, int begin, int end) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  char* bytes = (char*)name->bytes() + begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  char* end_bytes = (char*)name->bytes() + end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  while (bytes < end_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    jchar c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    bytes = UTF8::next(bytes, &c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    if (c <= 0x7f && isalnum(c)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      st->put((char) c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
           if (c == '_') st->print("_1");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      else if (c == '/') st->print("_");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      else if (c == ';') st->print("_2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      else if (c == '[') st->print("_3");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      else               st->print("_%.5x", c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
    73
static void mangle_name_on(outputStream* st, Symbol* name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  mangle_name_on(st, name, 0, name->utf8_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
    78
char* NativeLookup::pure_jni_name(const methodHandle& method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  stringStream st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  st.print("Java_");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Klass name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  mangle_name_on(&st, method->klass_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  st.print("_");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Method name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  mangle_name_on(&st, method->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  return st.as_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
    91
char* NativeLookup::critical_jni_name(const methodHandle& method) {
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    92
  stringStream st;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    93
  // Prefix
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    94
  st.print("JavaCritical_");
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    95
  // Klass name
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    96
  mangle_name_on(&st, method->klass_name());
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    97
  st.print("_");
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    98
  // Method name
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    99
  mangle_name_on(&st, method->name());
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   100
  return st.as_string();
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   101
}
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   102
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   103
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   104
char* NativeLookup::long_jni_name(const methodHandle& method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Signature ignore the wrapping parenteses and the trailing return type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  stringStream st;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   107
  Symbol* signature = method->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  st.print("__");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // find ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int end;
58722
cba8afa5cfed 8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents: 57710
diff changeset
   111
  for (end = 0; end < signature->utf8_length() && signature->char_at(end) != JVM_SIGNATURE_ENDFUNC; end++);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // skip first '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  mangle_name_on(&st, signature, 1, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  return st.as_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
extern "C" {
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   118
  void JNICALL JVM_RegisterMethodHandleMethods(JNIEnv *env, jclass unsafecls);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  void JNICALL JVM_RegisterPerfMethods(JNIEnv *env, jclass perfclass);
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 11637
diff changeset
   120
  void JNICALL JVM_RegisterWhiteBoxMethods(JNIEnv *env, jclass wbclass);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   121
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   122
  jobject  JNICALL JVM_GetJVMCIRuntime(JNIEnv *env, jclass c);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   123
  void     JNICALL JVM_RegisterJVMCINatives(JNIEnv *env, jclass compilerToVMClass);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   124
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
8675
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   127
#define CC (char*)  /* cast a literal from (const char*) */
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   128
#define FN_PTR(f) CAST_FROM_FN_PTR(void*, &f)
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   129
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   130
static JNINativeMethod lookup_special_native_methods[] = {
35103
d19354bcbfa6 8143628: Fork sun.misc.Unsafe and jdk.internal.misc.Unsafe native method tables
psandoz
parents: 33606
diff changeset
   131
  { CC"Java_jdk_internal_misc_Unsafe_registerNatives",             NULL, FN_PTR(JVM_RegisterJDKInternalMiscUnsafeMethods) },
8676
9098d4e927e1 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8675
diff changeset
   132
  { CC"Java_java_lang_invoke_MethodHandleNatives_registerNatives", NULL, FN_PTR(JVM_RegisterMethodHandleMethods) },
34928
23cee048ab91 8146736: Move sun.misc performance counters to jdk.internal.perf
chegar
parents: 33606
diff changeset
   133
  { CC"Java_jdk_internal_perf_Perf_registerNatives",               NULL, FN_PTR(JVM_RegisterPerfMethods)         },
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 11637
diff changeset
   134
  { CC"Java_sun_hotspot_WhiteBox_registerNatives",                 NULL, FN_PTR(JVM_RegisterWhiteBoxMethods)     },
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   135
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   136
  { CC"Java_jdk_vm_ci_runtime_JVMCI_initializeRuntime",            NULL, FN_PTR(JVM_GetJVMCIRuntime)             },
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   137
  { CC"Java_jdk_vm_ci_hotspot_CompilerToVM_registerNatives",       NULL, FN_PTR(JVM_RegisterJVMCINatives)        },
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 28731
diff changeset
   138
#endif
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49359
diff changeset
   139
#if INCLUDE_JFR
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49359
diff changeset
   140
  { CC"Java_jdk_jfr_internal_JVM_registerNatives",                 NULL, FN_PTR(jfr_register_natives)            },
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35235
diff changeset
   141
#endif
8675
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   142
};
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   143
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   144
static address lookup_special_native(const char* jni_name) {
8675
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   145
  int count = sizeof(lookup_special_native_methods) / sizeof(JNINativeMethod);
20381
ed1047a3ac21 8024087: Remove dead JVM_{Get,Set}PrimitiveFieldValues functions
mikael
parents: 17381
diff changeset
   146
  for (int i = 0; i < count; i++) {
8675
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   147
    // NB: To ignore the jni prefix and jni postfix strstr is used matching.
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   148
    if (strstr(jni_name, lookup_special_native_methods[i].name) != NULL) {
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   149
      return CAST_FROM_FN_PTR(address, lookup_special_native_methods[i].fnPtr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   155
address NativeLookup::lookup_style(const methodHandle& method, char* pure_name, const char* long_name, int args_size, bool os_style, bool& in_base_library, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  address entry;
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   157
  const char* jni_name = compute_complete_jni_name(pure_name, long_name, args_size, os_style);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   158
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // If the loader is null we have a system class, so we attempt a lookup in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // the native Java library. This takes care of any bootstrapping problems.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Note: It is critical for bootstrapping that Java_java_lang_ClassLoader_00024NativeLibrary_find
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // gets found the first time around - otherwise an infinite loop can occure. This is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // another VM/library dependency
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13975
diff changeset
   165
  Handle loader(THREAD, method->method_holder()->class_loader());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (loader.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    entry = lookup_special_native(jni_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    if (entry == NULL) {
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   169
       entry = (address) os::dll_lookup(os::native_java_library(), jni_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      in_base_library = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // Otherwise call static method findNative in ClassLoader
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 36615
diff changeset
   178
  Klass*   klass = SystemDictionary::ClassLoader_klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  Handle name_arg = java_lang_String::create_from_str(jni_name, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  JavaValue result(T_LONG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  JavaCalls::call_static(&result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                         klass,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   184
                         vmSymbols::findNative_name(),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   185
                         vmSymbols::classloader_string_long_signature(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                         // Arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
                         loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
                         name_arg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
                         CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  entry = (address) (intptr_t) result.get_jlong();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  if (entry == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    // findNative didn't find it, if there are any agent libraries look in them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    AgentLibrary* agent;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    for (agent = Arguments::agents(); agent != NULL; agent = agent->next()) {
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   196
      entry = (address) os::dll_lookup(agent->os_lib(), jni_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
        return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   206
const char* NativeLookup::compute_complete_jni_name(const char* pure_name, const char* long_name, int args_size, bool os_style) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   207
  stringStream st;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   208
  if (os_style) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   209
    os::print_jni_name_prefix_on(&st, args_size);
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   210
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   211
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   212
  st.print_raw(pure_name);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   213
  st.print_raw(long_name);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   214
  if (os_style) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   215
    os::print_jni_name_suffix_on(&st, args_size);
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   216
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   217
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   218
  return st.as_string();
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   219
}
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   220
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   221
address NativeLookup::lookup_critical_style(void* dll, const char* pure_name, const char* long_name, int args_size, bool os_style) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   222
  const char* jni_name = compute_complete_jni_name(pure_name, long_name, args_size, os_style);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   223
  assert(dll != NULL, "dll must be loaded");
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   224
  return (address)os::dll_lookup(dll, jni_name);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   225
}
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   226
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
// Check all the formats of native implementation name to see if there is one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// for the specified method.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   229
address NativeLookup::lookup_entry(const methodHandle& method, bool& in_base_library, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  address entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  in_base_library = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // Compute pure name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  char* pure_name = pure_jni_name(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // Compute argument size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  int args_size = 1                             // JNIEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
                + (method->is_static() ? 1 : 0) // class for static methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                + method->size_of_parameters(); // actual parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  // 1) Try JNI short style
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  entry = lookup_style(method, pure_name, "",        args_size, true,  in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // Compute long name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  char* long_name = long_jni_name(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // 2) Try JNI long style
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  entry = lookup_style(method, pure_name, long_name, args_size, true,  in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // 3) Try JNI short style without os prefix/suffix
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  entry = lookup_style(method, pure_name, "",        args_size, false, in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // 4) Try JNI long style without os prefix/suffix
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  entry = lookup_style(method, pure_name, long_name, args_size, false, in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  return entry; // NULL indicates not found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   261
// Check all the formats of native implementation name to see if there is one
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   262
// for the specified method.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   263
address NativeLookup::lookup_critical_entry(const methodHandle& method) {
57710
05ff6e27de45 8229236: CriticalJNINatives: dll handling should be done in native thread state
mdoerr
parents: 57600
diff changeset
   264
  assert(CriticalJNINatives, "or should not be here");
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   265
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   266
  if (method->is_synchronized() ||
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   267
      !method->is_static()) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   268
    // Only static non-synchronized methods are allowed
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   269
    return NULL;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   270
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   271
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   272
  ResourceMark rm;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   273
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   274
  Symbol* signature = method->signature();
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   275
  for (int end = 0; end < signature->utf8_length(); end++) {
51997
9ce37fa2e179 8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents: 50113
diff changeset
   276
    if (signature->char_at(end) == 'L') {
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   277
      // Don't allow object types
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   278
      return NULL;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   279
    }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   280
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   281
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   282
  // Compute argument size
47782
d099408b386e 8167408: Invalid critical JNI function lookup
jcm
parents: 47216
diff changeset
   283
  int args_size = method->size_of_parameters();
d099408b386e 8167408: Invalid critical JNI function lookup
jcm
parents: 47216
diff changeset
   284
  for (SignatureStream ss(signature); !ss.at_return_type(); ss.next()) {
d099408b386e 8167408: Invalid critical JNI function lookup
jcm
parents: 47216
diff changeset
   285
    if (ss.is_array()) {
d099408b386e 8167408: Invalid critical JNI function lookup
jcm
parents: 47216
diff changeset
   286
      args_size += T_INT_size; // array length parameter
d099408b386e 8167408: Invalid critical JNI function lookup
jcm
parents: 47216
diff changeset
   287
    }
d099408b386e 8167408: Invalid critical JNI function lookup
jcm
parents: 47216
diff changeset
   288
  }
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   289
57710
05ff6e27de45 8229236: CriticalJNINatives: dll handling should be done in native thread state
mdoerr
parents: 57600
diff changeset
   290
  // dll handling requires I/O. Don't do that while in _thread_in_vm (safepoint may get requested).
05ff6e27de45 8229236: CriticalJNINatives: dll handling should be done in native thread state
mdoerr
parents: 57600
diff changeset
   291
  ThreadToNativeFromVM thread_in_native(JavaThread::current());
05ff6e27de45 8229236: CriticalJNINatives: dll handling should be done in native thread state
mdoerr
parents: 57600
diff changeset
   292
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   293
  void* dll = dll_load(method);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   294
  address entry = NULL;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   295
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   296
  if (dll != NULL) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   297
    entry = lookup_critical_style(dll, method, args_size);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   298
    // Close the handle to avoid keeping the library alive if the native method holder is unloaded.
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   299
    // This is fine because the library is still kept alive by JNI (see JVM_LoadLibrary). As soon
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   300
    // as the holder class and the library are unloaded (see JVM_UnloadLibrary), the native wrapper
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   301
    // that calls 'critical_entry' becomes unreachable and is unloaded as well.
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   302
    os::dll_unload(dll);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   303
  }
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   304
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   305
  return entry; // NULL indicates not found
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   306
}
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   307
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   308
void* NativeLookup::dll_load(const methodHandle& method) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   309
  if (method->has_native_function()) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   310
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   311
    address current_entry = method->native_function();
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   312
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   313
    char dll_name[JVM_MAXPATHLEN];
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   314
    int offset;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   315
    if (os::dll_address_to_library_name(current_entry, dll_name, sizeof(dll_name), &offset)) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   316
      char ebuf[32];
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   317
      return os::dll_load(dll_name, ebuf, sizeof(ebuf));
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   318
    }
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   319
  }
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   320
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   321
  return NULL;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   322
}
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   323
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   324
address NativeLookup::lookup_critical_style(void* dll, const methodHandle& method, int args_size) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   325
  address entry = NULL;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   326
  const char* critical_name = critical_jni_name(method);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   327
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   328
  // 1) Try JNI short style
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   329
  entry = lookup_critical_style(dll, critical_name, "",        args_size, true);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   330
  if (entry != NULL) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   331
    return entry;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   332
  }
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   333
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   334
  const char* long_name = long_jni_name(method);
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   335
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   336
  // 2) Try JNI long style
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   337
  entry = lookup_critical_style(dll, critical_name, long_name, args_size, true);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   338
  if (entry != NULL) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   339
    return entry;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   340
  }
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   341
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   342
  // 3) Try JNI short style without os prefix/suffix
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   343
  entry = lookup_critical_style(dll, critical_name, "",        args_size, false);
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   344
  if (entry != NULL) {
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   345
    return entry;
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   346
  }
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   347
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   348
  // 4) Try JNI long style without os prefix/suffix
57600
3d44a84147cc 8193042: NativeLookup::lookup_critical_entry() should only load shared library once
thartmann
parents: 54847
diff changeset
   349
  return lookup_critical_style(dll, critical_name, long_name, args_size, false);
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   350
}
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   351
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
// Check if there are any JVM TI prefixes which have been applied to the native method name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
// If any are found, remove them before attemping the look up of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
// native implementation again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
// See SetNativeMethodPrefix in the JVM TI Spec for more details.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   356
address NativeLookup::lookup_entry_prefixed(const methodHandle& method, bool& in_base_library, TRAPS) {
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   357
#if INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  int prefix_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  char* in_name = method->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  char* wrapper_name = in_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // last applied prefix will be first -- go backwards
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  for (int i = prefix_count-1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    char* prefix = prefixes[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    size_t prefix_len = strlen(prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    if (strncmp(prefix, wrapper_name, prefix_len) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
      // has this prefix remove it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
      wrapper_name += prefix_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  if (wrapper_name != in_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    // we have a name for a wrapping method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    int wrapper_name_len = (int)strlen(wrapper_name);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   376
    TempNewSymbol wrapper_symbol = SymbolTable::probe(wrapper_name, wrapper_name_len);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   377
    if (wrapper_symbol != NULL) {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 36615
diff changeset
   378
      Klass* k = method->method_holder();
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 36615
diff changeset
   379
      Method* wrapper_method = k->lookup_method(wrapper_symbol, method->signature());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
      if (wrapper_method != NULL && !wrapper_method->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
        // we found a wrapper method, use its native entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
        method->set_is_prefixed_native();
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 59016
diff changeset
   383
        return lookup_entry(methodHandle(THREAD, wrapper_method), in_base_library, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   387
#endif // INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   391
address NativeLookup::lookup_base(const methodHandle& method, bool& in_base_library, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  address entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  entry = lookup_entry(method, in_base_library, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // standard native method resolution has failed.  Check if there are any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // JVM TI prefixes which have been applied to the native method name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  entry = lookup_entry_prefixed(method, in_base_library, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // Native function not found, throw UnsatisfiedLinkError
54432
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54347
diff changeset
   404
  stringStream ss;
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54347
diff changeset
   405
  ss.print("'");
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54347
diff changeset
   406
  method->print_external_name(&ss);
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54347
diff changeset
   407
  ss.print("'");
532e88de77eb 8221470: Print methods in exception messages in java-like Syntax.
goetz
parents: 54347
diff changeset
   408
  THROW_MSG_0(vmSymbols::java_lang_UnsatisfiedLinkError(), ss.as_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   412
address NativeLookup::lookup(const methodHandle& method, bool& in_base_library, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  if (!method->has_native_function()) {
17381
a53ac5bf4850 7196277: JSR 292: Two jck/runtime tests crash on java.lang.invoke.MethodHandle.invokeExact
twisti
parents: 15482
diff changeset
   414
    address entry = lookup_base(method, in_base_library, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    method->set_native_function(entry,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13396
diff changeset
   416
      Method::native_bind_event_is_interesting);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    // -verbose:jni printing
59016
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58722
diff changeset
   418
    if (log_is_enabled(Debug, jni, resolve)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
      ResourceMark rm(THREAD);
59016
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58722
diff changeset
   420
      log_debug(jni, resolve)("[Dynamic-linking native method %s.%s ... JNI]",
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58722
diff changeset
   421
                              method->method_holder()->external_name(),
3b9eeae66fa0 8232735: Convert PrintJNIResolving to Unified Logging
coleenp
parents: 58722
diff changeset
   422
                              method->name()->as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  return method->native_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
address NativeLookup::base_library_lookup(const char* class_name, const char* method_name, const char* signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  bool in_base_library = true;  // SharedRuntime inits some math methods.
54847
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   431
  TempNewSymbol c_name = SymbolTable::new_symbol(class_name);
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   432
  TempNewSymbol m_name = SymbolTable::new_symbol(method_name);
59ea39bb2809 8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents: 54786
diff changeset
   433
  TempNewSymbol s_name = SymbolTable::new_symbol(signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // Find the class
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13396
diff changeset
   436
  Klass* k = SystemDictionary::resolve_or_fail(c_name, true, CATCH);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 36615
diff changeset
   437
  InstanceKlass* klass  = InstanceKlass::cast(k);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  // Find method and invoke standard lookup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  methodHandle method (THREAD,
28731
f7339cba0a6a 8067480: Crash in klassItable::initialize_itable_for_interface when running vm.runtime.defmeth.StaticMethodsTest.
lfoltan
parents: 25468
diff changeset
   441
                       klass->uncached_lookup_method(m_name, s_name, Klass::find_overpass));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  address result = lookup(method, in_base_library, CATCH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  assert(in_base_library, "must be in basic library");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  guarantee(result != NULL, "must be non NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
}