Commit 44b20bb8 by Catherine Moore Committed by Catherine Moore

mips.opt (meva): New.

2013-06-04  Catherine Moore  <clm@codesourcery.com>

        * config/mips/mips.opt (meva): New.
        * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS):
        Define __mips_eva.
        (ASM_SPEC): Handle -meva.
        * doc/invoke.texi (meva):  Document.

From-SVN: r199649
parent 52befbd8
2013-06-04 Catherine Moore <clm@codesourcery.com>
* config/mips/mips.opt (meva): New.
* config/mips/mips.h (TARGET_CPU_CPP_BUILTINS):
Define __mips_eva.
(ASM_SPEC): Handle -meva.
* doc/invoke.texi (meva): Document.
2013-06-04 Alan Modra <amodra@gmail.com> 2013-06-04 Alan Modra <amodra@gmail.com>
* config/rs6000/rs6000.c (output_toc): Correct little-endian float * config/rs6000/rs6000.c (output_toc): Correct little-endian float
......
...@@ -399,6 +399,9 @@ struct mips_cpu_info { ...@@ -399,6 +399,9 @@ struct mips_cpu_info {
if (TARGET_MCU) \ if (TARGET_MCU) \
builtin_define ("__mips_mcu"); \ builtin_define ("__mips_mcu"); \
\ \
if (TARGET_EVA) \
builtin_define ("__mips_eva"); \
\
if (TARGET_DSP) \ if (TARGET_DSP) \
{ \ { \
builtin_define ("__mips_dsp"); \ builtin_define ("__mips_dsp"); \
...@@ -1125,6 +1128,7 @@ struct mips_cpu_info { ...@@ -1125,6 +1128,7 @@ struct mips_cpu_info {
%{mdsp} %{mno-dsp} \ %{mdsp} %{mno-dsp} \
%{mdspr2} %{mno-dspr2} \ %{mdspr2} %{mno-dspr2} \
%{mmcu} %{mno-mcu} \ %{mmcu} %{mno-mcu} \
%{meva} %{mno-eva} \
%{msmartmips} %{mno-smartmips} \ %{msmartmips} %{mno-smartmips} \
%{mmt} %{mno-mt} \ %{mmt} %{mno-mt} \
%{mfix-vr4120} %{mfix-vr4130} \ %{mfix-vr4120} %{mfix-vr4130} \
......
...@@ -141,6 +141,10 @@ membedded-data ...@@ -141,6 +141,10 @@ membedded-data
Target Report Var(TARGET_EMBEDDED_DATA) Target Report Var(TARGET_EMBEDDED_DATA)
Use ROM instead of RAM Use ROM instead of RAM
meva
Target Report Var(TARGET_EVA)
Use Enhanced Virtual Addressing instructions
mexplicit-relocs mexplicit-relocs
Target Report Mask(EXPLICIT_RELOCS) Target Report Mask(EXPLICIT_RELOCS)
Use NewABI-style %reloc() assembly operators Use NewABI-style %reloc() assembly operators
......
...@@ -752,6 +752,7 @@ Objective-C and Objective-C++ Dialects}. ...@@ -752,6 +752,7 @@ Objective-C and Objective-C++ Dialects}.
-mno-float -msingle-float -mdouble-float @gol -mno-float -msingle-float -mdouble-float @gol
-mdsp -mno-dsp -mdspr2 -mno-dspr2 @gol -mdsp -mno-dsp -mdspr2 -mno-dspr2 @gol
-mmcu -mmno-mcu @gol -mmcu -mmno-mcu @gol
-meva -mno-eva @gol
-mmicromips -mno-micromips @gol -mmicromips -mno-micromips @gol
-mfpu=@var{fpu-type} @gol -mfpu=@var{fpu-type} @gol
-msmartmips -mno-smartmips @gol -msmartmips -mno-smartmips @gol
...@@ -16376,6 +16377,12 @@ Use (do not use) MT Multithreading instructions. ...@@ -16376,6 +16377,12 @@ Use (do not use) MT Multithreading instructions.
@opindex mno-mcu @opindex mno-mcu
Use (do not use) the MIPS MCU ASE instructions. Use (do not use) the MIPS MCU ASE instructions.
@item -meva
@itemx -mno-eva
@opindex meva
@opindex mno-eva
Use (do not use) the MIPS Enhanced Virtual Addressing instructions.
@item -mlong64 @item -mlong64
@opindex mlong64 @opindex mlong64
Force @code{long} types to be 64 bits wide. See @option{-mlong32} for Force @code{long} types to be 64 bits wide. See @option{-mlong32} for
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment