os.hpp revision 4373
0N/A/*
0N/A * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
873N/A *
0N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A * or visit www.oracle.com if you need additional information or have any
0N/A * questions.
0N/A *
0N/A */
5065N/A
6020N/A#ifndef SHARE_VM_RUNTIME_OS_HPP
5637N/A#define SHARE_VM_RUNTIME_OS_HPP
5934N/A
0N/A#include "jvmtifiles/jvmti.h"
0N/A#include "runtime/atomic.hpp"
0N/A#include "runtime/extendedPC.hpp"
0N/A#include "runtime/handles.hpp"
0N/A#include "utilities/top.hpp"
0N/A#ifdef TARGET_OS_FAMILY_linux
0N/A# include "jvm_linux.h"
0N/A#endif
0N/A#ifdef TARGET_OS_FAMILY_solaris
2636N/A# include "jvm_solaris.h"
5694N/A#endif
2636N/A#ifdef TARGET_OS_FAMILY_windows
2636N/A# include "jvm_windows.h"
2636N/A#endif
0N/A#ifdef TARGET_OS_FAMILY_bsd
2636N/A# include "jvm_bsd.h"
5694N/A#endif
2636N/A
2636N/A// os defines the interface to operating system; this includes traditional
2636N/A// OS services (time, I/O) as well as other functionality with system-
2636N/A// dependent code.
0N/A
5694N/Atypedef void (*dll_func)(...);
2636N/A
2636N/Aclass Thread;
2636N/Aclass JavaThread;
2636N/Aclass Event;
2636N/Aclass DLL;
5694N/Aclass FileHandle;
2636N/Atemplate<class E> class GrowableArray;
2636N/A
2636N/A// %%%%% Moved ThreadState, START_FN, OSThread to new osThread.hpp. -- Rose
2636N/A
5694N/A// Platform-independent error return values from OS functions
2636N/Aenum OSReturn {
2636N/A OS_OK = 0, // Operation was successful
2636N/A OS_ERR = -1, // Operation failed
2636N/A OS_INTRPT = -2, // Operation was interrupted
2636N/A OS_TIMEOUT = -3, // Operation timed out
5694N/A OS_NOMEM = -5, // Operation failed for lack of memory
2636N/A OS_NORESOURCE = -6 // Operation failed for lack of nonmemory resource
2636N/A};
2636N/A
0N/Aenum ThreadPriority { // JLS 20.20.1-3
2636N/A NoPriority = -1, // Initial non-priority value
5694N/A MinPriority = 1, // Minimum priority
2636N/A NormPriority = 5, // Normal (non-daemon) priority
2636N/A NearMaxPriority = 9, // High priority, used for VMThread
0N/A MaxPriority = 10, // Highest priority, used for WatcherThread
0N/A // ensures that VMThread doesn't starve profiler
2636N/A CriticalPriority = 11 // Critical thread priority
5694N/A};
2636N/A
2636N/A// Typedef for structured exception handling support
0N/Atypedef void (*java_call_t)(JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread);
2636N/A
5694N/Aclass os: AllStatic {
2636N/A public:
2636N/A enum { page_sizes_max = 9 }; // Size of _page_sizes array (8 plus a sentinel)
2636N/A
2636N/A private:
2636N/A static OSThread* _starting_thread;
5694N/A static address _polling_page;
2636N/A static volatile int32_t * _mem_serialize_page;
2636N/A static uintptr_t _serialize_page_mask;
2636N/A public:
2636N/A static size_t _page_sizes[page_sizes_max];
2636N/A
5694N/A private:
2636N/A static void init_page_sizes(size_t default_page_size) {
2636N/A _page_sizes[0] = default_page_size;
2636N/A _page_sizes[1] = 0; // sentinel
2636N/A }
2636N/A
5694N/A public:
2636N/A static void init(void); // Called before command line parsing
2636N/A static jint init_2(void); // Called after command line parsing
2636N/A static void init_globals(void) { // Called from init_globals() in init.cpp
2636N/A init_globals_ext();
5694N/A }
2636N/A static void init_3(void); // Called at the end of vm init
2636N/A
0N/A // File names are case-insensitive on windows only
0N/A // Override me as needed
2636N/A static int file_name_strcmp(const char* s1, const char* s2);
5694N/A
2636N/A static bool getenv(const char* name, char* buffer, int len);
2636N/A static bool have_special_privileges();
0N/A
0N/A static jlong javaTimeMillis();
2636N/A static jlong javaTimeNanos();
5694N/A static void javaTimeNanos_info(jvmtiTimerInfo *info_ptr);
2636N/A static void run_periodic_checks();
2636N/A
2636N/A
2636N/A // Returns the elapsed time in seconds since the vm started.
2636N/A static double elapsedTime();
5694N/A
2636N/A // Returns real time in seconds since an arbitrary point
2636N/A // in the past.
2636N/A static bool getTimesSecs(double* process_real_time,
0N/A double* process_user_time,
2636N/A double* process_system_time);
5694N/A
2636N/A // Interface to the performance counter
2636N/A static jlong elapsed_counter();
2636N/A static jlong elapsed_frequency();
2636N/A
2636N/A // The "virtual time" of a thread is the amount of time a thread has
5694N/A // actually run. The first function indicates whether the OS supports
2636N/A // this functionality for the current thread, and if so:
2636N/A // * the second enables vtime tracking (if that is required).
2636N/A // * the third tells whether vtime is enabled.
2636N/A // * the fourth returns the elapsed virtual time for the current
2636N/A // thread.
5694N/A static bool supports_vtime();
2636N/A static bool enable_vtime();
2636N/A static bool vtime_enabled();
2636N/A static double elapsedVTime();
2636N/A
2636N/A // Return current local time in a string (YYYY-MM-DD HH:MM:SS).
5694N/A // It is MT safe, but not async-safe, as reading time zone
2636N/A // information may require a lock on some platforms.
2636N/A static char* local_time_string(char *buf, size_t buflen);
0N/A static struct tm* localtime_pd (const time_t* clock, struct tm* res);
0N/A // Fill in buffer with current local time as an ISO-8601 string.
2636N/A // E.g., YYYY-MM-DDThh:mm:ss.mmm+zzzz.
5694N/A // Returns buffer, or NULL if it failed.
2636N/A static char* iso8601_time(char* buffer, size_t buffer_length);
2636N/A
2636N/A // Interface for detecting multiprocessor system
2636N/A static inline bool is_MP() {
2636N/A assert(_processor_count > 0, "invalid processor count");
5694N/A return _processor_count > 1;
2636N/A }
2636N/A static julong available_memory();
2636N/A static julong physical_memory();
2636N/A static julong allocatable_physical_memory(julong size);
5694N/A static bool is_server_class_machine();
2636N/A
0N/A // number of CPUs
0N/A static int processor_count() {
2636N/A return _processor_count;
5694N/A }
2636N/A static void set_processor_count(int count) { _processor_count = count; }
2636N/A
2636N/A // Returns the number of CPUs this process is currently allowed to run on.
0N/A // Note that on some OSes this can change dynamically.
2636N/A static int active_processor_count();
5694N/A
2636N/A // Bind processes to processors.
0N/A // This is a two step procedure:
0N/A // first you generate a distribution of processes to processors,
2636N/A // then you bind processes according to that distribution.
5694N/A // Compute a distribution for number of processes to processors.
2636N/A // Stores the processor id's into the distribution array argument.
2636N/A // Returns true if it worked, false if it didn't.
2636N/A static bool distribute_processes(uint length, uint* distribution);
0N/A // Binds the current process to a processor.
2636N/A // Returns true if it worked, false if it didn't.
5694N/A static bool bind_to_processor(uint processor_id);
2636N/A
2636N/A // Give a name to the current thread.
2636N/A static void set_native_thread_name(const char *name);
0N/A
2636N/A // Interface for stack banging (predetect possible stack overflow for
5694N/A // exception processing) There are guard pages, and above that shadow
2636N/A // pages for stack overflow checking.
2636N/A static bool uses_stack_guard_pages();
0N/A static bool allocate_stack_guard_pages();
2636N/A static void bang_stack_shadow_pages();
5694N/A static bool stack_shadow_pages_available(Thread *thread, methodHandle method);
2636N/A
2636N/A // OS interface to Virtual Memory
0N/A
2636N/A // Return the default page size.
5694N/A static int vm_page_size();
2636N/A
2636N/A // Return the page size to use for a region of memory. The min_pages argument
2636N/A // is a hint intended to limit fragmentation; it says the returned page size
2636N/A // should be <= region_max_size / min_pages. Because min_pages is a hint,
2636N/A // this routine may return a size larger than region_max_size / min_pages.
5694N/A //
2636N/A // The current implementation ignores min_pages if a larger page size is an
2636N/A // exact multiple of both region_min_size and region_max_size. This allows
2636N/A // larger pages to be used when doing so would not cause fragmentation; in
0N/A // particular, a single page can be used when region_min_size ==
2636N/A // region_max_size == a supported page size.
5694N/A static size_t page_size_for_region(size_t region_min_size,
2636N/A size_t region_max_size,
2636N/A uint min_pages);
2636N/A
2636N/A // Methods for tracing page sizes returned by the above method; enabled by
2636N/A // TracePageSizes. The region_{min,max}_size parameters should be the values
5694N/A // passed to page_size_for_region() and page_size should be the result of that
2636N/A // call. The (optional) base and size parameters should come from the
2636N/A // ReservedSpace base() and size() methods.
2636N/A static void trace_page_sizes(const char* str, const size_t* page_sizes,
2636N/A int count) PRODUCT_RETURN;
2636N/A static void trace_page_sizes(const char* str, const size_t region_min_size,
5694N/A const size_t region_max_size,
2636N/A const size_t page_size,
2636N/A const char* base = NULL,
2636N/A const size_t size = 0) PRODUCT_RETURN;
2636N/A
2636N/A static int vm_allocation_granularity();
5694N/A static char* reserve_memory(size_t bytes, char* addr = 0,
2636N/A size_t alignment_hint = 0);
2636N/A static char* reserve_memory_aligned(size_t size, size_t alignment);
2636N/A static char* attempt_reserve_memory_at(size_t bytes, char* addr);
2636N/A static void split_reserved_memory(char *base, size_t size,
2636N/A size_t split, bool realloc);
5694N/A static bool commit_memory(char* addr, size_t bytes,
2636N/A bool executable = false);
2636N/A static bool commit_memory(char* addr, size_t size, size_t alignment_hint,
2636N/A bool executable = false);
2636N/A static bool uncommit_memory(char* addr, size_t bytes);
2636N/A static bool release_memory(char* addr, size_t bytes);
5694N/A
2636N/A enum ProtType { MEM_PROT_NONE, MEM_PROT_READ, MEM_PROT_RW, MEM_PROT_RWX };
2636N/A static bool protect_memory(char* addr, size_t bytes, ProtType prot,
2636N/A bool is_committed = true);
0N/A
2636N/A static bool guard_memory(char* addr, size_t bytes);
5694N/A static bool unguard_memory(char* addr, size_t bytes);
2636N/A static bool create_stack_guard_pages(char* addr, size_t bytes);
2636N/A static bool remove_stack_guard_pages(char* addr, size_t bytes);
2636N/A
0N/A static char* map_memory(int fd, const char* file_name, size_t file_offset,
2636N/A char *addr, size_t bytes, bool read_only = false,
5694N/A bool allow_exec = false);
2636N/A static char* remap_memory(int fd, const char* file_name, size_t file_offset,
2636N/A char *addr, size_t bytes, bool read_only,
2636N/A bool allow_exec);
2636N/A static bool unmap_memory(char *addr, size_t bytes);
2636N/A static void free_memory(char *addr, size_t bytes, size_t alignment_hint);
5694N/A static void realign_memory(char *addr, size_t bytes, size_t alignment_hint);
2636N/A
2636N/A // NUMA-specific interface
2636N/A static bool numa_has_static_binding();
2636N/A static bool numa_has_group_homing();
5694N/A static void numa_make_local(char *addr, size_t bytes, int lgrp_hint);
2636N/A static void numa_make_global(char *addr, size_t bytes);
2636N/A static size_t numa_get_groups_num();
2636N/A static size_t numa_get_leaf_groups(int *ids, size_t size);
2636N/A static bool numa_topology_changed();
2636N/A static int numa_get_group_id();
5694N/A
2636N/A // Page manipulation
2636N/A struct page_info {
2636N/A size_t size;
0N/A int lgrp_id;
2636N/A };
5694N/A static bool get_page_info(char *start, page_info* info);
2636N/A static char* scan_pages(char *start, char* end, page_info* page_expected, page_info* page_found);
2636N/A
2636N/A static char* non_memory_address_word();
2636N/A // reserve, commit and pin the entire memory region
2636N/A static char* reserve_memory_special(size_t size, char* addr = NULL,
5694N/A bool executable = false);
2636N/A static bool release_memory_special(char* addr, size_t bytes);
2636N/A static void large_page_init();
2636N/A static size_t large_page_size();
2636N/A static bool can_commit_large_page_memory();
2636N/A static bool can_execute_large_page_memory();
5694N/A
2636N/A // OS interface to polling page
2636N/A static address get_polling_page() { return _polling_page; }
2636N/A static void set_polling_page(address page) { _polling_page = page; }
2636N/A static bool is_poll_address(address addr) { return addr >= _polling_page && addr < (_polling_page + os::vm_page_size()); }
2636N/A static void make_polling_page_unreadable();
5694N/A static void make_polling_page_readable();
2636N/A
2636N/A // Routines used to serialize the thread state without using membars
2636N/A static void serialize_thread_states();
2636N/A
2636N/A // Since we write to the serialize page from every thread, we
5694N/A // want stores to be on unique cache lines whenever possible
2636N/A // in order to minimize CPU cross talk. We pre-compute the
2636N/A // amount to shift the thread* to make this offset unique to
2636N/A // each thread.
2636N/A static int get_serialize_page_shift_count() {
2636N/A return SerializePageShiftCount;
5694N/A }
2636N/A
2636N/A static void set_serialize_page_mask(uintptr_t mask) {
2636N/A _serialize_page_mask = mask;
2636N/A }
2636N/A
5694N/A static unsigned int get_serialize_page_mask() {
2636N/A return _serialize_page_mask;
2636N/A }
2636N/A
2636N/A static void set_memory_serialize_page(address page);
2636N/A
5694N/A static address get_memory_serialize_page() {
2636N/A return (address)_mem_serialize_page;
2636N/A }
0N/A
0N/A static inline void write_memory_serialize_page(JavaThread *thread) {
2636N/A uintptr_t page_offset = ((uintptr_t)thread >>
5694N/A get_serialize_page_shift_count()) &
2636N/A get_serialize_page_mask();
2636N/A *(volatile int32_t *)((uintptr_t)_mem_serialize_page+page_offset) = 1;
0N/A }
0N/A
2636N/A static bool is_memory_serialize_page(JavaThread *thread, address addr) {
5694N/A if (UseMembar) return false;
2636N/A // Previously this function calculated the exact address of this
2636N/A // thread's serialize page, and checked if the faulting address
0N/A // was equal. However, some platforms mask off faulting addresses
2636N/A // to the page size, so now we just check that the address is
5694N/A // within the page. This makes the thread argument unnecessary,
2636N/A // but we retain the NULL check to preserve existing behaviour.
2636N/A if (thread == NULL) return false;
2636N/A address page = (address) _mem_serialize_page;
2636N/A return addr >= page && addr < (page + os::vm_page_size());
5694N/A }
2636N/A
2636N/A static void block_on_serialize_page_trap();
2636N/A
2636N/A // threads
2636N/A
5694N/A enum ThreadType {
2636N/A vm_thread,
2636N/A cgc_thread, // Concurrent GC thread
2636N/A pgc_thread, // Parallel GC thread
2636N/A java_thread,
2636N/A compiler_thread,
5694N/A watcher_thread,
2636N/A os_thread
2636N/A };
2636N/A
2636N/A static bool create_thread(Thread* thread,
0N/A ThreadType thr_type,
0N/A size_t stack_size = 0);
2636N/A static bool create_main_thread(JavaThread* thread);
5694N/A static bool create_attached_thread(JavaThread* thread);
2636N/A static void pd_start_thread(Thread* thread);
2636N/A static void start_thread(Thread* thread);
2636N/A
2636N/A static void initialize_thread();
2636N/A static void free_thread(OSThread* osthread);
5694N/A
2636N/A // thread id on Linux/64bit is 64bit, on Windows and Solaris, it's 32bit
2636N/A static intx current_thread_id();
2636N/A static int current_process_id();
4005N/A static int sleep(Thread* thread, jlong ms, bool interruptable);
4005N/A static int naked_sleep();
5694N/A static void infinite_sleep(); // never returns, use with CAUTION
2636N/A static void yield(); // Yields to all threads with same priority
2636N/A enum YieldResult {
2636N/A YIELD_SWITCHED = 1, // caller descheduled, other ready threads exist & ran
2636N/A YIELD_NONEREADY = 0, // No other runnable/ready threads.
2636N/A // platform-specific yield return immediately
5694N/A YIELD_UNKNOWN = -1 // Unknown: platform doesn't support _SWITCHED or _NONEREADY
2636N/A // YIELD_SWITCHED and YIELD_NONREADY imply the platform supports a "strong"
2636N/A // yield that can be used in lieu of blocking.
2636N/A } ;
2636N/A static YieldResult NakedYield () ;
2636N/A static void yield_all(int attempts = 0); // Yields to all other threads including lower priority
5694N/A static void loop_breaker(int attempts); // called from within tight loops to possibly influence time-sharing
2636N/A static OSReturn set_priority(Thread* thread, ThreadPriority priority);
2636N/A static OSReturn get_priority(const Thread* const thread, ThreadPriority& priority);
2636N/A
2636N/A static void interrupt(Thread* thread);
2636N/A static bool is_interrupted(Thread* thread, bool clear_interrupted);
5694N/A
2636N/A static int pd_self_suspend_thread(Thread* thread);
0N/A
0N/A static ExtendedPC fetch_frame_from_context(void* ucVoid, intptr_t** sp, intptr_t** fp);
2636N/A static frame fetch_frame_from_context(void* ucVoid);
5694N/A
2636N/A static ExtendedPC get_thread_pc(Thread *thread);
0N/A static void breakpoint();
0N/A
2636N/A static address current_stack_pointer();
5694N/A static address current_stack_base();
2636N/A static size_t current_stack_size();
5694N/A
2636N/A static int message_box(const char* title, const char* message);
0N/A static char* do_you_want_to_debug(const char* message);
2636N/A
5694N/A // run cmd in a separate process and return its exit code; or -1 on failures
2636N/A static int fork_and_exec(char *cmd);
2636N/A
0N/A // Set file to send error reports.
2636N/A static void set_error_file(const char *logfile);
5694N/A
2636N/A // os::exit() is merged with vm_exit()
2636N/A // static void exit(int num);
0N/A
2636N/A // Terminate the VM, but don't exit the process
5694N/A static void shutdown();
2636N/A
2636N/A // Terminate with an error. Default is to generate a core file on platforms
2636N/A // that support such things. This calls shutdown() and then aborts.
2636N/A static void abort(bool dump_core = true);
2636N/A
5694N/A // Die immediately, no exit hook, no abort hook, no cleanup.
2636N/A static void die();
2636N/A
2636N/A // File i/o operations
2636N/A static const int default_file_open_flags();
2636N/A static int open(const char *path, int oflag, int mode);
5694N/A static int close(int fd);
2636N/A static jlong lseek(int fd, jlong offset, int whence);
2636N/A static char* native_path(char *path);
0N/A static int ftruncate(int fd, jlong length);
0N/A static int fsync(int fd);
2636N/A static int available(int fd, jlong *bytes);
5694N/A
2636N/A //File i/o operations
2636N/A
0N/A static size_t read(int fd, void *buf, unsigned int nBytes);
0N/A static size_t restartable_read(int fd, void *buf, unsigned int nBytes);
2636N/A static size_t write(int fd, const void *buf, unsigned int nBytes);
5694N/A
2636N/A // Reading directories.
2636N/A static DIR* opendir(const char* dirname);
0N/A static int readdir_buf_size(const char *path);
0N/A static struct dirent* readdir(DIR* dirp, dirent* dbuf);
2636N/A static int closedir(DIR* dirp);
5694N/A
2636N/A // Dynamic library extension
0N/A static const char* dll_file_extension();
0N/A
2636N/A static const char* get_temp_directory();
5694N/A static const char* get_current_directory(char *buf, int buflen);
2636N/A
2636N/A // Builds a platform-specific full library path given a ld path and lib name
2636N/A static void dll_build_name(char* buffer, size_t size,
2636N/A const char* pathname, const char* fname);
2636N/A
5694N/A // Symbol lookup, find nearest function name; basically it implements
2636N/A // dladdr() for all platforms. Name of the nearest function is copied
2636N/A // to buf. Distance from its base address is returned as offset.
2636N/A // If function name is not found, buf[0] is set to '\0' and offset is
2636N/A // set to -1.
2636N/A static bool dll_address_to_function_name(address addr, char* buf,
5694N/A int buflen, int* offset);
2636N/A
2636N/A // Locate DLL/DSO. On success, full path of the library is copied to
2636N/A // buf, and offset is set to be the distance between addr and the
2636N/A // library's base address. On failure, buf[0] is set to '\0' and
5694N/A // offset is set to -1.
2636N/A static bool dll_address_to_library_name(address addr, char* buf,
2636N/A int buflen, int* offset);
2636N/A
2636N/A // Find out whether the pc is in the static code for jvm.dll/libjvm.so.
5694N/A static bool address_is_in_vm(address addr);
2636N/A
2636N/A // Loads .dll/.so and
2636N/A // in case of error it checks if .dll/.so was built for the
2636N/A // same architecture as Hotspot is running on
5694N/A static void* dll_load(const char *name, char *ebuf, int ebuflen);
2636N/A
2636N/A // lookup symbol in a shared library
2636N/A static void* dll_lookup(void* handle, const char* name);
2636N/A
5694N/A // Unload library
2636N/A static void dll_unload(void *lib);
2636N/A
2636N/A // Print out system information; they are called by fatal error handler.
2636N/A // Output format may be different on different platforms.
2636N/A static void print_os_info(outputStream* st);
5694N/A static void print_os_info_brief(outputStream* st);
2636N/A static void print_cpu_info(outputStream* st);
2636N/A static void pd_print_cpu_info(outputStream* st);
2636N/A static void print_memory_info(outputStream* st);
2636N/A static void print_dll_info(outputStream* st);
2636N/A static void print_environment_variables(outputStream* st, const char** env_list, char* buffer, int len);
5694N/A static void print_context(outputStream* st, void* context);
2636N/A static void print_register_info(outputStream* st, void* context);
0N/A static void print_siginfo(outputStream* st, void* siginfo);
0N/A static void print_signal_handlers(outputStream* st, char* buf, size_t buflen);
2636N/A static void print_date_and_time(outputStream* st);
5694N/A
2636N/A static void print_location(outputStream* st, intptr_t x, bool verbose = false);
2636N/A static size_t lasterror(char *buf, size_t len);
0N/A static int get_last_error();
2636N/A
5694N/A // Determines whether the calling process is being debugged by a user-mode debugger.
2636N/A static bool is_debugger_attached();
723N/A
0N/A // wait for a key press if PauseAtExit is set
2636N/A static void wait_for_keypress_at_exit(void);
5694N/A
2636N/A // The following two functions are used by fatal error handler to trace
2636N/A // native (C) frames. They are not part of frame.hpp/frame.cpp because
2636N/A // frame.hpp/cpp assume thread is JavaThread, and also because different
2636N/A // OS/compiler may have different convention or provide different API to
2636N/A // walk C frames.
5694N/A //
2636N/A // We don't attempt to become a debugger, so we only follow frames if that
2636N/A // does not require a lookup in the unwind table, which is part of the binary
0N/A // file but may be unsafe to read after a fatal error. So on x86, we can
0N/A // only walk stack if %ebp is used as frame pointer; on ia64, it's not
2636N/A // possible to walk C stack without having the unwind table.
5694N/A static bool is_first_C_frame(frame *fr);
2636N/A static frame get_sender_for_C_frame(frame *fr);
2636N/A
2636N/A // return current frame. pc() and sp() are set to NULL on failure.
0N/A static frame current_frame();
2636N/A
5694N/A static void print_hex_dump(outputStream* st, address start, address end, int unitsize);
2636N/A
2636N/A // returns a string to describe the exception/signal;
2636N/A // returns NULL if exception_code is not an OS exception/signal.
0N/A static const char* exception_name(int exception_code, char* buf, size_t buflen);
2636N/A
5694N/A // Returns native Java library, loads if necessary
2636N/A static void* native_java_library();
2636N/A
2636N/A // Fills in path to jvm.dll/libjvm.so (used by the Disassembler)
0N/A static void jvm_path(char *buf, jint buflen);
2636N/A
5694N/A // Returns true if we are running in a headless jre.
2636N/A static bool is_headless_jre();
2636N/A
0N/A // JNI names
0N/A static void print_jni_name_prefix_on(outputStream* st, int args_size);
2636N/A static void print_jni_name_suffix_on(outputStream* st, int args_size);
5694N/A
2636N/A // File conventions
2636N/A static const char* file_separator();
2636N/A static const char* line_separator();
2636N/A static const char* path_separator();
2636N/A
5694N/A // Init os specific system properties values
2636N/A static void init_system_properties_values();
2636N/A
2636N/A // IO operations, non-JVM_ version.
2636N/A static int stat(const char* path, struct stat* sbuf);
2636N/A static bool dir_is_empty(const char* path);
5694N/A
2636N/A // IO operations on binary files
2636N/A static int create_binary_file(const char* path, bool rewrite_existing);
2636N/A static jlong current_file_offset(int fd);
2636N/A static jlong seek_to_file_offset(int fd, jlong offset);
5694N/A
2636N/A // Thread Local Storage
2636N/A static int allocate_thread_local_storage();
2636N/A static void thread_local_storage_at_put(int index, void* value);
0N/A static void* thread_local_storage_at(int index);
2636N/A static void free_thread_local_storage(int index);
5694N/A
2636N/A // General allocation (must be MT-safe)
2636N/A static void* malloc (size_t size);
0N/A static void* realloc (void *memblock, size_t size);
2636N/A static void free (void *memblock);
5694N/A static bool check_heap(bool force = false); // verify C heap integrity
2636N/A static char* strdup(const char *); // Like strdup
2636N/A
2636N/A#ifndef PRODUCT
0N/A static julong num_mallocs; // # of calls to malloc/realloc
2636N/A static julong alloc_bytes; // # of bytes allocated
5694N/A static julong num_frees; // # of calls to free
2636N/A static julong free_bytes; // # of bytes freed
2636N/A#endif
2636N/A
0N/A // SocketInterface (ex HPI SocketInterface )
2636N/A static int socket(int domain, int type, int protocol);
5694N/A static int socket_close(int fd);
2636N/A static int socket_shutdown(int fd, int howto);
2636N/A static int recv(int fd, char* buf, size_t nBytes, uint flags);
2636N/A static int send(int fd, char* buf, size_t nBytes, uint flags);
0N/A static int raw_send(int fd, char* buf, size_t nBytes, uint flags);
2636N/A static int timeout(int fd, long timeout);
5694N/A static int listen(int fd, int count);
2636N/A static int connect(int fd, struct sockaddr* him, socklen_t len);
2636N/A static int bind(int fd, struct sockaddr* him, socklen_t len);
2636N/A static int accept(int fd, struct sockaddr* him, socklen_t* len);
0N/A static int recvfrom(int fd, char* buf, size_t nbytes, uint flags,
2636N/A struct sockaddr* from, socklen_t* fromlen);
5694N/A static int get_sock_name(int fd, struct sockaddr* him, socklen_t* len);
2636N/A static int sendto(int fd, char* buf, size_t len, uint flags,
2636N/A struct sockaddr* to, socklen_t tolen);
0N/A static int socket_available(int fd, jint* pbytes);
0N/A
2636N/A static int get_sock_opt(int fd, int level, int optname,
5694N/A char* optval, socklen_t* optlen);
2636N/A static int set_sock_opt(int fd, int level, int optname,
2636N/A const char* optval, socklen_t optlen);
0N/A static int get_host_name(char* name, int namelen);
0N/A
2636N/A static struct hostent* get_host_by_name(char* name);
5694N/A
2636N/A // Printing 64 bit integers
0N/A static const char* jlong_format_specifier();
0N/A static const char* julong_format_specifier();
2636N/A
5694N/A // Support for signals (see JVM_RaiseSignal, JVM_RegisterSignal)
2636N/A static void signal_init();
2636N/A static void signal_init_pd();
0N/A static void signal_notify(int signal_number);
0N/A static void* signal(int signal_number, void* handler);
2636N/A static void signal_raise(int signal_number);
5694N/A static int signal_wait();
2636N/A static int signal_lookup();
2636N/A static void* user_handler();
0N/A static void terminate_signal_thread();
0N/A static int sigexitnum_pd();
2636N/A
5694N/A // random number generation
2636N/A static long random(); // return 32bit pseudorandom number
2636N/A static void init_random(long initval); // initialize random sequence
0N/A
0N/A // Structured OS Exception support
2636N/A static void os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread);
5694N/A
2636N/A // On Windows this will create an actual minidump, on Linux/Solaris it will simply check core dump limits
2636N/A static void check_or_create_dump(void* exceptionRecord, void* contextRecord, char* buffer, size_t bufferSize);
0N/A
0N/A // JVMTI & JVM monitoring and management support
2636N/A // The thread_cpu_time() and current_thread_cpu_time() are only
5694N/A // supported if is_thread_cpu_time_supported() returns true.
2636N/A // They are not supported on Solaris T1.
2636N/A
2636N/A // Thread CPU Time - return the fast estimate on a platform
0N/A // On Solaris - call gethrvtime (fast) - user time only
2636N/A // On Linux - fast clock_gettime where available - user+sys
5694N/A // - otherwise: very slow /proc fs - user+sys
2636N/A // On Windows - GetThreadTimes - user+sys
2636N/A static jlong current_thread_cpu_time();
0N/A static jlong thread_cpu_time(Thread* t);
0N/A
2636N/A // Thread CPU Time with user_sys_cpu_time parameter.
5694N/A //
2636N/A // If user_sys_cpu_time is true, user+sys time is returned.
2636N/A // Otherwise, only user time is returned
2636N/A static jlong current_thread_cpu_time(bool user_sys_cpu_time);
2636N/A static jlong thread_cpu_time(Thread* t, bool user_sys_cpu_time);
2636N/A
5694N/A // Return a bunch of info about the timers.
2636N/A // Note that the returned info for these two functions may be different
2636N/A // on some platforms
2636N/A static void current_thread_cpu_time_info(jvmtiTimerInfo *info_ptr);
2636N/A static void thread_cpu_time_info(jvmtiTimerInfo *info_ptr);
2636N/A
5694N/A static bool is_thread_cpu_time_supported();
2636N/A
2636N/A // System loadavg support. Returns -1 if load average cannot be obtained.
2636N/A static int loadavg(double loadavg[], int nelem);
2636N/A
5694N/A // Hook for os specific jvm options that we don't want to abort on seeing
2636N/A static bool obsolete_option(const JavaVMOption *option);
2636N/A
0N/A // Read file line by line. If line is longer than bsize,
2636N/A // rest of line is skipped. Returns number of bytes read or -1 on EOF
5694N/A static int get_line_chars(int fd, char *buf, const size_t bsize);
2636N/A
2636N/A // Extensions
0N/A#include "runtime/os_ext.hpp"
0N/A
2636N/A public:
5694N/A
2636N/A // Platform dependent stuff
2636N/A#ifdef TARGET_OS_FAMILY_linux
2636N/A# include "os_linux.hpp"
2636N/A# include "os_posix.hpp"
2636N/A#endif
5694N/A#ifdef TARGET_OS_FAMILY_solaris
2636N/A# include "os_solaris.hpp"
2636N/A# include "os_posix.hpp"
0N/A#endif
0N/A#ifdef TARGET_OS_FAMILY_windows
2636N/A# include "os_windows.hpp"
5694N/A#endif
2636N/A#ifdef TARGET_OS_FAMILY_bsd
2636N/A# include "os_posix.hpp"
2636N/A# include "os_bsd.hpp"
2636N/A#endif
0N/A#ifdef TARGET_OS_ARCH_linux_x86
2636N/A# include "os_linux_x86.hpp"
5694N/A#endif
2636N/A#ifdef TARGET_OS_ARCH_linux_sparc
2636N/A# include "os_linux_sparc.hpp"
2636N/A#endif
2636N/A#ifdef TARGET_OS_ARCH_linux_zero
2636N/A# include "os_linux_zero.hpp"
2636N/A#endif
5694N/A#ifdef TARGET_OS_ARCH_solaris_x86
2636N/A# include "os_solaris_x86.hpp"
2636N/A#endif
0N/A#ifdef TARGET_OS_ARCH_solaris_sparc
0N/A# include "os_solaris_sparc.hpp"
2636N/A#endif
2636N/A#ifdef TARGET_OS_ARCH_windows_x86
5694N/A# include "os_windows_x86.hpp"
5077N/A#endif
5156N/A#ifdef TARGET_OS_ARCH_linux_arm
2636N/A# include "os_linux_arm.hpp"
2636N/A#endif
0N/A#ifdef TARGET_OS_ARCH_linux_ppc
2636N/A# include "os_linux_ppc.hpp"
5694N/A#endif
2636N/A#ifdef TARGET_OS_ARCH_bsd_x86
5694N/A# include "os_bsd_x86.hpp"
2636N/A#endif
0N/A#ifdef TARGET_OS_ARCH_bsd_zero
2636N/A# include "os_bsd_zero.hpp"
5694N/A#endif
2636N/A
5694N/A public:
0N/A // debugging support (mostly used by debug.cpp but also fatal error handler)
0N/A static bool find(address pc, outputStream* st = tty); // OS specific function to make sense out of an address
2636N/A
5694N/A static bool dont_yield(); // when true, JVM_Yield() is nop
2636N/A static void print_statistics();
0N/A
0N/A // Thread priority helpers (implemented in OS-specific part)
2636N/A static OSReturn set_native_priority(Thread* thread, int native_prio);
5694N/A static OSReturn get_native_priority(const Thread* const thread, int* priority_ptr);
2636N/A static int java_to_os_priority[CriticalPriority + 1];
2636N/A // Hint to the underlying OS that a task switch would not be good.
2636N/A // Void return because it's a hint and can fail.
2636N/A static void hint_no_preempt();
2636N/A
5694N/A // Used at creation if requested by the diagnostic flag PauseAtStartup.
2636N/A // Causes the VM to wait until an external stimulus has been applied
2636N/A // (for Unix, that stimulus is a signal, for Windows, an external
2636N/A // ResumeThread call)
2636N/A static void pause();
2636N/A
5694N/A protected:
2636N/A static long _rand_seed; // seed for random number generator
2636N/A static int _processor_count; // number of processors
2636N/A
2636N/A static char* format_boot_path(const char* format_string,
2636N/A const char* home,
5694N/A int home_len,
2636N/A char fileSep,
2636N/A char pathSep);
2636N/A static bool set_boot_path(char fileSep, char pathSep);
2636N/A static char** split_path(const char* path, int* n);
2636N/A};
5694N/A
2636N/A// Note that "PAUSE" is almost always used with synchronization
2636N/A// so arguably we should provide Atomic::SpinPause() instead
2636N/A// of the global SpinPause() with C linkage.
2636N/A// It'd also be eligible for inlining on many platforms.
2636N/A
5694N/Aextern "C" int SpinPause () ;
2636N/Aextern "C" int SafeFetch32 (int * adr, int errValue) ;
2636N/Aextern "C" intptr_t SafeFetchN (intptr_t * adr, intptr_t errValue) ;
0N/A
0N/A#endif // SHARE_VM_RUNTIME_OS_HPP
2636N/A