public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/90773] Improve piecewise operation
Date: Thu, 29 Apr 2021 11:45:41 +0000	[thread overview]
Message-ID: <bug-90773-4-XJPoEb3ilw@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-90773-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90773

--- Comment #6 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by H.J. Lu <hjl@gcc.gnu.org>:

https://gcc.gnu.org/g:985b3a6837dee7001e6b618f073ed74f0edf5787

commit r12-285-g985b3a6837dee7001e6b618f073ed74f0edf5787
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Jun 10 09:57:15 2019 -0700

    Generate offset adjusted operation for op_by_pieces operations

    Add an overlap_op_by_pieces_p target hook for op_by_pieces operations
    between two areas of memory to generate one offset adjusted operation
    in the smallest integer mode for the remaining bytes on the last piece
    operation of a memory region to avoid doing more than one smaller
    operations.

    Pass the RTL information from the previous iteration to m_constfn in
    op_by_pieces operation so that builtin_memset_[read|gen]_str can
    generate the new RTL from the previous RTL.

    Tested on Linux/x86-64.

    gcc/

            PR middle-end/90773
            * builtins.c (builtin_memcpy_read_str): Add a dummy argument.
            (builtin_strncpy_read_str): Likewise.
            (builtin_memset_read_str): Add an argument for the previous RTL
            information and generate the new RTL from the previous RTL info.
            (builtin_memset_gen_str): Likewise.
            * builtins.h (builtin_strncpy_read_str): Update the prototype.
            (builtin_memset_read_str): Likewise.
            * expr.c (by_pieces_ninsns): If targetm.overlap_op_by_pieces_p()
            returns true, round up size and alignment to the widest integer
            mode for maximum size.
            (pieces_addr::adjust): Add a pointer to by_pieces_prev argument
            and pass it to m_constfn.
            (op_by_pieces_d): Add m_push and m_overlap_op_by_pieces.
            (op_by_pieces_d::op_by_pieces_d): Add a bool argument to
            initialize m_push.  Initialize m_overlap_op_by_pieces with
            targetm.overlap_op_by_pieces_p ().
            (op_by_pieces_d::run): Pass the previous RTL information to
            pieces_addr::adjust and generate overlapping operations if
            m_overlap_op_by_pieces is true.
            (PUSHG_P): New.
            (move_by_pieces_d::move_by_pieces_d): Updated for op_by_pieces_d
            change.
            (store_by_pieces_d::store_by_pieces_d): Updated for op_by_pieces_d
            change.
            (can_store_by_pieces): Use by_pieces_constfn on constfun.
            (store_by_pieces): Use by_pieces_constfn on constfun.  Updated
            for op_by_pieces_d change.
            (clear_by_pieces_1): Add a dummy argument.
            (clear_by_pieces): Updated for op_by_pieces_d change.
            (compare_by_pieces_d::compare_by_pieces_d): Likewise.
            (string_cst_read_str): Add a dummy argument.
            * expr.h (by_pieces_constfn): Add a dummy argument.
            (by_pieces_prev): New.
            * target.def (overlap_op_by_pieces_p): New target hook.
            * config/i386/i386.c (TARGET_OVERLAP_OP_BY_PIECES_P): New.
            * doc/tm.texi.in: Add TARGET_OVERLAP_OP_BY_PIECES_P.
            * doc/tm.texi: Regenerated.

    gcc/testsuite/

            PR middle-end/90773
            * g++.dg/pr90773-1.h: New test.
            * g++.dg/pr90773-1a.C: Likewise.
            * g++.dg/pr90773-1b.C: Likewise.
            * g++.dg/pr90773-1c.C: Likewise.
            * g++.dg/pr90773-1d.C: Likewise.
            * gcc.target/i386/pr90773-1.c: Likewise.
            * gcc.target/i386/pr90773-2.c: Likewise.
            * gcc.target/i386/pr90773-3.c: Likewise.
            * gcc.target/i386/pr90773-4.c: Likewise.
            * gcc.target/i386/pr90773-5.c: Likewise.
            * gcc.target/i386/pr90773-6.c: Likewise.
            * gcc.target/i386/pr90773-7.c: Likewise.
            * gcc.target/i386/pr90773-8.c: Likewise.
            * gcc.target/i386/pr90773-9.c: Likewise.
            * gcc.target/i386/pr90773-10.c: Likewise.
            * gcc.target/i386/pr90773-11.c: Likewise.
            * gcc.target/i386/pr90773-12.c: Likewise.
            * gcc.target/i386/pr90773-13.c: Likewise.
            * gcc.target/i386/pr90773-14.c: Likewise.

  parent reply	other threads:[~2021-04-29 11:45 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <bug-90773-4@http.gcc.gnu.org/bugzilla/>
2021-04-27 15:23 ` cvs-commit at gcc dot gnu.org
2021-04-29 11:45 ` cvs-commit at gcc dot gnu.org [this message]
2021-04-30 11:35 ` cvs-commit at gcc dot gnu.org
2021-05-21 14:28 ` cvs-commit at gcc dot gnu.org
2021-07-30 17:35 ` cvs-commit at gcc dot gnu.org
2021-08-01 17:20 ` hjl.tools at gmail dot com
2021-08-02 17:41 ` cvs-commit at gcc dot gnu.org
2021-08-02 17:41 ` cvs-commit at gcc dot gnu.org
2021-08-02 17:48 ` hjl.tools at gmail dot com
2021-08-02 17:52 ` hjl.tools at gmail dot com
2021-08-03  3:36 ` hjl.tools at gmail dot com
2021-08-05 12:31 ` hjl.tools at gmail dot com
2021-08-05 12:36 ` hjl.tools at gmail dot com
2021-08-07 14:52 ` hjl.tools at gmail dot com
2021-08-22  1:26 ` hjl.tools at gmail dot com
2021-10-06 23:48 ` hjl.tools at gmail dot com

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=bug-90773-4-XJPoEb3ilw@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).