src/os/solaris/vm/hpi_solaris.cpp

Thu, 19 Mar 2009 09:13:24 -0700

author
kvn
date
Thu, 19 Mar 2009 09:13:24 -0700
changeset 1082
bd441136a5ce
parent 435
a61af66fc99e
child 1907
c18cbe5936b8
permissions
-rw-r--r--

Merge

duke@435 1 /*
duke@435 2 * Copyright 1998-2006 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_hpi_solaris.cpp.incl"
duke@435 27
duke@435 28 # include <sys/param.h>
duke@435 29 # include <dlfcn.h>
duke@435 30
duke@435 31 typedef jint (JNICALL *init_t)(GetInterfaceFunc *, void *);
duke@435 32
duke@435 33 void hpi::initialize_get_interface(vm_calls_t *callbacks)
duke@435 34 {
duke@435 35 char buf[JVM_MAXPATHLEN];
duke@435 36 void *hpi_handle;
duke@435 37 GetInterfaceFunc& getintf = _get_interface;
duke@435 38 jint (JNICALL * DLL_Initialize)(GetInterfaceFunc *, void *);
duke@435 39
duke@435 40 if (HPILibPath && HPILibPath[0]) {
duke@435 41 strncpy(buf, HPILibPath, JVM_MAXPATHLEN - 1);
duke@435 42 buf[JVM_MAXPATHLEN - 1] = '\0';
duke@435 43 } else {
duke@435 44 const char *thread_type = "native_threads";
duke@435 45
duke@435 46 os::jvm_path(buf, JVM_MAXPATHLEN);
duke@435 47
duke@435 48 #ifdef PRODUCT
duke@435 49 const char * hpi_lib = "/libhpi.so";
duke@435 50 #else
duke@435 51 char * ptr = strrchr(buf, '/');
duke@435 52 assert(strstr(ptr, "/libjvm") == ptr, "invalid library name");
duke@435 53 const char * hpi_lib = strstr(ptr, "_g") ? "/libhpi_g.so" : "/libhpi.so";
duke@435 54 #endif
duke@435 55
duke@435 56 *(strrchr(buf, '/')) = '\0'; /* get rid of /libjvm.so */
duke@435 57 char* p = strrchr(buf, '/');
duke@435 58 if (p != NULL) p[1] = '\0'; /* get rid of hotspot */
duke@435 59 strcat(buf, thread_type);
duke@435 60 strcat(buf, hpi_lib);
duke@435 61 }
duke@435 62 /* we use RTLD_NOW because of bug 4032715 */
duke@435 63 if (TraceHPI) tty->print_cr("Loading HPI %s ", buf);
duke@435 64 hpi_handle = dlopen(buf, RTLD_NOW);
duke@435 65 if (hpi_handle == NULL) {
duke@435 66 if (TraceHPI) tty->print_cr("HPI dlopen failed: %s", dlerror());
duke@435 67 return;
duke@435 68 }
duke@435 69 DLL_Initialize = CAST_TO_FN_PTR(jint (JNICALL *)(GetInterfaceFunc *, void *),
duke@435 70 dlsym(hpi_handle, "DLL_Initialize"));
duke@435 71 if (TraceHPI && DLL_Initialize == NULL) tty->print_cr("HPI dlsym of DLL_Initialize failed: %s", dlerror());
duke@435 72 if (DLL_Initialize == NULL ||
duke@435 73 (*DLL_Initialize)(&getintf, callbacks) < 0) {
duke@435 74 if (TraceHPI) tty->print_cr("HPI DLL_Initialize failed");
duke@435 75 return;
duke@435 76 }
duke@435 77 if (TraceHPI) tty->print_cr("HPI loaded successfully");
duke@435 78 }

mercurial