From: "Bin.Cheng" <amker.cheng@gmail.com>
To: Robin Dapp <rdapp@linux.vnet.ibm.com>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: [RFC] S/390: Alignment peeling prolog generation
Date: Tue, 11 Apr 2017 15:07:00 -0000 [thread overview]
Message-ID: <CAHFci2_fkEj4BMqXAMZSwrDj1DZZZZzazJ9C=SDaiGr6NznHFg@mail.gmail.com> (raw)
In-Reply-To: <cdb235da-1a67-4ccf-3b35-40d1696b587b@linux.vnet.ibm.com>
On Tue, Apr 11, 2017 at 4:03 PM, Robin Dapp <rdapp@linux.vnet.ibm.com> wrote:
> Hi Bin,
>
>> Seems Richi added code like below comparing costs between aligned and
>> unsigned loads, and only peeling if it's beneficial:
>>
>> /* In case there are only loads with different unknown misalignments, use
>> peeling only if it may help to align other accesses in the loop or
>> if it may help improving load bandwith when we'd end up using
>> unaligned loads. */
>> tree dr0_vt = STMT_VINFO_VECTYPE (vinfo_for_stmt (DR_STMT (dr0)));
>> if (!first_store
>> && !STMT_VINFO_SAME_ALIGN_REFS (
>> vinfo_for_stmt (DR_STMT (dr0))).length ()
>> && (vect_supportable_dr_alignment (dr0, false)
>> != dr_unaligned_supported
>> || (builtin_vectorization_cost (vector_load, dr0_vt, 0)
>> == builtin_vectorization_cost (unaligned_load, dr0_vt, -1))))
>> do_peeling = false;
>
> yes this is the "special case" I was referring to. This successfully
> avoids peeling when there is no store (after we had set vectorization
> costs). My patch tries to check the costs for all references.
I am not sure if all references need to be checked, on AArch64,
aligned/unaligned costs are set globally, so only need to make one
check here.
Thanks,
bin
>
> Regards
> Robin
>
next prev parent reply other threads:[~2017-04-11 15:07 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-11 14:38 Robin Dapp
2017-04-11 14:57 ` Bin.Cheng
2017-04-11 15:03 ` Robin Dapp
2017-04-11 15:07 ` Bin.Cheng [this message]
2017-04-11 16:25 ` Richard Biener
2017-04-12 7:51 ` Robin Dapp
2017-04-12 7:58 ` Richard Biener
2017-05-04 9:04 ` [PATCH 1/3] Vect peeling cost model Robin Dapp
2017-05-05 10:32 ` Richard Biener
2017-05-04 9:04 ` [RFC] S/390: Alignment peeling prolog generation Robin Dapp
2017-05-05 11:04 ` Richard Biener
2017-05-08 16:12 ` Robin Dapp
2017-05-09 10:38 ` Richard Biener
2017-05-11 11:17 ` [PATCH 1/5] Vect peeling cost model Robin Dapp
2017-05-11 11:17 ` [RFC] S/390: Alignment peeling prolog generation Robin Dapp
2017-05-11 12:15 ` Richard Biener
2017-05-11 12:16 ` Richard Biener
2017-05-11 12:48 ` Richard Biener
2017-05-11 11:18 ` [PATCH 2/5] Vect peeling cost model Robin Dapp
2017-05-11 11:19 ` [PATCH 3/5] " Robin Dapp
2017-05-11 11:20 ` [PATCH 4/5] " Robin Dapp
2017-05-11 15:30 ` [PATCH 4/5 v2] " Robin Dapp
2017-05-12 9:36 ` Richard Biener
2017-05-23 15:58 ` [PATCH 1/5 v3] " Robin Dapp
2017-05-23 15:58 ` [PATCH 0/5 " Robin Dapp
2017-05-24 7:51 ` Richard Biener
2017-05-24 11:57 ` Robin Dapp
2017-05-24 13:56 ` Richard Biener
2017-06-03 17:12 ` Andreas Schwab
2017-06-06 7:13 ` Robin Dapp
2017-06-06 17:26 ` Andreas Schwab
2017-06-07 10:50 ` Robin Dapp
2017-06-07 11:43 ` Andreas Schwab
2017-05-23 15:58 ` [PATCH 2/5 " Robin Dapp
2017-05-23 19:25 ` Richard Sandiford
2017-05-24 7:37 ` Robin Dapp
2017-05-24 7:53 ` Richard Sandiford
2017-05-23 15:59 ` [PATCH 5/5 " Robin Dapp
2017-05-23 15:59 ` [PATCH 4/5 " Robin Dapp
2017-05-31 13:56 ` Christophe Lyon
2017-05-31 14:37 ` Robin Dapp
2017-05-31 14:49 ` Christophe Lyon
2017-05-23 16:02 ` [PATCH 3/5 " Robin Dapp
2017-05-11 11:59 ` [PATCH 5/5] " Robin Dapp
2017-05-08 16:13 ` [PATCH 3/4] " Robin Dapp
2017-05-09 10:41 ` Richard Biener
2017-05-08 16:27 ` [PATCH 4/4] " Robin Dapp
2017-05-09 10:55 ` Richard Biener
2017-05-04 9:07 ` [PATCH 2/3] " Robin Dapp
2017-05-05 10:37 ` Richard Biener
2017-05-04 9:14 ` [PATCH 3/3] " Robin Dapp
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='CAHFci2_fkEj4BMqXAMZSwrDj1DZZZZzazJ9C=SDaiGr6NznHFg@mail.gmail.com' \
--to=amker.cheng@gmail.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=rdapp@linux.vnet.ibm.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).