mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-24 17:20:06 +00:00
8200251: AArch64::CPUFeature out of sync with VM_Version::Feature_Flag
Added enums to CPUFeature to be in sync with VM_Version::Feature_Flag Reviewed-by: kvn, aph, shade
This commit is contained in:
parent
b81442dbbc
commit
0dfb24c2c9
@ -171,6 +171,8 @@ public class AArch64 extends Architecture {
|
||||
SHA1,
|
||||
SHA2,
|
||||
CRC32,
|
||||
LSE,
|
||||
STXR_PREFETCH,
|
||||
A53MAC,
|
||||
DMB_ATOMICS
|
||||
}
|
||||
@ -183,7 +185,11 @@ public class AArch64 extends Architecture {
|
||||
public enum Flag {
|
||||
UseBarriersForVolatile,
|
||||
UseCRC32,
|
||||
UseNeon
|
||||
UseNeon,
|
||||
UseSIMDForMemoryOps,
|
||||
AvoidUnalignedAccesses,
|
||||
UseLSE,
|
||||
UseBlockZeroing
|
||||
}
|
||||
|
||||
private final EnumSet<Flag> flags;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user