1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-02 05:33:17 +02:00

Update AArch64 features to Linux 5.10 (#149)

Added feature: MTE.
This commit is contained in:
Tamas Zsoldos
2020-12-15 13:28:53 +01:00
committed by GitHub
parent 6d0767e0d9
commit e2f6dea65f
4 changed files with 6 additions and 1 deletions

View File

@ -71,6 +71,7 @@ typedef struct {
int dgh : 1; // Data Gathering Hint instruction.
int rng : 1; // True random number generator support.
int bti : 1; // Branch target identification.
int mte : 1; // Memory tagging extension.
// Make sure to update Aarch64FeaturesEnum below if you add a field here.
} Aarch64Features;
@ -139,6 +140,7 @@ typedef enum {
AARCH64_DGH,
AARCH64_RNG,
AARCH64_BTI,
AARCH64_MTE,
AARCH64_LAST_,
} Aarch64FeaturesEnum;