* [committed] Define __mips_dsp_rev
@ 2007-07-27 19:42 Richard Sandiford
0 siblings, 0 replies; only message in thread
From: Richard Sandiford @ 2007-07-27 19:42 UTC (permalink / raw)
To: gcc-patches
At Thiemo's request, I've added a __mips_dsp_rev macro that specifies
the revision number of the ASE. -mdspr2 has been in mainline for a
few months now, so I think we should keep the original __mips_dspr2
macro too.
Tested on mipsisa64-elf. Applied to trunk.
Richard
gcc/
* doc/invoke.texi (mdsp, mdspr2): Document the __mips_dsp,
__mips_dspr2 and __mips_dsp_rev macros.
* config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define __mips_dsp_rev.
Index: gcc/doc/invoke.texi
===================================================================
--- gcc/doc/invoke.texi (revision 126993)
+++ gcc/doc/invoke.texi (working copy)
@@ -11658,14 +11658,19 @@ operations. This is the default.
@itemx -mno-dsp
@opindex mdsp
@opindex mno-dsp
-Use (do not use) the MIPS DSP ASE. @xref{MIPS DSP Built-in Functions}.
+Use (do not use) revision 1 of the MIPS DSP ASE.
+@xref{MIPS DSP Built-in Functions}. This option defines the
+preprocessor macro @samp{__mips_dsp}. It also defines
+@samp{__mips_dsp_rev} to 1.
@item -mdspr2
@itemx -mno-dspr2
@opindex mdspr2
@opindex mno-dspr2
-Use (do not use) the MIPS DSP ASE REV 2. @xref{MIPS DSP Built-in Functions}.
-The option @option{-mdspr2} implies @option{-mdsp}.
+Use (do not use) revision 2 of the MIPS DSP ASE.
+@xref{MIPS DSP Built-in Functions}. This option defines the
+preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
+It also defines @samp{__mips_dsp_rev} to 2.
@item -msmartmips
@itemx -mno-smartmips
Index: gcc/config/mips/mips.h
===================================================================
--- gcc/config/mips/mips.h (revision 126993)
+++ gcc/config/mips/mips.h (working copy)
@@ -378,10 +378,16 @@ #define TARGET_CPU_CPP_BUILTINS() \
builtin_define ("__mips_smartmips"); \
\
if (TARGET_DSP) \
- builtin_define ("__mips_dsp"); \
- \
- if (TARGET_DSPR2) \
- builtin_define ("__mips_dspr2"); \
+ { \
+ builtin_define ("__mips_dsp"); \
+ if (TARGET_DSPR2) \
+ { \
+ builtin_define ("__mips_dspr2"); \
+ builtin_define ("__mips_dsp_rev=2"); \
+ } \
+ else \
+ builtin_define ("__mips_dsp_rev=1"); \
+ } \
\
MIPS_CPP_SET_PROCESSOR ("_MIPS_ARCH", mips_arch_info); \
MIPS_CPP_SET_PROCESSOR ("_MIPS_TUNE", mips_tune_info); \
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-07-27 19:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-27 19:42 [committed] Define __mips_dsp_rev Richard Sandiford
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).