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 /include | |
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 'include')
-rw-r--r-- | include/opcode/aarch64.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 7b3ddf3..1da337a 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -199,6 +199,8 @@ enum aarch64_feature_bit { AARCH64_FEATURE_TCR2, /* Speculation Prediction Restriction instructions. */ AARCH64_FEATURE_PREDRES2, + /* Instrumentation Extension. */ + AARCH64_FEATURE_ITE, AARCH64_NUM_FEATURES }; |