mailing list of musl libc
 help / color / mirror / code / Atom feed
From: "dalias@libc.org" <dalias@libc.org>
To: musl@lists.openwall.com
Subject: Re: [PATCH] Fix atomic_arch.h for MIPS32 R6
Date: Mon, 21 Mar 2016 13:37:54 -0400	[thread overview]
Message-ID: <20160321173754.GC21636@brightrain.aerifal.cx> (raw)
In-Reply-To: <BD7773622145634B952E5B54ACA8E349AA24AD1C@PUMAIL01.pu.imgtec.org>

On Mon, Mar 21, 2016 at 06:03:47AM +0000, Jaydeep Patil wrote:
> Hi Rich,
> 
> The arch/mips/atomic_arch.h uses MIPS2 opcode for LL and SC
> instructions. Opcodes of these instructions differ on MIPSR6.

Does this mean MIPSR6 is an incompatible ISA that can't run normal
MIPS binaries? If so that's a messy situation we need to find a way to
deal with; if the difference is just LLSC though then perhaps the
kernel's emulation handles it (albeit very slowly).

It would be helpful if you could provide a link to the documentation
of this issue (different opcodes).

> Refer to https://github.com/JaydeepIMG/musl-1/tree/fix_atomic_for_MIPS32_R6 for the patch.
> 
> >From 63428cfc5dfa75d2771ba8205067c438942e1a60 Mon Sep 17 00:00:00 2001
> From: Jaydeep Patil <jaydeep.patil@imgtec.com>
> Date: Mon, 21 Mar 2016 06:00:39 +0000
> Subject: [PATCH] Fix for opcodes of LL/SC instructions for MIPSR6
> 
> ---
> arch/mips/atomic_arch.h | 8 ++++++++
> 1 file changed, 8 insertions(+)
> 
> diff --git a/arch/mips/atomic_arch.h b/arch/mips/atomic_arch.h
> index ce2823b..16b1542 100644
> --- a/arch/mips/atomic_arch.h
> +++ b/arch/mips/atomic_arch.h
> @@ -3,9 +3,13 @@ static inline int a_ll(volatile int *p)
> {
>         int v;
>         __asm__ __volatile__ (
> +#if __mips_isa_rev < 6
>                 ".set push ; .set mips2\n\t"
> +#endif
>                 "ll %0, %1"
> +#if __mips_isa_rev < 6
>                 "\n\t.set pop"
> +#endif

I think just the .set mips2 could be inside #ifdef with the push/pop
always used; that produces less #ifdef clutter. But first we need to
figure out the above issues.

Rich


  reply	other threads:[~2016-03-21 17:37 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-21  6:03 Jaydeep Patil
2016-03-21 17:37 ` dalias [this message]
2016-03-22  4:58   ` Jaydeep Patil
2016-03-22 21:22     ` Rich Felker
2016-03-23  6:37       ` Jaydeep Patil
2016-03-23 15:03         ` Rich Felker
2016-03-28  5:07           ` Jaydeep Patil
2016-03-28 13:04             ` Rich Felker
2016-03-29  2:19               ` Rich Felker
2016-03-29  3:54               ` Jaydeep Patil
2016-03-29  4:10                 ` Rich Felker
2016-03-29  7:16                   ` Jaydeep Patil
2016-03-29 13:32                     ` Rich Felker
2016-03-30  9:45                       ` Jaydeep Patil
2016-03-30 14:29                         ` Rich Felker
2016-03-30 15:28                           ` Rich Felker
2016-03-31  5:20                             ` Jaydeep Patil
2016-03-29  3:55               ` Jaydeep Patil

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160321173754.GC21636@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

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 NNTP newsgroup(s).