From: Segher Boessenkool <segher@kernel.crashing.org>
To: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@ozlabs.org, chandan@linux.ibm.com
Subject: Re: [PATCH v3] powerpc/64: Fix memcmp reading past the end of src/dest
Date: Mon, 25 Mar 2019 12:54:32 -0500 [thread overview]
Message-ID: <20190325175431.GJ3969@gate.crashing.org> (raw)
In-Reply-To: <877ecnp1zf.fsf@concordia.ellerman.id.au>
On Mon, Mar 25, 2019 at 11:33:56PM +1100, Michael Ellerman wrote:
> Segher Boessenkool <segher@kernel.crashing.org> writes:
> > On Fri, Mar 22, 2019 at 11:37:24PM +1100, Michael Ellerman wrote:
> >> + clrldi r6,r4,(64-12) // r6 = r4 & 0xfff
> >
> > You can just write
> > rlwinm r6,r4,0,0x0fff
>
> > if that is clearer? Or do you still want a comment with that :-)
>
> I don't think it's clearer doing a rotate of zero bits :)
>
> And yeah I'd probably still leave the comment, so I'm inclined to stick
> with the clrldi?
I always have to think what the clrldi etc. do exactly, while with rlwinm
it is obvious. But yeah this may be different for other people who are
used to different idiom.
> Would be nice if the assembler could support:
>
> andi r6, r4, 0x0fff
>
> And turn it into the rlwinm, or rldicl :)
The extended mnemonics are *simple*, *one-to-one* mappings. Having
"andi. 6,4,0x0f0f" a valid insn, but an extended mnemonic "andi 6,4,0x0f0f"
that is not (and the other way around for say 0xff0000ff) would violate that.
You could do some assembler macro, that can also expand to multiple insns
where that is useful. Also one for loading constants, etc. The downside
to that is you often do care how many insns are generated.
Instead you could do a macro for only those cases that can be done with *one*
insn. But that then is pretty restricted in use, and people have to learn
what values are valid.
I don't see a perfect solution.
Segher
next prev parent reply other threads:[~2019-03-25 17:58 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-22 12:37 [PATCH v3] powerpc/64: Fix memcmp reading past the end of src/dest Michael Ellerman
2019-03-22 18:29 ` Segher Boessenkool
2019-03-25 12:33 ` Michael Ellerman
2019-03-25 17:54 ` Segher Boessenkool [this message]
2019-03-26 9:18 ` Michael Ellerman
2019-03-26 18:39 ` Segher Boessenkool
2019-03-25 6:38 ` Chandan Rajendra
2019-03-25 6:39 ` Chandan Rajendra
2019-03-31 10:13 ` [v3] " Michael Ellerman
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=20190325175431.GJ3969@gate.crashing.org \
--to=segher@kernel.crashing.org \
--cc=chandan@linux.ibm.com \
--cc=linuxppc-dev@ozlabs.org \
--cc=mpe@ellerman.id.au \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.