mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 10:51:19 +08:00
bfin.h (TARGET_CPU_CPP_BUILTINS): Define __WORKAROUND_RETS when appropriate.
gcc/ * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define __WORKAROUND_RETS when appropriate. gcc/testsuite/ * gcc.target/bfin/mcpu-default.c: Adjust for recent changes: default CPU has all workarounds, and no longer explicitly sets bf532 as CPU type. * gcc.target/bfin/mcpu-bf531.c: Adjust for WORKAROUND_RETS. * gcc.target/bfin/mcpu-bf532.c: Likewise. * gcc.target/bfin/mcpu-bf533.c: Likewise. * gcc.target/bfin/mcpu-bf534.c: Likewise. * gcc.target/bfin/mcpu-bf536.c: Likewise. * gcc.target/bfin/mcpu-bf537.c: Likewise. * gcc.target/bfin/mcpu-bf548.c: Likewise. * gcc.target/bfin/mcpu-bf549.c: Likewise. * gcc.target/bfin/mcpu-bf561.c: Likewise. * gcc.target/bfin/mcpu-bf523.c: Likewise. * gcc.target/bfin/mcpu-bf524.c: Likewise. * gcc.target/bfin/mcpu-bf526.c: Likewise. * gcc.target/bfin/mcpu-bf522.c: Likewise. * gcc.target/bfin/mcpu-bf525.c: Likewise. * gcc.target/bfin/mcpu-bf527.c: Likewise. * gcc.target/bfin/mcpu-bf538.c: Likewise. * gcc.target/bfin/mcpu-bf539.c: Likewise. * gcc.target/bfin/mcpu-bf542.c: Likewise. * gcc.target/bfin/mcpu-bf544.c: Likewise. * gcc.target/bfin/mcpu-default.c: Likewise. * gcc.target/bfin/workarounds-any.c: Likewise. * gcc.target/bfin/workarounds-none.c: Likewise. * gcc.target/bfin/workarounds-1.c: Likewise. * gcc.target/bfin/workarounds-2.c: Likewise. * gcc.target/bfin/workarounds-3.c: Likewise. * gcc.target/bfin/workarounds-4.c: Likewise. From-SVN: r136236
This commit is contained in:
parent
ca3a21650c
commit
2643f14e44
@ -1,3 +1,8 @@
|
||||
2008-05-31 Bernd Schmidt <bernd.schmidt@analog.com>
|
||||
|
||||
* config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define
|
||||
__WORKAROUND_RETS when appropriate.
|
||||
|
||||
2008-05-31 Uros Bizjak <ubizjak@gmail.com>
|
||||
|
||||
* config/i386/i386.md (*fop_<mode>_comm_mixed): Macroize from
|
||||
|
@ -133,6 +133,8 @@ extern int target_flags;
|
||||
builtin_define ("__WORKAROUND_SPECULATIVE_LOADS"); \
|
||||
if (ENABLE_WA_SPECULATIVE_SYNCS) \
|
||||
builtin_define ("__WORKAROUND_SPECULATIVE_SYNCS"); \
|
||||
if (ENABLE_WA_RETS) \
|
||||
builtin_define ("__WORKAROUND_RETS"); \
|
||||
\
|
||||
if (TARGET_FDPIC) \
|
||||
{ \
|
||||
|
@ -1,3 +1,36 @@
|
||||
2008-05-30 Bernd Schmidt <bernd.schmidt@analog.com>
|
||||
|
||||
* gcc.target/bfin/mcpu-default.c: Adjust for recent changes: default
|
||||
CPU has all workarounds, and no longer explicitly sets bf532 as CPU
|
||||
type.
|
||||
|
||||
* gcc.target/bfin/mcpu-bf531.c: Adjust for WORKAROUND_RETS.
|
||||
* gcc.target/bfin/mcpu-bf532.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf533.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf534.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf536.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf537.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf548.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf549.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf561.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf523.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf524.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf526.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf522.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf525.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf527.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf538.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf539.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf542.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-bf544.c: Likewise.
|
||||
* gcc.target/bfin/mcpu-default.c: Likewise.
|
||||
* gcc.target/bfin/workarounds-any.c: Likewise.
|
||||
* gcc.target/bfin/workarounds-none.c: Likewise.
|
||||
* gcc.target/bfin/workarounds-1.c: Likewise.
|
||||
* gcc.target/bfin/workarounds-2.c: Likewise.
|
||||
* gcc.target/bfin/workarounds-3.c: Likewise.
|
||||
* gcc.target/bfin/workarounds-4.c: Likewise.
|
||||
|
||||
2008-05-30 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
PR preprocessor/36320:
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -18,6 +18,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -10,8 +10,12 @@
|
||||
#error "__SILICON_REVISION__ is not 0x0005"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUNDS_ENABLED
|
||||
#error "__WORKAROUNDS_ENABLED is defined"
|
||||
#ifndef __WORKAROUNDS_ENABLED
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUND_SPECULATIVE_LOADS
|
||||
|
@ -2,22 +2,92 @@
|
||||
/* { dg-do preprocess } */
|
||||
/* { dg-bfin-options "" } */
|
||||
|
||||
#ifndef __ADSPBF532__
|
||||
#error "__ADSPBF532__ is not defined"
|
||||
#ifdef __ADSPBF522__
|
||||
#error "__ADSPBF522__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF523__
|
||||
#error "__ADSPBF523__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF524__
|
||||
#error "__ADSPBF524__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF525__
|
||||
#error "__ADSPBF525__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF526__
|
||||
#error "__ADSPBF526__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF527__
|
||||
#error "__ADSPBF527__ is defined"
|
||||
#endif
|
||||
|
||||
#if __SILICON_REVISION__ != 0x0005
|
||||
#error "__SILICON_REVISION__ is not 0x0005"
|
||||
|
||||
#ifdef __ADSPBF531__
|
||||
#error "__ADSPBF531__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF532__
|
||||
#error "__ADSPBF532__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF533__
|
||||
#error "__ADSPBF533__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF534__
|
||||
#error "__ADSPBF534__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF536__
|
||||
#error "__ADSPBF536__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF537__
|
||||
#error "__ADSPBF537__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF538__
|
||||
#error "__ADSPBF538__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF539__
|
||||
#error "__ADSPBF539__ is defined"
|
||||
#endif
|
||||
|
||||
#ifdef __ADSPBF542__
|
||||
#error "__ADSPBF542__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF544__
|
||||
#error "__ADSPBF544__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF547__
|
||||
#error "__ADSPBF547__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF548__
|
||||
#error "__ADSPBF548__ is defined"
|
||||
#endif
|
||||
#ifdef __ADSPBF549__
|
||||
#error "__ADSPBF548__ is defined"
|
||||
#endif
|
||||
|
||||
#ifdef __ADSPBF561__
|
||||
#error "__ADSPBF561__ is defined"
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef __SILICON_REVISION__
|
||||
#error "__SILICON_REVISION__ is not defined"
|
||||
#else
|
||||
#if __SILICON_REVISION__ != 0xffff
|
||||
#error "__SILICON_REVISION__ is not 0xFFFF"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUNDS_ENABLED
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUND_SPECULATIVE_SYNCS
|
||||
#error "__WORKAROUND_SPECULATIVE_SYNCS is defined"
|
||||
#ifndef __WORKAROUND_SPECULATIVE_SYNCS
|
||||
#error "__WORKAROUND_SPECULATIVE_SYNCS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -10,8 +10,12 @@
|
||||
#error "__SILICON_REVISION__ is not 0x0003"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUNDS_ENABLED
|
||||
#error "__WORKAROUNDS_ENABLED is defined"
|
||||
#ifndef __WORKAROUNDS_ENABLED
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUND_SPECULATIVE_LOADS
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is defined"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is defined"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is not defined"
|
||||
#endif
|
||||
|
||||
#ifndef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is not defined"
|
||||
#endif
|
||||
|
@ -14,6 +14,10 @@
|
||||
#error "__WORKAROUNDS_ENABLED is defined"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUND_RETS
|
||||
#error "__WORKAROUND_RETS is defined"
|
||||
#endif
|
||||
|
||||
#ifdef __WORKAROUND_SPECULATIVE_LOADS
|
||||
#error "__WORKAROUND_SPECULATIVE_LOADS is defined"
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user