diff options
author | Andre Vieira <andre.simoesdiasvieira@arm.com> | 2019-05-15 16:44:57 +0100 |
---|---|---|
committer | Andre Vieira <andre.simoesdiasvieira@arm.com> | 2019-05-16 16:17:21 +0100 |
commit | a7ad558c377fd5f5cc7bc77837c532f907f2c53b (patch) | |
tree | 85bbea22284c9504ac64e54a8764a74f0c462c13 /include | |
parent | a2699ef206aedf8e8d49d8519ae8a535e4b4afe5 (diff) | |
download | gdb-a7ad558c377fd5f5cc7bc77837c532f907f2c53b.zip gdb-a7ad558c377fd5f5cc7bc77837c532f907f2c53b.tar.gz gdb-a7ad558c377fd5f5cc7bc77837c532f907f2c53b.tar.bz2 |
[PATCH 1/57][Arm][GAS]: Add support for +mve and +mve.fp
bfd/ChangeLog:
2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
* elf32-arm.c (elf32_arm_merge_eabi_attributes): Add case for Tag_MVE_arch.
binutils/ChangeLog:
2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
* readelf.c (arm_attr_tag_MVE_arch): New array for Tag_MVE_arch values.
(arm_attr_public_tag arm_attr_public_tags): Add case for Tag_MVE_arch.
elfcpp/ChangeLog:
2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
* arm.h (Tag_MVE_arch): Define new enum value.
gas/ChangeLog:
2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
* config/tc-arm.c (mve_ext, mve_fp_ext): New features.
(armv8_1m_main_ext_table): Add new extensions.
(aeabi_set_public_attributes): Translate new features to new build attributes.
(arm_convert_symbolic_attribute): Add Tag_MVE_arch.
* doc/c-arm.texi: Document new extensions and new build attribute.
include/ChangeLog:
2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com>
* elf/arm.h (Tag_MVE_arch): Define new enum value.
* opcode/arm.h (FPU_MVE, FPU_MVE_FP): New MACROs for new features.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/arm.h | 1 | ||||
-rw-r--r-- | include/opcode/arm.h | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index be6240e..96fd266 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2019-05-16 Andre Vieira <andre.simoesdiasvieira@arm.com> + + * elf/arm.h (Tag_MVE_arch): Define new enum value. + * opcode/arm.h (FPU_MVE, FPU_MVE_FP): New MACROs for new features. + 2019-05-09 Matthew Malcomson <matthew.malcomson@arm.com> * opcode/aarch64.h (enum aarch64_opnd): New SVE_SHLIMM_UNPRED_22 diff --git a/include/elf/arm.h b/include/elf/arm.h index 9f22ffe..5cb9970 100644 --- a/include/elf/arm.h +++ b/include/elf/arm.h @@ -326,6 +326,7 @@ enum Tag_undefined_43, Tag_DIV_use, Tag_DSP_extension = 46, + Tag_MVE_arch = 48, Tag_nodefaults = 64, Tag_also_compatible_with, Tag_T2EE_use, diff --git a/include/opcode/arm.h b/include/opcode/arm.h index 73fb2e3..a870905 100644 --- a/include/opcode/arm.h +++ b/include/opcode/arm.h @@ -103,6 +103,8 @@ #define FPU_VFP_EXT_ARMV8xD 0x00002000 /* Single-precision FP for ARMv8. */ #define FPU_NEON_EXT_RDMA 0x00001000 /* v8.1 Adv.SIMD extensions. */ #define FPU_NEON_EXT_DOTPROD 0x00000800 /* Dot Product extension. */ +#define FPU_MVE 0x00000400 /* MVE Integer extension. */ +#define FPU_MVE_FP 0x00000200 /* MVE Floating Point extension. */ /* Architectures are the sum of the base and extensions. The ARM ARM (rev E) defines the following: ARMv3, ARMv3M, ARMv4xM, ARMv4, ARMv4TxM, ARMv4T, |