mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
8169001: Remove launcher's built-in ergonomics
Reviewed-by: dholmes, erikj
This commit is contained in:
parent
ac33542985
commit
e3e8bf9ebe
30 changed files with 43 additions and 658 deletions
|
@ -28,14 +28,12 @@ include LauncherCommon.gmk
|
|||
$(eval $(call SetupBuildLauncher, javac, \
|
||||
MAIN_CLASS := com.sun.tools.javac.Main, \
|
||||
JAVA_ARGS := --add-modules ALL-DEFAULT, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
||||
$(eval $(call SetupBuildLauncher, javah, \
|
||||
MAIN_CLASS := com.sun.tools.javah.Main, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
||||
$(eval $(call SetupBuildLauncher, serialver, \
|
||||
|
@ -48,8 +46,7 @@ ifeq ($(ENABLE_SJAVAC), yes)
|
|||
# into any real images
|
||||
$(eval $(call SetupBuildLauncher, sjavac, \
|
||||
MAIN_CLASS := com.sun.tools.sjavac.Main, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
OUTPUT_DIR := $(JDK_OUTPUTDIR)/bin, \
|
||||
))
|
||||
endif
|
||||
|
|
|
@ -28,6 +28,5 @@ include LauncherCommon.gmk
|
|||
$(eval $(call SetupBuildLauncher, javadoc, \
|
||||
MAIN_CLASS := jdk.javadoc.internal.tool.Main, \
|
||||
JAVA_ARGS := --add-modules ALL-DEFAULT, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
|
|
@ -27,18 +27,15 @@ include LauncherCommon.gmk
|
|||
|
||||
$(eval $(call SetupBuildLauncher, javap, \
|
||||
MAIN_CLASS := com.sun.tools.javap.Main, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
||||
$(eval $(call SetupBuildLauncher, jdeps, \
|
||||
MAIN_CLASS := com.sun.tools.jdeps.Main, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
||||
$(eval $(call SetupBuildLauncher, jdeprscan, \
|
||||
MAIN_CLASS := com.sun.tools.jdeprscan.Main, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
|
|
@ -34,13 +34,11 @@ $(eval $(call SetupBuildLauncher, jlink,\
|
|||
MAIN_CLASS := jdk.tools.jlink.internal.Main, \
|
||||
JAVA_ARGS := --add-modules ALL-DEFAULT, \
|
||||
CFLAGS := -DENABLE_ARG_FILES \
|
||||
-DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
-DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
||||
$(eval $(call SetupBuildLauncher, jmod,\
|
||||
MAIN_CLASS := jdk.tools.jmod.Main, \
|
||||
CFLAGS := -DENABLE_ARG_FILES \
|
||||
-DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
-DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
|
|
@ -27,6 +27,5 @@ include LauncherCommon.gmk
|
|||
|
||||
$(eval $(call SetupBuildLauncher, jshell, \
|
||||
MAIN_CLASS := jdk.internal.jshell.tool.JShellTool, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS \
|
||||
-DNEVER_ACT_AS_SERVER_CLASS_MACHINE, \
|
||||
CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
|
||||
))
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -922,11 +922,6 @@ void SetJavaLauncherPlatformProps() {
|
|||
/* Linux only */
|
||||
}
|
||||
|
||||
jboolean
|
||||
ServerClassMachine(void) {
|
||||
return JNI_TRUE;
|
||||
}
|
||||
|
||||
static JavaVM* jvmInstance = NULL;
|
||||
static jboolean sameThread = JNI_FALSE; /* start VM in current thread */
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -139,8 +139,7 @@ public final class LauncherHelper {
|
|||
* line entirely.
|
||||
*/
|
||||
static void showSettings(boolean printToStderr, String optionFlag,
|
||||
long initialHeapSize, long maxHeapSize, long stackSize,
|
||||
boolean isServer) {
|
||||
long initialHeapSize, long maxHeapSize, long stackSize) {
|
||||
|
||||
initOutput(printToStderr);
|
||||
String opts[] = optionFlag.split(":");
|
||||
|
@ -149,8 +148,7 @@ public final class LauncherHelper {
|
|||
: "all";
|
||||
switch (optStr) {
|
||||
case "vm":
|
||||
printVmSettings(initialHeapSize, maxHeapSize,
|
||||
stackSize, isServer);
|
||||
printVmSettings(initialHeapSize, maxHeapSize, stackSize);
|
||||
break;
|
||||
case "properties":
|
||||
printProperties();
|
||||
|
@ -159,8 +157,7 @@ public final class LauncherHelper {
|
|||
printLocale();
|
||||
break;
|
||||
default:
|
||||
printVmSettings(initialHeapSize, maxHeapSize, stackSize,
|
||||
isServer);
|
||||
printVmSettings(initialHeapSize, maxHeapSize, stackSize);
|
||||
printProperties();
|
||||
printLocale();
|
||||
break;
|
||||
|
@ -172,7 +169,7 @@ public final class LauncherHelper {
|
|||
*/
|
||||
private static void printVmSettings(
|
||||
long initialHeapSize, long maxHeapSize,
|
||||
long stackSize, boolean isServer) {
|
||||
long stackSize) {
|
||||
|
||||
ostream.println(VM_SETTINGS);
|
||||
if (stackSize != 0L) {
|
||||
|
@ -190,8 +187,6 @@ public final class LauncherHelper {
|
|||
ostream.println(INDENT + "Max. Heap Size (Estimated): "
|
||||
+ SizePrefix.scaleValue(Runtime.getRuntime().maxMemory()));
|
||||
}
|
||||
ostream.println(INDENT + "Ergonomics Machine Class: "
|
||||
+ ((isServer) ? "server" : "client"));
|
||||
ostream.println(INDENT + "Using VM: "
|
||||
+ System.getProperty("java.vm.name"));
|
||||
ostream.println();
|
||||
|
@ -378,18 +373,6 @@ public final class LauncherHelper {
|
|||
vm1, vm2));
|
||||
}
|
||||
|
||||
/**
|
||||
* Appends the vm Ergo message to the header, already created.
|
||||
* initHelpSystem must be called before using this method.
|
||||
*/
|
||||
static void appendVmErgoMessage(boolean isServerClass, String vm) {
|
||||
outBuf = outBuf.append(getLocalizedMessage("java.launcher.ergo.message1",
|
||||
vm));
|
||||
outBuf = (isServerClass) ? outBuf.append(",\n")
|
||||
.append(getLocalizedMessage("java.launcher.ergo.message2"))
|
||||
.append("\n\n") : outBuf.append(".\n\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* Appends the last invariant part to the previously created messages,
|
||||
* and finishes up the printing to the desired output stream.
|
||||
|
|
|
@ -35,9 +35,6 @@ java.launcher.opt.datamodel =\ -d{0}\t Deprecated, will be removed in a fut
|
|||
java.launcher.opt.vmselect =\ {0}\t to select the "{1}" VM\n
|
||||
java.launcher.opt.hotspot =\ {0}\t is a synonym for the "{1}" VM [deprecated]\n
|
||||
|
||||
java.launcher.ergo.message1 =\ The default VM is {0}
|
||||
java.launcher.ergo.message2 =\ because you are running on a server-class machine.\n
|
||||
|
||||
# Translators please note do not translate the options themselves
|
||||
java.launcher.opt.footer =\ -cp <class search path of directories and zip/jar files>\n\
|
||||
\ -classpath <class search path of directories and zip/jar files>\n\
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -70,14 +70,6 @@ static const jboolean const_cpwildcard = JNI_TRUE;
|
|||
static const jboolean const_cpwildcard = JNI_FALSE;
|
||||
#endif /* EXPAND_CLASSPATH_WILDCARDS */
|
||||
|
||||
#if defined(NEVER_ACT_AS_SERVER_CLASS_MACHINE)
|
||||
static const jint const_ergo_class = NEVER_SERVER_CLASS;
|
||||
#elif defined(ALWAYS_ACT_AS_SERVER_CLASS_MACHINE)
|
||||
static const jint const_ergo_class = ALWAYS_SERVER_CLASS;
|
||||
#else
|
||||
static const jint const_ergo_class = DEFAULT_POLICY;
|
||||
#endif /* NEVER_ACT_AS_SERVER_CLASS_MACHINE */
|
||||
|
||||
#ifdef ENABLE_ARG_FILES
|
||||
static const jboolean const_disable_argfile = JNI_FALSE;
|
||||
#else
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -156,5 +156,5 @@ main(int argc, char **argv)
|
|||
(const_progname != NULL) ? const_progname : *margv,
|
||||
(const_launcher != NULL) ? const_launcher : *margv,
|
||||
HAS_JAVA_ARGS,
|
||||
const_cpwildcard, const_javaw, const_ergo_class);
|
||||
const_cpwildcard, const_javaw, 0);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -78,7 +78,6 @@ static jboolean _is_java_args = JNI_FALSE;
|
|||
static jboolean _have_classpath = JNI_FALSE;
|
||||
static const char *_fVersion;
|
||||
static jboolean _wc_enabled = JNI_FALSE;
|
||||
static jint _ergo_policy = DEFAULT_POLICY;
|
||||
|
||||
/*
|
||||
* Entries for splash screen environment variables.
|
||||
|
@ -218,7 +217,7 @@ JLI_Launch(int argc, char ** argv, /* main argc, argc */
|
|||
jboolean javaargs, /* JAVA_ARGS */
|
||||
jboolean cpwildcard, /* classpath wildcard*/
|
||||
jboolean javaw, /* windows-only javaw */
|
||||
jint ergo /* ergonomics class policy */
|
||||
jint ergo /* unused */
|
||||
)
|
||||
{
|
||||
int mode = LM_UNKNOWN;
|
||||
|
@ -236,7 +235,6 @@ JLI_Launch(int argc, char ** argv, /* main argc, argc */
|
|||
_program_name = pname;
|
||||
_is_java_args = javaargs;
|
||||
_wc_enabled = cpwildcard;
|
||||
_ergo_policy = ergo;
|
||||
|
||||
InitLauncher(javaw);
|
||||
DumpState();
|
||||
|
@ -431,7 +429,7 @@ JavaMain(void * _args)
|
|||
LEAVE();
|
||||
}
|
||||
|
||||
FreeKnownVMs(); /* after last possible PrintUsage() */
|
||||
FreeKnownVMs(); /* after last possible PrintUsage */
|
||||
|
||||
if (JLI_IsTraceLauncher()) {
|
||||
end = CounterGet();
|
||||
|
@ -669,11 +667,6 @@ CheckJvmType(int *pargc, char ***argv, jboolean speculative) {
|
|||
/* use the default VM type if not specified (no alias processing) */
|
||||
if (jvmtype == NULL) {
|
||||
char* result = knownVMs[0].name+1;
|
||||
/* Use a different VM type if we are on a server class machine? */
|
||||
if ((knownVMs[0].flag == VM_IF_SERVER_CLASS) &&
|
||||
(ServerClassMachine() == JNI_TRUE)) {
|
||||
result = knownVMs[0].server_class+1;
|
||||
}
|
||||
JLI_TraceLauncher("Default VM: %s\n", result);
|
||||
return result;
|
||||
}
|
||||
|
@ -1777,15 +1770,14 @@ ShowSettings(JNIEnv *env, char *optString)
|
|||
jclass cls = GetLauncherHelperClass(env);
|
||||
NULL_CHECK(cls);
|
||||
NULL_CHECK(showSettingsID = (*env)->GetStaticMethodID(env, cls,
|
||||
"showSettings", "(ZLjava/lang/String;JJJZ)V"));
|
||||
"showSettings", "(ZLjava/lang/String;JJJ)V"));
|
||||
NULL_CHECK(joptString = (*env)->NewStringUTF(env, optString));
|
||||
(*env)->CallStaticVoidMethod(env, cls, showSettingsID,
|
||||
USE_STDERR,
|
||||
joptString,
|
||||
(jlong)initialHeapSize,
|
||||
(jlong)maxHeapSize,
|
||||
(jlong)threadStackSize,
|
||||
ServerClassMachine());
|
||||
(jlong)threadStackSize);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1812,7 +1804,7 @@ ListModules(JNIEnv *env, char *optString)
|
|||
static void
|
||||
PrintUsage(JNIEnv* env, jboolean doXUsage)
|
||||
{
|
||||
jmethodID initHelp, vmSelect, vmSynonym, vmErgo, printHelp, printXUsageMessage;
|
||||
jmethodID initHelp, vmSelect, vmSynonym, printHelp, printXUsageMessage;
|
||||
jstring jprogname, vm1, vm2;
|
||||
int i;
|
||||
jclass cls = GetLauncherHelperClass(env);
|
||||
|
@ -1831,8 +1823,6 @@ PrintUsage(JNIEnv* env, jboolean doXUsage)
|
|||
NULL_CHECK(vmSynonym = (*env)->GetStaticMethodID(env, cls,
|
||||
"appendVmSynonymMessage",
|
||||
"(Ljava/lang/String;Ljava/lang/String;)V"));
|
||||
NULL_CHECK(vmErgo = (*env)->GetStaticMethodID(env, cls,
|
||||
"appendVmErgoMessage", "(ZLjava/lang/String;)V"));
|
||||
|
||||
NULL_CHECK(printHelp = (*env)->GetStaticMethodID(env, cls,
|
||||
"printHelpMessage", "(Z)V"));
|
||||
|
@ -1845,13 +1835,6 @@ PrintUsage(JNIEnv* env, jboolean doXUsage)
|
|||
|
||||
|
||||
/* Assemble the other variant part of the usage */
|
||||
if ((knownVMs[0].flag == VM_KNOWN) ||
|
||||
(knownVMs[0].flag == VM_IF_SERVER_CLASS)) {
|
||||
NULL_CHECK(vm1 = (*env)->NewStringUTF(env, knownVMs[0].name));
|
||||
NULL_CHECK(vm2 = (*env)->NewStringUTF(env, knownVMs[0].name+1));
|
||||
(*env)->CallStaticVoidMethod(env, cls, vmSelect, vm1, vm2);
|
||||
CHECK_EXCEPTION_RETURN();
|
||||
}
|
||||
for (i=1; i<knownVMsCount; i++) {
|
||||
if (knownVMs[i].flag == VM_KNOWN) {
|
||||
NULL_CHECK(vm1 = (*env)->NewStringUTF(env, knownVMs[i].name));
|
||||
|
@ -1869,20 +1852,6 @@ PrintUsage(JNIEnv* env, jboolean doXUsage)
|
|||
}
|
||||
}
|
||||
|
||||
/* The first known VM is the default */
|
||||
{
|
||||
jboolean isServerClassMachine = ServerClassMachine();
|
||||
|
||||
const char* defaultVM = knownVMs[0].name+1;
|
||||
if ((knownVMs[0].flag == VM_IF_SERVER_CLASS) && isServerClassMachine) {
|
||||
defaultVM = knownVMs[0].server_class+1;
|
||||
}
|
||||
|
||||
NULL_CHECK(vm1 = (*env)->NewStringUTF(env, defaultVM));
|
||||
(*env)->CallStaticVoidMethod(env, cls, vmErgo, isServerClassMachine, vm1);
|
||||
CHECK_EXCEPTION_RETURN();
|
||||
}
|
||||
|
||||
/* Complete the usage message and print to stderr*/
|
||||
(*env)->CallStaticVoidMethod(env, cls, printHelp, USE_STDERR);
|
||||
}
|
||||
|
@ -2011,19 +1980,7 @@ ReadKnownVMs(const char *jvmCfgName, jboolean speculative)
|
|||
} else if (!JLI_StrCCmp(tmpPtr, "ERROR")) {
|
||||
vmType = VM_ERROR;
|
||||
} else if (!JLI_StrCCmp(tmpPtr, "IF_SERVER_CLASS")) {
|
||||
tmpPtr += JLI_StrCSpn(tmpPtr, whiteSpace);
|
||||
if (*tmpPtr != 0) {
|
||||
tmpPtr += JLI_StrSpn(tmpPtr, whiteSpace);
|
||||
}
|
||||
if (*tmpPtr == 0) {
|
||||
JLI_ReportErrorMessage(CFG_WARN4, lineno, jvmCfgName);
|
||||
} else {
|
||||
/* Null terminate server class VM name */
|
||||
serverClassVMName = tmpPtr;
|
||||
tmpPtr += JLI_StrCSpn(tmpPtr, whiteSpace);
|
||||
*tmpPtr = 0;
|
||||
vmType = VM_IF_SERVER_CLASS;
|
||||
}
|
||||
/* ignored */
|
||||
} else {
|
||||
JLI_ReportErrorMessage(CFG_WARN5, lineno, &jvmCfgName[0]);
|
||||
vmType = VM_KNOWN;
|
||||
|
@ -2043,11 +2000,6 @@ ReadKnownVMs(const char *jvmCfgName, jboolean speculative)
|
|||
JLI_TraceLauncher(" name: %s vmType: %s alias: %s\n",
|
||||
knownVMs[cnt].name, "VM_ALIASED_TO", knownVMs[cnt].alias);
|
||||
break;
|
||||
case VM_IF_SERVER_CLASS:
|
||||
knownVMs[cnt].server_class = JLI_StringDup(serverClassVMName);
|
||||
JLI_TraceLauncher(" name: %s vmType: %s server_class: %s\n",
|
||||
knownVMs[cnt].name, "VM_IF_SERVER_CLASS", knownVMs[cnt].server_class);
|
||||
break;
|
||||
}
|
||||
cnt++;
|
||||
}
|
||||
|
@ -2197,12 +2149,6 @@ GetLauncherName()
|
|||
return _launcher_name;
|
||||
}
|
||||
|
||||
jint
|
||||
GetErgoPolicy()
|
||||
{
|
||||
return _ergo_policy;
|
||||
}
|
||||
|
||||
jboolean
|
||||
IsJavaArgs()
|
||||
{
|
||||
|
@ -2267,17 +2213,6 @@ DumpState()
|
|||
printf("\tlauncher name:%s\n", GetLauncherName());
|
||||
printf("\tjavaw:%s\n", (IsJavaw() == JNI_TRUE) ? "on" : "off");
|
||||
printf("\tfullversion:%s\n", GetFullVersion());
|
||||
printf("\tergo_policy:");
|
||||
switch(GetErgoPolicy()) {
|
||||
case NEVER_SERVER_CLASS:
|
||||
printf("NEVER_ACT_AS_A_SERVER_CLASS_MACHINE\n");
|
||||
break;
|
||||
case ALWAYS_SERVER_CLASS:
|
||||
printf("ALWAYS_ACT_AS_A_SERVER_CLASS_MACHINE\n");
|
||||
break;
|
||||
default:
|
||||
printf("DEFAULT_ERGONOMICS_POLICY\n");
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -166,19 +166,10 @@ char *CheckJvmType(int *argc, char ***argv, jboolean speculative);
|
|||
void AddOption(char *str, void *info);
|
||||
jboolean IsWhiteSpaceOption(const char* name);
|
||||
|
||||
enum ergo_policy {
|
||||
DEFAULT_POLICY = 0,
|
||||
NEVER_SERVER_CLASS,
|
||||
ALWAYS_SERVER_CLASS
|
||||
};
|
||||
|
||||
const char* GetProgramName();
|
||||
const char* GetFullVersion();
|
||||
jboolean IsJavaArgs();
|
||||
jboolean IsJavaw();
|
||||
jint GetErgoPolicy();
|
||||
|
||||
jboolean ServerClassMachine();
|
||||
|
||||
int ContinueInNewThread(InvocationFunctions* ifn, jlong threadStackSize,
|
||||
int argc, char** argv,
|
||||
|
|
|
@ -21,10 +21,9 @@
|
|||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -21,10 +21,9 @@
|
|||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -23,13 +23,13 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
# "-XXaltjvm=<jvm_dir>" option, but that too is unsupported
|
||||
# and may not be available in a future release.
|
||||
#
|
||||
-client IF_SERVER_CLASS -server
|
||||
-server KNOWN
|
||||
-client KNOWN
|
||||
-minimal KNOWN
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
#
|
||||
#
|
||||
#
|
||||
# Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
|
@ -24,11 +21,9 @@
|
|||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
#
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -23,13 +23,13 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
# "-XXaltjvm=<jvm_dir>" option, but that too is unsupported
|
||||
# and may not be available in a future release.
|
||||
#
|
||||
-client IF_SERVER_CLASS -server
|
||||
-server KNOWN
|
||||
-client KNOWN
|
||||
-minimal KNOWN
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -21,10 +21,9 @@
|
|||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -1,113 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/* This file houses the common methods for VM ergonomics the platforms
|
||||
* are split into ergo_sparc and ergo_x86, and they could be split more
|
||||
* in the future if required. The following comments are not entirely
|
||||
* true after bifurcation of the platform specific files.
|
||||
*/
|
||||
|
||||
/*
|
||||
* The following methods (down to ServerClassMachine()) answer
|
||||
* the question about whether a machine is a "server-class"
|
||||
* machine. A server-class machine is loosely defined as one
|
||||
* with 2 or more processors and 2 gigabytes or more physical
|
||||
* memory. The definition of a processor is a physical package,
|
||||
* not a hyperthreaded chip masquerading as a multi-processor.
|
||||
* The definition of memory is also somewhat fuzzy, since x86
|
||||
* machines seem not to report all the memory in their DIMMs, we
|
||||
* think because of memory mapping of graphics cards, etc.
|
||||
*
|
||||
* This code is somewhat more confused with #ifdef's than we'd
|
||||
* like because this file is used by both Solaris and Linux
|
||||
* platforms, and so needs to be parameterized for SPARC and
|
||||
* i586 hardware. The other Linux platforms (amd64 and ia64)
|
||||
* don't even ask this question, because they only come with
|
||||
* server JVMs.
|
||||
*/
|
||||
|
||||
#include "ergo.h"
|
||||
|
||||
/* Dispatch to the platform-specific definition of "server-class" */
|
||||
jboolean
|
||||
ServerClassMachine(void) {
|
||||
jboolean result;
|
||||
switch(GetErgoPolicy()) {
|
||||
case NEVER_SERVER_CLASS:
|
||||
return JNI_FALSE;
|
||||
case ALWAYS_SERVER_CLASS:
|
||||
return JNI_TRUE;
|
||||
default:
|
||||
result = ServerClassMachineImpl();
|
||||
JLI_TraceLauncher("ServerClassMachine: returns default value of %s\n",
|
||||
(result == JNI_TRUE ? "true" : "false"));
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef USE_GENERIC_ERGO
|
||||
/* Ask the OS how many processors there are. */
|
||||
static unsigned long
|
||||
physical_processors(void) {
|
||||
const unsigned long sys_processors = sysconf(_SC_NPROCESSORS_CONF);
|
||||
JLI_TraceLauncher("sysconf(_SC_NPROCESSORS_CONF): %lu\n", sys_processors);
|
||||
return sys_processors;
|
||||
}
|
||||
|
||||
jboolean
|
||||
ServerClassMachineImpl(void) {
|
||||
jboolean result = JNI_FALSE;
|
||||
/* How big is a server class machine? */
|
||||
const unsigned long server_processors = 2UL;
|
||||
const uint64_t server_memory = 2UL * GB;
|
||||
const uint64_t actual_memory = physical_memory();
|
||||
|
||||
/* Is this a server class machine? */
|
||||
if (actual_memory >= server_memory) {
|
||||
const unsigned long actual_processors = physical_processors();
|
||||
if (actual_processors >= server_processors) {
|
||||
result = JNI_TRUE;
|
||||
}
|
||||
}
|
||||
JLI_TraceLauncher("unix_" LIBARCHNAME "_ServerClassMachine: %s\n",
|
||||
(result == JNI_TRUE ? "JNI_TRUE" : "JNI_FALSE"));
|
||||
return result;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Compute physical memory by asking the OS */
|
||||
uint64_t
|
||||
physical_memory(void) {
|
||||
const uint64_t pages = (uint64_t) sysconf(_SC_PHYS_PAGES);
|
||||
const uint64_t page_size = (uint64_t) sysconf(_SC_PAGESIZE);
|
||||
const uint64_t result = pages * page_size;
|
||||
# define UINT64_FORMAT "%" PRIu64
|
||||
|
||||
JLI_TraceLauncher("pages: " UINT64_FORMAT
|
||||
" page_size: " UINT64_FORMAT
|
||||
" physical memory: " UINT64_FORMAT " (%.3fGB)\n",
|
||||
pages, page_size, result, result / (double) GB);
|
||||
return result;
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* 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 _ERGO_H
|
||||
#define _ERGO_H
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "java.h"
|
||||
|
||||
jboolean ServerClassMachineImpl(void);
|
||||
uint64_t physical_memory(void);
|
||||
|
||||
#endif /* _ERGO_H */
|
|
@ -1,323 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "ergo.h"
|
||||
|
||||
static unsigned long physical_processors(void);
|
||||
|
||||
#ifdef __solaris__
|
||||
|
||||
/*
|
||||
* A utility method for asking the CPU about itself.
|
||||
* There's a corresponding version of linux-i586
|
||||
* because the compilers are different.
|
||||
*/
|
||||
static void
|
||||
get_cpuid(uint32_t arg,
|
||||
uint32_t* eaxp,
|
||||
uint32_t* ebxp,
|
||||
uint32_t* ecxp,
|
||||
uint32_t* edxp) {
|
||||
#ifdef _LP64
|
||||
asm(
|
||||
/* rbx is a callee-saved register */
|
||||
" movq %rbx, %r11 \n"
|
||||
/* rdx and rcx are 3rd and 4th argument registers */
|
||||
" movq %rdx, %r10 \n"
|
||||
" movq %rcx, %r9 \n"
|
||||
" movl %edi, %eax \n"
|
||||
" cpuid \n"
|
||||
" movl %eax, (%rsi)\n"
|
||||
" movl %ebx, (%r10)\n"
|
||||
" movl %ecx, (%r9) \n"
|
||||
" movl %edx, (%r8) \n"
|
||||
/* Restore rbx */
|
||||
" movq %r11, %rbx");
|
||||
#else
|
||||
/* EBX is a callee-saved register */
|
||||
asm(" pushl %ebx");
|
||||
/* Need ESI for storing through arguments */
|
||||
asm(" pushl %esi");
|
||||
asm(" movl 8(%ebp), %eax \n"
|
||||
" cpuid \n"
|
||||
" movl 12(%ebp), %esi \n"
|
||||
" movl %eax, (%esi) \n"
|
||||
" movl 16(%ebp), %esi \n"
|
||||
" movl %ebx, (%esi) \n"
|
||||
" movl 20(%ebp), %esi \n"
|
||||
" movl %ecx, (%esi) \n"
|
||||
" movl 24(%ebp), %esi \n"
|
||||
" movl %edx, (%esi) ");
|
||||
/* Restore ESI and EBX */
|
||||
asm(" popl %esi");
|
||||
/* Restore EBX */
|
||||
asm(" popl %ebx");
|
||||
#endif /* LP64 */
|
||||
}
|
||||
|
||||
/* The definition of a server-class machine for solaris-i586/amd64 */
|
||||
jboolean
|
||||
ServerClassMachineImpl(void) {
|
||||
jboolean result = JNI_FALSE;
|
||||
/* How big is a server class machine? */
|
||||
const unsigned long server_processors = 2UL;
|
||||
const uint64_t server_memory = 2UL * GB;
|
||||
/*
|
||||
* We seem not to get our full complement of memory.
|
||||
* We allow some part (1/8?) of the memory to be "missing",
|
||||
* based on the sizes of DIMMs, and maybe graphics cards.
|
||||
*/
|
||||
const uint64_t missing_memory = 256UL * MB;
|
||||
const uint64_t actual_memory = physical_memory();
|
||||
|
||||
/* Is this a server class machine? */
|
||||
if (actual_memory >= (server_memory - missing_memory)) {
|
||||
const unsigned long actual_processors = physical_processors();
|
||||
if (actual_processors >= server_processors) {
|
||||
result = JNI_TRUE;
|
||||
}
|
||||
}
|
||||
JLI_TraceLauncher("solaris_" LIBARCHNAME "_ServerClassMachine: %s\n",
|
||||
(result == JNI_TRUE ? "true" : "false"));
|
||||
return result;
|
||||
}
|
||||
|
||||
#endif /* __solaris__ */
|
||||
|
||||
#ifdef __linux__
|
||||
|
||||
/*
|
||||
* A utility method for asking the CPU about itself.
|
||||
* There's a corresponding version of solaris-i586
|
||||
* because the compilers are different.
|
||||
*/
|
||||
static void
|
||||
get_cpuid(uint32_t arg,
|
||||
uint32_t* eaxp,
|
||||
uint32_t* ebxp,
|
||||
uint32_t* ecxp,
|
||||
uint32_t* edxp) {
|
||||
#ifdef _LP64
|
||||
__asm__ volatile (/* Instructions */
|
||||
" movl %4, %%eax \n"
|
||||
" cpuid \n"
|
||||
" movl %%eax, (%0)\n"
|
||||
" movl %%ebx, (%1)\n"
|
||||
" movl %%ecx, (%2)\n"
|
||||
" movl %%edx, (%3)\n"
|
||||
: /* Outputs */
|
||||
: /* Inputs */
|
||||
"r" (eaxp),
|
||||
"r" (ebxp),
|
||||
"r" (ecxp),
|
||||
"r" (edxp),
|
||||
"r" (arg)
|
||||
: /* Clobbers */
|
||||
"%rax", "%rbx", "%rcx", "%rdx", "memory"
|
||||
);
|
||||
#else /* _LP64 */
|
||||
uint32_t value_of_eax = 0;
|
||||
uint32_t value_of_ebx = 0;
|
||||
uint32_t value_of_ecx = 0;
|
||||
uint32_t value_of_edx = 0;
|
||||
__asm__ volatile (/* Instructions */
|
||||
/* ebx is callee-save, so push it */
|
||||
" pushl %%ebx \n"
|
||||
" movl %4, %%eax \n"
|
||||
" cpuid \n"
|
||||
" movl %%eax, %0 \n"
|
||||
" movl %%ebx, %1 \n"
|
||||
" movl %%ecx, %2 \n"
|
||||
" movl %%edx, %3 \n"
|
||||
/* restore ebx */
|
||||
" popl %%ebx \n"
|
||||
|
||||
: /* Outputs */
|
||||
"=m" (value_of_eax),
|
||||
"=m" (value_of_ebx),
|
||||
"=m" (value_of_ecx),
|
||||
"=m" (value_of_edx)
|
||||
: /* Inputs */
|
||||
"m" (arg)
|
||||
: /* Clobbers */
|
||||
"%eax", "%ecx", "%edx"
|
||||
);
|
||||
*eaxp = value_of_eax;
|
||||
*ebxp = value_of_ebx;
|
||||
*ecxp = value_of_ecx;
|
||||
*edxp = value_of_edx;
|
||||
#endif /* _LP64 */
|
||||
}
|
||||
|
||||
/* The definition of a server-class machine for linux-i586 */
|
||||
jboolean
|
||||
ServerClassMachineImpl(void) {
|
||||
jboolean result = JNI_FALSE;
|
||||
/* How big is a server class machine? */
|
||||
const unsigned long server_processors = 2UL;
|
||||
const uint64_t server_memory = 2UL * GB;
|
||||
/*
|
||||
* We seem not to get our full complement of memory.
|
||||
* We allow some part (1/8?) of the memory to be "missing",
|
||||
* based on the sizes of DIMMs, and maybe graphics cards.
|
||||
*/
|
||||
const uint64_t missing_memory = 256UL * MB;
|
||||
const uint64_t actual_memory = physical_memory();
|
||||
|
||||
/* Is this a server class machine? */
|
||||
if (actual_memory >= (server_memory - missing_memory)) {
|
||||
const unsigned long actual_processors = physical_processors();
|
||||
if (actual_processors >= server_processors) {
|
||||
result = JNI_TRUE;
|
||||
}
|
||||
}
|
||||
JLI_TraceLauncher("linux_" LIBARCHNAME "_ServerClassMachine: %s\n",
|
||||
(result == JNI_TRUE ? "true" : "false"));
|
||||
return result;
|
||||
}
|
||||
#endif /* __linux__ */
|
||||
|
||||
/*
|
||||
* Routines shared by solaris-i586 and linux-i586.
|
||||
*/
|
||||
|
||||
enum HyperThreadingSupport_enum {
|
||||
hts_supported = 1,
|
||||
hts_too_soon_to_tell = 0,
|
||||
hts_not_supported = -1,
|
||||
hts_not_pentium4 = -2,
|
||||
hts_not_intel = -3
|
||||
};
|
||||
typedef enum HyperThreadingSupport_enum HyperThreadingSupport;
|
||||
|
||||
/* Determine if hyperthreading is supported */
|
||||
static HyperThreadingSupport
|
||||
hyperthreading_support(void) {
|
||||
HyperThreadingSupport result = hts_too_soon_to_tell;
|
||||
/* Bits 11 through 8 is family processor id */
|
||||
# define FAMILY_ID_SHIFT 8
|
||||
# define FAMILY_ID_MASK 0xf
|
||||
/* Bits 23 through 20 is extended family processor id */
|
||||
# define EXT_FAMILY_ID_SHIFT 20
|
||||
# define EXT_FAMILY_ID_MASK 0xf
|
||||
/* Pentium 4 family processor id */
|
||||
# define PENTIUM4_FAMILY_ID 0xf
|
||||
/* Bit 28 indicates Hyper-Threading Technology support */
|
||||
# define HT_BIT_SHIFT 28
|
||||
# define HT_BIT_MASK 1
|
||||
uint32_t vendor_id[3] = { 0U, 0U, 0U };
|
||||
uint32_t value_of_eax = 0U;
|
||||
uint32_t value_of_edx = 0U;
|
||||
uint32_t dummy = 0U;
|
||||
|
||||
/* Yes, this is supposed to be [0], [2], [1] */
|
||||
get_cpuid(0, &dummy, &vendor_id[0], &vendor_id[2], &vendor_id[1]);
|
||||
JLI_TraceLauncher("vendor: %c %c %c %c %c %c %c %c %c %c %c %c \n",
|
||||
((vendor_id[0] >> 0) & 0xff),
|
||||
((vendor_id[0] >> 8) & 0xff),
|
||||
((vendor_id[0] >> 16) & 0xff),
|
||||
((vendor_id[0] >> 24) & 0xff),
|
||||
((vendor_id[1] >> 0) & 0xff),
|
||||
((vendor_id[1] >> 8) & 0xff),
|
||||
((vendor_id[1] >> 16) & 0xff),
|
||||
((vendor_id[1] >> 24) & 0xff),
|
||||
((vendor_id[2] >> 0) & 0xff),
|
||||
((vendor_id[2] >> 8) & 0xff),
|
||||
((vendor_id[2] >> 16) & 0xff),
|
||||
((vendor_id[2] >> 24) & 0xff));
|
||||
get_cpuid(1, &value_of_eax, &dummy, &dummy, &value_of_edx);
|
||||
JLI_TraceLauncher("value_of_eax: 0x%x value_of_edx: 0x%x\n",
|
||||
value_of_eax, value_of_edx);
|
||||
if ((((value_of_eax >> FAMILY_ID_SHIFT) & FAMILY_ID_MASK) == PENTIUM4_FAMILY_ID) ||
|
||||
(((value_of_eax >> EXT_FAMILY_ID_SHIFT) & EXT_FAMILY_ID_MASK) != 0)) {
|
||||
if ((((vendor_id[0] >> 0) & 0xff) == 'G') &&
|
||||
(((vendor_id[0] >> 8) & 0xff) == 'e') &&
|
||||
(((vendor_id[0] >> 16) & 0xff) == 'n') &&
|
||||
(((vendor_id[0] >> 24) & 0xff) == 'u') &&
|
||||
(((vendor_id[1] >> 0) & 0xff) == 'i') &&
|
||||
(((vendor_id[1] >> 8) & 0xff) == 'n') &&
|
||||
(((vendor_id[1] >> 16) & 0xff) == 'e') &&
|
||||
(((vendor_id[1] >> 24) & 0xff) == 'I') &&
|
||||
(((vendor_id[2] >> 0) & 0xff) == 'n') &&
|
||||
(((vendor_id[2] >> 8) & 0xff) == 't') &&
|
||||
(((vendor_id[2] >> 16) & 0xff) == 'e') &&
|
||||
(((vendor_id[2] >> 24) & 0xff) == 'l')) {
|
||||
if (((value_of_edx >> HT_BIT_SHIFT) & HT_BIT_MASK) == HT_BIT_MASK) {
|
||||
JLI_TraceLauncher("Hyperthreading supported\n");
|
||||
result = hts_supported;
|
||||
} else {
|
||||
JLI_TraceLauncher("Hyperthreading not supported\n");
|
||||
result = hts_not_supported;
|
||||
}
|
||||
} else {
|
||||
JLI_TraceLauncher("Not GenuineIntel\n");
|
||||
result = hts_not_intel;
|
||||
}
|
||||
} else {
|
||||
JLI_TraceLauncher("not Pentium 4 or extended\n");
|
||||
result = hts_not_pentium4;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/* Determine how many logical processors there are per CPU */
|
||||
static unsigned int
|
||||
logical_processors_per_package(void) {
|
||||
/*
|
||||
* After CPUID with EAX==1, register EBX bits 23 through 16
|
||||
* indicate the number of logical processors per package
|
||||
*/
|
||||
# define NUM_LOGICAL_SHIFT 16
|
||||
# define NUM_LOGICAL_MASK 0xff
|
||||
unsigned int result = 1U;
|
||||
const HyperThreadingSupport hyperthreading = hyperthreading_support();
|
||||
|
||||
if (hyperthreading == hts_supported) {
|
||||
uint32_t value_of_ebx = 0U;
|
||||
uint32_t dummy = 0U;
|
||||
|
||||
get_cpuid(1, &dummy, &value_of_ebx, &dummy, &dummy);
|
||||
result = (value_of_ebx >> NUM_LOGICAL_SHIFT) & NUM_LOGICAL_MASK;
|
||||
JLI_TraceLauncher("logical processors per package: %u\n", result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/* Compute the number of physical processors, not logical processors */
|
||||
static unsigned long
|
||||
physical_processors(void) {
|
||||
const long sys_processors = sysconf(_SC_NPROCESSORS_CONF);
|
||||
unsigned long result = sys_processors;
|
||||
|
||||
JLI_TraceLauncher("sysconf(_SC_NPROCESSORS_CONF): %lu\n", sys_processors);
|
||||
if (sys_processors > 1) {
|
||||
unsigned int logical_processors = logical_processors_per_package();
|
||||
if (logical_processors > 1) {
|
||||
result = (unsigned long) sys_processors / logical_processors;
|
||||
}
|
||||
}
|
||||
JLI_TraceLauncher("physical processors: %lu\n", result);
|
||||
return result;
|
||||
}
|
|
@ -1,6 +1,3 @@
|
|||
#
|
||||
#
|
||||
#
|
||||
# Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
|
@ -27,7 +24,7 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
#
|
||||
#
|
||||
#
|
||||
# Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
|
@ -24,10 +21,9 @@
|
|||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that this both this file and its format are UNSUPPORTED and
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
|
|
|
@ -639,11 +639,6 @@ void JLI_ReportExceptionDescription(JNIEnv * env) {
|
|||
}
|
||||
}
|
||||
|
||||
jboolean
|
||||
ServerClassMachine() {
|
||||
return (GetErgoPolicy() == ALWAYS_SERVER_CLASS) ? JNI_TRUE : JNI_FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* Wrapper for platform dependent unsetenv function.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue