os.cpp revision 13211:e1bb3d3d7ee2
1193323Sed/*
2193323Sed * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
3193323Sed * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4193323Sed *
5193323Sed * This code is free software; you can redistribute it and/or modify it
6193323Sed * under the terms of the GNU General Public License version 2 only, as
7193323Sed * published by the Free Software Foundation.
8193323Sed *
9193323Sed * This code is distributed in the hope that it will be useful, but WITHOUT
10193323Sed * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11249423Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12198090Srdivacky * version 2 for more details (a copy is included in the LICENSE file that
13234353Sdim * accompanied this code).
14234353Sdim *
15193323Sed * You should have received a copy of the GNU General Public License version
16193323Sed * 2 along with this work; if not, write to the Free Software Foundation,
17193323Sed * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18193323Sed *
19193323Sed * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20193323Sed * or visit www.oracle.com if you need additional information or have any
21218893Sdim * questions.
22249423Sdim *
23198090Srdivacky */
24234353Sdim
25198090Srdivacky#include "precompiled.hpp"
26198090Srdivacky#include "classfile/classLoader.hpp"
27226633Sdim#include "classfile/javaClasses.hpp"
28226633Sdim#include "classfile/moduleEntry.hpp"
29198090Srdivacky#include "classfile/systemDictionary.hpp"
30198090Srdivacky#include "classfile/vmSymbols.hpp"
31263508Sdim#include "code/codeCache.hpp"
32198090Srdivacky#include "code/icBuffer.hpp"
33234353Sdim#include "code/vtableStubs.hpp"
34198090Srdivacky#include "gc/shared/vmGCOperations.hpp"
35203954Srdivacky#include "interpreter/interpreter.hpp"
36251662Sdim#include "logging/log.hpp"
37198090Srdivacky#include "logging/logStream.inline.hpp"
38198090Srdivacky#include "memory/allocation.inline.hpp"
39198090Srdivacky#ifdef ASSERT
40198090Srdivacky#include "memory/guardedMemory.hpp"
41198090Srdivacky#endif
42239462Sdim#include "memory/resourceArea.hpp"
43239462Sdim#include "oops/oop.inline.hpp"
44226633Sdim#include "prims/jvm.h"
45226633Sdim#include "prims/jvm_misc.hpp"
46243830Sdim#include "prims/privilegedStack.hpp"
47243830Sdim#include "runtime/arguments.hpp"
48193323Sed#include "runtime/atomic.hpp"
49193323Sed#include "runtime/frame.inline.hpp"
50234353Sdim#include "runtime/interfaceSupport.hpp"
51193323Sed#include "runtime/java.hpp"
52193323Sed#include "runtime/javaCalls.hpp"
53198090Srdivacky#include "runtime/mutexLocker.hpp"
54198090Srdivacky#include "runtime/os.inline.hpp"
55198090Srdivacky#include "runtime/stubRoutines.hpp"
56198090Srdivacky#include "runtime/thread.inline.hpp"
57198090Srdivacky#include "runtime/vm_version.hpp"
58249423Sdim#include "services/attachListener.hpp"
59249423Sdim#include "services/mallocTracker.hpp"
60198090Srdivacky#include "services/memTracker.hpp"
61198090Srdivacky#include "services/nmtCommon.hpp"
62198090Srdivacky#include "services/threadService.hpp"
63198090Srdivacky#include "utilities/defaultStream.hpp"
64263508Sdim#include "utilities/events.hpp"
65198090Srdivacky
66198090Srdivacky# include <signal.h>
67239462Sdim# include <errno.h>
68239462Sdim
69239462SdimOSThread*         os::_starting_thread    = NULL;
70239462Sdimaddress           os::_polling_page       = NULL;
71234353Sdimvolatile int32_t* os::_mem_serialize_page = NULL;
72239462Sdimuintptr_t         os::_serialize_page_mask = 0;
73239462Sdimvolatile unsigned int os::_rand_seed      = 1;
74234353Sdimint               os::_processor_count    = 0;
75234353Sdimint               os::_initial_active_processor_count = 0;
76203954Srdivackysize_t            os::_page_sizes[os::page_sizes_max];
77198090Srdivacky
78198090Srdivacky#ifndef PRODUCT
79251662Sdimjulong os::num_mallocs = 0;         // # of calls to malloc/realloc
80251662Sdimjulong os::alloc_bytes = 0;         // # of bytes allocated
81198090Srdivackyjulong os::num_frees = 0;           // # of calls to free
82198090Srdivackyjulong os::free_bytes = 0;          // # of bytes freed
83218893Sdim#endif
84198090Srdivacky
85218893Sdimstatic juint cur_malloc_words = 0;  // current size for MallocMaxTestWords
86239462Sdim
87239462Sdimvoid os_init_globals() {
88226633Sdim  // Called from init_globals().
89226633Sdim  // See Threads::create_vm() in thread.cpp, and init.cpp.
90243830Sdim  os::init_globals();
91243830Sdim}
92198090Srdivacky
93198090Srdivacky// Fill in buffer with current local time as an ISO-8601 string.
94198090Srdivacky// E.g., yyyy-mm-ddThh:mm:ss-zzzz.
95193323Sed// Returns buffer, or NULL if it failed.
96193323Sed// This would mostly be a call to
97193323Sed//     strftime(...., "%Y-%m-%d" "T" "%H:%M:%S" "%z", ....)
98193323Sed// except that on Windows the %z behaves badly, so we do it ourselves.
99193323Sed// Also, people wanted milliseconds on there,
100198090Srdivacky// and strftime doesn't do milliseconds.
101221345Sdimchar* os::iso8601_time(char* buffer, size_t buffer_length, bool utc) {
102234353Sdim  // Output will be of the form "YYYY-MM-DDThh:mm:ss.mmm+zzzz\0"
103234353Sdim  //                                      1         2
104243830Sdim  //                             12345678901234567890123456789
105243830Sdim  // format string: "%04d-%02d-%02dT%02d:%02d:%02d.%03d%c%02d%02d"
106263508Sdim  static const size_t needed_buffer = 29;
107193323Sed
108193323Sed  // Sanity check the arguments
109234353Sdim  if (buffer == NULL) {
110193323Sed    assert(false, "NULL buffer");
111193323Sed    return NULL;
112193323Sed  }
113193323Sed  if (buffer_length < needed_buffer) {
114193323Sed    assert(false, "buffer_length too small");
115193323Sed    return NULL;
116194612Sed  }
117198090Srdivacky  // Get the current time
118193323Sed  jlong milliseconds_since_19700101 = javaTimeMillis();
119193323Sed  const int milliseconds_per_microsecond = 1000;
120193323Sed  const time_t seconds_since_19700101 =
121221345Sdim    milliseconds_since_19700101 / milliseconds_per_microsecond;
122226633Sdim  const int milliseconds_after_second =
123193323Sed    milliseconds_since_19700101 % milliseconds_per_microsecond;
124199989Srdivacky  // Convert the time value to a tm and timezone variable
125221345Sdim  struct tm time_struct;
126198090Srdivacky  if (utc) {
127198090Srdivacky    if (gmtime_pd(&seconds_since_19700101, &time_struct) == NULL) {
128195340Sed      assert(false, "Failed gmtime_pd");
129198090Srdivacky      return NULL;
130198090Srdivacky    }
131198396Srdivacky  } else {
132210299Sed    if (localtime_pd(&seconds_since_19700101, &time_struct) == NULL) {
133224145Sdim      assert(false, "Failed localtime_pd");
134249423Sdim      return NULL;
135234353Sdim    }
136239462Sdim  }
137243830Sdim#if defined(_ALLBSD_SOURCE)
138263508Sdim  const time_t zone = (time_t) time_struct.tm_gmtoff;
139263508Sdim#else
140193323Sed  const time_t zone = timezone;
141193323Sed#endif
142234353Sdim
143193323Sed  // If daylight savings time is in effect,
144193323Sed  // we are 1 hour East of our time zone
145218893Sdim  const time_t seconds_per_minute = 60;
146218893Sdim  const time_t minutes_per_hour = 60;
147218893Sdim  const time_t seconds_per_hour = seconds_per_minute * minutes_per_hour;
148218893Sdim  time_t UTC_to_local = zone;
149234353Sdim  if (time_struct.tm_isdst > 0) {
150218893Sdim    UTC_to_local = UTC_to_local - seconds_per_hour;
151249423Sdim  }
152218893Sdim
153218893Sdim  // No offset when dealing with UTC
154243830Sdim  if (utc) {
155243830Sdim    UTC_to_local = 0;
156218893Sdim  }
157218893Sdim
158234353Sdim  // Compute the time zone offset.
159218893Sdim  //    localtime_pd() sets timezone to the difference (in seconds)
160218893Sdim  //    between UTC and and local time.
161199481Srdivacky  //    ISO 8601 says we need the difference between local time and UTC,
162234353Sdim  //    we change the sign of the localtime_pd() result.
163249423Sdim  const time_t local_to_UTC = -(UTC_to_local);
164234353Sdim  // Then we have to figure out if if we are ahead (+) or behind (-) UTC.
165234353Sdim  char sign_local_to_UTC = '+';
166234353Sdim  time_t abs_local_to_UTC = local_to_UTC;
167234353Sdim  if (local_to_UTC < 0) {
168234353Sdim    sign_local_to_UTC = '-';
169234353Sdim    abs_local_to_UTC = -(abs_local_to_UTC);
170234353Sdim  }
171234353Sdim  // Convert time zone offset seconds to hours and minutes.
172234353Sdim  const time_t zone_hours = (abs_local_to_UTC / seconds_per_hour);
173263508Sdim  const time_t zone_min =
174234353Sdim    ((abs_local_to_UTC % seconds_per_hour) / seconds_per_minute);
175234353Sdim
176234353Sdim  // Print an ISO 8601 date and time stamp into the buffer
177234353Sdim  const int year = 1900 + time_struct.tm_year;
178251662Sdim  const int month = 1 + time_struct.tm_mon;
179234353Sdim  const int printed = jio_snprintf(buffer, buffer_length,
180234353Sdim                                   "%04d-%02d-%02dT%02d:%02d:%02d.%03d%c%02d%02d",
181234353Sdim                                   year,
182234353Sdim                                   month,
183234353Sdim                                   time_struct.tm_mday,
184239462Sdim                                   time_struct.tm_hour,
185239462Sdim                                   time_struct.tm_min,
186234353Sdim                                   time_struct.tm_sec,
187234353Sdim                                   milliseconds_after_second,
188243830Sdim                                   sign_local_to_UTC,
189243830Sdim                                   zone_hours,
190234353Sdim                                   zone_min);
191198090Srdivacky  if (printed == 0) {
192198090Srdivacky    assert(false, "Failed jio_printf");
193206083Srdivacky    return NULL;
194199481Srdivacky  }
195221345Sdim  return buffer;
196199481Srdivacky}
197199481Srdivacky
198234353SdimOSReturn os::set_priority(Thread* thread, ThreadPriority p) {
199234353Sdim#ifdef ASSERT
200234353Sdim  if (!(!thread->is_Java_thread() ||
201234353Sdim         Thread::current() == thread  ||
202234353Sdim         Threads_lock->owned_by_self()
203263508Sdim         || thread->is_Compiler_thread()
204234353Sdim        )) {
205234353Sdim    assert(false, "possibility of dangling Thread pointer");
206234353Sdim  }
207234353Sdim#endif
208234353Sdim
209234353Sdim  if (p >= MinPriority && p <= MaxPriority) {
210239462Sdim    int priority = java_to_os_priority[p];
211239462Sdim    return set_native_priority(thread, priority);
212234353Sdim  } else {
213234353Sdim    assert(false, "Should not happen");
214243830Sdim    return OS_ERR;
215243830Sdim  }
216234353Sdim}
217199481Srdivacky
218199481Srdivacky// The mapping from OS priority back to Java priority may be inexact because
219234353Sdim// Java priorities can map M:1 with native priorities. If you want the definite
220234353Sdim// Java priority then use JavaThread::java_priority()
221234353SdimOSReturn os::get_priority(const Thread* const thread, ThreadPriority& priority) {
222234353Sdim  int p;
223234353Sdim  int os_prio;
224263508Sdim  OSReturn ret = get_native_priority(thread, &os_prio);
225234353Sdim  if (ret != OS_OK) return ret;
226234353Sdim
227263508Sdim  if (java_to_os_priority[MaxPriority] > java_to_os_priority[MinPriority]) {
228249423Sdim    for (p = MaxPriority; p > MinPriority && java_to_os_priority[p] > os_prio; p--) ;
229234353Sdim  } else {
230234353Sdim    // niceness values are in reverse order
231234353Sdim    for (p = MaxPriority; p > MinPriority && java_to_os_priority[p] < os_prio; p--) ;
232234353Sdim  }
233234353Sdim  priority = (ThreadPriority)p;
234234353Sdim  return OS_OK;
235234353Sdim}
236234353Sdim
237234353Sdim
238234353Sdim// --------------------- sun.misc.Signal (optional) ---------------------
239234353Sdim
240234353Sdim
241234353Sdim// SIGBREAK is sent by the keyboard to query the VM state
242251662Sdim#ifndef SIGBREAK
243234353Sdim#define SIGBREAK SIGQUIT
244263508Sdim#endif
245234353Sdim
246234353Sdim// sigexitnum_pd is a platform-specific special signal used for terminating the Signal thread.
247239462Sdim
248239462Sdim
249234353Sdimstatic void signal_thread_entry(JavaThread* thread, TRAPS) {
250234353Sdim  os::set_priority(thread, NearMaxPriority);
251243830Sdim  while (true) {
252243830Sdim    int sig;
253234353Sdim    {
254234353Sdim      // FIXME : Currently we have not decided what should be the status
255193323Sed      //         for this java thread blocked here. Once we decide about
256234353Sdim      //         that we should fix this.
257234353Sdim      sig = os::signal_wait();
258234353Sdim    }
259234353Sdim    if (sig == os::sigexitnum_pd()) {
260234353Sdim       // Terminate the signal thread
261234353Sdim       return;
262234353Sdim    }
263243830Sdim
264243830Sdim    switch (sig) {
265263508Sdim      case SIGBREAK: {
266234353Sdim        // Check if the signal is a trigger to start the Attach Listener - in that
267212904Sdim        // case don't print stack traces.
268193323Sed        if (!DisableAttachMechanism && AttachListener::is_init_trigger()) {
269234353Sdim          continue;
270234353Sdim        }
271234353Sdim        // Print stack traces
272234353Sdim        // Any SIGBREAK operations added here should make sure to flush
273234353Sdim        // the output stream (e.g. tty->flush()) after output.  See 4803766.
274234353Sdim        // Each module also prints an extra carriage return after its output.
275234353Sdim        VM_PrintThreads op;
276234353Sdim        VMThread::execute(&op);
277234353Sdim        VM_PrintJNI jni_op;
278234353Sdim        VMThread::execute(&jni_op);
279234353Sdim        VM_FindDeadlocks op1(tty);
280234353Sdim        VMThread::execute(&op1);
281234353Sdim        Universe::print_heap_at_SIGBREAK();
282234353Sdim        if (PrintClassHistogram) {
283234353Sdim          VM_GC_HeapInspection op1(tty, true /* force full GC before heap inspection */);
284234353Sdim          VMThread::execute(&op1);
285234353Sdim        }
286234353Sdim        if (JvmtiExport::should_post_data_dump()) {
287234353Sdim          JvmtiExport::post_data_dump();
288234353Sdim        }
289249423Sdim        break;
290234353Sdim      }
291239462Sdim      default: {
292243830Sdim        // Dispatch the signal to java
293263508Sdim        HandleMark hm(THREAD);
294263508Sdim        Klass* klass = SystemDictionary::resolve_or_null(vmSymbols::jdk_internal_misc_Signal(), THREAD);
295234353Sdim        if (klass != NULL) {
296212904Sdim          JavaValue result(T_VOID);
297193323Sed          JavaCallArguments args;
298234353Sdim          args.push_int(sig);
299234353Sdim          JavaCalls::call_static(
300234353Sdim            &result,
301234353Sdim            klass,
302234353Sdim            vmSymbols::dispatch_name(),
303249423Sdim            vmSymbols::int_void_signature(),
304234353Sdim            &args,
305234353Sdim            THREAD
306243830Sdim          );
307243830Sdim        }
308234353Sdim        if (HAS_PENDING_EXCEPTION) {
309212904Sdim          // tty is initialized early so we don't expect it to be null, but
310193323Sed          // if it is we can't risk doing an initialization that might
311234353Sdim          // trigger additional out-of-memory conditions
312234353Sdim          if (tty != NULL) {
313234353Sdim            char klass_name[256];
314234353Sdim            char tmp_sig_name[16];
315234353Sdim            const char* sig_name = "UNKNOWN";
316234353Sdim            InstanceKlass::cast(PENDING_EXCEPTION->klass())->
317234353Sdim              name()->as_klass_external_name(klass_name, 256);
318234353Sdim            if (os::exception_name(sig, tmp_sig_name, 16) != NULL)
319234353Sdim              sig_name = tmp_sig_name;
320234353Sdim            warning("Exception %s occurred dispatching signal %s to handler"
321218893Sdim                    "- the VM may need to be forcibly terminated",
322218893Sdim                    klass_name, sig_name );
323234353Sdim          }
324234353Sdim          CLEAR_PENDING_EXCEPTION;
325234353Sdim        }
326234353Sdim      }
327234353Sdim    }
328234353Sdim  }
329234353Sdim}
330234353Sdim
331234353Sdimvoid os::init_before_ergo() {
332234353Sdim  initialize_initial_active_processor_count();
333234353Sdim  // We need to initialize large page support here because ergonomics takes some
334234353Sdim  // decisions depending on large page support and the calculated large page size.
335234353Sdim  large_page_init();
336212904Sdim
337234353Sdim  // We need to adapt the configured number of stack protection pages given
338234353Sdim  // in 4K pages to the actual os page size. We must do this before setting
339234353Sdim  // up minimal stack sizes etc. in os::init_2().
340234353Sdim  JavaThread::set_stack_red_zone_size     (align_size_up(StackRedPages      * 4 * K, vm_page_size()));
341234353Sdim  JavaThread::set_stack_yellow_zone_size  (align_size_up(StackYellowPages   * 4 * K, vm_page_size()));
342234353Sdim  JavaThread::set_stack_reserved_zone_size(align_size_up(StackReservedPages * 4 * K, vm_page_size()));
343234353Sdim  JavaThread::set_stack_shadow_zone_size  (align_size_up(StackShadowPages   * 4 * K, vm_page_size()));
344234353Sdim
345234353Sdim  // VM version initialization identifies some characteristics of the
346234353Sdim  // platform that are used during ergonomic decisions.
347234353Sdim  VM_Version::init_before_ergo();
348234353Sdim}
349234353Sdim
350193323Sedvoid os::signal_init(TRAPS) {
351193323Sed  if (!ReduceSignalUsage) {
352212904Sdim    // Setup JavaThread for processing signals
353212904Sdim    Klass* k = SystemDictionary::resolve_or_fail(vmSymbols::java_lang_Thread(), true, CHECK);
354212904Sdim    InstanceKlass* ik = InstanceKlass::cast(k);
355234353Sdim    instanceHandle thread_oop = ik->allocate_instance_handle(CHECK);
356212904Sdim
357212904Sdim    const char thread_name[] = "Signal Dispatcher";
358212904Sdim    Handle string = java_lang_String::create_from_str(thread_name, CHECK);
359212904Sdim
360212904Sdim    // Initialize thread_oop to put it into the system threadGroup
361212904Sdim    Handle thread_group (THREAD, Universe::system_thread_group());
362212904Sdim    JavaValue result(T_VOID);
363212904Sdim    JavaCalls::call_special(&result, thread_oop,
364234353Sdim                           ik,
365212904Sdim                           vmSymbols::object_initializer_name(),
366212904Sdim                           vmSymbols::threadgroup_string_void_signature(),
367234353Sdim                           thread_group,
368212904Sdim                           string,
369212904Sdim                           CHECK);
370234353Sdim
371218893Sdim    Klass* group = SystemDictionary::ThreadGroup_klass();
372218893Sdim    JavaCalls::call_special(&result,
373234353Sdim                            thread_group,
374212904Sdim                            group,
375212904Sdim                            vmSymbols::add_method_name(),
376212904Sdim                            vmSymbols::thread_void_signature(),
377218893Sdim                            thread_oop,         // ARG 1
378212904Sdim                            CHECK);
379212904Sdim
380212904Sdim    os::signal_init_pd();
381218893Sdim
382212904Sdim    { MutexLocker mu(Threads_lock);
383212904Sdim      JavaThread* signal_thread = new JavaThread(&signal_thread_entry);
384212904Sdim
385212904Sdim      // At this point it may be possible that no osthread was created for the
386218893Sdim      // JavaThread due to lack of memory. We would have to throw an exception
387212904Sdim      // in that case. However, since this must work and we do not allow
388212904Sdim      // exceptions anyway, check and abort if this fails.
389212904Sdim      if (signal_thread == NULL || signal_thread->osthread() == NULL) {
390212904Sdim        vm_exit_during_initialization("java.lang.OutOfMemoryError",
391212904Sdim                                      os::native_thread_creation_failed_msg());
392218893Sdim      }
393212904Sdim
394212904Sdim      java_lang_Thread::set_thread(thread_oop(), signal_thread);
395212904Sdim      java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
396212904Sdim      java_lang_Thread::set_daemon(thread_oop());
397212904Sdim
398212904Sdim      signal_thread->set_threadObj(thread_oop());
399234353Sdim      Threads::add(signal_thread);
400212904Sdim      Thread::start(signal_thread);
401234353Sdim    }
402212904Sdim    // Handle ^BREAK
403212904Sdim    os::signal(SIGBREAK, os::user_handler());
404212904Sdim  }
405234353Sdim}
406212904Sdim
407212904Sdim
408212904Sdimvoid os::terminate_signal_thread() {
409234353Sdim  if (!ReduceSignalUsage)
410212904Sdim    signal_notify(sigexitnum_pd());
411212904Sdim}
412218893Sdim
413234353Sdim
414218893Sdim// --------------------- loading libraries ---------------------
415218893Sdim
416212904Sdimtypedef jint (JNICALL *JNI_OnLoad_t)(JavaVM *, void *);
417212904Sdimextern struct JavaVM_ main_vm;
418212904Sdim
419212904Sdimstatic void* _native_java_library = NULL;
420212904Sdim
421212904Sdimvoid* os::native_java_library() {
422212904Sdim  if (_native_java_library == NULL) {
423212904Sdim    char buffer[JVM_MAXPATHLEN];
424212904Sdim    char ebuf[1024];
425212904Sdim
426212904Sdim    // Try to load verify dll first. In 1.3 java dll depends on it and is not
427212904Sdim    // always able to find it when the loading executable is outside the JDK.
428212904Sdim    // In order to keep working with 1.2 we ignore any loading errors.
429212904Sdim    if (dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(),
430212904Sdim                       "verify")) {
431212904Sdim      dll_load(buffer, ebuf, sizeof(ebuf));
432212904Sdim    }
433212904Sdim
434234353Sdim    // Load java dll
435234353Sdim    if (dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(),
436212904Sdim                       "java")) {
437212904Sdim      _native_java_library = dll_load(buffer, ebuf, sizeof(ebuf));
438212904Sdim    }
439212904Sdim    if (_native_java_library == NULL) {
440212904Sdim      vm_exit_during_initialization("Unable to load native library", ebuf);
441212904Sdim    }
442212904Sdim
443212904Sdim#if defined(__OpenBSD__)
444212904Sdim    // Work-around OpenBSD's lack of $ORIGIN support by pre-loading libnet.so
445212904Sdim    // ignore errors
446212904Sdim    if (dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(),
447218893Sdim                       "net")) {
448212904Sdim      dll_load(buffer, ebuf, sizeof(ebuf));
449212904Sdim    }
450212904Sdim#endif
451212904Sdim  }
452212904Sdim  return _native_java_library;
453212904Sdim}
454218893Sdim
455218893Sdim/*
456218893Sdim * Support for finding Agent_On(Un)Load/Attach<_lib_name> if it exists.
457212904Sdim * If check_lib == true then we are looking for an
458212904Sdim * Agent_OnLoad_lib_name or Agent_OnAttach_lib_name function to determine if
459212904Sdim * this library is statically linked into the image.
460212904Sdim * If check_lib == false then we will look for the appropriate symbol in the
461212904Sdim * executable if agent_lib->is_static_lib() == true or in the shared library
462212904Sdim * referenced by 'handle'.
463234353Sdim */
464234353Sdimvoid* os::find_agent_function(AgentLibrary *agent_lib, bool check_lib,
465212904Sdim                              const char *syms[], size_t syms_len) {
466212904Sdim  assert(agent_lib != NULL, "sanity check");
467212904Sdim  const char *lib_name;
468212904Sdim  void *handle = agent_lib->os_lib();
469212904Sdim  void *entryName = NULL;
470212904Sdim  char *agent_function_name;
471212904Sdim  size_t i;
472212904Sdim
473212904Sdim  // If checking then use the agent name otherwise test is_static_lib() to
474212904Sdim  // see how to process this lookup
475212904Sdim  lib_name = ((check_lib || agent_lib->is_static_lib()) ? agent_lib->name() : NULL);
476212904Sdim  for (i = 0; i < syms_len; i++) {
477212904Sdim    agent_function_name = build_agent_function_name(syms[i], lib_name, agent_lib->is_absolute_path());
478212904Sdim    if (agent_function_name == NULL) {
479212904Sdim      break;
480212904Sdim    }
481212904Sdim    entryName = dll_lookup(handle, agent_function_name);
482212904Sdim    FREE_C_HEAP_ARRAY(char, agent_function_name);
483212904Sdim    if (entryName != NULL) {
484212904Sdim      break;
485212904Sdim    }
486198090Srdivacky  }
487198090Srdivacky  return entryName;
488193323Sed}
489193323Sed
490198090Srdivacky// See if the passed in agent is statically linked into the VM image.
491198090Srdivackybool os::find_builtin_agent(AgentLibrary *agent_lib, const char *syms[],
492198090Srdivacky                            size_t syms_len) {
493193323Sed  void *ret;
494193323Sed  void *proc_handle;
495198090Srdivacky  void *save_handle;
496198090Srdivacky
497198090Srdivacky  assert(agent_lib != NULL, "sanity check");
498198090Srdivacky  if (agent_lib->name() == NULL) {
499193323Sed    return false;
500193323Sed  }
501198090Srdivacky  proc_handle = get_default_process_handle();
502198090Srdivacky  // Check for Agent_OnLoad/Attach_lib_name function
503198090Srdivacky  save_handle = agent_lib->os_lib();
504198090Srdivacky  // We want to look in this process' symbol table.
505193323Sed  agent_lib->set_os_lib(proc_handle);
506193323Sed  ret = find_agent_function(agent_lib, true, syms, syms_len);
507198090Srdivacky  if (ret != NULL) {
508198090Srdivacky    // Found an entry point like Agent_OnLoad_lib_name so we have a static agent
509198090Srdivacky    agent_lib->set_valid();
510193323Sed    agent_lib->set_static_lib(true);
511193323Sed    return true;
512198090Srdivacky  }
513198090Srdivacky  agent_lib->set_os_lib(save_handle);
514221345Sdim  return false;
515218893Sdim}
516221345Sdim
517221345Sdim// --------------------- heap allocation utilities ---------------------
518221345Sdim
519218893Sdimchar *os::strdup(const char *str, MEMFLAGS flags) {
520198090Srdivacky  size_t size = strlen(str);
521198090Srdivacky  char *dup_str = (char *)malloc(size + 1, flags);
522221345Sdim  if (dup_str == NULL) return NULL;
523218893Sdim  strcpy(dup_str, str);
524198090Srdivacky  return dup_str;
525193323Sed}
526193323Sed
527221345Sdimchar* os::strdup_check_oom(const char* str, MEMFLAGS flags) {
528221345Sdim  char* p = os::strdup(str, flags);
529198090Srdivacky  if (p == NULL) {
530218893Sdim    vm_exit_out_of_memory(strlen(str) + 1, OOM_MALLOC_ERROR, "os::strdup_check_oom");
531221345Sdim  }
532221345Sdim  return p;
533221345Sdim}
534221345Sdim
535218893Sdim
536221345Sdim#define paranoid                 0  /* only set to 1 if you suspect checking code has bug */
537221345Sdim
538198090Srdivacky#ifdef ASSERT
539221345Sdim
540221345Sdimstatic void verify_memory(void* ptr) {
541221345Sdim  GuardedMemory guarded(ptr);
542221345Sdim  if (!guarded.verify_guards()) {
543221345Sdim    tty->print_cr("## nof_mallocs = " UINT64_FORMAT ", nof_frees = " UINT64_FORMAT, os::num_mallocs, os::num_frees);
544198090Srdivacky    tty->print_cr("## memory stomp:");
545221345Sdim    guarded.print_on(tty);
546221345Sdim    fatal("memory stomping error");
547218893Sdim  }
548221345Sdim}
549221345Sdim
550221345Sdim#endif
551221345Sdim
552193323Sed//
553193323Sed// This function supports testing of the malloc out of memory
554234353Sdim// condition without really running the system out of memory.
555234353Sdim//
556234353Sdimstatic bool has_reached_max_malloc_test_peak(size_t alloc_size) {
557234353Sdim  if (MallocMaxTestWords > 0) {
558234353Sdim    jint words = (jint)(alloc_size / BytesPerWord);
559234353Sdim
560234353Sdim    if ((cur_malloc_words + words) > MallocMaxTestWords) {
561234353Sdim      return true;
562234353Sdim    }
563234353Sdim    Atomic::add(words, (volatile jint *)&cur_malloc_words);
564234353Sdim  }
565234353Sdim  return false;
566234353Sdim}
567234353Sdim
568234353Sdimvoid* os::malloc(size_t size, MEMFLAGS flags) {
569234353Sdim  return os::malloc(size, flags, CALLER_PC);
570234353Sdim}
571234353Sdim
572234353Sdimvoid* os::malloc(size_t size, MEMFLAGS memflags, const NativeCallStack& stack) {
573234353Sdim  NOT_PRODUCT(inc_stat_counter(&num_mallocs, 1));
574234353Sdim  NOT_PRODUCT(inc_stat_counter(&alloc_bytes, size));
575234353Sdim
576234353Sdim#ifdef ASSERT
577234353Sdim  // checking for the WatcherThread and crash_protection first
578234353Sdim  // since os::malloc can be called when the libjvm.{dll,so} is
579234353Sdim  // first loaded and we don't have a thread yet.
580234353Sdim  // try to find the thread after we see that the watcher thread
581234353Sdim  // exists and has crash protection.
582234353Sdim  WatcherThread *wt = WatcherThread::watcher_thread();
583234353Sdim  if (wt != NULL && wt->has_crash_protection()) {
584234353Sdim    Thread* thread = Thread::current_or_null();
585234353Sdim    if (thread == wt) {
586234353Sdim      assert(!wt->has_crash_protection(),
587234353Sdim          "Can't malloc with crash protection from WatcherThread");
588234353Sdim    }
589234353Sdim  }
590234353Sdim#endif
591234353Sdim
592234353Sdim  if (size == 0) {
593239462Sdim    // return a valid pointer if size is zero
594239462Sdim    // if NULL is returned the calling functions assume out of memory.
595239462Sdim    size = 1;
596239462Sdim  }
597239462Sdim
598239462Sdim  // NMT support
599239462Sdim  NMT_TrackingLevel level = MemTracker::tracking_level();
600239462Sdim  size_t            nmt_header_size = MemTracker::malloc_header_size(level);
601239462Sdim
602239462Sdim#ifndef ASSERT
603239462Sdim  const size_t alloc_size = size + nmt_header_size;
604239462Sdim#else
605239462Sdim  const size_t alloc_size = GuardedMemory::get_total_size(size + nmt_header_size);
606239462Sdim  if (size + nmt_header_size > alloc_size) { // Check for rollover.
607239462Sdim    return NULL;
608239462Sdim  }
609239462Sdim#endif
610239462Sdim
611239462Sdim  // For the test flag -XX:MallocMaxTestWords
612239462Sdim  if (has_reached_max_malloc_test_peak(size)) {
613239462Sdim    return NULL;
614239462Sdim  }
615239462Sdim
616198090Srdivacky  u_char* ptr;
617234353Sdim  ptr = (u_char*)::malloc(alloc_size);
618193323Sed
619193323Sed#ifdef ASSERT
620193323Sed  if (ptr == NULL) {
621193323Sed    return NULL;
622193323Sed  }
623193323Sed  // Wrap memory with guard
624193323Sed  GuardedMemory guarded(ptr, size + nmt_header_size);
625193323Sed  ptr = guarded.get_user_ptr();
626193323Sed#endif
627193323Sed  if ((intptr_t)ptr == (intptr_t)MallocCatchPtr) {
628193323Sed    tty->print_cr("os::malloc caught, " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, p2i(ptr));
629193323Sed    breakpoint();
630193323Sed  }
631193323Sed  debug_only(if (paranoid) verify_memory(ptr));
632218893Sdim  if (PrintMalloc && tty != NULL) {
633218893Sdim    tty->print_cr("os::malloc " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, p2i(ptr));
634218893Sdim  }
635218893Sdim
636199481Srdivacky  // we do not track guard memory
637198090Srdivacky  return MemTracker::record_malloc((address)ptr, size, memflags, stack, level);
638198090Srdivacky}
639198090Srdivacky
640198090Srdivackyvoid* os::realloc(void *memblock, size_t size, MEMFLAGS flags) {
641198090Srdivacky  return os::realloc(memblock, size, flags, CALLER_PC);
642198090Srdivacky}
643198090Srdivacky
644198090Srdivackyvoid* os::realloc(void *memblock, size_t size, MEMFLAGS memflags, const NativeCallStack& stack) {
645193323Sed
646193323Sed  // For the test flag -XX:MallocMaxTestWords
647199481Srdivacky  if (has_reached_max_malloc_test_peak(size)) {
648193323Sed    return NULL;
649193323Sed  }
650193323Sed
651199481Srdivacky  if (size == 0) {
652193323Sed    // return a valid pointer if size is zero
653193323Sed    // if NULL is returned the calling functions assume out of memory.
654193323Sed    size = 1;
655193323Sed  }
656193323Sed
657193323Sed#ifndef ASSERT
658193323Sed  NOT_PRODUCT(inc_stat_counter(&num_mallocs, 1));
659199481Srdivacky  NOT_PRODUCT(inc_stat_counter(&alloc_bytes, size));
660199481Srdivacky   // NMT support
661193323Sed  void* membase = MemTracker::record_free(memblock);
662193323Sed  NMT_TrackingLevel level = MemTracker::tracking_level();
663193323Sed  size_t  nmt_header_size = MemTracker::malloc_header_size(level);
664199481Srdivacky  void* ptr = ::realloc(membase, size + nmt_header_size);
665193323Sed  return MemTracker::record_malloc(ptr, size, memflags, stack, level);
666193323Sed#else
667234353Sdim  if (memblock == NULL) {
668234353Sdim    return os::malloc(size, memflags, stack);
669234353Sdim  }
670234353Sdim  if ((intptr_t)memblock == (intptr_t)MallocCatchPtr) {
671234353Sdim    tty->print_cr("os::realloc caught " PTR_FORMAT, p2i(memblock));
672234353Sdim    breakpoint();
673234353Sdim  }
674234353Sdim  // NMT support
675234353Sdim  void* membase = MemTracker::malloc_base(memblock);
676234353Sdim  verify_memory(membase);
677234353Sdim  // always move the block
678234353Sdim  void* ptr = os::malloc(size, memflags, stack);
679234353Sdim  if (PrintMalloc && tty != NULL) {
680234353Sdim    tty->print_cr("os::realloc " SIZE_FORMAT " bytes, " PTR_FORMAT " --> " PTR_FORMAT, size, p2i(memblock), p2i(ptr));
681234353Sdim  }
682239462Sdim  // Copy to new memory if malloc didn't fail
683234353Sdim  if ( ptr != NULL ) {
684234353Sdim    GuardedMemory guarded(MemTracker::malloc_base(memblock));
685234353Sdim    // Guard's user data contains NMT header
686234353Sdim    size_t memblock_size = guarded.get_user_size() - MemTracker::malloc_header_size(memblock);
687234353Sdim    memcpy(ptr, memblock, MIN2(size, memblock_size));
688234353Sdim    if (paranoid) verify_memory(MemTracker::malloc_base(ptr));
689234353Sdim    if ((intptr_t)ptr == (intptr_t)MallocCatchPtr) {
690243830Sdim      tty->print_cr("os::realloc caught, " SIZE_FORMAT " bytes --> " PTR_FORMAT, size, p2i(ptr));
691234353Sdim      breakpoint();
692234353Sdim    }
693249423Sdim    os::free(memblock);
694234353Sdim  }
695234353Sdim  return ptr;
696239462Sdim#endif
697234353Sdim}
698263508Sdim
699234353Sdim
700251662Sdimvoid  os::free(void *memblock) {
701234353Sdim  NOT_PRODUCT(inc_stat_counter(&num_frees, 1));
702243830Sdim#ifdef ASSERT
703234353Sdim  if (memblock == NULL) return;
704234353Sdim  if ((intptr_t)memblock == (intptr_t)MallocCatchPtr) {
705234353Sdim    if (tty != NULL) tty->print_cr("os::free caught " PTR_FORMAT, p2i(memblock));
706234353Sdim    breakpoint();
707234353Sdim  }
708234353Sdim  void* membase = MemTracker::record_free(memblock);
709234353Sdim  verify_memory(membase);
710234353Sdim
711234353Sdim  GuardedMemory guarded(membase);
712234353Sdim  size_t size = guarded.get_user_size();
713234353Sdim  inc_stat_counter(&free_bytes, size);
714234353Sdim  membase = guarded.release_for_freeing();
715234353Sdim  if (PrintMalloc && tty != NULL) {
716234353Sdim      fprintf(stderr, "os::free " SIZE_FORMAT " bytes --> " PTR_FORMAT "\n", size, (uintptr_t)membase);
717234353Sdim  }
718234353Sdim  ::free(membase);
719234353Sdim#else
720234353Sdim  void* membase = MemTracker::record_free(memblock);
721234353Sdim  ::free(membase);
722234353Sdim#endif
723234353Sdim}
724249423Sdim
725234353Sdimvoid os::init_random(unsigned int initval) {
726251662Sdim  _rand_seed = initval;
727263508Sdim}
728234353Sdim
729234353Sdim
730234353Sdimstatic int random_helper(unsigned int rand_seed) {
731234353Sdim  /* standard, well-known linear congruential random generator with
732243830Sdim   * next_rand = (16807*seed) mod (2**31-1)
733234353Sdim   * see
734234353Sdim   * (1) "Random Number Generators: Good Ones Are Hard to Find",
735234353Sdim   *      S.K. Park and K.W. Miller, Communications of the ACM 31:10 (Oct 1988),
736234353Sdim   * (2) "Two Fast Implementations of the 'Minimal Standard' Random
737234353Sdim   *     Number Generator", David G. Carta, Comm. ACM 33, 1 (Jan 1990), pp. 87-88.
738239462Sdim  */
739234353Sdim  const unsigned int a = 16807;
740234353Sdim  const unsigned int m = 2147483647;
741234353Sdim  const int q = m / a;        assert(q == 127773, "weird math");
742234353Sdim  const int r = m % a;        assert(r == 2836, "weird math");
743234353Sdim
744234353Sdim  // compute az=2^31p+q
745234353Sdim  unsigned int lo = a * (rand_seed & 0xFFFF);
746234353Sdim  unsigned int hi = a * (rand_seed >> 16);
747234353Sdim  lo += (hi & 0x7FFF) << 16;
748234353Sdim
749234353Sdim  // if q overflowed, ignore the overflow and increment q
750234353Sdim  if (lo > m) {
751239462Sdim    lo &= m;
752234353Sdim    ++lo;
753234353Sdim  }
754234353Sdim  lo += hi >> 15;
755243830Sdim
756234353Sdim  // if (p+q) overflowed, ignore the overflow and increment (p+q)
757234353Sdim  if (lo > m) {
758234353Sdim    lo &= m;
759234353Sdim    ++lo;
760234353Sdim  }
761234353Sdim  return lo;
762234353Sdim}
763234353Sdim
764234353Sdimint os::random() {
765234353Sdim  // Make updating the random seed thread safe.
766234353Sdim  while (true) {
767234353Sdim    unsigned int seed = _rand_seed;
768234353Sdim    int rand = random_helper(seed);
769234353Sdim    if (Atomic::cmpxchg(rand, &_rand_seed, seed) == seed) {
770234353Sdim      return rand;
771234353Sdim    }
772234353Sdim  }
773234353Sdim}
774234353Sdim
775234353Sdim// The INITIALIZED state is distinguished from the SUSPENDED state because the
776249423Sdim// conditions in which a thread is first started are different from those in which
777243830Sdim// a suspension is resumed.  These differences make it hard for us to apply the
778234353Sdim// tougher checks when starting threads that we want to do when resuming them.
779234353Sdim// However, when start_thread is called as a result of Thread.start, on a Java
780239462Sdim// thread, the operation is synchronized on the Java Thread object.  So there
781234353Sdim// cannot be a race to start the thread and hence for the thread to exit while
782263508Sdim// we are working on it.  Non-Java threads that start Java threads either have
783234353Sdim// to do so in a context in which races are impossible, or should do appropriate
784251662Sdim// locking.
785234353Sdim
786234353Sdimvoid os::start_thread(Thread* thread) {
787234353Sdim  // guard suspend/resume
788234353Sdim  MutexLockerEx ml(thread->SR_lock(), Mutex::_no_safepoint_check_flag);
789234353Sdim  OSThread* osthread = thread->osthread();
790234353Sdim  osthread->set_state(RUNNABLE);
791239462Sdim  pd_start_thread(thread);
792234353Sdim}
793234353Sdim
794234353Sdimvoid os::abort(bool dump_core) {
795243830Sdim  abort(dump_core && CreateCoredumpOnCrash, NULL, NULL);
796234353Sdim}
797234353Sdim
798234353Sdim//---------------------------------------------------------------------------
799// Helper functions for fatal error handler
800
801void os::print_hex_dump(outputStream* st, address start, address end, int unitsize) {
802  assert(unitsize == 1 || unitsize == 2 || unitsize == 4 || unitsize == 8, "just checking");
803
804  int cols = 0;
805  int cols_per_line = 0;
806  switch (unitsize) {
807    case 1: cols_per_line = 16; break;
808    case 2: cols_per_line = 8;  break;
809    case 4: cols_per_line = 4;  break;
810    case 8: cols_per_line = 2;  break;
811    default: return;
812  }
813
814  address p = start;
815  st->print(PTR_FORMAT ":   ", p2i(start));
816  while (p < end) {
817    switch (unitsize) {
818      case 1: st->print("%02x", *(u1*)p); break;
819      case 2: st->print("%04x", *(u2*)p); break;
820      case 4: st->print("%08x", *(u4*)p); break;
821      case 8: st->print("%016" FORMAT64_MODIFIER "x", *(u8*)p); break;
822    }
823    p += unitsize;
824    cols++;
825    if (cols >= cols_per_line && p < end) {
826       cols = 0;
827       st->cr();
828       st->print(PTR_FORMAT ":   ", p2i(p));
829    } else {
830       st->print(" ");
831    }
832  }
833  st->cr();
834}
835
836void os::print_environment_variables(outputStream* st, const char** env_list) {
837  if (env_list) {
838    st->print_cr("Environment Variables:");
839
840    for (int i = 0; env_list[i] != NULL; i++) {
841      char *envvar = ::getenv(env_list[i]);
842      if (envvar != NULL) {
843        st->print("%s", env_list[i]);
844        st->print("=");
845        st->print_cr("%s", envvar);
846      }
847    }
848  }
849}
850
851void os::print_cpu_info(outputStream* st, char* buf, size_t buflen) {
852  // cpu
853  st->print("CPU:");
854  st->print("total %d", os::processor_count());
855  // It's not safe to query number of active processors after crash
856  // st->print("(active %d)", os::active_processor_count()); but we can
857  // print the initial number of active processors.
858  // We access the raw value here because the assert in the accessor will
859  // fail if the crash occurs before initialization of this value.
860  st->print(" (initial active %d)", _initial_active_processor_count);
861  st->print(" %s", VM_Version::features_string());
862  st->cr();
863  pd_print_cpu_info(st, buf, buflen);
864}
865
866// Print a one line string summarizing the cpu, number of cores, memory, and operating system version
867void os::print_summary_info(outputStream* st, char* buf, size_t buflen) {
868  st->print("Host: ");
869#ifndef PRODUCT
870  if (get_host_name(buf, buflen)) {
871    st->print("%s, ", buf);
872  }
873#endif // PRODUCT
874  get_summary_cpu_info(buf, buflen);
875  st->print("%s, ", buf);
876  size_t mem = physical_memory()/G;
877  if (mem == 0) {  // for low memory systems
878    mem = physical_memory()/M;
879    st->print("%d cores, " SIZE_FORMAT "M, ", processor_count(), mem);
880  } else {
881    st->print("%d cores, " SIZE_FORMAT "G, ", processor_count(), mem);
882  }
883  get_summary_os_info(buf, buflen);
884  st->print_raw(buf);
885  st->cr();
886}
887
888void os::print_date_and_time(outputStream *st, char* buf, size_t buflen) {
889  const int secs_per_day  = 86400;
890  const int secs_per_hour = 3600;
891  const int secs_per_min  = 60;
892
893  time_t tloc;
894  (void)time(&tloc);
895  char* timestring = ctime(&tloc);  // ctime adds newline.
896  // edit out the newline
897  char* nl = strchr(timestring, '\n');
898  if (nl != NULL) {
899    *nl = '\0';
900  }
901
902  struct tm tz;
903  if (localtime_pd(&tloc, &tz) != NULL) {
904    ::strftime(buf, buflen, "%Z", &tz);
905    st->print("Time: %s %s", timestring, buf);
906  } else {
907    st->print("Time: %s", timestring);
908  }
909
910  double t = os::elapsedTime();
911  // NOTE: It tends to crash after a SEGV if we want to printf("%f",...) in
912  //       Linux. Must be a bug in glibc ? Workaround is to round "t" to int
913  //       before printf. We lost some precision, but who cares?
914  int eltime = (int)t;  // elapsed time in seconds
915
916  // print elapsed time in a human-readable format:
917  int eldays = eltime / secs_per_day;
918  int day_secs = eldays * secs_per_day;
919  int elhours = (eltime - day_secs) / secs_per_hour;
920  int hour_secs = elhours * secs_per_hour;
921  int elmins = (eltime - day_secs - hour_secs) / secs_per_min;
922  int minute_secs = elmins * secs_per_min;
923  int elsecs = (eltime - day_secs - hour_secs - minute_secs);
924  st->print_cr(" elapsed time: %d seconds (%dd %dh %dm %ds)", eltime, eldays, elhours, elmins, elsecs);
925}
926
927// moved from debug.cpp (used to be find()) but still called from there
928// The verbose parameter is only set by the debug code in one case
929void os::print_location(outputStream* st, intptr_t x, bool verbose) {
930  address addr = (address)x;
931  CodeBlob* b = CodeCache::find_blob_unsafe(addr);
932  if (b != NULL) {
933    if (b->is_buffer_blob()) {
934      // the interpreter is generated into a buffer blob
935      InterpreterCodelet* i = Interpreter::codelet_containing(addr);
936      if (i != NULL) {
937        st->print_cr(INTPTR_FORMAT " is at code_begin+%d in an Interpreter codelet", p2i(addr), (int)(addr - i->code_begin()));
938        i->print_on(st);
939        return;
940      }
941      if (Interpreter::contains(addr)) {
942        st->print_cr(INTPTR_FORMAT " is pointing into interpreter code"
943                     " (not bytecode specific)", p2i(addr));
944        return;
945      }
946      //
947      if (AdapterHandlerLibrary::contains(b)) {
948        st->print_cr(INTPTR_FORMAT " is at code_begin+%d in an AdapterHandler", p2i(addr), (int)(addr - b->code_begin()));
949        AdapterHandlerLibrary::print_handler_on(st, b);
950      }
951      // the stubroutines are generated into a buffer blob
952      StubCodeDesc* d = StubCodeDesc::desc_for(addr);
953      if (d != NULL) {
954        st->print_cr(INTPTR_FORMAT " is at begin+%d in a stub", p2i(addr), (int)(addr - d->begin()));
955        d->print_on(st);
956        st->cr();
957        return;
958      }
959      if (StubRoutines::contains(addr)) {
960        st->print_cr(INTPTR_FORMAT " is pointing to an (unnamed) stub routine", p2i(addr));
961        return;
962      }
963      // the InlineCacheBuffer is using stubs generated into a buffer blob
964      if (InlineCacheBuffer::contains(addr)) {
965        st->print_cr(INTPTR_FORMAT " is pointing into InlineCacheBuffer", p2i(addr));
966        return;
967      }
968      VtableStub* v = VtableStubs::stub_containing(addr);
969      if (v != NULL) {
970        st->print_cr(INTPTR_FORMAT " is at entry_point+%d in a vtable stub", p2i(addr), (int)(addr - v->entry_point()));
971        v->print_on(st);
972        st->cr();
973        return;
974      }
975    }
976    nmethod* nm = b->as_nmethod_or_null();
977    if (nm != NULL) {
978      ResourceMark rm;
979      st->print(INTPTR_FORMAT " is at entry_point+%d in (nmethod*)" INTPTR_FORMAT,
980                p2i(addr), (int)(addr - nm->entry_point()), p2i(nm));
981      if (verbose) {
982        st->print(" for ");
983        nm->method()->print_value_on(st);
984      }
985      st->cr();
986      nm->print_nmethod(verbose);
987      return;
988    }
989    st->print_cr(INTPTR_FORMAT " is at code_begin+%d in ", p2i(addr), (int)(addr - b->code_begin()));
990    b->print_on(st);
991    return;
992  }
993
994  if (Universe::heap()->is_in(addr)) {
995    HeapWord* p = Universe::heap()->block_start(addr);
996    bool print = false;
997    // If we couldn't find it it just may mean that heap wasn't parsable
998    // See if we were just given an oop directly
999    if (p != NULL && Universe::heap()->block_is_obj(p)) {
1000      print = true;
1001    } else if (p == NULL && ((oopDesc*)addr)->is_oop()) {
1002      p = (HeapWord*) addr;
1003      print = true;
1004    }
1005    if (print) {
1006      if (p == (HeapWord*) addr) {
1007        st->print_cr(INTPTR_FORMAT " is an oop", p2i(addr));
1008      } else {
1009        st->print_cr(INTPTR_FORMAT " is pointing into object: " INTPTR_FORMAT, p2i(addr), p2i(p));
1010      }
1011      oop(p)->print_on(st);
1012      return;
1013    }
1014  } else {
1015    if (Universe::heap()->is_in_reserved(addr)) {
1016      st->print_cr(INTPTR_FORMAT " is an unallocated location "
1017                   "in the heap", p2i(addr));
1018      return;
1019    }
1020  }
1021  if (JNIHandles::is_global_handle((jobject) addr)) {
1022    st->print_cr(INTPTR_FORMAT " is a global jni handle", p2i(addr));
1023    return;
1024  }
1025  if (JNIHandles::is_weak_global_handle((jobject) addr)) {
1026    st->print_cr(INTPTR_FORMAT " is a weak global jni handle", p2i(addr));
1027    return;
1028  }
1029#ifndef PRODUCT
1030  // we don't keep the block list in product mode
1031  if (JNIHandleBlock::any_contains((jobject) addr)) {
1032    st->print_cr(INTPTR_FORMAT " is a local jni handle", p2i(addr));
1033    return;
1034  }
1035#endif
1036
1037  for(JavaThread *thread = Threads::first(); thread; thread = thread->next()) {
1038    // Check for privilege stack
1039    if (thread->privileged_stack_top() != NULL &&
1040        thread->privileged_stack_top()->contains(addr)) {
1041      st->print_cr(INTPTR_FORMAT " is pointing into the privilege stack "
1042                   "for thread: " INTPTR_FORMAT, p2i(addr), p2i(thread));
1043      if (verbose) thread->print_on(st);
1044      return;
1045    }
1046    // If the addr is a java thread print information about that.
1047    if (addr == (address)thread) {
1048      if (verbose) {
1049        thread->print_on(st);
1050      } else {
1051        st->print_cr(INTPTR_FORMAT " is a thread", p2i(addr));
1052      }
1053      return;
1054    }
1055    // If the addr is in the stack region for this thread then report that
1056    // and print thread info
1057    if (thread->on_local_stack(addr)) {
1058      st->print_cr(INTPTR_FORMAT " is pointing into the stack for thread: "
1059                   INTPTR_FORMAT, p2i(addr), p2i(thread));
1060      if (verbose) thread->print_on(st);
1061      return;
1062    }
1063
1064  }
1065
1066  // Check if in metaspace and print types that have vptrs (only method now)
1067  if (Metaspace::contains(addr)) {
1068    if (Method::has_method_vptr((const void*)addr)) {
1069      ((Method*)addr)->print_value_on(st);
1070      st->cr();
1071    } else {
1072      // Use addr->print() from the debugger instead (not here)
1073      st->print_cr(INTPTR_FORMAT " is pointing into metadata", p2i(addr));
1074    }
1075    return;
1076  }
1077
1078  // Try an OS specific find
1079  if (os::find(addr, st)) {
1080    return;
1081  }
1082
1083  st->print_cr(INTPTR_FORMAT " is an unknown value", p2i(addr));
1084}
1085
1086// Looks like all platforms except IA64 can use the same function to check
1087// if C stack is walkable beyond current frame. The check for fp() is not
1088// necessary on Sparc, but it's harmless.
1089bool os::is_first_C_frame(frame* fr) {
1090#if (defined(IA64) && !defined(AIX)) && !defined(_WIN32)
1091  // On IA64 we have to check if the callers bsp is still valid
1092  // (i.e. within the register stack bounds).
1093  // Notice: this only works for threads created by the VM and only if
1094  // we walk the current stack!!! If we want to be able to walk
1095  // arbitrary other threads, we'll have to somehow store the thread
1096  // object in the frame.
1097  Thread *thread = Thread::current();
1098  if ((address)fr->fp() <=
1099      thread->register_stack_base() HPUX_ONLY(+ 0x0) LINUX_ONLY(+ 0x50)) {
1100    // This check is a little hacky, because on Linux the first C
1101    // frame's ('start_thread') register stack frame starts at
1102    // "register_stack_base + 0x48" while on HPUX, the first C frame's
1103    // ('__pthread_bound_body') register stack frame seems to really
1104    // start at "register_stack_base".
1105    return true;
1106  } else {
1107    return false;
1108  }
1109#elif defined(IA64) && defined(_WIN32)
1110  return true;
1111#else
1112  // Load up sp, fp, sender sp and sender fp, check for reasonable values.
1113  // Check usp first, because if that's bad the other accessors may fault
1114  // on some architectures.  Ditto ufp second, etc.
1115  uintptr_t fp_align_mask = (uintptr_t)(sizeof(address)-1);
1116  // sp on amd can be 32 bit aligned.
1117  uintptr_t sp_align_mask = (uintptr_t)(sizeof(int)-1);
1118
1119  uintptr_t usp    = (uintptr_t)fr->sp();
1120  if ((usp & sp_align_mask) != 0) return true;
1121
1122  uintptr_t ufp    = (uintptr_t)fr->fp();
1123  if ((ufp & fp_align_mask) != 0) return true;
1124
1125  uintptr_t old_sp = (uintptr_t)fr->sender_sp();
1126  if ((old_sp & sp_align_mask) != 0) return true;
1127  if (old_sp == 0 || old_sp == (uintptr_t)-1) return true;
1128
1129  uintptr_t old_fp = (uintptr_t)fr->link();
1130  if ((old_fp & fp_align_mask) != 0) return true;
1131  if (old_fp == 0 || old_fp == (uintptr_t)-1 || old_fp == ufp) return true;
1132
1133  // stack grows downwards; if old_fp is below current fp or if the stack
1134  // frame is too large, either the stack is corrupted or fp is not saved
1135  // on stack (i.e. on x86, ebp may be used as general register). The stack
1136  // is not walkable beyond current frame.
1137  if (old_fp < ufp) return true;
1138  if (old_fp - ufp > 64 * K) return true;
1139
1140  return false;
1141#endif
1142}
1143
1144
1145// Set up the boot classpath.
1146
1147char* os::format_boot_path(const char* format_string,
1148                           const char* home,
1149                           int home_len,
1150                           char fileSep,
1151                           char pathSep) {
1152    assert((fileSep == '/' && pathSep == ':') ||
1153           (fileSep == '\\' && pathSep == ';'), "unexpected separator chars");
1154
1155    // Scan the format string to determine the length of the actual
1156    // boot classpath, and handle platform dependencies as well.
1157    int formatted_path_len = 0;
1158    const char* p;
1159    for (p = format_string; *p != 0; ++p) {
1160        if (*p == '%') formatted_path_len += home_len - 1;
1161        ++formatted_path_len;
1162    }
1163
1164    char* formatted_path = NEW_C_HEAP_ARRAY(char, formatted_path_len + 1, mtInternal);
1165    if (formatted_path == NULL) {
1166        return NULL;
1167    }
1168
1169    // Create boot classpath from format, substituting separator chars and
1170    // java home directory.
1171    char* q = formatted_path;
1172    for (p = format_string; *p != 0; ++p) {
1173        switch (*p) {
1174        case '%':
1175            strcpy(q, home);
1176            q += home_len;
1177            break;
1178        case '/':
1179            *q++ = fileSep;
1180            break;
1181        case ':':
1182            *q++ = pathSep;
1183            break;
1184        default:
1185            *q++ = *p;
1186        }
1187    }
1188    *q = '\0';
1189
1190    assert((q - formatted_path) == formatted_path_len, "formatted_path size botched");
1191    return formatted_path;
1192}
1193
1194bool os::set_boot_path(char fileSep, char pathSep) {
1195  const char* home = Arguments::get_java_home();
1196  int home_len = (int)strlen(home);
1197
1198  struct stat st;
1199
1200  // modular image if "modules" jimage exists
1201  char* jimage = format_boot_path("%/lib/" MODULES_IMAGE_NAME, home, home_len, fileSep, pathSep);
1202  if (jimage == NULL) return false;
1203  bool has_jimage = (os::stat(jimage, &st) == 0);
1204  if (has_jimage) {
1205    Arguments::set_sysclasspath(jimage, true);
1206    FREE_C_HEAP_ARRAY(char, jimage);
1207    return true;
1208  }
1209  FREE_C_HEAP_ARRAY(char, jimage);
1210
1211  // check if developer build with exploded modules
1212  char* base_classes = format_boot_path("%/modules/" JAVA_BASE_NAME, home, home_len, fileSep, pathSep);
1213  if (base_classes == NULL) return false;
1214  if (os::stat(base_classes, &st) == 0) {
1215    Arguments::set_sysclasspath(base_classes, false);
1216    FREE_C_HEAP_ARRAY(char, base_classes);
1217    return true;
1218  }
1219  FREE_C_HEAP_ARRAY(char, base_classes);
1220
1221  return false;
1222}
1223
1224/*
1225 * Splits a path, based on its separator, the number of
1226 * elements is returned back in n.
1227 * It is the callers responsibility to:
1228 *   a> check the value of n, and n may be 0.
1229 *   b> ignore any empty path elements
1230 *   c> free up the data.
1231 */
1232char** os::split_path(const char* path, int* n) {
1233  *n = 0;
1234  if (path == NULL || strlen(path) == 0) {
1235    return NULL;
1236  }
1237  const char psepchar = *os::path_separator();
1238  char* inpath = (char*)NEW_C_HEAP_ARRAY(char, strlen(path) + 1, mtInternal);
1239  if (inpath == NULL) {
1240    return NULL;
1241  }
1242  strcpy(inpath, path);
1243  int count = 1;
1244  char* p = strchr(inpath, psepchar);
1245  // Get a count of elements to allocate memory
1246  while (p != NULL) {
1247    count++;
1248    p++;
1249    p = strchr(p, psepchar);
1250  }
1251  char** opath = (char**) NEW_C_HEAP_ARRAY(char*, count, mtInternal);
1252  if (opath == NULL) {
1253    return NULL;
1254  }
1255
1256  // do the actual splitting
1257  p = inpath;
1258  for (int i = 0 ; i < count ; i++) {
1259    size_t len = strcspn(p, os::path_separator());
1260    if (len > JVM_MAXPATHLEN) {
1261      return NULL;
1262    }
1263    // allocate the string and add terminator storage
1264    char* s  = (char*)NEW_C_HEAP_ARRAY(char, len + 1, mtInternal);
1265    if (s == NULL) {
1266      return NULL;
1267    }
1268    strncpy(s, p, len);
1269    s[len] = '\0';
1270    opath[i] = s;
1271    p += len + 1;
1272  }
1273  FREE_C_HEAP_ARRAY(char, inpath);
1274  *n = count;
1275  return opath;
1276}
1277
1278void os::set_memory_serialize_page(address page) {
1279  int count = log2_intptr(sizeof(class JavaThread)) - log2_intptr(64);
1280  _mem_serialize_page = (volatile int32_t *)page;
1281  // We initialize the serialization page shift count here
1282  // We assume a cache line size of 64 bytes
1283  assert(SerializePageShiftCount == count, "JavaThread size changed; "
1284         "SerializePageShiftCount constant should be %d", count);
1285  set_serialize_page_mask((uintptr_t)(vm_page_size() - sizeof(int32_t)));
1286}
1287
1288static volatile intptr_t SerializePageLock = 0;
1289
1290// This method is called from signal handler when SIGSEGV occurs while the current
1291// thread tries to store to the "read-only" memory serialize page during state
1292// transition.
1293void os::block_on_serialize_page_trap() {
1294  log_debug(safepoint)("Block until the serialize page permission restored");
1295
1296  // When VMThread is holding the SerializePageLock during modifying the
1297  // access permission of the memory serialize page, the following call
1298  // will block until the permission of that page is restored to rw.
1299  // Generally, it is unsafe to manipulate locks in signal handlers, but in
1300  // this case, it's OK as the signal is synchronous and we know precisely when
1301  // it can occur.
1302  Thread::muxAcquire(&SerializePageLock, "set_memory_serialize_page");
1303  Thread::muxRelease(&SerializePageLock);
1304}
1305
1306// Serialize all thread state variables
1307void os::serialize_thread_states() {
1308  // On some platforms such as Solaris & Linux, the time duration of the page
1309  // permission restoration is observed to be much longer than expected  due to
1310  // scheduler starvation problem etc. To avoid the long synchronization
1311  // time and expensive page trap spinning, 'SerializePageLock' is used to block
1312  // the mutator thread if such case is encountered. See bug 6546278 for details.
1313  Thread::muxAcquire(&SerializePageLock, "serialize_thread_states");
1314  os::protect_memory((char *)os::get_memory_serialize_page(),
1315                     os::vm_page_size(), MEM_PROT_READ);
1316  os::protect_memory((char *)os::get_memory_serialize_page(),
1317                     os::vm_page_size(), MEM_PROT_RW);
1318  Thread::muxRelease(&SerializePageLock);
1319}
1320
1321// Returns true if the current stack pointer is above the stack shadow
1322// pages, false otherwise.
1323bool os::stack_shadow_pages_available(Thread *thread, const methodHandle& method, address sp) {
1324  if (!thread->is_Java_thread()) return false;
1325  // Check if we have StackShadowPages above the yellow zone.  This parameter
1326  // is dependent on the depth of the maximum VM call stack possible from
1327  // the handler for stack overflow.  'instanceof' in the stack overflow
1328  // handler or a println uses at least 8k stack of VM and native code
1329  // respectively.
1330  const int framesize_in_bytes =
1331    Interpreter::size_top_interpreter_activation(method()) * wordSize;
1332
1333  address limit = ((JavaThread*)thread)->stack_end() +
1334                  (JavaThread::stack_guard_zone_size() + JavaThread::stack_shadow_zone_size());
1335
1336  return sp > (limit + framesize_in_bytes);
1337}
1338
1339size_t os::page_size_for_region(size_t region_size, size_t min_pages, bool must_be_aligned) {
1340  assert(min_pages > 0, "sanity");
1341  if (UseLargePages) {
1342    const size_t max_page_size = region_size / min_pages;
1343
1344    for (size_t i = 0; _page_sizes[i] != 0; ++i) {
1345      const size_t page_size = _page_sizes[i];
1346      if (page_size <= max_page_size) {
1347        if (!must_be_aligned || is_size_aligned(region_size, page_size)) {
1348          return page_size;
1349        }
1350      }
1351    }
1352  }
1353
1354  return vm_page_size();
1355}
1356
1357size_t os::page_size_for_region_aligned(size_t region_size, size_t min_pages) {
1358  return page_size_for_region(region_size, min_pages, true);
1359}
1360
1361size_t os::page_size_for_region_unaligned(size_t region_size, size_t min_pages) {
1362  return page_size_for_region(region_size, min_pages, false);
1363}
1364
1365static const char* errno_to_string (int e, bool short_text) {
1366  #define ALL_SHARED_ENUMS(X) \
1367    X(E2BIG, "Argument list too long") \
1368    X(EACCES, "Permission denied") \
1369    X(EADDRINUSE, "Address in use") \
1370    X(EADDRNOTAVAIL, "Address not available") \
1371    X(EAFNOSUPPORT, "Address family not supported") \
1372    X(EAGAIN, "Resource unavailable, try again") \
1373    X(EALREADY, "Connection already in progress") \
1374    X(EBADF, "Bad file descriptor") \
1375    X(EBADMSG, "Bad message") \
1376    X(EBUSY, "Device or resource busy") \
1377    X(ECANCELED, "Operation canceled") \
1378    X(ECHILD, "No child processes") \
1379    X(ECONNABORTED, "Connection aborted") \
1380    X(ECONNREFUSED, "Connection refused") \
1381    X(ECONNRESET, "Connection reset") \
1382    X(EDEADLK, "Resource deadlock would occur") \
1383    X(EDESTADDRREQ, "Destination address required") \
1384    X(EDOM, "Mathematics argument out of domain of function") \
1385    X(EEXIST, "File exists") \
1386    X(EFAULT, "Bad address") \
1387    X(EFBIG, "File too large") \
1388    X(EHOSTUNREACH, "Host is unreachable") \
1389    X(EIDRM, "Identifier removed") \
1390    X(EILSEQ, "Illegal byte sequence") \
1391    X(EINPROGRESS, "Operation in progress") \
1392    X(EINTR, "Interrupted function") \
1393    X(EINVAL, "Invalid argument") \
1394    X(EIO, "I/O error") \
1395    X(EISCONN, "Socket is connected") \
1396    X(EISDIR, "Is a directory") \
1397    X(ELOOP, "Too many levels of symbolic links") \
1398    X(EMFILE, "Too many open files") \
1399    X(EMLINK, "Too many links") \
1400    X(EMSGSIZE, "Message too large") \
1401    X(ENAMETOOLONG, "Filename too long") \
1402    X(ENETDOWN, "Network is down") \
1403    X(ENETRESET, "Connection aborted by network") \
1404    X(ENETUNREACH, "Network unreachable") \
1405    X(ENFILE, "Too many files open in system") \
1406    X(ENOBUFS, "No buffer space available") \
1407    X(ENODATA, "No message is available on the STREAM head read queue") \
1408    X(ENODEV, "No such device") \
1409    X(ENOENT, "No such file or directory") \
1410    X(ENOEXEC, "Executable file format error") \
1411    X(ENOLCK, "No locks available") \
1412    X(ENOLINK, "Reserved") \
1413    X(ENOMEM, "Not enough space") \
1414    X(ENOMSG, "No message of the desired type") \
1415    X(ENOPROTOOPT, "Protocol not available") \
1416    X(ENOSPC, "No space left on device") \
1417    X(ENOSR, "No STREAM resources") \
1418    X(ENOSTR, "Not a STREAM") \
1419    X(ENOSYS, "Function not supported") \
1420    X(ENOTCONN, "The socket is not connected") \
1421    X(ENOTDIR, "Not a directory") \
1422    X(ENOTEMPTY, "Directory not empty") \
1423    X(ENOTSOCK, "Not a socket") \
1424    X(ENOTSUP, "Not supported") \
1425    X(ENOTTY, "Inappropriate I/O control operation") \
1426    X(ENXIO, "No such device or address") \
1427    X(EOPNOTSUPP, "Operation not supported on socket") \
1428    X(EOVERFLOW, "Value too large to be stored in data type") \
1429    X(EPERM, "Operation not permitted") \
1430    X(EPIPE, "Broken pipe") \
1431    X(EPROTO, "Protocol error") \
1432    X(EPROTONOSUPPORT, "Protocol not supported") \
1433    X(EPROTOTYPE, "Protocol wrong type for socket") \
1434    X(ERANGE, "Result too large") \
1435    X(EROFS, "Read-only file system") \
1436    X(ESPIPE, "Invalid seek") \
1437    X(ESRCH, "No such process") \
1438    X(ETIME, "Stream ioctl() timeout") \
1439    X(ETIMEDOUT, "Connection timed out") \
1440    X(ETXTBSY, "Text file busy") \
1441    X(EWOULDBLOCK, "Operation would block") \
1442    X(EXDEV, "Cross-device link")
1443
1444  #define DEFINE_ENTRY(e, text) { e, #e, text },
1445
1446  static const struct {
1447    int v;
1448    const char* short_text;
1449    const char* long_text;
1450  } table [] = {
1451
1452    ALL_SHARED_ENUMS(DEFINE_ENTRY)
1453
1454    // The following enums are not defined on all platforms.
1455    #ifdef ESTALE
1456    DEFINE_ENTRY(ESTALE, "Reserved")
1457    #endif
1458    #ifdef EDQUOT
1459    DEFINE_ENTRY(EDQUOT, "Reserved")
1460    #endif
1461    #ifdef EMULTIHOP
1462    DEFINE_ENTRY(EMULTIHOP, "Reserved")
1463    #endif
1464
1465    // End marker.
1466    { -1, "Unknown errno", "Unknown error" }
1467
1468  };
1469
1470  #undef DEFINE_ENTRY
1471  #undef ALL_FLAGS
1472
1473  int i = 0;
1474  while (table[i].v != -1 && table[i].v != e) {
1475    i ++;
1476  }
1477
1478  return short_text ? table[i].short_text : table[i].long_text;
1479
1480}
1481
1482const char* os::strerror(int e) {
1483  return errno_to_string(e, false);
1484}
1485
1486const char* os::errno_name(int e) {
1487  return errno_to_string(e, true);
1488}
1489
1490void os::trace_page_sizes(const char* str, const size_t* page_sizes, int count) {
1491  LogTarget(Info, pagesize) log;
1492  if (log.is_enabled()) {
1493    LogStreamCHeap out(log);
1494
1495    out.print("%s: ", str);
1496    for (int i = 0; i < count; ++i) {
1497      out.print(" " SIZE_FORMAT, page_sizes[i]);
1498    }
1499    out.cr();
1500  }
1501}
1502
1503#define trace_page_size_params(size) byte_size_in_exact_unit(size), exact_unit_for_byte_size(size)
1504
1505void os::trace_page_sizes(const char* str,
1506                          const size_t region_min_size,
1507                          const size_t region_max_size,
1508                          const size_t page_size,
1509                          const char* base,
1510                          const size_t size) {
1511
1512  log_info(pagesize)("%s: "
1513                     " min=" SIZE_FORMAT "%s"
1514                     " max=" SIZE_FORMAT "%s"
1515                     " base=" PTR_FORMAT
1516                     " page_size=" SIZE_FORMAT "%s"
1517                     " size=" SIZE_FORMAT "%s",
1518                     str,
1519                     trace_page_size_params(region_min_size),
1520                     trace_page_size_params(region_max_size),
1521                     p2i(base),
1522                     trace_page_size_params(page_size),
1523                     trace_page_size_params(size));
1524}
1525
1526void os::trace_page_sizes_for_requested_size(const char* str,
1527                                             const size_t requested_size,
1528                                             const size_t page_size,
1529                                             const size_t alignment,
1530                                             const char* base,
1531                                             const size_t size) {
1532
1533  log_info(pagesize)("%s:"
1534                     " req_size=" SIZE_FORMAT "%s"
1535                     " base=" PTR_FORMAT
1536                     " page_size=" SIZE_FORMAT "%s"
1537                     " alignment=" SIZE_FORMAT "%s"
1538                     " size=" SIZE_FORMAT "%s",
1539                     str,
1540                     trace_page_size_params(requested_size),
1541                     p2i(base),
1542                     trace_page_size_params(page_size),
1543                     trace_page_size_params(alignment),
1544                     trace_page_size_params(size));
1545}
1546
1547
1548// This is the working definition of a server class machine:
1549// >= 2 physical CPU's and >=2GB of memory, with some fuzz
1550// because the graphics memory (?) sometimes masks physical memory.
1551// If you want to change the definition of a server class machine
1552// on some OS or platform, e.g., >=4GB on Windows platforms,
1553// then you'll have to parameterize this method based on that state,
1554// as was done for logical processors here, or replicate and
1555// specialize this method for each platform.  (Or fix os to have
1556// some inheritance structure and use subclassing.  Sigh.)
1557// If you want some platform to always or never behave as a server
1558// class machine, change the setting of AlwaysActAsServerClassMachine
1559// and NeverActAsServerClassMachine in globals*.hpp.
1560bool os::is_server_class_machine() {
1561  // First check for the early returns
1562  if (NeverActAsServerClassMachine) {
1563    return false;
1564  }
1565  if (AlwaysActAsServerClassMachine) {
1566    return true;
1567  }
1568  // Then actually look at the machine
1569  bool         result            = false;
1570  const unsigned int    server_processors = 2;
1571  const julong server_memory     = 2UL * G;
1572  // We seem not to get our full complement of memory.
1573  //     We allow some part (1/8?) of the memory to be "missing",
1574  //     based on the sizes of DIMMs, and maybe graphics cards.
1575  const julong missing_memory   = 256UL * M;
1576
1577  /* Is this a server class machine? */
1578  if ((os::active_processor_count() >= (int)server_processors) &&
1579      (os::physical_memory() >= (server_memory - missing_memory))) {
1580    const unsigned int logical_processors =
1581      VM_Version::logical_processors_per_package();
1582    if (logical_processors > 1) {
1583      const unsigned int physical_packages =
1584        os::active_processor_count() / logical_processors;
1585      if (physical_packages >= server_processors) {
1586        result = true;
1587      }
1588    } else {
1589      result = true;
1590    }
1591  }
1592  return result;
1593}
1594
1595void os::initialize_initial_active_processor_count() {
1596  assert(_initial_active_processor_count == 0, "Initial active processor count already set.");
1597  _initial_active_processor_count = active_processor_count();
1598  log_debug(os)("Initial active processor count set to %d" , _initial_active_processor_count);
1599}
1600
1601void os::SuspendedThreadTask::run() {
1602  assert(Threads_lock->owned_by_self() || (_thread == VMThread::vm_thread()), "must have threads lock to call this");
1603  internal_do_task();
1604  _done = true;
1605}
1606
1607bool os::create_stack_guard_pages(char* addr, size_t bytes) {
1608  return os::pd_create_stack_guard_pages(addr, bytes);
1609}
1610
1611char* os::reserve_memory(size_t bytes, char* addr, size_t alignment_hint) {
1612  char* result = pd_reserve_memory(bytes, addr, alignment_hint);
1613  if (result != NULL) {
1614    MemTracker::record_virtual_memory_reserve((address)result, bytes, CALLER_PC);
1615  }
1616
1617  return result;
1618}
1619
1620char* os::reserve_memory(size_t bytes, char* addr, size_t alignment_hint,
1621   MEMFLAGS flags) {
1622  char* result = pd_reserve_memory(bytes, addr, alignment_hint);
1623  if (result != NULL) {
1624    MemTracker::record_virtual_memory_reserve((address)result, bytes, CALLER_PC);
1625    MemTracker::record_virtual_memory_type((address)result, flags);
1626  }
1627
1628  return result;
1629}
1630
1631char* os::attempt_reserve_memory_at(size_t bytes, char* addr) {
1632  char* result = pd_attempt_reserve_memory_at(bytes, addr);
1633  if (result != NULL) {
1634    MemTracker::record_virtual_memory_reserve((address)result, bytes, CALLER_PC);
1635  }
1636  return result;
1637}
1638
1639void os::split_reserved_memory(char *base, size_t size,
1640                                 size_t split, bool realloc) {
1641  pd_split_reserved_memory(base, size, split, realloc);
1642}
1643
1644bool os::commit_memory(char* addr, size_t bytes, bool executable) {
1645  bool res = pd_commit_memory(addr, bytes, executable);
1646  if (res) {
1647    MemTracker::record_virtual_memory_commit((address)addr, bytes, CALLER_PC);
1648  }
1649  return res;
1650}
1651
1652bool os::commit_memory(char* addr, size_t size, size_t alignment_hint,
1653                              bool executable) {
1654  bool res = os::pd_commit_memory(addr, size, alignment_hint, executable);
1655  if (res) {
1656    MemTracker::record_virtual_memory_commit((address)addr, size, CALLER_PC);
1657  }
1658  return res;
1659}
1660
1661void os::commit_memory_or_exit(char* addr, size_t bytes, bool executable,
1662                               const char* mesg) {
1663  pd_commit_memory_or_exit(addr, bytes, executable, mesg);
1664  MemTracker::record_virtual_memory_commit((address)addr, bytes, CALLER_PC);
1665}
1666
1667void os::commit_memory_or_exit(char* addr, size_t size, size_t alignment_hint,
1668                               bool executable, const char* mesg) {
1669  os::pd_commit_memory_or_exit(addr, size, alignment_hint, executable, mesg);
1670  MemTracker::record_virtual_memory_commit((address)addr, size, CALLER_PC);
1671}
1672
1673bool os::uncommit_memory(char* addr, size_t bytes) {
1674  bool res;
1675  if (MemTracker::tracking_level() > NMT_minimal) {
1676    Tracker tkr = MemTracker::get_virtual_memory_uncommit_tracker();
1677    res = pd_uncommit_memory(addr, bytes);
1678    if (res) {
1679      tkr.record((address)addr, bytes);
1680    }
1681  } else {
1682    res = pd_uncommit_memory(addr, bytes);
1683  }
1684  return res;
1685}
1686
1687bool os::release_memory(char* addr, size_t bytes) {
1688  bool res;
1689  if (MemTracker::tracking_level() > NMT_minimal) {
1690    Tracker tkr = MemTracker::get_virtual_memory_release_tracker();
1691    res = pd_release_memory(addr, bytes);
1692    if (res) {
1693      tkr.record((address)addr, bytes);
1694    }
1695  } else {
1696    res = pd_release_memory(addr, bytes);
1697  }
1698  return res;
1699}
1700
1701void os::pretouch_memory(void* start, void* end, size_t page_size) {
1702  for (volatile char *p = (char*)start; p < (char*)end; p += page_size) {
1703    *p = 0;
1704  }
1705}
1706
1707char* os::map_memory(int fd, const char* file_name, size_t file_offset,
1708                           char *addr, size_t bytes, bool read_only,
1709                           bool allow_exec) {
1710  char* result = pd_map_memory(fd, file_name, file_offset, addr, bytes, read_only, allow_exec);
1711  if (result != NULL) {
1712    MemTracker::record_virtual_memory_reserve_and_commit((address)result, bytes, CALLER_PC);
1713  }
1714  return result;
1715}
1716
1717char* os::remap_memory(int fd, const char* file_name, size_t file_offset,
1718                             char *addr, size_t bytes, bool read_only,
1719                             bool allow_exec) {
1720  return pd_remap_memory(fd, file_name, file_offset, addr, bytes,
1721                    read_only, allow_exec);
1722}
1723
1724bool os::unmap_memory(char *addr, size_t bytes) {
1725  bool result;
1726  if (MemTracker::tracking_level() > NMT_minimal) {
1727    Tracker tkr = MemTracker::get_virtual_memory_release_tracker();
1728    result = pd_unmap_memory(addr, bytes);
1729    if (result) {
1730      tkr.record((address)addr, bytes);
1731    }
1732  } else {
1733    result = pd_unmap_memory(addr, bytes);
1734  }
1735  return result;
1736}
1737
1738void os::free_memory(char *addr, size_t bytes, size_t alignment_hint) {
1739  pd_free_memory(addr, bytes, alignment_hint);
1740}
1741
1742void os::realign_memory(char *addr, size_t bytes, size_t alignment_hint) {
1743  pd_realign_memory(addr, bytes, alignment_hint);
1744}
1745
1746#ifndef _WINDOWS
1747/* try to switch state from state "from" to state "to"
1748 * returns the state set after the method is complete
1749 */
1750os::SuspendResume::State os::SuspendResume::switch_state(os::SuspendResume::State from,
1751                                                         os::SuspendResume::State to)
1752{
1753  os::SuspendResume::State result =
1754    (os::SuspendResume::State) Atomic::cmpxchg((jint) to, (jint *) &_state, (jint) from);
1755  if (result == from) {
1756    // success
1757    return to;
1758  }
1759  return result;
1760}
1761#endif
1762