arc/gcc: Better creation of __NPS400__ define
authorAndrew Burgess <andrew.burgess@embecosm.com>
Thu, 9 Feb 2017 00:35:20 +0000 (00:35 +0000)
committerAndrew Burgess <aburgess@gcc.gnu.org>
Thu, 9 Feb 2017 00:35:20 +0000 (00:35 +0000)
The __NPS400__ define is currently created in CPP_SPEC unlike the other
target defines, which are created in arc-c.def.  Further, the current
__NPS400__ define is (currently) only created when -mcpu=nps400 is
passed, which is fine, except that if GCC is configured using
--with-cpu=nps400 then the -mcpu option is not required and the
__NPS400__ define will not be created.

This commit moves the __NPS400__ define into arc-c.def inline with all
of the other target defines, and removes the code in CPP_SPEC that used
to create the define.

In order to support the creation of the define in arc-c.def, a new
TARGET_NPS400 macro is created in arc.h.

gcc/ChangeLog:

* config/arc/arc-c.def: Add __NPS400__ definition.
* config/arc/arc.h (CPP_SPEC): Don't define __NPS400__ here.
(TARGET_NPS400): Define.

From-SVN: r245294

gcc/ChangeLog
gcc/config/arc/arc-c.def
gcc/config/arc/arc.h

index 4d8e92932557745a8079ec226987f7d820b75fb8..8865d74544093d77617403fb909857c1a423402c 100644 (file)
@@ -1,3 +1,9 @@
+2017-02-09  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * config/arc/arc-c.def: Add __NPS400__ definition.
+       * config/arc/arc.h (CPP_SPEC): Don't define __NPS400__ here.
+       (TARGET_NPS400): Define.
+
 2017-02-09  Andrew Burgess  <andrew.burgess@embecosm.com>
 
        * config/arc/arc-arch.h (arc_arch_t): Move unchanged to earlier in
index 4903d8480de79d6a889e20b44961134cdf62bf10..8c5097ea6ced1ac6aeb806511d15c2a99e17e132 100644 (file)
@@ -20,6 +20,7 @@
 ARC_C_DEF ("__ARC600__",       TARGET_ARC600)
 ARC_C_DEF ("__ARC601__",       TARGET_ARC601)
 ARC_C_DEF ("__ARC700__",       TARGET_ARC700)
+ARC_C_DEF ("__NPS400__",       TARGET_NPS400)
 ARC_C_DEF ("__ARCEM__",                TARGET_EM)
 ARC_C_DEF ("__ARCHS__",                TARGET_HS)
 ARC_C_DEF ("__ARC_ATOMIC__",   TARGET_ATOMIC)
index 64a3724b6ccf0ed32d1946c64b69d8bf653dc066..1341537101384d3a1d1a5fb8deb6ece5b071559f 100644 (file)
@@ -92,8 +92,7 @@ along with GCC; see the file COPYING3.  If not see
 %{mmac-d16:-D__Xxmac_d16} %{mmac-24:-D__Xxmac_24} \
 %{mdsp-packa:-D__Xdsp_packa} %{mcrc:-D__Xcrc} %{mdvbf:-D__Xdvbf} \
 %{mtelephony:-D__Xtelephony} %{mxy:-D__Xxy} %{mmul64: -D__Xmult32} \
-%{mlock:-D__Xlock} %{mswape:-D__Xswape} %{mrtsc:-D__Xrtsc} \
-%{mcpu=nps400:-D__NPS400__}"
+%{mlock:-D__Xlock} %{mswape:-D__Xswape} %{mrtsc:-D__Xrtsc}"
 
 #define CC1_SPEC "\
 %{EB:%{EL:%emay not use both -EB and -EL}} \
@@ -223,6 +222,12 @@ extern const char *arc_cpu_to_as (int argc, const char **argv);
                       && (!TARGET_BARREL_SHIFTER))
 #define TARGET_ARC700 (arc_selected_cpu->arch_info->arch_id    \
                       == BASE_ARCH_700)
+/* An NPS400 is a specialisation of ARC700, so it is correct for NPS400
+   TARGET_ARC700 is true, and TARGET_NPS400 is true.  */
+#define TARGET_NPS400 ((arc_selected_cpu->arch_info->arch_id   \
+                       == BASE_ARCH_700)                       \
+                      && (arc_selected_cpu->processor          \
+                          == PROCESSOR_nps400))
 #define TARGET_EM (arc_selected_cpu->arch_info->arch_id == BASE_ARCH_em)
 #define TARGET_HS (arc_selected_cpu->arch_info->arch_id == BASE_ARCH_hs)
 #define TARGET_V2 (TARGET_EM || TARGET_HS)