8219241: Provide basic virtualization related info in the hs_error file on linux/windows x86_64
Reviewed-by: dholmes, mdoerr
This commit is contained in:
parent
d44402f301
commit
d40aa622cf
@ -381,6 +381,27 @@ void VM_Version::initialize() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VM_Version::print_platform_virtualization_info(outputStream* st) {
|
||||||
|
const char* info_file = "/proc/ppc64/lparcfg";
|
||||||
|
const char* kw[] = { "system_type=", // qemu indicates PowerKVM
|
||||||
|
"partition_entitled_capacity=", // entitled processor capacity percentage
|
||||||
|
"partition_max_entitled_capacity=",
|
||||||
|
"capacity_weight=", // partition CPU weight
|
||||||
|
"partition_active_processors=",
|
||||||
|
"partition_potential_processors=",
|
||||||
|
"entitled_proc_capacity_available=",
|
||||||
|
"capped=", // 0 - uncapped, 1 - vcpus capped at entitled processor capacity percentage
|
||||||
|
"shared_processor_mode=", // (non)dedicated partition
|
||||||
|
"system_potential_processors=",
|
||||||
|
"pool=", // CPU-pool number
|
||||||
|
"pool_capacity=",
|
||||||
|
"NumLpars=", // on non-KVM machines, NumLpars is not found for full partition mode machines
|
||||||
|
NULL };
|
||||||
|
if (!print_matching_lines_from_file(info_file, st, kw)) {
|
||||||
|
st->print_cr(" <%s Not Available>", info_file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool VM_Version::use_biased_locking() {
|
bool VM_Version::use_biased_locking() {
|
||||||
#if INCLUDE_RTM_OPT
|
#if INCLUDE_RTM_OPT
|
||||||
// RTM locking is most useful when there is high lock contention and
|
// RTM locking is most useful when there is high lock contention and
|
||||||
|
@ -88,6 +88,9 @@ public:
|
|||||||
// Initialization
|
// Initialization
|
||||||
static void initialize();
|
static void initialize();
|
||||||
|
|
||||||
|
// Override Abstract_VM_Version implementation
|
||||||
|
static void print_platform_virtualization_info(outputStream*);
|
||||||
|
|
||||||
// Override Abstract_VM_Version implementation
|
// Override Abstract_VM_Version implementation
|
||||||
static bool use_biased_locking();
|
static bool use_biased_locking();
|
||||||
|
|
||||||
|
@ -516,6 +516,19 @@ void VM_Version::print_features_internal(const char* text, bool print_anyway) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VM_Version::print_platform_virtualization_info(outputStream* st) {
|
||||||
|
// /proc/sysinfo contains interesting information about
|
||||||
|
// - LPAR
|
||||||
|
// - whole "Box" (CPUs )
|
||||||
|
// - z/VM / KVM (VM<nn>); this is not available in an LPAR-only setup
|
||||||
|
const char* kw[] = { "LPAR", "CPUs", "VM", NULL };
|
||||||
|
const char* info_file = "/proc/sysinfo";
|
||||||
|
|
||||||
|
if (!print_matching_lines_from_file(info_file, st, kw)) {
|
||||||
|
st->print_cr(" <%s Not Available>", info_file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void VM_Version::print_features() {
|
void VM_Version::print_features() {
|
||||||
print_features_internal("Version:");
|
print_features_internal("Version:");
|
||||||
}
|
}
|
||||||
|
@ -346,6 +346,9 @@ class VM_Version: public Abstract_VM_Version {
|
|||||||
static void print_features();
|
static void print_features();
|
||||||
static bool is_determine_features_test_running() { return _is_determine_features_test_running; }
|
static bool is_determine_features_test_running() { return _is_determine_features_test_running; }
|
||||||
|
|
||||||
|
// Override Abstract_VM_Version implementation
|
||||||
|
static void print_platform_virtualization_info(outputStream*);
|
||||||
|
|
||||||
// CPU feature query functions
|
// CPU feature query functions
|
||||||
static const char* get_model_string() { return _model_string; }
|
static const char* get_model_string() { return _model_string; }
|
||||||
static bool has_StoreFacilityListExtended() { return (_features[0] & StoreFacilityListExtendedMask) == StoreFacilityListExtendedMask; }
|
static bool has_StoreFacilityListExtended() { return (_features[0] & StoreFacilityListExtendedMask) == StoreFacilityListExtendedMask; }
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -1573,6 +1573,65 @@ void VM_Version::get_processor_features() {
|
|||||||
#endif // !PRODUCT
|
#endif // !PRODUCT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VM_Version::print_platform_virtualization_info(outputStream* st) {
|
||||||
|
VirtualizationType vrt = VM_Version::get_detected_virtualization();
|
||||||
|
if (vrt == XenHVM) {
|
||||||
|
st->print_cr("Xen hardware-assisted virtualization detected");
|
||||||
|
} else if (vrt == KVM) {
|
||||||
|
st->print_cr("KVM virtualization detected");
|
||||||
|
} else if (vrt == VMWare) {
|
||||||
|
st->print_cr("VMWare virtualization detected");
|
||||||
|
} else if (vrt == HyperV) {
|
||||||
|
st->print_cr("HyperV virtualization detected");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void VM_Version::check_virt_cpuid(uint32_t idx, uint32_t *regs) {
|
||||||
|
// TODO support 32 bit
|
||||||
|
#if defined(_LP64)
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
// Allocate space for the code
|
||||||
|
const int code_size = 100;
|
||||||
|
ResourceMark rm;
|
||||||
|
CodeBuffer cb("detect_virt", code_size, 0);
|
||||||
|
MacroAssembler* a = new MacroAssembler(&cb);
|
||||||
|
address code = a->pc();
|
||||||
|
void (*test)(uint32_t idx, uint32_t *regs) = (void(*)(uint32_t idx, uint32_t *regs))code;
|
||||||
|
|
||||||
|
a->movq(r9, rbx); // save nonvolatile register
|
||||||
|
|
||||||
|
// next line would not work on 32-bit
|
||||||
|
a->movq(rax, c_rarg0 /* rcx */);
|
||||||
|
a->movq(r8, c_rarg1 /* rdx */);
|
||||||
|
a->cpuid();
|
||||||
|
a->movl(Address(r8, 0), rax);
|
||||||
|
a->movl(Address(r8, 4), rbx);
|
||||||
|
a->movl(Address(r8, 8), rcx);
|
||||||
|
a->movl(Address(r8, 12), rdx);
|
||||||
|
|
||||||
|
a->movq(rbx, r9); // restore nonvolatile register
|
||||||
|
a->ret(0);
|
||||||
|
|
||||||
|
uint32_t *code_end = (uint32_t *)a->pc();
|
||||||
|
a->flush();
|
||||||
|
|
||||||
|
// execute code
|
||||||
|
(*test)(idx, regs);
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
__asm__ volatile (
|
||||||
|
" cpuid;"
|
||||||
|
" mov %%eax,(%1);"
|
||||||
|
" mov %%ebx,4(%1);"
|
||||||
|
" mov %%ecx,8(%1);"
|
||||||
|
" mov %%edx,12(%1);"
|
||||||
|
: "+a" (idx)
|
||||||
|
: "S" (regs)
|
||||||
|
: "ebx", "ecx", "edx", "memory" );
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bool VM_Version::use_biased_locking() {
|
bool VM_Version::use_biased_locking() {
|
||||||
#if INCLUDE_RTM_OPT
|
#if INCLUDE_RTM_OPT
|
||||||
// RTM locking is most useful when there is high lock contention and
|
// RTM locking is most useful when there is high lock contention and
|
||||||
@ -1594,6 +1653,54 @@ bool VM_Version::use_biased_locking() {
|
|||||||
return UseBiasedLocking;
|
return UseBiasedLocking;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// On Xen, the cpuid instruction returns
|
||||||
|
// eax / registers[0]: Version of Xen
|
||||||
|
// ebx / registers[1]: chars 'XenV'
|
||||||
|
// ecx / registers[2]: chars 'MMXe'
|
||||||
|
// edx / registers[3]: chars 'nVMM'
|
||||||
|
//
|
||||||
|
// On KVM / VMWare / MS Hyper-V, the cpuid instruction returns
|
||||||
|
// ebx / registers[1]: chars 'KVMK' / 'VMwa' / 'Micr'
|
||||||
|
// ecx / registers[2]: chars 'VMKV' / 'reVM' / 'osof'
|
||||||
|
// edx / registers[3]: chars 'M' / 'ware' / 't Hv'
|
||||||
|
//
|
||||||
|
// more information :
|
||||||
|
// https://kb.vmware.com/s/article/1009458
|
||||||
|
//
|
||||||
|
void VM_Version::check_virtualizations() {
|
||||||
|
#if defined(_LP64)
|
||||||
|
uint32_t registers[4];
|
||||||
|
char signature[13];
|
||||||
|
uint32_t base;
|
||||||
|
signature[12] = '\0';
|
||||||
|
memset((void*)registers, 0, 4*sizeof(uint32_t));
|
||||||
|
|
||||||
|
for (base = 0x40000000; base < 0x40010000; base += 0x100) {
|
||||||
|
check_virt_cpuid(base, registers);
|
||||||
|
|
||||||
|
*(uint32_t *)(signature + 0) = registers[1];
|
||||||
|
*(uint32_t *)(signature + 4) = registers[2];
|
||||||
|
*(uint32_t *)(signature + 8) = registers[3];
|
||||||
|
|
||||||
|
if (strncmp("VMwareVMware", signature, 12) == 0) {
|
||||||
|
Abstract_VM_Version::_detected_virtualization = VMWare;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strncmp("Microsoft Hv", signature, 12) == 0) {
|
||||||
|
Abstract_VM_Version::_detected_virtualization = HyperV;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strncmp("KVMKVMKVM", signature, 9) == 0) {
|
||||||
|
Abstract_VM_Version::_detected_virtualization = KVM;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strncmp("XenVMMXenVMM", signature, 12) == 0) {
|
||||||
|
Abstract_VM_Version::_detected_virtualization = XenHVM;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
void VM_Version::initialize() {
|
void VM_Version::initialize() {
|
||||||
ResourceMark rm;
|
ResourceMark rm;
|
||||||
// Making this stub must be FIRST use of assembler
|
// Making this stub must be FIRST use of assembler
|
||||||
@ -1608,4 +1715,7 @@ void VM_Version::initialize() {
|
|||||||
g.generate_get_cpu_info());
|
g.generate_get_cpu_info());
|
||||||
|
|
||||||
get_processor_features();
|
get_processor_features();
|
||||||
|
if (cpu_family() > 4) { // it supports CPUID
|
||||||
|
check_virtualizations();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -685,6 +685,9 @@ public:
|
|||||||
// Initialization
|
// Initialization
|
||||||
static void initialize();
|
static void initialize();
|
||||||
|
|
||||||
|
// Override Abstract_VM_Version implementation
|
||||||
|
static void print_platform_virtualization_info(outputStream*);
|
||||||
|
|
||||||
// Override Abstract_VM_Version implementation
|
// Override Abstract_VM_Version implementation
|
||||||
static bool use_biased_locking();
|
static bool use_biased_locking();
|
||||||
|
|
||||||
@ -930,6 +933,11 @@ public:
|
|||||||
// that can be used for efficient implementation of
|
// that can be used for efficient implementation of
|
||||||
// the intrinsic for java.lang.Thread.onSpinWait()
|
// the intrinsic for java.lang.Thread.onSpinWait()
|
||||||
static bool supports_on_spin_wait() { return supports_sse2(); }
|
static bool supports_on_spin_wait() { return supports_sse2(); }
|
||||||
|
|
||||||
|
// support functions for virtualization detection
|
||||||
|
private:
|
||||||
|
static void check_virt_cpuid(uint32_t idx, uint32_t *regs);
|
||||||
|
static void check_virtualizations();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CPU_X86_VM_VERSION_X86_HPP
|
#endif // CPU_X86_VM_VERSION_X86_HPP
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
#include "runtime/threadCritical.hpp"
|
#include "runtime/threadCritical.hpp"
|
||||||
#include "runtime/threadSMR.hpp"
|
#include "runtime/threadSMR.hpp"
|
||||||
#include "runtime/timer.hpp"
|
#include "runtime/timer.hpp"
|
||||||
|
#include "runtime/vm_version.hpp"
|
||||||
#include "semaphore_posix.hpp"
|
#include "semaphore_posix.hpp"
|
||||||
#include "services/attachListener.hpp"
|
#include "services/attachListener.hpp"
|
||||||
#include "services/memTracker.hpp"
|
#include "services/memTracker.hpp"
|
||||||
@ -1939,35 +1940,6 @@ static bool _print_ascii_file(const char* filename, outputStream* st, const char
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(S390) || defined(PPC64)
|
|
||||||
// keywords_to_match - NULL terminated array of keywords
|
|
||||||
static bool print_matching_lines_from_file(const char* filename, outputStream* st, const char* keywords_to_match[]) {
|
|
||||||
char* line = NULL;
|
|
||||||
size_t length = 0;
|
|
||||||
FILE* fp = fopen(filename, "r");
|
|
||||||
if (fp == NULL) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
st->print_cr("Virtualization information:");
|
|
||||||
while (getline(&line, &length, fp) != -1) {
|
|
||||||
int i = 0;
|
|
||||||
while (keywords_to_match[i] != NULL) {
|
|
||||||
if (strncmp(line, keywords_to_match[i], strlen(keywords_to_match[i])) == 0) {
|
|
||||||
st->print("%s", line);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
free(line);
|
|
||||||
fclose(fp);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void os::print_dll_info(outputStream *st) {
|
void os::print_dll_info(outputStream *st) {
|
||||||
st->print_cr("Dynamic libraries:");
|
st->print_cr("Dynamic libraries:");
|
||||||
|
|
||||||
@ -2052,7 +2024,7 @@ void os::print_os_info(outputStream* st) {
|
|||||||
|
|
||||||
os::Linux::print_container_info(st);
|
os::Linux::print_container_info(st);
|
||||||
|
|
||||||
os::Linux::print_virtualization_info(st);
|
VM_Version::print_platform_virtualization_info(st);
|
||||||
|
|
||||||
os::Linux::print_steal_info(st);
|
os::Linux::print_steal_info(st);
|
||||||
}
|
}
|
||||||
@ -2309,40 +2281,6 @@ void os::Linux::print_container_info(outputStream* st) {
|
|||||||
st->cr();
|
st->cr();
|
||||||
}
|
}
|
||||||
|
|
||||||
void os::Linux::print_virtualization_info(outputStream* st) {
|
|
||||||
#if defined(S390)
|
|
||||||
// /proc/sysinfo contains interesting information about
|
|
||||||
// - LPAR
|
|
||||||
// - whole "Box" (CPUs )
|
|
||||||
// - z/VM / KVM (VM<nn>); this is not available in an LPAR-only setup
|
|
||||||
const char* kw[] = { "LPAR", "CPUs", "VM", NULL };
|
|
||||||
const char* info_file = "/proc/sysinfo";
|
|
||||||
|
|
||||||
if (!print_matching_lines_from_file(info_file, st, kw)) {
|
|
||||||
st->print_cr(" <%s Not Available>", info_file);
|
|
||||||
}
|
|
||||||
#elif defined(PPC64)
|
|
||||||
const char* info_file = "/proc/ppc64/lparcfg";
|
|
||||||
const char* kw[] = { "system_type=", // qemu indicates PowerKVM
|
|
||||||
"partition_entitled_capacity=", // entitled processor capacity percentage
|
|
||||||
"partition_max_entitled_capacity=",
|
|
||||||
"capacity_weight=", // partition CPU weight
|
|
||||||
"partition_active_processors=",
|
|
||||||
"partition_potential_processors=",
|
|
||||||
"entitled_proc_capacity_available=",
|
|
||||||
"capped=", // 0 - uncapped, 1 - vcpus capped at entitled processor capacity percentage
|
|
||||||
"shared_processor_mode=", // (non)dedicated partition
|
|
||||||
"system_potential_processors=",
|
|
||||||
"pool=", // CPU-pool number
|
|
||||||
"pool_capacity=",
|
|
||||||
"NumLpars=", // on non-KVM machines, NumLpars is not found for full partition mode machines
|
|
||||||
NULL };
|
|
||||||
if (!print_matching_lines_from_file(info_file, st, kw)) {
|
|
||||||
st->print_cr(" <%s Not Available>", info_file);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void os::Linux::print_steal_info(outputStream* st) {
|
void os::Linux::print_steal_info(outputStream* st) {
|
||||||
if (has_initial_tick_info) {
|
if (has_initial_tick_info) {
|
||||||
CPUPerfTicks pticks;
|
CPUPerfTicks pticks;
|
||||||
|
@ -108,7 +108,6 @@ class Linux {
|
|||||||
|
|
||||||
static void print_full_memory_info(outputStream* st);
|
static void print_full_memory_info(outputStream* st);
|
||||||
static void print_container_info(outputStream* st);
|
static void print_container_info(outputStream* st);
|
||||||
static void print_virtualization_info(outputStream* st);
|
|
||||||
static void print_steal_info(outputStream* st);
|
static void print_steal_info(outputStream* st);
|
||||||
static void print_distro_info(outputStream* st);
|
static void print_distro_info(outputStream* st);
|
||||||
static void print_libversion_info(outputStream* st);
|
static void print_libversion_info(outputStream* st);
|
||||||
|
@ -1601,6 +1601,10 @@ void os::print_os_info(outputStream* st) {
|
|||||||
#endif
|
#endif
|
||||||
st->print("OS:");
|
st->print("OS:");
|
||||||
os::win32::print_windows_version(st);
|
os::win32::print_windows_version(st);
|
||||||
|
|
||||||
|
#ifdef _LP64
|
||||||
|
VM_Version::print_platform_virtualization_info(st);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void os::win32::print_windows_version(outputStream* st) {
|
void os::win32::print_windows_version(outputStream* st) {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -44,6 +44,8 @@ bool Abstract_VM_Version::_supports_atomic_getadd8 = false;
|
|||||||
unsigned int Abstract_VM_Version::_logical_processors_per_package = 1U;
|
unsigned int Abstract_VM_Version::_logical_processors_per_package = 1U;
|
||||||
unsigned int Abstract_VM_Version::_L1_data_cache_line_size = 0;
|
unsigned int Abstract_VM_Version::_L1_data_cache_line_size = 0;
|
||||||
|
|
||||||
|
VirtualizationType Abstract_VM_Version::_detected_virtualization = NoDetectedVirtualization;
|
||||||
|
|
||||||
#ifndef HOTSPOT_VERSION_STRING
|
#ifndef HOTSPOT_VERSION_STRING
|
||||||
#error HOTSPOT_VERSION_STRING must be defined
|
#error HOTSPOT_VERSION_STRING must be defined
|
||||||
#endif
|
#endif
|
||||||
@ -295,7 +297,6 @@ unsigned int Abstract_VM_Version::jvm_version() {
|
|||||||
(Abstract_VM_Version::vm_build_number() & 0xFF);
|
(Abstract_VM_Version::vm_build_number() & 0xFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void VM_Version_init() {
|
void VM_Version_init() {
|
||||||
VM_Version::initialize();
|
VM_Version::initialize();
|
||||||
|
|
||||||
@ -306,3 +307,27 @@ void VM_Version_init() {
|
|||||||
os::print_cpu_info(&ls, buf, sizeof(buf));
|
os::print_cpu_info(&ls, buf, sizeof(buf));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Abstract_VM_Version::print_matching_lines_from_file(const char* filename, outputStream* st, const char* keywords_to_match[]) {
|
||||||
|
char line[500];
|
||||||
|
FILE* fp = fopen(filename, "r");
|
||||||
|
if (fp == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
st->print_cr("Virtualization information:");
|
||||||
|
while (fgets(line, sizeof(line), fp) != NULL) {
|
||||||
|
int i = 0;
|
||||||
|
while (keywords_to_match[i] != NULL) {
|
||||||
|
if (strncmp(line, keywords_to_match[i], strlen(keywords_to_match[i])) == 0) {
|
||||||
|
st->print("%s", line);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fclose(fp);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -29,6 +29,14 @@
|
|||||||
#include "utilities/ostream.hpp"
|
#include "utilities/ostream.hpp"
|
||||||
#include "utilities/macros.hpp"
|
#include "utilities/macros.hpp"
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
NoDetectedVirtualization,
|
||||||
|
XenHVM,
|
||||||
|
KVM,
|
||||||
|
VMWare,
|
||||||
|
HyperV
|
||||||
|
} VirtualizationType;
|
||||||
|
|
||||||
// VM_Version provides information about the VM.
|
// VM_Version provides information about the VM.
|
||||||
|
|
||||||
class Abstract_VM_Version: AllStatic {
|
class Abstract_VM_Version: AllStatic {
|
||||||
@ -57,6 +65,8 @@ class Abstract_VM_Version: AllStatic {
|
|||||||
static int _vm_patch_version;
|
static int _vm_patch_version;
|
||||||
static int _vm_build_number;
|
static int _vm_build_number;
|
||||||
|
|
||||||
|
static VirtualizationType _detected_virtualization;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Called as part of the runtime services initialization which is
|
// Called as part of the runtime services initialization which is
|
||||||
// called from the management module initialization (via init_globals())
|
// called from the management module initialization (via init_globals())
|
||||||
@ -111,6 +121,14 @@ class Abstract_VM_Version: AllStatic {
|
|||||||
return _features_string;
|
return _features_string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static VirtualizationType get_detected_virtualization() {
|
||||||
|
return _detected_virtualization;
|
||||||
|
}
|
||||||
|
|
||||||
|
// platforms that need to specialize this
|
||||||
|
// define VM_Version::print_platform_virtualization_info()
|
||||||
|
static void print_platform_virtualization_info(outputStream*) { }
|
||||||
|
|
||||||
// does HW support an 8-byte compare-exchange operation?
|
// does HW support an 8-byte compare-exchange operation?
|
||||||
static bool supports_cx8() {
|
static bool supports_cx8() {
|
||||||
#ifdef SUPPORTS_NATIVE_CX8
|
#ifdef SUPPORTS_NATIVE_CX8
|
||||||
@ -149,6 +167,8 @@ class Abstract_VM_Version: AllStatic {
|
|||||||
|
|
||||||
// Does this CPU support spin wait instruction?
|
// Does this CPU support spin wait instruction?
|
||||||
static bool supports_on_spin_wait() { return false; }
|
static bool supports_on_spin_wait() { return false; }
|
||||||
|
|
||||||
|
static bool print_matching_lines_from_file(const char* filename, outputStream* st, const char* keywords_to_match[]);
|
||||||
};
|
};
|
||||||
|
|
||||||
#include CPU_HEADER(vm_version)
|
#include CPU_HEADER(vm_version)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user