From: 钟居哲 <juzhe.zhong@rivai.ai>
To: "Jeff Law" <jeffreyalaw@gmail.com>, kito.cheng <kito.cheng@gmail.com>
Cc: gcc-patches <gcc-patches@gcc.gnu.org>,
kito.cheng <kito.cheng@sifive.com>
Subject: Re: Re: [PATCH] RISC-V: Enable movmisalign for VLS modes
Date: Wed, 30 Aug 2023 06:27:29 +0800 [thread overview]
Message-ID: <09F95472E11CC115+202308300627292728283@rivai.ai> (raw)
In-Reply-To: <b8c7c51b-38a2-86ca-85ff-1ff71c157662@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1438 bytes --]
> OK for the trunk.
Thanks. Will commit it soon.
> Does force_reg safe for movmisalign?
Both operands[0] and operands[1] are vector QImode already, so it's safe to force reg.
And we have fully tested MEM->MEM and CONST->MEM in gcc.dg/vect.
juzhe.zhong@rivai.ai
From: Jeff Law
Date: 2023-08-29 22:23
To: Kito Cheng; Juzhe-Zhong
CC: gcc-patches; kito.cheng
Subject: Re: [PATCH] RISC-V: Enable movmisalign for VLS modes
On 8/29/23 07:54, Kito Cheng via Gcc-patches wrote:
>> + /* To support misalign data movement, we should use
>> + minimum element alignment load/store. */
>> + unsigned int size = GET_MODE_SIZE (GET_MODE_INNER (<MODE>mode));
>> + poly_int64 nunits = GET_MODE_NUNITS (<MODE>mode) * size;
>> + machine_mode mode = riscv_vector::get_vector_mode (QImode, nunits).require ();
>> + operands[0] = gen_lowpart (mode, operands[0]);
>> + operands[1] = gen_lowpart (mode, operands[1]);
>> + if (MEM_P (operands[0]) && !register_operand (operands[1], mode))
>> + operands[1] = force_reg (mode, operands[1]);
>
> Does force_reg safe for movmisalign?
It should be. It's a pretty common idiom. Essentially it's going to
result in generating this for the MEM->MEM case:
MEM->REG
REG->MEM
Both of which are likely to go through the misalign expander.
I was about to ACK when I had to leave for a few minutes.
OK for the trunk.
jeff
next prev parent reply other threads:[~2023-08-29 22:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-29 10:07 Juzhe-Zhong
2023-08-29 13:54 ` Kito Cheng
2023-08-29 14:23 ` Jeff Law
2023-08-29 22:27 ` 钟居哲 [this message]
2023-08-30 1:29 ` Li, Pan2
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=09F95472E11CC115+202308300627292728283@rivai.ai \
--to=juzhe.zhong@rivai.ai \
--cc=gcc-patches@gcc.gnu.org \
--cc=jeffreyalaw@gmail.com \
--cc=kito.cheng@gmail.com \
--cc=kito.cheng@sifive.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.
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).