From: Joseph Myers Date: Sat, 18 Nov 2006 00:22:45 +0000 (+0000) Subject: rs6000.h (TARGET_NO_LWSYNC): Define. X-Git-Tag: releases/gcc-4.3.0~8408 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8609875306931541730c93b2b99d835f110673fd;p=thirdparty%2Fgcc.git rs6000.h (TARGET_NO_LWSYNC): Define. gcc: * config/rs6000/rs6000.h (TARGET_NO_LWSYNC): Define. * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define __NO_LWSYNC__ if TARGET_NO_LWSYNC. * config/rs6000/sync.md (lwsync): Emit plain sync if TARGET_NO_LWSYNC. libstdc++-v3: * config/cpu/powerpc/atomic_word.h (_GLIBCXX_WRITE_MEM_BARRIER): Use plain sync if __NO_LWSYNC__. From-SVN: r118961 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f3c8b8786539..01ed1bfe1f49 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2006-11-18 Joseph Myers + + * config/rs6000/rs6000.h (TARGET_NO_LWSYNC): Define. + * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define + __NO_LWSYNC__ if TARGET_NO_LWSYNC. + * config/rs6000/sync.md (lwsync): Emit plain sync if + TARGET_NO_LWSYNC. + 2006-11-17 DJ Delorie * reload1.c (reloads_unique_chain): New. diff --git a/gcc/config/rs6000/rs6000-c.c b/gcc/config/rs6000/rs6000-c.c index 94d4a6a8c3bf..d4988bd3ffd4 100644 --- a/gcc/config/rs6000/rs6000-c.c +++ b/gcc/config/rs6000/rs6000-c.c @@ -127,6 +127,9 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfile) /* Used by lwarx/stwcx. errata work-around. */ if (rs6000_cpu == PROCESSOR_PPC405) builtin_define ("__PPC405__"); + /* Used by libstdc++. */ + if (TARGET_NO_LWSYNC) + builtin_define ("__NO_LWSYNC__"); /* May be overridden by target configuration. */ RS6000_CPU_CPP_ENDIAN_BUILTINS(); diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 6ccc3c01ad4e..0795e6ee6376 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -342,6 +342,9 @@ extern enum rs6000_nop_insertion rs6000_sched_insert_nops; #define TARGET_E500_SINGLE 0 #define TARGET_E500_DOUBLE 0 +/* E500 processors only support plain "sync", not lwsync. */ +#define TARGET_NO_LWSYNC TARGET_E500 + /* Sometimes certain combinations of command options do not make sense on a particular target machine. You can define a macro `OVERRIDE_OPTIONS' to take account of this. This macro, if diff --git a/gcc/config/rs6000/sync.md b/gcc/config/rs6000/sync.md index b244ef639863..b7166473efec 100644 --- a/gcc/config/rs6000/sync.md +++ b/gcc/config/rs6000/sync.md @@ -615,6 +615,11 @@ [(set (mem:BLK (match_scratch 0 "X")) (unspec_volatile:BLK [(mem:BLK (match_scratch 1 "X"))] UNSPEC_LWSYNC))] "" - ".long 0x7c2004ac" +{ + if (TARGET_NO_LWSYNC) + return "sync"; + else + return ".long 0x7c2004ac"; +} [(set_attr "type" "sync")]) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2118ba1bcc90..a41049a7ff11 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2006-11-18 Joseph Myers + + * config/cpu/powerpc/atomic_word.h (_GLIBCXX_WRITE_MEM_BARRIER): + Use plain sync if __NO_LWSYNC__. + 2006-11-14 Joseph Myers * testsuite/26_numerics/complex/13450.cc: Do not test long double diff --git a/libstdc++-v3/config/cpu/powerpc/atomic_word.h b/libstdc++-v3/config/cpu/powerpc/atomic_word.h index 2a5d192c54bb..4f8c670d2a23 100644 --- a/libstdc++-v3/config/cpu/powerpc/atomic_word.h +++ b/libstdc++-v3/config/cpu/powerpc/atomic_word.h @@ -33,6 +33,10 @@ typedef int _Atomic_word; #define _GLIBCXX_READ_MEM_BARRIER __asm __volatile ("isync":::"memory") +#ifdef __NO_LWSYNC__ +#define _GLIBCXX_WRITE_MEM_BARRIER __asm __volatile ("sync":::"memory") +#else #define _GLIBCXX_WRITE_MEM_BARRIER __asm __volatile ("lwsync":::"memory") +#endif #endif