author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 47089 | hotspot/src/share/vm/runtime/os.cpp@27050b653624 |
child 47765 | b7c7428eaab9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46273
898ec28d19d7
8165753: Custom security manager, crashing wth 'java/security/AccessControlException'
vkempik
parents:
42066
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
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:
5403
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/classLoader.hpp" |
|
27 |
#include "classfile/javaClasses.hpp" |
|
43451
7706e5ac9f32
8170827: Correct errant "java.base" string to macro
rprotacio
parents:
42066
diff
changeset
|
28 |
#include "classfile/moduleEntry.hpp" |
7397 | 29 |
#include "classfile/systemDictionary.hpp" |
30 |
#include "classfile/vmSymbols.hpp" |
|
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25469
diff
changeset
|
31 |
#include "code/codeCache.hpp" |
7397 | 32 |
#include "code/icBuffer.hpp" |
33 |
#include "code/vtableStubs.hpp" |
|
30764 | 34 |
#include "gc/shared/vmGCOperations.hpp" |
7397 | 35 |
#include "interpreter/interpreter.hpp" |
33763
cec2333f839c
8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
33604
diff
changeset
|
36 |
#include "logging/log.hpp" |
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46644
diff
changeset
|
37 |
#include "logging/logStream.hpp" |
7397 | 38 |
#include "memory/allocation.inline.hpp" |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
39 |
#ifdef ASSERT |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
40 |
#include "memory/guardedMemory.hpp" |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
41 |
#endif |
37248 | 42 |
#include "memory/resourceArea.hpp" |
7397 | 43 |
#include "oops/oop.inline.hpp" |
44 |
#include "prims/jvm.h" |
|
45 |
#include "prims/jvm_misc.hpp" |
|
46 |
#include "prims/privilegedStack.hpp" |
|
47 |
#include "runtime/arguments.hpp" |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
40013
diff
changeset
|
48 |
#include "runtime/atomic.hpp" |
7397 | 49 |
#include "runtime/frame.inline.hpp" |
50 |
#include "runtime/interfaceSupport.hpp" |
|
51 |
#include "runtime/java.hpp" |
|
52 |
#include "runtime/javaCalls.hpp" |
|
53 |
#include "runtime/mutexLocker.hpp" |
|
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
25355
diff
changeset
|
54 |
#include "runtime/os.inline.hpp" |
7397 | 55 |
#include "runtime/stubRoutines.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14490
diff
changeset
|
56 |
#include "runtime/thread.inline.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
25469
diff
changeset
|
57 |
#include "runtime/vm_version.hpp" |
7397 | 58 |
#include "services/attachListener.hpp" |
26561
e104c9397ca1
8055289: Internal Error: mallocTracker.cpp:146 fatal error: Should not use malloc for big memory block, use virtual memory instead
zgu
parents:
25962
diff
changeset
|
59 |
#include "services/mallocTracker.hpp" |
13195 | 60 |
#include "services/memTracker.hpp" |
30764 | 61 |
#include "services/nmtCommon.hpp" |
7397 | 62 |
#include "services/threadService.hpp" |
46625 | 63 |
#include "utilities/align.hpp" |
7397 | 64 |
#include "utilities/defaultStream.hpp" |
65 |
#include "utilities/events.hpp" |
|
1 | 66 |
|
67 |
# include <signal.h> |
|
37113 | 68 |
# include <errno.h> |
1 | 69 |
|
70 |
OSThread* os::_starting_thread = NULL; |
|
71 |
address os::_polling_page = NULL; |
|
72 |
volatile int32_t* os::_mem_serialize_page = NULL; |
|
73 |
uintptr_t os::_serialize_page_mask = 0; |
|
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
74 |
volatile unsigned int os::_rand_seed = 1; |
1 | 75 |
int os::_processor_count = 0; |
40011 | 76 |
int os::_initial_active_processor_count = 0; |
1 | 77 |
size_t os::_page_sizes[os::page_sizes_max]; |
78 |
||
79 |
#ifndef PRODUCT |
|
8320 | 80 |
julong os::num_mallocs = 0; // # of calls to malloc/realloc |
81 |
julong os::alloc_bytes = 0; // # of bytes allocated |
|
82 |
julong os::num_frees = 0; // # of calls to free |
|
83 |
julong os::free_bytes = 0; // # of bytes freed |
|
1 | 84 |
#endif |
85 |
||
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
86 |
static juint cur_malloc_words = 0; // current size for MallocMaxTestWords |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
87 |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
88 |
void os_init_globals() { |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
89 |
// Called from init_globals(). |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
90 |
// See Threads::create_vm() in thread.cpp, and init.cpp. |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
91 |
os::init_globals(); |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
92 |
} |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
93 |
|
1 | 94 |
// Fill in buffer with current local time as an ISO-8601 string. |
95 |
// E.g., yyyy-mm-ddThh:mm:ss-zzzz. |
|
96 |
// Returns buffer, or NULL if it failed. |
|
97 |
// This would mostly be a call to |
|
98 |
// strftime(...., "%Y-%m-%d" "T" "%H:%M:%S" "%z", ....) |
|
99 |
// except that on Windows the %z behaves badly, so we do it ourselves. |
|
100 |
// Also, people wanted milliseconds on there, |
|
101 |
// and strftime doesn't do milliseconds. |
|
42066 | 102 |
char* os::iso8601_time(char* buffer, size_t buffer_length, bool utc) { |
1 | 103 |
// Output will be of the form "YYYY-MM-DDThh:mm:ss.mmm+zzzz\0" |
104 |
// 1 2 |
|
105 |
// 12345678901234567890123456789 |
|
33604
ad1cd9269bd4
8139116: Fixes for warning "format not a string literal"
goetz
parents:
33593
diff
changeset
|
106 |
// format string: "%04d-%02d-%02dT%02d:%02d:%02d.%03d%c%02d%02d" |
1 | 107 |
static const size_t needed_buffer = 29; |
108 |
||
109 |
// Sanity check the arguments |
|
110 |
if (buffer == NULL) { |
|
111 |
assert(false, "NULL buffer"); |
|
112 |
return NULL; |
|
113 |
} |
|
114 |
if (buffer_length < needed_buffer) { |
|
115 |
assert(false, "buffer_length too small"); |
|
116 |
return NULL; |
|
117 |
} |
|
118 |
// Get the current time |
|
234 | 119 |
jlong milliseconds_since_19700101 = javaTimeMillis(); |
1 | 120 |
const int milliseconds_per_microsecond = 1000; |
121 |
const time_t seconds_since_19700101 = |
|
122 |
milliseconds_since_19700101 / milliseconds_per_microsecond; |
|
123 |
const int milliseconds_after_second = |
|
124 |
milliseconds_since_19700101 % milliseconds_per_microsecond; |
|
125 |
// Convert the time value to a tm and timezone variable |
|
2012
041fbc6030dd
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function
ysr
parents:
1664
diff
changeset
|
126 |
struct tm time_struct; |
42066 | 127 |
if (utc) { |
128 |
if (gmtime_pd(&seconds_since_19700101, &time_struct) == NULL) { |
|
129 |
assert(false, "Failed gmtime_pd"); |
|
130 |
return NULL; |
|
131 |
} |
|
132 |
} else { |
|
133 |
if (localtime_pd(&seconds_since_19700101, &time_struct) == NULL) { |
|
134 |
assert(false, "Failed localtime_pd"); |
|
135 |
return NULL; |
|
136 |
} |
|
1 | 137 |
} |
10565 | 138 |
#if defined(_ALLBSD_SOURCE) |
139 |
const time_t zone = (time_t) time_struct.tm_gmtoff; |
|
140 |
#else |
|
1 | 141 |
const time_t zone = timezone; |
10565 | 142 |
#endif |
1 | 143 |
|
144 |
// If daylight savings time is in effect, |
|
145 |
// we are 1 hour East of our time zone |
|
146 |
const time_t seconds_per_minute = 60; |
|
147 |
const time_t minutes_per_hour = 60; |
|
148 |
const time_t seconds_per_hour = seconds_per_minute * minutes_per_hour; |
|
149 |
time_t UTC_to_local = zone; |
|
150 |
if (time_struct.tm_isdst > 0) { |
|
151 |
UTC_to_local = UTC_to_local - seconds_per_hour; |
|
152 |
} |
|
42066 | 153 |
|
154 |
// No offset when dealing with UTC |
|
155 |
if (utc) { |
|
156 |
UTC_to_local = 0; |
|
157 |
} |
|
158 |
||
1 | 159 |
// Compute the time zone offset. |
2012
041fbc6030dd
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function
ysr
parents:
1664
diff
changeset
|
160 |
// localtime_pd() sets timezone to the difference (in seconds) |
1 | 161 |
// between UTC and and local time. |
162 |
// ISO 8601 says we need the difference between local time and UTC, |
|
2012
041fbc6030dd
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function
ysr
parents:
1664
diff
changeset
|
163 |
// we change the sign of the localtime_pd() result. |
1 | 164 |
const time_t local_to_UTC = -(UTC_to_local); |
165 |
// Then we have to figure out if if we are ahead (+) or behind (-) UTC. |
|
166 |
char sign_local_to_UTC = '+'; |
|
167 |
time_t abs_local_to_UTC = local_to_UTC; |
|
168 |
if (local_to_UTC < 0) { |
|
169 |
sign_local_to_UTC = '-'; |
|
170 |
abs_local_to_UTC = -(abs_local_to_UTC); |
|
171 |
} |
|
172 |
// Convert time zone offset seconds to hours and minutes. |
|
173 |
const time_t zone_hours = (abs_local_to_UTC / seconds_per_hour); |
|
174 |
const time_t zone_min = |
|
175 |
((abs_local_to_UTC % seconds_per_hour) / seconds_per_minute); |
|
176 |
||
177 |
// Print an ISO 8601 date and time stamp into the buffer |
|
178 |
const int year = 1900 + time_struct.tm_year; |
|
179 |
const int month = 1 + time_struct.tm_mon; |
|
33604
ad1cd9269bd4
8139116: Fixes for warning "format not a string literal"
goetz
parents:
33593
diff
changeset
|
180 |
const int printed = jio_snprintf(buffer, buffer_length, |
ad1cd9269bd4
8139116: Fixes for warning "format not a string literal"
goetz
parents:
33593
diff
changeset
|
181 |
"%04d-%02d-%02dT%02d:%02d:%02d.%03d%c%02d%02d", |
1 | 182 |
year, |
183 |
month, |
|
184 |
time_struct.tm_mday, |
|
185 |
time_struct.tm_hour, |
|
186 |
time_struct.tm_min, |
|
187 |
time_struct.tm_sec, |
|
188 |
milliseconds_after_second, |
|
189 |
sign_local_to_UTC, |
|
190 |
zone_hours, |
|
191 |
zone_min); |
|
192 |
if (printed == 0) { |
|
193 |
assert(false, "Failed jio_printf"); |
|
194 |
return NULL; |
|
195 |
} |
|
196 |
return buffer; |
|
197 |
} |
|
198 |
||
199 |
OSReturn os::set_priority(Thread* thread, ThreadPriority p) { |
|
200 |
#ifdef ASSERT |
|
201 |
if (!(!thread->is_Java_thread() || |
|
202 |
Thread::current() == thread || |
|
203 |
Threads_lock->owned_by_self() |
|
204 |
|| thread->is_Compiler_thread() |
|
205 |
)) { |
|
206 |
assert(false, "possibility of dangling Thread pointer"); |
|
207 |
} |
|
208 |
#endif |
|
209 |
||
210 |
if (p >= MinPriority && p <= MaxPriority) { |
|
211 |
int priority = java_to_os_priority[p]; |
|
212 |
return set_native_priority(thread, priority); |
|
213 |
} else { |
|
214 |
assert(false, "Should not happen"); |
|
215 |
return OS_ERR; |
|
216 |
} |
|
217 |
} |
|
218 |
||
13857 | 219 |
// The mapping from OS priority back to Java priority may be inexact because |
220 |
// Java priorities can map M:1 with native priorities. If you want the definite |
|
221 |
// Java priority then use JavaThread::java_priority() |
|
1 | 222 |
OSReturn os::get_priority(const Thread* const thread, ThreadPriority& priority) { |
223 |
int p; |
|
224 |
int os_prio; |
|
225 |
OSReturn ret = get_native_priority(thread, &os_prio); |
|
226 |
if (ret != OS_OK) return ret; |
|
227 |
||
13857 | 228 |
if (java_to_os_priority[MaxPriority] > java_to_os_priority[MinPriority]) { |
229 |
for (p = MaxPriority; p > MinPriority && java_to_os_priority[p] > os_prio; p--) ; |
|
230 |
} else { |
|
231 |
// niceness values are in reverse order |
|
232 |
for (p = MaxPriority; p > MinPriority && java_to_os_priority[p] < os_prio; p--) ; |
|
233 |
} |
|
1 | 234 |
priority = (ThreadPriority)p; |
235 |
return OS_OK; |
|
236 |
} |
|
237 |
||
47089
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
238 |
bool os::dll_build_name(char* buffer, size_t size, const char* fname) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
239 |
int n = jio_snprintf(buffer, size, "%s%s%s", JNI_LIB_PREFIX, fname, JNI_LIB_SUFFIX); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
240 |
return (n != -1); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
241 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
242 |
|
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
243 |
// Helper for dll_locate_lib. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
244 |
// Pass buffer and printbuffer as we already printed the path to buffer |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
245 |
// when we called get_current_directory. This way we avoid another buffer |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
246 |
// of size MAX_PATH. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
247 |
static bool conc_path_file_and_check(char *buffer, char *printbuffer, size_t printbuflen, |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
248 |
const char* pname, char lastchar, const char* fname) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
249 |
|
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
250 |
// Concatenate path and file name, but don't print double path separators. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
251 |
const char *filesep = (WINDOWS_ONLY(lastchar == ':' ||) lastchar == os::file_separator()[0]) ? |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
252 |
"" : os::file_separator(); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
253 |
int ret = jio_snprintf(printbuffer, printbuflen, "%s%s%s", pname, filesep, fname); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
254 |
// Check whether file exists. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
255 |
if (ret != -1) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
256 |
struct stat statbuf; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
257 |
return os::stat(buffer, &statbuf) == 0; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
258 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
259 |
return false; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
260 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
261 |
|
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
262 |
bool os::dll_locate_lib(char *buffer, size_t buflen, |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
263 |
const char* pname, const char* fname) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
264 |
bool retval = false; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
265 |
|
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
266 |
size_t fullfnamelen = strlen(JNI_LIB_PREFIX) + strlen(fname) + strlen(JNI_LIB_SUFFIX); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
267 |
char* fullfname = (char*)NEW_C_HEAP_ARRAY(char, fullfnamelen + 1, mtInternal); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
268 |
if (dll_build_name(fullfname, fullfnamelen + 1, fname)) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
269 |
const size_t pnamelen = pname ? strlen(pname) : 0; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
270 |
|
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
271 |
if (pnamelen == 0) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
272 |
// If no path given, use current working directory. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
273 |
const char* p = get_current_directory(buffer, buflen); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
274 |
if (p != NULL) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
275 |
const size_t plen = strlen(buffer); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
276 |
const char lastchar = buffer[plen - 1]; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
277 |
retval = conc_path_file_and_check(buffer, &buffer[plen], buflen - plen, |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
278 |
"", lastchar, fullfname); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
279 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
280 |
} else if (strchr(pname, *os::path_separator()) != NULL) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
281 |
// A list of paths. Search for the path that contains the library. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
282 |
int n; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
283 |
char** pelements = split_path(pname, &n); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
284 |
if (pelements != NULL) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
285 |
for (int i = 0; i < n; i++) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
286 |
char* path = pelements[i]; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
287 |
// Really shouldn't be NULL, but check can't hurt. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
288 |
size_t plen = (path == NULL) ? 0 : strlen(path); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
289 |
if (plen == 0) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
290 |
continue; // Skip the empty path values. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
291 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
292 |
const char lastchar = path[plen - 1]; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
293 |
retval = conc_path_file_and_check(buffer, buffer, buflen, path, lastchar, fullfname); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
294 |
if (retval) break; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
295 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
296 |
// Release the storage allocated by split_path. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
297 |
for (int i = 0; i < n; i++) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
298 |
if (pelements[i] != NULL) { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
299 |
FREE_C_HEAP_ARRAY(char, pelements[i]); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
300 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
301 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
302 |
FREE_C_HEAP_ARRAY(char*, pelements); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
303 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
304 |
} else { |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
305 |
// A definite path. |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
306 |
const char lastchar = pname[pnamelen-1]; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
307 |
retval = conc_path_file_and_check(buffer, buffer, buflen, pname, lastchar, fullfname); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
308 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
309 |
} |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
310 |
|
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
311 |
FREE_C_HEAP_ARRAY(char*, fullfname); |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
312 |
return retval; |
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
313 |
} |
1 | 314 |
|
315 |
// --------------------- sun.misc.Signal (optional) --------------------- |
|
316 |
||
317 |
||
318 |
// SIGBREAK is sent by the keyboard to query the VM state |
|
319 |
#ifndef SIGBREAK |
|
320 |
#define SIGBREAK SIGQUIT |
|
321 |
#endif |
|
322 |
||
323 |
// sigexitnum_pd is a platform-specific special signal used for terminating the Signal thread. |
|
324 |
||
325 |
||
326 |
static void signal_thread_entry(JavaThread* thread, TRAPS) { |
|
327 |
os::set_priority(thread, NearMaxPriority); |
|
328 |
while (true) { |
|
329 |
int sig; |
|
330 |
{ |
|
22551 | 331 |
// FIXME : Currently we have not decided what should be the status |
1 | 332 |
// for this java thread blocked here. Once we decide about |
333 |
// that we should fix this. |
|
334 |
sig = os::signal_wait(); |
|
335 |
} |
|
336 |
if (sig == os::sigexitnum_pd()) { |
|
337 |
// Terminate the signal thread |
|
338 |
return; |
|
339 |
} |
|
340 |
||
341 |
switch (sig) { |
|
342 |
case SIGBREAK: { |
|
343 |
// Check if the signal is a trigger to start the Attach Listener - in that |
|
344 |
// case don't print stack traces. |
|
345 |
if (!DisableAttachMechanism && AttachListener::is_init_trigger()) { |
|
346 |
continue; |
|
347 |
} |
|
348 |
// Print stack traces |
|
349 |
// Any SIGBREAK operations added here should make sure to flush |
|
350 |
// the output stream (e.g. tty->flush()) after output. See 4803766. |
|
351 |
// Each module also prints an extra carriage return after its output. |
|
352 |
VM_PrintThreads op; |
|
353 |
VMThread::execute(&op); |
|
354 |
VM_PrintJNI jni_op; |
|
355 |
VMThread::execute(&jni_op); |
|
356 |
VM_FindDeadlocks op1(tty); |
|
357 |
VMThread::execute(&op1); |
|
358 |
Universe::print_heap_at_SIGBREAK(); |
|
359 |
if (PrintClassHistogram) { |
|
35061 | 360 |
VM_GC_HeapInspection op1(tty, true /* force full GC before heap inspection */); |
1 | 361 |
VMThread::execute(&op1); |
362 |
} |
|
363 |
if (JvmtiExport::should_post_data_dump()) { |
|
364 |
JvmtiExport::post_data_dump(); |
|
365 |
} |
|
366 |
break; |
|
367 |
} |
|
368 |
default: { |
|
369 |
// Dispatch the signal to java |
|
370 |
HandleMark hm(THREAD); |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46295
diff
changeset
|
371 |
Klass* klass = SystemDictionary::resolve_or_null(vmSymbols::jdk_internal_misc_Signal(), THREAD); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46295
diff
changeset
|
372 |
if (klass != NULL) { |
1 | 373 |
JavaValue result(T_VOID); |
374 |
JavaCallArguments args; |
|
375 |
args.push_int(sig); |
|
376 |
JavaCalls::call_static( |
|
377 |
&result, |
|
378 |
klass, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
379 |
vmSymbols::dispatch_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
380 |
vmSymbols::int_void_signature(), |
1 | 381 |
&args, |
382 |
THREAD |
|
383 |
); |
|
384 |
} |
|
385 |
if (HAS_PENDING_EXCEPTION) { |
|
386 |
// tty is initialized early so we don't expect it to be null, but |
|
387 |
// if it is we can't risk doing an initialization that might |
|
388 |
// trigger additional out-of-memory conditions |
|
389 |
if (tty != NULL) { |
|
390 |
char klass_name[256]; |
|
391 |
char tmp_sig_name[16]; |
|
392 |
const char* sig_name = "UNKNOWN"; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
393 |
InstanceKlass::cast(PENDING_EXCEPTION->klass())-> |
1 | 394 |
name()->as_klass_external_name(klass_name, 256); |
395 |
if (os::exception_name(sig, tmp_sig_name, 16) != NULL) |
|
396 |
sig_name = tmp_sig_name; |
|
397 |
warning("Exception %s occurred dispatching signal %s to handler" |
|
398 |
"- the VM may need to be forcibly terminated", |
|
399 |
klass_name, sig_name ); |
|
400 |
} |
|
401 |
CLEAR_PENDING_EXCEPTION; |
|
402 |
} |
|
403 |
} |
|
404 |
} |
|
405 |
} |
|
406 |
} |
|
407 |
||
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
408 |
void os::init_before_ergo() { |
40011 | 409 |
initialize_initial_active_processor_count(); |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
410 |
// We need to initialize large page support here because ergonomics takes some |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
411 |
// decisions depending on large page support and the calculated large page size. |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
412 |
large_page_init(); |
35043
30543d2a0a20
8133023: ParallelGCThreads is not calculated correctly
jmasa
parents:
34633
diff
changeset
|
413 |
|
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
414 |
// We need to adapt the configured number of stack protection pages given |
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
415 |
// in 4K pages to the actual os page size. We must do this before setting |
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
416 |
// up minimal stack sizes etc. in os::init_2(). |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46587
diff
changeset
|
417 |
JavaThread::set_stack_red_zone_size (align_up(StackRedPages * 4 * K, vm_page_size())); |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46587
diff
changeset
|
418 |
JavaThread::set_stack_yellow_zone_size (align_up(StackYellowPages * 4 * K, vm_page_size())); |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46587
diff
changeset
|
419 |
JavaThread::set_stack_reserved_zone_size(align_up(StackReservedPages * 4 * K, vm_page_size())); |
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46587
diff
changeset
|
420 |
JavaThread::set_stack_shadow_zone_size (align_up(StackShadowPages * 4 * K, vm_page_size())); |
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
421 |
|
35043
30543d2a0a20
8133023: ParallelGCThreads is not calculated correctly
jmasa
parents:
34633
diff
changeset
|
422 |
// VM version initialization identifies some characteristics of the |
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
423 |
// platform that are used during ergonomic decisions. |
35043
30543d2a0a20
8133023: ParallelGCThreads is not calculated correctly
jmasa
parents:
34633
diff
changeset
|
424 |
VM_Version::init_before_ergo(); |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
425 |
} |
1 | 426 |
|
46273
898ec28d19d7
8165753: Custom security manager, crashing wth 'java/security/AccessControlException'
vkempik
parents:
42066
diff
changeset
|
427 |
void os::signal_init(TRAPS) { |
1 | 428 |
if (!ReduceSignalUsage) { |
429 |
// Setup JavaThread for processing signals |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
430 |
Klass* k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_Thread(), true, CHECK); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46295
diff
changeset
|
431 |
InstanceKlass* ik = InstanceKlass::cast(k); |
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46295
diff
changeset
|
432 |
instanceHandle thread_oop = ik->allocate_instance_handle(CHECK); |
1 | 433 |
|
434 |
const char thread_name[] = "Signal Dispatcher"; |
|
435 |
Handle string = java_lang_String::create_from_str(thread_name, CHECK); |
|
436 |
||
437 |
// Initialize thread_oop to put it into the system threadGroup |
|
438 |
Handle thread_group (THREAD, Universe::system_thread_group()); |
|
439 |
JavaValue result(T_VOID); |
|
440 |
JavaCalls::call_special(&result, thread_oop, |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46295
diff
changeset
|
441 |
ik, |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
442 |
vmSymbols::object_initializer_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
443 |
vmSymbols::threadgroup_string_void_signature(), |
1 | 444 |
thread_group, |
445 |
string, |
|
446 |
CHECK); |
|
447 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46295
diff
changeset
|
448 |
Klass* group = SystemDictionary::ThreadGroup_klass(); |
1 | 449 |
JavaCalls::call_special(&result, |
450 |
thread_group, |
|
451 |
group, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
452 |
vmSymbols::add_method_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
453 |
vmSymbols::thread_void_signature(), |
1 | 454 |
thread_oop, // ARG 1 |
455 |
CHECK); |
|
456 |
||
457 |
os::signal_init_pd(); |
|
458 |
||
459 |
{ MutexLocker mu(Threads_lock); |
|
460 |
JavaThread* signal_thread = new JavaThread(&signal_thread_entry); |
|
461 |
||
462 |
// At this point it may be possible that no osthread was created for the |
|
463 |
// JavaThread due to lack of memory. We would have to throw an exception |
|
464 |
// in that case. However, since this must work and we do not allow |
|
465 |
// exceptions anyway, check and abort if this fails. |
|
466 |
if (signal_thread == NULL || signal_thread->osthread() == NULL) { |
|
467 |
vm_exit_during_initialization("java.lang.OutOfMemoryError", |
|
22758
c6b6abb73544
7182040: volano29 limited by os resource on Linux - need better diagnostic message
iklam
parents:
22556
diff
changeset
|
468 |
os::native_thread_creation_failed_msg()); |
1 | 469 |
} |
470 |
||
471 |
java_lang_Thread::set_thread(thread_oop(), signal_thread); |
|
472 |
java_lang_Thread::set_priority(thread_oop(), NearMaxPriority); |
|
473 |
java_lang_Thread::set_daemon(thread_oop()); |
|
474 |
||
475 |
signal_thread->set_threadObj(thread_oop()); |
|
476 |
Threads::add(signal_thread); |
|
477 |
Thread::start(signal_thread); |
|
478 |
} |
|
479 |
// Handle ^BREAK |
|
480 |
os::signal(SIGBREAK, os::user_handler()); |
|
481 |
} |
|
482 |
} |
|
483 |
||
484 |
||
485 |
void os::terminate_signal_thread() { |
|
486 |
if (!ReduceSignalUsage) |
|
487 |
signal_notify(sigexitnum_pd()); |
|
488 |
} |
|
489 |
||
490 |
||
491 |
// --------------------- loading libraries --------------------- |
|
492 |
||
493 |
typedef jint (JNICALL *JNI_OnLoad_t)(JavaVM *, void *); |
|
494 |
extern struct JavaVM_ main_vm; |
|
495 |
||
496 |
static void* _native_java_library = NULL; |
|
497 |
||
498 |
void* os::native_java_library() { |
|
499 |
if (_native_java_library == NULL) { |
|
500 |
char buffer[JVM_MAXPATHLEN]; |
|
501 |
char ebuf[1024]; |
|
502 |
||
950 | 503 |
// Try to load verify dll first. In 1.3 java dll depends on it and is not |
504 |
// always able to find it when the loading executable is outside the JDK. |
|
1 | 505 |
// In order to keep working with 1.2 we ignore any loading errors. |
47089
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
506 |
if (dll_locate_lib(buffer, sizeof(buffer), Arguments::get_dll_dir(), |
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
507 |
"verify")) { |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
508 |
dll_load(buffer, ebuf, sizeof(ebuf)); |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
509 |
} |
1 | 510 |
|
511 |
// Load java dll |
|
47089
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
512 |
if (dll_locate_lib(buffer, sizeof(buffer), Arguments::get_dll_dir(), |
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
513 |
"java")) { |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
514 |
_native_java_library = dll_load(buffer, ebuf, sizeof(ebuf)); |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
515 |
} |
1 | 516 |
if (_native_java_library == NULL) { |
517 |
vm_exit_during_initialization("Unable to load native library", ebuf); |
|
518 |
} |
|
10565 | 519 |
|
520 |
#if defined(__OpenBSD__) |
|
521 |
// Work-around OpenBSD's lack of $ORIGIN support by pre-loading libnet.so |
|
522 |
// ignore errors |
|
47089
27050b653624
8186072: dll_build_name returns true even if file is missing.
goetz
parents:
46969
diff
changeset
|
523 |
if (dll_locate_lib(buffer, sizeof(buffer), Arguments::get_dll_dir(), |
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
524 |
"net")) { |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
525 |
dll_load(buffer, ebuf, sizeof(ebuf)); |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
526 |
} |
10565 | 527 |
#endif |
950 | 528 |
} |
1 | 529 |
return _native_java_library; |
530 |
} |
|
531 |
||
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
532 |
/* |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
533 |
* Support for finding Agent_On(Un)Load/Attach<_lib_name> if it exists. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
534 |
* If check_lib == true then we are looking for an |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
535 |
* Agent_OnLoad_lib_name or Agent_OnAttach_lib_name function to determine if |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
536 |
* this library is statically linked into the image. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
537 |
* If check_lib == false then we will look for the appropriate symbol in the |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
538 |
* executable if agent_lib->is_static_lib() == true or in the shared library |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
539 |
* referenced by 'handle'. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
540 |
*/ |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
541 |
void* os::find_agent_function(AgentLibrary *agent_lib, bool check_lib, |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
542 |
const char *syms[], size_t syms_len) { |
19973 | 543 |
assert(agent_lib != NULL, "sanity check"); |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
544 |
const char *lib_name; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
545 |
void *handle = agent_lib->os_lib(); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
546 |
void *entryName = NULL; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
547 |
char *agent_function_name; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
548 |
size_t i; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
549 |
|
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
550 |
// If checking then use the agent name otherwise test is_static_lib() to |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
551 |
// see how to process this lookup |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
552 |
lib_name = ((check_lib || agent_lib->is_static_lib()) ? agent_lib->name() : NULL); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
553 |
for (i = 0; i < syms_len; i++) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
554 |
agent_function_name = build_agent_function_name(syms[i], lib_name, agent_lib->is_absolute_path()); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
555 |
if (agent_function_name == NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
556 |
break; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
557 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
558 |
entryName = dll_lookup(handle, agent_function_name); |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27469
diff
changeset
|
559 |
FREE_C_HEAP_ARRAY(char, agent_function_name); |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
560 |
if (entryName != NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
561 |
break; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
562 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
563 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
564 |
return entryName; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
565 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
566 |
|
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
567 |
// See if the passed in agent is statically linked into the VM image. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
568 |
bool os::find_builtin_agent(AgentLibrary *agent_lib, const char *syms[], |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
569 |
size_t syms_len) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
570 |
void *ret; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
571 |
void *proc_handle; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
572 |
void *save_handle; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
573 |
|
19973 | 574 |
assert(agent_lib != NULL, "sanity check"); |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
575 |
if (agent_lib->name() == NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
576 |
return false; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
577 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
578 |
proc_handle = get_default_process_handle(); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
579 |
// Check for Agent_OnLoad/Attach_lib_name function |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
580 |
save_handle = agent_lib->os_lib(); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
581 |
// We want to look in this process' symbol table. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
582 |
agent_lib->set_os_lib(proc_handle); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
583 |
ret = find_agent_function(agent_lib, true, syms, syms_len); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
584 |
if (ret != NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
585 |
// Found an entry point like Agent_OnLoad_lib_name so we have a static agent |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
586 |
agent_lib->set_valid(); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
587 |
agent_lib->set_static_lib(true); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
588 |
return true; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
589 |
} |
19973 | 590 |
agent_lib->set_os_lib(save_handle); |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
591 |
return false; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
592 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
593 |
|
1 | 594 |
// --------------------- heap allocation utilities --------------------- |
595 |
||
13195 | 596 |
char *os::strdup(const char *str, MEMFLAGS flags) { |
1 | 597 |
size_t size = strlen(str); |
13195 | 598 |
char *dup_str = (char *)malloc(size + 1, flags); |
1 | 599 |
if (dup_str == NULL) return NULL; |
600 |
strcpy(dup_str, str); |
|
601 |
return dup_str; |
|
602 |
} |
|
603 |
||
25949 | 604 |
char* os::strdup_check_oom(const char* str, MEMFLAGS flags) { |
605 |
char* p = os::strdup(str, flags); |
|
606 |
if (p == NULL) { |
|
607 |
vm_exit_out_of_memory(strlen(str) + 1, OOM_MALLOC_ERROR, "os::strdup_check_oom"); |
|
608 |
} |
|
609 |
return p; |
|
610 |
} |
|
611 |
||
1 | 612 |
|
613 |
#define paranoid 0 /* only set to 1 if you suspect checking code has bug */ |
|
614 |
||
615 |
#ifdef ASSERT |
|
616 |
||
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
617 |
static void verify_memory(void* ptr) { |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
618 |
GuardedMemory guarded(ptr); |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
619 |
if (!guarded.verify_guards()) { |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
620 |
tty->print_cr("## nof_mallocs = " UINT64_FORMAT ", nof_frees = " UINT64_FORMAT, os::num_mallocs, os::num_frees); |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
621 |
tty->print_cr("## memory stomp:"); |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
622 |
guarded.print_on(tty); |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
623 |
fatal("memory stomping error"); |
1 | 624 |
} |
625 |
} |
|
626 |
||
627 |
#endif |
|
628 |
||
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
629 |
// |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
630 |
// This function supports testing of the malloc out of memory |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
631 |
// condition without really running the system out of memory. |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
632 |
// |
28470
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
633 |
static bool has_reached_max_malloc_test_peak(size_t alloc_size) { |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
634 |
if (MallocMaxTestWords > 0) { |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
635 |
jint words = (jint)(alloc_size / BytesPerWord); |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
636 |
|
28470
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
637 |
if ((cur_malloc_words + words) > MallocMaxTestWords) { |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
638 |
return true; |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
639 |
} |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
640 |
Atomic::add(words, (volatile jint *)&cur_malloc_words); |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
641 |
} |
28470
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
642 |
return false; |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
643 |
} |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
644 |
|
25946 | 645 |
void* os::malloc(size_t size, MEMFLAGS flags) { |
646 |
return os::malloc(size, flags, CALLER_PC); |
|
647 |
} |
|
648 |
||
649 |
void* os::malloc(size_t size, MEMFLAGS memflags, const NativeCallStack& stack) { |
|
8320 | 650 |
NOT_PRODUCT(inc_stat_counter(&num_mallocs, 1)); |
651 |
NOT_PRODUCT(inc_stat_counter(&alloc_bytes, size)); |
|
1 | 652 |
|
46644
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46625
diff
changeset
|
653 |
// Since os::malloc can be called when the libjvm.{dll,so} is |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46625
diff
changeset
|
654 |
// first loaded and we don't have a thread yet we must accept NULL also here. |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46625
diff
changeset
|
655 |
assert(!os::ThreadCrashProtection::is_crash_protected(Thread::current_or_null()), |
a5813fb66270
8183925: Decouple crash protection from watcher thread
rehn
parents:
46625
diff
changeset
|
656 |
"malloc() not allowed when crash protection is set"); |
18943 | 657 |
|
1 | 658 |
if (size == 0) { |
659 |
// return a valid pointer if size is zero |
|
660 |
// if NULL is returned the calling functions assume out of memory. |
|
661 |
size = 1; |
|
662 |
} |
|
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
663 |
|
25946 | 664 |
// NMT support |
665 |
NMT_TrackingLevel level = MemTracker::tracking_level(); |
|
666 |
size_t nmt_header_size = MemTracker::malloc_header_size(level); |
|
667 |
||
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
668 |
#ifndef ASSERT |
25946 | 669 |
const size_t alloc_size = size + nmt_header_size; |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
670 |
#else |
25946 | 671 |
const size_t alloc_size = GuardedMemory::get_total_size(size + nmt_header_size); |
672 |
if (size + nmt_header_size > alloc_size) { // Check for rollover. |
|
14487
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
14120
diff
changeset
|
673 |
return NULL; |
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
14120
diff
changeset
|
674 |
} |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
675 |
#endif |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
676 |
|
28470
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
677 |
// For the test flag -XX:MallocMaxTestWords |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
678 |
if (has_reached_max_malloc_test_peak(size)) { |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
679 |
return NULL; |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
680 |
} |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
681 |
|
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
682 |
u_char* ptr; |
28470
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
683 |
ptr = (u_char*)::malloc(alloc_size); |
13195 | 684 |
|
1 | 685 |
#ifdef ASSERT |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
686 |
if (ptr == NULL) { |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
687 |
return NULL; |
1 | 688 |
} |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
689 |
// Wrap memory with guard |
25946 | 690 |
GuardedMemory guarded(ptr, size + nmt_header_size); |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
691 |
ptr = guarded.get_user_ptr(); |
1 | 692 |
#endif |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
693 |
if ((intptr_t)ptr == (intptr_t)MallocCatchPtr) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
694 |
tty->print_cr("os::malloc caught, " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, p2i(ptr)); |
1 | 695 |
breakpoint(); |
696 |
} |
|
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
697 |
debug_only(if (paranoid) verify_memory(ptr)); |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
698 |
if (PrintMalloc && tty != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
699 |
tty->print_cr("os::malloc " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, p2i(ptr)); |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
700 |
} |
13195 | 701 |
|
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
702 |
// we do not track guard memory |
25946 | 703 |
return MemTracker::record_malloc((address)ptr, size, memflags, stack, level); |
1 | 704 |
} |
705 |
||
25946 | 706 |
void* os::realloc(void *memblock, size_t size, MEMFLAGS flags) { |
707 |
return os::realloc(memblock, size, flags, CALLER_PC); |
|
708 |
} |
|
1 | 709 |
|
25946 | 710 |
void* os::realloc(void *memblock, size_t size, MEMFLAGS memflags, const NativeCallStack& stack) { |
26561
e104c9397ca1
8055289: Internal Error: mallocTracker.cpp:146 fatal error: Should not use malloc for big memory block, use virtual memory instead
zgu
parents:
25962
diff
changeset
|
711 |
|
28470
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
712 |
// For the test flag -XX:MallocMaxTestWords |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
713 |
if (has_reached_max_malloc_test_peak(size)) { |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
714 |
return NULL; |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
715 |
} |
bf674dd8644e
8058897: Unsafe.reallocateMemory() ignores -XX:MallocMaxTestWords setting
ctornqvi
parents:
28208
diff
changeset
|
716 |
|
46295
6092ca55b77b
8168542: os::realloc should return a valid pointer for input size=0
stuefe
parents:
46289
diff
changeset
|
717 |
if (size == 0) { |
6092ca55b77b
8168542: os::realloc should return a valid pointer for input size=0
stuefe
parents:
46289
diff
changeset
|
718 |
// return a valid pointer if size is zero |
6092ca55b77b
8168542: os::realloc should return a valid pointer for input size=0
stuefe
parents:
46289
diff
changeset
|
719 |
// if NULL is returned the calling functions assume out of memory. |
6092ca55b77b
8168542: os::realloc should return a valid pointer for input size=0
stuefe
parents:
46289
diff
changeset
|
720 |
size = 1; |
6092ca55b77b
8168542: os::realloc should return a valid pointer for input size=0
stuefe
parents:
46289
diff
changeset
|
721 |
} |
6092ca55b77b
8168542: os::realloc should return a valid pointer for input size=0
stuefe
parents:
46289
diff
changeset
|
722 |
|
1 | 723 |
#ifndef ASSERT |
8320 | 724 |
NOT_PRODUCT(inc_stat_counter(&num_mallocs, 1)); |
725 |
NOT_PRODUCT(inc_stat_counter(&alloc_bytes, size)); |
|
25946 | 726 |
// NMT support |
727 |
void* membase = MemTracker::record_free(memblock); |
|
728 |
NMT_TrackingLevel level = MemTracker::tracking_level(); |
|
729 |
size_t nmt_header_size = MemTracker::malloc_header_size(level); |
|
730 |
void* ptr = ::realloc(membase, size + nmt_header_size); |
|
731 |
return MemTracker::record_malloc(ptr, size, memflags, stack, level); |
|
1 | 732 |
#else |
733 |
if (memblock == NULL) { |
|
25946 | 734 |
return os::malloc(size, memflags, stack); |
1 | 735 |
} |
736 |
if ((intptr_t)memblock == (intptr_t)MallocCatchPtr) { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
737 |
tty->print_cr("os::realloc caught " PTR_FORMAT, p2i(memblock)); |
1 | 738 |
breakpoint(); |
739 |
} |
|
25946 | 740 |
// NMT support |
741 |
void* membase = MemTracker::malloc_base(memblock); |
|
742 |
verify_memory(membase); |
|
1 | 743 |
// always move the block |
25946 | 744 |
void* ptr = os::malloc(size, memflags, stack); |
31347 | 745 |
if (PrintMalloc && tty != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
746 |
tty->print_cr("os::realloc " SIZE_FORMAT " bytes, " PTR_FORMAT " --> " PTR_FORMAT, size, p2i(memblock), p2i(ptr)); |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
747 |
} |
1 | 748 |
// Copy to new memory if malloc didn't fail |
749 |
if ( ptr != NULL ) { |
|
25946 | 750 |
GuardedMemory guarded(MemTracker::malloc_base(memblock)); |
751 |
// Guard's user data contains NMT header |
|
752 |
size_t memblock_size = guarded.get_user_size() - MemTracker::malloc_header_size(memblock); |
|
753 |
memcpy(ptr, memblock, MIN2(size, memblock_size)); |
|
754 |
if (paranoid) verify_memory(MemTracker::malloc_base(ptr)); |
|
1 | 755 |
if ((intptr_t)ptr == (intptr_t)MallocCatchPtr) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
756 |
tty->print_cr("os::realloc caught, " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, p2i(ptr)); |
1 | 757 |
breakpoint(); |
758 |
} |
|
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
759 |
os::free(memblock); |
1 | 760 |
} |
761 |
return ptr; |
|
762 |
#endif |
|
763 |
} |
|
764 |
||
765 |
||
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27469
diff
changeset
|
766 |
void os::free(void *memblock) { |
8320 | 767 |
NOT_PRODUCT(inc_stat_counter(&num_frees, 1)); |
1 | 768 |
#ifdef ASSERT |
769 |
if (memblock == NULL) return; |
|
770 |
if ((intptr_t)memblock == (intptr_t)MallocCatchPtr) { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
771 |
if (tty != NULL) tty->print_cr("os::free caught " PTR_FORMAT, p2i(memblock)); |
1 | 772 |
breakpoint(); |
773 |
} |
|
25946 | 774 |
void* membase = MemTracker::record_free(memblock); |
775 |
verify_memory(membase); |
|
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
776 |
|
25946 | 777 |
GuardedMemory guarded(membase); |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
778 |
size_t size = guarded.get_user_size(); |
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
779 |
inc_stat_counter(&free_bytes, size); |
25946 | 780 |
membase = guarded.release_for_freeing(); |
25056
5ad92b0d1beb
6311046: -Xcheck:jni should support checking of GetPrimitiveArrayCritical.
dsimms
parents:
24457
diff
changeset
|
781 |
if (PrintMalloc && tty != NULL) { |
25946 | 782 |
fprintf(stderr, "os::free " SIZE_FORMAT " bytes --> " PTR_FORMAT "\n", size, (uintptr_t)membase); |
1 | 783 |
} |
25946 | 784 |
::free(membase); |
785 |
#else |
|
786 |
void* membase = MemTracker::record_free(memblock); |
|
787 |
::free(membase); |
|
1 | 788 |
#endif |
789 |
} |
|
790 |
||
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
791 |
void os::init_random(unsigned int initval) { |
1 | 792 |
_rand_seed = initval; |
793 |
} |
|
794 |
||
795 |
||
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
796 |
static int random_helper(unsigned int rand_seed) { |
1 | 797 |
/* standard, well-known linear congruential random generator with |
798 |
* next_rand = (16807*seed) mod (2**31-1) |
|
799 |
* see |
|
800 |
* (1) "Random Number Generators: Good Ones Are Hard to Find", |
|
801 |
* S.K. Park and K.W. Miller, Communications of the ACM 31:10 (Oct 1988), |
|
802 |
* (2) "Two Fast Implementations of the 'Minimal Standard' Random |
|
803 |
* Number Generator", David G. Carta, Comm. ACM 33, 1 (Jan 1990), pp. 87-88. |
|
804 |
*/ |
|
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
805 |
const unsigned int a = 16807; |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
806 |
const unsigned int m = 2147483647; |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
807 |
const int q = m / a; assert(q == 127773, "weird math"); |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
808 |
const int r = m % a; assert(r == 2836, "weird math"); |
1 | 809 |
|
810 |
// compute az=2^31p+q |
|
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
811 |
unsigned int lo = a * (rand_seed & 0xFFFF); |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
812 |
unsigned int hi = a * (rand_seed >> 16); |
1 | 813 |
lo += (hi & 0x7FFF) << 16; |
814 |
||
815 |
// if q overflowed, ignore the overflow and increment q |
|
816 |
if (lo > m) { |
|
817 |
lo &= m; |
|
818 |
++lo; |
|
819 |
} |
|
820 |
lo += hi >> 15; |
|
821 |
||
822 |
// if (p+q) overflowed, ignore the overflow and increment (p+q) |
|
823 |
if (lo > m) { |
|
824 |
lo &= m; |
|
825 |
++lo; |
|
826 |
} |
|
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
827 |
return lo; |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
828 |
} |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
829 |
|
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
830 |
int os::random() { |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
831 |
// Make updating the random seed thread safe. |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
832 |
while (true) { |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
833 |
unsigned int seed = _rand_seed; |
46958
a13bd8c6b7a2
8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents:
46701
diff
changeset
|
834 |
unsigned int rand = random_helper(seed); |
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
835 |
if (Atomic::cmpxchg(rand, &_rand_seed, seed) == seed) { |
46958
a13bd8c6b7a2
8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents:
46701
diff
changeset
|
836 |
return static_cast<int>(rand); |
46587
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
837 |
} |
6c97f34cb194
8182554: Code for os::random() assumes long is 32 bits
coleenp
parents:
46329
diff
changeset
|
838 |
} |
1 | 839 |
} |
840 |
||
841 |
// The INITIALIZED state is distinguished from the SUSPENDED state because the |
|
842 |
// conditions in which a thread is first started are different from those in which |
|
843 |
// a suspension is resumed. These differences make it hard for us to apply the |
|
844 |
// tougher checks when starting threads that we want to do when resuming them. |
|
845 |
// However, when start_thread is called as a result of Thread.start, on a Java |
|
846 |
// thread, the operation is synchronized on the Java Thread object. So there |
|
847 |
// cannot be a race to start the thread and hence for the thread to exit while |
|
848 |
// we are working on it. Non-Java threads that start Java threads either have |
|
849 |
// to do so in a context in which races are impossible, or should do appropriate |
|
850 |
// locking. |
|
851 |
||
852 |
void os::start_thread(Thread* thread) { |
|
853 |
// guard suspend/resume |
|
854 |
MutexLockerEx ml(thread->SR_lock(), Mutex::_no_safepoint_check_flag); |
|
855 |
OSThread* osthread = thread->osthread(); |
|
856 |
osthread->set_state(RUNNABLE); |
|
857 |
pd_start_thread(thread); |
|
858 |
} |
|
859 |
||
31026
b87ccf34b54c
8080718: Make -XX:CreateCoredumpOnCrash control core dumping in all cases
ctornqvi
parents:
30764
diff
changeset
|
860 |
void os::abort(bool dump_core) { |
b87ccf34b54c
8080718: Make -XX:CreateCoredumpOnCrash control core dumping in all cases
ctornqvi
parents:
30764
diff
changeset
|
861 |
abort(dump_core && CreateCoredumpOnCrash, NULL, NULL); |
b87ccf34b54c
8080718: Make -XX:CreateCoredumpOnCrash control core dumping in all cases
ctornqvi
parents:
30764
diff
changeset
|
862 |
} |
b87ccf34b54c
8080718: Make -XX:CreateCoredumpOnCrash control core dumping in all cases
ctornqvi
parents:
30764
diff
changeset
|
863 |
|
1 | 864 |
//--------------------------------------------------------------------------- |
865 |
// Helper functions for fatal error handler |
|
866 |
||
867 |
void os::print_hex_dump(outputStream* st, address start, address end, int unitsize) { |
|
868 |
assert(unitsize == 1 || unitsize == 2 || unitsize == 4 || unitsize == 8, "just checking"); |
|
869 |
||
870 |
int cols = 0; |
|
871 |
int cols_per_line = 0; |
|
872 |
switch (unitsize) { |
|
873 |
case 1: cols_per_line = 16; break; |
|
874 |
case 2: cols_per_line = 8; break; |
|
875 |
case 4: cols_per_line = 4; break; |
|
876 |
case 8: cols_per_line = 2; break; |
|
877 |
default: return; |
|
878 |
} |
|
879 |
||
880 |
address p = start; |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
881 |
st->print(PTR_FORMAT ": ", p2i(start)); |
1 | 882 |
while (p < end) { |
883 |
switch (unitsize) { |
|
884 |
case 1: st->print("%02x", *(u1*)p); break; |
|
885 |
case 2: st->print("%04x", *(u2*)p); break; |
|
886 |
case 4: st->print("%08x", *(u4*)p); break; |
|
887 |
case 8: st->print("%016" FORMAT64_MODIFIER "x", *(u8*)p); break; |
|
888 |
} |
|
889 |
p += unitsize; |
|
890 |
cols++; |
|
891 |
if (cols >= cols_per_line && p < end) { |
|
892 |
cols = 0; |
|
893 |
st->cr(); |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
894 |
st->print(PTR_FORMAT ": ", p2i(p)); |
1 | 895 |
} else { |
896 |
st->print(" "); |
|
897 |
} |
|
898 |
} |
|
899 |
st->cr(); |
|
900 |
} |
|
901 |
||
30125 | 902 |
void os::print_environment_variables(outputStream* st, const char** env_list) { |
1 | 903 |
if (env_list) { |
904 |
st->print_cr("Environment Variables:"); |
|
905 |
||
906 |
for (int i = 0; env_list[i] != NULL; i++) { |
|
30125 | 907 |
char *envvar = ::getenv(env_list[i]); |
908 |
if (envvar != NULL) { |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
23863
diff
changeset
|
909 |
st->print("%s", env_list[i]); |
1 | 910 |
st->print("="); |
30125 | 911 |
st->print_cr("%s", envvar); |
1 | 912 |
} |
913 |
} |
|
914 |
} |
|
915 |
} |
|
916 |
||
31356
55ee785c49c5
8085865: hs_err improvement: Printing /proc/cpuinfo makes too long hs_err files
coleenp
parents:
31347
diff
changeset
|
917 |
void os::print_cpu_info(outputStream* st, char* buf, size_t buflen) { |
1 | 918 |
// cpu |
919 |
st->print("CPU:"); |
|
920 |
st->print("total %d", os::processor_count()); |
|
921 |
// It's not safe to query number of active processors after crash |
|
40011 | 922 |
// st->print("(active %d)", os::active_processor_count()); but we can |
923 |
// print the initial number of active processors. |
|
924 |
// We access the raw value here because the assert in the accessor will |
|
925 |
// fail if the crash occurs before initialization of this value. |
|
926 |
st->print(" (initial active %d)", _initial_active_processor_count); |
|
35148 | 927 |
st->print(" %s", VM_Version::features_string()); |
1 | 928 |
st->cr(); |
31356
55ee785c49c5
8085865: hs_err improvement: Printing /proc/cpuinfo makes too long hs_err files
coleenp
parents:
31347
diff
changeset
|
929 |
pd_print_cpu_info(st, buf, buflen); |
1 | 930 |
} |
931 |
||
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
932 |
// Print a one line string summarizing the cpu, number of cores, memory, and operating system version |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
933 |
void os::print_summary_info(outputStream* st, char* buf, size_t buflen) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
934 |
st->print("Host: "); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
935 |
#ifndef PRODUCT |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
936 |
if (get_host_name(buf, buflen)) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
937 |
st->print("%s, ", buf); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
938 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
939 |
#endif // PRODUCT |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
940 |
get_summary_cpu_info(buf, buflen); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
941 |
st->print("%s, ", buf); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
942 |
size_t mem = physical_memory()/G; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
943 |
if (mem == 0) { // for low memory systems |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
944 |
mem = physical_memory()/M; |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
945 |
st->print("%d cores, " SIZE_FORMAT "M, ", processor_count(), mem); |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
946 |
} else { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
947 |
st->print("%d cores, " SIZE_FORMAT "G, ", processor_count(), mem); |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
948 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
949 |
get_summary_os_info(buf, buflen); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
950 |
st->print_raw(buf); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
951 |
st->cr(); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
952 |
} |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
953 |
|
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
31026
diff
changeset
|
954 |
void os::print_date_and_time(outputStream *st, char* buf, size_t buflen) { |
23863
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
955 |
const int secs_per_day = 86400; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
956 |
const int secs_per_hour = 3600; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
957 |
const int secs_per_min = 60; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
958 |
|
1 | 959 |
time_t tloc; |
960 |
(void)time(&tloc); |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
961 |
char* timestring = ctime(&tloc); // ctime adds newline. |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
962 |
// edit out the newline |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
963 |
char* nl = strchr(timestring, '\n'); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
964 |
if (nl != NULL) { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
965 |
*nl = '\0'; |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
966 |
} |
1 | 967 |
|
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
31026
diff
changeset
|
968 |
struct tm tz; |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
31026
diff
changeset
|
969 |
if (localtime_pd(&tloc, &tz) != NULL) { |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
31026
diff
changeset
|
970 |
::strftime(buf, buflen, "%Z", &tz); |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
971 |
st->print("Time: %s %s", timestring, buf); |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
972 |
} else { |
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
973 |
st->print("Time: %s", timestring); |
31335
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
31026
diff
changeset
|
974 |
} |
60081f497e75
8035074: hs_err improvement: Add time zone information in the hs_err file
coleenp
parents:
31026
diff
changeset
|
975 |
|
1 | 976 |
double t = os::elapsedTime(); |
977 |
// NOTE: It tends to crash after a SEGV if we want to printf("%f",...) in |
|
978 |
// Linux. Must be a bug in glibc ? Workaround is to round "t" to int |
|
979 |
// before printf. We lost some precision, but who cares? |
|
23863
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
980 |
int eltime = (int)t; // elapsed time in seconds |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
981 |
|
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
982 |
// print elapsed time in a human-readable format: |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
983 |
int eldays = eltime / secs_per_day; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
984 |
int day_secs = eldays * secs_per_day; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
985 |
int elhours = (eltime - day_secs) / secs_per_hour; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
986 |
int hour_secs = elhours * secs_per_hour; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
987 |
int elmins = (eltime - day_secs - hour_secs) / secs_per_min; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
988 |
int minute_secs = elmins * secs_per_min; |
76fc8456723d
8026334: hs_err improvement: Print elapsed time in a humanly readable format
kevinw
parents:
22876
diff
changeset
|
989 |
int elsecs = (eltime - day_secs - hour_secs - minute_secs); |
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31608
diff
changeset
|
990 |
st->print_cr(" elapsed time: %d seconds (%dd %dh %dm %ds)", eltime, eldays, elhours, elmins, elsecs); |
1 | 991 |
} |
992 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
993 |
// moved from debug.cpp (used to be find()) but still called from there |
7108 | 994 |
// The verbose parameter is only set by the debug code in one case |
995 |
void os::print_location(outputStream* st, intptr_t x, bool verbose) { |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
996 |
address addr = (address)x; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
997 |
CodeBlob* b = CodeCache::find_blob_unsafe(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
998 |
if (b != NULL) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
999 |
if (b->is_buffer_blob()) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1000 |
// the interpreter is generated into a buffer blob |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1001 |
InterpreterCodelet* i = Interpreter::codelet_containing(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1002 |
if (i != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1003 |
st->print_cr(INTPTR_FORMAT " is at code_begin+%d in an Interpreter codelet", p2i(addr), (int)(addr - i->code_begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1004 |
i->print_on(st); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1005 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1006 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1007 |
if (Interpreter::contains(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1008 |
st->print_cr(INTPTR_FORMAT " is pointing into interpreter code" |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1009 |
" (not bytecode specific)", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1010 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1011 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1012 |
// |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1013 |
if (AdapterHandlerLibrary::contains(b)) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1014 |
st->print_cr(INTPTR_FORMAT " is at code_begin+%d in an AdapterHandler", p2i(addr), (int)(addr - b->code_begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1015 |
AdapterHandlerLibrary::print_handler_on(st, b); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1016 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1017 |
// the stubroutines are generated into a buffer blob |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1018 |
StubCodeDesc* d = StubCodeDesc::desc_for(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1019 |
if (d != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1020 |
st->print_cr(INTPTR_FORMAT " is at begin+%d in a stub", p2i(addr), (int)(addr - d->begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1021 |
d->print_on(st); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1022 |
st->cr(); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1023 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1024 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1025 |
if (StubRoutines::contains(addr)) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1026 |
st->print_cr(INTPTR_FORMAT " is pointing to an (unnamed) stub routine", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1027 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1028 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1029 |
// the InlineCacheBuffer is using stubs generated into a buffer blob |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1030 |
if (InlineCacheBuffer::contains(addr)) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1031 |
st->print_cr(INTPTR_FORMAT " is pointing into InlineCacheBuffer", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1032 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1033 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1034 |
VtableStub* v = VtableStubs::stub_containing(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1035 |
if (v != NULL) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1036 |
st->print_cr(INTPTR_FORMAT " is at entry_point+%d in a vtable stub", p2i(addr), (int)(addr - v->entry_point())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1037 |
v->print_on(st); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1038 |
st->cr(); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1039 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1040 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1041 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1042 |
nmethod* nm = b->as_nmethod_or_null(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1043 |
if (nm != NULL) { |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1044 |
ResourceMark rm; |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1045 |
st->print(INTPTR_FORMAT " is at entry_point+%d in (nmethod*)" INTPTR_FORMAT, |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1046 |
p2i(addr), (int)(addr - nm->entry_point()), p2i(nm)); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1047 |
if (verbose) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1048 |
st->print(" for "); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1049 |
nm->method()->print_value_on(st); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1050 |
} |
13923
4271ff38528f
8000228: Missing call to cr() when printing entry_point in nmethod, in os::print_location
stefank
parents:
13921
diff
changeset
|
1051 |
st->cr(); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1052 |
nm->print_nmethod(verbose); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1053 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1054 |
} |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1055 |
st->print_cr(INTPTR_FORMAT " is at code_begin+%d in ", p2i(addr), (int)(addr - b->code_begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1056 |
b->print_on(st); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1057 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1058 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1059 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1060 |
if (Universe::heap()->is_in(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1061 |
HeapWord* p = Universe::heap()->block_start(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1062 |
bool print = false; |
22551 | 1063 |
// If we couldn't find it it just may mean that heap wasn't parsable |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1064 |
// See if we were just given an oop directly |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1065 |
if (p != NULL && Universe::heap()->block_is_obj(p)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1066 |
print = true; |
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46701
diff
changeset
|
1067 |
} else if (p == NULL && oopDesc::is_oop(oop(addr))) { |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1068 |
p = (HeapWord*) addr; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1069 |
print = true; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1070 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1071 |
if (print) { |
13921
cfc740741651
8000230: Change os::print_location to be more descriptive when a location is pointing into an object
stefank
parents:
13857
diff
changeset
|
1072 |
if (p == (HeapWord*) addr) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1073 |
st->print_cr(INTPTR_FORMAT " is an oop", p2i(addr)); |
13921
cfc740741651
8000230: Change os::print_location to be more descriptive when a location is pointing into an object
stefank
parents:
13857
diff
changeset
|
1074 |
} else { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1075 |
st->print_cr(INTPTR_FORMAT " is pointing into object: " INTPTR_FORMAT, p2i(addr), p2i(p)); |
13921
cfc740741651
8000230: Change os::print_location to be more descriptive when a location is pointing into an object
stefank
parents:
13857
diff
changeset
|
1076 |
} |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1077 |
oop(p)->print_on(st); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1078 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1079 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1080 |
} else { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1081 |
if (Universe::heap()->is_in_reserved(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1082 |
st->print_cr(INTPTR_FORMAT " is an unallocated location " |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1083 |
"in the heap", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1084 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1085 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1086 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1087 |
if (JNIHandles::is_global_handle((jobject) addr)) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1088 |
st->print_cr(INTPTR_FORMAT " is a global jni handle", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1089 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1090 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1091 |
if (JNIHandles::is_weak_global_handle((jobject) addr)) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1092 |
st->print_cr(INTPTR_FORMAT " is a weak global jni handle", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1093 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1094 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1095 |
#ifndef PRODUCT |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1096 |
// we don't keep the block list in product mode |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1097 |
if (JNIHandleBlock::any_contains((jobject) addr)) { |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1098 |
st->print_cr(INTPTR_FORMAT " is a local jni handle", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1099 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1100 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1101 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1102 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1103 |
for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1104 |
// Check for privilege stack |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1105 |
if (thread->privileged_stack_top() != NULL && |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1106 |
thread->privileged_stack_top()->contains(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1107 |
st->print_cr(INTPTR_FORMAT " is pointing into the privilege stack " |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1108 |
"for thread: " INTPTR_FORMAT, p2i(addr), p2i(thread)); |
7108 | 1109 |
if (verbose) thread->print_on(st); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1110 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1111 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1112 |
// If the addr is a java thread print information about that. |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1113 |
if (addr == (address)thread) { |
7108 | 1114 |
if (verbose) { |
1115 |
thread->print_on(st); |
|
1116 |
} else { |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1117 |
st->print_cr(INTPTR_FORMAT " is a thread", p2i(addr)); |
7108 | 1118 |
} |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1119 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1120 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1121 |
// If the addr is in the stack region for this thread then report that |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1122 |
// and print thread info |
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
1123 |
if (thread->on_local_stack(addr)) { |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1124 |
st->print_cr(INTPTR_FORMAT " is pointing into the stack for thread: " |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1125 |
INTPTR_FORMAT, p2i(addr), p2i(thread)); |
7108 | 1126 |
if (verbose) thread->print_on(st); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1127 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1128 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1129 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1130 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1131 |
|
24457
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1132 |
// Check if in metaspace and print types that have vptrs (only method now) |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1133 |
if (Metaspace::contains(addr)) { |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1134 |
if (Method::has_method_vptr((const void*)addr)) { |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1135 |
((Method*)addr)->print_value_on(st); |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1136 |
st->cr(); |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1137 |
} else { |
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1138 |
// Use addr->print() from the debugger instead (not here) |
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1139 |
st->print_cr(INTPTR_FORMAT " is pointing into metadata", p2i(addr)); |
24457
0e20b36df5c4
8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents:
24424
diff
changeset
|
1140 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1141 |
return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1142 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1143 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1144 |
// Try an OS specific find |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1145 |
if (os::find(addr, st)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1146 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1147 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1148 |
|
33148
68fa8b6c4340
8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
33105
diff
changeset
|
1149 |
st->print_cr(INTPTR_FORMAT " is an unknown value", p2i(addr)); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1150 |
} |
1 | 1151 |
|
1152 |
// Looks like all platforms except IA64 can use the same function to check |
|
1153 |
// if C stack is walkable beyond current frame. The check for fp() is not |
|
1154 |
// necessary on Sparc, but it's harmless. |
|
1155 |
bool os::is_first_C_frame(frame* fr) { |
|
22819
f88b9c394e42
8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
goetz
parents:
18086
diff
changeset
|
1156 |
#if (defined(IA64) && !defined(AIX)) && !defined(_WIN32) |
15475 | 1157 |
// On IA64 we have to check if the callers bsp is still valid |
1158 |
// (i.e. within the register stack bounds). |
|
1159 |
// Notice: this only works for threads created by the VM and only if |
|
1160 |
// we walk the current stack!!! If we want to be able to walk |
|
1161 |
// arbitrary other threads, we'll have to somehow store the thread |
|
1162 |
// object in the frame. |
|
1163 |
Thread *thread = Thread::current(); |
|
1164 |
if ((address)fr->fp() <= |
|
1165 |
thread->register_stack_base() HPUX_ONLY(+ 0x0) LINUX_ONLY(+ 0x50)) { |
|
1166 |
// This check is a little hacky, because on Linux the first C |
|
1167 |
// frame's ('start_thread') register stack frame starts at |
|
1168 |
// "register_stack_base + 0x48" while on HPUX, the first C frame's |
|
1169 |
// ('__pthread_bound_body') register stack frame seems to really |
|
1170 |
// start at "register_stack_base". |
|
1171 |
return true; |
|
1172 |
} else { |
|
1173 |
return false; |
|
1174 |
} |
|
1175 |
#elif defined(IA64) && defined(_WIN32) |
|
1 | 1176 |
return true; |
15475 | 1177 |
#else |
1 | 1178 |
// Load up sp, fp, sender sp and sender fp, check for reasonable values. |
1179 |
// Check usp first, because if that's bad the other accessors may fault |
|
1180 |
// on some architectures. Ditto ufp second, etc. |
|
1181 |
uintptr_t fp_align_mask = (uintptr_t)(sizeof(address)-1); |
|
1182 |
// sp on amd can be 32 bit aligned. |
|
1183 |
uintptr_t sp_align_mask = (uintptr_t)(sizeof(int)-1); |
|
1184 |
||
1185 |
uintptr_t usp = (uintptr_t)fr->sp(); |
|
1186 |
if ((usp & sp_align_mask) != 0) return true; |
|
1187 |
||
1188 |
uintptr_t ufp = (uintptr_t)fr->fp(); |
|
1189 |
if ((ufp & fp_align_mask) != 0) return true; |
|
1190 |
||
1191 |
uintptr_t old_sp = (uintptr_t)fr->sender_sp(); |
|
1192 |
if ((old_sp & sp_align_mask) != 0) return true; |
|
1193 |
if (old_sp == 0 || old_sp == (uintptr_t)-1) return true; |
|
1194 |
||
1195 |
uintptr_t old_fp = (uintptr_t)fr->link(); |
|
1196 |
if ((old_fp & fp_align_mask) != 0) return true; |
|
1197 |
if (old_fp == 0 || old_fp == (uintptr_t)-1 || old_fp == ufp) return true; |
|
1198 |
||
1199 |
// stack grows downwards; if old_fp is below current fp or if the stack |
|
1200 |
// frame is too large, either the stack is corrupted or fp is not saved |
|
1201 |
// on stack (i.e. on x86, ebp may be used as general register). The stack |
|
1202 |
// is not walkable beyond current frame. |
|
1203 |
if (old_fp < ufp) return true; |
|
1204 |
if (old_fp - ufp > 64 * K) return true; |
|
1205 |
||
1206 |
return false; |
|
15475 | 1207 |
#endif |
1 | 1208 |
} |
1209 |
||
1210 |
||
1211 |
// Set up the boot classpath. |
|
1212 |
||
1213 |
char* os::format_boot_path(const char* format_string, |
|
1214 |
const char* home, |
|
1215 |
int home_len, |
|
1216 |
char fileSep, |
|
1217 |
char pathSep) { |
|
1218 |
assert((fileSep == '/' && pathSep == ':') || |
|
22775 | 1219 |
(fileSep == '\\' && pathSep == ';'), "unexpected separator chars"); |
1 | 1220 |
|
1221 |
// Scan the format string to determine the length of the actual |
|
1222 |
// boot classpath, and handle platform dependencies as well. |
|
1223 |
int formatted_path_len = 0; |
|
1224 |
const char* p; |
|
1225 |
for (p = format_string; *p != 0; ++p) { |
|
1226 |
if (*p == '%') formatted_path_len += home_len - 1; |
|
1227 |
++formatted_path_len; |
|
1228 |
} |
|
1229 |
||
13195 | 1230 |
char* formatted_path = NEW_C_HEAP_ARRAY(char, formatted_path_len + 1, mtInternal); |
1 | 1231 |
if (formatted_path == NULL) { |
1232 |
return NULL; |
|
1233 |
} |
|
1234 |
||
1235 |
// Create boot classpath from format, substituting separator chars and |
|
1236 |
// java home directory. |
|
1237 |
char* q = formatted_path; |
|
1238 |
for (p = format_string; *p != 0; ++p) { |
|
1239 |
switch (*p) { |
|
1240 |
case '%': |
|
1241 |
strcpy(q, home); |
|
1242 |
q += home_len; |
|
1243 |
break; |
|
1244 |
case '/': |
|
1245 |
*q++ = fileSep; |
|
1246 |
break; |
|
1247 |
case ':': |
|
1248 |
*q++ = pathSep; |
|
1249 |
break; |
|
1250 |
default: |
|
1251 |
*q++ = *p; |
|
1252 |
} |
|
1253 |
} |
|
1254 |
*q = '\0'; |
|
1255 |
||
1256 |
assert((q - formatted_path) == formatted_path_len, "formatted_path size botched"); |
|
1257 |
return formatted_path; |
|
1258 |
} |
|
1259 |
||
1260 |
bool os::set_boot_path(char fileSep, char pathSep) { |
|
25856 | 1261 |
const char* home = Arguments::get_java_home(); |
1262 |
int home_len = (int)strlen(home); |
|
1263 |
||
27562 | 1264 |
struct stat st; |
1265 |
||
36508 | 1266 |
// modular image if "modules" jimage exists |
1267 |
char* jimage = format_boot_path("%/lib/" MODULES_IMAGE_NAME, home, home_len, fileSep, pathSep); |
|
27562 | 1268 |
if (jimage == NULL) return false; |
1269 |
bool has_jimage = (os::stat(jimage, &st) == 0); |
|
1270 |
if (has_jimage) { |
|
40013 | 1271 |
Arguments::set_sysclasspath(jimage, true); |
32198
be9ac7dad761
8132892: Memory must be freed after calling Arguments::set_sysclasspath function
ddmitriev
parents:
31963
diff
changeset
|
1272 |
FREE_C_HEAP_ARRAY(char, jimage); |
27562 | 1273 |
return true; |
1274 |
} |
|
27926 | 1275 |
FREE_C_HEAP_ARRAY(char, jimage); |
1 | 1276 |
|
29076
4a5f7c1e6ed7
8068687: Remove meta-index support and cleanup hotspot code for rt.jar etc in non-modular jdk image
hseigel
parents:
28636
diff
changeset
|
1277 |
// check if developer build with exploded modules |
43451
7706e5ac9f32
8170827: Correct errant "java.base" string to macro
rprotacio
parents:
42066
diff
changeset
|
1278 |
char* base_classes = format_boot_path("%/modules/" JAVA_BASE_NAME, home, home_len, fileSep, pathSep); |
36508 | 1279 |
if (base_classes == NULL) return false; |
1280 |
if (os::stat(base_classes, &st) == 0) { |
|
40013 | 1281 |
Arguments::set_sysclasspath(base_classes, false); |
36508 | 1282 |
FREE_C_HEAP_ARRAY(char, base_classes); |
1283 |
return true; |
|
29076
4a5f7c1e6ed7
8068687: Remove meta-index support and cleanup hotspot code for rt.jar etc in non-modular jdk image
hseigel
parents:
28636
diff
changeset
|
1284 |
} |
36508 | 1285 |
FREE_C_HEAP_ARRAY(char, base_classes); |
25856 | 1286 |
|
36508 | 1287 |
return false; |
1 | 1288 |
} |
1289 |
||
2358 | 1290 |
/* |
1291 |
* Splits a path, based on its separator, the number of |
|
1292 |
* elements is returned back in n. |
|
1293 |
* It is the callers responsibility to: |
|
1294 |
* a> check the value of n, and n may be 0. |
|
1295 |
* b> ignore any empty path elements |
|
1296 |
* c> free up the data. |
|
1297 |
*/ |
|
1298 |
char** os::split_path(const char* path, int* n) { |
|
1299 |
*n = 0; |
|
1300 |
if (path == NULL || strlen(path) == 0) { |
|
1301 |
return NULL; |
|
1302 |
} |
|
1303 |
const char psepchar = *os::path_separator(); |
|
13195 | 1304 |
char* inpath = (char*)NEW_C_HEAP_ARRAY(char, strlen(path) + 1, mtInternal); |
2358 | 1305 |
if (inpath == NULL) { |
1306 |
return NULL; |
|
1307 |
} |
|
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
1308 |
strcpy(inpath, path); |
2358 | 1309 |
int count = 1; |
1310 |
char* p = strchr(inpath, psepchar); |
|
1311 |
// Get a count of elements to allocate memory |
|
1312 |
while (p != NULL) { |
|
1313 |
count++; |
|
1314 |
p++; |
|
1315 |
p = strchr(p, psepchar); |
|
1316 |
} |
|
13195 | 1317 |
char** opath = (char**) NEW_C_HEAP_ARRAY(char*, count, mtInternal); |
2358 | 1318 |
if (opath == NULL) { |
1319 |
return NULL; |
|
1320 |
} |
|
1321 |
||
1322 |
// do the actual splitting |
|
1323 |
p = inpath; |
|
1324 |
for (int i = 0 ; i < count ; i++) { |
|
1325 |
size_t len = strcspn(p, os::path_separator()); |
|
1326 |
if (len > JVM_MAXPATHLEN) { |
|
1327 |
return NULL; |
|
1328 |
} |
|
1329 |
// allocate the string and add terminator storage |
|
13195 | 1330 |
char* s = (char*)NEW_C_HEAP_ARRAY(char, len + 1, mtInternal); |
2358 | 1331 |
if (s == NULL) { |
1332 |
return NULL; |
|
1333 |
} |
|
1334 |
strncpy(s, p, len); |
|
1335 |
s[len] = '\0'; |
|
1336 |
opath[i] = s; |
|
1337 |
p += len + 1; |
|
1338 |
} |
|
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27469
diff
changeset
|
1339 |
FREE_C_HEAP_ARRAY(char, inpath); |
2358 | 1340 |
*n = count; |
1341 |
return opath; |
|
1342 |
} |
|
1343 |
||
1 | 1344 |
void os::set_memory_serialize_page(address page) { |
1345 |
int count = log2_intptr(sizeof(class JavaThread)) - log2_intptr(64); |
|
1346 |
_mem_serialize_page = (volatile int32_t *)page; |
|
1347 |
// We initialize the serialization page shift count here |
|
1348 |
// We assume a cache line size of 64 bytes |
|
37251
9fc139ad74b5
8152358: code and comment cleanups found during the hunt for 8077392
dcubed
parents:
37248
diff
changeset
|
1349 |
assert(SerializePageShiftCount == count, "JavaThread size changed; " |
9fc139ad74b5
8152358: code and comment cleanups found during the hunt for 8077392
dcubed
parents:
37248
diff
changeset
|
1350 |
"SerializePageShiftCount constant should be %d", count); |
1 | 1351 |
set_serialize_page_mask((uintptr_t)(vm_page_size() - sizeof(int32_t))); |
1352 |
} |
|
1353 |
||
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1354 |
static volatile intptr_t SerializePageLock = 0; |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1355 |
|
1 | 1356 |
// This method is called from signal handler when SIGSEGV occurs while the current |
1357 |
// thread tries to store to the "read-only" memory serialize page during state |
|
1358 |
// transition. |
|
1359 |
void os::block_on_serialize_page_trap() { |
|
33763
cec2333f839c
8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
33604
diff
changeset
|
1360 |
log_debug(safepoint)("Block until the serialize page permission restored"); |
cec2333f839c
8140348: Convert TraceSafepoint to Unified Logging
rprotacio
parents:
33604
diff
changeset
|
1361 |
|
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1362 |
// When VMThread is holding the SerializePageLock during modifying the |
1 | 1363 |
// access permission of the memory serialize page, the following call |
1364 |
// will block until the permission of that page is restored to rw. |
|
1365 |
// Generally, it is unsafe to manipulate locks in signal handlers, but in |
|
1366 |
// this case, it's OK as the signal is synchronous and we know precisely when |
|
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1367 |
// it can occur. |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1368 |
Thread::muxAcquire(&SerializePageLock, "set_memory_serialize_page"); |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1369 |
Thread::muxRelease(&SerializePageLock); |
1 | 1370 |
} |
1371 |
||
1372 |
// Serialize all thread state variables |
|
1373 |
void os::serialize_thread_states() { |
|
1374 |
// On some platforms such as Solaris & Linux, the time duration of the page |
|
1375 |
// permission restoration is observed to be much longer than expected due to |
|
1376 |
// scheduler starvation problem etc. To avoid the long synchronization |
|
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1377 |
// time and expensive page trap spinning, 'SerializePageLock' is used to block |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1378 |
// the mutator thread if such case is encountered. See bug 6546278 for details. |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1379 |
Thread::muxAcquire(&SerializePageLock, "serialize_thread_states"); |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
670
diff
changeset
|
1380 |
os::protect_memory((char *)os::get_memory_serialize_page(), |
1664
fc9ed50498fb
6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents:
950
diff
changeset
|
1381 |
os::vm_page_size(), MEM_PROT_READ); |
fc9ed50498fb
6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents:
950
diff
changeset
|
1382 |
os::protect_memory((char *)os::get_memory_serialize_page(), |
fc9ed50498fb
6727377: VM stack guard pages on Windows should PAGE_READWRITE not PAGE_EXECUTE_READWRITE
coleenp
parents:
950
diff
changeset
|
1383 |
os::vm_page_size(), MEM_PROT_RW); |
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1384 |
Thread::muxRelease(&SerializePageLock); |
1 | 1385 |
} |
1386 |
||
1387 |
// Returns true if the current stack pointer is above the stack shadow |
|
1388 |
// pages, false otherwise. |
|
39390
edf6a424a8b7
8159335: Fix problems with stack overflow handling.
goetz
parents:
38734
diff
changeset
|
1389 |
bool os::stack_shadow_pages_available(Thread *thread, const methodHandle& method, address sp) { |
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
1390 |
if (!thread->is_Java_thread()) return false; |
1 | 1391 |
// Check if we have StackShadowPages above the yellow zone. This parameter |
2131 | 1392 |
// is dependent on the depth of the maximum VM call stack possible from |
1 | 1393 |
// the handler for stack overflow. 'instanceof' in the stack overflow |
1394 |
// handler or a println uses at least 8k stack of VM and native code |
|
1395 |
// respectively. |
|
1396 |
const int framesize_in_bytes = |
|
1397 |
Interpreter::size_top_interpreter_activation(method()) * wordSize; |
|
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
1398 |
|
38734
69ced2325f58
8156922: [ppc] Implement template interpreter stack overflow checks as on x86/sparc.
goetz
parents:
37462
diff
changeset
|
1399 |
address limit = ((JavaThread*)thread)->stack_end() + |
69ced2325f58
8156922: [ppc] Implement template interpreter stack overflow checks as on x86/sparc.
goetz
parents:
37462
diff
changeset
|
1400 |
(JavaThread::stack_guard_zone_size() + JavaThread::stack_shadow_zone_size()); |
35201
996db89f378e
8139864: Improve handling of stack protection zones.
goetz
parents:
35071
diff
changeset
|
1401 |
|
38734
69ced2325f58
8156922: [ppc] Implement template interpreter stack overflow checks as on x86/sparc.
goetz
parents:
37462
diff
changeset
|
1402 |
return sp > (limit + framesize_in_bytes); |
1 | 1403 |
} |
1404 |
||
28631 | 1405 |
size_t os::page_size_for_region(size_t region_size, size_t min_pages, bool must_be_aligned) { |
1 | 1406 |
assert(min_pages > 0, "sanity"); |
1407 |
if (UseLargePages) { |
|
26700
8107d0778244
8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents:
26561
diff
changeset
|
1408 |
const size_t max_page_size = region_size / min_pages; |
1 | 1409 |
|
26700
8107d0778244
8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents:
26561
diff
changeset
|
1410 |
for (size_t i = 0; _page_sizes[i] != 0; ++i) { |
8107d0778244
8049864: TestParallelHeapSizeFlags fails with unexpected heap size
ehelin
parents:
26561
diff
changeset
|
1411 |
const size_t page_size = _page_sizes[i]; |
28631 | 1412 |
if (page_size <= max_page_size) { |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
46587
diff
changeset
|
1413 |
if (!must_be_aligned || is_aligned(region_size, page_size)) { |
28631 | 1414 |
return page_size; |
1415 |
} |
|
1 | 1416 |
} |
1417 |
} |
|
1418 |
} |
|
1419 |
||
1420 |
return vm_page_size(); |
|
1421 |
} |
|
1422 |
||
28631 | 1423 |
size_t os::page_size_for_region_aligned(size_t region_size, size_t min_pages) { |
1424 |
return page_size_for_region(region_size, min_pages, true); |
|
1425 |
} |
|
1426 |
||
1427 |
size_t os::page_size_for_region_unaligned(size_t region_size, size_t min_pages) { |
|
1428 |
return page_size_for_region(region_size, min_pages, false); |
|
1429 |
} |
|
1430 |
||
37113 | 1431 |
static const char* errno_to_string (int e, bool short_text) { |
1432 |
#define ALL_SHARED_ENUMS(X) \ |
|
1433 |
X(E2BIG, "Argument list too long") \ |
|
1434 |
X(EACCES, "Permission denied") \ |
|
1435 |
X(EADDRINUSE, "Address in use") \ |
|
1436 |
X(EADDRNOTAVAIL, "Address not available") \ |
|
1437 |
X(EAFNOSUPPORT, "Address family not supported") \ |
|
1438 |
X(EAGAIN, "Resource unavailable, try again") \ |
|
1439 |
X(EALREADY, "Connection already in progress") \ |
|
1440 |
X(EBADF, "Bad file descriptor") \ |
|
1441 |
X(EBADMSG, "Bad message") \ |
|
1442 |
X(EBUSY, "Device or resource busy") \ |
|
1443 |
X(ECANCELED, "Operation canceled") \ |
|
1444 |
X(ECHILD, "No child processes") \ |
|
1445 |
X(ECONNABORTED, "Connection aborted") \ |
|
1446 |
X(ECONNREFUSED, "Connection refused") \ |
|
1447 |
X(ECONNRESET, "Connection reset") \ |
|
1448 |
X(EDEADLK, "Resource deadlock would occur") \ |
|
1449 |
X(EDESTADDRREQ, "Destination address required") \ |
|
1450 |
X(EDOM, "Mathematics argument out of domain of function") \ |
|
1451 |
X(EEXIST, "File exists") \ |
|
1452 |
X(EFAULT, "Bad address") \ |
|
1453 |
X(EFBIG, "File too large") \ |
|
1454 |
X(EHOSTUNREACH, "Host is unreachable") \ |
|
1455 |
X(EIDRM, "Identifier removed") \ |
|
1456 |
X(EILSEQ, "Illegal byte sequence") \ |
|
1457 |
X(EINPROGRESS, "Operation in progress") \ |
|
1458 |
X(EINTR, "Interrupted function") \ |
|
1459 |
X(EINVAL, "Invalid argument") \ |
|
1460 |
X(EIO, "I/O error") \ |
|
1461 |
X(EISCONN, "Socket is connected") \ |
|
1462 |
X(EISDIR, "Is a directory") \ |
|
1463 |
X(ELOOP, "Too many levels of symbolic links") \ |
|
1464 |
X(EMFILE, "Too many open files") \ |
|
1465 |
X(EMLINK, "Too many links") \ |
|
1466 |
X(EMSGSIZE, "Message too large") \ |
|
1467 |
X(ENAMETOOLONG, "Filename too long") \ |
|
1468 |
X(ENETDOWN, "Network is down") \ |
|
1469 |
X(ENETRESET, "Connection aborted by network") \ |
|
1470 |
X(ENETUNREACH, "Network unreachable") \ |
|
1471 |
X(ENFILE, "Too many files open in system") \ |
|
1472 |
X(ENOBUFS, "No buffer space available") \ |
|
1473 |
X(ENODATA, "No message is available on the STREAM head read queue") \ |
|
1474 |
X(ENODEV, "No such device") \ |
|
1475 |
X(ENOENT, "No such file or directory") \ |
|
1476 |
X(ENOEXEC, "Executable file format error") \ |
|
1477 |
X(ENOLCK, "No locks available") \ |
|
1478 |
X(ENOLINK, "Reserved") \ |
|
1479 |
X(ENOMEM, "Not enough space") \ |
|
1480 |
X(ENOMSG, "No message of the desired type") \ |
|
1481 |
X(ENOPROTOOPT, "Protocol not available") \ |
|
1482 |
X(ENOSPC, "No space left on device") \ |
|
1483 |
X(ENOSR, "No STREAM resources") \ |
|
1484 |
X(ENOSTR, "Not a STREAM") \ |
|
1485 |
X(ENOSYS, "Function not supported") \ |
|
1486 |
X(ENOTCONN, "The socket is not connected") \ |
|
1487 |
X(ENOTDIR, "Not a directory") \ |
|
1488 |
X(ENOTEMPTY, "Directory not empty") \ |
|
1489 |
X(ENOTSOCK, "Not a socket") \ |
|
1490 |
X(ENOTSUP, "Not supported") \ |
|
1491 |
X(ENOTTY, "Inappropriate I/O control operation") \ |
|
1492 |
X(ENXIO, "No such device or address") \ |
|
1493 |
X(EOPNOTSUPP, "Operation not supported on socket") \ |
|
1494 |
X(EOVERFLOW, "Value too large to be stored in data type") \ |
|
1495 |
X(EPERM, "Operation not permitted") \ |
|
1496 |
X(EPIPE, "Broken pipe") \ |
|
1497 |
X(EPROTO, "Protocol error") \ |
|
1498 |
X(EPROTONOSUPPORT, "Protocol not supported") \ |
|
1499 |
X(EPROTOTYPE, "Protocol wrong type for socket") \ |
|
1500 |
X(ERANGE, "Result too large") \ |
|
1501 |
X(EROFS, "Read-only file system") \ |
|
1502 |
X(ESPIPE, "Invalid seek") \ |
|
1503 |
X(ESRCH, "No such process") \ |
|
1504 |
X(ETIME, "Stream ioctl() timeout") \ |
|
1505 |
X(ETIMEDOUT, "Connection timed out") \ |
|
1506 |
X(ETXTBSY, "Text file busy") \ |
|
1507 |
X(EWOULDBLOCK, "Operation would block") \ |
|
1508 |
X(EXDEV, "Cross-device link") |
|
1509 |
||
1510 |
#define DEFINE_ENTRY(e, text) { e, #e, text }, |
|
1511 |
||
1512 |
static const struct { |
|
1513 |
int v; |
|
1514 |
const char* short_text; |
|
1515 |
const char* long_text; |
|
1516 |
} table [] = { |
|
1517 |
||
1518 |
ALL_SHARED_ENUMS(DEFINE_ENTRY) |
|
1519 |
||
1520 |
// The following enums are not defined on all platforms. |
|
1521 |
#ifdef ESTALE |
|
1522 |
DEFINE_ENTRY(ESTALE, "Reserved") |
|
1523 |
#endif |
|
1524 |
#ifdef EDQUOT |
|
1525 |
DEFINE_ENTRY(EDQUOT, "Reserved") |
|
1526 |
#endif |
|
1527 |
#ifdef EMULTIHOP |
|
1528 |
DEFINE_ENTRY(EMULTIHOP, "Reserved") |
|
1529 |
#endif |
|
1530 |
||
1531 |
// End marker. |
|
1532 |
{ -1, "Unknown errno", "Unknown error" } |
|
1533 |
||
1534 |
}; |
|
1535 |
||
1536 |
#undef DEFINE_ENTRY |
|
1537 |
#undef ALL_FLAGS |
|
1538 |
||
1539 |
int i = 0; |
|
1540 |
while (table[i].v != -1 && table[i].v != e) { |
|
1541 |
i ++; |
|
1542 |
} |
|
1543 |
||
1544 |
return short_text ? table[i].short_text : table[i].long_text; |
|
1545 |
||
1546 |
} |
|
1547 |
||
1548 |
const char* os::strerror(int e) { |
|
1549 |
return errno_to_string(e, false); |
|
1550 |
} |
|
1551 |
||
1552 |
const char* os::errno_name(int e) { |
|
1553 |
return errno_to_string(e, true); |
|
1554 |
} |
|
1555 |
||
37462 | 1556 |
void os::trace_page_sizes(const char* str, const size_t* page_sizes, int count) { |
1557 |
LogTarget(Info, pagesize) log; |
|
1558 |
if (log.is_enabled()) { |
|
46701
f559541c0daa
8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents:
46644
diff
changeset
|
1559 |
LogStream out(log); |
37462 | 1560 |
|
1561 |
out.print("%s: ", str); |
|
10272 | 1562 |
for (int i = 0; i < count; ++i) { |
37462 | 1563 |
out.print(" " SIZE_FORMAT, page_sizes[i]); |
10272 | 1564 |
} |
37462 | 1565 |
out.cr(); |
10272 | 1566 |
} |
1567 |
} |
|
1568 |
||
37462 | 1569 |
#define trace_page_size_params(size) byte_size_in_exact_unit(size), exact_unit_for_byte_size(size) |
1570 |
||
1571 |
void os::trace_page_sizes(const char* str, |
|
1572 |
const size_t region_min_size, |
|
1573 |
const size_t region_max_size, |
|
1574 |
const size_t page_size, |
|
1575 |
const char* base, |
|
1576 |
const size_t size) { |
|
1577 |
||
1578 |
log_info(pagesize)("%s: " |
|
1579 |
" min=" SIZE_FORMAT "%s" |
|
1580 |
" max=" SIZE_FORMAT "%s" |
|
1581 |
" base=" PTR_FORMAT |
|
1582 |
" page_size=" SIZE_FORMAT "%s" |
|
1583 |
" size=" SIZE_FORMAT "%s", |
|
1584 |
str, |
|
1585 |
trace_page_size_params(region_min_size), |
|
1586 |
trace_page_size_params(region_max_size), |
|
1587 |
p2i(base), |
|
1588 |
trace_page_size_params(page_size), |
|
1589 |
trace_page_size_params(size)); |
|
1 | 1590 |
} |
37462 | 1591 |
|
1592 |
void os::trace_page_sizes_for_requested_size(const char* str, |
|
1593 |
const size_t requested_size, |
|
1594 |
const size_t page_size, |
|
1595 |
const size_t alignment, |
|
1596 |
const char* base, |
|
1597 |
const size_t size) { |
|
1598 |
||
1599 |
log_info(pagesize)("%s:" |
|
1600 |
" req_size=" SIZE_FORMAT "%s" |
|
1601 |
" base=" PTR_FORMAT |
|
1602 |
" page_size=" SIZE_FORMAT "%s" |
|
1603 |
" alignment=" SIZE_FORMAT "%s" |
|
1604 |
" size=" SIZE_FORMAT "%s", |
|
1605 |
str, |
|
1606 |
trace_page_size_params(requested_size), |
|
1607 |
p2i(base), |
|
1608 |
trace_page_size_params(page_size), |
|
1609 |
trace_page_size_params(alignment), |
|
1610 |
trace_page_size_params(size)); |
|
1611 |
} |
|
1612 |
||
1 | 1613 |
|
1614 |
// This is the working definition of a server class machine: |
|
1615 |
// >= 2 physical CPU's and >=2GB of memory, with some fuzz |
|
1616 |
// because the graphics memory (?) sometimes masks physical memory. |
|
1617 |
// If you want to change the definition of a server class machine |
|
22551 | 1618 |
// on some OS or platform, e.g., >=4GB on Windows platforms, |
1 | 1619 |
// then you'll have to parameterize this method based on that state, |
1620 |
// as was done for logical processors here, or replicate and |
|
1621 |
// specialize this method for each platform. (Or fix os to have |
|
1622 |
// some inheritance structure and use subclassing. Sigh.) |
|
1623 |
// If you want some platform to always or never behave as a server |
|
1624 |
// class machine, change the setting of AlwaysActAsServerClassMachine |
|
1625 |
// and NeverActAsServerClassMachine in globals*.hpp. |
|
1626 |
bool os::is_server_class_machine() { |
|
1627 |
// First check for the early returns |
|
1628 |
if (NeverActAsServerClassMachine) { |
|
1629 |
return false; |
|
1630 |
} |
|
1631 |
if (AlwaysActAsServerClassMachine) { |
|
1632 |
return true; |
|
1633 |
} |
|
1634 |
// Then actually look at the machine |
|
1635 |
bool result = false; |
|
1636 |
const unsigned int server_processors = 2; |
|
1637 |
const julong server_memory = 2UL * G; |
|
1638 |
// We seem not to get our full complement of memory. |
|
1639 |
// We allow some part (1/8?) of the memory to be "missing", |
|
1640 |
// based on the sizes of DIMMs, and maybe graphics cards. |
|
1641 |
const julong missing_memory = 256UL * M; |
|
1642 |
||
1643 |
/* Is this a server class machine? */ |
|
1644 |
if ((os::active_processor_count() >= (int)server_processors) && |
|
1645 |
(os::physical_memory() >= (server_memory - missing_memory))) { |
|
1646 |
const unsigned int logical_processors = |
|
1647 |
VM_Version::logical_processors_per_package(); |
|
1648 |
if (logical_processors > 1) { |
|
1649 |
const unsigned int physical_packages = |
|
1650 |
os::active_processor_count() / logical_processors; |
|
35949
02676622ca27
8149184: os::is_server_class_machine() could return incorrect result if a host's cpu have a few logical cores
kzhaldyb
parents:
35232
diff
changeset
|
1651 |
if (physical_packages >= server_processors) { |
1 | 1652 |
result = true; |
1653 |
} |
|
1654 |
} else { |
|
1655 |
result = true; |
|
1656 |
} |
|
1657 |
} |
|
1658 |
return result; |
|
1659 |
} |
|
9125
3b9a527cd492
7017193: Small memory leak in get_stack_bounds os::create_stack_guard_pages
dsamersoff
parents:
8736
diff
changeset
|
1660 |
|
40011 | 1661 |
void os::initialize_initial_active_processor_count() { |
1662 |
assert(_initial_active_processor_count == 0, "Initial active processor count already set."); |
|
1663 |
_initial_active_processor_count = active_processor_count(); |
|
1664 |
log_debug(os)("Initial active processor count set to %d" , _initial_active_processor_count); |
|
1665 |
} |
|
1666 |
||
18025 | 1667 |
void os::SuspendedThreadTask::run() { |
1668 |
assert(Threads_lock->owned_by_self() || (_thread == VMThread::vm_thread()), "must have threads lock to call this"); |
|
1669 |
internal_do_task(); |
|
1670 |
_done = true; |
|
1671 |
} |
|
1672 |
||
13195 | 1673 |
bool os::create_stack_guard_pages(char* addr, size_t bytes) { |
1674 |
return os::pd_create_stack_guard_pages(addr, bytes); |
|
1675 |
} |
|
1676 |
||
1677 |
char* os::reserve_memory(size_t bytes, char* addr, size_t alignment_hint) { |
|
1678 |
char* result = pd_reserve_memory(bytes, addr, alignment_hint); |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13923
diff
changeset
|
1679 |
if (result != NULL) { |
25946 | 1680 |
MemTracker::record_virtual_memory_reserve((address)result, bytes, CALLER_PC); |
13195 | 1681 |
} |
1682 |
||
1683 |
return result; |
|
1684 |
} |
|
17302
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1685 |
|
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1686 |
char* os::reserve_memory(size_t bytes, char* addr, size_t alignment_hint, |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1687 |
MEMFLAGS flags) { |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1688 |
char* result = pd_reserve_memory(bytes, addr, alignment_hint); |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1689 |
if (result != NULL) { |
25946 | 1690 |
MemTracker::record_virtual_memory_reserve((address)result, bytes, CALLER_PC); |
17302
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1691 |
MemTracker::record_virtual_memory_type((address)result, flags); |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1692 |
} |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1693 |
|
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1694 |
return result; |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1695 |
} |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1696 |
|
13195 | 1697 |
char* os::attempt_reserve_memory_at(size_t bytes, char* addr) { |
1698 |
char* result = pd_attempt_reserve_memory_at(bytes, addr); |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13923
diff
changeset
|
1699 |
if (result != NULL) { |
25946 | 1700 |
MemTracker::record_virtual_memory_reserve((address)result, bytes, CALLER_PC); |
13195 | 1701 |
} |
1702 |
return result; |
|
1703 |
} |
|
1704 |
||
1705 |
void os::split_reserved_memory(char *base, size_t size, |
|
1706 |
size_t split, bool realloc) { |
|
1707 |
pd_split_reserved_memory(base, size, split, realloc); |
|
1708 |
} |
|
1709 |
||
1710 |
bool os::commit_memory(char* addr, size_t bytes, bool executable) { |
|
1711 |
bool res = pd_commit_memory(addr, bytes, executable); |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13923
diff
changeset
|
1712 |
if (res) { |
13195 | 1713 |
MemTracker::record_virtual_memory_commit((address)addr, bytes, CALLER_PC); |
1714 |
} |
|
1715 |
return res; |
|
1716 |
} |
|
1717 |
||
1718 |
bool os::commit_memory(char* addr, size_t size, size_t alignment_hint, |
|
1719 |
bool executable) { |
|
1720 |
bool res = os::pd_commit_memory(addr, size, alignment_hint, executable); |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13923
diff
changeset
|
1721 |
if (res) { |
13195 | 1722 |
MemTracker::record_virtual_memory_commit((address)addr, size, CALLER_PC); |
1723 |
} |
|
1724 |
return res; |
|
1725 |
} |
|
1726 |
||
18069
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1727 |
void os::commit_memory_or_exit(char* addr, size_t bytes, bool executable, |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1728 |
const char* mesg) { |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1729 |
pd_commit_memory_or_exit(addr, bytes, executable, mesg); |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1730 |
MemTracker::record_virtual_memory_commit((address)addr, bytes, CALLER_PC); |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1731 |
} |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1732 |
|
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1733 |
void os::commit_memory_or_exit(char* addr, size_t size, size_t alignment_hint, |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1734 |
bool executable, const char* mesg) { |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1735 |
os::pd_commit_memory_or_exit(addr, size, alignment_hint, executable, mesg); |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1736 |
MemTracker::record_virtual_memory_commit((address)addr, size, CALLER_PC); |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1737 |
} |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1738 |
|
13195 | 1739 |
bool os::uncommit_memory(char* addr, size_t bytes) { |
25946 | 1740 |
bool res; |
1741 |
if (MemTracker::tracking_level() > NMT_minimal) { |
|
1742 |
Tracker tkr = MemTracker::get_virtual_memory_uncommit_tracker(); |
|
1743 |
res = pd_uncommit_memory(addr, bytes); |
|
1744 |
if (res) { |
|
1745 |
tkr.record((address)addr, bytes); |
|
1746 |
} |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1747 |
} else { |
25946 | 1748 |
res = pd_uncommit_memory(addr, bytes); |
13195 | 1749 |
} |
1750 |
return res; |
|
1751 |
} |
|
1752 |
||
1753 |
bool os::release_memory(char* addr, size_t bytes) { |
|
25946 | 1754 |
bool res; |
1755 |
if (MemTracker::tracking_level() > NMT_minimal) { |
|
1756 |
Tracker tkr = MemTracker::get_virtual_memory_release_tracker(); |
|
1757 |
res = pd_release_memory(addr, bytes); |
|
1758 |
if (res) { |
|
1759 |
tkr.record((address)addr, bytes); |
|
1760 |
} |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1761 |
} else { |
25946 | 1762 |
res = pd_release_memory(addr, bytes); |
13195 | 1763 |
} |
1764 |
return res; |
|
1765 |
} |
|
1766 |
||
41178 | 1767 |
void os::pretouch_memory(void* start, void* end, size_t page_size) { |
1768 |
for (volatile char *p = (char*)start; p < (char*)end; p += page_size) { |
|
28208 | 1769 |
*p = 0; |
1770 |
} |
|
1771 |
} |
|
13195 | 1772 |
|
1773 |
char* os::map_memory(int fd, const char* file_name, size_t file_offset, |
|
1774 |
char *addr, size_t bytes, bool read_only, |
|
1775 |
bool allow_exec) { |
|
1776 |
char* result = pd_map_memory(fd, file_name, file_offset, addr, bytes, read_only, allow_exec); |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13923
diff
changeset
|
1777 |
if (result != NULL) { |
25946 | 1778 |
MemTracker::record_virtual_memory_reserve_and_commit((address)result, bytes, CALLER_PC); |
13195 | 1779 |
} |
1780 |
return result; |
|
1781 |
} |
|
1782 |
||
1783 |
char* os::remap_memory(int fd, const char* file_name, size_t file_offset, |
|
1784 |
char *addr, size_t bytes, bool read_only, |
|
1785 |
bool allow_exec) { |
|
1786 |
return pd_remap_memory(fd, file_name, file_offset, addr, bytes, |
|
1787 |
read_only, allow_exec); |
|
1788 |
} |
|
1789 |
||
1790 |
bool os::unmap_memory(char *addr, size_t bytes) { |
|
25946 | 1791 |
bool result; |
1792 |
if (MemTracker::tracking_level() > NMT_minimal) { |
|
1793 |
Tracker tkr = MemTracker::get_virtual_memory_release_tracker(); |
|
1794 |
result = pd_unmap_memory(addr, bytes); |
|
1795 |
if (result) { |
|
1796 |
tkr.record((address)addr, bytes); |
|
1797 |
} |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1798 |
} else { |
25946 | 1799 |
result = pd_unmap_memory(addr, bytes); |
13195 | 1800 |
} |
1801 |
return result; |
|
1802 |
} |
|
1803 |
||
1804 |
void os::free_memory(char *addr, size_t bytes, size_t alignment_hint) { |
|
1805 |
pd_free_memory(addr, bytes, alignment_hint); |
|
1806 |
} |
|
1807 |
||
1808 |
void os::realign_memory(char *addr, size_t bytes, size_t alignment_hint) { |
|
1809 |
pd_realign_memory(addr, bytes, alignment_hint); |
|
1810 |
} |
|
1811 |
||
40010 | 1812 |
#ifndef _WINDOWS |
18025 | 1813 |
/* try to switch state from state "from" to state "to" |
1814 |
* returns the state set after the method is complete |
|
1815 |
*/ |
|
1816 |
os::SuspendResume::State os::SuspendResume::switch_state(os::SuspendResume::State from, |
|
1817 |
os::SuspendResume::State to) |
|
1818 |
{ |
|
1819 |
os::SuspendResume::State result = |
|
1820 |
(os::SuspendResume::State) Atomic::cmpxchg((jint) to, (jint *) &_state, (jint) from); |
|
1821 |
if (result == from) { |
|
1822 |
// success |
|
1823 |
return to; |
|
1824 |
} |
|
1825 |
return result; |
|
1826 |
} |
|
1827 |
#endif |