diff options
author | Andrea Corallo <andrea.corallo@arm.com> | 2023-10-10 16:37:11 +0100 |
---|---|---|
committer | Andrea Corallo <andrea.corallo@arm.com> | 2023-12-19 15:35:49 +0100 |
commit | d645278cdf413ecdfac873528133ae40d927da0c (patch) | |
tree | 511f815339f3bb86f5dc4bb647a3d69cb60e847a /gas/config/tc-aarch64.c | |
parent | db168da2e0d7ea01d0a8ed4bdd0e035e47094fed (diff) | |
download | gdb-d645278cdf413ecdfac873528133ae40d927da0c.zip gdb-d645278cdf413ecdfac873528133ae40d927da0c.tar.gz gdb-d645278cdf413ecdfac873528133ae40d927da0c.tar.bz2 |
aarch64: Add FEAT_ITE support
This patch add support for FEAT_ITE "Instrumentation Extension" adding
the "trcit" instruction.
This is enabled by the +ite march flag.
Diffstat (limited to 'gas/config/tc-aarch64.c')
-rw-r--r-- | gas/config/tc-aarch64.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index 6672470..c10d820 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -10296,6 +10296,7 @@ static const struct aarch64_option_cpu_value_table aarch64_features[] = { {"gcs", AARCH64_FEATURE (GCS), AARCH64_NO_FEATURES}, {"the", AARCH64_FEATURE (THE), AARCH64_NO_FEATURES}, {"rasv2", AARCH64_FEATURE (RASv2), AARCH64_FEATURE (RAS)}, + {"ite", AARCH64_FEATURE (ITE), AARCH64_NO_FEATURES}, {NULL, AARCH64_NO_FEATURES, AARCH64_NO_FEATURES}, }; |