diff options
author | Richard Sandiford <richard@codesourcery.com> | 2007-07-03 17:34:59 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2007-07-03 17:34:59 +0000 |
commit | bdd77024de587f1761dfbffc96d7b8392f855986 (patch) | |
tree | 12e5ea7d383c8e132aebfcee43b712ed039b3df7 /gcc/doc | |
parent | fbaeb717be672acdb109f85765eedc647628d855 (diff) | |
download | gcc-bdd77024de587f1761dfbffc96d7b8392f855986.zip gcc-bdd77024de587f1761dfbffc96d7b8392f855986.tar.gz gcc-bdd77024de587f1761dfbffc96d7b8392f855986.tar.bz2 |
invoke.texi: Replace -march=24kf with -march=24kf2_1 and -march=24kx with -march=24kf1_1.
gcc/
2007-07-03 Richard Sandiford <richard@codesourcery.com>
David Ung <davidu@mips.com>
* doc/invoke.texi: Replace -march=24kf with -march=24kf2_1 and
-march=24kx with -march=24kf1_1. Likewise 24ke[fx], 34k[fx]
and 74k[fx]. Document aliases for the new options.
* config/mips/mips.h (PROCESSOR_24KF): Rename to...
(PROCESSOR_24KF2_1): ...this.
(PROCESSOR_24KX): Rename to...
(PROCESSOR_24KF1_1): ...this.
(PROCESSOR_74KF): Rename to...
(PROCESSOR_74KF2_1): ...this.
(PROCESSOR_74KX): Rename to...
(PROCESSOR_74KF1_1): ...this.
(TUNE_74K): Update PROCESSOR_* names.
* config/mips/mips.c (mips_cpu_info): Add 24kf2_1 as a synonym
for 24kf. Add 24kf1_1 and 24kfx as synonyms for 24kx. Likewise
the 24ke*, 34k* and 74k* processors. Update PROCESSOR_* names.
(mips_rtx_cost_data): Update processor names in comments.
(mips_issue_rate): Update PROCESSOR_* names.
* config/mips/mips.md (cpu): Rename 24kf to 24kf2_1, 24kx to
24kf1_1, 74kf to 74kf2_1 and 74kx to 74kf1_1.
* config/mips/24k.md: Rename FPU-related r24k_* insn reservations
to r24kf2_1_*. Rename r24kx_* insn reservations to r24kf1_1_*.
Update cpu attribute names.
(r24k_fpu_iss): Rename this reservation to...
(r24kf2_1_fpu_iss): ...this and update all uses.
(r24kx_fpu_iss): Rename this reservation to...
(r24kf1_1_fpu_iss): ...this and update all uses.
* config/mips/74k.md: Rename FPU-related r74kf_* insn reservations
to r74kf2_1_*. Rename r74kx_* insn reservations to r74kf1_1_*.
Update cpu attribute names.
Co-Authored-By: David Ung <davidu@mips.com>
From-SVN: r126266
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/invoke.texi | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 47752e7..1a9c1aa 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -11425,10 +11425,10 @@ The processor names are: @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{5kc}, @samp{5kf}, @samp{20kc}, -@samp{24kc}, @samp{24kf}, @samp{24kx}, -@samp{24kec}, @samp{24kef}, @samp{24kex}, -@samp{34kc}, @samp{34kf}, @samp{34kx}, -@samp{74kc}, @samp{74kf}, @samp{74kx}, +@samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1}, +@samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1}, +@samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1}, +@samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{m4k}, @samp{orion}, @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400}, @@ -11446,6 +11446,13 @@ In processor names, a final @samp{000} can be abbreviated as @samp{k} (for example, @samp{-march=r2k}). Prefixes are optional, and @samp{vr} may be written @samp{r}. +Names of the form @samp{@var{n}f2_1} refer to processors with +FPUs clocked at half the rate of the core. Names of the form +@samp{@var{n}f1_1} refer to processors with FPUs clocked at the same +rate as the core. For compatibility reasons, @samp{@var{n}f} is +accepted as a synonym for @samp{@var{n}f2_1} while @samp{@var{n}x} and +@samp{@var{b}fx} are accepted as synonyms for @samp{@var{n}f1_1}. + GCC defines two macros based on the value of this option. The first is @samp{_MIPS_ARCH}, which gives the name of target architecture, as a string. The second has the form @samp{_MIPS_ARCH_@var{foo}}, |