author | sla |
Wed, 18 Dec 2013 08:39:06 +0100 | |
changeset 22190 | d306a75a70d3 |
parent 20006 | 9dc2add3103b |
child 22838 | 82c7497fbad4 |
child 22201 | 9c2ccfa3a5fe |
permissions | -rw-r--r-- |
1 | 1 |
/* |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, 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" |
|
28 |
#include "classfile/systemDictionary.hpp" |
|
29 |
#include "classfile/vmSymbols.hpp" |
|
30 |
#include "code/icBuffer.hpp" |
|
31 |
#include "code/vtableStubs.hpp" |
|
32 |
#include "gc_implementation/shared/vmGCOperations.hpp" |
|
33 |
#include "interpreter/interpreter.hpp" |
|
34 |
#include "memory/allocation.inline.hpp" |
|
35 |
#include "oops/oop.inline.hpp" |
|
36 |
#include "prims/jvm.h" |
|
37 |
#include "prims/jvm_misc.hpp" |
|
38 |
#include "prims/privilegedStack.hpp" |
|
39 |
#include "runtime/arguments.hpp" |
|
40 |
#include "runtime/frame.inline.hpp" |
|
41 |
#include "runtime/interfaceSupport.hpp" |
|
42 |
#include "runtime/java.hpp" |
|
43 |
#include "runtime/javaCalls.hpp" |
|
44 |
#include "runtime/mutexLocker.hpp" |
|
45 |
#include "runtime/os.hpp" |
|
46 |
#include "runtime/stubRoutines.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14490
diff
changeset
|
47 |
#include "runtime/thread.inline.hpp" |
7397 | 48 |
#include "services/attachListener.hpp" |
13195 | 49 |
#include "services/memTracker.hpp" |
7397 | 50 |
#include "services/threadService.hpp" |
51 |
#include "utilities/defaultStream.hpp" |
|
52 |
#include "utilities/events.hpp" |
|
53 |
#ifdef TARGET_OS_FAMILY_linux |
|
54 |
# include "os_linux.inline.hpp" |
|
55 |
#endif |
|
56 |
#ifdef TARGET_OS_FAMILY_solaris |
|
57 |
# include "os_solaris.inline.hpp" |
|
58 |
#endif |
|
59 |
#ifdef TARGET_OS_FAMILY_windows |
|
60 |
# include "os_windows.inline.hpp" |
|
61 |
#endif |
|
10565 | 62 |
#ifdef TARGET_OS_FAMILY_bsd |
63 |
# include "os_bsd.inline.hpp" |
|
64 |
#endif |
|
1 | 65 |
|
66 |
# include <signal.h> |
|
67 |
||
68 |
OSThread* os::_starting_thread = NULL; |
|
69 |
address os::_polling_page = NULL; |
|
70 |
volatile int32_t* os::_mem_serialize_page = NULL; |
|
71 |
uintptr_t os::_serialize_page_mask = 0; |
|
72 |
long os::_rand_seed = 1; |
|
73 |
int os::_processor_count = 0; |
|
74 |
size_t os::_page_sizes[os::page_sizes_max]; |
|
75 |
||
76 |
#ifndef PRODUCT |
|
8320 | 77 |
julong os::num_mallocs = 0; // # of calls to malloc/realloc |
78 |
julong os::alloc_bytes = 0; // # of bytes allocated |
|
79 |
julong os::num_frees = 0; // # of calls to free |
|
80 |
julong os::free_bytes = 0; // # of bytes freed |
|
1 | 81 |
#endif |
82 |
||
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
83 |
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
|
84 |
|
11417
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
85 |
void os_init_globals() { |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
86 |
// Called from init_globals(). |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
87 |
// 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
|
88 |
os::init_globals(); |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
89 |
} |
4ecc3253bec4
7125934: Add a fast unordered timestamp capability to Hotspot on x86/x64
phh
parents:
10739
diff
changeset
|
90 |
|
1 | 91 |
// Fill in buffer with current local time as an ISO-8601 string. |
92 |
// E.g., yyyy-mm-ddThh:mm:ss-zzzz. |
|
93 |
// Returns buffer, or NULL if it failed. |
|
94 |
// This would mostly be a call to |
|
95 |
// strftime(...., "%Y-%m-%d" "T" "%H:%M:%S" "%z", ....) |
|
96 |
// except that on Windows the %z behaves badly, so we do it ourselves. |
|
97 |
// Also, people wanted milliseconds on there, |
|
98 |
// and strftime doesn't do milliseconds. |
|
99 |
char* os::iso8601_time(char* buffer, size_t buffer_length) { |
|
100 |
// Output will be of the form "YYYY-MM-DDThh:mm:ss.mmm+zzzz\0" |
|
101 |
// 1 2 |
|
102 |
// 12345678901234567890123456789 |
|
103 |
static const char* iso8601_format = |
|
104 |
"%04d-%02d-%02dT%02d:%02d:%02d.%03d%c%02d%02d"; |
|
105 |
static const size_t needed_buffer = 29; |
|
106 |
||
107 |
// Sanity check the arguments |
|
108 |
if (buffer == NULL) { |
|
109 |
assert(false, "NULL buffer"); |
|
110 |
return NULL; |
|
111 |
} |
|
112 |
if (buffer_length < needed_buffer) { |
|
113 |
assert(false, "buffer_length too small"); |
|
114 |
return NULL; |
|
115 |
} |
|
116 |
// Get the current time |
|
234 | 117 |
jlong milliseconds_since_19700101 = javaTimeMillis(); |
1 | 118 |
const int milliseconds_per_microsecond = 1000; |
119 |
const time_t seconds_since_19700101 = |
|
120 |
milliseconds_since_19700101 / milliseconds_per_microsecond; |
|
121 |
const int milliseconds_after_second = |
|
122 |
milliseconds_since_19700101 % milliseconds_per_microsecond; |
|
123 |
// 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
|
124 |
struct tm time_struct; |
041fbc6030dd
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function
ysr
parents:
1664
diff
changeset
|
125 |
if (localtime_pd(&seconds_since_19700101, &time_struct) == NULL) { |
041fbc6030dd
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function
ysr
parents:
1664
diff
changeset
|
126 |
assert(false, "Failed localtime_pd"); |
1 | 127 |
return NULL; |
128 |
} |
|
10565 | 129 |
#if defined(_ALLBSD_SOURCE) |
130 |
const time_t zone = (time_t) time_struct.tm_gmtoff; |
|
131 |
#else |
|
1 | 132 |
const time_t zone = timezone; |
10565 | 133 |
#endif |
1 | 134 |
|
135 |
// If daylight savings time is in effect, |
|
136 |
// we are 1 hour East of our time zone |
|
137 |
const time_t seconds_per_minute = 60; |
|
138 |
const time_t minutes_per_hour = 60; |
|
139 |
const time_t seconds_per_hour = seconds_per_minute * minutes_per_hour; |
|
140 |
time_t UTC_to_local = zone; |
|
141 |
if (time_struct.tm_isdst > 0) { |
|
142 |
UTC_to_local = UTC_to_local - seconds_per_hour; |
|
143 |
} |
|
144 |
// Compute the time zone offset. |
|
2012
041fbc6030dd
6800586: -XX:+PrintGCDateStamps is using mt-unsafe localtime function
ysr
parents:
1664
diff
changeset
|
145 |
// localtime_pd() sets timezone to the difference (in seconds) |
1 | 146 |
// between UTC and and local time. |
147 |
// 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
|
148 |
// we change the sign of the localtime_pd() result. |
1 | 149 |
const time_t local_to_UTC = -(UTC_to_local); |
150 |
// Then we have to figure out if if we are ahead (+) or behind (-) UTC. |
|
151 |
char sign_local_to_UTC = '+'; |
|
152 |
time_t abs_local_to_UTC = local_to_UTC; |
|
153 |
if (local_to_UTC < 0) { |
|
154 |
sign_local_to_UTC = '-'; |
|
155 |
abs_local_to_UTC = -(abs_local_to_UTC); |
|
156 |
} |
|
157 |
// Convert time zone offset seconds to hours and minutes. |
|
158 |
const time_t zone_hours = (abs_local_to_UTC / seconds_per_hour); |
|
159 |
const time_t zone_min = |
|
160 |
((abs_local_to_UTC % seconds_per_hour) / seconds_per_minute); |
|
161 |
||
162 |
// Print an ISO 8601 date and time stamp into the buffer |
|
163 |
const int year = 1900 + time_struct.tm_year; |
|
164 |
const int month = 1 + time_struct.tm_mon; |
|
165 |
const int printed = jio_snprintf(buffer, buffer_length, iso8601_format, |
|
166 |
year, |
|
167 |
month, |
|
168 |
time_struct.tm_mday, |
|
169 |
time_struct.tm_hour, |
|
170 |
time_struct.tm_min, |
|
171 |
time_struct.tm_sec, |
|
172 |
milliseconds_after_second, |
|
173 |
sign_local_to_UTC, |
|
174 |
zone_hours, |
|
175 |
zone_min); |
|
176 |
if (printed == 0) { |
|
177 |
assert(false, "Failed jio_printf"); |
|
178 |
return NULL; |
|
179 |
} |
|
180 |
return buffer; |
|
181 |
} |
|
182 |
||
183 |
OSReturn os::set_priority(Thread* thread, ThreadPriority p) { |
|
184 |
#ifdef ASSERT |
|
185 |
if (!(!thread->is_Java_thread() || |
|
186 |
Thread::current() == thread || |
|
187 |
Threads_lock->owned_by_self() |
|
188 |
|| thread->is_Compiler_thread() |
|
189 |
)) { |
|
190 |
assert(false, "possibility of dangling Thread pointer"); |
|
191 |
} |
|
192 |
#endif |
|
193 |
||
194 |
if (p >= MinPriority && p <= MaxPriority) { |
|
195 |
int priority = java_to_os_priority[p]; |
|
196 |
return set_native_priority(thread, priority); |
|
197 |
} else { |
|
198 |
assert(false, "Should not happen"); |
|
199 |
return OS_ERR; |
|
200 |
} |
|
201 |
} |
|
202 |
||
13857 | 203 |
// The mapping from OS priority back to Java priority may be inexact because |
204 |
// Java priorities can map M:1 with native priorities. If you want the definite |
|
205 |
// Java priority then use JavaThread::java_priority() |
|
1 | 206 |
OSReturn os::get_priority(const Thread* const thread, ThreadPriority& priority) { |
207 |
int p; |
|
208 |
int os_prio; |
|
209 |
OSReturn ret = get_native_priority(thread, &os_prio); |
|
210 |
if (ret != OS_OK) return ret; |
|
211 |
||
13857 | 212 |
if (java_to_os_priority[MaxPriority] > java_to_os_priority[MinPriority]) { |
213 |
for (p = MaxPriority; p > MinPriority && java_to_os_priority[p] > os_prio; p--) ; |
|
214 |
} else { |
|
215 |
// niceness values are in reverse order |
|
216 |
for (p = MaxPriority; p > MinPriority && java_to_os_priority[p] < os_prio; p--) ; |
|
217 |
} |
|
1 | 218 |
priority = (ThreadPriority)p; |
219 |
return OS_OK; |
|
220 |
} |
|
221 |
||
222 |
||
223 |
// --------------------- sun.misc.Signal (optional) --------------------- |
|
224 |
||
225 |
||
226 |
// SIGBREAK is sent by the keyboard to query the VM state |
|
227 |
#ifndef SIGBREAK |
|
228 |
#define SIGBREAK SIGQUIT |
|
229 |
#endif |
|
230 |
||
231 |
// sigexitnum_pd is a platform-specific special signal used for terminating the Signal thread. |
|
232 |
||
233 |
||
234 |
static void signal_thread_entry(JavaThread* thread, TRAPS) { |
|
235 |
os::set_priority(thread, NearMaxPriority); |
|
236 |
while (true) { |
|
237 |
int sig; |
|
238 |
{ |
|
239 |
// FIXME : Currently we have not decieded what should be the status |
|
240 |
// for this java thread blocked here. Once we decide about |
|
241 |
// that we should fix this. |
|
242 |
sig = os::signal_wait(); |
|
243 |
} |
|
244 |
if (sig == os::sigexitnum_pd()) { |
|
245 |
// Terminate the signal thread |
|
246 |
return; |
|
247 |
} |
|
248 |
||
249 |
switch (sig) { |
|
250 |
case SIGBREAK: { |
|
251 |
// Check if the signal is a trigger to start the Attach Listener - in that |
|
252 |
// case don't print stack traces. |
|
253 |
if (!DisableAttachMechanism && AttachListener::is_init_trigger()) { |
|
254 |
continue; |
|
255 |
} |
|
256 |
// Print stack traces |
|
257 |
// Any SIGBREAK operations added here should make sure to flush |
|
258 |
// the output stream (e.g. tty->flush()) after output. See 4803766. |
|
259 |
// Each module also prints an extra carriage return after its output. |
|
260 |
VM_PrintThreads op; |
|
261 |
VMThread::execute(&op); |
|
262 |
VM_PrintJNI jni_op; |
|
263 |
VMThread::execute(&jni_op); |
|
264 |
VM_FindDeadlocks op1(tty); |
|
265 |
VMThread::execute(&op1); |
|
266 |
Universe::print_heap_at_SIGBREAK(); |
|
267 |
if (PrintClassHistogram) { |
|
18025 | 268 |
VM_GC_HeapInspection op1(gclog_or_tty, true /* force full GC before heap inspection */); |
1 | 269 |
VMThread::execute(&op1); |
270 |
} |
|
271 |
if (JvmtiExport::should_post_data_dump()) { |
|
272 |
JvmtiExport::post_data_dump(); |
|
273 |
} |
|
274 |
break; |
|
275 |
} |
|
276 |
default: { |
|
277 |
// Dispatch the signal to java |
|
278 |
HandleMark hm(THREAD); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
279 |
Klass* k = SystemDictionary::resolve_or_null(vmSymbols::sun_misc_Signal(), THREAD); |
1 | 280 |
KlassHandle klass (THREAD, k); |
281 |
if (klass.not_null()) { |
|
282 |
JavaValue result(T_VOID); |
|
283 |
JavaCallArguments args; |
|
284 |
args.push_int(sig); |
|
285 |
JavaCalls::call_static( |
|
286 |
&result, |
|
287 |
klass, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
288 |
vmSymbols::dispatch_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
289 |
vmSymbols::int_void_signature(), |
1 | 290 |
&args, |
291 |
THREAD |
|
292 |
); |
|
293 |
} |
|
294 |
if (HAS_PENDING_EXCEPTION) { |
|
295 |
// tty is initialized early so we don't expect it to be null, but |
|
296 |
// if it is we can't risk doing an initialization that might |
|
297 |
// trigger additional out-of-memory conditions |
|
298 |
if (tty != NULL) { |
|
299 |
char klass_name[256]; |
|
300 |
char tmp_sig_name[16]; |
|
301 |
const char* sig_name = "UNKNOWN"; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
302 |
InstanceKlass::cast(PENDING_EXCEPTION->klass())-> |
1 | 303 |
name()->as_klass_external_name(klass_name, 256); |
304 |
if (os::exception_name(sig, tmp_sig_name, 16) != NULL) |
|
305 |
sig_name = tmp_sig_name; |
|
306 |
warning("Exception %s occurred dispatching signal %s to handler" |
|
307 |
"- the VM may need to be forcibly terminated", |
|
308 |
klass_name, sig_name ); |
|
309 |
} |
|
310 |
CLEAR_PENDING_EXCEPTION; |
|
311 |
} |
|
312 |
} |
|
313 |
} |
|
314 |
} |
|
315 |
} |
|
316 |
||
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
317 |
void os::init_before_ergo() { |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
318 |
// 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
|
319 |
// 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
|
320 |
large_page_init(); |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19697
diff
changeset
|
321 |
} |
1 | 322 |
|
323 |
void os::signal_init() { |
|
324 |
if (!ReduceSignalUsage) { |
|
325 |
// Setup JavaThread for processing signals |
|
326 |
EXCEPTION_MARK; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
327 |
Klass* k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_Thread(), true, CHECK); |
1 | 328 |
instanceKlassHandle klass (THREAD, k); |
329 |
instanceHandle thread_oop = klass->allocate_instance_handle(CHECK); |
|
330 |
||
331 |
const char thread_name[] = "Signal Dispatcher"; |
|
332 |
Handle string = java_lang_String::create_from_str(thread_name, CHECK); |
|
333 |
||
334 |
// Initialize thread_oop to put it into the system threadGroup |
|
335 |
Handle thread_group (THREAD, Universe::system_thread_group()); |
|
336 |
JavaValue result(T_VOID); |
|
337 |
JavaCalls::call_special(&result, thread_oop, |
|
338 |
klass, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
339 |
vmSymbols::object_initializer_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
340 |
vmSymbols::threadgroup_string_void_signature(), |
1 | 341 |
thread_group, |
342 |
string, |
|
343 |
CHECK); |
|
344 |
||
4571 | 345 |
KlassHandle group(THREAD, SystemDictionary::ThreadGroup_klass()); |
1 | 346 |
JavaCalls::call_special(&result, |
347 |
thread_group, |
|
348 |
group, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
349 |
vmSymbols::add_method_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7405
diff
changeset
|
350 |
vmSymbols::thread_void_signature(), |
1 | 351 |
thread_oop, // ARG 1 |
352 |
CHECK); |
|
353 |
||
354 |
os::signal_init_pd(); |
|
355 |
||
356 |
{ MutexLocker mu(Threads_lock); |
|
357 |
JavaThread* signal_thread = new JavaThread(&signal_thread_entry); |
|
358 |
||
359 |
// At this point it may be possible that no osthread was created for the |
|
360 |
// JavaThread due to lack of memory. We would have to throw an exception |
|
361 |
// in that case. However, since this must work and we do not allow |
|
362 |
// exceptions anyway, check and abort if this fails. |
|
363 |
if (signal_thread == NULL || signal_thread->osthread() == NULL) { |
|
364 |
vm_exit_during_initialization("java.lang.OutOfMemoryError", |
|
365 |
"unable to create new native thread"); |
|
366 |
} |
|
367 |
||
368 |
java_lang_Thread::set_thread(thread_oop(), signal_thread); |
|
369 |
java_lang_Thread::set_priority(thread_oop(), NearMaxPriority); |
|
370 |
java_lang_Thread::set_daemon(thread_oop()); |
|
371 |
||
372 |
signal_thread->set_threadObj(thread_oop()); |
|
373 |
Threads::add(signal_thread); |
|
374 |
Thread::start(signal_thread); |
|
375 |
} |
|
376 |
// Handle ^BREAK |
|
377 |
os::signal(SIGBREAK, os::user_handler()); |
|
378 |
} |
|
379 |
} |
|
380 |
||
381 |
||
382 |
void os::terminate_signal_thread() { |
|
383 |
if (!ReduceSignalUsage) |
|
384 |
signal_notify(sigexitnum_pd()); |
|
385 |
} |
|
386 |
||
387 |
||
388 |
// --------------------- loading libraries --------------------- |
|
389 |
||
390 |
typedef jint (JNICALL *JNI_OnLoad_t)(JavaVM *, void *); |
|
391 |
extern struct JavaVM_ main_vm; |
|
392 |
||
393 |
static void* _native_java_library = NULL; |
|
394 |
||
395 |
void* os::native_java_library() { |
|
396 |
if (_native_java_library == NULL) { |
|
397 |
char buffer[JVM_MAXPATHLEN]; |
|
398 |
char ebuf[1024]; |
|
399 |
||
950 | 400 |
// Try to load verify dll first. In 1.3 java dll depends on it and is not |
401 |
// always able to find it when the loading executable is outside the JDK. |
|
1 | 402 |
// In order to keep working with 1.2 we ignore any loading errors. |
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
403 |
if (dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(), |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
404 |
"verify")) { |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
405 |
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
|
406 |
} |
1 | 407 |
|
408 |
// Load java dll |
|
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
409 |
if (dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(), |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
410 |
"java")) { |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
411 |
_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
|
412 |
} |
1 | 413 |
if (_native_java_library == NULL) { |
414 |
vm_exit_during_initialization("Unable to load native library", ebuf); |
|
415 |
} |
|
10565 | 416 |
|
417 |
#if defined(__OpenBSD__) |
|
418 |
// Work-around OpenBSD's lack of $ORIGIN support by pre-loading libnet.so |
|
419 |
// ignore errors |
|
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
420 |
if (dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(), |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
421 |
"net")) { |
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
422 |
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
|
423 |
} |
10565 | 424 |
#endif |
950 | 425 |
} |
426 |
static jboolean onLoaded = JNI_FALSE; |
|
427 |
if (onLoaded) { |
|
428 |
// We may have to wait to fire OnLoad until TLS is initialized. |
|
429 |
if (ThreadLocalStorage::is_initialized()) { |
|
430 |
// The JNI_OnLoad handling is normally done by method load in |
|
431 |
// java.lang.ClassLoader$NativeLibrary, but the VM loads the base library |
|
432 |
// explicitly so we have to check for JNI_OnLoad as well |
|
433 |
const char *onLoadSymbols[] = JNI_ONLOAD_SYMBOLS; |
|
434 |
JNI_OnLoad_t JNI_OnLoad = CAST_TO_FN_PTR( |
|
435 |
JNI_OnLoad_t, dll_lookup(_native_java_library, onLoadSymbols[0])); |
|
436 |
if (JNI_OnLoad != NULL) { |
|
437 |
JavaThread* thread = JavaThread::current(); |
|
438 |
ThreadToNativeFromVM ttn(thread); |
|
439 |
HandleMark hm(thread); |
|
440 |
jint ver = (*JNI_OnLoad)(&main_vm, NULL); |
|
441 |
onLoaded = JNI_TRUE; |
|
442 |
if (!Threads::is_supported_jni_version_including_1_1(ver)) { |
|
443 |
vm_exit_during_initialization("Unsupported JNI version"); |
|
444 |
} |
|
1 | 445 |
} |
446 |
} |
|
447 |
} |
|
448 |
return _native_java_library; |
|
449 |
} |
|
450 |
||
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
451 |
/* |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
452 |
* 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
|
453 |
* 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
|
454 |
* 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
|
455 |
* 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
|
456 |
* 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
|
457 |
* 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
|
458 |
* referenced by 'handle'. |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
459 |
*/ |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
460 |
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
|
461 |
const char *syms[], size_t syms_len) { |
19973 | 462 |
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
|
463 |
const char *lib_name; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
464 |
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
|
465 |
void *entryName = NULL; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
466 |
char *agent_function_name; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
467 |
size_t i; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
468 |
|
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
469 |
// 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
|
470 |
// 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
|
471 |
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
|
472 |
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
|
473 |
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
|
474 |
if (agent_function_name == NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
475 |
break; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
476 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
477 |
entryName = dll_lookup(handle, agent_function_name); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
478 |
FREE_C_HEAP_ARRAY(char, agent_function_name, mtThread); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
479 |
if (entryName != NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
480 |
break; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
481 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
482 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
483 |
return entryName; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
484 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
485 |
|
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
486 |
// 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
|
487 |
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
|
488 |
size_t syms_len) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
489 |
void *ret; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
490 |
void *proc_handle; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
491 |
void *save_handle; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
492 |
|
19973 | 493 |
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
|
494 |
if (agent_lib->name() == NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
495 |
return false; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
496 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
497 |
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
|
498 |
// 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
|
499 |
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
|
500 |
// 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
|
501 |
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
|
502 |
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
|
503 |
if (ret != NULL) { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
504 |
// 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
|
505 |
agent_lib->set_valid(); |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
506 |
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
|
507 |
return true; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
508 |
} |
19973 | 509 |
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
|
510 |
return false; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
511 |
} |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
18943
diff
changeset
|
512 |
|
1 | 513 |
// --------------------- heap allocation utilities --------------------- |
514 |
||
13195 | 515 |
char *os::strdup(const char *str, MEMFLAGS flags) { |
1 | 516 |
size_t size = strlen(str); |
13195 | 517 |
char *dup_str = (char *)malloc(size + 1, flags); |
1 | 518 |
if (dup_str == NULL) return NULL; |
519 |
strcpy(dup_str, str); |
|
520 |
return dup_str; |
|
521 |
} |
|
522 |
||
523 |
||
524 |
||
525 |
#ifdef ASSERT |
|
526 |
#define space_before (MallocCushion + sizeof(double)) |
|
527 |
#define space_after MallocCushion |
|
528 |
#define size_addr_from_base(p) (size_t*)(p + space_before - sizeof(size_t)) |
|
529 |
#define size_addr_from_obj(p) ((size_t*)p - 1) |
|
530 |
// MallocCushion: size of extra cushion allocated around objects with +UseMallocOnly |
|
531 |
// NB: cannot be debug variable, because these aren't set from the command line until |
|
532 |
// *after* the first few allocs already happened |
|
533 |
#define MallocCushion 16 |
|
534 |
#else |
|
535 |
#define space_before 0 |
|
536 |
#define space_after 0 |
|
537 |
#define size_addr_from_base(p) should not use w/o ASSERT |
|
538 |
#define size_addr_from_obj(p) should not use w/o ASSERT |
|
539 |
#define MallocCushion 0 |
|
540 |
#endif |
|
541 |
#define paranoid 0 /* only set to 1 if you suspect checking code has bug */ |
|
542 |
||
543 |
#ifdef ASSERT |
|
544 |
inline size_t get_size(void* obj) { |
|
545 |
size_t size = *size_addr_from_obj(obj); |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
4571
diff
changeset
|
546 |
if (size < 0) { |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
4571
diff
changeset
|
547 |
fatal(err_msg("free: size field of object #" PTR_FORMAT " was overwritten (" |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
4571
diff
changeset
|
548 |
SIZE_FORMAT ")", obj, size)); |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
4571
diff
changeset
|
549 |
} |
1 | 550 |
return size; |
551 |
} |
|
552 |
||
553 |
u_char* find_cushion_backwards(u_char* start) { |
|
554 |
u_char* p = start; |
|
555 |
while (p[ 0] != badResourceValue || p[-1] != badResourceValue || |
|
556 |
p[-2] != badResourceValue || p[-3] != badResourceValue) p--; |
|
557 |
// ok, we have four consecutive marker bytes; find start |
|
558 |
u_char* q = p - 4; |
|
559 |
while (*q == badResourceValue) q--; |
|
560 |
return q + 1; |
|
561 |
} |
|
562 |
||
563 |
u_char* find_cushion_forwards(u_char* start) { |
|
564 |
u_char* p = start; |
|
565 |
while (p[0] != badResourceValue || p[1] != badResourceValue || |
|
566 |
p[2] != badResourceValue || p[3] != badResourceValue) p++; |
|
567 |
// ok, we have four consecutive marker bytes; find end of cushion |
|
568 |
u_char* q = p + 4; |
|
569 |
while (*q == badResourceValue) q++; |
|
570 |
return q - MallocCushion; |
|
571 |
} |
|
572 |
||
573 |
void print_neighbor_blocks(void* ptr) { |
|
574 |
// find block allocated before ptr (not entirely crash-proof) |
|
575 |
if (MallocCushion < 4) { |
|
576 |
tty->print_cr("### cannot find previous block (MallocCushion < 4)"); |
|
577 |
return; |
|
578 |
} |
|
579 |
u_char* start_of_this_block = (u_char*)ptr - space_before; |
|
580 |
u_char* end_of_prev_block_data = start_of_this_block - space_after -1; |
|
581 |
// look for cushion in front of prev. block |
|
582 |
u_char* start_of_prev_block = find_cushion_backwards(end_of_prev_block_data); |
|
583 |
ptrdiff_t size = *size_addr_from_base(start_of_prev_block); |
|
584 |
u_char* obj = start_of_prev_block + space_before; |
|
585 |
if (size <= 0 ) { |
|
586 |
// start is bad; mayhave been confused by OS data inbetween objects |
|
587 |
// search one more backwards |
|
588 |
start_of_prev_block = find_cushion_backwards(start_of_prev_block); |
|
589 |
size = *size_addr_from_base(start_of_prev_block); |
|
590 |
obj = start_of_prev_block + space_before; |
|
591 |
} |
|
592 |
||
593 |
if (start_of_prev_block + space_before + size + space_after == start_of_this_block) { |
|
8320 | 594 |
tty->print_cr("### previous object: " PTR_FORMAT " (" SSIZE_FORMAT " bytes)", obj, size); |
1 | 595 |
} else { |
8320 | 596 |
tty->print_cr("### previous object (not sure if correct): " PTR_FORMAT " (" SSIZE_FORMAT " bytes)", obj, size); |
1 | 597 |
} |
598 |
||
599 |
// now find successor block |
|
600 |
u_char* start_of_next_block = (u_char*)ptr + *size_addr_from_obj(ptr) + space_after; |
|
601 |
start_of_next_block = find_cushion_forwards(start_of_next_block); |
|
602 |
u_char* next_obj = start_of_next_block + space_before; |
|
603 |
ptrdiff_t next_size = *size_addr_from_base(start_of_next_block); |
|
604 |
if (start_of_next_block[0] == badResourceValue && |
|
605 |
start_of_next_block[1] == badResourceValue && |
|
606 |
start_of_next_block[2] == badResourceValue && |
|
607 |
start_of_next_block[3] == badResourceValue) { |
|
8320 | 608 |
tty->print_cr("### next object: " PTR_FORMAT " (" SSIZE_FORMAT " bytes)", next_obj, next_size); |
1 | 609 |
} else { |
8320 | 610 |
tty->print_cr("### next object (not sure if correct): " PTR_FORMAT " (" SSIZE_FORMAT " bytes)", next_obj, next_size); |
1 | 611 |
} |
612 |
} |
|
613 |
||
614 |
||
615 |
void report_heap_error(void* memblock, void* bad, const char* where) { |
|
8320 | 616 |
tty->print_cr("## nof_mallocs = " UINT64_FORMAT ", nof_frees = " UINT64_FORMAT, os::num_mallocs, os::num_frees); |
617 |
tty->print_cr("## memory stomp: byte at " PTR_FORMAT " %s object " PTR_FORMAT, bad, where, memblock); |
|
1 | 618 |
print_neighbor_blocks(memblock); |
619 |
fatal("memory stomping error"); |
|
620 |
} |
|
621 |
||
622 |
void verify_block(void* memblock) { |
|
623 |
size_t size = get_size(memblock); |
|
624 |
if (MallocCushion) { |
|
625 |
u_char* ptr = (u_char*)memblock - space_before; |
|
626 |
for (int i = 0; i < MallocCushion; i++) { |
|
627 |
if (ptr[i] != badResourceValue) { |
|
628 |
report_heap_error(memblock, ptr+i, "in front of"); |
|
629 |
} |
|
630 |
} |
|
631 |
u_char* end = (u_char*)memblock + size + space_after; |
|
632 |
for (int j = -MallocCushion; j < 0; j++) { |
|
633 |
if (end[j] != badResourceValue) { |
|
634 |
report_heap_error(memblock, end+j, "after"); |
|
635 |
} |
|
636 |
} |
|
637 |
} |
|
638 |
} |
|
639 |
#endif |
|
640 |
||
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
641 |
// |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
642 |
// 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
|
643 |
// 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
|
644 |
// |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
645 |
static u_char* testMalloc(size_t alloc_size) { |
16434
67b70a1edf27
8010396: checking MallocMaxTestWords in testMalloc() function is redundant
rdurbin
parents:
16428
diff
changeset
|
646 |
assert(MallocMaxTestWords > 0, "sanity check"); |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
647 |
|
16434
67b70a1edf27
8010396: checking MallocMaxTestWords in testMalloc() function is redundant
rdurbin
parents:
16428
diff
changeset
|
648 |
if ((cur_malloc_words + (alloc_size / BytesPerWord)) > MallocMaxTestWords) { |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
649 |
return NULL; |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
650 |
} |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
651 |
|
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
652 |
u_char* ptr = (u_char*)::malloc(alloc_size); |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
653 |
|
16434
67b70a1edf27
8010396: checking MallocMaxTestWords in testMalloc() function is redundant
rdurbin
parents:
16428
diff
changeset
|
654 |
if (ptr != NULL) { |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
655 |
Atomic::add(((jint) (alloc_size / BytesPerWord)), |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
656 |
(volatile jint *) &cur_malloc_words); |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
657 |
} |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
658 |
return ptr; |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
659 |
} |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
660 |
|
13195 | 661 |
void* os::malloc(size_t size, MEMFLAGS memflags, address caller) { |
8320 | 662 |
NOT_PRODUCT(inc_stat_counter(&num_mallocs, 1)); |
663 |
NOT_PRODUCT(inc_stat_counter(&alloc_bytes, size)); |
|
1 | 664 |
|
18943 | 665 |
#ifdef ASSERT |
666 |
// checking for the WatcherThread and crash_protection first |
|
667 |
// since os::malloc can be called when the libjvm.{dll,so} is |
|
668 |
// first loaded and we don't have a thread yet. |
|
669 |
// try to find the thread after we see that the watcher thread |
|
670 |
// exists and has crash protection. |
|
671 |
WatcherThread *wt = WatcherThread::watcher_thread(); |
|
672 |
if (wt != NULL && wt->has_crash_protection()) { |
|
673 |
Thread* thread = ThreadLocalStorage::get_thread_slow(); |
|
674 |
if (thread == wt) { |
|
675 |
assert(!wt->has_crash_protection(), |
|
676 |
"Can't malloc with crash protection from WatcherThread"); |
|
677 |
} |
|
678 |
} |
|
679 |
#endif |
|
680 |
||
1 | 681 |
if (size == 0) { |
682 |
// return a valid pointer if size is zero |
|
683 |
// if NULL is returned the calling functions assume out of memory. |
|
684 |
size = 1; |
|
685 |
} |
|
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
686 |
|
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
687 |
const size_t alloc_size = size + space_before + space_after; |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
688 |
|
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
689 |
if (size > alloc_size) { // Check for rollover. |
14487
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
14120
diff
changeset
|
690 |
return NULL; |
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
14120
diff
changeset
|
691 |
} |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
692 |
|
1 | 693 |
NOT_PRODUCT(if (MallocVerifyInterval > 0) check_heap()); |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
694 |
|
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
695 |
u_char* ptr; |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
696 |
|
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
697 |
if (MallocMaxTestWords > 0) { |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
698 |
ptr = testMalloc(alloc_size); |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
699 |
} else { |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
700 |
ptr = (u_char*)::malloc(alloc_size); |
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15475
diff
changeset
|
701 |
} |
13195 | 702 |
|
1 | 703 |
#ifdef ASSERT |
704 |
if (ptr == NULL) return NULL; |
|
705 |
if (MallocCushion) { |
|
706 |
for (u_char* p = ptr; p < ptr + MallocCushion; p++) *p = (u_char)badResourceValue; |
|
707 |
u_char* end = ptr + space_before + size; |
|
708 |
for (u_char* pq = ptr+MallocCushion; pq < end; pq++) *pq = (u_char)uninitBlockPad; |
|
709 |
for (u_char* q = end; q < end + MallocCushion; q++) *q = (u_char)badResourceValue; |
|
710 |
} |
|
711 |
// put size just before data |
|
712 |
*size_addr_from_base(ptr) = size; |
|
713 |
#endif |
|
714 |
u_char* memblock = ptr + space_before; |
|
715 |
if ((intptr_t)memblock == (intptr_t)MallocCatchPtr) { |
|
8320 | 716 |
tty->print_cr("os::malloc caught, " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, memblock); |
1 | 717 |
breakpoint(); |
718 |
} |
|
719 |
debug_only(if (paranoid) verify_block(memblock)); |
|
8320 | 720 |
if (PrintMalloc && tty != NULL) tty->print_cr("os::malloc " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, memblock); |
13195 | 721 |
|
722 |
// we do not track MallocCushion memory |
|
723 |
MemTracker::record_malloc((address)memblock, size, memflags, caller == 0 ? CALLER_PC : caller); |
|
724 |
||
1 | 725 |
return memblock; |
726 |
} |
|
727 |
||
728 |
||
13195 | 729 |
void* os::realloc(void *memblock, size_t size, MEMFLAGS memflags, address caller) { |
1 | 730 |
#ifndef ASSERT |
8320 | 731 |
NOT_PRODUCT(inc_stat_counter(&num_mallocs, 1)); |
732 |
NOT_PRODUCT(inc_stat_counter(&alloc_bytes, size)); |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
733 |
MemTracker::Tracker tkr = MemTracker::get_realloc_tracker(); |
13195 | 734 |
void* ptr = ::realloc(memblock, size); |
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13923
diff
changeset
|
735 |
if (ptr != NULL) { |
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
736 |
tkr.record((address)memblock, (address)ptr, size, memflags, |
13195 | 737 |
caller == 0 ? CALLER_PC : caller); |
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
738 |
} else { |
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
739 |
tkr.discard(); |
13195 | 740 |
} |
741 |
return ptr; |
|
1 | 742 |
#else |
743 |
if (memblock == NULL) { |
|
13195 | 744 |
return malloc(size, memflags, (caller == 0 ? CALLER_PC : caller)); |
1 | 745 |
} |
746 |
if ((intptr_t)memblock == (intptr_t)MallocCatchPtr) { |
|
8320 | 747 |
tty->print_cr("os::realloc caught " PTR_FORMAT, memblock); |
1 | 748 |
breakpoint(); |
749 |
} |
|
750 |
verify_block(memblock); |
|
751 |
NOT_PRODUCT(if (MallocVerifyInterval > 0) check_heap()); |
|
752 |
if (size == 0) return NULL; |
|
753 |
// always move the block |
|
13195 | 754 |
void* ptr = malloc(size, memflags, caller == 0 ? CALLER_PC : caller); |
8320 | 755 |
if (PrintMalloc) tty->print_cr("os::remalloc " SIZE_FORMAT " bytes, " PTR_FORMAT " --> " PTR_FORMAT, size, memblock, ptr); |
1 | 756 |
// Copy to new memory if malloc didn't fail |
757 |
if ( ptr != NULL ) { |
|
758 |
memcpy(ptr, memblock, MIN2(size, get_size(memblock))); |
|
759 |
if (paranoid) verify_block(ptr); |
|
760 |
if ((intptr_t)ptr == (intptr_t)MallocCatchPtr) { |
|
8320 | 761 |
tty->print_cr("os::realloc caught, " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, ptr); |
1 | 762 |
breakpoint(); |
763 |
} |
|
764 |
free(memblock); |
|
765 |
} |
|
766 |
return ptr; |
|
767 |
#endif |
|
768 |
} |
|
769 |
||
770 |
||
13195 | 771 |
void os::free(void *memblock, MEMFLAGS memflags) { |
8320 | 772 |
NOT_PRODUCT(inc_stat_counter(&num_frees, 1)); |
1 | 773 |
#ifdef ASSERT |
774 |
if (memblock == NULL) return; |
|
775 |
if ((intptr_t)memblock == (intptr_t)MallocCatchPtr) { |
|
8320 | 776 |
if (tty != NULL) tty->print_cr("os::free caught " PTR_FORMAT, memblock); |
1 | 777 |
breakpoint(); |
778 |
} |
|
779 |
verify_block(memblock); |
|
780 |
NOT_PRODUCT(if (MallocVerifyInterval > 0) check_heap()); |
|
781 |
// Added by detlefs. |
|
782 |
if (MallocCushion) { |
|
783 |
u_char* ptr = (u_char*)memblock - space_before; |
|
784 |
for (u_char* p = ptr; p < ptr + MallocCushion; p++) { |
|
785 |
guarantee(*p == badResourceValue, |
|
786 |
"Thing freed should be malloc result."); |
|
787 |
*p = (u_char)freeBlockPad; |
|
788 |
} |
|
789 |
size_t size = get_size(memblock); |
|
8320 | 790 |
inc_stat_counter(&free_bytes, size); |
1 | 791 |
u_char* end = ptr + space_before + size; |
792 |
for (u_char* q = end; q < end + MallocCushion; q++) { |
|
793 |
guarantee(*q == badResourceValue, |
|
794 |
"Thing freed should be malloc result."); |
|
795 |
*q = (u_char)freeBlockPad; |
|
796 |
} |
|
8320 | 797 |
if (PrintMalloc && tty != NULL) |
8652
209b2ce94ce5
7021653: Parfait issue in hotspot/src/share/vm/oops/methodDataOops.hpp
coleenp
parents:
8320
diff
changeset
|
798 |
fprintf(stderr, "os::free " SIZE_FORMAT " bytes --> " PTR_FORMAT "\n", size, (uintptr_t)memblock); |
8320 | 799 |
} else if (PrintMalloc && tty != NULL) { |
800 |
// tty->print_cr("os::free %p", memblock); |
|
8652
209b2ce94ce5
7021653: Parfait issue in hotspot/src/share/vm/oops/methodDataOops.hpp
coleenp
parents:
8320
diff
changeset
|
801 |
fprintf(stderr, "os::free " PTR_FORMAT "\n", (uintptr_t)memblock); |
1 | 802 |
} |
803 |
#endif |
|
13195 | 804 |
MemTracker::record_free((address)memblock, memflags); |
805 |
||
1 | 806 |
::free((char*)memblock - space_before); |
807 |
} |
|
808 |
||
809 |
void os::init_random(long initval) { |
|
810 |
_rand_seed = initval; |
|
811 |
} |
|
812 |
||
813 |
||
814 |
long os::random() { |
|
815 |
/* standard, well-known linear congruential random generator with |
|
816 |
* next_rand = (16807*seed) mod (2**31-1) |
|
817 |
* see |
|
818 |
* (1) "Random Number Generators: Good Ones Are Hard to Find", |
|
819 |
* S.K. Park and K.W. Miller, Communications of the ACM 31:10 (Oct 1988), |
|
820 |
* (2) "Two Fast Implementations of the 'Minimal Standard' Random |
|
821 |
* Number Generator", David G. Carta, Comm. ACM 33, 1 (Jan 1990), pp. 87-88. |
|
822 |
*/ |
|
823 |
const long a = 16807; |
|
824 |
const unsigned long m = 2147483647; |
|
825 |
const long q = m / a; assert(q == 127773, "weird math"); |
|
826 |
const long r = m % a; assert(r == 2836, "weird math"); |
|
827 |
||
828 |
// compute az=2^31p+q |
|
829 |
unsigned long lo = a * (long)(_rand_seed & 0xFFFF); |
|
830 |
unsigned long hi = a * (long)((unsigned long)_rand_seed >> 16); |
|
831 |
lo += (hi & 0x7FFF) << 16; |
|
832 |
||
833 |
// if q overflowed, ignore the overflow and increment q |
|
834 |
if (lo > m) { |
|
835 |
lo &= m; |
|
836 |
++lo; |
|
837 |
} |
|
838 |
lo += hi >> 15; |
|
839 |
||
840 |
// if (p+q) overflowed, ignore the overflow and increment (p+q) |
|
841 |
if (lo > m) { |
|
842 |
lo &= m; |
|
843 |
++lo; |
|
844 |
} |
|
845 |
return (_rand_seed = lo); |
|
846 |
} |
|
847 |
||
848 |
// The INITIALIZED state is distinguished from the SUSPENDED state because the |
|
849 |
// conditions in which a thread is first started are different from those in which |
|
850 |
// a suspension is resumed. These differences make it hard for us to apply the |
|
851 |
// tougher checks when starting threads that we want to do when resuming them. |
|
852 |
// However, when start_thread is called as a result of Thread.start, on a Java |
|
853 |
// thread, the operation is synchronized on the Java Thread object. So there |
|
854 |
// cannot be a race to start the thread and hence for the thread to exit while |
|
855 |
// we are working on it. Non-Java threads that start Java threads either have |
|
856 |
// to do so in a context in which races are impossible, or should do appropriate |
|
857 |
// locking. |
|
858 |
||
859 |
void os::start_thread(Thread* thread) { |
|
860 |
// guard suspend/resume |
|
861 |
MutexLockerEx ml(thread->SR_lock(), Mutex::_no_safepoint_check_flag); |
|
862 |
OSThread* osthread = thread->osthread(); |
|
863 |
osthread->set_state(RUNNABLE); |
|
864 |
pd_start_thread(thread); |
|
865 |
} |
|
866 |
||
867 |
//--------------------------------------------------------------------------- |
|
868 |
// Helper functions for fatal error handler |
|
869 |
||
870 |
void os::print_hex_dump(outputStream* st, address start, address end, int unitsize) { |
|
871 |
assert(unitsize == 1 || unitsize == 2 || unitsize == 4 || unitsize == 8, "just checking"); |
|
872 |
||
873 |
int cols = 0; |
|
874 |
int cols_per_line = 0; |
|
875 |
switch (unitsize) { |
|
876 |
case 1: cols_per_line = 16; break; |
|
877 |
case 2: cols_per_line = 8; break; |
|
878 |
case 4: cols_per_line = 4; break; |
|
879 |
case 8: cols_per_line = 2; break; |
|
880 |
default: return; |
|
881 |
} |
|
882 |
||
883 |
address p = start; |
|
884 |
st->print(PTR_FORMAT ": ", start); |
|
885 |
while (p < end) { |
|
886 |
switch (unitsize) { |
|
887 |
case 1: st->print("%02x", *(u1*)p); break; |
|
888 |
case 2: st->print("%04x", *(u2*)p); break; |
|
889 |
case 4: st->print("%08x", *(u4*)p); break; |
|
890 |
case 8: st->print("%016" FORMAT64_MODIFIER "x", *(u8*)p); break; |
|
891 |
} |
|
892 |
p += unitsize; |
|
893 |
cols++; |
|
894 |
if (cols >= cols_per_line && p < end) { |
|
895 |
cols = 0; |
|
896 |
st->cr(); |
|
897 |
st->print(PTR_FORMAT ": ", p); |
|
898 |
} else { |
|
899 |
st->print(" "); |
|
900 |
} |
|
901 |
} |
|
902 |
st->cr(); |
|
903 |
} |
|
904 |
||
905 |
void os::print_environment_variables(outputStream* st, const char** env_list, |
|
906 |
char* buffer, int len) { |
|
907 |
if (env_list) { |
|
908 |
st->print_cr("Environment Variables:"); |
|
909 |
||
910 |
for (int i = 0; env_list[i] != NULL; i++) { |
|
911 |
if (getenv(env_list[i], buffer, len)) { |
|
912 |
st->print(env_list[i]); |
|
913 |
st->print("="); |
|
914 |
st->print_cr(buffer); |
|
915 |
} |
|
916 |
} |
|
917 |
} |
|
918 |
} |
|
919 |
||
920 |
void os::print_cpu_info(outputStream* st) { |
|
921 |
// cpu |
|
922 |
st->print("CPU:"); |
|
923 |
st->print("total %d", os::processor_count()); |
|
924 |
// It's not safe to query number of active processors after crash |
|
925 |
// st->print("(active %d)", os::active_processor_count()); |
|
926 |
st->print(" %s", VM_Version::cpu_features()); |
|
927 |
st->cr(); |
|
10023
e99d9a03c0f5
7061225: os::print_cpu_info() should support os-specific data
jcoomes
parents:
9125
diff
changeset
|
928 |
pd_print_cpu_info(st); |
1 | 929 |
} |
930 |
||
931 |
void os::print_date_and_time(outputStream *st) { |
|
932 |
time_t tloc; |
|
933 |
(void)time(&tloc); |
|
934 |
st->print("time: %s", ctime(&tloc)); // ctime adds newline. |
|
935 |
||
936 |
double t = os::elapsedTime(); |
|
937 |
// NOTE: It tends to crash after a SEGV if we want to printf("%f",...) in |
|
938 |
// Linux. Must be a bug in glibc ? Workaround is to round "t" to int |
|
939 |
// before printf. We lost some precision, but who cares? |
|
940 |
st->print_cr("elapsed time: %d seconds", (int)t); |
|
941 |
} |
|
942 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
943 |
// moved from debug.cpp (used to be find()) but still called from there |
7108 | 944 |
// The verbose parameter is only set by the debug code in one case |
945 |
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
|
946 |
address addr = (address)x; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
947 |
CodeBlob* b = CodeCache::find_blob_unsafe(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
948 |
if (b != NULL) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
949 |
if (b->is_buffer_blob()) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
950 |
// the interpreter is generated into a buffer blob |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
951 |
InterpreterCodelet* i = Interpreter::codelet_containing(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
952 |
if (i != NULL) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
953 |
st->print_cr(INTPTR_FORMAT " is at code_begin+%d in an Interpreter codelet", addr, (int)(addr - i->code_begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
954 |
i->print_on(st); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
955 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
956 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
957 |
if (Interpreter::contains(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
958 |
st->print_cr(INTPTR_FORMAT " is pointing into interpreter code" |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
959 |
" (not bytecode specific)", addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
960 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
961 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
962 |
// |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
963 |
if (AdapterHandlerLibrary::contains(b)) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
964 |
st->print_cr(INTPTR_FORMAT " is at code_begin+%d in an AdapterHandler", addr, (int)(addr - b->code_begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
965 |
AdapterHandlerLibrary::print_handler_on(st, b); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
966 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
967 |
// the stubroutines are generated into a buffer blob |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
968 |
StubCodeDesc* d = StubCodeDesc::desc_for(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
969 |
if (d != NULL) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
970 |
st->print_cr(INTPTR_FORMAT " is at begin+%d in a stub", addr, (int)(addr - d->begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
971 |
d->print_on(st); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
972 |
st->cr(); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
973 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
974 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
975 |
if (StubRoutines::contains(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
976 |
st->print_cr(INTPTR_FORMAT " is pointing to an (unnamed) " |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
977 |
"stub routine", addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
978 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
979 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
980 |
// the InlineCacheBuffer is using stubs generated into a buffer blob |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
981 |
if (InlineCacheBuffer::contains(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
982 |
st->print_cr(INTPTR_FORMAT " is pointing into InlineCacheBuffer", addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
983 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
984 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
985 |
VtableStub* v = VtableStubs::stub_containing(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
986 |
if (v != NULL) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
987 |
st->print_cr(INTPTR_FORMAT " is at entry_point+%d in a vtable stub", addr, (int)(addr - v->entry_point())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
988 |
v->print_on(st); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
989 |
st->cr(); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
990 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
991 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
992 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
993 |
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
|
994 |
if (nm != NULL) { |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
995 |
ResourceMark rm; |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
996 |
st->print(INTPTR_FORMAT " is at entry_point+%d in (nmethod*)" INTPTR_FORMAT, |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
997 |
addr, (int)(addr - nm->entry_point()), nm); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
998 |
if (verbose) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
999 |
st->print(" for "); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1000 |
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
|
1001 |
} |
13923
4271ff38528f
8000228: Missing call to cr() when printing entry_point in nmethod, in os::print_location
stefank
parents:
13921
diff
changeset
|
1002 |
st->cr(); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1003 |
nm->print_nmethod(verbose); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1004 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1005 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1006 |
st->print_cr(INTPTR_FORMAT " is at code_begin+%d in ", addr, (int)(addr - b->code_begin())); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1007 |
b->print_on(st); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1008 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1009 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1010 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1011 |
if (Universe::heap()->is_in(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1012 |
HeapWord* p = Universe::heap()->block_start(addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1013 |
bool print = false; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1014 |
// If we couldn't find it it just may mean that heap wasn't parseable |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1015 |
// See if we were just given an oop directly |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1016 |
if (p != NULL && Universe::heap()->block_is_obj(p)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1017 |
print = true; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1018 |
} else if (p == NULL && ((oopDesc*)addr)->is_oop()) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1019 |
p = (HeapWord*) addr; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1020 |
print = true; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1021 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1022 |
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
|
1023 |
if (p == (HeapWord*) addr) { |
cfc740741651
8000230: Change os::print_location to be more descriptive when a location is pointing into an object
stefank
parents:
13857
diff
changeset
|
1024 |
st->print_cr(INTPTR_FORMAT " is an oop", addr); |
cfc740741651
8000230: Change os::print_location to be more descriptive when a location is pointing into an object
stefank
parents:
13857
diff
changeset
|
1025 |
} else { |
cfc740741651
8000230: Change os::print_location to be more descriptive when a location is pointing into an object
stefank
parents:
13857
diff
changeset
|
1026 |
st->print_cr(INTPTR_FORMAT " is pointing into object: " INTPTR_FORMAT, addr, p); |
cfc740741651
8000230: Change os::print_location to be more descriptive when a location is pointing into an object
stefank
parents:
13857
diff
changeset
|
1027 |
} |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1028 |
oop(p)->print_on(st); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1029 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1030 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1031 |
} else { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1032 |
if (Universe::heap()->is_in_reserved(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1033 |
st->print_cr(INTPTR_FORMAT " is an unallocated location " |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1034 |
"in the heap", addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1035 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1036 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1037 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1038 |
if (JNIHandles::is_global_handle((jobject) addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1039 |
st->print_cr(INTPTR_FORMAT " is a global jni handle", addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1040 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1041 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1042 |
if (JNIHandles::is_weak_global_handle((jobject) addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1043 |
st->print_cr(INTPTR_FORMAT " is a weak global jni handle", addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1044 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1045 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1046 |
#ifndef PRODUCT |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1047 |
// we don't keep the block list in product mode |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1048 |
if (JNIHandleBlock::any_contains((jobject) addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1049 |
st->print_cr(INTPTR_FORMAT " is a local jni handle", addr); |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1050 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1051 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1052 |
#endif |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1053 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1054 |
for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1055 |
// Check for privilege stack |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1056 |
if (thread->privileged_stack_top() != NULL && |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1057 |
thread->privileged_stack_top()->contains(addr)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1058 |
st->print_cr(INTPTR_FORMAT " is pointing into the privilege stack " |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1059 |
"for thread: " INTPTR_FORMAT, addr, thread); |
7108 | 1060 |
if (verbose) thread->print_on(st); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1061 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1062 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1063 |
// 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
|
1064 |
if (addr == (address)thread) { |
7108 | 1065 |
if (verbose) { |
1066 |
thread->print_on(st); |
|
1067 |
} else { |
|
1068 |
st->print_cr(INTPTR_FORMAT " is a thread", addr); |
|
1069 |
} |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1070 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1071 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1072 |
// 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
|
1073 |
// and print thread info |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1074 |
if (thread->stack_base() >= addr && |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1075 |
addr > (thread->stack_base() - thread->stack_size())) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1076 |
st->print_cr(INTPTR_FORMAT " is pointing into the stack for thread: " |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1077 |
INTPTR_FORMAT, addr, thread); |
7108 | 1078 |
if (verbose) thread->print_on(st); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1079 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1080 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1081 |
|
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1082 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1083 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1084 |
#ifndef PRODUCT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1085 |
// Check if in metaspace. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1086 |
if (ClassLoaderDataGraph::contains((address)addr)) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1087 |
// Use addr->print() from the debugger instead (not here) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1088 |
st->print_cr(INTPTR_FORMAT |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1089 |
" is pointing into metadata", addr); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1090 |
return; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1091 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1092 |
#endif |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1093 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1094 |
// Try an OS specific find |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1095 |
if (os::find(addr, st)) { |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1096 |
return; |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1097 |
} |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1098 |
|
7108 | 1099 |
st->print_cr(INTPTR_FORMAT " is an unknown value", addr); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5922
diff
changeset
|
1100 |
} |
1 | 1101 |
|
1102 |
// Looks like all platforms except IA64 can use the same function to check |
|
1103 |
// if C stack is walkable beyond current frame. The check for fp() is not |
|
1104 |
// necessary on Sparc, but it's harmless. |
|
1105 |
bool os::is_first_C_frame(frame* fr) { |
|
15475 | 1106 |
#if defined(IA64) && !defined(_WIN32) |
1107 |
// On IA64 we have to check if the callers bsp is still valid |
|
1108 |
// (i.e. within the register stack bounds). |
|
1109 |
// Notice: this only works for threads created by the VM and only if |
|
1110 |
// we walk the current stack!!! If we want to be able to walk |
|
1111 |
// arbitrary other threads, we'll have to somehow store the thread |
|
1112 |
// object in the frame. |
|
1113 |
Thread *thread = Thread::current(); |
|
1114 |
if ((address)fr->fp() <= |
|
1115 |
thread->register_stack_base() HPUX_ONLY(+ 0x0) LINUX_ONLY(+ 0x50)) { |
|
1116 |
// This check is a little hacky, because on Linux the first C |
|
1117 |
// frame's ('start_thread') register stack frame starts at |
|
1118 |
// "register_stack_base + 0x48" while on HPUX, the first C frame's |
|
1119 |
// ('__pthread_bound_body') register stack frame seems to really |
|
1120 |
// start at "register_stack_base". |
|
1121 |
return true; |
|
1122 |
} else { |
|
1123 |
return false; |
|
1124 |
} |
|
1125 |
#elif defined(IA64) && defined(_WIN32) |
|
1 | 1126 |
return true; |
15475 | 1127 |
#else |
1 | 1128 |
// Load up sp, fp, sender sp and sender fp, check for reasonable values. |
1129 |
// Check usp first, because if that's bad the other accessors may fault |
|
1130 |
// on some architectures. Ditto ufp second, etc. |
|
1131 |
uintptr_t fp_align_mask = (uintptr_t)(sizeof(address)-1); |
|
1132 |
// sp on amd can be 32 bit aligned. |
|
1133 |
uintptr_t sp_align_mask = (uintptr_t)(sizeof(int)-1); |
|
1134 |
||
1135 |
uintptr_t usp = (uintptr_t)fr->sp(); |
|
1136 |
if ((usp & sp_align_mask) != 0) return true; |
|
1137 |
||
1138 |
uintptr_t ufp = (uintptr_t)fr->fp(); |
|
1139 |
if ((ufp & fp_align_mask) != 0) return true; |
|
1140 |
||
1141 |
uintptr_t old_sp = (uintptr_t)fr->sender_sp(); |
|
1142 |
if ((old_sp & sp_align_mask) != 0) return true; |
|
1143 |
if (old_sp == 0 || old_sp == (uintptr_t)-1) return true; |
|
1144 |
||
1145 |
uintptr_t old_fp = (uintptr_t)fr->link(); |
|
1146 |
if ((old_fp & fp_align_mask) != 0) return true; |
|
1147 |
if (old_fp == 0 || old_fp == (uintptr_t)-1 || old_fp == ufp) return true; |
|
1148 |
||
1149 |
// stack grows downwards; if old_fp is below current fp or if the stack |
|
1150 |
// frame is too large, either the stack is corrupted or fp is not saved |
|
1151 |
// on stack (i.e. on x86, ebp may be used as general register). The stack |
|
1152 |
// is not walkable beyond current frame. |
|
1153 |
if (old_fp < ufp) return true; |
|
1154 |
if (old_fp - ufp > 64 * K) return true; |
|
1155 |
||
1156 |
return false; |
|
15475 | 1157 |
#endif |
1 | 1158 |
} |
1159 |
||
1160 |
#ifdef ASSERT |
|
1161 |
extern "C" void test_random() { |
|
1162 |
const double m = 2147483647; |
|
1163 |
double mean = 0.0, variance = 0.0, t; |
|
1164 |
long reps = 10000; |
|
1165 |
unsigned long seed = 1; |
|
1166 |
||
1167 |
tty->print_cr("seed %ld for %ld repeats...", seed, reps); |
|
1168 |
os::init_random(seed); |
|
1169 |
long num; |
|
1170 |
for (int k = 0; k < reps; k++) { |
|
1171 |
num = os::random(); |
|
1172 |
double u = (double)num / m; |
|
1173 |
assert(u >= 0.0 && u <= 1.0, "bad random number!"); |
|
1174 |
||
1175 |
// calculate mean and variance of the random sequence |
|
1176 |
mean += u; |
|
1177 |
variance += (u*u); |
|
1178 |
} |
|
1179 |
mean /= reps; |
|
1180 |
variance /= (reps - 1); |
|
1181 |
||
1182 |
assert(num == 1043618065, "bad seed"); |
|
1183 |
tty->print_cr("mean of the 1st 10000 numbers: %f", mean); |
|
1184 |
tty->print_cr("variance of the 1st 10000 numbers: %f", variance); |
|
1185 |
const double eps = 0.0001; |
|
1186 |
t = fabsd(mean - 0.5018); |
|
1187 |
assert(t < eps, "bad mean"); |
|
1188 |
t = (variance - 0.3355) < 0.0 ? -(variance - 0.3355) : variance - 0.3355; |
|
1189 |
assert(t < eps, "bad variance"); |
|
1190 |
} |
|
1191 |
#endif |
|
1192 |
||
1193 |
||
1194 |
// Set up the boot classpath. |
|
1195 |
||
1196 |
char* os::format_boot_path(const char* format_string, |
|
1197 |
const char* home, |
|
1198 |
int home_len, |
|
1199 |
char fileSep, |
|
1200 |
char pathSep) { |
|
1201 |
assert((fileSep == '/' && pathSep == ':') || |
|
1202 |
(fileSep == '\\' && pathSep == ';'), "unexpected seperator chars"); |
|
1203 |
||
1204 |
// Scan the format string to determine the length of the actual |
|
1205 |
// boot classpath, and handle platform dependencies as well. |
|
1206 |
int formatted_path_len = 0; |
|
1207 |
const char* p; |
|
1208 |
for (p = format_string; *p != 0; ++p) { |
|
1209 |
if (*p == '%') formatted_path_len += home_len - 1; |
|
1210 |
++formatted_path_len; |
|
1211 |
} |
|
1212 |
||
13195 | 1213 |
char* formatted_path = NEW_C_HEAP_ARRAY(char, formatted_path_len + 1, mtInternal); |
1 | 1214 |
if (formatted_path == NULL) { |
1215 |
return NULL; |
|
1216 |
} |
|
1217 |
||
1218 |
// Create boot classpath from format, substituting separator chars and |
|
1219 |
// java home directory. |
|
1220 |
char* q = formatted_path; |
|
1221 |
for (p = format_string; *p != 0; ++p) { |
|
1222 |
switch (*p) { |
|
1223 |
case '%': |
|
1224 |
strcpy(q, home); |
|
1225 |
q += home_len; |
|
1226 |
break; |
|
1227 |
case '/': |
|
1228 |
*q++ = fileSep; |
|
1229 |
break; |
|
1230 |
case ':': |
|
1231 |
*q++ = pathSep; |
|
1232 |
break; |
|
1233 |
default: |
|
1234 |
*q++ = *p; |
|
1235 |
} |
|
1236 |
} |
|
1237 |
*q = '\0'; |
|
1238 |
||
1239 |
assert((q - formatted_path) == formatted_path_len, "formatted_path size botched"); |
|
1240 |
return formatted_path; |
|
1241 |
} |
|
1242 |
||
1243 |
||
1244 |
bool os::set_boot_path(char fileSep, char pathSep) { |
|
1245 |
const char* home = Arguments::get_java_home(); |
|
1246 |
int home_len = (int)strlen(home); |
|
1247 |
||
1248 |
static const char* meta_index_dir_format = "%/lib/"; |
|
1249 |
static const char* meta_index_format = "%/lib/meta-index"; |
|
1250 |
char* meta_index = format_boot_path(meta_index_format, home, home_len, fileSep, pathSep); |
|
1251 |
if (meta_index == NULL) return false; |
|
1252 |
char* meta_index_dir = format_boot_path(meta_index_dir_format, home, home_len, fileSep, pathSep); |
|
1253 |
if (meta_index_dir == NULL) return false; |
|
1254 |
Arguments::set_meta_index_path(meta_index, meta_index_dir); |
|
1255 |
||
1256 |
// Any modification to the JAR-file list, for the boot classpath must be |
|
1257 |
// aligned with install/install/make/common/Pack.gmk. Note: boot class |
|
1258 |
// path class JARs, are stripped for StackMapTable to reduce download size. |
|
1259 |
static const char classpath_format[] = |
|
1260 |
"%/lib/resources.jar:" |
|
1261 |
"%/lib/rt.jar:" |
|
1262 |
"%/lib/sunrsasign.jar:" |
|
1263 |
"%/lib/jsse.jar:" |
|
1264 |
"%/lib/jce.jar:" |
|
1265 |
"%/lib/charsets.jar:" |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
11417
diff
changeset
|
1266 |
"%/lib/jfr.jar:" |
10739 | 1267 |
#ifdef __APPLE__ |
1268 |
"%/lib/JObjC.jar:" |
|
1269 |
#endif |
|
1 | 1270 |
"%/classes"; |
1271 |
char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep); |
|
1272 |
if (sysclasspath == NULL) return false; |
|
1273 |
Arguments::set_sysclasspath(sysclasspath); |
|
1274 |
||
1275 |
return true; |
|
1276 |
} |
|
1277 |
||
2358 | 1278 |
/* |
1279 |
* Splits a path, based on its separator, the number of |
|
1280 |
* elements is returned back in n. |
|
1281 |
* It is the callers responsibility to: |
|
1282 |
* a> check the value of n, and n may be 0. |
|
1283 |
* b> ignore any empty path elements |
|
1284 |
* c> free up the data. |
|
1285 |
*/ |
|
1286 |
char** os::split_path(const char* path, int* n) { |
|
1287 |
*n = 0; |
|
1288 |
if (path == NULL || strlen(path) == 0) { |
|
1289 |
return NULL; |
|
1290 |
} |
|
1291 |
const char psepchar = *os::path_separator(); |
|
13195 | 1292 |
char* inpath = (char*)NEW_C_HEAP_ARRAY(char, strlen(path) + 1, mtInternal); |
2358 | 1293 |
if (inpath == NULL) { |
1294 |
return NULL; |
|
1295 |
} |
|
14471
f3a6b82e25cf
8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents:
14120
diff
changeset
|
1296 |
strcpy(inpath, path); |
2358 | 1297 |
int count = 1; |
1298 |
char* p = strchr(inpath, psepchar); |
|
1299 |
// Get a count of elements to allocate memory |
|
1300 |
while (p != NULL) { |
|
1301 |
count++; |
|
1302 |
p++; |
|
1303 |
p = strchr(p, psepchar); |
|
1304 |
} |
|
13195 | 1305 |
char** opath = (char**) NEW_C_HEAP_ARRAY(char*, count, mtInternal); |
2358 | 1306 |
if (opath == NULL) { |
1307 |
return NULL; |
|
1308 |
} |
|
1309 |
||
1310 |
// do the actual splitting |
|
1311 |
p = inpath; |
|
1312 |
for (int i = 0 ; i < count ; i++) { |
|
1313 |
size_t len = strcspn(p, os::path_separator()); |
|
1314 |
if (len > JVM_MAXPATHLEN) { |
|
1315 |
return NULL; |
|
1316 |
} |
|
1317 |
// allocate the string and add terminator storage |
|
13195 | 1318 |
char* s = (char*)NEW_C_HEAP_ARRAY(char, len + 1, mtInternal); |
2358 | 1319 |
if (s == NULL) { |
1320 |
return NULL; |
|
1321 |
} |
|
1322 |
strncpy(s, p, len); |
|
1323 |
s[len] = '\0'; |
|
1324 |
opath[i] = s; |
|
1325 |
p += len + 1; |
|
1326 |
} |
|
13195 | 1327 |
FREE_C_HEAP_ARRAY(char, inpath, mtInternal); |
2358 | 1328 |
*n = count; |
1329 |
return opath; |
|
1330 |
} |
|
1331 |
||
1 | 1332 |
void os::set_memory_serialize_page(address page) { |
1333 |
int count = log2_intptr(sizeof(class JavaThread)) - log2_intptr(64); |
|
1334 |
_mem_serialize_page = (volatile int32_t *)page; |
|
1335 |
// We initialize the serialization page shift count here |
|
1336 |
// We assume a cache line size of 64 bytes |
|
1337 |
assert(SerializePageShiftCount == count, |
|
1338 |
"thread size changed, fix SerializePageShiftCount constant"); |
|
1339 |
set_serialize_page_mask((uintptr_t)(vm_page_size() - sizeof(int32_t))); |
|
1340 |
} |
|
1341 |
||
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1342 |
static volatile intptr_t SerializePageLock = 0; |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1343 |
|
1 | 1344 |
// This method is called from signal handler when SIGSEGV occurs while the current |
1345 |
// thread tries to store to the "read-only" memory serialize page during state |
|
1346 |
// transition. |
|
1347 |
void os::block_on_serialize_page_trap() { |
|
1348 |
if (TraceSafepoint) { |
|
1349 |
tty->print_cr("Block until the serialize page permission restored"); |
|
1350 |
} |
|
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1351 |
// When VMThread is holding the SerializePageLock during modifying the |
1 | 1352 |
// access permission of the memory serialize page, the following call |
1353 |
// will block until the permission of that page is restored to rw. |
|
1354 |
// Generally, it is unsafe to manipulate locks in signal handlers, but in |
|
1355 |
// 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
|
1356 |
// it can occur. |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1357 |
Thread::muxAcquire(&SerializePageLock, "set_memory_serialize_page"); |
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1358 |
Thread::muxRelease(&SerializePageLock); |
1 | 1359 |
} |
1360 |
||
1361 |
// Serialize all thread state variables |
|
1362 |
void os::serialize_thread_states() { |
|
1363 |
// On some platforms such as Solaris & Linux, the time duration of the page |
|
1364 |
// permission restoration is observed to be much longer than expected due to |
|
1365 |
// 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
|
1366 |
// 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
|
1367 |
// 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
|
1368 |
Thread::muxAcquire(&SerializePageLock, "serialize_thread_states"); |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
670
diff
changeset
|
1369 |
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
|
1370 |
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
|
1371 |
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
|
1372 |
os::vm_page_size(), MEM_PROT_RW); |
228
69939fa91efd
6610420: Debug VM crashes during monitor lock rank checking
xlu
parents:
1
diff
changeset
|
1373 |
Thread::muxRelease(&SerializePageLock); |
1 | 1374 |
} |
1375 |
||
1376 |
// Returns true if the current stack pointer is above the stack shadow |
|
1377 |
// pages, false otherwise. |
|
1378 |
||
1379 |
bool os::stack_shadow_pages_available(Thread *thread, methodHandle method) { |
|
1380 |
assert(StackRedPages > 0 && StackYellowPages > 0,"Sanity check"); |
|
1381 |
address sp = current_stack_pointer(); |
|
1382 |
// Check if we have StackShadowPages above the yellow zone. This parameter |
|
2131 | 1383 |
// is dependent on the depth of the maximum VM call stack possible from |
1 | 1384 |
// the handler for stack overflow. 'instanceof' in the stack overflow |
1385 |
// handler or a println uses at least 8k stack of VM and native code |
|
1386 |
// respectively. |
|
1387 |
const int framesize_in_bytes = |
|
1388 |
Interpreter::size_top_interpreter_activation(method()) * wordSize; |
|
1389 |
int reserved_area = ((StackShadowPages + StackRedPages + StackYellowPages) |
|
1390 |
* vm_page_size()) + framesize_in_bytes; |
|
1391 |
// The very lower end of the stack |
|
1392 |
address stack_limit = thread->stack_base() - thread->stack_size(); |
|
1393 |
return (sp > (stack_limit + reserved_area)); |
|
1394 |
} |
|
1395 |
||
1396 |
size_t os::page_size_for_region(size_t region_min_size, size_t region_max_size, |
|
1397 |
uint min_pages) |
|
1398 |
{ |
|
1399 |
assert(min_pages > 0, "sanity"); |
|
1400 |
if (UseLargePages) { |
|
1401 |
const size_t max_page_size = region_max_size / min_pages; |
|
1402 |
||
1403 |
for (unsigned int i = 0; _page_sizes[i] != 0; ++i) { |
|
1404 |
const size_t sz = _page_sizes[i]; |
|
1405 |
const size_t mask = sz - 1; |
|
1406 |
if ((region_min_size & mask) == 0 && (region_max_size & mask) == 0) { |
|
1407 |
// The largest page size with no fragmentation. |
|
1408 |
return sz; |
|
1409 |
} |
|
1410 |
||
1411 |
if (sz <= max_page_size) { |
|
1412 |
// The largest page size that satisfies the min_pages requirement. |
|
1413 |
return sz; |
|
1414 |
} |
|
1415 |
} |
|
1416 |
} |
|
1417 |
||
1418 |
return vm_page_size(); |
|
1419 |
} |
|
1420 |
||
1421 |
#ifndef PRODUCT |
|
10272 | 1422 |
void os::trace_page_sizes(const char* str, const size_t* page_sizes, int count) |
1423 |
{ |
|
1424 |
if (TracePageSizes) { |
|
1425 |
tty->print("%s: ", str); |
|
1426 |
for (int i = 0; i < count; ++i) { |
|
1427 |
tty->print(" " SIZE_FORMAT, page_sizes[i]); |
|
1428 |
} |
|
1429 |
tty->cr(); |
|
1430 |
} |
|
1431 |
} |
|
1432 |
||
1 | 1433 |
void os::trace_page_sizes(const char* str, const size_t region_min_size, |
1434 |
const size_t region_max_size, const size_t page_size, |
|
1435 |
const char* base, const size_t size) |
|
1436 |
{ |
|
1437 |
if (TracePageSizes) { |
|
1438 |
tty->print_cr("%s: min=" SIZE_FORMAT " max=" SIZE_FORMAT |
|
1439 |
" pg_sz=" SIZE_FORMAT " base=" PTR_FORMAT |
|
1440 |
" size=" SIZE_FORMAT, |
|
1441 |
str, region_min_size, region_max_size, |
|
1442 |
page_size, base, size); |
|
1443 |
} |
|
1444 |
} |
|
1445 |
#endif // #ifndef PRODUCT |
|
1446 |
||
1447 |
// This is the working definition of a server class machine: |
|
1448 |
// >= 2 physical CPU's and >=2GB of memory, with some fuzz |
|
1449 |
// because the graphics memory (?) sometimes masks physical memory. |
|
1450 |
// If you want to change the definition of a server class machine |
|
1451 |
// on some OS or platform, e.g., >=4GB on Windohs platforms, |
|
1452 |
// then you'll have to parameterize this method based on that state, |
|
1453 |
// as was done for logical processors here, or replicate and |
|
1454 |
// specialize this method for each platform. (Or fix os to have |
|
1455 |
// some inheritance structure and use subclassing. Sigh.) |
|
1456 |
// If you want some platform to always or never behave as a server |
|
1457 |
// class machine, change the setting of AlwaysActAsServerClassMachine |
|
1458 |
// and NeverActAsServerClassMachine in globals*.hpp. |
|
1459 |
bool os::is_server_class_machine() { |
|
1460 |
// First check for the early returns |
|
1461 |
if (NeverActAsServerClassMachine) { |
|
1462 |
return false; |
|
1463 |
} |
|
1464 |
if (AlwaysActAsServerClassMachine) { |
|
1465 |
return true; |
|
1466 |
} |
|
1467 |
// Then actually look at the machine |
|
1468 |
bool result = false; |
|
1469 |
const unsigned int server_processors = 2; |
|
1470 |
const julong server_memory = 2UL * G; |
|
1471 |
// We seem not to get our full complement of memory. |
|
1472 |
// We allow some part (1/8?) of the memory to be "missing", |
|
1473 |
// based on the sizes of DIMMs, and maybe graphics cards. |
|
1474 |
const julong missing_memory = 256UL * M; |
|
1475 |
||
1476 |
/* Is this a server class machine? */ |
|
1477 |
if ((os::active_processor_count() >= (int)server_processors) && |
|
1478 |
(os::physical_memory() >= (server_memory - missing_memory))) { |
|
1479 |
const unsigned int logical_processors = |
|
1480 |
VM_Version::logical_processors_per_package(); |
|
1481 |
if (logical_processors > 1) { |
|
1482 |
const unsigned int physical_packages = |
|
1483 |
os::active_processor_count() / logical_processors; |
|
1484 |
if (physical_packages > server_processors) { |
|
1485 |
result = true; |
|
1486 |
} |
|
1487 |
} else { |
|
1488 |
result = true; |
|
1489 |
} |
|
1490 |
} |
|
1491 |
return result; |
|
1492 |
} |
|
9125
3b9a527cd492
7017193: Small memory leak in get_stack_bounds os::create_stack_guard_pages
dsamersoff
parents:
8736
diff
changeset
|
1493 |
|
18025 | 1494 |
void os::SuspendedThreadTask::run() { |
1495 |
assert(Threads_lock->owned_by_self() || (_thread == VMThread::vm_thread()), "must have threads lock to call this"); |
|
1496 |
internal_do_task(); |
|
1497 |
_done = true; |
|
1498 |
} |
|
1499 |
||
13195 | 1500 |
bool os::create_stack_guard_pages(char* addr, size_t bytes) { |
1501 |
return os::pd_create_stack_guard_pages(addr, bytes); |
|
1502 |
} |
|
1503 |
||
1504 |
char* os::reserve_memory(size_t bytes, char* addr, size_t alignment_hint) { |
|
1505 |
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
|
1506 |
if (result != NULL) { |
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1507 |
MemTracker::record_virtual_memory_reserve((address)result, bytes, mtNone, CALLER_PC); |
13195 | 1508 |
} |
1509 |
||
1510 |
return result; |
|
1511 |
} |
|
17302
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1512 |
|
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1513 |
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
|
1514 |
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
|
1515 |
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
|
1516 |
if (result != NULL) { |
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1517 |
MemTracker::record_virtual_memory_reserve((address)result, bytes, mtNone, 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
|
1518 |
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
|
1519 |
} |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1520 |
|
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1521 |
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
|
1522 |
} |
915323420691
8013120: NMT: Kitchensink crashes with assert(next_region == NULL || !next_region->is_committed_region()) failed: Sanity check
zgu
parents:
16434
diff
changeset
|
1523 |
|
13195 | 1524 |
char* os::attempt_reserve_memory_at(size_t bytes, char* addr) { |
1525 |
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
|
1526 |
if (result != NULL) { |
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1527 |
MemTracker::record_virtual_memory_reserve((address)result, bytes, mtNone, CALLER_PC); |
13195 | 1528 |
} |
1529 |
return result; |
|
1530 |
} |
|
1531 |
||
1532 |
void os::split_reserved_memory(char *base, size_t size, |
|
1533 |
size_t split, bool realloc) { |
|
1534 |
pd_split_reserved_memory(base, size, split, realloc); |
|
1535 |
} |
|
1536 |
||
1537 |
bool os::commit_memory(char* addr, size_t bytes, bool executable) { |
|
1538 |
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
|
1539 |
if (res) { |
13195 | 1540 |
MemTracker::record_virtual_memory_commit((address)addr, bytes, CALLER_PC); |
1541 |
} |
|
1542 |
return res; |
|
1543 |
} |
|
1544 |
||
1545 |
bool os::commit_memory(char* addr, size_t size, size_t alignment_hint, |
|
1546 |
bool executable) { |
|
1547 |
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
|
1548 |
if (res) { |
13195 | 1549 |
MemTracker::record_virtual_memory_commit((address)addr, size, CALLER_PC); |
1550 |
} |
|
1551 |
return res; |
|
1552 |
} |
|
1553 |
||
18069
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1554 |
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
|
1555 |
const char* mesg) { |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1556 |
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
|
1557 |
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
|
1558 |
} |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1559 |
|
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1560 |
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
|
1561 |
bool executable, const char* mesg) { |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1562 |
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
|
1563 |
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
|
1564 |
} |
e6d4971c8650
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint
dcubed
parents:
18025
diff
changeset
|
1565 |
|
13195 | 1566 |
bool os::uncommit_memory(char* addr, size_t bytes) { |
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1567 |
MemTracker::Tracker tkr = MemTracker::get_virtual_memory_uncommit_tracker(); |
13195 | 1568 |
bool res = pd_uncommit_memory(addr, bytes); |
1569 |
if (res) { |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1570 |
tkr.record((address)addr, bytes); |
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1571 |
} else { |
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1572 |
tkr.discard(); |
13195 | 1573 |
} |
1574 |
return res; |
|
1575 |
} |
|
1576 |
||
1577 |
bool os::release_memory(char* addr, size_t bytes) { |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1578 |
MemTracker::Tracker tkr = MemTracker::get_virtual_memory_release_tracker(); |
13195 | 1579 |
bool res = pd_release_memory(addr, bytes); |
1580 |
if (res) { |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1581 |
tkr.record((address)addr, bytes); |
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1582 |
} else { |
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1583 |
tkr.discard(); |
13195 | 1584 |
} |
1585 |
return res; |
|
1586 |
} |
|
1587 |
||
1588 |
||
1589 |
char* os::map_memory(int fd, const char* file_name, size_t file_offset, |
|
1590 |
char *addr, size_t bytes, bool read_only, |
|
1591 |
bool allow_exec) { |
|
1592 |
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
|
1593 |
if (result != NULL) { |
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1594 |
MemTracker::record_virtual_memory_reserve_and_commit((address)result, bytes, mtNone, CALLER_PC); |
13195 | 1595 |
} |
1596 |
return result; |
|
1597 |
} |
|
1598 |
||
1599 |
char* os::remap_memory(int fd, const char* file_name, size_t file_offset, |
|
1600 |
char *addr, size_t bytes, bool read_only, |
|
1601 |
bool allow_exec) { |
|
1602 |
return pd_remap_memory(fd, file_name, file_offset, addr, bytes, |
|
1603 |
read_only, allow_exec); |
|
1604 |
} |
|
1605 |
||
1606 |
bool os::unmap_memory(char *addr, size_t bytes) { |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1607 |
MemTracker::Tracker tkr = MemTracker::get_virtual_memory_release_tracker(); |
13195 | 1608 |
bool result = pd_unmap_memory(addr, bytes); |
1609 |
if (result) { |
|
18086
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1610 |
tkr.record((address)addr, bytes); |
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1611 |
} else { |
f44cf213a775
8013651: NMT: reserve/release sequence id's in incorrect order due to race
zgu
parents:
18069
diff
changeset
|
1612 |
tkr.discard(); |
13195 | 1613 |
} |
1614 |
return result; |
|
1615 |
} |
|
1616 |
||
1617 |
void os::free_memory(char *addr, size_t bytes, size_t alignment_hint) { |
|
1618 |
pd_free_memory(addr, bytes, alignment_hint); |
|
1619 |
} |
|
1620 |
||
1621 |
void os::realign_memory(char *addr, size_t bytes, size_t alignment_hint) { |
|
1622 |
pd_realign_memory(addr, bytes, alignment_hint); |
|
1623 |
} |
|
1624 |
||
18025 | 1625 |
#ifndef TARGET_OS_FAMILY_windows |
1626 |
/* try to switch state from state "from" to state "to" |
|
1627 |
* returns the state set after the method is complete |
|
1628 |
*/ |
|
1629 |
os::SuspendResume::State os::SuspendResume::switch_state(os::SuspendResume::State from, |
|
1630 |
os::SuspendResume::State to) |
|
1631 |
{ |
|
1632 |
os::SuspendResume::State result = |
|
1633 |
(os::SuspendResume::State) Atomic::cmpxchg((jint) to, (jint *) &_state, (jint) from); |
|
1634 |
if (result == from) { |
|
1635 |
// success |
|
1636 |
return to; |
|
1637 |
} |
|
1638 |
return result; |
|
1639 |
} |
|
1640 |
#endif |