diff options
author | Maxim Kuvyrkov <maxim@kugelworks.com> | 2012-03-24 01:09:28 +0000 |
---|---|---|
committer | Maxim Kuvyrkov <maxim@kugelworks.com> | 2012-03-24 01:09:28 +0000 |
commit | 55a36193d878a8e8af3d78c5fcd338293c6c029f (patch) | |
tree | d938fa8d5fb27bd6d499fa167cee93d19054f09c /opcodes/mips-dis.c | |
parent | b25d0f6e19daa699f3c015e44084b343958cf5d2 (diff) | |
download | gdb-55a36193d878a8e8af3d78c5fcd338293c6c029f.zip gdb-55a36193d878a8e8af3d78c5fcd338293c6c029f.tar.gz gdb-55a36193d878a8e8af3d78c5fcd338293c6c029f.tar.bz2 |
gas/
* config/tc-mips.c (mips_cpu_info_table): Add entry for Broadcom XLP.
* doc/c-mips.texi: Mention XLP.
opcodes/
* mips-dis.c (mips_arch_choices): Add entry for Broadcom XLP.
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 0d1de30..6651daa 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -619,6 +619,14 @@ const struct mips_arch_choice mips_arch_choices[] = mips_cp0sel_names_xlr, ARRAY_SIZE (mips_cp0sel_names_xlr), mips_hwr_names_numeric }, + /* XLP is mostly like XLR, with the prominent exception it is being + MIPS64R2. */ + { "xlp", 1, bfd_mach_mips_xlr, CPU_XLR, + ISA_MIPS64R2 | INSN_XLR, + mips_cp0_names_xlr, + mips_cp0sel_names_xlr, ARRAY_SIZE (mips_cp0sel_names_xlr), + mips_hwr_names_numeric }, + /* This entry, mips16, is here only for ISA/processor selection; do not print its name. */ { "", 1, bfd_mach_mips16, CPU_MIPS16, ISA_MIPS3, |