Commit 3a9abd23 by Andrew Burgess Committed by Andrew Burgess

arc/gcc: Better creation of __NPS400__ define

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
parent c3bde35a
2017-02-09 Andrew Burgess <andrew.burgess@embecosm.com> 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 * config/arc/arc-arch.h (arc_arch_t): Move unchanged to earlier in
file. file.
(arc_cpu_t): Change base_architecture field, arch, to a arc_arc_t (arc_cpu_t): Change base_architecture field, arch, to a arc_arc_t
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
ARC_C_DEF ("__ARC600__", TARGET_ARC600) ARC_C_DEF ("__ARC600__", TARGET_ARC600)
ARC_C_DEF ("__ARC601__", TARGET_ARC601) ARC_C_DEF ("__ARC601__", TARGET_ARC601)
ARC_C_DEF ("__ARC700__", TARGET_ARC700) ARC_C_DEF ("__ARC700__", TARGET_ARC700)
ARC_C_DEF ("__NPS400__", TARGET_NPS400)
ARC_C_DEF ("__ARCEM__", TARGET_EM) ARC_C_DEF ("__ARCEM__", TARGET_EM)
ARC_C_DEF ("__ARCHS__", TARGET_HS) ARC_C_DEF ("__ARCHS__", TARGET_HS)
ARC_C_DEF ("__ARC_ATOMIC__", TARGET_ATOMIC) ARC_C_DEF ("__ARC_ATOMIC__", TARGET_ATOMIC)
......
...@@ -92,8 +92,7 @@ along with GCC; see the file COPYING3. If not see ...@@ -92,8 +92,7 @@ along with GCC; see the file COPYING3. If not see
%{mmac-d16:-D__Xxmac_d16} %{mmac-24:-D__Xxmac_24} \ %{mmac-d16:-D__Xxmac_d16} %{mmac-24:-D__Xxmac_24} \
%{mdsp-packa:-D__Xdsp_packa} %{mcrc:-D__Xcrc} %{mdvbf:-D__Xdvbf} \ %{mdsp-packa:-D__Xdsp_packa} %{mcrc:-D__Xcrc} %{mdvbf:-D__Xdvbf} \
%{mtelephony:-D__Xtelephony} %{mxy:-D__Xxy} %{mmul64: -D__Xmult32} \ %{mtelephony:-D__Xtelephony} %{mxy:-D__Xxy} %{mmul64: -D__Xmult32} \
%{mlock:-D__Xlock} %{mswape:-D__Xswape} %{mrtsc:-D__Xrtsc} \ %{mlock:-D__Xlock} %{mswape:-D__Xswape} %{mrtsc:-D__Xrtsc}"
%{mcpu=nps400:-D__NPS400__}"
#define CC1_SPEC "\ #define CC1_SPEC "\
%{EB:%{EL:%emay not use both -EB and -EL}} \ %{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); ...@@ -223,6 +222,12 @@ extern const char *arc_cpu_to_as (int argc, const char **argv);
&& (!TARGET_BARREL_SHIFTER)) && (!TARGET_BARREL_SHIFTER))
#define TARGET_ARC700 (arc_selected_cpu->arch_info->arch_id \ #define TARGET_ARC700 (arc_selected_cpu->arch_info->arch_id \
== BASE_ARCH_700) == 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_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_HS (arc_selected_cpu->arch_info->arch_id == BASE_ARCH_hs)
#define TARGET_V2 (TARGET_EM || TARGET_HS) #define TARGET_V2 (TARGET_EM || TARGET_HS)
......
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