src/share/vm/runtime/vm_version.hpp

Print this page

        

*** 47,56 **** --- 47,57 ---- static int _vm_build_number; static bool _initialized; static int _parallel_worker_threads; static bool _parallel_worker_threads_initialized; static int _reserve_for_allocation_prefetch; + static bool _supports_crypto_acceleration_client; static unsigned int nof_parallel_worker_threads(unsigned int num, unsigned int dem, unsigned int switch_pt); public:
*** 90,99 **** --- 91,105 ---- static bool supports_atomic_getset4() {return _supports_atomic_getset4;} static bool supports_atomic_getset8() {return _supports_atomic_getset8;} static bool supports_atomic_getadd4() {return _supports_atomic_getadd4;} static bool supports_atomic_getadd8() {return _supports_atomic_getadd8;} + // does client VM support crypto acceleration? + static bool supports_crypto_acceleration_client() { + return _supports_crypto_acceleration_client; + } + static unsigned int logical_processors_per_package() { return _logical_processors_per_package; } // Need a space at the end of TLAB for prefetch instructions