< prev index next >

src/os/bsd/vm/os_bsd.cpp

Print this page

        

*** 1561,1571 **** return dlsym(handle, name); } int _print_dll_info_cb(const char * name, address base_address, address top_address, void * param) { outputStream * out = (outputStream *) param; ! out->print_cr(PTR_FORMAT " \t%s", base_address, name); return 0; } void os::print_dll_info(outputStream *st) { st->print_cr("Dynamic libraries:"); --- 1561,1571 ---- return dlsym(handle, name); } int _print_dll_info_cb(const char * name, address base_address, address top_address, void * param) { outputStream * out = (outputStream *) param; ! out->print_cr(INTPTR_FORMAT " \t%s", (intptr_t)base_address, name); return 0; } void os::print_dll_info(outputStream *st) { st->print_cr("Dynamic libraries:");
*** 2115,2126 **** } } static void warn_fail_commit_memory(char* addr, size_t size, bool exec, int err) { ! warning("INFO: os::commit_memory(" PTR_FORMAT ", " SIZE_FORMAT ! ", %d) failed; error='%s' (errno=%d)", addr, size, exec, os::errno_name(err), err); } // NOTE: Bsd kernel does not really reserve the pages for us. // All it does is to check if there are enough free pages --- 2115,2126 ---- } } static void warn_fail_commit_memory(char* addr, size_t size, bool exec, int err) { ! warning("INFO: os::commit_memory(" INTPTR_FORMAT ", " SIZE_FORMAT ! ", %d) failed; error='%s' (errno=%d)", (intptr_t)addr, size, exec, os::errno_name(err), err); } // NOTE: Bsd kernel does not really reserve the pages for us. // All it does is to check if there are enough free pages
*** 3627,3650 **** bool os::find(address addr, outputStream* st) { Dl_info dlinfo; memset(&dlinfo, 0, sizeof(dlinfo)); if (dladdr(addr, &dlinfo) != 0) { ! st->print(PTR_FORMAT ": ", addr); if (dlinfo.dli_sname != NULL && dlinfo.dli_saddr != NULL) { st->print("%s+%#x", dlinfo.dli_sname, ! addr - (intptr_t)dlinfo.dli_saddr); } else if (dlinfo.dli_fbase != NULL) { ! st->print("<offset %#x>", addr - (intptr_t)dlinfo.dli_fbase); } else { st->print("<absolute address>"); } if (dlinfo.dli_fname != NULL) { st->print(" in %s", dlinfo.dli_fname); } if (dlinfo.dli_fbase != NULL) { ! st->print(" at " PTR_FORMAT, dlinfo.dli_fbase); } st->cr(); if (Verbose) { // decode some bytes around the PC --- 3627,3650 ---- bool os::find(address addr, outputStream* st) { Dl_info dlinfo; memset(&dlinfo, 0, sizeof(dlinfo)); if (dladdr(addr, &dlinfo) != 0) { ! st->print(INTPTR_FORMAT ": ", (intptr_t)addr); if (dlinfo.dli_sname != NULL && dlinfo.dli_saddr != NULL) { st->print("%s+%#x", dlinfo.dli_sname, ! (uint)((uintptr_t)addr - (uintptr_t)dlinfo.dli_saddr)); } else if (dlinfo.dli_fbase != NULL) { ! st->print("<offset %#x>", (uint)((uintptr_t)addr - (uintptr_t)dlinfo.dli_fbase)); } else { st->print("<absolute address>"); } if (dlinfo.dli_fname != NULL) { st->print(" in %s", dlinfo.dli_fname); } if (dlinfo.dli_fbase != NULL) { ! st->print(" at " INTPTR_FORMAT, (intptr_t)dlinfo.dli_fbase); } st->cr(); if (Verbose) { // decode some bytes around the PC
< prev index next >