public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/39079]  New: MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems.
@ 2009-02-02 17:00 daney at gcc dot gnu dot org
  2009-05-18 17:39 ` [Bug target/39079] " daney at gcc dot gnu dot org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: daney at gcc dot gnu dot org @ 2009-02-02 17:00 UTC (permalink / raw)
  To: gcc-bugs

We expand __builtin___clear_cache() to a 'synci' instruction on ISA_HAS_SYNCI
systems, which invalidates the icache only on the local CPU.

On an SMP system, the caches on all CPUs should be invalidated.  To achieve
this we need to drop back to the old way of doing things by using the cache
flush system call.


-- 
           Summary: MIPS: __builtin___clear_cache() broken on SMP
                    ISA_HAS_SYNCI systems.
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: daney at gcc dot gnu dot org
 GCC build triplet: mips64-unknown-linux-gnu
  GCC host triplet: mips64-unknown-linux-gnu
GCC target triplet: mips64-unknown-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39079


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug target/39079] MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems.
  2009-02-02 17:00 [Bug target/39079] New: MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems daney at gcc dot gnu dot org
@ 2009-05-18 17:39 ` daney at gcc dot gnu dot org
  2009-07-10 22:50 ` daney at gcc dot gnu dot org
  2009-07-10 22:52 ` daney at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: daney at gcc dot gnu dot org @ 2009-05-18 17:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from daney at gcc dot gnu dot org  2009-05-18 17:39 -------
I am working on a patch.


-- 

daney at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |daney at gcc dot gnu dot org
                   |dot org                     |
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2009-05-18 17:39:10
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39079


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug target/39079] MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems.
  2009-02-02 17:00 [Bug target/39079] New: MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems daney at gcc dot gnu dot org
  2009-05-18 17:39 ` [Bug target/39079] " daney at gcc dot gnu dot org
@ 2009-07-10 22:50 ` daney at gcc dot gnu dot org
  2009-07-10 22:52 ` daney at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: daney at gcc dot gnu dot org @ 2009-07-10 22:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from daney at gcc dot gnu dot org  2009-07-10 22:50 -------
Subject: Bug 39079

Author: daney
Date: Fri Jul 10 22:49:52 2009
New Revision: 149500

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=149500
Log:
2009-07-10  David Daney  <ddaney@caviumnetworks.com>

        PR target/39079
        * testsuite/gcc.target/mips/mips.exp: Make -msynci a known option.
        * gcc.target/mips/clear-cache-1.c (dg-options): Add -msynci.

2009-07-10  David Daney  <ddaney@caviumnetworks.com>

        PR target/39079
        * config.gcc (supported_defaults): Add synci.
        (with_synci): Add validation.
        (all_defaults): Add synci.
        * config/mips/mips.md (clear_cache): Use TARGET_SYNCI instead of
        ISA_HAS_SYNCI.
        (synci): Same.
        * config/mips/mips.opt (msynci): New option.
        * config/mips/mips.c (mips_override_options): Warn on use of
        -msynci for targets that do now support it.
        * gcc/config/mips/mips.h (OPTION_DEFAULT_SPECS): Add a default for
        msynci.
        * gcc/doc/invoke.texi (-msynci): Document the new option.
        * doc/install.texi (--with-synci): Document the new option.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config.gcc
    trunk/gcc/config/mips/mips.c
    trunk/gcc/config/mips/mips.h
    trunk/gcc/config/mips/mips.md
    trunk/gcc/config/mips/mips.opt
    trunk/gcc/doc/install.texi
    trunk/gcc/doc/invoke.texi
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.target/mips/clear-cache-1.c
    trunk/gcc/testsuite/gcc.target/mips/mips.exp


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39079


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug target/39079] MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems.
  2009-02-02 17:00 [Bug target/39079] New: MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems daney at gcc dot gnu dot org
  2009-05-18 17:39 ` [Bug target/39079] " daney at gcc dot gnu dot org
  2009-07-10 22:50 ` daney at gcc dot gnu dot org
@ 2009-07-10 22:52 ` daney at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: daney at gcc dot gnu dot org @ 2009-07-10 22:52 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from daney at gcc dot gnu dot org  2009-07-10 22:52 -------
Fixed by the patch.


-- 

daney at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39079


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-07-10 22:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-02 17:00 [Bug target/39079] New: MIPS: __builtin___clear_cache() broken on SMP ISA_HAS_SYNCI systems daney at gcc dot gnu dot org
2009-05-18 17:39 ` [Bug target/39079] " daney at gcc dot gnu dot org
2009-07-10 22:50 ` daney at gcc dot gnu dot org
2009-07-10 22:52 ` daney at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).