diff options
author | Jeff Law <law@redhat.com> | 1997-09-23 16:36:19 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1997-09-23 16:36:19 +0000 |
commit | 4e96260fd0b35da6726bdb95dbecd9637003fe3b (patch) | |
tree | 0a89bd962612bdd29e833e7f8c0d5feb7688f4d2 /gas/config | |
parent | aac6f3383b072960900be66b55457cdb71b94a1e (diff) | |
download | gdb-4e96260fd0b35da6726bdb95dbecd9637003fe3b.zip gdb-4e96260fd0b35da6726bdb95dbecd9637003fe3b.tar.gz gdb-4e96260fd0b35da6726bdb95dbecd9637003fe3b.tar.bz2 |
vr5900 -> r5900
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 967c374..e0c0a38 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -199,11 +199,6 @@ static int mips_4010 = -1; /* Whether the 4100 MADD16 and DMADD16 are permitted. */ static int mips_4100 = -1; -/* start-sanitize-tx19 */ -/* Whether Toshiba r3900 instructions are permitted. */ -static int mips_1900 = -1; -/* end-sanitize-tx19 */ - /* start-sanitize-r5900 */ /* Whether Toshiba r5900 instructions are permitted. */ static int mips_5900 = -1; @@ -212,6 +207,12 @@ static int mips_5900 = -1; /* Whether Toshiba r3900 instructions are permitted. */ static int mips_3900 = -1; +/* start-sanitize-tx19 */ +/* The tx19 (r1900) is a mips16 decoder with a tx39(r3900) behind it. + The tx19 related options and configuration bits are handled by + the tx39 flags. */ +/* end-sanitize-tx19 */ + /* Whether the processor uses hardware interlocks to protect reads from the HI and LO registers, and thus does not require nops to be inserted. */ @@ -801,19 +802,13 @@ md_begin () if (mips_cpu == -1) mips_cpu = 3000; } - /* start-sanitize-tx19 */ - else if (strcmp (cpu, "r1900") == 0 - || strcmp (cpu, "mipstx19") == 0) - { - mips_opts.isa = 1; - if (mips_cpu == -1) - mips_cpu = 1900; - if (mips_1900 == -1) - mips_1900 = 1; - } - /* end-sanitize-tx19 */ else if (strcmp (cpu, "r3900") == 0 - || strcmp (cpu, "mipsr3900") == 0) + || strcmp (cpu, "mipsr3900") == 0 + /* start-sanitize-tx19 */ + || strcmp (cpu, "r1900") == 0 + || strcmp (cpu, "mipstx19") == 0 + /* end-sanitize-tx19 */ + ) { mips_opts.isa = 1; if (mips_cpu == -1) @@ -888,8 +883,8 @@ md_begin () } /* start-sanitize-r5900 */ else if (strcmp (cpu, "r5900") == 0 - || strcmp (cpu, "mips64vr5900") == 0 - || strcmp (cpu, "mips64vr5900el") == 0) + || strcmp (cpu, "mips64r5900") == 0 + || strcmp (cpu, "mips64r5900el") == 0) { mips_opts.isa = 3; if (mips_cpu == -1) @@ -8378,7 +8373,11 @@ struct option md_longopts[] = { {"m3900", no_argument, NULL, OPTION_M3900}, #define OPTION_NO_M3900 (OPTION_MD_BASE + 27) {"no-m3900", no_argument, NULL, OPTION_NO_M3900}, - + + /* start-sanitize-tx19 */ + {"m1900", no_argument, NULL, OPTION_M3900}, + {"no-m1900", no_argument, NULL, OPTION_NO_M3900}, + /* end-sanitize-tx19 */ #define OPTION_CALL_SHARED (OPTION_MD_BASE + 7) #define OPTION_NON_SHARED (OPTION_MD_BASE + 8) @@ -8496,6 +8495,10 @@ md_parse_option (c, arg) || strcmp (p, "10k") == 0 || strcmp (p, "10K") == 0) mips_cpu = 10000; + /* start-sanitize-tx19 */ + else if (strcmp (p, "1900") == 0) + mips_cpu = 3900; + /* end-sanitize-tx19 */ break; case '2': |