/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#ifndef OS_LINUX_VM_OS_LINUX_HPP
#define OS_LINUX_VM_OS_LINUX_HPP
// Linux_OS defines the interface to Linux operating systems
/* pthread_getattr_np comes with LinuxThreads-0.9-7 on RedHat 7.1 */
class Linux {
friend class os;
// For signal-chaining
// preinstalled signal handlers
// __sigaction(), signal() is loaded
static struct sigaction *get_preinstalled_handler(int);
static void save_preinstalled_handler(int, struct sigaction&);
static void check_signal_handler(int sig);
// For signal flags diagnostics
static const char *_glibc_version;
static const char *_libpthread_version;
static bool _is_floating_stack;
static bool _is_NPTL;
static bool _supports_fast_thread_cpu_time;
protected:
static int _page_size;
static const int _vm_default_page_size;
static julong available_memory();
static void initialize_system_info();
static bool supports_variable_stack_size();
static void rebuild_cpu_to_node_map();
public:
static bool _stack_is_executable;
static void init_thread_fpu_state();
static int get_fpu_control_word();
static void set_fpu_control_word(int fpu_control);
// returns kernel thread id (similar to LWP id on Solaris), which can be
// used to access /proc
static bool is_initial_thread(void);
// For Analyzer Forte AsyncGetCallTrace profiling support:
//
// This interface should be declared in os_linux_i486.hpp, but
// that file provides extensions to the os class and not the
// Linux class.
// This boolean allows users to forward their own non-matching signals
// to JVM_handle_linux_signal, harmlessly.
static bool signal_handlers_are_installed;
static int get_our_sigflags(int);
static void set_our_sigflags(int, int);
static void signal_sets_init();
static void install_signal_handlers();
static void set_signal_handler(int, bool);
static bool is_sig_ignored(int sig);
static sigset_t* unblocked_signals();
static sigset_t* vm_signals();
static sigset_t* allowdebug_blocked_signals();
// For signal-chaining
// GNU libc and libpthread version strings
// NPTL or LinuxThreads?
// NPTL is always floating stack. LinuxThreads could be using floating
// stack or fixed stack.
static void libpthread_init();
static bool libnuma_init();
// Minimum stack size a thread can be created with (allowing
// the VM to completely create the thread and enter user code)
// Return default stack size or guard size for the specified thread type
// Stack overflow handling
static int max_register_window_saves_before_flushing();
// Real-time clock functions
static void clock_init(void);
// fast POSIX clocks support
static void fast_thread_clock_init(void);
static inline bool supports_monotonic_clock() {
return _clock_gettime != NULL;
}
}
}
static bool supports_fast_thread_cpu_time() {
return _supports_fast_thread_cpu_time;
}
// Stack repair handling
// none present
// LinuxThreads work-around for 6292965
static int safe_cond_timedwait(pthread_cond_t *_cond, pthread_mutex_t *_mutex, const struct timespec *_abstime);
private:
typedef int (*sched_getcpu_func_t)(void);
typedef int (*numa_max_node_func_t)(void);
typedef int (*numa_available_func_t)(void);
static unsigned long* _numa_all_nodes;
static void set_numa_interleave_memory(numa_interleave_memory_func_t func) { _numa_interleave_memory = func; }
static int sched_getcpu_syscall(void);
public:
}
}
}
}
static int get_node_by_cpu(int cpu_id);
};
private:
volatile int _Event ;
volatile int _nParked ;
public: // TODO-FIXME: make dtor private
public:
PlatformEvent() {
int status;
_Event = 0 ;
_nParked = 0 ;
}
// Use caution with reset() and fired() -- they may require MEMBARs
void park () ;
void unpark () ;
int TryPark () ;
} ;
protected:
public: // TODO-FIXME: make dtor private
public:
PlatformParker() {
int status;
}
};
#endif // OS_LINUX_VM_OS_LINUX_HPP