diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 13 | ||||
-rw-r--r-- | bfd/archures.c | 1 | ||||
-rw-r--r-- | bfd/bfd-in2.h | 1 | ||||
-rw-r--r-- | bfd/cpu-mips.c | 2 | ||||
-rw-r--r-- | bfd/elfxx-mips.c | 8 |
5 files changed, 25 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 70957e1..e516b8a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,6 +1,19 @@ 2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com> * archures.c (bfd_architecture): New machine + bfd_mach_mips_gs264e. + * bfd-in2.h (bfd_architecture): Likewise. + * cpu-mips.c (enum I_xxx): Likewise. + (arch_info_struct): Likewise. + * elfxx-mips.c (_bfd_elf_mips_mach): Handle + E_MIPS_MACH_GS264E. + (mips_set_isa_flags): Likewise. + (mips_mach_extensions): Map bfd_mach_mips_gs264e to + bfd_mach_mips_gs464e extension. + +2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com> + + * archures.c (bfd_architecture): New machine bfd_mach_mips_gs464e. * bfd-in2.h (bfd_architecture): Likewise. * cpu-mips.c (enum I_xxx): Likewise. diff --git a/bfd/archures.c b/bfd/archures.c index 2fd9bda..300e17e 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -177,6 +177,7 @@ DESCRIPTION .#define bfd_mach_mips_loongson_2f 3002 .#define bfd_mach_mips_gs464 3003 .#define bfd_mach_mips_gs464e 3004 +.#define bfd_mach_mips_gs264e 3005 .#define bfd_mach_mips_sb1 12310201 {* octal 'SB', 01. *} .#define bfd_mach_mips_octeon 6501 .#define bfd_mach_mips_octeonp 6601 diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 6819416..1412f89 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -2071,6 +2071,7 @@ enum bfd_architecture #define bfd_mach_mips_loongson_2f 3002 #define bfd_mach_mips_gs464 3003 #define bfd_mach_mips_gs464e 3004 +#define bfd_mach_mips_gs264e 3005 #define bfd_mach_mips_sb1 12310201 /* octal 'SB', 01. */ #define bfd_mach_mips_octeon 6501 #define bfd_mach_mips_octeonp 6601 diff --git a/bfd/cpu-mips.c b/bfd/cpu-mips.c index 2617c79..339b111 100644 --- a/bfd/cpu-mips.c +++ b/bfd/cpu-mips.c @@ -100,6 +100,7 @@ enum I_loongson_2f, I_gs464, I_gs464e, + I_gs264e, I_mipsocteon, I_mipsocteonp, I_mipsocteon2, @@ -153,6 +154,7 @@ static const bfd_arch_info_type arch_info_struct[] = N (64, 64, bfd_mach_mips_loongson_2f, "mips:loongson_2f", FALSE, NN(I_loongson_2f)), N (64, 64, bfd_mach_mips_gs464, "mips:gs464", FALSE, NN(I_gs464)), N (64, 64, bfd_mach_mips_gs464e, "mips:gs464e", FALSE, NN(I_gs464e)), + N (64, 64, bfd_mach_mips_gs264e, "mips:gs264e", FALSE, NN(I_gs264e)), N (64, 64, bfd_mach_mips_octeon,"mips:octeon", FALSE, NN(I_mipsocteon)), N (64, 64, bfd_mach_mips_octeonp,"mips:octeon+", FALSE, NN(I_mipsocteonp)), N (64, 64, bfd_mach_mips_octeon2,"mips:octeon2", FALSE, NN(I_mipsocteon2)), diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 25c2d9c..14621cd 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -6793,6 +6793,9 @@ _bfd_elf_mips_mach (flagword flags) case E_MIPS_MACH_GS464E: return bfd_mach_mips_gs464e; + case E_MIPS_MACH_GS264E: + return bfd_mach_mips_gs264e; + case E_MIPS_MACH_OCTEON3: return bfd_mach_mips_octeon3; @@ -11995,6 +11998,10 @@ mips_set_isa_flags (bfd *abfd) val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_GS464E; break; + case bfd_mach_mips_gs264e: + val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_GS264E; + break; + case bfd_mach_mips_octeon: case bfd_mach_mips_octeonp: val = E_MIPS_ARCH_64R2 | E_MIPS_MACH_OCTEON; @@ -14000,6 +14007,7 @@ static const struct mips_mach_extension mips_mach_extensions[] = { bfd_mach_mips_octeon2, bfd_mach_mips_octeonp }, { bfd_mach_mips_octeonp, bfd_mach_mips_octeon }, { bfd_mach_mips_octeon, bfd_mach_mipsisa64r2 }, + { bfd_mach_mips_gs264e, bfd_mach_mips_gs464e }, { bfd_mach_mips_gs464e, bfd_mach_mips_gs464 }, { bfd_mach_mips_gs464, bfd_mach_mipsisa64r2 }, |