comparison jvmci/jdk.vm.ci.aarch64/src/jdk/vm/ci/aarch64/AArch64.java @ 23297:4b58c92e939b

remove redundant modifiers
author Manuel Rigger <rigger.manuel@gmail.com>
date Tue, 02 Feb 2016 16:19:37 +0100
parents 7d014b014ce7
children 3e8ce13f4e12
comparison
equal deleted inserted replaced
23296:f41d4011035d 23297:4b58c92e939b
155 155
156 /** 156 /**
157 * Basic set of CPU features mirroring what is returned from the cpuid instruction. See: 157 * Basic set of CPU features mirroring what is returned from the cpuid instruction. See:
158 * {@code VM_Version::cpuFeatureFlags}. 158 * {@code VM_Version::cpuFeatureFlags}.
159 */ 159 */
160 public static enum CPUFeature { 160 public enum CPUFeature {
161 FP, 161 FP,
162 ASIMD, 162 ASIMD,
163 EVTSTRM, 163 EVTSTRM,
164 AES, 164 AES,
165 PMULL, 165 PMULL,
173 private final EnumSet<CPUFeature> features; 173 private final EnumSet<CPUFeature> features;
174 174
175 /** 175 /**
176 * Set of flags to control code emission. 176 * Set of flags to control code emission.
177 */ 177 */
178 public static enum Flag { 178 public enum Flag {
179 UseBarriersForVolatile, 179 UseBarriersForVolatile,
180 UseCRC32, 180 UseCRC32,
181 UseNeon 181 UseNeon
182 } 182 }
183 183