Merge
This commit is contained in:
commit
3e1eafa1d1
@ -5178,7 +5178,7 @@ VS_SDK_PLATFORM_NAME_2013=
|
||||
#CUSTOM_AUTOCONF_INCLUDE
|
||||
|
||||
# Do not change or remove the following line, it is needed for consistency checks:
|
||||
DATE_WHEN_GENERATED=1484135958
|
||||
DATE_WHEN_GENERATED=1484328385
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
|
@ -33,6 +33,8 @@ import java.util.Map;
|
||||
import java.util.concurrent.Callable;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import sun.hotspot.cpuinfo.CPUInfo;
|
||||
import sun.hotspot.gc.GC;
|
||||
import sun.hotspot.WhiteBox;
|
||||
|
||||
@ -62,6 +64,7 @@ public class VMProps implements Callable<Map<String, String>> {
|
||||
map.put("vm.simpleArch", vmArch());
|
||||
map.put("vm.debug", vmDebug());
|
||||
map.put("vm.jvmci", vmJvmci());
|
||||
map.put("vm.cpu.features", cpuFeatures());
|
||||
vmGC(map); // vm.gc.X = true/false
|
||||
|
||||
VMProps.dump(map);
|
||||
@ -165,6 +168,13 @@ public class VMProps implements Callable<Map<String, String>> {
|
||||
return "" + (WB.getBooleanVMFlag("EnableJVMCI") != null);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return supported CPU features
|
||||
*/
|
||||
protected String cpuFeatures() {
|
||||
return CPUInfo.getFeatures().toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* For all existing GC sets vm.gc.X property.
|
||||
* Example vm.gc.G1=true means:
|
||||
|
Loading…
Reference in New Issue
Block a user