hotspot/src/share/vm/prims/nativeLookup.cpp
author goetz
Thu, 22 Aug 2013 09:39:54 -0700
changeset 22827 07d991d45a51
parent 17381 a53ac5bf4850
child 22838 82c7497fbad4
permissions -rw-r--r--
8023033: PPC64 (part 13): basic changes for AIX Summary: Added AIX includes alpha-sorted before BSD. Fix compilation issues with xlC in shared code. Basic shared platform dependend adaption (vm_version etc.). Reviewed-by: kvn, dholmes, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
     2
 * Copyright (c) 1997, 2012, 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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/instanceKlass.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13396
diff changeset
    33
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "oops/oop.inline.hpp"
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
    35
#include "oops/symbol.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "prims/jvm_misc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "prims/nativeLookup.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "runtime/javaCalls.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#include "runtime/signature.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14488
diff changeset
    43
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
# include "os_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    46
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    47
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    48
# include "os_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    49
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    50
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    51
# include "os_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    52
#endif
22827
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 17381
diff changeset
    53
#ifdef TARGET_OS_FAMILY_aix
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 17381
diff changeset
    54
# include "os_aix.inline.hpp"
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 17381
diff changeset
    55
#endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9116
diff changeset
    56
#ifdef TARGET_OS_FAMILY_bsd
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9116
diff changeset
    57
# include "os_bsd.inline.hpp"
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9116
diff changeset
    58
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
    61
static void mangle_name_on(outputStream* st, Symbol* name, int begin, int end) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  char* bytes = (char*)name->bytes() + begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  char* end_bytes = (char*)name->bytes() + end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  while (bytes < end_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    jchar c;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    bytes = UTF8::next(bytes, &c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if (c <= 0x7f && isalnum(c)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      st->put((char) c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
           if (c == '_') st->print("_1");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      else if (c == '/') st->print("_");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      else if (c == ';') st->print("_2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      else if (c == '[') st->print("_3");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      else               st->print("_%.5x", c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
    80
static void mangle_name_on(outputStream* st, Symbol* name) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  mangle_name_on(st, name, 0, name->utf8_length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
char* NativeLookup::pure_jni_name(methodHandle method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  stringStream st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // Prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  st.print("Java_");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Klass name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  mangle_name_on(&st, method->klass_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  st.print("_");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Method name
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  mangle_name_on(&st, method->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  return st.as_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    98
char* NativeLookup::critical_jni_name(methodHandle method) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
    99
  stringStream st;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   100
  // Prefix
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   101
  st.print("JavaCritical_");
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   102
  // Klass name
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   103
  mangle_name_on(&st, method->klass_name());
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   104
  st.print("_");
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   105
  // Method name
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   106
  mangle_name_on(&st, method->name());
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   107
  return st.as_string();
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   108
}
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   109
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   110
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
char* NativeLookup::long_jni_name(methodHandle method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Signature ignore the wrapping parenteses and the trailing return type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  stringStream st;
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   114
  Symbol* signature = method->signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  st.print("__");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // find ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  int end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  for (end = 0; end < signature->utf8_length() && signature->byte_at(end) != ')'; end++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // skip first '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  mangle_name_on(&st, signature, 1, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  return st.as_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void JNICALL JVM_RegisterUnsafeMethods(JNIEnv *env, jclass unsafecls);
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   126
  void JNICALL JVM_RegisterMethodHandleMethods(JNIEnv *env, jclass unsafecls);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  void JNICALL JVM_RegisterPerfMethods(JNIEnv *env, jclass perfclass);
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 11637
diff changeset
   128
  void JNICALL JVM_RegisterWhiteBoxMethods(JNIEnv *env, jclass wbclass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
8675
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   131
#define CC (char*)  /* cast a literal from (const char*) */
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   132
#define FN_PTR(f) CAST_FROM_FN_PTR(void*, &f)
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   133
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   134
static JNINativeMethod lookup_special_native_methods[] = {
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   135
  // Next two functions only exist for compatibility with 1.3.1 and earlier.
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   136
  { CC"Java_java_io_ObjectOutputStream_getPrimitiveFieldValues",   NULL, FN_PTR(JVM_GetPrimitiveFieldValues)     },  // intercept ObjectOutputStream getPrimitiveFieldValues for faster serialization
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   137
  { CC"Java_java_io_ObjectInputStream_setPrimitiveFieldValues",    NULL, FN_PTR(JVM_SetPrimitiveFieldValues)     },  // intercept ObjectInputStream setPrimitiveFieldValues for faster serialization
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   138
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   139
  { CC"Java_sun_misc_Unsafe_registerNatives",                      NULL, FN_PTR(JVM_RegisterUnsafeMethods)       },
8676
9098d4e927e1 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8675
diff changeset
   140
  { CC"Java_java_lang_invoke_MethodHandleNatives_registerNatives", NULL, FN_PTR(JVM_RegisterMethodHandleMethods) },
12095
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 11637
diff changeset
   141
  { CC"Java_sun_misc_Perf_registerNatives",                        NULL, FN_PTR(JVM_RegisterPerfMethods)         },
cc3d6f08a4c4 7148152: Add whitebox testing API to HotSpot
mgerdin
parents: 11637
diff changeset
   142
  { CC"Java_sun_hotspot_WhiteBox_registerNatives",                 NULL, FN_PTR(JVM_RegisterWhiteBoxMethods)     },
8675
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   143
};
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   144
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
static address lookup_special_native(char* jni_name) {
8675
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   146
  int i = !JDK_Version::is_gte_jdk14x_version() ? 0 : 2;  // see comment in lookup_special_native_methods
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   147
  int count = sizeof(lookup_special_native_methods) / sizeof(JNINativeMethod);
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   148
  for (; i < count; i++) {
e9fef2a9bef7 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8076
diff changeset
   149
    // 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
   150
    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
   151
      return CAST_FROM_FN_PTR(address, lookup_special_native_methods[i].fnPtr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
address NativeLookup::lookup_style(methodHandle method, char* pure_name, const char* long_name, int args_size, bool os_style, bool& in_base_library, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  address entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Compute complete JNI name for style
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  stringStream st;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  if (os_style) os::print_jni_name_prefix_on(&st, args_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  st.print_raw(pure_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  st.print_raw(long_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  if (os_style) os::print_jni_name_suffix_on(&st, args_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  char* jni_name = st.as_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // If the loader is null we have a system class, so we attempt a lookup in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // the native Java library. This takes care of any bootstrapping problems.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Note: It is critical for bootstrapping that Java_java_lang_ClassLoader_00024NativeLibrary_find
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // gets found the first time around - otherwise an infinite loop can occure. This is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // 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
   172
  Handle loader(THREAD, method->method_holder()->class_loader());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  if (loader.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    entry = lookup_special_native(jni_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    if (entry == NULL) {
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
   176
       entry = (address) os::dll_lookup(os::native_java_library(), jni_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      in_base_library = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
      return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Otherwise call static method findNative in ClassLoader
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 2534
diff changeset
   185
  KlassHandle   klass (THREAD, SystemDictionary::ClassLoader_klass());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  Handle name_arg = java_lang_String::create_from_str(jni_name, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  JavaValue result(T_LONG);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  JavaCalls::call_static(&result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
                         klass,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   191
                         vmSymbols::findNative_name(),
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   192
                         vmSymbols::classloader_string_long_signature(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                         // Arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
                         loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
                         name_arg,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
                         CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  entry = (address) (intptr_t) result.get_jlong();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  if (entry == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    // findNative didn't find it, if there are any agent libraries look in them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    AgentLibrary* agent;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    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
   203
      entry = (address) os::dll_lookup(agent->os_lib(), jni_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      if (entry != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   214
address NativeLookup::lookup_critical_style(methodHandle method, char* pure_name, const char* long_name, int args_size, bool os_style) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   215
  if (!method->has_native_function()) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   216
    return NULL;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   217
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   218
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   219
  address current_entry = method->native_function();
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   220
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   221
  char dll_name[JVM_MAXPATHLEN];
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   222
  int offset;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   223
  if (os::dll_address_to_library_name(current_entry, dll_name, sizeof(dll_name), &offset)) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   224
    char ebuf[32];
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   225
    void* dll = os::dll_load(dll_name, ebuf, sizeof(ebuf));
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   226
    if (dll != NULL) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   227
      // Compute complete JNI name for style
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   228
      stringStream st;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   229
      if (os_style) os::print_jni_name_prefix_on(&st, args_size);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   230
      st.print_raw(pure_name);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   231
      st.print_raw(long_name);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   232
      if (os_style) os::print_jni_name_suffix_on(&st, args_size);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   233
      char* jni_name = st.as_string();
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   234
      return (address)os::dll_lookup(dll, jni_name);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   235
    }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   236
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   237
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   238
  return NULL;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   239
}
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   240
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   241
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// Check all the formats of native implementation name to see if there is one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// for the specified method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
address NativeLookup::lookup_entry(methodHandle method, bool& in_base_library, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  address entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  in_base_library = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // Compute pure name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  char* pure_name = pure_jni_name(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Compute argument size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  int args_size = 1                             // JNIEnv
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
                + (method->is_static() ? 1 : 0) // class for static methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
                + method->size_of_parameters(); // actual parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // 1) Try JNI short style
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  entry = lookup_style(method, pure_name, "",        args_size, true,  in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Compute long name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  char* long_name = long_jni_name(method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // 2) Try JNI long style
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  entry = lookup_style(method, pure_name, long_name, args_size, true,  in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // 3) Try JNI short style without os prefix/suffix
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  entry = lookup_style(method, pure_name, "",        args_size, false, in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // 4) Try JNI long style without os prefix/suffix
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  entry = lookup_style(method, pure_name, long_name, args_size, false, in_base_library, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  return entry; // NULL indicates not found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
11637
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   277
// 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
   278
// for the specified method.
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   279
address NativeLookup::lookup_critical_entry(methodHandle method) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   280
  if (!CriticalJNINatives) return NULL;
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
  if (method->is_synchronized() ||
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   283
      !method->is_static()) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   284
    // Only static non-synchronized methods are allowed
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   285
    return NULL;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   286
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   287
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   288
  ResourceMark rm;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   289
  address entry = NULL;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   290
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   291
  Symbol* signature = method->signature();
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   292
  for (int end = 0; end < signature->utf8_length(); end++) {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   293
    if (signature->byte_at(end) == 'L') {
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   294
      // Don't allow object types
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   295
      return NULL;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   296
    }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   297
  }
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   298
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   299
  // Compute critical name
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   300
  char* critical_name = critical_jni_name(method);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   301
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   302
  // Compute argument size
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   303
  int args_size = 1                             // JNIEnv
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   304
                + (method->is_static() ? 1 : 0) // class for static methods
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   305
                + method->size_of_parameters(); // actual parameters
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   306
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   307
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   308
  // 1) Try JNI short style
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   309
  entry = lookup_critical_style(method, critical_name, "",        args_size, true);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   310
  if (entry != NULL) return entry;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   311
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   312
  // Compute long name
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   313
  char* long_name = long_jni_name(method);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   314
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   315
  // 2) Try JNI long style
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   316
  entry = lookup_critical_style(method, critical_name, long_name, args_size, true);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   317
  if (entry != NULL) return entry;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   318
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   319
  // 3) Try JNI short style without os prefix/suffix
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   320
  entry = lookup_critical_style(method, critical_name, "",        args_size, false);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   321
  if (entry != NULL) return entry;
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   322
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   323
  // 4) Try JNI long style without os prefix/suffix
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   324
  entry = lookup_critical_style(method, critical_name, long_name, args_size, false);
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   325
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   326
  return entry; // NULL indicates not found
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   327
}
030466036615 7013347: allow crypto functions to be called inline to enhance performance
never
parents: 10565
diff changeset
   328
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
// Check if there are any JVM TI prefixes which have been applied to the native method name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// If any are found, remove them before attemping the look up of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
// native implementation again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
// See SetNativeMethodPrefix in the JVM TI Spec for more details.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
address NativeLookup::lookup_entry_prefixed(methodHandle method, bool& in_base_library, TRAPS) {
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   334
#if INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  int prefix_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  char* in_name = method->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  char* wrapper_name = in_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // last applied prefix will be first -- go backwards
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  for (int i = prefix_count-1; i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    char* prefix = prefixes[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    size_t prefix_len = strlen(prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    if (strncmp(prefix, wrapper_name, prefix_len) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
      // has this prefix remove it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
      wrapper_name += prefix_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  if (wrapper_name != in_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    // we have a name for a wrapping method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    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
   353
    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
   354
    if (wrapper_symbol != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      KlassHandle kh(method->method_holder());
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   356
      Method* wrapper_method = kh()->lookup_method(wrapper_symbol,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
                                                                  method->signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      if (wrapper_method != NULL && !wrapper_method->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
        // we found a wrapper method, use its native entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
        method->set_is_prefixed_native();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
        return lookup_entry(wrapper_method, in_base_library, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   365
#endif // INCLUDE_JVMTI
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
address NativeLookup::lookup_base(methodHandle method, bool& in_base_library, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  address entry = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  entry = lookup_entry(method, in_base_library, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // standard native method resolution has failed.  Check if there are any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // JVM TI prefixes which have been applied to the native method name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  entry = lookup_entry_prefixed(method, in_base_library, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  if (entry != NULL) return entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // Native function not found, throw UnsatisfiedLinkError
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  THROW_MSG_0(vmSymbols::java_lang_UnsatisfiedLinkError(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
              method->name_and_sig_as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
address NativeLookup::lookup(methodHandle method, bool& in_base_library, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  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
   389
    address entry = lookup_base(method, in_base_library, CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    method->set_native_function(entry,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13396
diff changeset
   391
      Method::native_bind_event_is_interesting);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    // -verbose:jni printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
    if (PrintJNIResolving) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
      ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
      tty->print_cr("[Dynamic-linking native method %s.%s ... JNI]",
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13975
diff changeset
   396
        method->method_holder()->external_name(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
        method->name()->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  return method->native_function();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
address NativeLookup::base_library_lookup(const char* class_name, const char* method_name, const char* signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  bool in_base_library = true;  // SharedRuntime inits some math methods.
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   406
  TempNewSymbol c_name = SymbolTable::new_symbol(class_name,  CATCH);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   407
  TempNewSymbol m_name = SymbolTable::new_symbol(method_name, CATCH);
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   408
  TempNewSymbol s_name = SymbolTable::new_symbol(signature,   CATCH);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // Find the class
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13396
diff changeset
   411
  Klass* k = SystemDictionary::resolve_or_fail(c_name, true, CATCH);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  instanceKlassHandle klass (THREAD, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  // Find method and invoke standard lookup
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  methodHandle method (THREAD,
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7405
diff changeset
   416
                       klass->uncached_lookup_method(m_name, s_name));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  address result = lookup(method, in_base_library, CATCH);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  assert(in_base_library, "must be in basic library");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  guarantee(result != NULL, "must be non NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
}