From: Matt Redfearn <matt.redfearn@mips.com>
To: "Maciej W. Rozycki" <macro@mips.com>, James Hogan <james.hogan@mips.com>
Cc: Corey Minyard <cminyard@mvista.com>,
Ralf Baechle <ralf@linux-mips.org>,
Matthew Fortune <matthew.fortune@mips.com>,
<linux-mips@linux-mips.org>, <linux-kernel@vger.kernel.org>,
"Jason A. Donenfeld" <jason@zx2c4.com>,
"Paul Burton" <paul.burton@mips.com>
Subject: Re: [PATCH] MIPS: Fix exception entry when CONFIG_EVA enabled
Date: Wed, 15 Nov 2017 10:32:37 +0000 [thread overview]
Message-ID: <9a2d2b4b-9b6a-a7e2-78be-ff6a019d6e05@mips.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1711131045460.3893@tp.orcam.me.uk>
On 13/11/17 10:47, Maciej W. Rozycki wrote:
> On Tue, 31 Oct 2017, James Hogan wrote:
>
>>> I looked this over pretty carefully and it looks correct to me. It
>>> makes no difference
>>> in the instructions generated by the non-EVA case. I shouldn't have
>>> missed this :(.
>>>
>>> Reviewed-by: Corey Minyard <cminyard@mvista.com>
>>
>> Yeh, having stared at it for a little while it looks correct to me too.
>>
>> Reviewed-by: James Hogan <jhogan@kernel.org>
>
> How about getting rid of the `noreorder' mode and the manually scheduled
> delay slot here altogether though, as I outlined?
>
> Maciej
>
Hi Maciej,
I like the change you propose, however I can't coax GAS to reorder the
instructions appropriately. With this patch on top of 4.14:
--- a/arch/mips/include/asm/stackframe.h
+++ b/arch/mips/include/asm/stackframe.h
@@ -195,14 +195,16 @@
.set push
.set noat
.set reorder
- mfc0 k0, CP0_STATUS
- sll k0, 3 /* extract cu0 bit */
- .set noreorder
- bltz k0, 8f
- move k0, sp
+ mfc0 k1, CP0_STATUS
+ sll k1, 3 /* extract cu0 bit */
+
+ move k0, sp
.if \docfi
.cfi_register sp, k0
.endif
+
+ bltz k1, 8f
+
#ifdef CONFIG_EVA
/*
* Flush interAptiv's Return Prediction Stack (RPS) by
writing
@@ -228,7 +230,6 @@
MFC0 k0, CP0_ENTRYHI
MTC0 k0, CP0_ENTRYHI
#endif
- .set reorder
/* Called from user mode, new stack. */
get_saved_sp docfi=\docfi tosp=1
8:
The generated assembly is:
80405d00 <handle_int>:
80405d00: 401b6000 mfc0 k1,c0_status
80405d04: 001bd8c0 sll k1,k1,0x3
80405d08: 03a0d025 move k0,sp
80405d0c: 07600007 bltz k1,80405d2c <handle_int+0x2c>
80405d10: 00000000 nop
80405d14: 401a2000 mfc0 k0,c0_context
Apparently GAS has not been able to reorder the move into the branch
delay slot for some reason. Any ideas?
Thanks,
Matt
next prev parent reply other threads:[~2017-11-15 10:33 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-11 8:59 Matt Redfearn
2017-10-11 13:12 ` Corey Minyard
2017-10-31 23:48 ` James Hogan
2017-11-13 10:47 ` Maciej W. Rozycki
2017-11-15 10:32 ` Matt Redfearn [this message]
2017-11-15 13:48 ` Maciej W. Rozycki
2017-11-15 14:53 ` Maciej W. Rozycki
2017-10-18 17:34 ` Maciej W. Rozycki
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=9a2d2b4b-9b6a-a7e2-78be-ff6a019d6e05@mips.com \
--to=matt.redfearn@mips.com \
--cc=cminyard@mvista.com \
--cc=james.hogan@mips.com \
--cc=jason@zx2c4.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=macro@mips.com \
--cc=matthew.fortune@mips.com \
--cc=paul.burton@mips.com \
--cc=ralf@linux-mips.org \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome