comparison jvmci/jdk.vm.ci.hotspot.aarch64/src/jdk/vm/ci/hotspot/aarch64/AArch64HotSpotVMConfig.java @ 23700:9e1235406b59

[Findbugs] various warnings reported for JVMCI sources (JDK-8159613)
author Doug Simon <doug.simon@oracle.com>
date Sat, 18 Jun 2016 13:19:01 +0200
parents 50465926fbeb
children
comparison
equal deleted inserted replaced
23699:8f9709f61cd4 23700:9e1235406b59
32 32
33 AArch64HotSpotVMConfig(HotSpotVMConfigStore config) { 33 AArch64HotSpotVMConfig(HotSpotVMConfigStore config) {
34 super(config); 34 super(config);
35 } 35 }
36 36
37 /**
38 * Maximum allowed size of allocated area for a frame.
39 */
40 final int maxFrameSize = 16 * 1024;
41
42 final boolean linuxOs = System.getProperty("os.name", "").startsWith("Linux"); 37 final boolean linuxOs = System.getProperty("os.name", "").startsWith("Linux");
43 38
44 final boolean useCompressedOops = getFlag("UseCompressedOops", Boolean.class); 39 final boolean useCompressedOops = getFlag("UseCompressedOops", Boolean.class);
45 } 40 }